@helia/http 2.0.1-aecac3d → 2.0.1-c09fef2
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.min.js +4 -4
- package/package.json +5 -5
package/dist/index.min.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
(function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.HeliaHttp = factory()}(typeof self !== 'undefined' ? self : this, function () {
|
|
2
|
-
"use strict";var HeliaHttp=(()=>{var xm=Object.create;var Jo=Object.defineProperty;var bm=Object.getOwnPropertyDescriptor;var vm=Object.getOwnPropertyNames;var Em=Object.getPrototypeOf,Sm=Object.prototype.hasOwnProperty;var Pr=(r,t)=>()=>(t||r((t={exports:{}}).exports,t),t.exports),gt=(r,t)=>{for(var e in t)Jo(r,e,{get:t[e],enumerable:!0})},Zl=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of vm(t))!Sm.call(r,o)&&o!==e&&Jo(r,o,{get:()=>t[o],enumerable:!(n=bm(t,o))||n.enumerable});return r};var Lr=(r,t,e)=>(e=r!=null?xm(Em(r)):{},Zl(t||!r||!r.__esModule?Jo(e,"default",{value:r,enumerable:!0}):e,r)),Am=r=>Zl(Jo({},"__esModule",{value:!0}),r);var Jf=Pr(En=>{"use strict";var cw="[object ArrayBuffer]",je=class r{static isArrayBuffer(t){return Object.prototype.toString.call(t)===cw}static toArrayBuffer(t){return this.isArrayBuffer(t)?t:t.byteLength===t.buffer.byteLength||t.byteOffset===0&&t.byteLength===t.buffer.byteLength?t.buffer:this.toUint8Array(t.buffer).slice(t.byteOffset,t.byteOffset+t.byteLength).buffer}static toUint8Array(t){return this.toView(t,Uint8Array)}static toView(t,e){if(t.constructor===e)return t;if(this.isArrayBuffer(t))return new e(t);if(this.isArrayBufferView(t))return new e(t.buffer,t.byteOffset,t.byteLength);throw new TypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView)'")}static isBufferSource(t){return this.isArrayBufferView(t)||this.isArrayBuffer(t)}static isArrayBufferView(t){return ArrayBuffer.isView(t)||t&&this.isArrayBuffer(t.buffer)}static isEqual(t,e){let n=r.toUint8Array(t),o=r.toUint8Array(e);if(n.length!==o.byteLength)return!1;for(let s=0;s<n.length;s++)if(n[s]!==o[s])return!1;return!0}static concat(...t){let e;Array.isArray(t[0])&&!(t[1]instanceof Function)||Array.isArray(t[0])&&t[1]instanceof Function?e=t[0]:t[t.length-1]instanceof Function?e=t.slice(0,t.length-1):e=t;let n=0;for(let i of e)n+=i.byteLength;let o=new Uint8Array(n),s=0;for(let i of e){let a=this.toUint8Array(i);o.set(a,s),s+=a.length}return t[t.length-1]instanceof Function?this.toView(o,t[t.length-1]):o.buffer}},qc="string",uw=/^[0-9a-f]+$/i,lw=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,fw=/^[a-zA-Z0-9-_]+$/,Is=class{static fromString(t){let e=unescape(encodeURIComponent(t)),n=new Uint8Array(e.length);for(let o=0;o<e.length;o++)n[o]=e.charCodeAt(o);return n.buffer}static toString(t){let e=je.toUint8Array(t),n="";for(let s=0;s<e.length;s++)n+=String.fromCharCode(e[s]);return decodeURIComponent(escape(n))}},ie=class{static toString(t,e=!1){let n=je.toArrayBuffer(t),o=new DataView(n),s="";for(let i=0;i<n.byteLength;i+=2){let a=o.getUint16(i,e);s+=String.fromCharCode(a)}return s}static fromString(t,e=!1){let n=new ArrayBuffer(t.length*2),o=new DataView(n);for(let s=0;s<t.length;s++)o.setUint16(s*2,t.charCodeAt(s),e);return n}},_s=class r{static isHex(t){return typeof t===qc&&uw.test(t)}static isBase64(t){return typeof t===qc&&lw.test(t)}static isBase64Url(t){return typeof t===qc&&fw.test(t)}static ToString(t,e="utf8"){let n=je.toUint8Array(t);switch(e.toLowerCase()){case"utf8":return this.ToUtf8String(n);case"binary":return this.ToBinary(n);case"hex":return this.ToHex(n);case"base64":return this.ToBase64(n);case"base64url":return this.ToBase64Url(n);case"utf16le":return ie.toString(n,!0);case"utf16":case"utf16be":return ie.toString(n);default:throw new Error(`Unknown type of encoding '${e}'`)}}static FromString(t,e="utf8"){if(!t)return new ArrayBuffer(0);switch(e.toLowerCase()){case"utf8":return this.FromUtf8String(t);case"binary":return this.FromBinary(t);case"hex":return this.FromHex(t);case"base64":return this.FromBase64(t);case"base64url":return this.FromBase64Url(t);case"utf16le":return ie.fromString(t,!0);case"utf16":case"utf16be":return ie.fromString(t);default:throw new Error(`Unknown type of encoding '${e}'`)}}static ToBase64(t){let e=je.toUint8Array(t);if(typeof btoa<"u"){let n=this.ToString(e,"binary");return btoa(n)}else return Buffer.from(e).toString("base64")}static FromBase64(t){let e=this.formatString(t);if(!e)return new ArrayBuffer(0);if(!r.isBase64(e))throw new TypeError("Argument 'base64Text' is not Base64 encoded");return typeof atob<"u"?this.FromBinary(atob(e)):new Uint8Array(Buffer.from(e,"base64")).buffer}static FromBase64Url(t){let e=this.formatString(t);if(!e)return new ArrayBuffer(0);if(!r.isBase64Url(e))throw new TypeError("Argument 'base64url' is not Base64Url encoded");return this.FromBase64(this.Base64Padding(e.replace(/\-/g,"+").replace(/\_/g,"/")))}static ToBase64Url(t){return this.ToBase64(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/\=/g,"")}static FromUtf8String(t,e=r.DEFAULT_UTF8_ENCODING){switch(e){case"ascii":return this.FromBinary(t);case"utf8":return Is.fromString(t);case"utf16":case"utf16be":return ie.fromString(t);case"utf16le":case"usc2":return ie.fromString(t,!0);default:throw new Error(`Unknown type of encoding '${e}'`)}}static ToUtf8String(t,e=r.DEFAULT_UTF8_ENCODING){switch(e){case"ascii":return this.ToBinary(t);case"utf8":return Is.toString(t);case"utf16":case"utf16be":return ie.toString(t);case"utf16le":case"usc2":return ie.toString(t,!0);default:throw new Error(`Unknown type of encoding '${e}'`)}}static FromBinary(t){let e=t.length,n=new Uint8Array(e);for(let o=0;o<e;o++)n[o]=t.charCodeAt(o);return n.buffer}static ToBinary(t){let e=je.toUint8Array(t),n="";for(let o=0;o<e.length;o++)n+=String.fromCharCode(e[o]);return n}static ToHex(t){let e=je.toUint8Array(t),n="",o=e.length;for(let s=0;s<o;s++){let i=e[s];i<16&&(n+="0"),n+=i.toString(16)}return n}static FromHex(t){let e=this.formatString(t);if(!e)return new ArrayBuffer(0);if(!r.isHex(e))throw new TypeError("Argument 'hexString' is not HEX encoded");e.length%2&&(e=`0${e}`);let n=new Uint8Array(e.length/2);for(let o=0;o<e.length;o=o+2){let s=e.slice(o,o+2);n[o/2]=parseInt(s,16)}return n.buffer}static ToUtf16String(t,e=!1){return ie.toString(t,e)}static FromUtf16String(t,e=!1){return ie.fromString(t,e)}static Base64Padding(t){let e=4-t.length%4;if(e<4)for(let n=0;n<e;n++)t+="=";return t}static formatString(t){return t?.replace(/[\n\r\t ]/g,"")||""}};_s.DEFAULT_UTF8_ENCODING="utf8";function hw(r,...t){let e=arguments[0];for(let n=1;n<arguments.length;n++){let o=arguments[n];for(let s in o)e[s]=o[s]}return e}function dw(...r){let t=r.map(o=>o.byteLength).reduce((o,s)=>o+s),e=new Uint8Array(t),n=0;return r.map(o=>new Uint8Array(o)).forEach(o=>{for(let s of o)e[n++]=s}),e.buffer}function pw(r,t){if(!(r&&t)||r.byteLength!==t.byteLength)return!1;let e=new Uint8Array(r),n=new Uint8Array(t);for(let o=0;o<r.byteLength;o++)if(e[o]!==n[o])return!1;return!0}En.BufferSourceConverter=je;En.Convert=_s;En.assign=hw;En.combine=dw;En.isEqual=pw});var fd=Pr((Ao,Ai)=>{(function(r,t){"use strict";var e={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(h){if(!Array.isArray(h)&&!ArrayBuffer.isView(h))return!1;for(var w=0;w<h.length;w++)if(!Number.isInteger(h[w])||h[w]<0||h[w]>255)return!1;return!0}function o(h,w){return(h&65535)*w+(((h>>>16)*w&65535)<<16)}function s(h,w){return h<<w|h>>>32-w}function i(h){return h^=h>>>16,h=o(h,2246822507),h^=h>>>13,h=o(h,3266489909),h^=h>>>16,h}function a(h,w){h=[h[0]>>>16,h[0]&65535,h[1]>>>16,h[1]&65535],w=[w[0]>>>16,w[0]&65535,w[1]>>>16,w[1]&65535];var m=[0,0,0,0];return m[3]+=h[3]+w[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=h[2]+w[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=h[1]+w[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=h[0]+w[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function c(h,w){h=[h[0]>>>16,h[0]&65535,h[1]>>>16,h[1]&65535],w=[w[0]>>>16,w[0]&65535,w[1]>>>16,w[1]&65535];var m=[0,0,0,0];return m[3]+=h[3]*w[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=h[2]*w[3],m[1]+=m[2]>>>16,m[2]&=65535,m[2]+=h[3]*w[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=h[1]*w[3],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=h[2]*w[2],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=h[3]*w[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=h[0]*w[3]+h[1]*w[2]+h[2]*w[1]+h[3]*w[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function u(h,w){return w%=64,w===32?[h[1],h[0]]:w<32?[h[0]<<w|h[1]>>>32-w,h[1]<<w|h[0]>>>32-w]:(w-=32,[h[1]<<w|h[0]>>>32-w,h[0]<<w|h[1]>>>32-w])}function l(h,w){return w%=64,w===0?h:w<32?[h[0]<<w|h[1]>>>32-w,h[1]<<w]:[h[1]<<w-32,0]}function f(h,w){return[h[0]^w[0],h[1]^w[1]]}function d(h){return h=f(h,[0,h[0]>>>1]),h=c(h,[4283543511,3981806797]),h=f(h,[0,h[0]>>>1]),h=c(h,[3301882366,444984403]),h=f(h,[0,h[0]>>>1]),h}e.x86.hash32=function(h,w){if(e.inputValidation&&!n(h))return t;w=w||0;for(var m=h.length%4,g=h.length-m,x=w,b=0,y=3432918353,S=461845907,_=0;_<g;_=_+4)b=h[_]|h[_+1]<<8|h[_+2]<<16|h[_+3]<<24,b=o(b,y),b=s(b,15),b=o(b,S),x^=b,x=s(x,13),x=o(x,5)+3864292196;switch(b=0,m){case 3:b^=h[_+2]<<16;case 2:b^=h[_+1]<<8;case 1:b^=h[_],b=o(b,y),b=s(b,15),b=o(b,S),x^=b}return x^=h.length,x=i(x),x>>>0},e.x86.hash128=function(h,w){if(e.inputValidation&&!n(h))return t;w=w||0;for(var m=h.length%16,g=h.length-m,x=w,b=w,y=w,S=w,_=0,T=0,E=0,v=0,k=597399067,V=2869860233,D=951274213,R=2716044179,L=0;L<g;L=L+16)_=h[L]|h[L+1]<<8|h[L+2]<<16|h[L+3]<<24,T=h[L+4]|h[L+5]<<8|h[L+6]<<16|h[L+7]<<24,E=h[L+8]|h[L+9]<<8|h[L+10]<<16|h[L+11]<<24,v=h[L+12]|h[L+13]<<8|h[L+14]<<16|h[L+15]<<24,_=o(_,k),_=s(_,15),_=o(_,V),x^=_,x=s(x,19),x+=b,x=o(x,5)+1444728091,T=o(T,V),T=s(T,16),T=o(T,D),b^=T,b=s(b,17),b+=y,b=o(b,5)+197830471,E=o(E,D),E=s(E,17),E=o(E,R),y^=E,y=s(y,15),y+=S,y=o(y,5)+2530024501,v=o(v,R),v=s(v,18),v=o(v,k),S^=v,S=s(S,13),S+=x,S=o(S,5)+850148119;switch(_=0,T=0,E=0,v=0,m){case 15:v^=h[L+14]<<16;case 14:v^=h[L+13]<<8;case 13:v^=h[L+12],v=o(v,R),v=s(v,18),v=o(v,k),S^=v;case 12:E^=h[L+11]<<24;case 11:E^=h[L+10]<<16;case 10:E^=h[L+9]<<8;case 9:E^=h[L+8],E=o(E,D),E=s(E,17),E=o(E,R),y^=E;case 8:T^=h[L+7]<<24;case 7:T^=h[L+6]<<16;case 6:T^=h[L+5]<<8;case 5:T^=h[L+4],T=o(T,V),T=s(T,16),T=o(T,D),b^=T;case 4:_^=h[L+3]<<24;case 3:_^=h[L+2]<<16;case 2:_^=h[L+1]<<8;case 1:_^=h[L],_=o(_,k),_=s(_,15),_=o(_,V),x^=_}return x^=h.length,b^=h.length,y^=h.length,S^=h.length,x+=b,x+=y,x+=S,b+=x,y+=x,S+=x,x=i(x),b=i(b),y=i(y),S=i(S),x+=b,x+=y,x+=S,b+=x,y+=x,S+=x,("00000000"+(x>>>0).toString(16)).slice(-8)+("00000000"+(b>>>0).toString(16)).slice(-8)+("00000000"+(y>>>0).toString(16)).slice(-8)+("00000000"+(S>>>0).toString(16)).slice(-8)},e.x64.hash128=function(h,w){if(e.inputValidation&&!n(h))return t;w=w||0;for(var m=h.length%16,g=h.length-m,x=[0,w],b=[0,w],y=[0,0],S=[0,0],_=[2277735313,289559509],T=[1291169091,658871167],E=0;E<g;E=E+16)y=[h[E+4]|h[E+5]<<8|h[E+6]<<16|h[E+7]<<24,h[E]|h[E+1]<<8|h[E+2]<<16|h[E+3]<<24],S=[h[E+12]|h[E+13]<<8|h[E+14]<<16|h[E+15]<<24,h[E+8]|h[E+9]<<8|h[E+10]<<16|h[E+11]<<24],y=c(y,_),y=u(y,31),y=c(y,T),x=f(x,y),x=u(x,27),x=a(x,b),x=a(c(x,[0,5]),[0,1390208809]),S=c(S,T),S=u(S,33),S=c(S,_),b=f(b,S),b=u(b,31),b=a(b,x),b=a(c(b,[0,5]),[0,944331445]);switch(y=[0,0],S=[0,0],m){case 15:S=f(S,l([0,h[E+14]],48));case 14:S=f(S,l([0,h[E+13]],40));case 13:S=f(S,l([0,h[E+12]],32));case 12:S=f(S,l([0,h[E+11]],24));case 11:S=f(S,l([0,h[E+10]],16));case 10:S=f(S,l([0,h[E+9]],8));case 9:S=f(S,[0,h[E+8]]),S=c(S,T),S=u(S,33),S=c(S,_),b=f(b,S);case 8:y=f(y,l([0,h[E+7]],56));case 7:y=f(y,l([0,h[E+6]],48));case 6:y=f(y,l([0,h[E+5]],40));case 5:y=f(y,l([0,h[E+4]],32));case 4:y=f(y,l([0,h[E+3]],24));case 3:y=f(y,l([0,h[E+2]],16));case 2:y=f(y,l([0,h[E+1]],8));case 1:y=f(y,[0,h[E]]),y=c(y,_),y=u(y,31),y=c(y,T),x=f(x,y)}return x=f(x,[0,h.length]),b=f(b,[0,h.length]),x=a(x,b),b=a(b,x),x=d(x),b=d(b),x=a(x,b),b=a(b,x),("00000000"+(x[0]>>>0).toString(16)).slice(-8)+("00000000"+(x[1]>>>0).toString(16)).slice(-8)+("00000000"+(b[0]>>>0).toString(16)).slice(-8)+("00000000"+(b[1]>>>0).toString(16)).slice(-8)},typeof Ao<"u"?(typeof Ai<"u"&&Ai.exports&&(Ao=Ai.exports=e),Ao.murmurHash3=e):typeof define=="function"&&define.amd?define([],function(){return e}):(e._murmurHash3=r.murmurHash3,e.noConflict=function(){return r.murmurHash3=e._murmurHash3,e._murmurHash3=t,e.noConflict=t,e},r.murmurHash3=e)})(Ao)});var dd=Pr((Q6,hd)=>{hd.exports=fd()});var vd=Pr((FS,uu)=>{"use strict";var nx=Object.prototype.hasOwnProperty,Ot="~";function Io(){}Object.create&&(Io.prototype=Object.create(null),new Io().__proto__||(Ot=!1));function ox(r,t,e){this.fn=r,this.context=t,this.once=e||!1}function bd(r,t,e,n,o){if(typeof e!="function")throw new TypeError("The listener must be a function");var s=new ox(e,n||r,o),i=Ot?Ot+t:t;return r._events[i]?r._events[i].fn?r._events[i]=[r._events[i],s]:r._events[i].push(s):(r._events[i]=s,r._eventsCount++),r}function Ti(r,t){--r._eventsCount===0?r._events=new Io:delete r._events[t]}function Dt(){this._events=new Io,this._eventsCount=0}Dt.prototype.eventNames=function(){var t=[],e,n;if(this._eventsCount===0)return t;for(n in e=this._events)nx.call(e,n)&&t.push(Ot?n.slice(1):n);return Object.getOwnPropertySymbols?t.concat(Object.getOwnPropertySymbols(e)):t};Dt.prototype.listeners=function(t){var e=Ot?Ot+t:t,n=this._events[e];if(!n)return[];if(n.fn)return[n.fn];for(var o=0,s=n.length,i=new Array(s);o<s;o++)i[o]=n[o].fn;return i};Dt.prototype.listenerCount=function(t){var e=Ot?Ot+t:t,n=this._events[e];return n?n.fn?1:n.length:0};Dt.prototype.emit=function(t,e,n,o,s,i){var a=Ot?Ot+t:t;if(!this._events[a])return!1;var c=this._events[a],u=arguments.length,l,f;if(c.fn){switch(c.once&&this.removeListener(t,c.fn,void 0,!0),u){case 1:return c.fn.call(c.context),!0;case 2:return c.fn.call(c.context,e),!0;case 3:return c.fn.call(c.context,e,n),!0;case 4:return c.fn.call(c.context,e,n,o),!0;case 5:return c.fn.call(c.context,e,n,o,s),!0;case 6:return c.fn.call(c.context,e,n,o,s,i),!0}for(f=1,l=new Array(u-1);f<u;f++)l[f-1]=arguments[f];c.fn.apply(c.context,l)}else{var d=c.length,h;for(f=0;f<d;f++)switch(c[f].once&&this.removeListener(t,c[f].fn,void 0,!0),u){case 1:c[f].fn.call(c[f].context);break;case 2:c[f].fn.call(c[f].context,e);break;case 3:c[f].fn.call(c[f].context,e,n);break;case 4:c[f].fn.call(c[f].context,e,n,o);break;default:if(!l)for(h=1,l=new Array(u-1);h<u;h++)l[h-1]=arguments[h];c[f].fn.apply(c[f].context,l)}}return!0};Dt.prototype.on=function(t,e,n){return bd(this,t,e,n,!1)};Dt.prototype.once=function(t,e,n){return bd(this,t,e,n,!0)};Dt.prototype.removeListener=function(t,e,n,o){var s=Ot?Ot+t:t;if(!this._events[s])return this;if(!e)return Ti(this,s),this;var i=this._events[s];if(i.fn)i.fn===e&&(!o||i.once)&&(!n||i.context===n)&&Ti(this,s);else{for(var a=0,c=[],u=i.length;a<u;a++)(i[a].fn!==e||o&&!i[a].once||n&&i[a].context!==n)&&c.push(i[a]);c.length?this._events[s]=c.length===1?c[0]:c:Ti(this,s)}return this};Dt.prototype.removeAllListeners=function(t){var e;return t?(e=Ot?Ot+t:t,this._events[e]&&Ti(this,e)):(this._events=new Io,this._eventsCount=0),this};Dt.prototype.off=Dt.prototype.removeListener;Dt.prototype.addListener=Dt.prototype.on;Dt.prefixed=Ot;Dt.EventEmitter=Dt;typeof uu<"u"&&(uu.exports=Dt)});var kd=Pr((iA,Bd)=>{Bd.exports=function(r){if(!r)throw Error("hashlru must have a max value, of type number, greater than 0");var t=0,e=Object.create(null),n=Object.create(null);function o(s,i){e[s]=i,t++,t>=r&&(t=0,n=e,e=Object.create(null))}return{has:function(s){return e[s]!==void 0||n[s]!==void 0},remove:function(s){e[s]!==void 0&&(e[s]=void 0),n[s]!==void 0&&(n[s]=void 0)},get:function(s){var i=e[s];if(i!==void 0)return i;if((i=n[s])!==void 0)return o(s,i),i},set:function(s,i){e[s]!==void 0?e[s]=i:o(s,i)},clear:function(){e=Object.create(null),n=Object.create(null)}}}});var l0=Pr(Ho=>{(function(){var r,t,e,n,o,s,i,a;a=function(c){var u,l,f,d;return u=(c&255<<24)>>>24,l=(c&255<<16)>>>16,f=(c&65280)>>>8,d=c&255,[u,l,f,d].join(".")},i=function(c){var u,l,f,d,h,w;for(u=[],f=d=0;d<=3&&c.length!==0;f=++d){if(f>0){if(c[0]!==".")throw new Error("Invalid IP");c=c.substring(1)}w=t(c),h=w[0],l=w[1],c=c.substring(l),u.push(h)}if(c.length!==0)throw new Error("Invalid IP");switch(u.length){case 1:if(u[0]>4294967295)throw new Error("Invalid IP");return u[0]>>>0;case 2:if(u[0]>255||u[1]>16777215)throw new Error("Invalid IP");return(u[0]<<24|u[1])>>>0;case 3:if(u[0]>255||u[1]>255||u[2]>65535)throw new Error("Invalid IP");return(u[0]<<24|u[1]<<16|u[2])>>>0;case 4:if(u[0]>255||u[1]>255||u[2]>255||u[3]>255)throw new Error("Invalid IP");return(u[0]<<24|u[1]<<16|u[2]<<8|u[3])>>>0;default:throw new Error("Invalid IP")}},e=function(c){return c.charCodeAt(0)},n=e("0"),s=e("a"),o=e("A"),t=function(c){var u,l,f,d,h;for(d=0,u=10,l="9",f=0,c.length>1&&c[f]==="0"&&(c[f+1]==="x"||c[f+1]==="X"?(f+=2,u=16):"0"<=c[f+1]&&c[f+1]<="9"&&(f++,u=8,l="7")),h=f;f<c.length;){if("0"<=c[f]&&c[f]<=l)d=d*u+(e(c[f])-n)>>>0;else if(u===16)if("a"<=c[f]&&c[f]<="f")d=d*u+(10+e(c[f])-s)>>>0;else if("A"<=c[f]&&c[f]<="F")d=d*u+(10+e(c[f])-o)>>>0;else break;else break;if(d>4294967295)throw new Error("too large");f++}if(f===h)throw new Error("empty octet");return[d,f]},r=function(){function c(u,l){var f,d,h,w;if(typeof u!="string")throw new Error("Missing `net' parameter");if(l||(w=u.split("/",2),u=w[0],l=w[1]),l||(l=32),typeof l=="string"&&l.indexOf(".")>-1){try{this.maskLong=i(l)}catch(m){throw f=m,new Error("Invalid mask: "+l)}for(d=h=32;h>=0;d=--h)if(this.maskLong===4294967295<<32-d>>>0){this.bitmask=d;break}}else if(l||l===0)this.bitmask=parseInt(l,10),this.maskLong=0,this.bitmask>0&&(this.maskLong=4294967295<<32-this.bitmask>>>0);else throw new Error("Invalid mask: empty");try{this.netLong=(i(u)&this.maskLong)>>>0}catch(m){throw f=m,new Error("Invalid net address: "+u)}if(!(this.bitmask<=32))throw new Error("Invalid mask for ip4: "+l);this.size=Math.pow(2,32-this.bitmask),this.base=a(this.netLong),this.mask=a(this.maskLong),this.hostmask=a(~this.maskLong),this.first=this.bitmask<=30?a(this.netLong+1):this.base,this.last=this.bitmask<=30?a(this.netLong+this.size-2):a(this.netLong+this.size-1),this.broadcast=this.bitmask<=30?a(this.netLong+this.size-1):void 0}return c.prototype.contains=function(u){return typeof u=="string"&&(u.indexOf("/")>0||u.split(".").length!==4)&&(u=new c(u)),u instanceof c?this.contains(u.base)&&this.contains(u.broadcast||u.last):(i(u)&this.maskLong)>>>0===(this.netLong&this.maskLong)>>>0},c.prototype.next=function(u){return u==null&&(u=1),new c(a(this.netLong+this.size*u),this.mask)},c.prototype.forEach=function(u){var l,f,d;for(d=i(this.first),f=i(this.last),l=0;d<=f;)u(a(d),d,l),l++,d++},c.prototype.toString=function(){return this.base+"/"+this.bitmask},c}(),Ho.ip2long=i,Ho.long2ip=a,Ho.Netmask=r}).call(Ho)});var Tl=Pr((MI,_l)=>{var $I=function(){typeof _l<"u"&&(_l.exports=m);var r=86400,t=3200,e=146097*t/400,n=r*e,o=1e3*n,s=864e13,i=4294967296,a=1e6,c="000000000",u=Math.trunc||function(v){var k=v-v%1;return k==0&&(v<0||v===0&&1/v!=1/0)?-0:k},l=m.prototype,f=(m.fromDate=function(v){return new m(+v)},m.fromInt64BE=S(0,1,2,3,0,4),m.fromInt64LE=S(3,2,1,0,4,0),m.fromString=function(D){var k,V=new m,D=(D+="").replace(/^\s*[+\-]?\d+/,function(L){var L=+L,N=1970+(L-1970)%400;return V.year=L-N,N}).replace(/(?:Z|([+\-]\d{2}):?(\d{2}))$/,function(R,L,N){return L<0&&(N*=-1),k=6e4*(60*+L+ +N),""}).replace(/\.\d+$/,function(R){return V.nano=+(R+c).substr(1,9),""}).split(/\D+/);if(1<D.length?D[1]--:D[1]=0,V.time=k=Date.UTC.apply(Date,D)-(k||0),isNaN(k))throw new TypeError("Invalid Date");return g(V)},m.fromTimeT=function(v){return b(v,0)},l.year=0,l.time=0,l.nano=0,l.addNano=function(v){return this.nano+=+v||0,this},l.getNano=function(){var v=g(this);return(v.time%1e3*a+ +v.nano+1e9)%1e9},l.getTimeT=function(){var k=g(this),v=Math.floor(k.time/1e3),k=k.year;return k&&(v+=k*e*r/t),v},l.getYear=function(){return this.toDate().getUTCFullYear()+this.year},l.toDate=function(){return x(g(this).time)},l.toJSON=function(){return this.toString().replace(/0{1,6}Z$/,"Z")},l.toString=function(v){var k=this,V=k.toDate(),D={H:function(){return T(V.getUTCHours())},L:function(){return E(V.getUTCMilliseconds(),3)},M:function(){return T(V.getUTCMinutes())},N:function(){return E(k.getNano(),9)},S:function(){return T(V.getUTCSeconds())},Y:function(){var R=k.getYear();return 999999<R?"+"+R:9999<R?"+"+E(R,6):0<=R?E(R,4):-999999<=R?"-"+E(-R,6):R},a:function(){return h[V.getUTCDay()]},b:function(){return d[V.getUTCMonth()]},d:function(){return T(V.getUTCDate())},e:function(){return function(R){return(9<R?"":" ")+(0|R)}(V.getUTCDate())},m:function(){return T(V.getUTCMonth()+1)}};return function R(L){return L.replace(/%./g,function(N){var B=N[1],P=w[B],B=D[B];return P?R(P):B?B():N})}(v||f)},l.writeInt64BE=y(0,1,2,3,0,4),l.writeInt64LE=y(3,2,1,0,4,0),"%Y-%m-%dT%H:%M:%S.%NZ"),d=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],h=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],w={"%":"%",F:"%Y-%m-%d",n:`
|
|
3
|
-
`,R:"%H:%M",T:"%H:%M:%S",t:" ",X:"%T",Z:"GMT",z:"+0000"};return m;function m(v,k,V){var D=this;if(!(D instanceof m))return new m(v,k,V);D.time=+v||0,D.nano=+k||0,D.year=+V||0,g(D)}function g(v){var k,V,D,R=v.year,L=v.time,N=v.nano,P=((N<0||a<=N)&&(N-=(V=Math.floor(N/a))*a,L+=V,V=1),R%t);return(L<-s||s<L||P)&&((k=u(L/o))&&(R+=k*t,L-=k*o),(D=x(L)).setUTCFullYear(P+D.getUTCFullYear()),D=(L=+D)+(k=u((R-=P)/t))*o,k&&-s<=D&&D<=s&&(R-=k*t,L=D),V=1),V&&(v.year=R,v.time=L,v.nano=N),v}function x(v){var k=new Date(0);return k.setTime(v),k}function b(R,D){R=+R||0;var V=u((D=(D|0)*i)/n)+u(R/n),D=D%n+R%n,R=u(D/n);return R&&(V+=R,D-=R*n),new m(1e3*D,0,V*t)}function y(v,k,V,D,R,L){return function(P,B){var C=g(this);P=P||new Array(8),_(P,B|=0);var $=Math.floor(C.time/1e3),C=C.year*(e*r/t),A=u(C/i)+u($/i),C=C%i+$%i,$=Math.floor(C/i);return $&&(A+=$,C-=$*i),N(P,B+R,A),N(P,B+L,C),P};function N(P,B,A){P[B+v]=A>>24&255,P[B+k]=A>>16&255,P[B+V]=A>>8&255,P[B+D]=255&A}}function S(v,k,V,D,R,L){return function(P,B){_(P,B|=0);var A=N(P,B+R);return b(N(P,B+L),A)};function N(P,B){return 16777216*P[B+v]+(P[B+k]<<16|P[B+V]<<8|P[B+D])}}function _(v,k){if(v=v&&v.length,v==null)throw new TypeError("Invalid Buffer");if(v<k+8)throw new RangeError("Out of range")}function T(v){return(9<v?"":"0")+(0|v)}function E(v,k){return(c+(0|v)).substr(-k)}}()});var qb={};gt(qb,{DEFAULT_SESSION_MAX_PROVIDERS:()=>Cu,DEFAULT_SESSION_MIN_PROVIDERS:()=>Tu,InsufficientProvidersError:()=>Fo,NoRoutersAvailableError:()=>_r,UnknownCodecError:()=>Mo,UnknownHashAlgorithmError:()=>$o,createHeliaHTTP:()=>Kb});var Zn=Symbol.for("@libp2p/content-routing");var Ua=Symbol.for("@libp2p/peer-id");var Yn=Symbol.for("@libp2p/peer-routing");var Me=class extends Error{static name="AbortError";constructor(t="The operation was aborted"){super(t),this.name="AbortError"}};var St=class extends Error{static name="InvalidParametersError";constructor(t="Invalid parameters"){super(t),this.name="InvalidParametersError"}},tn=class extends Error{static name="InvalidPublicKeyError";constructor(t="Invalid public key"){super(t),this.name="InvalidPublicKeyError"}};var Pt=class extends Error{static name="NotFoundError";constructor(t="Not found"){super(t),this.name="NotFoundError"}};var Xo=class extends Error{static name="InvalidCIDError";constructor(t="Invalid CID"){super(t),this.name="InvalidCIDError"}},cr=class extends Error{static name="InvalidMultihashError";constructor(t="Invalid Multihash"){super(t),this.name="InvalidMultihashError"}};var en=class extends Error{static name="UnsupportedKeyTypeError";constructor(t="Unsupported key type"){super(t),this.name="UnsupportedKeyTypeError"}};var ht=(r,...t)=>{try{[...t]}catch{}};var rn=class extends EventTarget{#t=new Map;constructor(){super(),ht(1/0,this)}listenerCount(t){let e=this.#t.get(t);return e==null?0:e.length}addEventListener(t,e,n){super.addEventListener(t,e,n);let o=this.#t.get(t);o==null&&(o=[],this.#t.set(t,o)),o.push({callback:e,once:(n!==!0&&n!==!1&&n?.once)??!1})}removeEventListener(t,e,n){super.removeEventListener(t.toString(),e??null,n);let o=this.#t.get(t);o!=null&&(o=o.filter(({callback:s})=>s!==e),this.#t.set(t,o))}dispatchEvent(t){let e=super.dispatchEvent(t),n=this.#t.get(t.type);return n==null||(n=n.filter(({once:o})=>!o),this.#t.set(t.type,n)),e}safeDispatchEvent(t,e={}){return this.dispatchEvent(new CustomEvent(t,e))}};function Yl(r){return r!=null&&typeof r.start=="function"&&typeof r.stop=="function"}async function ur(...r){let t=[];for(let e of r)Yl(e)&&t.push(e);await Promise.all(t.map(async e=>{e.beforeStart!=null&&await e.beforeStart()})),await Promise.all(t.map(async e=>{await e.start()})),await Promise.all(t.map(async e=>{e.afterStart!=null&&await e.afterStart()}))}async function lr(...r){let t=[];for(let e of r)Yl(e)&&t.push(e);await Promise.all(t.map(async e=>{e.beforeStop!=null&&await e.beforeStop()})),await Promise.all(t.map(async e=>{await e.stop()})),await Promise.all(t.map(async e=>{e.afterStop!=null&&await e.afterStop()}))}function Mt(r){let t=new globalThis.AbortController;function e(){t.abort();for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",e)}for(let s of r){if(s?.aborted===!0){e();break}s?.addEventListener!=null&&s.addEventListener("abort",e)}function n(){for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",e)}let o=t.signal;return o.clear=n,o}function At(){let r={};return r.promise=new Promise((t,e)=>{r.resolve=t,r.reject=e}),r}var Qo=class{buffer;mask;top;btm;next;constructor(t){if(!(t>0)||t-1&t)throw new Error("Max size for a FixedFIFO should be a power of two");this.buffer=new Array(t),this.mask=t-1,this.top=0,this.btm=0,this.next=null}push(t){return this.buffer[this.top]!==void 0?!1:(this.buffer[this.top]=t,this.top=this.top+1&this.mask,!0)}shift(){let t=this.buffer[this.btm];if(t!==void 0)return this.buffer[this.btm]=void 0,this.btm=this.btm+1&this.mask,t}isEmpty(){return this.buffer[this.btm]===void 0}},nn=class{size;hwm;head;tail;constructor(t={}){this.hwm=t.splitLimit??16,this.head=new Qo(this.hwm),this.tail=this.head,this.size=0}calculateSize(t){return t?.byteLength!=null?t.byteLength:1}push(t){if(t?.value!=null&&(this.size+=this.calculateSize(t.value)),!this.head.push(t)){let e=this.head;this.head=e.next=new Qo(2*this.head.buffer.length),this.head.push(t)}}shift(){let t=this.tail.shift();if(t===void 0&&this.tail.next!=null){let e=this.tail.next;this.tail.next=null,this.tail=e,t=this.tail.shift()}return t?.value!=null&&(this.size-=this.calculateSize(t.value)),t}isEmpty(){return this.head.isEmpty()}};var Ra=class extends Error{type;code;constructor(t,e){super(t??"The operation was aborted"),this.type="aborted",this.code=e??"ABORT_ERR"}};function Ur(r={}){return Bm(e=>{let n=e.shift();if(n==null)return{done:!0};if(n.error!=null)throw n.error;return{done:n.done===!0,value:n.value}},r)}function Bm(r,t){t=t??{};let e=t.onEnd,n=new nn,o,s,i,a=At(),c=async()=>{try{return n.isEmpty()?i?{done:!0}:await new Promise((g,x)=>{s=b=>{s=null,n.push(b);try{g(r(n))}catch(y){x(y)}return o}}):r(n)}finally{n.isEmpty()&&queueMicrotask(()=>{a.resolve(),a=At()})}},u=g=>s!=null?s(g):(n.push(g),o),l=g=>(n=new nn,s!=null?s({error:g}):(n.push({error:g}),o)),f=g=>{if(i)return o;if(t?.objectMode!==!0&&g?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return u({done:!1,value:g})},d=g=>i?o:(i=!0,g!=null?l(g):u({done:!0})),h=()=>(n=new nn,d(),{done:!0}),w=g=>(d(g),{done:!0});if(o={[Symbol.asyncIterator](){return this},next:c,return:h,throw:w,push:f,end:d,get readableLength(){return n.size},onEmpty:async g=>{let x=g?.signal;if(x?.throwIfAborted(),n.isEmpty())return;let b,y;x!=null&&(b=new Promise((S,_)=>{y=()=>{_(new Ra)},x.addEventListener("abort",y)}));try{await Promise.race([a.promise,b])}finally{y!=null&&x!=null&&x?.removeEventListener("abort",y)}}},e==null)return o;let m=o;return o={[Symbol.asyncIterator](){return this},next(){return m.next()},throw(g){return m.throw(g),e!=null&&(e(g),e=void 0),{done:!0}},return(){return m.return(),e!=null&&(e(),e=void 0),{done:!0}},push:f,end(g){return m.end(g),e!=null&&(e(g),e=void 0),o},get readableLength(){return m.readableLength},onEmpty:g=>m.onEmpty(g)},o}var Da=class extends Error{type;code;constructor(t,e){super(t??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=e??"ABORT_ERR"}};async function ts(r,t,e,n){let o=new Da(n?.errorMessage,n?.errorCode);return e?.aborted===!0?Promise.reject(o):new Promise((s,i)=>{function a(){e?.removeEventListener("abort",l),r.removeEventListener(t,c),n?.errorEvent!=null&&r.removeEventListener(n.errorEvent,u)}let c=f=>{try{if(n?.filter?.(f)===!1)return}catch(d){a(),i(d);return}a(),s(f)},u=f=>{a(),i(f.detail)},l=()=>{a(),i(o)};e?.addEventListener("abort",l),r.addEventListener(t,c),n?.errorEvent!=null&&r.addEventListener(n.errorEvent,u)})}var es=class extends Error{static name="QueueFullError";constructor(t="The queue was full"){super(t),this.name="QueueFullError"}};var rs=class extends Error{type;code;constructor(t,e,n){super(t??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=e??"ABORT_ERR"}};async function Jl(r,t,e){if(t==null)return r;if(t.aborted)return Promise.reject(new rs(e?.errorMessage,e?.errorCode,e?.errorName));let n,o=new rs(e?.errorMessage,e?.errorCode,e?.errorName);try{return await Promise.race([r,new Promise((s,i)=>{n=()=>{i(o)},t.addEventListener("abort",n)})])}finally{n!=null&&t.removeEventListener("abort",n)}}var ns=class{deferred;signal;constructor(t){this.signal=t,this.deferred=At(),this.onAbort=this.onAbort.bind(this),this.signal?.addEventListener("abort",this.onAbort)}onAbort(){this.deferred.reject(this.signal?.reason??new Me)}cleanup(){this.signal?.removeEventListener("abort",this.onAbort)}};function km(){return`${parseInt(String(Math.random()*1e9),10).toString()}${Date.now()}`}var os=class{id;fn;options;recipients;status;timeline;controller;constructor(t,e){this.id=km(),this.status="queued",this.fn=t,this.options=e,this.recipients=[],this.timeline={created:Date.now()},this.controller=new AbortController,ht(1/0,this.controller.signal),this.onAbort=this.onAbort.bind(this)}abort(t){this.controller.abort(t)}onAbort(){this.recipients.reduce((e,n)=>e&&n.signal?.aborted===!0,!0)&&(this.controller.abort(new Me),this.cleanup())}async join(t={}){let e=new ns(t.signal);return this.recipients.push(e),t.signal?.addEventListener("abort",this.onAbort),e.deferred.promise}async run(){this.status="running",this.timeline.started=Date.now();try{this.controller.signal.throwIfAborted();let t=await Jl(this.fn({...this.options??{},signal:this.controller.signal}),this.controller.signal);this.recipients.forEach(e=>{e.deferred.resolve(t)}),this.status="complete"}catch(t){this.recipients.forEach(e=>{e.deferred.reject(t)}),this.status="errored"}finally{this.timeline.finished=Date.now(),this.cleanup()}}cleanup(){this.recipients.forEach(t=>{t.cleanup(),t.signal?.removeEventListener("abort",this.onAbort)})}};var Ve=class extends rn{concurrency;maxSize;queue;pending;sort;constructor(t={}){super(),this.concurrency=t.concurrency??Number.POSITIVE_INFINITY,this.maxSize=t.maxSize??Number.POSITIVE_INFINITY,this.pending=0,t.metricName!=null&&t.metrics?.registerMetricGroup(t.metricName,{calculate:()=>({size:this.queue.length,running:this.pending,queued:this.queue.length-this.pending})}),this.sort=t.sort,this.queue=[]}tryToStartAnother(){if(this.size===0)return queueMicrotask(()=>{this.safeDispatchEvent("empty")}),this.running===0&&queueMicrotask(()=>{this.safeDispatchEvent("idle")}),!1;if(this.pending<this.concurrency){let t;for(let e of this.queue)if(e.status==="queued"){t=e;break}return t==null?!1:(this.safeDispatchEvent("active"),this.pending++,t.run().finally(()=>{for(let e=0;e<this.queue.length;e++)if(this.queue[e]===t){this.queue.splice(e,1);break}this.pending--,this.tryToStartAnother(),this.safeDispatchEvent("next")}),!0)}return!1}enqueue(t){this.queue.push(t),this.sort!=null&&this.queue.sort(this.sort)}async add(t,e){if(e?.signal?.throwIfAborted(),this.size===this.maxSize)throw new es;let n=new os(t,e);return this.enqueue(n),this.safeDispatchEvent("add"),this.tryToStartAnother(),n.join(e).then(o=>(this.safeDispatchEvent("completed",{detail:o}),this.safeDispatchEvent("success",{detail:{job:n,result:o}}),o)).catch(o=>{if(n.status==="queued"){for(let s=0;s<this.queue.length;s++)if(this.queue[s]===n){this.queue.splice(s,1);break}}throw this.safeDispatchEvent("error",{detail:o}),this.safeDispatchEvent("failure",{detail:{job:n,error:o}}),o})}clear(){this.queue.splice(0,this.queue.length)}abort(){this.queue.forEach(t=>{t.abort(new Me)}),this.clear()}async onEmpty(t){this.size!==0&&await ts(this,"empty",t?.signal)}async onSizeLessThan(t,e){this.size<t||await ts(this,"next",e?.signal,{filter:()=>this.size<t})}async onIdle(t){this.pending===0&&this.size===0||await ts(this,"idle",t?.signal)}get size(){return this.queue.length}get queued(){return this.queue.length-this.pending}get running(){return this.pending}async*toGenerator(t){t?.signal?.throwIfAborted();let e=Ur({objectMode:!0}),n=c=>{c!=null?this.abort():this.clear(),e.end(c)},o=c=>{c.detail!=null&&e.push(c.detail)},s=c=>{n(c.detail)},i=()=>{n()},a=()=>{n(new Me("Queue aborted"))};this.addEventListener("completed",o),this.addEventListener("error",s),this.addEventListener("idle",i),t?.signal?.addEventListener("abort",a);try{yield*e}finally{this.removeEventListener("completed",o),this.removeEventListener("error",s),this.removeEventListener("idle",i),t?.signal?.removeEventListener("abort",a),n()}}};var ss=class extends Ve{has(t){return this.find(t)!=null}find(t){return this.queue.find(e=>t.equals(e.options.peerId))}};function Im(r){return r[Symbol.asyncIterator]!=null}function _m(r){if(Im(r))return(async()=>{for await(let t of r);})();for(let t of r);}var Rr=_m;function Xl(r=0){return new Uint8Array(r)}function le(r=0){return new Uint8Array(r)}var Tm=Math.pow(2,7),Cm=Math.pow(2,14),Nm=Math.pow(2,21),Fa=Math.pow(2,28),$a=Math.pow(2,35),Ma=Math.pow(2,42),Va=Math.pow(2,49),et=128,Lt=127;function qt(r){if(r<Tm)return 1;if(r<Cm)return 2;if(r<Nm)return 3;if(r<Fa)return 4;if(r<$a)return 5;if(r<Ma)return 6;if(r<Va)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function Oa(r,t,e=0){switch(qt(r)){case 8:t[e++]=r&255|et,r/=128;case 7:t[e++]=r&255|et,r/=128;case 6:t[e++]=r&255|et,r/=128;case 5:t[e++]=r&255|et,r/=128;case 4:t[e++]=r&255|et,r>>>=7;case 3:t[e++]=r&255|et,r>>>=7;case 2:t[e++]=r&255|et,r>>>=7;case 1:{t[e++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return t}function Pm(r,t,e=0){switch(qt(r)){case 8:t.set(e++,r&255|et),r/=128;case 7:t.set(e++,r&255|et),r/=128;case 6:t.set(e++,r&255|et),r/=128;case 5:t.set(e++,r&255|et),r/=128;case 4:t.set(e++,r&255|et),r>>>=7;case 3:t.set(e++,r&255|et),r>>>=7;case 2:t.set(e++,r&255|et),r>>>=7;case 1:{t.set(e++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return t}function Ha(r,t){let e=r[t],n=0;if(n+=e&Lt,e<et||(e=r[t+1],n+=(e&Lt)<<7,e<et)||(e=r[t+2],n+=(e&Lt)<<14,e<et)||(e=r[t+3],n+=(e&Lt)<<21,e<et)||(e=r[t+4],n+=(e&Lt)*Fa,e<et)||(e=r[t+5],n+=(e&Lt)*$a,e<et)||(e=r[t+6],n+=(e&Lt)*Ma,e<et)||(e=r[t+7],n+=(e&Lt)*Va,e<et))return n;throw new RangeError("Could not decode varint")}function Lm(r,t){let e=r.get(t),n=0;if(n+=e&Lt,e<et||(e=r.get(t+1),n+=(e&Lt)<<7,e<et)||(e=r.get(t+2),n+=(e&Lt)<<14,e<et)||(e=r.get(t+3),n+=(e&Lt)<<21,e<et)||(e=r.get(t+4),n+=(e&Lt)*Fa,e<et)||(e=r.get(t+5),n+=(e&Lt)*$a,e<et)||(e=r.get(t+6),n+=(e&Lt)*Ma,e<et)||(e=r.get(t+7),n+=(e&Lt)*Va,e<et))return n;throw new RangeError("Could not decode varint")}function on(r,t,e=0){return t==null&&(t=le(qt(r))),t instanceof Uint8Array?Oa(r,t,e):Pm(r,t,e)}function Dr(r,t=0){return r instanceof Uint8Array?Ha(r,t):Lm(r,t)}function Xt(r,t){t==null&&(t=r.reduce((o,s)=>o+s.length,0));let e=le(t),n=0;for(let o of r)e.set(o,n),n+=o.length;return e}function ot(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}function Um(r){let[t,e]=r[Symbol.asyncIterator]!=null?[r[Symbol.asyncIterator](),Symbol.asyncIterator]:[r[Symbol.iterator](),Symbol.iterator],n=[];return{peek:()=>t.next(),push:o=>{n.push(o)},next:()=>n.length>0?{done:!1,value:n.shift()}:t.next(),[e](){return this}}}var sn=Um;function Rm(r){return r[Symbol.asyncIterator]!=null}function Dm(r,t){let e=0;if(Rm(r))return async function*(){for await(let c of r)yield t(c,e++)}();let n=sn(r),{value:o,done:s}=n.next();if(s===!0)return function*(){}();let i=t(o,e++);if(typeof i.then=="function")return async function*(){yield await i;for await(let c of n)yield t(c,e++)}();let a=t;return function*(){yield i;for(let c of n)yield a(c,e++)}()}var an=Dm;function Fm(r){return r[Symbol.asyncIterator]!=null}function $m(...r){let t=[];for(let e of r)Fm(e)||t.push(e);return t.length===r.length?function*(){for(let e of t)yield*e}():async function*(){let e=Ur({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async n=>{for await(let o of n)e.push(o)})),e.end()}catch(n){e.end(n)}}),yield*e}()}var Fr=$m;function Mm(r){return r[Symbol.asyncIterator]!=null}function Vm(r,t){return Mm(r)?async function*(){let e=0;if(!(t<1)){for await(let n of r)if(yield n,e++,e===t)return}}():function*(){let e=0;if(!(t<1)){for(let n of r)if(yield n,e++,e===t)return}}()}var is=Vm;var tt=class extends Event{type;detail;constructor(t,e){super(t),this.type=t,this.detail=e}};var za=new Float32Array([-0]),fr=new Uint8Array(za.buffer);function tf(r,t,e){za[0]=r,t[e]=fr[0],t[e+1]=fr[1],t[e+2]=fr[2],t[e+3]=fr[3]}function ef(r,t){return fr[0]=r[t],fr[1]=r[t+1],fr[2]=r[t+2],fr[3]=r[t+3],za[0]}var Ka=new Float64Array([-0]),Ut=new Uint8Array(Ka.buffer);function rf(r,t,e){Ka[0]=r,t[e]=Ut[0],t[e+1]=Ut[1],t[e+2]=Ut[2],t[e+3]=Ut[3],t[e+4]=Ut[4],t[e+5]=Ut[5],t[e+6]=Ut[6],t[e+7]=Ut[7]}function nf(r,t){return Ut[0]=r[t],Ut[1]=r[t+1],Ut[2]=r[t+2],Ut[3]=r[t+3],Ut[4]=r[t+4],Ut[5]=r[t+5],Ut[6]=r[t+6],Ut[7]=r[t+7],Ka[0]}var Om=BigInt(Number.MAX_SAFE_INTEGER),Hm=BigInt(Number.MIN_SAFE_INTEGER),Qt=class r{lo;hi;constructor(t,e){this.lo=t|0,this.hi=e|0}toNumber(t=!1){if(!t&&this.hi>>>31>0){let e=~this.lo+1>>>0,n=~this.hi>>>0;return e===0&&(n=n+1>>>0),-(e+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(t=!1){if(t)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let e=~this.lo+1>>>0,n=~this.hi>>>0;return e===0&&(n=n+1>>>0),-(BigInt(e)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(t=!1){return this.toBigInt(t).toString()}zzEncode(){let t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this}zzDecode(){let t=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this}length(){let t=this.lo,e=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?e===0?t<16384?t<128?1:2:t<2097152?3:4:e<16384?e<128?5:6:e<2097152?7:8:n<128?9:10}static fromBigInt(t){if(t===0n)return $r;if(t<Om&&t>Hm)return this.fromNumber(Number(t));let e=t<0n;e&&(t=-t);let n=t>>32n,o=t-(n<<32n);return e&&(n=~n|0n,o=~o|0n,++o>of&&(o=0n,++n>of&&(n=0n))),new r(Number(o),Number(n))}static fromNumber(t){if(t===0)return $r;let e=t<0;e&&(t=-t);let n=t>>>0,o=(t-n)/4294967296>>>0;return e&&(o=~o>>>0,n=~n>>>0,++n>4294967295&&(n=0,++o>4294967295&&(o=0))),new r(n,o)}static from(t){return typeof t=="number"?r.fromNumber(t):typeof t=="bigint"?r.fromBigInt(t):typeof t=="string"?r.fromBigInt(BigInt(t)):t.low!=null||t.high!=null?new r(t.low>>>0,t.high>>>0):$r}},$r=new Qt(0,0);$r.toBigInt=function(){return 0n};$r.zzEncode=$r.zzDecode=function(){return this};$r.length=function(){return 1};var of=4294967296n;function sf(r){let t=0,e=0;for(let n=0;n<r.length;++n)e=r.charCodeAt(n),e<128?t+=1:e<2048?t+=2:(e&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,t+=4):t+=3;return t}function af(r,t,e){if(e-t<1)return"";let o,s=[],i=0,a;for(;t<e;)a=r[t++],a<128?s[i++]=a:a>191&&a<224?s[i++]=(a&31)<<6|r[t++]&63:a>239&&a<365?(a=((a&7)<<18|(r[t++]&63)<<12|(r[t++]&63)<<6|r[t++]&63)-65536,s[i++]=55296+(a>>10),s[i++]=56320+(a&1023)):s[i++]=(a&15)<<12|(r[t++]&63)<<6|r[t++]&63,i>8191&&((o??(o=[])).push(String.fromCharCode.apply(String,s)),i=0);return o!=null?(i>0&&o.push(String.fromCharCode.apply(String,s.slice(0,i))),o.join("")):String.fromCharCode.apply(String,s.slice(0,i))}function qa(r,t,e){let n=e,o,s;for(let i=0;i<r.length;++i)o=r.charCodeAt(i),o<128?t[e++]=o:o<2048?(t[e++]=o>>6|192,t[e++]=o&63|128):(o&64512)===55296&&((s=r.charCodeAt(i+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++i,t[e++]=o>>18|240,t[e++]=o>>12&63|128,t[e++]=o>>6&63|128,t[e++]=o&63|128):(t[e++]=o>>12|224,t[e++]=o>>6&63|128,t[e++]=o&63|128);return e-n}function fe(r,t){return RangeError(`index out of range: ${r.pos} + ${t??1} > ${r.len}`)}function as(r,t){return(r[t-4]|r[t-3]<<8|r[t-2]<<16|r[t-1]<<24)>>>0}var ja=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(t){this.buf=t,this.pos=0,this.len=t.length}uint32(){let t=4294967295;if(t=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(t=(t|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return t;if((this.pos+=5)>this.len)throw this.pos=this.len,fe(this,10);return t}int32(){return this.uint32()|0}sint32(){let t=this.uint32();return t>>>1^-(t&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw fe(this,4);return as(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw fe(this,4);return as(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw fe(this,4);let t=ef(this.buf,this.pos);return this.pos+=4,t}double(){if(this.pos+8>this.len)throw fe(this,4);let t=nf(this.buf,this.pos);return this.pos+=8,t}bytes(){let t=this.uint32(),e=this.pos,n=this.pos+t;if(n>this.len)throw fe(this,t);return this.pos+=t,e===n?new Uint8Array(0):this.buf.subarray(e,n)}string(){let t=this.bytes();return af(t,0,t.length)}skip(t){if(typeof t=="number"){if(this.pos+t>this.len)throw fe(this,t);this.pos+=t}else do if(this.pos>=this.len)throw fe(this);while(this.buf[this.pos++]&128);return this}skipType(t){switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(t=this.uint32()&7)!==4;)this.skipType(t);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${t} at offset ${this.pos}`)}return this}readLongVarint(){let t=new Qt(0,0),e=0;if(this.len-this.pos>4){for(;e<4;++e)if(t.lo=(t.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return t;if(t.lo=(t.lo|(this.buf[this.pos]&127)<<28)>>>0,t.hi=(t.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return t;e=0}else{for(;e<3;++e){if(this.pos>=this.len)throw fe(this);if(t.lo=(t.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return t}return t.lo=(t.lo|(this.buf[this.pos++]&127)<<e*7)>>>0,t}if(this.len-this.pos>4){for(;e<5;++e)if(t.hi=(t.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return t}else for(;e<5;++e){if(this.pos>=this.len)throw fe(this);if(t.hi=(t.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return t}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw fe(this,8);let t=as(this.buf,this.pos+=4),e=as(this.buf,this.pos+=4);return new Qt(t,e)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let t=Ha(this.buf,this.pos);return this.pos+=qt(t),t}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}};function Ga(r){return new ja(r instanceof Uint8Array?r:r.subarray())}function cn(r,t,e){let n=Ga(r);return t.decode(n,void 0,e)}var Qa={};gt(Qa,{base10:()=>Wm});var Xv=new Uint8Array(0);function uf(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}function he(r){if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return r;if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return new Uint8Array(r.buffer,r.byteOffset,r.byteLength);throw new Error("Unknown type, must be binary type")}function lf(r){return new TextEncoder().encode(r)}function ff(r){return new TextDecoder().decode(r)}function zm(r,t){if(r.length>=255)throw new TypeError("Alphabet too long");for(var e=new Uint8Array(256),n=0;n<e.length;n++)e[n]=255;for(var o=0;o<r.length;o++){var s=r.charAt(o),i=s.charCodeAt(0);if(e[i]!==255)throw new TypeError(s+" is ambiguous");e[i]=o}var a=r.length,c=r.charAt(0),u=Math.log(a)/Math.log(256),l=Math.log(256)/Math.log(a);function f(w){if(w instanceof Uint8Array||(ArrayBuffer.isView(w)?w=new Uint8Array(w.buffer,w.byteOffset,w.byteLength):Array.isArray(w)&&(w=Uint8Array.from(w))),!(w instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(w.length===0)return"";for(var m=0,g=0,x=0,b=w.length;x!==b&&w[x]===0;)x++,m++;for(var y=(b-x)*l+1>>>0,S=new Uint8Array(y);x!==b;){for(var _=w[x],T=0,E=y-1;(_!==0||T<g)&&E!==-1;E--,T++)_+=256*S[E]>>>0,S[E]=_%a>>>0,_=_/a>>>0;if(_!==0)throw new Error("Non-zero carry");g=T,x++}for(var v=y-g;v!==y&&S[v]===0;)v++;for(var k=c.repeat(m);v<y;++v)k+=r.charAt(S[v]);return k}function d(w){if(typeof w!="string")throw new TypeError("Expected String");if(w.length===0)return new Uint8Array;var m=0;if(w[m]!==" "){for(var g=0,x=0;w[m]===c;)g++,m++;for(var b=(w.length-m)*u+1>>>0,y=new Uint8Array(b);w[m];){var S=e[w.charCodeAt(m)];if(S===255)return;for(var _=0,T=b-1;(S!==0||_<x)&&T!==-1;T--,_++)S+=a*y[T]>>>0,y[T]=S%256>>>0,S=S/256>>>0;if(S!==0)throw new Error("Non-zero carry");x=_,m++}if(w[m]!==" "){for(var E=b-x;E!==b&&y[E]===0;)E++;for(var v=new Uint8Array(g+(b-E)),k=g;E!==b;)v[k++]=y[E++];return v}}}function h(w){var m=d(w);if(m)return m;throw new Error(`Non-${t} character`)}return{encode:f,decodeUnsafe:d,decode:h}}var Km=zm,qm=Km,hf=qm;var Za=class{name;prefix;baseEncode;constructor(t,e,n){this.name=t,this.prefix=e,this.baseEncode=n}encode(t){if(t instanceof Uint8Array)return`${this.prefix}${this.baseEncode(t)}`;throw Error("Unknown type, must be binary type")}},Ya=class{name;prefix;baseDecode;prefixCodePoint;constructor(t,e,n){this.name=t,this.prefix=e;let o=e.codePointAt(0);if(o===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=o,this.baseDecode=n}decode(t){if(typeof t=="string"){if(t.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(t)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(t.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(t){return df(this,t)}},Ja=class{decoders;constructor(t){this.decoders=t}or(t){return df(this,t)}decode(t){let e=t[0],n=this.decoders[e];if(n!=null)return n.decode(t);throw RangeError(`Unable to decode multibase string ${JSON.stringify(t)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function df(r,t){return new Ja({...r.decoders??{[r.prefix]:r},...t.decoders??{[t.prefix]:t}})}var Xa=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(t,e,n,o){this.name=t,this.prefix=e,this.baseEncode=n,this.baseDecode=o,this.encoder=new Za(t,e,n),this.decoder=new Ya(t,e,o)}encode(t){return this.encoder.encode(t)}decode(t){return this.decoder.decode(t)}};function un({name:r,prefix:t,encode:e,decode:n}){return new Xa(r,t,e,n)}function hr({name:r,prefix:t,alphabet:e}){let{encode:n,decode:o}=hf(e,r);return un({prefix:t,name:r,encode:n,decode:s=>he(o(s))})}function jm(r,t,e,n){let o={};for(let l=0;l<t.length;++l)o[t[l]]=l;let s=r.length;for(;r[s-1]==="=";)--s;let i=new Uint8Array(s*e/8|0),a=0,c=0,u=0;for(let l=0;l<s;++l){let f=o[r[l]];if(f===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<e|f,a+=e,a>=8&&(a-=8,i[u++]=255&c>>a)}if(a>=e||255&c<<8-a)throw new SyntaxError("Unexpected end of data");return i}function Gm(r,t,e){let n=t[t.length-1]==="=",o=(1<<e)-1,s="",i=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],i+=8;i>e;)i-=e,s+=t[o&a>>i];if(i!==0&&(s+=t[o&a<<e-i]),n)for(;s.length*e&7;)s+="=";return s}function dt({name:r,prefix:t,bitsPerChar:e,alphabet:n}){return un({prefix:t,name:r,encode(o){return Gm(o,n,e)},decode(o){return jm(o,n,e,r)}})}var Wm=hr({prefix:"9",name:"base10",alphabet:"0123456789"});var tc={};gt(tc,{base16:()=>Zm,base16upper:()=>Ym});var Zm=dt({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Ym=dt({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var ec={};gt(ec,{base2:()=>Jm});var Jm=dt({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var rc={};gt(rc,{base256emoji:()=>rg});var pf=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),Xm=pf.reduce((r,t,e)=>(r[e]=t,r),[]),Qm=pf.reduce((r,t,e)=>{let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);return r[n]=e,r},[]);function tg(r){return r.reduce((t,e)=>(t+=Xm[e],t),"")}function eg(r){let t=[];for(let e of r){let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);let o=Qm[n];if(o==null)throw new Error(`Non-base256emoji character: ${e}`);t.push(o)}return new Uint8Array(t)}var rg=un({prefix:"\u{1F680}",name:"base256emoji",encode:tg,decode:eg});var nc={};gt(nc,{base32:()=>_t,base32hex:()=>ig,base32hexpad:()=>cg,base32hexpadupper:()=>ug,base32hexupper:()=>ag,base32pad:()=>og,base32padupper:()=>sg,base32upper:()=>ng,base32z:()=>lg});var _t=dt({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),ng=dt({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),og=dt({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),sg=dt({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),ig=dt({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),ag=dt({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),cg=dt({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),ug=dt({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),lg=dt({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var oc={};gt(oc,{base36:()=>_e,base36upper:()=>fg});var _e=hr({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),fg=hr({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var sc={};gt(sc,{base58btc:()=>st,base58flickr:()=>hg});var st=hr({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),hg=hr({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var ac={};gt(ac,{base64:()=>Te,base64pad:()=>dg,base64url:()=>ic,base64urlpad:()=>pg});var Te=dt({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),dg=dt({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),ic=dt({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),pg=dt({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var cc={};gt(cc,{base8:()=>mg});var mg=dt({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var uc={};gt(uc,{identity:()=>gg});var gg=un({prefix:"\0",name:"identity",encode:r=>ff(r),decode:r=>lf(r)});var cs={};gt(cs,{code:()=>lc,decode:()=>vg,encode:()=>bg,name:()=>xg});var yg=new TextEncoder,wg=new TextDecoder,xg="json",lc=512;function bg(r){return yg.encode(JSON.stringify(r))}function vg(r){return JSON.parse(wg.decode(r))}var Xn={};gt(Xn,{code:()=>Jn,decode:()=>Ag,encode:()=>Sg,name:()=>Eg});var Eg="raw",Jn=85;function Sg(r){return he(r)}function Ag(r){return he(r)}var hc={};gt(hc,{identity:()=>jt});var Bg=yf,mf=128,kg=127,Ig=~kg,_g=Math.pow(2,31);function yf(r,t,e){t=t||[],e=e||0;for(var n=e;r>=_g;)t[e++]=r&255|mf,r/=128;for(;r&Ig;)t[e++]=r&255|mf,r>>>=7;return t[e]=r|0,yf.bytes=e-n+1,t}var Tg=fc,Cg=128,gf=127;function fc(r,n){var e=0,n=n||0,o=0,s=n,i,a=r.length;do{if(s>=a)throw fc.bytes=0,new RangeError("Could not decode varint");i=r[s++],e+=o<28?(i&gf)<<o:(i&gf)*Math.pow(2,o),o+=7}while(i>=Cg);return fc.bytes=s-n,e}var Ng=Math.pow(2,7),Pg=Math.pow(2,14),Lg=Math.pow(2,21),Ug=Math.pow(2,28),Rg=Math.pow(2,35),Dg=Math.pow(2,42),Fg=Math.pow(2,49),$g=Math.pow(2,56),Mg=Math.pow(2,63),Vg=function(r){return r<Ng?1:r<Pg?2:r<Lg?3:r<Ug?4:r<Rg?5:r<Dg?6:r<Fg?7:r<$g?8:r<Mg?9:10},Og={encode:Bg,decode:Tg,encodingLength:Vg},Hg=Og,Qn=Hg;function to(r,t=0){return[Qn.decode(r,t),Qn.decode.bytes]}function ln(r,t,e=0){return Qn.encode(r,t,e),t}function fn(r){return Qn.encodingLength(r)}function de(r,t){let e=t.byteLength,n=fn(r),o=n+fn(e),s=new Uint8Array(o+e);return ln(r,s,0),ln(e,s,n),s.set(t,o),new hn(r,e,t,s)}function pe(r){let t=he(r),[e,n]=to(t),[o,s]=to(t.subarray(n)),i=t.subarray(n+s);if(i.byteLength!==o)throw new Error("Incorrect length");return new hn(e,o,i,t)}function wf(r,t){if(r===t)return!0;{let e=t;return r.code===e.code&&r.size===e.size&&e.bytes instanceof Uint8Array&&uf(r.bytes,e.bytes)}}var hn=class{code;size;digest;bytes;constructor(t,e,n,o){this.code=t,this.size=e,this.digest=n,this.bytes=o}};var xf=0,zg="identity",bf=he;function Kg(r){return de(xf,bf(r))}var jt={code:xf,name:zg,encode:bf,digest:Kg};var mc={};gt(mc,{sha256:()=>dr,sha512:()=>ls});function pc({name:r,code:t,encode:e}){return new dc(r,t,e)}var dc=class{name;code;encode;constructor(t,e,n){this.name=t,this.code=e,this.encode=n}digest(t){if(t instanceof Uint8Array){let e=this.encode(t);return e instanceof Uint8Array?de(this.code,e):e.then(n=>de(this.code,n))}else throw Error("Unknown type, must be binary type")}};function Ef(r){return async t=>new Uint8Array(await crypto.subtle.digest(r,t))}var dr=pc({name:"sha2-256",code:18,encode:Ef("SHA-256")}),ls=pc({name:"sha2-512",code:19,encode:Ef("SHA-512")});function Sf(r,t){let{bytes:e,version:n}=r;switch(n){case 0:return jg(e,gc(r),t??st.encoder);default:return Gg(e,gc(r),t??_t.encoder)}}var Af=new WeakMap;function gc(r){let t=Af.get(r);if(t==null){let e=new Map;return Af.set(r,e),e}return t}var O=class r{code;version;multihash;bytes;"/";constructor(t,e,n,o){this.code=e,this.version=t,this.multihash=n,this.bytes=o,this["/"]=o}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:t,multihash:e}=this;if(t!==eo)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(e.code!==Wg)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(e)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:t,digest:e}=this.multihash,n=de(t,e);return r.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(t){return r.equals(this,t)}static equals(t,e){let n=e;return n!=null&&t.code===n.code&&t.version===n.version&&wf(t.multihash,n.multihash)}toString(t){return Sf(this,t)}toJSON(){return{"/":Sf(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(t){if(t==null)return null;let e=t;if(e instanceof r)return e;if(e["/"]!=null&&e["/"]===e.bytes||e.asCID===e){let{version:n,code:o,multihash:s,bytes:i}=e;return new r(n,o,s,i??Bf(n,o,s.bytes))}else if(e[Zg]===!0){let{version:n,multihash:o,code:s}=e,i=pe(o);return r.create(n,s,i)}else return null}static create(t,e,n){if(typeof e!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(t){case 0:{if(e!==eo)throw new Error(`Version 0 CID must use dag-pb (code: ${eo}) block encoding`);return new r(t,e,n,n.bytes)}case 1:{let o=Bf(t,e,n.bytes);return new r(t,e,n,o)}default:throw new Error("Invalid version")}}static createV0(t){return r.create(0,eo,t)}static createV1(t,e){return r.create(1,t,e)}static decode(t){let[e,n]=r.decodeFirst(t);if(n.length!==0)throw new Error("Incorrect length");return e}static decodeFirst(t){let e=r.inspectBytes(t),n=e.size-e.multihashSize,o=he(t.subarray(n,n+e.multihashSize));if(o.byteLength!==e.multihashSize)throw new Error("Incorrect length");let s=o.subarray(e.multihashSize-e.digestSize),i=new hn(e.multihashCode,e.digestSize,s,o);return[e.version===0?r.createV0(i):r.createV1(e.codec,i),t.subarray(e.size)]}static inspectBytes(t){let e=0,n=()=>{let[f,d]=to(t.subarray(e));return e+=d,f},o=n(),s=eo;if(o===18?(o=0,e=0):s=n(),o!==0&&o!==1)throw new RangeError(`Invalid CID version ${o}`);let i=e,a=n(),c=n(),u=e+c,l=u-i;return{version:o,codec:s,multihashCode:a,digestSize:c,multihashSize:l,size:u}}static parse(t,e){let[n,o]=qg(t,e),s=r.decode(o);if(s.version===0&&t[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return gc(s).set(n,t),s}};function qg(r,t){switch(r[0]){case"Q":{let e=t??st;return[st.prefix,e.decode(`${st.prefix}${r}`)]}case st.prefix:{let e=t??st;return[st.prefix,e.decode(r)]}case _t.prefix:{let e=t??_t;return[_t.prefix,e.decode(r)]}case _e.prefix:{let e=t??_e;return[_e.prefix,e.decode(r)]}default:{if(t==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[r[0],t.decode(r)]}}}function jg(r,t,e){let{prefix:n}=e;if(n!==st.prefix)throw Error(`Cannot string encode V0 in ${e.name} encoding`);let o=t.get(n);if(o==null){let s=e.encode(r).slice(1);return t.set(n,s),s}else return o}function Gg(r,t,e){let{prefix:n}=e,o=t.get(n);if(o==null){let s=e.encode(r);return t.set(n,s),s}else return o}var eo=112,Wg=18;function Bf(r,t,e){let n=fn(r),o=n+fn(t),s=new Uint8Array(o+e.byteLength);return ln(r,s,0),ln(t,s,n),s.set(e,o),s}var Zg=Symbol.for("@ipld/js-cid/CID");var ro={...uc,...ec,...cc,...Qa,...tc,...nc,...oc,...sc,...ac,...rc},R2={...mc,...hc};function If(r,t,e,n){return{name:r,prefix:t,encoder:{name:r,prefix:t,encode:e},decoder:{decode:n}}}var kf=If("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),yc=If("ascii","a",r=>{let t="a";for(let e=0;e<r.length;e++)t+=String.fromCharCode(r[e]);return t},r=>{r=r.substring(1);let t=le(r.length);for(let e=0;e<r.length;e++)t[e]=r.charCodeAt(e);return t}),Yg={utf8:kf,"utf-8":kf,hex:ro.base16,latin1:yc,ascii:yc,binary:yc,...ro},fs=Yg;function z(r,t="utf8"){let e=fs[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return e.decoder.decode(`${e.prefix}${r}`)}function wc(r){let t=r??8192,e=t>>>1,n,o=t;return function(i){if(i<1||i>e)return le(i);o+i>t&&(n=le(t),o=0);let a=n.subarray(o,o+=i);return o&7&&(o=(o|7)+1),a}}var Mr=class{fn;len;next;val;constructor(t,e,n){this.fn=t,this.len=e,this.next=void 0,this.val=n}};function xc(){}var vc=class{head;tail;len;next;constructor(t){this.head=t.head,this.tail=t.tail,this.len=t.len,this.next=t.states}},Jg=wc();function Xg(r){return globalThis.Buffer!=null?le(r):Jg(r)}var oo=class{len;head;tail;states;constructor(){this.len=0,this.head=new Mr(xc,0,0),this.tail=this.head,this.states=null}_push(t,e,n){return this.tail=this.tail.next=new Mr(t,e,n),this.len+=e,this}uint32(t){return this.len+=(this.tail=this.tail.next=new Ec((t=t>>>0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this}int32(t){return t<0?this._push(hs,10,Qt.fromNumber(t)):this.uint32(t)}sint32(t){return this.uint32((t<<1^t>>31)>>>0)}uint64(t){let e=Qt.fromBigInt(t);return this._push(hs,e.length(),e)}uint64Number(t){return this._push(Oa,qt(t),t)}uint64String(t){return this.uint64(BigInt(t))}int64(t){return this.uint64(t)}int64Number(t){return this.uint64Number(t)}int64String(t){return this.uint64String(t)}sint64(t){let e=Qt.fromBigInt(t).zzEncode();return this._push(hs,e.length(),e)}sint64Number(t){let e=Qt.fromNumber(t).zzEncode();return this._push(hs,e.length(),e)}sint64String(t){return this.sint64(BigInt(t))}bool(t){return this._push(bc,1,t?1:0)}fixed32(t){return this._push(no,4,t>>>0)}sfixed32(t){return this.fixed32(t)}fixed64(t){let e=Qt.fromBigInt(t);return this._push(no,4,e.lo)._push(no,4,e.hi)}fixed64Number(t){let e=Qt.fromNumber(t);return this._push(no,4,e.lo)._push(no,4,e.hi)}fixed64String(t){return this.fixed64(BigInt(t))}sfixed64(t){return this.fixed64(t)}sfixed64Number(t){return this.fixed64Number(t)}sfixed64String(t){return this.fixed64String(t)}float(t){return this._push(tf,4,t)}double(t){return this._push(rf,8,t)}bytes(t){let e=t.length>>>0;return e===0?this._push(bc,1,0):this.uint32(e)._push(ty,e,t)}string(t){let e=sf(t);return e!==0?this.uint32(e)._push(qa,e,t):this._push(bc,1,0)}fork(){return this.states=new vc(this),this.head=this.tail=new Mr(xc,0,0),this.len=0,this}reset(){return this.states!=null?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new Mr(xc,0,0),this.len=0),this}ldelim(){let t=this.head,e=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=t.next,this.tail=e,this.len+=n),this}finish(){let t=this.head.next,e=Xg(this.len),n=0;for(;t!=null;)t.fn(t.val,e,n),n+=t.len,t=t.next;return e}};function bc(r,t,e){t[e]=r&255}function Qg(r,t,e){for(;r>127;)t[e++]=r&127|128,r>>>=7;t[e]=r}var Ec=class extends Mr{next;constructor(t,e){super(Qg,t,e),this.next=void 0}};function hs(r,t,e){for(;r.hi!==0;)t[e++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)t[e++]=r.lo&127|128,r.lo=r.lo>>>7;t[e++]=r.lo}function no(r,t,e){t[e]=r&255,t[e+1]=r>>>8&255,t[e+2]=r>>>16&255,t[e+3]=r>>>24}function ty(r,t,e){t.set(r,e)}globalThis.Buffer!=null&&(oo.prototype.bytes=function(r){let t=r.length>>>0;return this.uint32(t),t>0&&this._push(ey,t,r),this},oo.prototype.string=function(r){let t=globalThis.Buffer.byteLength(r);return this.uint32(t),t>0&&this._push(ry,t,r),this});function ey(r,t,e){t.set(r,e)}function ry(r,t,e){r.length<40?qa(r,t,e):t.utf8Write!=null?t.utf8Write(r,e):t.set(z(r),e)}function Sc(){return new oo}function dn(r,t){let e=Sc();return t.encode(r,e,{lengthDelimited:!1}),e.finish()}var pn;(function(r){r[r.VARINT=0]="VARINT",r[r.BIT64=1]="BIT64",r[r.LENGTH_DELIMITED=2]="LENGTH_DELIMITED",r[r.START_GROUP=3]="START_GROUP",r[r.END_GROUP=4]="END_GROUP",r[r.BIT32=5]="BIT32"})(pn||(pn={}));function ds(r,t,e,n){return{name:r,type:t,encode:e,decode:n}}function so(r){function t(o){if(r[o.toString()]==null)throw new Error("Invalid enum value");return r[o]}let e=function(s,i){let a=t(s);i.int32(a)},n=function(s){let i=s.int32();return t(i)};return ds("enum",pn.VARINT,e,n)}function mn(r,t){return ds("message",pn.LENGTH_DELIMITED,r,t)}function _f(r){if(!Number.isSafeInteger(r)||r<0)throw new Error(`positive integer expected, not ${r}`)}function ny(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function gn(r,...t){if(!ny(r))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(r.length))throw new Error(`Uint8Array expected of length ${t}, not of length=${r.length}`)}function Tf(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");_f(r.outputLen),_f(r.blockLen)}function yn(r,t=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(t&&r.finished)throw new Error("Hash#digest() has already been called")}function Cf(r,t){gn(r);let e=t.outputLen;if(r.length<e)throw new Error(`digestInto() expects output buffer of length at least ${e}`)}var Vr=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;var ps=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),me=(r,t)=>r<<32-t|r>>>t;var mE=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;function Nf(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}function io(r){return typeof r=="string"&&(r=Nf(r)),gn(r),r}function Ac(...r){let t=0;for(let n=0;n<r.length;n++){let o=r[n];gn(o),t+=o.length}let e=new Uint8Array(t);for(let n=0,o=0;n<r.length;n++){let s=r[n];e.set(s,o),o+=s.length}return e}var wn=class{clone(){return this._cloneInto()}},gE={}.toString;function ms(r){let t=n=>r().update(io(n)).digest(),e=r();return t.outputLen=e.outputLen,t.blockLen=e.blockLen,t.create=()=>r(),t}function gs(r=32){if(Vr&&typeof Vr.getRandomValues=="function")return Vr.getRandomValues(new Uint8Array(r));if(Vr&&typeof Vr.randomBytes=="function")return Vr.randomBytes(r);throw new Error("crypto.getRandomValues must be defined")}function oy(r,t,e,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(t,e,n);let o=BigInt(32),s=BigInt(4294967295),i=Number(e>>o&s),a=Number(e&s),c=n?4:0,u=n?0:4;r.setUint32(t+c,i,n),r.setUint32(t+u,a,n)}var Pf=(r,t,e)=>r&t^~r&e,Lf=(r,t,e)=>r&t^r&e^t&e,xn=class extends wn{constructor(t,e,n,o){super(),this.blockLen=t,this.outputLen=e,this.padOffset=n,this.isLE=o,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(t),this.view=ps(this.buffer)}update(t){yn(this);let{view:e,buffer:n,blockLen:o}=this;t=io(t);let s=t.length;for(let i=0;i<s;){let a=Math.min(o-this.pos,s-i);if(a===o){let c=ps(t);for(;o<=s-i;i+=o)this.process(c,i);continue}n.set(t.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===o&&(this.process(e,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){yn(this),Cf(t,this),this.finished=!0;let{buffer:e,view:n,blockLen:o,isLE:s}=this,{pos:i}=this;e[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>o-i&&(this.process(n,0),i=0);for(let f=i;f<o;f++)e[f]=0;oy(n,o-8,BigInt(this.length*8),s),this.process(n,0);let a=ps(t),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let u=c/4,l=this.get();if(u>l.length)throw new Error("_sha2: outputLen bigger than state");for(let f=0;f<u;f++)a.setUint32(4*f,l[f],s)}digest(){let{buffer:t,outputLen:e}=this;this.digestInto(t);let n=t.slice(0,e);return this.destroy(),n}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());let{blockLen:e,buffer:n,length:o,finished:s,destroyed:i,pos:a}=this;return t.length=o,t.pos=a,t.finished=s,t.destroyed=i,o%e&&t.buffer.set(n),t}};var ys=BigInt(4294967295),Bc=BigInt(32);function Uf(r,t=!1){return t?{h:Number(r&ys),l:Number(r>>Bc&ys)}:{h:Number(r>>Bc&ys)|0,l:Number(r&ys)|0}}function sy(r,t=!1){let e=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let o=0;o<r.length;o++){let{h:s,l:i}=Uf(r[o],t);[e[o],n[o]]=[s,i]}return[e,n]}var iy=(r,t)=>BigInt(r>>>0)<<Bc|BigInt(t>>>0),ay=(r,t,e)=>r>>>e,cy=(r,t,e)=>r<<32-e|t>>>e,uy=(r,t,e)=>r>>>e|t<<32-e,ly=(r,t,e)=>r<<32-e|t>>>e,fy=(r,t,e)=>r<<64-e|t>>>e-32,hy=(r,t,e)=>r>>>e-32|t<<64-e,dy=(r,t)=>t,py=(r,t)=>r,my=(r,t,e)=>r<<e|t>>>32-e,gy=(r,t,e)=>t<<e|r>>>32-e,yy=(r,t,e)=>t<<e-32|r>>>64-e,wy=(r,t,e)=>r<<e-32|t>>>64-e;function xy(r,t,e,n){let o=(t>>>0)+(n>>>0);return{h:r+e+(o/2**32|0)|0,l:o|0}}var by=(r,t,e)=>(r>>>0)+(t>>>0)+(e>>>0),vy=(r,t,e,n)=>t+e+n+(r/2**32|0)|0,Ey=(r,t,e,n)=>(r>>>0)+(t>>>0)+(e>>>0)+(n>>>0),Sy=(r,t,e,n,o)=>t+e+n+o+(r/2**32|0)|0,Ay=(r,t,e,n,o)=>(r>>>0)+(t>>>0)+(e>>>0)+(n>>>0)+(o>>>0),By=(r,t,e,n,o,s)=>t+e+n+o+s+(r/2**32|0)|0;var ky={fromBig:Uf,split:sy,toBig:iy,shrSH:ay,shrSL:cy,rotrSH:uy,rotrSL:ly,rotrBH:fy,rotrBL:hy,rotr32H:dy,rotr32L:py,rotlSH:my,rotlSL:gy,rotlBH:yy,rotlBL:wy,add:xy,add3L:by,add3H:vy,add4L:Ey,add4H:Sy,add5H:By,add5L:Ay},q=ky;var[Iy,_y]=q.split(["0x428a2f98d728ae22","0x7137449123ef65cd","0xb5c0fbcfec4d3b2f","0xe9b5dba58189dbbc","0x3956c25bf348b538","0x59f111f1b605d019","0x923f82a4af194f9b","0xab1c5ed5da6d8118","0xd807aa98a3030242","0x12835b0145706fbe","0x243185be4ee4b28c","0x550c7dc3d5ffb4e2","0x72be5d74f27b896f","0x80deb1fe3b1696b1","0x9bdc06a725c71235","0xc19bf174cf692694","0xe49b69c19ef14ad2","0xefbe4786384f25e3","0x0fc19dc68b8cd5b5","0x240ca1cc77ac9c65","0x2de92c6f592b0275","0x4a7484aa6ea6e483","0x5cb0a9dcbd41fbd4","0x76f988da831153b5","0x983e5152ee66dfab","0xa831c66d2db43210","0xb00327c898fb213f","0xbf597fc7beef0ee4","0xc6e00bf33da88fc2","0xd5a79147930aa725","0x06ca6351e003826f","0x142929670a0e6e70","0x27b70a8546d22ffc","0x2e1b21385c26c926","0x4d2c6dfc5ac42aed","0x53380d139d95b3df","0x650a73548baf63de","0x766a0abb3c77b2a8","0x81c2c92e47edaee6","0x92722c851482353b","0xa2bfe8a14cf10364","0xa81a664bbc423001","0xc24b8b70d0f89791","0xc76c51a30654be30","0xd192e819d6ef5218","0xd69906245565a910","0xf40e35855771202a","0x106aa07032bbd1b8","0x19a4c116b8d2d0c8","0x1e376c085141ab53","0x2748774cdf8eeb99","0x34b0bcb5e19b48a8","0x391c0cb3c5c95a63","0x4ed8aa4ae3418acb","0x5b9cca4f7763e373","0x682e6ff3d6b2b8a3","0x748f82ee5defb2fc","0x78a5636f43172f60","0x84c87814a1f0ab72","0x8cc702081a6439ec","0x90befffa23631e28","0xa4506cebde82bde9","0xbef9a3f7b2c67915","0xc67178f2e372532b","0xca273eceea26619c","0xd186b8c721c0c207","0xeada7dd6cde0eb1e","0xf57d4f7fee6ed178","0x06f067aa72176fba","0x0a637dc5a2c898a6","0x113f9804bef90dae","0x1b710b35131c471b","0x28db77f523047d84","0x32caab7b40c72493","0x3c9ebe0a15c9bebc","0x431d67c49c100d4c","0x4cc5d4becb3e42b6","0x597f299cfc657e2a","0x5fcb6fab3ad6faec","0x6c44198c4a475817"].map(r=>BigInt(r))),pr=new Uint32Array(80),mr=new Uint32Array(80),kc=class extends xn{constructor(){super(128,64,16,!1),this.Ah=1779033703,this.Al=-205731576,this.Bh=-1150833019,this.Bl=-2067093701,this.Ch=1013904242,this.Cl=-23791573,this.Dh=-1521486534,this.Dl=1595750129,this.Eh=1359893119,this.El=-1377402159,this.Fh=-1694144372,this.Fl=725511199,this.Gh=528734635,this.Gl=-79577749,this.Hh=1541459225,this.Hl=327033209}get(){let{Ah:t,Al:e,Bh:n,Bl:o,Ch:s,Cl:i,Dh:a,Dl:c,Eh:u,El:l,Fh:f,Fl:d,Gh:h,Gl:w,Hh:m,Hl:g}=this;return[t,e,n,o,s,i,a,c,u,l,f,d,h,w,m,g]}set(t,e,n,o,s,i,a,c,u,l,f,d,h,w,m,g){this.Ah=t|0,this.Al=e|0,this.Bh=n|0,this.Bl=o|0,this.Ch=s|0,this.Cl=i|0,this.Dh=a|0,this.Dl=c|0,this.Eh=u|0,this.El=l|0,this.Fh=f|0,this.Fl=d|0,this.Gh=h|0,this.Gl=w|0,this.Hh=m|0,this.Hl=g|0}process(t,e){for(let y=0;y<16;y++,e+=4)pr[y]=t.getUint32(e),mr[y]=t.getUint32(e+=4);for(let y=16;y<80;y++){let S=pr[y-15]|0,_=mr[y-15]|0,T=q.rotrSH(S,_,1)^q.rotrSH(S,_,8)^q.shrSH(S,_,7),E=q.rotrSL(S,_,1)^q.rotrSL(S,_,8)^q.shrSL(S,_,7),v=pr[y-2]|0,k=mr[y-2]|0,V=q.rotrSH(v,k,19)^q.rotrBH(v,k,61)^q.shrSH(v,k,6),D=q.rotrSL(v,k,19)^q.rotrBL(v,k,61)^q.shrSL(v,k,6),R=q.add4L(E,D,mr[y-7],mr[y-16]),L=q.add4H(R,T,V,pr[y-7],pr[y-16]);pr[y]=L|0,mr[y]=R|0}let{Ah:n,Al:o,Bh:s,Bl:i,Ch:a,Cl:c,Dh:u,Dl:l,Eh:f,El:d,Fh:h,Fl:w,Gh:m,Gl:g,Hh:x,Hl:b}=this;for(let y=0;y<80;y++){let S=q.rotrSH(f,d,14)^q.rotrSH(f,d,18)^q.rotrBH(f,d,41),_=q.rotrSL(f,d,14)^q.rotrSL(f,d,18)^q.rotrBL(f,d,41),T=f&h^~f&m,E=d&w^~d&g,v=q.add5L(b,_,E,_y[y],mr[y]),k=q.add5H(v,x,S,T,Iy[y],pr[y]),V=v|0,D=q.rotrSH(n,o,28)^q.rotrBH(n,o,34)^q.rotrBH(n,o,39),R=q.rotrSL(n,o,28)^q.rotrBL(n,o,34)^q.rotrBL(n,o,39),L=n&s^n&a^s&a,N=o&i^o&c^i&c;x=m|0,b=g|0,m=h|0,g=w|0,h=f|0,w=d|0,{h:f,l:d}=q.add(u|0,l|0,k|0,V|0),u=a|0,l=c|0,a=s|0,c=i|0,s=n|0,i=o|0;let P=q.add3L(V,R,N);n=q.add3H(P,k,D,L),o=P|0}({h:n,l:o}=q.add(this.Ah|0,this.Al|0,n|0,o|0)),{h:s,l:i}=q.add(this.Bh|0,this.Bl|0,s|0,i|0),{h:a,l:c}=q.add(this.Ch|0,this.Cl|0,a|0,c|0),{h:u,l}=q.add(this.Dh|0,this.Dl|0,u|0,l|0),{h:f,l:d}=q.add(this.Eh|0,this.El|0,f|0,d|0),{h,l:w}=q.add(this.Fh|0,this.Fl|0,h|0,w|0),{h:m,l:g}=q.add(this.Gh|0,this.Gl|0,m|0,g|0),{h:x,l:b}=q.add(this.Hh|0,this.Hl|0,x|0,b|0),this.set(n,o,s,i,a,c,u,l,f,d,h,w,m,g,x,b)}roundClean(){pr.fill(0),mr.fill(0)}destroy(){this.buffer.fill(0),this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)}};var Rf=ms(()=>new kc);var xs={};gt(xs,{aInRange:()=>Gt,abool:()=>ge,abytes:()=>bn,bitGet:()=>Uy,bitLen:()=>Nc,bitMask:()=>co,bitSet:()=>Ry,bytesToHex:()=>ze,bytesToNumberBE:()=>Ke,bytesToNumberLE:()=>yr,concatBytes:()=>qe,createHmacDrbg:()=>Pc,ensureBytes:()=>pt,equalBytes:()=>Py,hexToBytes:()=>Hr,hexToNumber:()=>Cc,inRange:()=>ao,isBytes:()=>gr,memoized:()=>Kr,notImplemented:()=>Fy,numberToBytesBE:()=>wr,numberToBytesLE:()=>zr,numberToHexUnpadded:()=>Or,numberToVarBytesBE:()=>Ny,utf8ToBytes:()=>Ly,validateObject:()=>Ce});var Tc=BigInt(0),ws=BigInt(1),Ty=BigInt(2);function gr(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function bn(r){if(!gr(r))throw new Error("Uint8Array expected")}function ge(r,t){if(typeof t!="boolean")throw new Error(`${r} must be valid boolean, got "${t}".`)}var Cy=Array.from({length:256},(r,t)=>t.toString(16).padStart(2,"0"));function ze(r){bn(r);let t="";for(let e=0;e<r.length;e++)t+=Cy[r[e]];return t}function Or(r){let t=r.toString(16);return t.length&1?`0${t}`:t}function Cc(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return BigInt(r===""?"0":`0x${r}`)}var He={_0:48,_9:57,_A:65,_F:70,_a:97,_f:102};function Df(r){if(r>=He._0&&r<=He._9)return r-He._0;if(r>=He._A&&r<=He._F)return r-(He._A-10);if(r>=He._a&&r<=He._f)return r-(He._a-10)}function Hr(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let t=r.length,e=t/2;if(t%2)throw new Error("padded hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(e);for(let o=0,s=0;o<e;o++,s+=2){let i=Df(r.charCodeAt(s)),a=Df(r.charCodeAt(s+1));if(i===void 0||a===void 0){let c=r[s]+r[s+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+s)}n[o]=i*16+a}return n}function Ke(r){return Cc(ze(r))}function yr(r){return bn(r),Cc(ze(Uint8Array.from(r).reverse()))}function wr(r,t){return Hr(r.toString(16).padStart(t*2,"0"))}function zr(r,t){return wr(r,t).reverse()}function Ny(r){return Hr(Or(r))}function pt(r,t,e){let n;if(typeof t=="string")try{n=Hr(t)}catch(s){throw new Error(`${r} must be valid hex string, got "${t}". Cause: ${s}`)}else if(gr(t))n=Uint8Array.from(t);else throw new Error(`${r} must be hex string or Uint8Array`);let o=n.length;if(typeof e=="number"&&o!==e)throw new Error(`${r} expected ${e} bytes, got ${o}`);return n}function qe(...r){let t=0;for(let n=0;n<r.length;n++){let o=r[n];bn(o),t+=o.length}let e=new Uint8Array(t);for(let n=0,o=0;n<r.length;n++){let s=r[n];e.set(s,o),o+=s.length}return e}function Py(r,t){if(r.length!==t.length)return!1;let e=0;for(let n=0;n<r.length;n++)e|=r[n]^t[n];return e===0}function Ly(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}var Ic=r=>typeof r=="bigint"&&Tc<=r;function ao(r,t,e){return Ic(r)&&Ic(t)&&Ic(e)&&t<=r&&r<e}function Gt(r,t,e,n){if(!ao(t,e,n))throw new Error(`expected valid ${r}: ${e} <= n < ${n}, got ${typeof t} ${t}`)}function Nc(r){let t;for(t=0;r>Tc;r>>=ws,t+=1);return t}function Uy(r,t){return r>>BigInt(t)&ws}function Ry(r,t,e){return r|(e?ws:Tc)<<BigInt(t)}var co=r=>(Ty<<BigInt(r-1))-ws,_c=r=>new Uint8Array(r),Ff=r=>Uint8Array.from(r);function Pc(r,t,e){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof t!="number"||t<2)throw new Error("qByteLen must be a number");if(typeof e!="function")throw new Error("hmacFn must be a function");let n=_c(r),o=_c(r),s=0,i=()=>{n.fill(1),o.fill(0),s=0},a=(...f)=>e(o,n,...f),c=(f=_c())=>{o=a(Ff([0]),f),n=a(),f.length!==0&&(o=a(Ff([1]),f),n=a())},u=()=>{if(s++>=1e3)throw new Error("drbg: tried 1000 values");let f=0,d=[];for(;f<t;){n=a();let h=n.slice();d.push(h),f+=n.length}return qe(...d)};return(f,d)=>{i(),c(f);let h;for(;!(h=d(u()));)c();return i(),h}}var Dy={bigint:r=>typeof r=="bigint",function:r=>typeof r=="function",boolean:r=>typeof r=="boolean",string:r=>typeof r=="string",stringOrUint8Array:r=>typeof r=="string"||gr(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,t)=>t.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function Ce(r,t,e={}){let n=(o,s,i)=>{let a=Dy[s];if(typeof a!="function")throw new Error(`Invalid validator "${s}", expected function`);let c=r[o];if(!(i&&c===void 0)&&!a(c,r))throw new Error(`Invalid param ${String(o)}=${c} (${typeof c}), expected ${s}`)};for(let[o,s]of Object.entries(t))n(o,s,!1);for(let[o,s]of Object.entries(e))n(o,s,!0);return r}var Fy=()=>{throw new Error("not implemented")};function Kr(r){let t=new WeakMap;return(e,...n)=>{let o=t.get(e);if(o!==void 0)return o;let s=r(e,...n);return t.set(e,s),s}}var xt=BigInt(0),ut=BigInt(1),qr=BigInt(2),$y=BigInt(3),Lc=BigInt(4),$f=BigInt(5),Mf=BigInt(8),My=BigInt(9),Vy=BigInt(16);function it(r,t){let e=r%t;return e>=xt?e:t+e}function Oy(r,t,e){if(e<=xt||t<xt)throw new Error("Expected power/modulo > 0");if(e===ut)return xt;let n=ut;for(;t>xt;)t&ut&&(n=n*r%e),r=r*r%e,t>>=ut;return n}function lt(r,t,e){let n=r;for(;t-- >xt;)n*=n,n%=e;return n}function bs(r,t){if(r===xt||t<=xt)throw new Error(`invert: expected positive integers, got n=${r} mod=${t}`);let e=it(r,t),n=t,o=xt,s=ut,i=ut,a=xt;for(;e!==xt;){let u=n/e,l=n%e,f=o-i*u,d=s-a*u;n=e,e=l,o=i,s=a,i=f,a=d}if(n!==ut)throw new Error("invert: does not exist");return it(o,t)}function Hy(r){let t=(r-ut)/qr,e,n,o;for(e=r-ut,n=0;e%qr===xt;e/=qr,n++);for(o=qr;o<r&&Oy(o,t,r)!==r-ut;o++);if(n===1){let i=(r+ut)/Lc;return function(c,u){let l=c.pow(u,i);if(!c.eql(c.sqr(l),u))throw new Error("Cannot find square root");return l}}let s=(e+ut)/qr;return function(a,c){if(a.pow(c,t)===a.neg(a.ONE))throw new Error("Cannot find square root");let u=n,l=a.pow(a.mul(a.ONE,o),e),f=a.pow(c,s),d=a.pow(c,e);for(;!a.eql(d,a.ONE);){if(a.eql(d,a.ZERO))return a.ZERO;let h=1;for(let m=a.sqr(d);h<u&&!a.eql(m,a.ONE);h++)m=a.sqr(m);let w=a.pow(l,ut<<BigInt(u-h-1));l=a.sqr(w),f=a.mul(f,w),d=a.mul(d,l),u=h}return f}}function zy(r){if(r%Lc===$y){let t=(r+ut)/Lc;return function(n,o){let s=n.pow(o,t);if(!n.eql(n.sqr(s),o))throw new Error("Cannot find square root");return s}}if(r%Mf===$f){let t=(r-$f)/Mf;return function(n,o){let s=n.mul(o,qr),i=n.pow(s,t),a=n.mul(o,i),c=n.mul(n.mul(a,qr),i),u=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(u),o))throw new Error("Cannot find square root");return u}}return r%Vy,Hy(r)}var Vf=(r,t)=>(it(r,t)&ut)===ut,Ky=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function Uc(r){let t={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},e=Ky.reduce((n,o)=>(n[o]="function",n),t);return Ce(r,e)}function qy(r,t,e){if(e<xt)throw new Error("Expected power > 0");if(e===xt)return r.ONE;if(e===ut)return t;let n=r.ONE,o=t;for(;e>xt;)e&ut&&(n=r.mul(n,o)),o=r.sqr(o),e>>=ut;return n}function jy(r,t){let e=new Array(t.length),n=t.reduce((s,i,a)=>r.is0(i)?s:(e[a]=s,r.mul(s,i)),r.ONE),o=r.inv(n);return t.reduceRight((s,i,a)=>r.is0(i)?s:(e[a]=r.mul(s,e[a]),r.mul(s,i)),o),e}function Rc(r,t){let e=t!==void 0?t:r.toString(2).length,n=Math.ceil(e/8);return{nBitLength:e,nByteLength:n}}function xr(r,t,e=!1,n={}){if(r<=xt)throw new Error(`Expected Field ORDER > 0, got ${r}`);let{nBitLength:o,nByteLength:s}=Rc(r,t);if(s>2048)throw new Error("Field lengths over 2048 bytes are not supported");let i=zy(r),a=Object.freeze({ORDER:r,BITS:o,BYTES:s,MASK:co(o),ZERO:xt,ONE:ut,create:c=>it(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error(`Invalid field element: expected bigint, got ${typeof c}`);return xt<=c&&c<r},is0:c=>c===xt,isOdd:c=>(c&ut)===ut,neg:c=>it(-c,r),eql:(c,u)=>c===u,sqr:c=>it(c*c,r),add:(c,u)=>it(c+u,r),sub:(c,u)=>it(c-u,r),mul:(c,u)=>it(c*u,r),pow:(c,u)=>qy(a,c,u),div:(c,u)=>it(c*bs(u,r),r),sqrN:c=>c*c,addN:(c,u)=>c+u,subN:(c,u)=>c-u,mulN:(c,u)=>c*u,inv:c=>bs(c,r),sqrt:n.sqrt||(c=>i(a,c)),invertBatch:c=>jy(a,c),cmov:(c,u,l)=>l?u:c,toBytes:c=>e?zr(c,s):wr(c,s),fromBytes:c=>{if(c.length!==s)throw new Error(`Fp.fromBytes: expected ${s}, got ${c.length}`);return e?yr(c):Ke(c)}});return Object.freeze(a)}function Of(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let t=r.toString(2).length;return Math.ceil(t/8)}function Dc(r){let t=Of(r);return t+Math.ceil(t/2)}function Hf(r,t,e=!1){let n=r.length,o=Of(t),s=Dc(t);if(n<16||n<s||n>1024)throw new Error(`expected ${s}-1024 bytes of input, got ${n}`);let i=e?Ke(r):yr(r),a=it(i,t-ut)+ut;return e?zr(a,o):wr(a,o)}var Wy=BigInt(0),Fc=BigInt(1),$c=new WeakMap,zf=new WeakMap;function vs(r,t){let e=(s,i)=>{let a=i.negate();return s?a:i},n=s=>{if(!Number.isSafeInteger(s)||s<=0||s>t)throw new Error(`Wrong window size=${s}, should be [1..${t}]`)},o=s=>{n(s);let i=Math.ceil(t/s)+1,a=2**(s-1);return{windows:i,windowSize:a}};return{constTimeNegate:e,unsafeLadder(s,i){let a=r.ZERO,c=s;for(;i>Wy;)i&Fc&&(a=a.add(c)),c=c.double(),i>>=Fc;return a},precomputeWindow(s,i){let{windows:a,windowSize:c}=o(i),u=[],l=s,f=l;for(let d=0;d<a;d++){f=l,u.push(f);for(let h=1;h<c;h++)f=f.add(l),u.push(f);l=f.double()}return u},wNAF(s,i,a){let{windows:c,windowSize:u}=o(s),l=r.ZERO,f=r.BASE,d=BigInt(2**s-1),h=2**s,w=BigInt(s);for(let m=0;m<c;m++){let g=m*u,x=Number(a&d);a>>=w,x>u&&(x-=h,a+=Fc);let b=g,y=g+Math.abs(x)-1,S=m%2!==0,_=x<0;x===0?f=f.add(e(S,i[b])):l=l.add(e(_,i[y]))}return{p:l,f}},wNAFCached(s,i,a){let c=zf.get(s)||1,u=$c.get(s);return u||(u=this.precomputeWindow(s,c),c!==1&&$c.set(s,a(u))),this.wNAF(c,u,i)},setWindowSize(s,i){n(i),zf.set(s,i),$c.delete(s)}}}function Es(r,t,e,n){if(!Array.isArray(e)||!Array.isArray(n)||n.length!==e.length)throw new Error("arrays of points and scalars must have equal length");n.forEach((l,f)=>{if(!t.isValid(l))throw new Error(`wrong scalar at index ${f}`)}),e.forEach((l,f)=>{if(!(l instanceof r))throw new Error(`wrong point at index ${f}`)});let o=Nc(BigInt(e.length)),s=o>12?o-3:o>4?o-2:o?2:1,i=(1<<s)-1,a=new Array(i+1).fill(r.ZERO),c=Math.floor((t.BITS-1)/s)*s,u=r.ZERO;for(let l=c;l>=0;l-=s){a.fill(r.ZERO);for(let d=0;d<n.length;d++){let h=n[d],w=Number(h>>BigInt(l)&BigInt(i));a[w]=a[w].add(e[d])}let f=r.ZERO;for(let d=a.length-1,h=r.ZERO;d>0;d--)h=h.add(a[d]),f=f.add(h);if(u=u.add(f),l!==0)for(let d=0;d<s;d++)u=u.double()}return u}function uo(r){return Uc(r.Fp),Ce(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...Rc(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var ye=BigInt(0),Wt=BigInt(1),Ss=BigInt(2),Zy=BigInt(8),Yy={zip215:!0};function Jy(r){let t=uo(r);return Ce(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...t})}function Kf(r){let t=Jy(r),{Fp:e,n,prehash:o,hash:s,randomBytes:i,nByteLength:a,h:c}=t,u=Ss<<BigInt(a*8)-Wt,l=e.create,f=xr(t.n,t.nBitLength),d=t.uvRatio||((B,A)=>{try{return{isValid:!0,value:e.sqrt(B*e.inv(A))}}catch{return{isValid:!1,value:ye}}}),h=t.adjustScalarBytes||(B=>B),w=t.domain||((B,A,C)=>{if(ge("phflag",C),A.length||C)throw new Error("Contexts/pre-hash are not supported");return B});function m(B,A){Gt("coordinate "+B,A,ye,u)}function g(B){if(!(B instanceof y))throw new Error("ExtendedPoint expected")}let x=Kr((B,A)=>{let{ex:C,ey:$,ez:H}=B,K=B.is0();A==null&&(A=K?Zy:e.inv(H));let G=l(C*A),Y=l($*A),W=l(H*A);if(K)return{x:ye,y:Wt};if(W!==Wt)throw new Error("invZ was invalid");return{x:G,y:Y}}),b=Kr(B=>{let{a:A,d:C}=t;if(B.is0())throw new Error("bad point: ZERO");let{ex:$,ey:H,ez:K,et:G}=B,Y=l($*$),W=l(H*H),nt=l(K*K),ct=l(nt*nt),vt=l(Y*A),Et=l(nt*l(vt+W)),It=l(ct+l(C*l(Y*W)));if(Et!==It)throw new Error("bad point: equation left != right (1)");let $t=l($*H),wt=l(K*G);if($t!==wt)throw new Error("bad point: equation left != right (2)");return!0});class y{constructor(A,C,$,H){this.ex=A,this.ey=C,this.ez=$,this.et=H,m("x",A),m("y",C),m("z",$),m("t",H),Object.freeze(this)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(A){if(A instanceof y)throw new Error("extended point not allowed");let{x:C,y:$}=A||{};return m("x",C),m("y",$),new y(C,$,Wt,l(C*$))}static normalizeZ(A){let C=e.invertBatch(A.map($=>$.ez));return A.map(($,H)=>$.toAffine(C[H])).map(y.fromAffine)}static msm(A,C){return Es(y,f,A,C)}_setWindowSize(A){T.setWindowSize(this,A)}assertValidity(){b(this)}equals(A){g(A);let{ex:C,ey:$,ez:H}=this,{ex:K,ey:G,ez:Y}=A,W=l(C*Y),nt=l(K*H),ct=l($*Y),vt=l(G*H);return W===nt&&ct===vt}is0(){return this.equals(y.ZERO)}negate(){return new y(l(-this.ex),this.ey,this.ez,l(-this.et))}double(){let{a:A}=t,{ex:C,ey:$,ez:H}=this,K=l(C*C),G=l($*$),Y=l(Ss*l(H*H)),W=l(A*K),nt=C+$,ct=l(l(nt*nt)-K-G),vt=W+G,Et=vt-Y,It=W-G,$t=l(ct*Et),wt=l(vt*It),Kt=l(ct*It),$e=l(Et*vt);return new y($t,wt,$e,Kt)}add(A){g(A);let{a:C,d:$}=t,{ex:H,ey:K,ez:G,et:Y}=this,{ex:W,ey:nt,ez:ct,et:vt}=A;if(C===BigInt(-1)){let Hl=l((K-H)*(nt+W)),zl=l((K+H)*(nt-W)),La=l(zl-Hl);if(La===ye)return this.double();let Kl=l(G*Ss*vt),ql=l(Y*Ss*ct),jl=ql+Kl,Gl=zl+Hl,Wl=ql-Kl,mm=l(jl*La),gm=l(Gl*Wl),ym=l(jl*Wl),wm=l(La*Gl);return new y(mm,gm,wm,ym)}let Et=l(H*W),It=l(K*nt),$t=l(Y*$*vt),wt=l(G*ct),Kt=l((H+K)*(W+nt)-Et-It),$e=wt-$t,Gn=wt+$t,Wn=l(It-C*Et),fm=l(Kt*$e),hm=l(Gn*Wn),dm=l(Kt*Wn),pm=l($e*Gn);return new y(fm,hm,pm,dm)}subtract(A){return this.add(A.negate())}wNAF(A){return T.wNAFCached(this,A,y.normalizeZ)}multiply(A){let C=A;Gt("scalar",C,Wt,n);let{p:$,f:H}=this.wNAF(C);return y.normalizeZ([$,H])[0]}multiplyUnsafe(A){let C=A;return Gt("scalar",C,ye,n),C===ye?_:this.equals(_)||C===Wt?this:this.equals(S)?this.wNAF(C).p:T.unsafeLadder(this,C)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return T.unsafeLadder(this,n).is0()}toAffine(A){return x(this,A)}clearCofactor(){let{h:A}=t;return A===Wt?this:this.multiplyUnsafe(A)}static fromHex(A,C=!1){let{d:$,a:H}=t,K=e.BYTES;A=pt("pointHex",A,K),ge("zip215",C);let G=A.slice(),Y=A[K-1];G[K-1]=Y&-129;let W=yr(G),nt=C?u:e.ORDER;Gt("pointHex.y",W,ye,nt);let ct=l(W*W),vt=l(ct-Wt),Et=l($*ct-H),{isValid:It,value:$t}=d(vt,Et);if(!It)throw new Error("Point.fromHex: invalid y coordinate");let wt=($t&Wt)===Wt,Kt=(Y&128)!==0;if(!C&&$t===ye&&Kt)throw new Error("Point.fromHex: x=0 and x_0=1");return Kt!==wt&&($t=l(-$t)),y.fromAffine({x:$t,y:W})}static fromPrivateKey(A){return k(A).point}toRawBytes(){let{x:A,y:C}=this.toAffine(),$=zr(C,e.BYTES);return $[$.length-1]|=A&Wt?128:0,$}toHex(){return ze(this.toRawBytes())}}y.BASE=new y(t.Gx,t.Gy,Wt,l(t.Gx*t.Gy)),y.ZERO=new y(ye,Wt,Wt,ye);let{BASE:S,ZERO:_}=y,T=vs(y,a*8);function E(B){return it(B,n)}function v(B){return E(yr(B))}function k(B){let A=a;B=pt("private key",B,A);let C=pt("hashed private key",s(B),2*A),$=h(C.slice(0,A)),H=C.slice(A,2*A),K=v($),G=S.multiply(K),Y=G.toRawBytes();return{head:$,prefix:H,scalar:K,point:G,pointBytes:Y}}function V(B){return k(B).pointBytes}function D(B=new Uint8Array,...A){let C=qe(...A);return v(s(w(C,pt("context",B),!!o)))}function R(B,A,C={}){B=pt("message",B),o&&(B=o(B));let{prefix:$,scalar:H,pointBytes:K}=k(A),G=D(C.context,$,B),Y=S.multiply(G).toRawBytes(),W=D(C.context,Y,K,B),nt=E(G+W*H);Gt("signature.s",nt,ye,n);let ct=qe(Y,zr(nt,e.BYTES));return pt("result",ct,a*2)}let L=Yy;function N(B,A,C,$=L){let{context:H,zip215:K}=$,G=e.BYTES;B=pt("signature",B,2*G),A=pt("message",A),K!==void 0&&ge("zip215",K),o&&(A=o(A));let Y=yr(B.slice(G,2*G)),W,nt,ct;try{W=y.fromHex(C,K),nt=y.fromHex(B.slice(0,G),K),ct=S.multiplyUnsafe(Y)}catch{return!1}if(!K&&W.isSmallOrder())return!1;let vt=D(H,nt.toRawBytes(),W.toRawBytes(),A);return nt.add(W.multiplyUnsafe(vt)).subtract(ct).clearCofactor().equals(y.ZERO)}return S._setWindowSize(8),{CURVE:t,getPublicKey:V,sign:R,verify:N,ExtendedPoint:y,utils:{getExtendedPublicKey:k,randomPrivateKey:()=>i(e.BYTES),precompute(B=8,A=y.BASE){return A._setWindowSize(B),A.multiply(BigInt(3)),A}}}}var Mc=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),qf=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),ME=BigInt(0),Xy=BigInt(1),jf=BigInt(2),VE=BigInt(3),Qy=BigInt(5),tw=BigInt(8);function ew(r){let t=BigInt(10),e=BigInt(20),n=BigInt(40),o=BigInt(80),s=Mc,a=r*r%s*r%s,c=lt(a,jf,s)*a%s,u=lt(c,Xy,s)*r%s,l=lt(u,Qy,s)*u%s,f=lt(l,t,s)*l%s,d=lt(f,e,s)*f%s,h=lt(d,n,s)*d%s,w=lt(h,o,s)*h%s,m=lt(w,o,s)*h%s,g=lt(m,t,s)*l%s;return{pow_p_5_8:lt(g,jf,s)*r%s,b2:a}}function rw(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function nw(r,t){let e=Mc,n=it(t*t*t,e),o=it(n*n*t,e),s=ew(r*o).pow_p_5_8,i=it(r*n*s,e),a=it(t*i*i,e),c=i,u=it(i*qf,e),l=a===r,f=a===it(-r,e),d=a===it(-r*qf,e);return l&&(i=c),(f||d)&&(i=u),Vf(i,e)&&(i=it(-i,e)),{isValid:l||f,value:i}}var ow=xr(Mc,void 0,!0),sw={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:ow,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:tw,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Rf,randomBytes:gs,adjustScalarBytes:rw,uvRatio:nw},Gf=Kf(sw);var As=32;function Wf(r,t,e){return Gf.verify(t,e instanceof Uint8Array?e:e.subarray(),r)}var Bs=class{type="Ed25519";raw;constructor(t){this.raw=Vc(t,As)}toMultihash(){return jt.digest(ks(this))}toCID(){return O.createV1(114,this.toMultihash())}toString(){return st.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:ot(this.raw,t.raw)}verify(t,e){return Wf(this.raw,e,t)}};function Oc(r){return r=Vc(r,As),new Bs(r)}function Vc(r,t){if(r=Uint8Array.from(r??[]),r.length!==t)throw new St(`Key must be a Uint8Array of length ${t}, got ${r.length}`);return r}var bt;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.secp256k1="secp256k1"})(bt||(bt={}));var Hc;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.secp256k1=2]="secp256k1"})(Hc||(Hc={}));(function(r){r.codec=()=>so(Hc)})(bt||(bt={}));var Ne;(function(r){let t;r.codec=()=>(t==null&&(t=mn((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.Type!=null&&(n.uint32(8),bt.codec().encode(e.Type,n)),e.Data!=null&&(n.uint32(18),n.bytes(e.Data)),o.lengthDelimited!==!1&&n.ldelim()},(e,n,o={})=>{let s={},i=n==null?e.len:e.pos+n;for(;e.pos<i;){let a=e.uint32();switch(a>>>3){case 1:{s.Type=bt.codec().decode(e);break}case 2:{s.Data=e.bytes();break}default:{e.skipType(a&7);break}}}return s})),t),r.encode=e=>dn(e,r.codec()),r.decode=(e,n)=>cn(e,r.codec(),n)})(Ne||(Ne={}));var zc;(function(r){let t;r.codec=()=>(t==null&&(t=mn((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.Type!=null&&(n.uint32(8),bt.codec().encode(e.Type,n)),e.Data!=null&&(n.uint32(18),n.bytes(e.Data)),o.lengthDelimited!==!1&&n.ldelim()},(e,n,o={})=>{let s={},i=n==null?e.len:e.pos+n;for(;e.pos<i;){let a=e.uint32();switch(a>>>3){case 1:{s.Type=bt.codec().decode(e);break}case 2:{s.Data=e.bytes();break}default:{e.skipType(a&7);break}}}return s})),t),r.encode=e=>dn(e,r.codec()),r.decode=(e,n)=>cn(e,r.codec(),n)})(zc||(zc={}));var bo={};gt(bo,{MAX_RSA_KEY_SIZE:()=>yi,generateRSAKeyPair:()=>jh,jwkToJWKKeyPair:()=>Gh,jwkToPkcs1:()=>Ew,jwkToPkix:()=>Xc,jwkToRSAPrivateKey:()=>qh,pkcs1ToJwk:()=>Hh,pkcs1ToRSAPrivateKey:()=>Kh,pkixToJwk:()=>zh,pkixToRSAPublicKey:()=>Qc});var aw=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),br=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),vr=new Uint32Array(64),Kc=class extends xn{constructor(){super(64,32,8,!1),this.A=br[0]|0,this.B=br[1]|0,this.C=br[2]|0,this.D=br[3]|0,this.E=br[4]|0,this.F=br[5]|0,this.G=br[6]|0,this.H=br[7]|0}get(){let{A:t,B:e,C:n,D:o,E:s,F:i,G:a,H:c}=this;return[t,e,n,o,s,i,a,c]}set(t,e,n,o,s,i,a,c){this.A=t|0,this.B=e|0,this.C=n|0,this.D=o|0,this.E=s|0,this.F=i|0,this.G=a|0,this.H=c|0}process(t,e){for(let f=0;f<16;f++,e+=4)vr[f]=t.getUint32(e,!1);for(let f=16;f<64;f++){let d=vr[f-15],h=vr[f-2],w=me(d,7)^me(d,18)^d>>>3,m=me(h,17)^me(h,19)^h>>>10;vr[f]=m+vr[f-7]+w+vr[f-16]|0}let{A:n,B:o,C:s,D:i,E:a,F:c,G:u,H:l}=this;for(let f=0;f<64;f++){let d=me(a,6)^me(a,11)^me(a,25),h=l+d+Pf(a,c,u)+aw[f]+vr[f]|0,m=(me(n,2)^me(n,13)^me(n,22))+Lf(n,o,s)|0;l=u,u=c,c=a,a=i+h|0,i=s,s=o,o=n,n=h+m|0}n=n+this.A|0,o=o+this.B|0,s=s+this.C|0,i=i+this.D|0,a=a+this.E|0,c=c+this.F|0,u=u+this.G|0,l=l+this.H|0,this.set(n,o,s,i,a,c,u,l)}roundClean(){vr.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var vn=ms(()=>new Kc);var Z=Lr(Jf());function jr(r,t){let e=0;if(r.length===1)return r[0];for(let n=r.length-1;n>=0;n--)e+=r[r.length-1-n]*Math.pow(2,t*n);return e}function Er(r,t,e=-1){let n=e,o=r,s=0,i=Math.pow(2,t);for(let a=1;a<8;a++){if(r<i){let c;if(n<0)c=new ArrayBuffer(a),s=a;else{if(n<a)return new ArrayBuffer(0);c=new ArrayBuffer(n),s=n}let u=new Uint8Array(c);for(let l=a-1;l>=0;l--){let f=Math.pow(2,l*t);u[s-l-1]=Math.floor(o/f),o-=u[s-l-1]*f}return c}i*=Math.pow(2,t)}return new ArrayBuffer(0)}function Ts(...r){let t=0,e=0;for(let s of r)t+=s.length;let n=new ArrayBuffer(t),o=new Uint8Array(n);for(let s of r)o.set(s,e),e+=s.length;return o}function jc(){let r=new Uint8Array(this.valueHex);if(this.valueHex.byteLength>=2){let a=r[0]===255&&r[1]&128,c=r[0]===0&&(r[1]&128)===0;(a||c)&&this.warnings.push("Needlessly long format")}let t=new ArrayBuffer(this.valueHex.byteLength),e=new Uint8Array(t);for(let a=0;a<this.valueHex.byteLength;a++)e[a]=0;e[0]=r[0]&128;let n=jr(e,8),o=new ArrayBuffer(this.valueHex.byteLength),s=new Uint8Array(o);for(let a=0;a<this.valueHex.byteLength;a++)s[a]=r[a];return s[0]&=127,jr(s,8)-n}function Xf(r){let t=r<0?r*-1:r,e=128;for(let n=1;n<8;n++){if(t<=e){if(r<0){let i=e-t,a=Er(i,8,n),c=new Uint8Array(a);return c[0]|=128,a}let o=Er(t,8,n),s=new Uint8Array(o);if(s[0]&128){let i=o.slice(0),a=new Uint8Array(i);o=new ArrayBuffer(o.byteLength+1),s=new Uint8Array(o);for(let c=0;c<i.byteLength;c++)s[c+1]=a[c];s[0]=0}return o}e*=Math.pow(2,8)}return new ArrayBuffer(0)}function Qf(r,t){if(r.byteLength!==t.byteLength)return!1;let e=new Uint8Array(r),n=new Uint8Array(t);for(let o=0;o<e.length;o++)if(e[o]!==n[o])return!1;return!0}function Zt(r,t){let e=r.toString(10);if(t<e.length)return"";let n=t-e.length,o=new Array(n);for(let i=0;i<n;i++)o[i]="0";return o.join("").concat(e)}var u8=Math.log(2);function Cs(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function Gc(r){let t=0,e=0;for(let o=0;o<r.length;o++){let s=r[o];t+=s.byteLength}let n=new Uint8Array(t);for(let o=0;o<r.length;o++){let s=r[o];n.set(new Uint8Array(s),e),e+=s.byteLength}return n.buffer}function Ye(r,t,e,n){return t instanceof Uint8Array?t.byteLength?e<0?(r.error="Wrong parameter: inputOffset less than zero",!1):n<0?(r.error="Wrong parameter: inputLength less than zero",!1):t.byteLength-e-n<0?(r.error="End of input reached before message was fully decoded (inconsistent offset and length values)",!1):!0:(r.error="Wrong parameter: inputBuffer has zero length",!1):(r.error="Wrong parameter: inputBuffer must be 'Uint8Array'",!1)}var fo=class{constructor(){this.items=[]}write(t){this.items.push(t)}final(){return Gc(this.items)}},lo=[new Uint8Array([1])],th="0123456789";var kn="",we=new ArrayBuffer(0),Wc=new Uint8Array(0),ho="EndOfContent",rh="OCTET STRING",nh="BIT STRING";function Je(r){var t;return t=class extends r{constructor(...n){var o;super(...n);let s=n[0]||{};this.isHexOnly=(o=s.isHexOnly)!==null&&o!==void 0?o:!1,this.valueHexView=s.valueHex?Z.BufferSourceConverter.toUint8Array(s.valueHex):Wc}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,o,s){let i=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!Ye(this,i,o,s))return-1;let a=o+s;return this.valueHexView=i.subarray(o,a),this.valueHexView.length?(this.blockLength=s,a):(this.warnings.push("Zero buffer length"),o)}toBER(n=!1){return this.isHexOnly?n?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",we)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:Z.Convert.ToHex(this.valueHexView)}}},t.NAME="hexBlock",t}var Ge=class{constructor({blockLength:t=0,error:e=kn,warnings:n=[],valueBeforeDecode:o=Wc}={}){this.blockLength=t,this.error=e,this.warnings=n,this.valueBeforeDecodeView=Z.BufferSourceConverter.toUint8Array(o)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(t){this.valueBeforeDecodeView=new Uint8Array(t)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:Z.Convert.ToHex(this.valueBeforeDecodeView)}}};Ge.NAME="baseBlock";var Rt=class extends Ge{fromBER(t,e,n){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(t,e){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}};Rt.NAME="valueBlock";var Ns=class extends Je(Ge){constructor({idBlock:t={}}={}){var e,n,o,s;super(),t?(this.isHexOnly=(e=t.isHexOnly)!==null&&e!==void 0?e:!1,this.valueHexView=t.valueHex?Z.BufferSourceConverter.toUint8Array(t.valueHex):Wc,this.tagClass=(n=t.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(o=t.tagNumber)!==null&&o!==void 0?o:-1,this.isConstructed=(s=t.isConstructed)!==null&&s!==void 0?s:!1):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(t=!1){let e=0;switch(this.tagClass){case 1:e|=0;break;case 2:e|=64;break;case 3:e|=128;break;case 4:e|=192;break;default:return this.error="Unknown tag class",we}if(this.isConstructed&&(e|=32),this.tagNumber<31&&!this.isHexOnly){let o=new Uint8Array(1);if(!t){let s=this.tagNumber;s&=31,e|=s,o[0]=e}return o.buffer}if(!this.isHexOnly){let o=Er(this.tagNumber,7),s=new Uint8Array(o),i=o.byteLength,a=new Uint8Array(i+1);if(a[0]=e|31,!t){for(let c=0;c<i-1;c++)a[c+1]=s[c]|128;a[i]=s[i-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=e|31,!t){let o=this.valueHexView;for(let s=0;s<o.length-1;s++)n[s+1]=o[s]|128;n[this.valueHexView.byteLength]=o[o.length-1]}return n.buffer}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);if(s.length===0)return this.error="Zero buffer length",-1;switch(s[0]&192){case 0:this.tagClass=1;break;case 64:this.tagClass=2;break;case 128:this.tagClass=3;break;case 192:this.tagClass=4;break;default:return this.error="Unknown tag class",-1}this.isConstructed=(s[0]&32)===32,this.isHexOnly=!1;let a=s[0]&31;if(a!==31)this.tagNumber=a,this.blockLength=1;else{let c=1,u=this.valueHexView=new Uint8Array(255),l=255;for(;s[c]&128;){if(u[c-1]=s[c]&127,c++,c>=s.length)return this.error="End of input reached before message was fully decoded",-1;if(c===l){l+=255;let d=new Uint8Array(l);for(let h=0;h<u.length;h++)d[h]=u[h];u=this.valueHexView=new Uint8Array(l)}}this.blockLength=c+1,u[c-1]=s[c]&127;let f=new Uint8Array(c);for(let d=0;d<c;d++)f[d]=u[d];u=this.valueHexView=new Uint8Array(c),u.set(f),this.blockLength<=9?this.tagNumber=jr(u,7):(this.isHexOnly=!0,this.warnings.push("Tag too long, represented as hex-coded"))}if(this.tagClass===1&&this.isConstructed)switch(this.tagNumber){case 1:case 2:case 5:case 6:case 9:case 13:case 14:case 23:case 24:case 31:case 32:case 33:case 34:return this.error="Constructed encoding used for primitive type",-1}return e+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}};Ns.NAME="identificationBlock";var Ps=class extends Ge{constructor({lenBlock:t={}}={}){var e,n,o;super(),this.isIndefiniteForm=(e=t.isIndefiniteForm)!==null&&e!==void 0?e:!1,this.longFormUsed=(n=t.longFormUsed)!==null&&n!==void 0?n:!1,this.length=(o=t.length)!==null&&o!==void 0?o:0}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);if(s.length===0)return this.error="Zero buffer length",-1;if(s[0]===255)return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=s[0]===128,this.isIndefiniteForm)return this.blockLength=1,e+this.blockLength;if(this.longFormUsed=!!(s[0]&128),this.longFormUsed===!1)return this.length=s[0],this.blockLength=1,e+this.blockLength;let i=s[0]&127;if(i>8)return this.error="Too big integer",-1;if(i+1>s.length)return this.error="End of input reached before message was fully decoded",-1;let a=e+1,c=o.subarray(a,a+i);return c[i-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=jr(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=i+1,e+this.blockLength}toBER(t=!1){let e,n;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return e=new ArrayBuffer(1),t===!1&&(n=new Uint8Array(e),n[0]=128),e;if(this.longFormUsed){let o=Er(this.length,8);if(o.byteLength>127)return this.error="Too big length",we;if(e=new ArrayBuffer(o.byteLength+1),t)return e;let s=new Uint8Array(o);n=new Uint8Array(e),n[0]=o.byteLength|128;for(let i=0;i<o.byteLength;i++)n[i+1]=s[i];return e}return e=new ArrayBuffer(1),t===!1&&(n=new Uint8Array(e),n[0]=this.length),e}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}};Ps.NAME="lengthBlock";var F={},Tt=class extends Ge{constructor({name:t=kn,optional:e=!1,primitiveSchema:n,...o}={},s){super(o),this.name=t,this.optional=e,n&&(this.primitiveSchema=n),this.idBlock=new Ns(o),this.lenBlock=new Ps(o),this.valueBlock=s?new s(o):new Rt(o)}fromBER(t,e,n){let o=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}toBER(t,e){let n=e||new fo;e||oh(this);let o=this.idBlock.toBER(t);if(n.write(o),this.lenBlock.isIndefiniteForm)n.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(t,n),n.write(new ArrayBuffer(2));else{let s=this.valueBlock.toBER(t);this.lenBlock.length=s.byteLength;let i=this.lenBlock.toBER(t);n.write(i),n.write(s)}return e?we:n.final()}toJSON(){let t={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(t.primitiveSchema=this.primitiveSchema.toJSON()),t}toString(t="ascii"){return t==="ascii"?this.onAsciiEncoding():Z.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${Z.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(t){if(this===t)return!0;if(!(t instanceof this.constructor))return!1;let e=this.toBER(),n=t.toBER();return Qf(e,n)}};Tt.NAME="BaseBlock";function oh(r){if(r instanceof F.Constructed)for(let t of r.valueBlock.value)oh(t)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var Ls=class extends Tt{constructor({value:t=kn,...e}={},n){super(e,n),t&&this.fromString(t)}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}fromBER(t,e,n){let o=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};Ls.NAME="BaseStringBlock";var Us=class extends Je(Rt){constructor({isHexOnly:t=!0,...e}={}){super(e),this.isHexOnly=t}};Us.NAME="PrimitiveValueBlock";var sh,Rs=class extends Tt{constructor(t={}){super(t,Us),this.idBlock.isConstructed=!1}};sh=Rs;F.Primitive=sh;Rs.NAME="PRIMITIVE";function gw(r,t){if(r instanceof t)return r;let e=new t;return e.idBlock=r.idBlock,e.lenBlock=r.lenBlock,e.warnings=r.warnings,e.valueBeforeDecodeView=r.valueBeforeDecodeView,e}function mi(r,t=0,e=r.length){let n=t,o=new Tt({},Rt),s=new Ge;if(!Ye(s,r,t,e))return o.error=s.error,{offset:-1,result:o};if(!r.subarray(t,t+e).length)return o.error="Zero buffer length",{offset:-1,result:o};let a=o.idBlock.fromBER(r,t,e);if(o.idBlock.warnings.length&&o.warnings.concat(o.idBlock.warnings),a===-1)return o.error=o.idBlock.error,{offset:-1,result:o};if(t=a,e-=o.idBlock.blockLength,a=o.lenBlock.fromBER(r,t,e),o.lenBlock.warnings.length&&o.warnings.concat(o.lenBlock.warnings),a===-1)return o.error=o.lenBlock.error,{offset:-1,result:o};if(t=a,e-=o.lenBlock.blockLength,!o.idBlock.isConstructed&&o.lenBlock.isIndefiniteForm)return o.error="Indefinite length form used for primitive encoding form",{offset:-1,result:o};let c=Tt;switch(o.idBlock.tagClass){case 1:if(o.idBlock.tagNumber>=37&&o.idBlock.isHexOnly===!1)return o.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:o};switch(o.idBlock.tagNumber){case 0:if(o.idBlock.isConstructed&&o.lenBlock.length>0)return o.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:o};c=F.EndOfContent;break;case 1:c=F.Boolean;break;case 2:c=F.Integer;break;case 3:c=F.BitString;break;case 4:c=F.OctetString;break;case 5:c=F.Null;break;case 6:c=F.ObjectIdentifier;break;case 10:c=F.Enumerated;break;case 12:c=F.Utf8String;break;case 13:c=F.RelativeObjectIdentifier;break;case 14:c=F.TIME;break;case 15:return o.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:o};case 16:c=F.Sequence;break;case 17:c=F.Set;break;case 18:c=F.NumericString;break;case 19:c=F.PrintableString;break;case 20:c=F.TeletexString;break;case 21:c=F.VideotexString;break;case 22:c=F.IA5String;break;case 23:c=F.UTCTime;break;case 24:c=F.GeneralizedTime;break;case 25:c=F.GraphicString;break;case 26:c=F.VisibleString;break;case 27:c=F.GeneralString;break;case 28:c=F.UniversalString;break;case 29:c=F.CharacterString;break;case 30:c=F.BmpString;break;case 31:c=F.DATE;break;case 32:c=F.TimeOfDay;break;case 33:c=F.DateTime;break;case 34:c=F.Duration;break;default:{let u=o.idBlock.isConstructed?new F.Constructed:new F.Primitive;u.idBlock=o.idBlock,u.lenBlock=o.lenBlock,u.warnings=o.warnings,o=u}}break;case 2:case 3:case 4:default:c=o.idBlock.isConstructed?F.Constructed:F.Primitive}return o=gw(o,c),a=o.fromBER(r,t,o.lenBlock.isIndefiniteForm?e:o.lenBlock.length),o.valueBeforeDecodeView=r.subarray(n,n+o.blockLength),{offset:a,result:o}}function Zc(r){if(!r.byteLength){let t=new Tt({},Rt);return t.error="Input buffer has zero length",{offset:-1,result:t}}return mi(Z.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function yw(r,t){return r?1:t}var Pe=class extends Rt{constructor({value:t=[],isIndefiniteForm:e=!1,...n}={}){super(n),this.value=t,this.isIndefiniteForm=e}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;if(this.valueBeforeDecodeView=o.subarray(e,e+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),e;let s=e;for(;yw(this.isIndefiniteForm,n)>0;){let i=mi(o,s,n);if(i.offset===-1)return this.error=i.result.error,this.warnings.concat(i.result.warnings),-1;if(s=i.offset,this.blockLength+=i.result.blockLength,n-=i.result.blockLength,this.value.push(i.result),this.isIndefiniteForm&&i.result.constructor.NAME===ho)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===ho?this.value.pop():this.warnings.push("No EndOfContent block encoded")),s}toBER(t,e){let n=e||new fo;for(let o=0;o<this.value.length;o++)this.value[o].toBER(t,n);return e?we:n.final()}toJSON(){let t={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let e of this.value)t.value.push(e.toJSON());return t}};Pe.NAME="ConstructedValueBlock";var ih,Sr=class extends Tt{constructor(t={}){super(t,Pe),this.idBlock.isConstructed=!0}fromBER(t,e,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let o=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}onAsciiEncoding(){let t=[];for(let n of this.valueBlock.value)t.push(n.toString("ascii").split(`
|
|
2
|
+
"use strict";var HeliaHttp=(()=>{var xm=Object.create;var Jo=Object.defineProperty;var bm=Object.getOwnPropertyDescriptor;var vm=Object.getOwnPropertyNames;var Em=Object.getPrototypeOf,Sm=Object.prototype.hasOwnProperty;var Pr=(r,t)=>()=>(t||r((t={exports:{}}).exports,t),t.exports),gt=(r,t)=>{for(var e in t)Jo(r,e,{get:t[e],enumerable:!0})},Yl=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of vm(t))!Sm.call(r,o)&&o!==e&&Jo(r,o,{get:()=>t[o],enumerable:!(n=bm(t,o))||n.enumerable});return r};var Lr=(r,t,e)=>(e=r!=null?xm(Em(r)):{},Yl(t||!r||!r.__esModule?Jo(e,"default",{value:r,enumerable:!0}):e,r)),Am=r=>Yl(Jo({},"__esModule",{value:!0}),r);var Xf=Pr(Sn=>{"use strict";var cw="[object ArrayBuffer]",je=class r{static isArrayBuffer(t){return Object.prototype.toString.call(t)===cw}static toArrayBuffer(t){return this.isArrayBuffer(t)?t:t.byteLength===t.buffer.byteLength||t.byteOffset===0&&t.byteLength===t.buffer.byteLength?t.buffer:this.toUint8Array(t.buffer).slice(t.byteOffset,t.byteOffset+t.byteLength).buffer}static toUint8Array(t){return this.toView(t,Uint8Array)}static toView(t,e){if(t.constructor===e)return t;if(this.isArrayBuffer(t))return new e(t);if(this.isArrayBufferView(t))return new e(t.buffer,t.byteOffset,t.byteLength);throw new TypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView)'")}static isBufferSource(t){return this.isArrayBufferView(t)||this.isArrayBuffer(t)}static isArrayBufferView(t){return ArrayBuffer.isView(t)||t&&this.isArrayBuffer(t.buffer)}static isEqual(t,e){let n=r.toUint8Array(t),o=r.toUint8Array(e);if(n.length!==o.byteLength)return!1;for(let s=0;s<n.length;s++)if(n[s]!==o[s])return!1;return!0}static concat(...t){let e;Array.isArray(t[0])&&!(t[1]instanceof Function)||Array.isArray(t[0])&&t[1]instanceof Function?e=t[0]:t[t.length-1]instanceof Function?e=t.slice(0,t.length-1):e=t;let n=0;for(let i of e)n+=i.byteLength;let o=new Uint8Array(n),s=0;for(let i of e){let a=this.toUint8Array(i);o.set(a,s),s+=a.length}return t[t.length-1]instanceof Function?this.toView(o,t[t.length-1]):o.buffer}},qc="string",uw=/^[0-9a-f]+$/i,lw=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,fw=/^[a-zA-Z0-9-_]+$/,Is=class{static fromString(t){let e=unescape(encodeURIComponent(t)),n=new Uint8Array(e.length);for(let o=0;o<e.length;o++)n[o]=e.charCodeAt(o);return n.buffer}static toString(t){let e=je.toUint8Array(t),n="";for(let s=0;s<e.length;s++)n+=String.fromCharCode(e[s]);return decodeURIComponent(escape(n))}},ie=class{static toString(t,e=!1){let n=je.toArrayBuffer(t),o=new DataView(n),s="";for(let i=0;i<n.byteLength;i+=2){let a=o.getUint16(i,e);s+=String.fromCharCode(a)}return s}static fromString(t,e=!1){let n=new ArrayBuffer(t.length*2),o=new DataView(n);for(let s=0;s<t.length;s++)o.setUint16(s*2,t.charCodeAt(s),e);return n}},_s=class r{static isHex(t){return typeof t===qc&&uw.test(t)}static isBase64(t){return typeof t===qc&&lw.test(t)}static isBase64Url(t){return typeof t===qc&&fw.test(t)}static ToString(t,e="utf8"){let n=je.toUint8Array(t);switch(e.toLowerCase()){case"utf8":return this.ToUtf8String(n);case"binary":return this.ToBinary(n);case"hex":return this.ToHex(n);case"base64":return this.ToBase64(n);case"base64url":return this.ToBase64Url(n);case"utf16le":return ie.toString(n,!0);case"utf16":case"utf16be":return ie.toString(n);default:throw new Error(`Unknown type of encoding '${e}'`)}}static FromString(t,e="utf8"){if(!t)return new ArrayBuffer(0);switch(e.toLowerCase()){case"utf8":return this.FromUtf8String(t);case"binary":return this.FromBinary(t);case"hex":return this.FromHex(t);case"base64":return this.FromBase64(t);case"base64url":return this.FromBase64Url(t);case"utf16le":return ie.fromString(t,!0);case"utf16":case"utf16be":return ie.fromString(t);default:throw new Error(`Unknown type of encoding '${e}'`)}}static ToBase64(t){let e=je.toUint8Array(t);if(typeof btoa<"u"){let n=this.ToString(e,"binary");return btoa(n)}else return Buffer.from(e).toString("base64")}static FromBase64(t){let e=this.formatString(t);if(!e)return new ArrayBuffer(0);if(!r.isBase64(e))throw new TypeError("Argument 'base64Text' is not Base64 encoded");return typeof atob<"u"?this.FromBinary(atob(e)):new Uint8Array(Buffer.from(e,"base64")).buffer}static FromBase64Url(t){let e=this.formatString(t);if(!e)return new ArrayBuffer(0);if(!r.isBase64Url(e))throw new TypeError("Argument 'base64url' is not Base64Url encoded");return this.FromBase64(this.Base64Padding(e.replace(/\-/g,"+").replace(/\_/g,"/")))}static ToBase64Url(t){return this.ToBase64(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/\=/g,"")}static FromUtf8String(t,e=r.DEFAULT_UTF8_ENCODING){switch(e){case"ascii":return this.FromBinary(t);case"utf8":return Is.fromString(t);case"utf16":case"utf16be":return ie.fromString(t);case"utf16le":case"usc2":return ie.fromString(t,!0);default:throw new Error(`Unknown type of encoding '${e}'`)}}static ToUtf8String(t,e=r.DEFAULT_UTF8_ENCODING){switch(e){case"ascii":return this.ToBinary(t);case"utf8":return Is.toString(t);case"utf16":case"utf16be":return ie.toString(t);case"utf16le":case"usc2":return ie.toString(t,!0);default:throw new Error(`Unknown type of encoding '${e}'`)}}static FromBinary(t){let e=t.length,n=new Uint8Array(e);for(let o=0;o<e;o++)n[o]=t.charCodeAt(o);return n.buffer}static ToBinary(t){let e=je.toUint8Array(t),n="";for(let o=0;o<e.length;o++)n+=String.fromCharCode(e[o]);return n}static ToHex(t){let e=je.toUint8Array(t),n="",o=e.length;for(let s=0;s<o;s++){let i=e[s];i<16&&(n+="0"),n+=i.toString(16)}return n}static FromHex(t){let e=this.formatString(t);if(!e)return new ArrayBuffer(0);if(!r.isHex(e))throw new TypeError("Argument 'hexString' is not HEX encoded");e.length%2&&(e=`0${e}`);let n=new Uint8Array(e.length/2);for(let o=0;o<e.length;o=o+2){let s=e.slice(o,o+2);n[o/2]=parseInt(s,16)}return n.buffer}static ToUtf16String(t,e=!1){return ie.toString(t,e)}static FromUtf16String(t,e=!1){return ie.fromString(t,e)}static Base64Padding(t){let e=4-t.length%4;if(e<4)for(let n=0;n<e;n++)t+="=";return t}static formatString(t){return t?.replace(/[\n\r\t ]/g,"")||""}};_s.DEFAULT_UTF8_ENCODING="utf8";function hw(r,...t){let e=arguments[0];for(let n=1;n<arguments.length;n++){let o=arguments[n];for(let s in o)e[s]=o[s]}return e}function dw(...r){let t=r.map(o=>o.byteLength).reduce((o,s)=>o+s),e=new Uint8Array(t),n=0;return r.map(o=>new Uint8Array(o)).forEach(o=>{for(let s of o)e[n++]=s}),e.buffer}function pw(r,t){if(!(r&&t)||r.byteLength!==t.byteLength)return!1;let e=new Uint8Array(r),n=new Uint8Array(t);for(let o=0;o<r.byteLength;o++)if(e[o]!==n[o])return!1;return!0}Sn.BufferSourceConverter=je;Sn.Convert=_s;Sn.assign=hw;Sn.combine=dw;Sn.isEqual=pw});var hd=Pr((Ao,Ai)=>{(function(r,t){"use strict";var e={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(h){if(!Array.isArray(h)&&!ArrayBuffer.isView(h))return!1;for(var w=0;w<h.length;w++)if(!Number.isInteger(h[w])||h[w]<0||h[w]>255)return!1;return!0}function o(h,w){return(h&65535)*w+(((h>>>16)*w&65535)<<16)}function s(h,w){return h<<w|h>>>32-w}function i(h){return h^=h>>>16,h=o(h,2246822507),h^=h>>>13,h=o(h,3266489909),h^=h>>>16,h}function a(h,w){h=[h[0]>>>16,h[0]&65535,h[1]>>>16,h[1]&65535],w=[w[0]>>>16,w[0]&65535,w[1]>>>16,w[1]&65535];var m=[0,0,0,0];return m[3]+=h[3]+w[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=h[2]+w[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=h[1]+w[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=h[0]+w[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function c(h,w){h=[h[0]>>>16,h[0]&65535,h[1]>>>16,h[1]&65535],w=[w[0]>>>16,w[0]&65535,w[1]>>>16,w[1]&65535];var m=[0,0,0,0];return m[3]+=h[3]*w[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=h[2]*w[3],m[1]+=m[2]>>>16,m[2]&=65535,m[2]+=h[3]*w[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=h[1]*w[3],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=h[2]*w[2],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=h[3]*w[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=h[0]*w[3]+h[1]*w[2]+h[2]*w[1]+h[3]*w[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function u(h,w){return w%=64,w===32?[h[1],h[0]]:w<32?[h[0]<<w|h[1]>>>32-w,h[1]<<w|h[0]>>>32-w]:(w-=32,[h[1]<<w|h[0]>>>32-w,h[0]<<w|h[1]>>>32-w])}function l(h,w){return w%=64,w===0?h:w<32?[h[0]<<w|h[1]>>>32-w,h[1]<<w]:[h[1]<<w-32,0]}function f(h,w){return[h[0]^w[0],h[1]^w[1]]}function d(h){return h=f(h,[0,h[0]>>>1]),h=c(h,[4283543511,3981806797]),h=f(h,[0,h[0]>>>1]),h=c(h,[3301882366,444984403]),h=f(h,[0,h[0]>>>1]),h}e.x86.hash32=function(h,w){if(e.inputValidation&&!n(h))return t;w=w||0;for(var m=h.length%4,g=h.length-m,x=w,b=0,y=3432918353,S=461845907,_=0;_<g;_=_+4)b=h[_]|h[_+1]<<8|h[_+2]<<16|h[_+3]<<24,b=o(b,y),b=s(b,15),b=o(b,S),x^=b,x=s(x,13),x=o(x,5)+3864292196;switch(b=0,m){case 3:b^=h[_+2]<<16;case 2:b^=h[_+1]<<8;case 1:b^=h[_],b=o(b,y),b=s(b,15),b=o(b,S),x^=b}return x^=h.length,x=i(x),x>>>0},e.x86.hash128=function(h,w){if(e.inputValidation&&!n(h))return t;w=w||0;for(var m=h.length%16,g=h.length-m,x=w,b=w,y=w,S=w,_=0,T=0,E=0,v=0,k=597399067,V=2869860233,D=951274213,U=2716044179,L=0;L<g;L=L+16)_=h[L]|h[L+1]<<8|h[L+2]<<16|h[L+3]<<24,T=h[L+4]|h[L+5]<<8|h[L+6]<<16|h[L+7]<<24,E=h[L+8]|h[L+9]<<8|h[L+10]<<16|h[L+11]<<24,v=h[L+12]|h[L+13]<<8|h[L+14]<<16|h[L+15]<<24,_=o(_,k),_=s(_,15),_=o(_,V),x^=_,x=s(x,19),x+=b,x=o(x,5)+1444728091,T=o(T,V),T=s(T,16),T=o(T,D),b^=T,b=s(b,17),b+=y,b=o(b,5)+197830471,E=o(E,D),E=s(E,17),E=o(E,U),y^=E,y=s(y,15),y+=S,y=o(y,5)+2530024501,v=o(v,U),v=s(v,18),v=o(v,k),S^=v,S=s(S,13),S+=x,S=o(S,5)+850148119;switch(_=0,T=0,E=0,v=0,m){case 15:v^=h[L+14]<<16;case 14:v^=h[L+13]<<8;case 13:v^=h[L+12],v=o(v,U),v=s(v,18),v=o(v,k),S^=v;case 12:E^=h[L+11]<<24;case 11:E^=h[L+10]<<16;case 10:E^=h[L+9]<<8;case 9:E^=h[L+8],E=o(E,D),E=s(E,17),E=o(E,U),y^=E;case 8:T^=h[L+7]<<24;case 7:T^=h[L+6]<<16;case 6:T^=h[L+5]<<8;case 5:T^=h[L+4],T=o(T,V),T=s(T,16),T=o(T,D),b^=T;case 4:_^=h[L+3]<<24;case 3:_^=h[L+2]<<16;case 2:_^=h[L+1]<<8;case 1:_^=h[L],_=o(_,k),_=s(_,15),_=o(_,V),x^=_}return x^=h.length,b^=h.length,y^=h.length,S^=h.length,x+=b,x+=y,x+=S,b+=x,y+=x,S+=x,x=i(x),b=i(b),y=i(y),S=i(S),x+=b,x+=y,x+=S,b+=x,y+=x,S+=x,("00000000"+(x>>>0).toString(16)).slice(-8)+("00000000"+(b>>>0).toString(16)).slice(-8)+("00000000"+(y>>>0).toString(16)).slice(-8)+("00000000"+(S>>>0).toString(16)).slice(-8)},e.x64.hash128=function(h,w){if(e.inputValidation&&!n(h))return t;w=w||0;for(var m=h.length%16,g=h.length-m,x=[0,w],b=[0,w],y=[0,0],S=[0,0],_=[2277735313,289559509],T=[1291169091,658871167],E=0;E<g;E=E+16)y=[h[E+4]|h[E+5]<<8|h[E+6]<<16|h[E+7]<<24,h[E]|h[E+1]<<8|h[E+2]<<16|h[E+3]<<24],S=[h[E+12]|h[E+13]<<8|h[E+14]<<16|h[E+15]<<24,h[E+8]|h[E+9]<<8|h[E+10]<<16|h[E+11]<<24],y=c(y,_),y=u(y,31),y=c(y,T),x=f(x,y),x=u(x,27),x=a(x,b),x=a(c(x,[0,5]),[0,1390208809]),S=c(S,T),S=u(S,33),S=c(S,_),b=f(b,S),b=u(b,31),b=a(b,x),b=a(c(b,[0,5]),[0,944331445]);switch(y=[0,0],S=[0,0],m){case 15:S=f(S,l([0,h[E+14]],48));case 14:S=f(S,l([0,h[E+13]],40));case 13:S=f(S,l([0,h[E+12]],32));case 12:S=f(S,l([0,h[E+11]],24));case 11:S=f(S,l([0,h[E+10]],16));case 10:S=f(S,l([0,h[E+9]],8));case 9:S=f(S,[0,h[E+8]]),S=c(S,T),S=u(S,33),S=c(S,_),b=f(b,S);case 8:y=f(y,l([0,h[E+7]],56));case 7:y=f(y,l([0,h[E+6]],48));case 6:y=f(y,l([0,h[E+5]],40));case 5:y=f(y,l([0,h[E+4]],32));case 4:y=f(y,l([0,h[E+3]],24));case 3:y=f(y,l([0,h[E+2]],16));case 2:y=f(y,l([0,h[E+1]],8));case 1:y=f(y,[0,h[E]]),y=c(y,_),y=u(y,31),y=c(y,T),x=f(x,y)}return x=f(x,[0,h.length]),b=f(b,[0,h.length]),x=a(x,b),b=a(b,x),x=d(x),b=d(b),x=a(x,b),b=a(b,x),("00000000"+(x[0]>>>0).toString(16)).slice(-8)+("00000000"+(x[1]>>>0).toString(16)).slice(-8)+("00000000"+(b[0]>>>0).toString(16)).slice(-8)+("00000000"+(b[1]>>>0).toString(16)).slice(-8)},typeof Ao<"u"?(typeof Ai<"u"&&Ai.exports&&(Ao=Ai.exports=e),Ao.murmurHash3=e):typeof define=="function"&&define.amd?define([],function(){return e}):(e._murmurHash3=r.murmurHash3,e.noConflict=function(){return r.murmurHash3=e._murmurHash3,e._murmurHash3=t,e.noConflict=t,e},r.murmurHash3=e)})(Ao)});var pd=Pr((tS,dd)=>{dd.exports=hd()});var Ed=Pr(($S,uu)=>{"use strict";var nx=Object.prototype.hasOwnProperty,zt="~";function Io(){}Object.create&&(Io.prototype=Object.create(null),new Io().__proto__||(zt=!1));function ox(r,t,e){this.fn=r,this.context=t,this.once=e||!1}function vd(r,t,e,n,o){if(typeof e!="function")throw new TypeError("The listener must be a function");var s=new ox(e,n||r,o),i=zt?zt+t:t;return r._events[i]?r._events[i].fn?r._events[i]=[r._events[i],s]:r._events[i].push(s):(r._events[i]=s,r._eventsCount++),r}function Ti(r,t){--r._eventsCount===0?r._events=new Io:delete r._events[t]}function Ft(){this._events=new Io,this._eventsCount=0}Ft.prototype.eventNames=function(){var t=[],e,n;if(this._eventsCount===0)return t;for(n in e=this._events)nx.call(e,n)&&t.push(zt?n.slice(1):n);return Object.getOwnPropertySymbols?t.concat(Object.getOwnPropertySymbols(e)):t};Ft.prototype.listeners=function(t){var e=zt?zt+t:t,n=this._events[e];if(!n)return[];if(n.fn)return[n.fn];for(var o=0,s=n.length,i=new Array(s);o<s;o++)i[o]=n[o].fn;return i};Ft.prototype.listenerCount=function(t){var e=zt?zt+t:t,n=this._events[e];return n?n.fn?1:n.length:0};Ft.prototype.emit=function(t,e,n,o,s,i){var a=zt?zt+t:t;if(!this._events[a])return!1;var c=this._events[a],u=arguments.length,l,f;if(c.fn){switch(c.once&&this.removeListener(t,c.fn,void 0,!0),u){case 1:return c.fn.call(c.context),!0;case 2:return c.fn.call(c.context,e),!0;case 3:return c.fn.call(c.context,e,n),!0;case 4:return c.fn.call(c.context,e,n,o),!0;case 5:return c.fn.call(c.context,e,n,o,s),!0;case 6:return c.fn.call(c.context,e,n,o,s,i),!0}for(f=1,l=new Array(u-1);f<u;f++)l[f-1]=arguments[f];c.fn.apply(c.context,l)}else{var d=c.length,h;for(f=0;f<d;f++)switch(c[f].once&&this.removeListener(t,c[f].fn,void 0,!0),u){case 1:c[f].fn.call(c[f].context);break;case 2:c[f].fn.call(c[f].context,e);break;case 3:c[f].fn.call(c[f].context,e,n);break;case 4:c[f].fn.call(c[f].context,e,n,o);break;default:if(!l)for(h=1,l=new Array(u-1);h<u;h++)l[h-1]=arguments[h];c[f].fn.apply(c[f].context,l)}}return!0};Ft.prototype.on=function(t,e,n){return vd(this,t,e,n,!1)};Ft.prototype.once=function(t,e,n){return vd(this,t,e,n,!0)};Ft.prototype.removeListener=function(t,e,n,o){var s=zt?zt+t:t;if(!this._events[s])return this;if(!e)return Ti(this,s),this;var i=this._events[s];if(i.fn)i.fn===e&&(!o||i.once)&&(!n||i.context===n)&&Ti(this,s);else{for(var a=0,c=[],u=i.length;a<u;a++)(i[a].fn!==e||o&&!i[a].once||n&&i[a].context!==n)&&c.push(i[a]);c.length?this._events[s]=c.length===1?c[0]:c:Ti(this,s)}return this};Ft.prototype.removeAllListeners=function(t){var e;return t?(e=zt?zt+t:t,this._events[e]&&Ti(this,e)):(this._events=new Io,this._eventsCount=0),this};Ft.prototype.off=Ft.prototype.removeListener;Ft.prototype.addListener=Ft.prototype.on;Ft.prefixed=zt;Ft.EventEmitter=Ft;typeof uu<"u"&&(uu.exports=Ft)});var Id=Pr((aA,kd)=>{kd.exports=function(r){if(!r)throw Error("hashlru must have a max value, of type number, greater than 0");var t=0,e=Object.create(null),n=Object.create(null);function o(s,i){e[s]=i,t++,t>=r&&(t=0,n=e,e=Object.create(null))}return{has:function(s){return e[s]!==void 0||n[s]!==void 0},remove:function(s){e[s]!==void 0&&(e[s]=void 0),n[s]!==void 0&&(n[s]=void 0)},get:function(s){var i=e[s];if(i!==void 0)return i;if((i=n[s])!==void 0)return o(s,i),i},set:function(s,i){e[s]!==void 0?e[s]=i:o(s,i)},clear:function(){e=Object.create(null),n=Object.create(null)}}}});var f0=Pr(Ho=>{(function(){var r,t,e,n,o,s,i,a;a=function(c){var u,l,f,d;return u=(c&255<<24)>>>24,l=(c&255<<16)>>>16,f=(c&65280)>>>8,d=c&255,[u,l,f,d].join(".")},i=function(c){var u,l,f,d,h,w;for(u=[],f=d=0;d<=3&&c.length!==0;f=++d){if(f>0){if(c[0]!==".")throw new Error("Invalid IP");c=c.substring(1)}w=t(c),h=w[0],l=w[1],c=c.substring(l),u.push(h)}if(c.length!==0)throw new Error("Invalid IP");switch(u.length){case 1:if(u[0]>4294967295)throw new Error("Invalid IP");return u[0]>>>0;case 2:if(u[0]>255||u[1]>16777215)throw new Error("Invalid IP");return(u[0]<<24|u[1])>>>0;case 3:if(u[0]>255||u[1]>255||u[2]>65535)throw new Error("Invalid IP");return(u[0]<<24|u[1]<<16|u[2])>>>0;case 4:if(u[0]>255||u[1]>255||u[2]>255||u[3]>255)throw new Error("Invalid IP");return(u[0]<<24|u[1]<<16|u[2]<<8|u[3])>>>0;default:throw new Error("Invalid IP")}},e=function(c){return c.charCodeAt(0)},n=e("0"),s=e("a"),o=e("A"),t=function(c){var u,l,f,d,h;for(d=0,u=10,l="9",f=0,c.length>1&&c[f]==="0"&&(c[f+1]==="x"||c[f+1]==="X"?(f+=2,u=16):"0"<=c[f+1]&&c[f+1]<="9"&&(f++,u=8,l="7")),h=f;f<c.length;){if("0"<=c[f]&&c[f]<=l)d=d*u+(e(c[f])-n)>>>0;else if(u===16)if("a"<=c[f]&&c[f]<="f")d=d*u+(10+e(c[f])-s)>>>0;else if("A"<=c[f]&&c[f]<="F")d=d*u+(10+e(c[f])-o)>>>0;else break;else break;if(d>4294967295)throw new Error("too large");f++}if(f===h)throw new Error("empty octet");return[d,f]},r=function(){function c(u,l){var f,d,h,w;if(typeof u!="string")throw new Error("Missing `net' parameter");if(l||(w=u.split("/",2),u=w[0],l=w[1]),l||(l=32),typeof l=="string"&&l.indexOf(".")>-1){try{this.maskLong=i(l)}catch(m){throw f=m,new Error("Invalid mask: "+l)}for(d=h=32;h>=0;d=--h)if(this.maskLong===4294967295<<32-d>>>0){this.bitmask=d;break}}else if(l||l===0)this.bitmask=parseInt(l,10),this.maskLong=0,this.bitmask>0&&(this.maskLong=4294967295<<32-this.bitmask>>>0);else throw new Error("Invalid mask: empty");try{this.netLong=(i(u)&this.maskLong)>>>0}catch(m){throw f=m,new Error("Invalid net address: "+u)}if(!(this.bitmask<=32))throw new Error("Invalid mask for ip4: "+l);this.size=Math.pow(2,32-this.bitmask),this.base=a(this.netLong),this.mask=a(this.maskLong),this.hostmask=a(~this.maskLong),this.first=this.bitmask<=30?a(this.netLong+1):this.base,this.last=this.bitmask<=30?a(this.netLong+this.size-2):a(this.netLong+this.size-1),this.broadcast=this.bitmask<=30?a(this.netLong+this.size-1):void 0}return c.prototype.contains=function(u){return typeof u=="string"&&(u.indexOf("/")>0||u.split(".").length!==4)&&(u=new c(u)),u instanceof c?this.contains(u.base)&&this.contains(u.broadcast||u.last):(i(u)&this.maskLong)>>>0===(this.netLong&this.maskLong)>>>0},c.prototype.next=function(u){return u==null&&(u=1),new c(a(this.netLong+this.size*u),this.mask)},c.prototype.forEach=function(u){var l,f,d;for(d=i(this.first),f=i(this.last),l=0;d<=f;)u(a(d),d,l),l++,d++},c.prototype.toString=function(){return this.base+"/"+this.bitmask},c}(),Ho.ip2long=i,Ho.long2ip=a,Ho.Netmask=r}).call(Ho)});var Tl=Pr((OI,_l)=>{var VI=function(){typeof _l<"u"&&(_l.exports=m);var r=86400,t=3200,e=146097*t/400,n=r*e,o=1e3*n,s=864e13,i=4294967296,a=1e6,c="000000000",u=Math.trunc||function(v){var k=v-v%1;return k==0&&(v<0||v===0&&1/v!=1/0)?-0:k},l=m.prototype,f=(m.fromDate=function(v){return new m(+v)},m.fromInt64BE=S(0,1,2,3,0,4),m.fromInt64LE=S(3,2,1,0,4,0),m.fromString=function(D){var k,V=new m,D=(D+="").replace(/^\s*[+\-]?\d+/,function(L){var L=+L,N=1970+(L-1970)%400;return V.year=L-N,N}).replace(/(?:Z|([+\-]\d{2}):?(\d{2}))$/,function(U,L,N){return L<0&&(N*=-1),k=6e4*(60*+L+ +N),""}).replace(/\.\d+$/,function(U){return V.nano=+(U+c).substr(1,9),""}).split(/\D+/);if(1<D.length?D[1]--:D[1]=0,V.time=k=Date.UTC.apply(Date,D)-(k||0),isNaN(k))throw new TypeError("Invalid Date");return g(V)},m.fromTimeT=function(v){return b(v,0)},l.year=0,l.time=0,l.nano=0,l.addNano=function(v){return this.nano+=+v||0,this},l.getNano=function(){var v=g(this);return(v.time%1e3*a+ +v.nano+1e9)%1e9},l.getTimeT=function(){var k=g(this),v=Math.floor(k.time/1e3),k=k.year;return k&&(v+=k*e*r/t),v},l.getYear=function(){return this.toDate().getUTCFullYear()+this.year},l.toDate=function(){return x(g(this).time)},l.toJSON=function(){return this.toString().replace(/0{1,6}Z$/,"Z")},l.toString=function(v){var k=this,V=k.toDate(),D={H:function(){return T(V.getUTCHours())},L:function(){return E(V.getUTCMilliseconds(),3)},M:function(){return T(V.getUTCMinutes())},N:function(){return E(k.getNano(),9)},S:function(){return T(V.getUTCSeconds())},Y:function(){var U=k.getYear();return 999999<U?"+"+U:9999<U?"+"+E(U,6):0<=U?E(U,4):-999999<=U?"-"+E(-U,6):U},a:function(){return h[V.getUTCDay()]},b:function(){return d[V.getUTCMonth()]},d:function(){return T(V.getUTCDate())},e:function(){return function(U){return(9<U?"":" ")+(0|U)}(V.getUTCDate())},m:function(){return T(V.getUTCMonth()+1)}};return function U(L){return L.replace(/%./g,function(N){var B=N[1],P=w[B],B=D[B];return P?U(P):B?B():N})}(v||f)},l.writeInt64BE=y(0,1,2,3,0,4),l.writeInt64LE=y(3,2,1,0,4,0),"%Y-%m-%dT%H:%M:%S.%NZ"),d=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],h=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],w={"%":"%",F:"%Y-%m-%d",n:`
|
|
3
|
+
`,R:"%H:%M",T:"%H:%M:%S",t:" ",X:"%T",Z:"GMT",z:"+0000"};return m;function m(v,k,V){var D=this;if(!(D instanceof m))return new m(v,k,V);D.time=+v||0,D.nano=+k||0,D.year=+V||0,g(D)}function g(v){var k,V,D,U=v.year,L=v.time,N=v.nano,P=((N<0||a<=N)&&(N-=(V=Math.floor(N/a))*a,L+=V,V=1),U%t);return(L<-s||s<L||P)&&((k=u(L/o))&&(U+=k*t,L-=k*o),(D=x(L)).setUTCFullYear(P+D.getUTCFullYear()),D=(L=+D)+(k=u((U-=P)/t))*o,k&&-s<=D&&D<=s&&(U-=k*t,L=D),V=1),V&&(v.year=U,v.time=L,v.nano=N),v}function x(v){var k=new Date(0);return k.setTime(v),k}function b(U,D){U=+U||0;var V=u((D=(D|0)*i)/n)+u(U/n),D=D%n+U%n,U=u(D/n);return U&&(V+=U,D-=U*n),new m(1e3*D,0,V*t)}function y(v,k,V,D,U,L){return function(P,B){var C=g(this);P=P||new Array(8),_(P,B|=0);var $=Math.floor(C.time/1e3),C=C.year*(e*r/t),A=u(C/i)+u($/i),C=C%i+$%i,$=Math.floor(C/i);return $&&(A+=$,C-=$*i),N(P,B+U,A),N(P,B+L,C),P};function N(P,B,A){P[B+v]=A>>24&255,P[B+k]=A>>16&255,P[B+V]=A>>8&255,P[B+D]=255&A}}function S(v,k,V,D,U,L){return function(P,B){_(P,B|=0);var A=N(P,B+U);return b(N(P,B+L),A)};function N(P,B){return 16777216*P[B+v]+(P[B+k]<<16|P[B+V]<<8|P[B+D])}}function _(v,k){if(v=v&&v.length,v==null)throw new TypeError("Invalid Buffer");if(v<k+8)throw new RangeError("Out of range")}function T(v){return(9<v?"":"0")+(0|v)}function E(v,k){return(c+(0|v)).substr(-k)}}()});var jb={};gt(jb,{DEFAULT_SESSION_MAX_PROVIDERS:()=>Cu,DEFAULT_SESSION_MIN_PROVIDERS:()=>Tu,InsufficientProvidersError:()=>Fo,NoRoutersAvailableError:()=>_r,UnknownCodecError:()=>Mo,UnknownHashAlgorithmError:()=>$o,createHeliaHTTP:()=>qb});var Zn=Symbol.for("@libp2p/content-routing");var Ra=Symbol.for("@libp2p/peer-id");var Yn=Symbol.for("@libp2p/peer-routing");var Me=class extends Error{static name="AbortError";constructor(t="The operation was aborted"){super(t),this.name="AbortError"}};var St=class extends Error{static name="InvalidParametersError";constructor(t="Invalid parameters"){super(t),this.name="InvalidParametersError"}},en=class extends Error{static name="InvalidPublicKeyError";constructor(t="Invalid public key"){super(t),this.name="InvalidPublicKeyError"}};var Lt=class extends Error{static name="NotFoundError";constructor(t="Not found"){super(t),this.name="NotFoundError"}};var Xo=class extends Error{static name="InvalidCIDError";constructor(t="Invalid CID"){super(t),this.name="InvalidCIDError"}},cr=class extends Error{static name="InvalidMultihashError";constructor(t="Invalid Multihash"){super(t),this.name="InvalidMultihashError"}};var rn=class extends Error{static name="UnsupportedKeyTypeError";constructor(t="Unsupported key type"){super(t),this.name="UnsupportedKeyTypeError"}};var ht=(r,...t)=>{try{[...t]}catch{}};var nn=class extends EventTarget{#t=new Map;constructor(){super(),ht(1/0,this)}listenerCount(t){let e=this.#t.get(t);return e==null?0:e.length}addEventListener(t,e,n){super.addEventListener(t,e,n);let o=this.#t.get(t);o==null&&(o=[],this.#t.set(t,o)),o.push({callback:e,once:(n!==!0&&n!==!1&&n?.once)??!1})}removeEventListener(t,e,n){super.removeEventListener(t.toString(),e??null,n);let o=this.#t.get(t);o!=null&&(o=o.filter(({callback:s})=>s!==e),this.#t.set(t,o))}dispatchEvent(t){let e=super.dispatchEvent(t),n=this.#t.get(t.type);return n==null||(n=n.filter(({once:o})=>!o),this.#t.set(t.type,n)),e}safeDispatchEvent(t,e={}){return this.dispatchEvent(new CustomEvent(t,e))}};function Jl(r){return r!=null&&typeof r.start=="function"&&typeof r.stop=="function"}async function ur(...r){let t=[];for(let e of r)Jl(e)&&t.push(e);await Promise.all(t.map(async e=>{e.beforeStart!=null&&await e.beforeStart()})),await Promise.all(t.map(async e=>{await e.start()})),await Promise.all(t.map(async e=>{e.afterStart!=null&&await e.afterStart()}))}async function lr(...r){let t=[];for(let e of r)Jl(e)&&t.push(e);await Promise.all(t.map(async e=>{e.beforeStop!=null&&await e.beforeStop()})),await Promise.all(t.map(async e=>{await e.stop()})),await Promise.all(t.map(async e=>{e.afterStop!=null&&await e.afterStop()}))}function Ot(r){let t=new globalThis.AbortController;function e(){t.abort();for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",e)}for(let s of r){if(s?.aborted===!0){e();break}s?.addEventListener!=null&&s.addEventListener("abort",e)}function n(){for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",e)}let o=t.signal;return o.clear=n,o}function At(){let r={};return r.promise=new Promise((t,e)=>{r.resolve=t,r.reject=e}),r}var Qo=class{buffer;mask;top;btm;next;constructor(t){if(!(t>0)||t-1&t)throw new Error("Max size for a FixedFIFO should be a power of two");this.buffer=new Array(t),this.mask=t-1,this.top=0,this.btm=0,this.next=null}push(t){return this.buffer[this.top]!==void 0?!1:(this.buffer[this.top]=t,this.top=this.top+1&this.mask,!0)}shift(){let t=this.buffer[this.btm];if(t!==void 0)return this.buffer[this.btm]=void 0,this.btm=this.btm+1&this.mask,t}isEmpty(){return this.buffer[this.btm]===void 0}},on=class{size;hwm;head;tail;constructor(t={}){this.hwm=t.splitLimit??16,this.head=new Qo(this.hwm),this.tail=this.head,this.size=0}calculateSize(t){return t?.byteLength!=null?t.byteLength:1}push(t){if(t?.value!=null&&(this.size+=this.calculateSize(t.value)),!this.head.push(t)){let e=this.head;this.head=e.next=new Qo(2*this.head.buffer.length),this.head.push(t)}}shift(){let t=this.tail.shift();if(t===void 0&&this.tail.next!=null){let e=this.tail.next;this.tail.next=null,this.tail=e,t=this.tail.shift()}return t?.value!=null&&(this.size-=this.calculateSize(t.value)),t}isEmpty(){return this.head.isEmpty()}};var Ua=class extends Error{type;code;constructor(t,e){super(t??"The operation was aborted"),this.type="aborted",this.code=e??"ABORT_ERR"}};function Rr(r={}){return Bm(e=>{let n=e.shift();if(n==null)return{done:!0};if(n.error!=null)throw n.error;return{done:n.done===!0,value:n.value}},r)}function Bm(r,t){t=t??{};let e=t.onEnd,n=new on,o,s,i,a=At(),c=async()=>{try{return n.isEmpty()?i?{done:!0}:await new Promise((g,x)=>{s=b=>{s=null,n.push(b);try{g(r(n))}catch(y){x(y)}return o}}):r(n)}finally{n.isEmpty()&&queueMicrotask(()=>{a.resolve(),a=At()})}},u=g=>s!=null?s(g):(n.push(g),o),l=g=>(n=new on,s!=null?s({error:g}):(n.push({error:g}),o)),f=g=>{if(i)return o;if(t?.objectMode!==!0&&g?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return u({done:!1,value:g})},d=g=>i?o:(i=!0,g!=null?l(g):u({done:!0})),h=()=>(n=new on,d(),{done:!0}),w=g=>(d(g),{done:!0});if(o={[Symbol.asyncIterator](){return this},next:c,return:h,throw:w,push:f,end:d,get readableLength(){return n.size},onEmpty:async g=>{let x=g?.signal;if(x?.throwIfAborted(),n.isEmpty())return;let b,y;x!=null&&(b=new Promise((S,_)=>{y=()=>{_(new Ua)},x.addEventListener("abort",y)}));try{await Promise.race([a.promise,b])}finally{y!=null&&x!=null&&x?.removeEventListener("abort",y)}}},e==null)return o;let m=o;return o={[Symbol.asyncIterator](){return this},next(){return m.next()},throw(g){return m.throw(g),e!=null&&(e(g),e=void 0),{done:!0}},return(){return m.return(),e!=null&&(e(),e=void 0),{done:!0}},push:f,end(g){return m.end(g),e!=null&&(e(g),e=void 0),o},get readableLength(){return m.readableLength},onEmpty:g=>m.onEmpty(g)},o}var Da=class extends Error{type;code;constructor(t,e){super(t??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=e??"ABORT_ERR"}};async function ts(r,t,e,n){let o=new Da(n?.errorMessage,n?.errorCode);return e?.aborted===!0?Promise.reject(o):new Promise((s,i)=>{function a(){e?.removeEventListener("abort",l),r.removeEventListener(t,c),n?.errorEvent!=null&&r.removeEventListener(n.errorEvent,u)}let c=f=>{try{if(n?.filter?.(f)===!1)return}catch(d){a(),i(d);return}a(),s(f)},u=f=>{a(),i(f.detail)},l=()=>{a(),i(o)};e?.addEventListener("abort",l),r.addEventListener(t,c),n?.errorEvent!=null&&r.addEventListener(n.errorEvent,u)})}var es=class extends Error{static name="QueueFullError";constructor(t="The queue was full"){super(t),this.name="QueueFullError"}};var rs=class extends Error{type;code;constructor(t,e,n){super(t??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=e??"ABORT_ERR"}};async function Xl(r,t,e){if(t==null)return r;if(t.aborted)return Promise.reject(new rs(e?.errorMessage,e?.errorCode,e?.errorName));let n,o=new rs(e?.errorMessage,e?.errorCode,e?.errorName);try{return await Promise.race([r,new Promise((s,i)=>{n=()=>{i(o)},t.addEventListener("abort",n)})])}finally{n!=null&&t.removeEventListener("abort",n)}}var ns=class{deferred;signal;constructor(t){this.signal=t,this.deferred=At(),this.onAbort=this.onAbort.bind(this),this.signal?.addEventListener("abort",this.onAbort)}onAbort(){this.deferred.reject(this.signal?.reason??new Me)}cleanup(){this.signal?.removeEventListener("abort",this.onAbort)}};function km(){return`${parseInt(String(Math.random()*1e9),10).toString()}${Date.now()}`}var os=class{id;fn;options;recipients;status;timeline;controller;constructor(t,e){this.id=km(),this.status="queued",this.fn=t,this.options=e,this.recipients=[],this.timeline={created:Date.now()},this.controller=new AbortController,ht(1/0,this.controller.signal),this.onAbort=this.onAbort.bind(this)}abort(t){this.controller.abort(t)}onAbort(){this.recipients.reduce((e,n)=>e&&n.signal?.aborted===!0,!0)&&(this.controller.abort(new Me),this.cleanup())}async join(t={}){let e=new ns(t.signal);return this.recipients.push(e),t.signal?.addEventListener("abort",this.onAbort),e.deferred.promise}async run(){this.status="running",this.timeline.started=Date.now();try{this.controller.signal.throwIfAborted();let t=await Xl(this.fn({...this.options??{},signal:this.controller.signal}),this.controller.signal);this.recipients.forEach(e=>{e.deferred.resolve(t)}),this.status="complete"}catch(t){this.recipients.forEach(e=>{e.deferred.reject(t)}),this.status="errored"}finally{this.timeline.finished=Date.now(),this.cleanup()}}cleanup(){this.recipients.forEach(t=>{t.cleanup(),t.signal?.removeEventListener("abort",this.onAbort)})}};var Ve=class extends nn{concurrency;maxSize;queue;pending;sort;constructor(t={}){super(),this.concurrency=t.concurrency??Number.POSITIVE_INFINITY,this.maxSize=t.maxSize??Number.POSITIVE_INFINITY,this.pending=0,t.metricName!=null&&t.metrics?.registerMetricGroup(t.metricName,{calculate:()=>({size:this.queue.length,running:this.pending,queued:this.queue.length-this.pending})}),this.sort=t.sort,this.queue=[]}tryToStartAnother(){if(this.size===0)return queueMicrotask(()=>{this.safeDispatchEvent("empty")}),this.running===0&&queueMicrotask(()=>{this.safeDispatchEvent("idle")}),!1;if(this.pending<this.concurrency){let t;for(let e of this.queue)if(e.status==="queued"){t=e;break}return t==null?!1:(this.safeDispatchEvent("active"),this.pending++,t.run().finally(()=>{for(let e=0;e<this.queue.length;e++)if(this.queue[e]===t){this.queue.splice(e,1);break}this.pending--,this.tryToStartAnother(),this.safeDispatchEvent("next")}),!0)}return!1}enqueue(t){this.queue.push(t),this.sort!=null&&this.queue.sort(this.sort)}async add(t,e){if(e?.signal?.throwIfAborted(),this.size===this.maxSize)throw new es;let n=new os(t,e);return this.enqueue(n),this.safeDispatchEvent("add"),this.tryToStartAnother(),n.join(e).then(o=>(this.safeDispatchEvent("completed",{detail:o}),this.safeDispatchEvent("success",{detail:{job:n,result:o}}),o)).catch(o=>{if(n.status==="queued"){for(let s=0;s<this.queue.length;s++)if(this.queue[s]===n){this.queue.splice(s,1);break}}throw this.safeDispatchEvent("error",{detail:o}),this.safeDispatchEvent("failure",{detail:{job:n,error:o}}),o})}clear(){this.queue.splice(0,this.queue.length)}abort(){this.queue.forEach(t=>{t.abort(new Me)}),this.clear()}async onEmpty(t){this.size!==0&&await ts(this,"empty",t?.signal)}async onSizeLessThan(t,e){this.size<t||await ts(this,"next",e?.signal,{filter:()=>this.size<t})}async onIdle(t){this.pending===0&&this.size===0||await ts(this,"idle",t?.signal)}get size(){return this.queue.length}get queued(){return this.queue.length-this.pending}get running(){return this.pending}async*toGenerator(t){t?.signal?.throwIfAborted();let e=Rr({objectMode:!0}),n=c=>{c!=null?this.abort():this.clear(),e.end(c)},o=c=>{c.detail!=null&&e.push(c.detail)},s=c=>{n(c.detail)},i=()=>{n()},a=()=>{n(new Me("Queue aborted"))};this.addEventListener("completed",o),this.addEventListener("error",s),this.addEventListener("idle",i),t?.signal?.addEventListener("abort",a);try{yield*e}finally{this.removeEventListener("completed",o),this.removeEventListener("error",s),this.removeEventListener("idle",i),t?.signal?.removeEventListener("abort",a),n()}}};var ss=class extends Ve{has(t){return this.find(t)!=null}find(t){return this.queue.find(e=>t.equals(e.options.peerId))}};function Im(r){return r[Symbol.asyncIterator]!=null}function _m(r){if(Im(r))return(async()=>{for await(let t of r);})();for(let t of r);}var Ur=_m;function Ql(r=0){return new Uint8Array(r)}function le(r=0){return new Uint8Array(r)}var Tm=Math.pow(2,7),Cm=Math.pow(2,14),Nm=Math.pow(2,21),Fa=Math.pow(2,28),$a=Math.pow(2,35),Ma=Math.pow(2,42),Va=Math.pow(2,49),rt=128,Rt=127;function qt(r){if(r<Tm)return 1;if(r<Cm)return 2;if(r<Nm)return 3;if(r<Fa)return 4;if(r<$a)return 5;if(r<Ma)return 6;if(r<Va)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function Oa(r,t,e=0){switch(qt(r)){case 8:t[e++]=r&255|rt,r/=128;case 7:t[e++]=r&255|rt,r/=128;case 6:t[e++]=r&255|rt,r/=128;case 5:t[e++]=r&255|rt,r/=128;case 4:t[e++]=r&255|rt,r>>>=7;case 3:t[e++]=r&255|rt,r>>>=7;case 2:t[e++]=r&255|rt,r>>>=7;case 1:{t[e++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return t}function Pm(r,t,e=0){switch(qt(r)){case 8:t.set(e++,r&255|rt),r/=128;case 7:t.set(e++,r&255|rt),r/=128;case 6:t.set(e++,r&255|rt),r/=128;case 5:t.set(e++,r&255|rt),r/=128;case 4:t.set(e++,r&255|rt),r>>>=7;case 3:t.set(e++,r&255|rt),r>>>=7;case 2:t.set(e++,r&255|rt),r>>>=7;case 1:{t.set(e++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return t}function Ha(r,t){let e=r[t],n=0;if(n+=e&Rt,e<rt||(e=r[t+1],n+=(e&Rt)<<7,e<rt)||(e=r[t+2],n+=(e&Rt)<<14,e<rt)||(e=r[t+3],n+=(e&Rt)<<21,e<rt)||(e=r[t+4],n+=(e&Rt)*Fa,e<rt)||(e=r[t+5],n+=(e&Rt)*$a,e<rt)||(e=r[t+6],n+=(e&Rt)*Ma,e<rt)||(e=r[t+7],n+=(e&Rt)*Va,e<rt))return n;throw new RangeError("Could not decode varint")}function Lm(r,t){let e=r.get(t),n=0;if(n+=e&Rt,e<rt||(e=r.get(t+1),n+=(e&Rt)<<7,e<rt)||(e=r.get(t+2),n+=(e&Rt)<<14,e<rt)||(e=r.get(t+3),n+=(e&Rt)<<21,e<rt)||(e=r.get(t+4),n+=(e&Rt)*Fa,e<rt)||(e=r.get(t+5),n+=(e&Rt)*$a,e<rt)||(e=r.get(t+6),n+=(e&Rt)*Ma,e<rt)||(e=r.get(t+7),n+=(e&Rt)*Va,e<rt))return n;throw new RangeError("Could not decode varint")}function sn(r,t,e=0){return t==null&&(t=le(qt(r))),t instanceof Uint8Array?Oa(r,t,e):Pm(r,t,e)}function Dr(r,t=0){return r instanceof Uint8Array?Ha(r,t):Lm(r,t)}function Xt(r,t){t==null&&(t=r.reduce((o,s)=>o+s.length,0));let e=le(t),n=0;for(let o of r)e.set(o,n),n+=o.length;return e}function st(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}function Rm(r){let[t,e]=r[Symbol.asyncIterator]!=null?[r[Symbol.asyncIterator](),Symbol.asyncIterator]:[r[Symbol.iterator](),Symbol.iterator],n=[];return{peek:()=>t.next(),push:o=>{n.push(o)},next:()=>n.length>0?{done:!1,value:n.shift()}:t.next(),[e](){return this}}}var an=Rm;function Um(r){return r[Symbol.asyncIterator]!=null}function Dm(r,t){let e=0;if(Um(r))return async function*(){for await(let c of r)yield t(c,e++)}();let n=an(r),{value:o,done:s}=n.next();if(s===!0)return function*(){}();let i=t(o,e++);if(typeof i.then=="function")return async function*(){yield await i;for await(let c of n)yield t(c,e++)}();let a=t;return function*(){yield i;for(let c of n)yield a(c,e++)}()}var cn=Dm;function Fm(r){return r[Symbol.asyncIterator]!=null}function $m(...r){let t=[];for(let e of r)Fm(e)||t.push(e);return t.length===r.length?function*(){for(let e of t)yield*e}():async function*(){let e=Rr({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async n=>{for await(let o of n)e.push(o)})),e.end()}catch(n){e.end(n)}}),yield*e}()}var Fr=$m;function Mm(r){return r[Symbol.asyncIterator]!=null}function Vm(r,t){return Mm(r)?async function*(){let e=0;if(!(t<1)){for await(let n of r)if(yield n,e++,e===t)return}}():function*(){let e=0;if(!(t<1)){for(let n of r)if(yield n,e++,e===t)return}}()}var is=Vm;var tt=class extends Event{type;detail;constructor(t,e){super(t),this.type=t,this.detail=e}};var za=new Float32Array([-0]),fr=new Uint8Array(za.buffer);function ef(r,t,e){za[0]=r,t[e]=fr[0],t[e+1]=fr[1],t[e+2]=fr[2],t[e+3]=fr[3]}function rf(r,t){return fr[0]=r[t],fr[1]=r[t+1],fr[2]=r[t+2],fr[3]=r[t+3],za[0]}var Ka=new Float64Array([-0]),Ut=new Uint8Array(Ka.buffer);function nf(r,t,e){Ka[0]=r,t[e]=Ut[0],t[e+1]=Ut[1],t[e+2]=Ut[2],t[e+3]=Ut[3],t[e+4]=Ut[4],t[e+5]=Ut[5],t[e+6]=Ut[6],t[e+7]=Ut[7]}function of(r,t){return Ut[0]=r[t],Ut[1]=r[t+1],Ut[2]=r[t+2],Ut[3]=r[t+3],Ut[4]=r[t+4],Ut[5]=r[t+5],Ut[6]=r[t+6],Ut[7]=r[t+7],Ka[0]}var Om=BigInt(Number.MAX_SAFE_INTEGER),Hm=BigInt(Number.MIN_SAFE_INTEGER),Qt=class r{lo;hi;constructor(t,e){this.lo=t|0,this.hi=e|0}toNumber(t=!1){if(!t&&this.hi>>>31>0){let e=~this.lo+1>>>0,n=~this.hi>>>0;return e===0&&(n=n+1>>>0),-(e+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(t=!1){if(t)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let e=~this.lo+1>>>0,n=~this.hi>>>0;return e===0&&(n=n+1>>>0),-(BigInt(e)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(t=!1){return this.toBigInt(t).toString()}zzEncode(){let t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this}zzDecode(){let t=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this}length(){let t=this.lo,e=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?e===0?t<16384?t<128?1:2:t<2097152?3:4:e<16384?e<128?5:6:e<2097152?7:8:n<128?9:10}static fromBigInt(t){if(t===0n)return $r;if(t<Om&&t>Hm)return this.fromNumber(Number(t));let e=t<0n;e&&(t=-t);let n=t>>32n,o=t-(n<<32n);return e&&(n=~n|0n,o=~o|0n,++o>sf&&(o=0n,++n>sf&&(n=0n))),new r(Number(o),Number(n))}static fromNumber(t){if(t===0)return $r;let e=t<0;e&&(t=-t);let n=t>>>0,o=(t-n)/4294967296>>>0;return e&&(o=~o>>>0,n=~n>>>0,++n>4294967295&&(n=0,++o>4294967295&&(o=0))),new r(n,o)}static from(t){return typeof t=="number"?r.fromNumber(t):typeof t=="bigint"?r.fromBigInt(t):typeof t=="string"?r.fromBigInt(BigInt(t)):t.low!=null||t.high!=null?new r(t.low>>>0,t.high>>>0):$r}},$r=new Qt(0,0);$r.toBigInt=function(){return 0n};$r.zzEncode=$r.zzDecode=function(){return this};$r.length=function(){return 1};var sf=4294967296n;function af(r){let t=0,e=0;for(let n=0;n<r.length;++n)e=r.charCodeAt(n),e<128?t+=1:e<2048?t+=2:(e&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,t+=4):t+=3;return t}function cf(r,t,e){if(e-t<1)return"";let o,s=[],i=0,a;for(;t<e;)a=r[t++],a<128?s[i++]=a:a>191&&a<224?s[i++]=(a&31)<<6|r[t++]&63:a>239&&a<365?(a=((a&7)<<18|(r[t++]&63)<<12|(r[t++]&63)<<6|r[t++]&63)-65536,s[i++]=55296+(a>>10),s[i++]=56320+(a&1023)):s[i++]=(a&15)<<12|(r[t++]&63)<<6|r[t++]&63,i>8191&&((o??(o=[])).push(String.fromCharCode.apply(String,s)),i=0);return o!=null?(i>0&&o.push(String.fromCharCode.apply(String,s.slice(0,i))),o.join("")):String.fromCharCode.apply(String,s.slice(0,i))}function qa(r,t,e){let n=e,o,s;for(let i=0;i<r.length;++i)o=r.charCodeAt(i),o<128?t[e++]=o:o<2048?(t[e++]=o>>6|192,t[e++]=o&63|128):(o&64512)===55296&&((s=r.charCodeAt(i+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++i,t[e++]=o>>18|240,t[e++]=o>>12&63|128,t[e++]=o>>6&63|128,t[e++]=o&63|128):(t[e++]=o>>12|224,t[e++]=o>>6&63|128,t[e++]=o&63|128);return e-n}function fe(r,t){return RangeError(`index out of range: ${r.pos} + ${t??1} > ${r.len}`)}function as(r,t){return(r[t-4]|r[t-3]<<8|r[t-2]<<16|r[t-1]<<24)>>>0}var ja=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(t){this.buf=t,this.pos=0,this.len=t.length}uint32(){let t=4294967295;if(t=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(t=(t|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return t;if((this.pos+=5)>this.len)throw this.pos=this.len,fe(this,10);return t}int32(){return this.uint32()|0}sint32(){let t=this.uint32();return t>>>1^-(t&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw fe(this,4);return as(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw fe(this,4);return as(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw fe(this,4);let t=rf(this.buf,this.pos);return this.pos+=4,t}double(){if(this.pos+8>this.len)throw fe(this,4);let t=of(this.buf,this.pos);return this.pos+=8,t}bytes(){let t=this.uint32(),e=this.pos,n=this.pos+t;if(n>this.len)throw fe(this,t);return this.pos+=t,e===n?new Uint8Array(0):this.buf.subarray(e,n)}string(){let t=this.bytes();return cf(t,0,t.length)}skip(t){if(typeof t=="number"){if(this.pos+t>this.len)throw fe(this,t);this.pos+=t}else do if(this.pos>=this.len)throw fe(this);while(this.buf[this.pos++]&128);return this}skipType(t){switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(t=this.uint32()&7)!==4;)this.skipType(t);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${t} at offset ${this.pos}`)}return this}readLongVarint(){let t=new Qt(0,0),e=0;if(this.len-this.pos>4){for(;e<4;++e)if(t.lo=(t.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return t;if(t.lo=(t.lo|(this.buf[this.pos]&127)<<28)>>>0,t.hi=(t.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return t;e=0}else{for(;e<3;++e){if(this.pos>=this.len)throw fe(this);if(t.lo=(t.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return t}return t.lo=(t.lo|(this.buf[this.pos++]&127)<<e*7)>>>0,t}if(this.len-this.pos>4){for(;e<5;++e)if(t.hi=(t.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return t}else for(;e<5;++e){if(this.pos>=this.len)throw fe(this);if(t.hi=(t.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return t}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw fe(this,8);let t=as(this.buf,this.pos+=4),e=as(this.buf,this.pos+=4);return new Qt(t,e)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let t=Ha(this.buf,this.pos);return this.pos+=qt(t),t}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}};function Ga(r){return new ja(r instanceof Uint8Array?r:r.subarray())}function un(r,t,e){let n=Ga(r);return t.decode(n,void 0,e)}var Qa={};gt(Qa,{base10:()=>Wm});var Qv=new Uint8Array(0);function lf(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}function he(r){if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return r;if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return new Uint8Array(r.buffer,r.byteOffset,r.byteLength);throw new Error("Unknown type, must be binary type")}function ff(r){return new TextEncoder().encode(r)}function hf(r){return new TextDecoder().decode(r)}function zm(r,t){if(r.length>=255)throw new TypeError("Alphabet too long");for(var e=new Uint8Array(256),n=0;n<e.length;n++)e[n]=255;for(var o=0;o<r.length;o++){var s=r.charAt(o),i=s.charCodeAt(0);if(e[i]!==255)throw new TypeError(s+" is ambiguous");e[i]=o}var a=r.length,c=r.charAt(0),u=Math.log(a)/Math.log(256),l=Math.log(256)/Math.log(a);function f(w){if(w instanceof Uint8Array||(ArrayBuffer.isView(w)?w=new Uint8Array(w.buffer,w.byteOffset,w.byteLength):Array.isArray(w)&&(w=Uint8Array.from(w))),!(w instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(w.length===0)return"";for(var m=0,g=0,x=0,b=w.length;x!==b&&w[x]===0;)x++,m++;for(var y=(b-x)*l+1>>>0,S=new Uint8Array(y);x!==b;){for(var _=w[x],T=0,E=y-1;(_!==0||T<g)&&E!==-1;E--,T++)_+=256*S[E]>>>0,S[E]=_%a>>>0,_=_/a>>>0;if(_!==0)throw new Error("Non-zero carry");g=T,x++}for(var v=y-g;v!==y&&S[v]===0;)v++;for(var k=c.repeat(m);v<y;++v)k+=r.charAt(S[v]);return k}function d(w){if(typeof w!="string")throw new TypeError("Expected String");if(w.length===0)return new Uint8Array;var m=0;if(w[m]!==" "){for(var g=0,x=0;w[m]===c;)g++,m++;for(var b=(w.length-m)*u+1>>>0,y=new Uint8Array(b);w[m];){var S=e[w.charCodeAt(m)];if(S===255)return;for(var _=0,T=b-1;(S!==0||_<x)&&T!==-1;T--,_++)S+=a*y[T]>>>0,y[T]=S%256>>>0,S=S/256>>>0;if(S!==0)throw new Error("Non-zero carry");x=_,m++}if(w[m]!==" "){for(var E=b-x;E!==b&&y[E]===0;)E++;for(var v=new Uint8Array(g+(b-E)),k=g;E!==b;)v[k++]=y[E++];return v}}}function h(w){var m=d(w);if(m)return m;throw new Error(`Non-${t} character`)}return{encode:f,decodeUnsafe:d,decode:h}}var Km=zm,qm=Km,df=qm;var Za=class{name;prefix;baseEncode;constructor(t,e,n){this.name=t,this.prefix=e,this.baseEncode=n}encode(t){if(t instanceof Uint8Array)return`${this.prefix}${this.baseEncode(t)}`;throw Error("Unknown type, must be binary type")}},Ya=class{name;prefix;baseDecode;prefixCodePoint;constructor(t,e,n){this.name=t,this.prefix=e;let o=e.codePointAt(0);if(o===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=o,this.baseDecode=n}decode(t){if(typeof t=="string"){if(t.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(t)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(t.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(t){return pf(this,t)}},Ja=class{decoders;constructor(t){this.decoders=t}or(t){return pf(this,t)}decode(t){let e=t[0],n=this.decoders[e];if(n!=null)return n.decode(t);throw RangeError(`Unable to decode multibase string ${JSON.stringify(t)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function pf(r,t){return new Ja({...r.decoders??{[r.prefix]:r},...t.decoders??{[t.prefix]:t}})}var Xa=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(t,e,n,o){this.name=t,this.prefix=e,this.baseEncode=n,this.baseDecode=o,this.encoder=new Za(t,e,n),this.decoder=new Ya(t,e,o)}encode(t){return this.encoder.encode(t)}decode(t){return this.decoder.decode(t)}};function ln({name:r,prefix:t,encode:e,decode:n}){return new Xa(r,t,e,n)}function hr({name:r,prefix:t,alphabet:e}){let{encode:n,decode:o}=df(e,r);return ln({prefix:t,name:r,encode:n,decode:s=>he(o(s))})}function jm(r,t,e,n){let o={};for(let l=0;l<t.length;++l)o[t[l]]=l;let s=r.length;for(;r[s-1]==="=";)--s;let i=new Uint8Array(s*e/8|0),a=0,c=0,u=0;for(let l=0;l<s;++l){let f=o[r[l]];if(f===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<e|f,a+=e,a>=8&&(a-=8,i[u++]=255&c>>a)}if(a>=e||255&c<<8-a)throw new SyntaxError("Unexpected end of data");return i}function Gm(r,t,e){let n=t[t.length-1]==="=",o=(1<<e)-1,s="",i=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],i+=8;i>e;)i-=e,s+=t[o&a>>i];if(i!==0&&(s+=t[o&a<<e-i]),n)for(;s.length*e&7;)s+="=";return s}function pt({name:r,prefix:t,bitsPerChar:e,alphabet:n}){return ln({prefix:t,name:r,encode(o){return Gm(o,n,e)},decode(o){return jm(o,n,e,r)}})}var Wm=hr({prefix:"9",name:"base10",alphabet:"0123456789"});var tc={};gt(tc,{base16:()=>Zm,base16upper:()=>Ym});var Zm=pt({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Ym=pt({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var ec={};gt(ec,{base2:()=>Jm});var Jm=pt({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var rc={};gt(rc,{base256emoji:()=>rg});var mf=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),Xm=mf.reduce((r,t,e)=>(r[e]=t,r),[]),Qm=mf.reduce((r,t,e)=>{let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);return r[n]=e,r},[]);function tg(r){return r.reduce((t,e)=>(t+=Xm[e],t),"")}function eg(r){let t=[];for(let e of r){let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);let o=Qm[n];if(o==null)throw new Error(`Non-base256emoji character: ${e}`);t.push(o)}return new Uint8Array(t)}var rg=ln({prefix:"\u{1F680}",name:"base256emoji",encode:tg,decode:eg});var nc={};gt(nc,{base32:()=>Tt,base32hex:()=>ig,base32hexpad:()=>cg,base32hexpadupper:()=>ug,base32hexupper:()=>ag,base32pad:()=>og,base32padupper:()=>sg,base32upper:()=>ng,base32z:()=>lg});var Tt=pt({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),ng=pt({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),og=pt({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),sg=pt({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),ig=pt({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),ag=pt({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),cg=pt({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),ug=pt({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),lg=pt({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var oc={};gt(oc,{base36:()=>_e,base36upper:()=>fg});var _e=hr({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),fg=hr({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var sc={};gt(sc,{base58btc:()=>it,base58flickr:()=>hg});var it=hr({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),hg=hr({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var ac={};gt(ac,{base64:()=>Te,base64pad:()=>dg,base64url:()=>ic,base64urlpad:()=>pg});var Te=pt({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),dg=pt({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),ic=pt({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),pg=pt({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var cc={};gt(cc,{base8:()=>mg});var mg=pt({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var uc={};gt(uc,{identity:()=>gg});var gg=ln({prefix:"\0",name:"identity",encode:r=>hf(r),decode:r=>ff(r)});var cs={};gt(cs,{code:()=>lc,decode:()=>vg,encode:()=>bg,name:()=>xg});var yg=new TextEncoder,wg=new TextDecoder,xg="json",lc=512;function bg(r){return yg.encode(JSON.stringify(r))}function vg(r){return JSON.parse(wg.decode(r))}var Xn={};gt(Xn,{code:()=>Jn,decode:()=>Ag,encode:()=>Sg,name:()=>Eg});var Eg="raw",Jn=85;function Sg(r){return he(r)}function Ag(r){return he(r)}var hc={};gt(hc,{identity:()=>jt});var Bg=wf,gf=128,kg=127,Ig=~kg,_g=Math.pow(2,31);function wf(r,t,e){t=t||[],e=e||0;for(var n=e;r>=_g;)t[e++]=r&255|gf,r/=128;for(;r&Ig;)t[e++]=r&255|gf,r>>>=7;return t[e]=r|0,wf.bytes=e-n+1,t}var Tg=fc,Cg=128,yf=127;function fc(r,n){var e=0,n=n||0,o=0,s=n,i,a=r.length;do{if(s>=a)throw fc.bytes=0,new RangeError("Could not decode varint");i=r[s++],e+=o<28?(i&yf)<<o:(i&yf)*Math.pow(2,o),o+=7}while(i>=Cg);return fc.bytes=s-n,e}var Ng=Math.pow(2,7),Pg=Math.pow(2,14),Lg=Math.pow(2,21),Rg=Math.pow(2,28),Ug=Math.pow(2,35),Dg=Math.pow(2,42),Fg=Math.pow(2,49),$g=Math.pow(2,56),Mg=Math.pow(2,63),Vg=function(r){return r<Ng?1:r<Pg?2:r<Lg?3:r<Rg?4:r<Ug?5:r<Dg?6:r<Fg?7:r<$g?8:r<Mg?9:10},Og={encode:Bg,decode:Tg,encodingLength:Vg},Hg=Og,Qn=Hg;function to(r,t=0){return[Qn.decode(r,t),Qn.decode.bytes]}function fn(r,t,e=0){return Qn.encode(r,t,e),t}function hn(r){return Qn.encodingLength(r)}function de(r,t){let e=t.byteLength,n=hn(r),o=n+hn(e),s=new Uint8Array(o+e);return fn(r,s,0),fn(e,s,n),s.set(t,o),new dn(r,e,t,s)}function pe(r){let t=he(r),[e,n]=to(t),[o,s]=to(t.subarray(n)),i=t.subarray(n+s);if(i.byteLength!==o)throw new Error("Incorrect length");return new dn(e,o,i,t)}function xf(r,t){if(r===t)return!0;{let e=t;return r.code===e.code&&r.size===e.size&&e.bytes instanceof Uint8Array&&lf(r.bytes,e.bytes)}}var dn=class{code;size;digest;bytes;constructor(t,e,n,o){this.code=t,this.size=e,this.digest=n,this.bytes=o}};var bf=0,zg="identity",vf=he;function Kg(r){return de(bf,vf(r))}var jt={code:bf,name:zg,encode:vf,digest:Kg};var mc={};gt(mc,{sha256:()=>dr,sha512:()=>ls});function pc({name:r,code:t,encode:e}){return new dc(r,t,e)}var dc=class{name;code;encode;constructor(t,e,n){this.name=t,this.code=e,this.encode=n}digest(t){if(t instanceof Uint8Array){let e=this.encode(t);return e instanceof Uint8Array?de(this.code,e):e.then(n=>de(this.code,n))}else throw Error("Unknown type, must be binary type")}};function Sf(r){return async t=>new Uint8Array(await crypto.subtle.digest(r,t))}var dr=pc({name:"sha2-256",code:18,encode:Sf("SHA-256")}),ls=pc({name:"sha2-512",code:19,encode:Sf("SHA-512")});function Af(r,t){let{bytes:e,version:n}=r;switch(n){case 0:return jg(e,gc(r),t??it.encoder);default:return Gg(e,gc(r),t??Tt.encoder)}}var Bf=new WeakMap;function gc(r){let t=Bf.get(r);if(t==null){let e=new Map;return Bf.set(r,e),e}return t}var O=class r{code;version;multihash;bytes;"/";constructor(t,e,n,o){this.code=e,this.version=t,this.multihash=n,this.bytes=o,this["/"]=o}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:t,multihash:e}=this;if(t!==eo)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(e.code!==Wg)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(e)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:t,digest:e}=this.multihash,n=de(t,e);return r.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(t){return r.equals(this,t)}static equals(t,e){let n=e;return n!=null&&t.code===n.code&&t.version===n.version&&xf(t.multihash,n.multihash)}toString(t){return Af(this,t)}toJSON(){return{"/":Af(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(t){if(t==null)return null;let e=t;if(e instanceof r)return e;if(e["/"]!=null&&e["/"]===e.bytes||e.asCID===e){let{version:n,code:o,multihash:s,bytes:i}=e;return new r(n,o,s,i??kf(n,o,s.bytes))}else if(e[Zg]===!0){let{version:n,multihash:o,code:s}=e,i=pe(o);return r.create(n,s,i)}else return null}static create(t,e,n){if(typeof e!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(t){case 0:{if(e!==eo)throw new Error(`Version 0 CID must use dag-pb (code: ${eo}) block encoding`);return new r(t,e,n,n.bytes)}case 1:{let o=kf(t,e,n.bytes);return new r(t,e,n,o)}default:throw new Error("Invalid version")}}static createV0(t){return r.create(0,eo,t)}static createV1(t,e){return r.create(1,t,e)}static decode(t){let[e,n]=r.decodeFirst(t);if(n.length!==0)throw new Error("Incorrect length");return e}static decodeFirst(t){let e=r.inspectBytes(t),n=e.size-e.multihashSize,o=he(t.subarray(n,n+e.multihashSize));if(o.byteLength!==e.multihashSize)throw new Error("Incorrect length");let s=o.subarray(e.multihashSize-e.digestSize),i=new dn(e.multihashCode,e.digestSize,s,o);return[e.version===0?r.createV0(i):r.createV1(e.codec,i),t.subarray(e.size)]}static inspectBytes(t){let e=0,n=()=>{let[f,d]=to(t.subarray(e));return e+=d,f},o=n(),s=eo;if(o===18?(o=0,e=0):s=n(),o!==0&&o!==1)throw new RangeError(`Invalid CID version ${o}`);let i=e,a=n(),c=n(),u=e+c,l=u-i;return{version:o,codec:s,multihashCode:a,digestSize:c,multihashSize:l,size:u}}static parse(t,e){let[n,o]=qg(t,e),s=r.decode(o);if(s.version===0&&t[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return gc(s).set(n,t),s}};function qg(r,t){switch(r[0]){case"Q":{let e=t??it;return[it.prefix,e.decode(`${it.prefix}${r}`)]}case it.prefix:{let e=t??it;return[it.prefix,e.decode(r)]}case Tt.prefix:{let e=t??Tt;return[Tt.prefix,e.decode(r)]}case _e.prefix:{let e=t??_e;return[_e.prefix,e.decode(r)]}default:{if(t==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[r[0],t.decode(r)]}}}function jg(r,t,e){let{prefix:n}=e;if(n!==it.prefix)throw Error(`Cannot string encode V0 in ${e.name} encoding`);let o=t.get(n);if(o==null){let s=e.encode(r).slice(1);return t.set(n,s),s}else return o}function Gg(r,t,e){let{prefix:n}=e,o=t.get(n);if(o==null){let s=e.encode(r);return t.set(n,s),s}else return o}var eo=112,Wg=18;function kf(r,t,e){let n=hn(r),o=n+hn(t),s=new Uint8Array(o+e.byteLength);return fn(r,s,0),fn(t,s,n),s.set(e,o),s}var Zg=Symbol.for("@ipld/js-cid/CID");var ro={...uc,...ec,...cc,...Qa,...tc,...nc,...oc,...sc,...ac,...rc},D2={...mc,...hc};function _f(r,t,e,n){return{name:r,prefix:t,encoder:{name:r,prefix:t,encode:e},decoder:{decode:n}}}var If=_f("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),yc=_f("ascii","a",r=>{let t="a";for(let e=0;e<r.length;e++)t+=String.fromCharCode(r[e]);return t},r=>{r=r.substring(1);let t=le(r.length);for(let e=0;e<r.length;e++)t[e]=r.charCodeAt(e);return t}),Yg={utf8:If,"utf-8":If,hex:ro.base16,latin1:yc,ascii:yc,binary:yc,...ro},fs=Yg;function z(r,t="utf8"){let e=fs[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return e.decoder.decode(`${e.prefix}${r}`)}function wc(r){let t=r??8192,e=t>>>1,n,o=t;return function(i){if(i<1||i>e)return le(i);o+i>t&&(n=le(t),o=0);let a=n.subarray(o,o+=i);return o&7&&(o=(o|7)+1),a}}var Mr=class{fn;len;next;val;constructor(t,e,n){this.fn=t,this.len=e,this.next=void 0,this.val=n}};function xc(){}var vc=class{head;tail;len;next;constructor(t){this.head=t.head,this.tail=t.tail,this.len=t.len,this.next=t.states}},Jg=wc();function Xg(r){return globalThis.Buffer!=null?le(r):Jg(r)}var oo=class{len;head;tail;states;constructor(){this.len=0,this.head=new Mr(xc,0,0),this.tail=this.head,this.states=null}_push(t,e,n){return this.tail=this.tail.next=new Mr(t,e,n),this.len+=e,this}uint32(t){return this.len+=(this.tail=this.tail.next=new Ec((t=t>>>0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this}int32(t){return t<0?this._push(hs,10,Qt.fromNumber(t)):this.uint32(t)}sint32(t){return this.uint32((t<<1^t>>31)>>>0)}uint64(t){let e=Qt.fromBigInt(t);return this._push(hs,e.length(),e)}uint64Number(t){return this._push(Oa,qt(t),t)}uint64String(t){return this.uint64(BigInt(t))}int64(t){return this.uint64(t)}int64Number(t){return this.uint64Number(t)}int64String(t){return this.uint64String(t)}sint64(t){let e=Qt.fromBigInt(t).zzEncode();return this._push(hs,e.length(),e)}sint64Number(t){let e=Qt.fromNumber(t).zzEncode();return this._push(hs,e.length(),e)}sint64String(t){return this.sint64(BigInt(t))}bool(t){return this._push(bc,1,t?1:0)}fixed32(t){return this._push(no,4,t>>>0)}sfixed32(t){return this.fixed32(t)}fixed64(t){let e=Qt.fromBigInt(t);return this._push(no,4,e.lo)._push(no,4,e.hi)}fixed64Number(t){let e=Qt.fromNumber(t);return this._push(no,4,e.lo)._push(no,4,e.hi)}fixed64String(t){return this.fixed64(BigInt(t))}sfixed64(t){return this.fixed64(t)}sfixed64Number(t){return this.fixed64Number(t)}sfixed64String(t){return this.fixed64String(t)}float(t){return this._push(ef,4,t)}double(t){return this._push(nf,8,t)}bytes(t){let e=t.length>>>0;return e===0?this._push(bc,1,0):this.uint32(e)._push(ty,e,t)}string(t){let e=af(t);return e!==0?this.uint32(e)._push(qa,e,t):this._push(bc,1,0)}fork(){return this.states=new vc(this),this.head=this.tail=new Mr(xc,0,0),this.len=0,this}reset(){return this.states!=null?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new Mr(xc,0,0),this.len=0),this}ldelim(){let t=this.head,e=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=t.next,this.tail=e,this.len+=n),this}finish(){let t=this.head.next,e=Xg(this.len),n=0;for(;t!=null;)t.fn(t.val,e,n),n+=t.len,t=t.next;return e}};function bc(r,t,e){t[e]=r&255}function Qg(r,t,e){for(;r>127;)t[e++]=r&127|128,r>>>=7;t[e]=r}var Ec=class extends Mr{next;constructor(t,e){super(Qg,t,e),this.next=void 0}};function hs(r,t,e){for(;r.hi!==0;)t[e++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)t[e++]=r.lo&127|128,r.lo=r.lo>>>7;t[e++]=r.lo}function no(r,t,e){t[e]=r&255,t[e+1]=r>>>8&255,t[e+2]=r>>>16&255,t[e+3]=r>>>24}function ty(r,t,e){t.set(r,e)}globalThis.Buffer!=null&&(oo.prototype.bytes=function(r){let t=r.length>>>0;return this.uint32(t),t>0&&this._push(ey,t,r),this},oo.prototype.string=function(r){let t=globalThis.Buffer.byteLength(r);return this.uint32(t),t>0&&this._push(ry,t,r),this});function ey(r,t,e){t.set(r,e)}function ry(r,t,e){r.length<40?qa(r,t,e):t.utf8Write!=null?t.utf8Write(r,e):t.set(z(r),e)}function Sc(){return new oo}function pn(r,t){let e=Sc();return t.encode(r,e,{lengthDelimited:!1}),e.finish()}var mn;(function(r){r[r.VARINT=0]="VARINT",r[r.BIT64=1]="BIT64",r[r.LENGTH_DELIMITED=2]="LENGTH_DELIMITED",r[r.START_GROUP=3]="START_GROUP",r[r.END_GROUP=4]="END_GROUP",r[r.BIT32=5]="BIT32"})(mn||(mn={}));function ds(r,t,e,n){return{name:r,type:t,encode:e,decode:n}}function so(r){function t(o){if(r[o.toString()]==null)throw new Error("Invalid enum value");return r[o]}let e=function(s,i){let a=t(s);i.int32(a)},n=function(s){let i=s.int32();return t(i)};return ds("enum",mn.VARINT,e,n)}function gn(r,t){return ds("message",mn.LENGTH_DELIMITED,r,t)}function Tf(r){if(!Number.isSafeInteger(r)||r<0)throw new Error(`positive integer expected, not ${r}`)}function ny(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function yn(r,...t){if(!ny(r))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(r.length))throw new Error(`Uint8Array expected of length ${t}, not of length=${r.length}`)}function Cf(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");Tf(r.outputLen),Tf(r.blockLen)}function wn(r,t=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(t&&r.finished)throw new Error("Hash#digest() has already been called")}function Nf(r,t){yn(r);let e=t.outputLen;if(r.length<e)throw new Error(`digestInto() expects output buffer of length at least ${e}`)}var Vr=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;var ps=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),me=(r,t)=>r<<32-t|r>>>t;var gE=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;function Pf(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}function io(r){return typeof r=="string"&&(r=Pf(r)),yn(r),r}function Ac(...r){let t=0;for(let n=0;n<r.length;n++){let o=r[n];yn(o),t+=o.length}let e=new Uint8Array(t);for(let n=0,o=0;n<r.length;n++){let s=r[n];e.set(s,o),o+=s.length}return e}var xn=class{clone(){return this._cloneInto()}},yE={}.toString;function ms(r){let t=n=>r().update(io(n)).digest(),e=r();return t.outputLen=e.outputLen,t.blockLen=e.blockLen,t.create=()=>r(),t}function gs(r=32){if(Vr&&typeof Vr.getRandomValues=="function")return Vr.getRandomValues(new Uint8Array(r));if(Vr&&typeof Vr.randomBytes=="function")return Vr.randomBytes(r);throw new Error("crypto.getRandomValues must be defined")}function oy(r,t,e,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(t,e,n);let o=BigInt(32),s=BigInt(4294967295),i=Number(e>>o&s),a=Number(e&s),c=n?4:0,u=n?0:4;r.setUint32(t+c,i,n),r.setUint32(t+u,a,n)}var Lf=(r,t,e)=>r&t^~r&e,Rf=(r,t,e)=>r&t^r&e^t&e,bn=class extends xn{constructor(t,e,n,o){super(),this.blockLen=t,this.outputLen=e,this.padOffset=n,this.isLE=o,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(t),this.view=ps(this.buffer)}update(t){wn(this);let{view:e,buffer:n,blockLen:o}=this;t=io(t);let s=t.length;for(let i=0;i<s;){let a=Math.min(o-this.pos,s-i);if(a===o){let c=ps(t);for(;o<=s-i;i+=o)this.process(c,i);continue}n.set(t.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===o&&(this.process(e,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){wn(this),Nf(t,this),this.finished=!0;let{buffer:e,view:n,blockLen:o,isLE:s}=this,{pos:i}=this;e[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>o-i&&(this.process(n,0),i=0);for(let f=i;f<o;f++)e[f]=0;oy(n,o-8,BigInt(this.length*8),s),this.process(n,0);let a=ps(t),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let u=c/4,l=this.get();if(u>l.length)throw new Error("_sha2: outputLen bigger than state");for(let f=0;f<u;f++)a.setUint32(4*f,l[f],s)}digest(){let{buffer:t,outputLen:e}=this;this.digestInto(t);let n=t.slice(0,e);return this.destroy(),n}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());let{blockLen:e,buffer:n,length:o,finished:s,destroyed:i,pos:a}=this;return t.length=o,t.pos=a,t.finished=s,t.destroyed=i,o%e&&t.buffer.set(n),t}};var ys=BigInt(4294967295),Bc=BigInt(32);function Uf(r,t=!1){return t?{h:Number(r&ys),l:Number(r>>Bc&ys)}:{h:Number(r>>Bc&ys)|0,l:Number(r&ys)|0}}function sy(r,t=!1){let e=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let o=0;o<r.length;o++){let{h:s,l:i}=Uf(r[o],t);[e[o],n[o]]=[s,i]}return[e,n]}var iy=(r,t)=>BigInt(r>>>0)<<Bc|BigInt(t>>>0),ay=(r,t,e)=>r>>>e,cy=(r,t,e)=>r<<32-e|t>>>e,uy=(r,t,e)=>r>>>e|t<<32-e,ly=(r,t,e)=>r<<32-e|t>>>e,fy=(r,t,e)=>r<<64-e|t>>>e-32,hy=(r,t,e)=>r>>>e-32|t<<64-e,dy=(r,t)=>t,py=(r,t)=>r,my=(r,t,e)=>r<<e|t>>>32-e,gy=(r,t,e)=>t<<e|r>>>32-e,yy=(r,t,e)=>t<<e-32|r>>>64-e,wy=(r,t,e)=>r<<e-32|t>>>64-e;function xy(r,t,e,n){let o=(t>>>0)+(n>>>0);return{h:r+e+(o/2**32|0)|0,l:o|0}}var by=(r,t,e)=>(r>>>0)+(t>>>0)+(e>>>0),vy=(r,t,e,n)=>t+e+n+(r/2**32|0)|0,Ey=(r,t,e,n)=>(r>>>0)+(t>>>0)+(e>>>0)+(n>>>0),Sy=(r,t,e,n,o)=>t+e+n+o+(r/2**32|0)|0,Ay=(r,t,e,n,o)=>(r>>>0)+(t>>>0)+(e>>>0)+(n>>>0)+(o>>>0),By=(r,t,e,n,o,s)=>t+e+n+o+s+(r/2**32|0)|0;var ky={fromBig:Uf,split:sy,toBig:iy,shrSH:ay,shrSL:cy,rotrSH:uy,rotrSL:ly,rotrBH:fy,rotrBL:hy,rotr32H:dy,rotr32L:py,rotlSH:my,rotlSL:gy,rotlBH:yy,rotlBL:wy,add:xy,add3L:by,add3H:vy,add4L:Ey,add4H:Sy,add5H:By,add5L:Ay},q=ky;var[Iy,_y]=q.split(["0x428a2f98d728ae22","0x7137449123ef65cd","0xb5c0fbcfec4d3b2f","0xe9b5dba58189dbbc","0x3956c25bf348b538","0x59f111f1b605d019","0x923f82a4af194f9b","0xab1c5ed5da6d8118","0xd807aa98a3030242","0x12835b0145706fbe","0x243185be4ee4b28c","0x550c7dc3d5ffb4e2","0x72be5d74f27b896f","0x80deb1fe3b1696b1","0x9bdc06a725c71235","0xc19bf174cf692694","0xe49b69c19ef14ad2","0xefbe4786384f25e3","0x0fc19dc68b8cd5b5","0x240ca1cc77ac9c65","0x2de92c6f592b0275","0x4a7484aa6ea6e483","0x5cb0a9dcbd41fbd4","0x76f988da831153b5","0x983e5152ee66dfab","0xa831c66d2db43210","0xb00327c898fb213f","0xbf597fc7beef0ee4","0xc6e00bf33da88fc2","0xd5a79147930aa725","0x06ca6351e003826f","0x142929670a0e6e70","0x27b70a8546d22ffc","0x2e1b21385c26c926","0x4d2c6dfc5ac42aed","0x53380d139d95b3df","0x650a73548baf63de","0x766a0abb3c77b2a8","0x81c2c92e47edaee6","0x92722c851482353b","0xa2bfe8a14cf10364","0xa81a664bbc423001","0xc24b8b70d0f89791","0xc76c51a30654be30","0xd192e819d6ef5218","0xd69906245565a910","0xf40e35855771202a","0x106aa07032bbd1b8","0x19a4c116b8d2d0c8","0x1e376c085141ab53","0x2748774cdf8eeb99","0x34b0bcb5e19b48a8","0x391c0cb3c5c95a63","0x4ed8aa4ae3418acb","0x5b9cca4f7763e373","0x682e6ff3d6b2b8a3","0x748f82ee5defb2fc","0x78a5636f43172f60","0x84c87814a1f0ab72","0x8cc702081a6439ec","0x90befffa23631e28","0xa4506cebde82bde9","0xbef9a3f7b2c67915","0xc67178f2e372532b","0xca273eceea26619c","0xd186b8c721c0c207","0xeada7dd6cde0eb1e","0xf57d4f7fee6ed178","0x06f067aa72176fba","0x0a637dc5a2c898a6","0x113f9804bef90dae","0x1b710b35131c471b","0x28db77f523047d84","0x32caab7b40c72493","0x3c9ebe0a15c9bebc","0x431d67c49c100d4c","0x4cc5d4becb3e42b6","0x597f299cfc657e2a","0x5fcb6fab3ad6faec","0x6c44198c4a475817"].map(r=>BigInt(r))),pr=new Uint32Array(80),mr=new Uint32Array(80),kc=class extends bn{constructor(){super(128,64,16,!1),this.Ah=1779033703,this.Al=-205731576,this.Bh=-1150833019,this.Bl=-2067093701,this.Ch=1013904242,this.Cl=-23791573,this.Dh=-1521486534,this.Dl=1595750129,this.Eh=1359893119,this.El=-1377402159,this.Fh=-1694144372,this.Fl=725511199,this.Gh=528734635,this.Gl=-79577749,this.Hh=1541459225,this.Hl=327033209}get(){let{Ah:t,Al:e,Bh:n,Bl:o,Ch:s,Cl:i,Dh:a,Dl:c,Eh:u,El:l,Fh:f,Fl:d,Gh:h,Gl:w,Hh:m,Hl:g}=this;return[t,e,n,o,s,i,a,c,u,l,f,d,h,w,m,g]}set(t,e,n,o,s,i,a,c,u,l,f,d,h,w,m,g){this.Ah=t|0,this.Al=e|0,this.Bh=n|0,this.Bl=o|0,this.Ch=s|0,this.Cl=i|0,this.Dh=a|0,this.Dl=c|0,this.Eh=u|0,this.El=l|0,this.Fh=f|0,this.Fl=d|0,this.Gh=h|0,this.Gl=w|0,this.Hh=m|0,this.Hl=g|0}process(t,e){for(let y=0;y<16;y++,e+=4)pr[y]=t.getUint32(e),mr[y]=t.getUint32(e+=4);for(let y=16;y<80;y++){let S=pr[y-15]|0,_=mr[y-15]|0,T=q.rotrSH(S,_,1)^q.rotrSH(S,_,8)^q.shrSH(S,_,7),E=q.rotrSL(S,_,1)^q.rotrSL(S,_,8)^q.shrSL(S,_,7),v=pr[y-2]|0,k=mr[y-2]|0,V=q.rotrSH(v,k,19)^q.rotrBH(v,k,61)^q.shrSH(v,k,6),D=q.rotrSL(v,k,19)^q.rotrBL(v,k,61)^q.shrSL(v,k,6),U=q.add4L(E,D,mr[y-7],mr[y-16]),L=q.add4H(U,T,V,pr[y-7],pr[y-16]);pr[y]=L|0,mr[y]=U|0}let{Ah:n,Al:o,Bh:s,Bl:i,Ch:a,Cl:c,Dh:u,Dl:l,Eh:f,El:d,Fh:h,Fl:w,Gh:m,Gl:g,Hh:x,Hl:b}=this;for(let y=0;y<80;y++){let S=q.rotrSH(f,d,14)^q.rotrSH(f,d,18)^q.rotrBH(f,d,41),_=q.rotrSL(f,d,14)^q.rotrSL(f,d,18)^q.rotrBL(f,d,41),T=f&h^~f&m,E=d&w^~d&g,v=q.add5L(b,_,E,_y[y],mr[y]),k=q.add5H(v,x,S,T,Iy[y],pr[y]),V=v|0,D=q.rotrSH(n,o,28)^q.rotrBH(n,o,34)^q.rotrBH(n,o,39),U=q.rotrSL(n,o,28)^q.rotrBL(n,o,34)^q.rotrBL(n,o,39),L=n&s^n&a^s&a,N=o&i^o&c^i&c;x=m|0,b=g|0,m=h|0,g=w|0,h=f|0,w=d|0,{h:f,l:d}=q.add(u|0,l|0,k|0,V|0),u=a|0,l=c|0,a=s|0,c=i|0,s=n|0,i=o|0;let P=q.add3L(V,U,N);n=q.add3H(P,k,D,L),o=P|0}({h:n,l:o}=q.add(this.Ah|0,this.Al|0,n|0,o|0)),{h:s,l:i}=q.add(this.Bh|0,this.Bl|0,s|0,i|0),{h:a,l:c}=q.add(this.Ch|0,this.Cl|0,a|0,c|0),{h:u,l}=q.add(this.Dh|0,this.Dl|0,u|0,l|0),{h:f,l:d}=q.add(this.Eh|0,this.El|0,f|0,d|0),{h,l:w}=q.add(this.Fh|0,this.Fl|0,h|0,w|0),{h:m,l:g}=q.add(this.Gh|0,this.Gl|0,m|0,g|0),{h:x,l:b}=q.add(this.Hh|0,this.Hl|0,x|0,b|0),this.set(n,o,s,i,a,c,u,l,f,d,h,w,m,g,x,b)}roundClean(){pr.fill(0),mr.fill(0)}destroy(){this.buffer.fill(0),this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)}};var Df=ms(()=>new kc);var xs={};gt(xs,{aInRange:()=>Gt,abool:()=>ge,abytes:()=>vn,bitGet:()=>Ry,bitLen:()=>Nc,bitMask:()=>co,bitSet:()=>Uy,bytesToHex:()=>ze,bytesToNumberBE:()=>Ke,bytesToNumberLE:()=>yr,concatBytes:()=>qe,createHmacDrbg:()=>Pc,ensureBytes:()=>mt,equalBytes:()=>Py,hexToBytes:()=>Hr,hexToNumber:()=>Cc,inRange:()=>ao,isBytes:()=>gr,memoized:()=>Kr,notImplemented:()=>Fy,numberToBytesBE:()=>wr,numberToBytesLE:()=>zr,numberToHexUnpadded:()=>Or,numberToVarBytesBE:()=>Ny,utf8ToBytes:()=>Ly,validateObject:()=>Ce});var Tc=BigInt(0),ws=BigInt(1),Ty=BigInt(2);function gr(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function vn(r){if(!gr(r))throw new Error("Uint8Array expected")}function ge(r,t){if(typeof t!="boolean")throw new Error(`${r} must be valid boolean, got "${t}".`)}var Cy=Array.from({length:256},(r,t)=>t.toString(16).padStart(2,"0"));function ze(r){vn(r);let t="";for(let e=0;e<r.length;e++)t+=Cy[r[e]];return t}function Or(r){let t=r.toString(16);return t.length&1?`0${t}`:t}function Cc(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return BigInt(r===""?"0":`0x${r}`)}var He={_0:48,_9:57,_A:65,_F:70,_a:97,_f:102};function Ff(r){if(r>=He._0&&r<=He._9)return r-He._0;if(r>=He._A&&r<=He._F)return r-(He._A-10);if(r>=He._a&&r<=He._f)return r-(He._a-10)}function Hr(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let t=r.length,e=t/2;if(t%2)throw new Error("padded hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(e);for(let o=0,s=0;o<e;o++,s+=2){let i=Ff(r.charCodeAt(s)),a=Ff(r.charCodeAt(s+1));if(i===void 0||a===void 0){let c=r[s]+r[s+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+s)}n[o]=i*16+a}return n}function Ke(r){return Cc(ze(r))}function yr(r){return vn(r),Cc(ze(Uint8Array.from(r).reverse()))}function wr(r,t){return Hr(r.toString(16).padStart(t*2,"0"))}function zr(r,t){return wr(r,t).reverse()}function Ny(r){return Hr(Or(r))}function mt(r,t,e){let n;if(typeof t=="string")try{n=Hr(t)}catch(s){throw new Error(`${r} must be valid hex string, got "${t}". Cause: ${s}`)}else if(gr(t))n=Uint8Array.from(t);else throw new Error(`${r} must be hex string or Uint8Array`);let o=n.length;if(typeof e=="number"&&o!==e)throw new Error(`${r} expected ${e} bytes, got ${o}`);return n}function qe(...r){let t=0;for(let n=0;n<r.length;n++){let o=r[n];vn(o),t+=o.length}let e=new Uint8Array(t);for(let n=0,o=0;n<r.length;n++){let s=r[n];e.set(s,o),o+=s.length}return e}function Py(r,t){if(r.length!==t.length)return!1;let e=0;for(let n=0;n<r.length;n++)e|=r[n]^t[n];return e===0}function Ly(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}var Ic=r=>typeof r=="bigint"&&Tc<=r;function ao(r,t,e){return Ic(r)&&Ic(t)&&Ic(e)&&t<=r&&r<e}function Gt(r,t,e,n){if(!ao(t,e,n))throw new Error(`expected valid ${r}: ${e} <= n < ${n}, got ${typeof t} ${t}`)}function Nc(r){let t;for(t=0;r>Tc;r>>=ws,t+=1);return t}function Ry(r,t){return r>>BigInt(t)&ws}function Uy(r,t,e){return r|(e?ws:Tc)<<BigInt(t)}var co=r=>(Ty<<BigInt(r-1))-ws,_c=r=>new Uint8Array(r),$f=r=>Uint8Array.from(r);function Pc(r,t,e){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof t!="number"||t<2)throw new Error("qByteLen must be a number");if(typeof e!="function")throw new Error("hmacFn must be a function");let n=_c(r),o=_c(r),s=0,i=()=>{n.fill(1),o.fill(0),s=0},a=(...f)=>e(o,n,...f),c=(f=_c())=>{o=a($f([0]),f),n=a(),f.length!==0&&(o=a($f([1]),f),n=a())},u=()=>{if(s++>=1e3)throw new Error("drbg: tried 1000 values");let f=0,d=[];for(;f<t;){n=a();let h=n.slice();d.push(h),f+=n.length}return qe(...d)};return(f,d)=>{i(),c(f);let h;for(;!(h=d(u()));)c();return i(),h}}var Dy={bigint:r=>typeof r=="bigint",function:r=>typeof r=="function",boolean:r=>typeof r=="boolean",string:r=>typeof r=="string",stringOrUint8Array:r=>typeof r=="string"||gr(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,t)=>t.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function Ce(r,t,e={}){let n=(o,s,i)=>{let a=Dy[s];if(typeof a!="function")throw new Error(`Invalid validator "${s}", expected function`);let c=r[o];if(!(i&&c===void 0)&&!a(c,r))throw new Error(`Invalid param ${String(o)}=${c} (${typeof c}), expected ${s}`)};for(let[o,s]of Object.entries(t))n(o,s,!1);for(let[o,s]of Object.entries(e))n(o,s,!0);return r}var Fy=()=>{throw new Error("not implemented")};function Kr(r){let t=new WeakMap;return(e,...n)=>{let o=t.get(e);if(o!==void 0)return o;let s=r(e,...n);return t.set(e,s),s}}var xt=BigInt(0),lt=BigInt(1),qr=BigInt(2),$y=BigInt(3),Lc=BigInt(4),Mf=BigInt(5),Vf=BigInt(8),My=BigInt(9),Vy=BigInt(16);function at(r,t){let e=r%t;return e>=xt?e:t+e}function Oy(r,t,e){if(e<=xt||t<xt)throw new Error("Expected power/modulo > 0");if(e===lt)return xt;let n=lt;for(;t>xt;)t<&&(n=n*r%e),r=r*r%e,t>>=lt;return n}function ft(r,t,e){let n=r;for(;t-- >xt;)n*=n,n%=e;return n}function bs(r,t){if(r===xt||t<=xt)throw new Error(`invert: expected positive integers, got n=${r} mod=${t}`);let e=at(r,t),n=t,o=xt,s=lt,i=lt,a=xt;for(;e!==xt;){let u=n/e,l=n%e,f=o-i*u,d=s-a*u;n=e,e=l,o=i,s=a,i=f,a=d}if(n!==lt)throw new Error("invert: does not exist");return at(o,t)}function Hy(r){let t=(r-lt)/qr,e,n,o;for(e=r-lt,n=0;e%qr===xt;e/=qr,n++);for(o=qr;o<r&&Oy(o,t,r)!==r-lt;o++);if(n===1){let i=(r+lt)/Lc;return function(c,u){let l=c.pow(u,i);if(!c.eql(c.sqr(l),u))throw new Error("Cannot find square root");return l}}let s=(e+lt)/qr;return function(a,c){if(a.pow(c,t)===a.neg(a.ONE))throw new Error("Cannot find square root");let u=n,l=a.pow(a.mul(a.ONE,o),e),f=a.pow(c,s),d=a.pow(c,e);for(;!a.eql(d,a.ONE);){if(a.eql(d,a.ZERO))return a.ZERO;let h=1;for(let m=a.sqr(d);h<u&&!a.eql(m,a.ONE);h++)m=a.sqr(m);let w=a.pow(l,lt<<BigInt(u-h-1));l=a.sqr(w),f=a.mul(f,w),d=a.mul(d,l),u=h}return f}}function zy(r){if(r%Lc===$y){let t=(r+lt)/Lc;return function(n,o){let s=n.pow(o,t);if(!n.eql(n.sqr(s),o))throw new Error("Cannot find square root");return s}}if(r%Vf===Mf){let t=(r-Mf)/Vf;return function(n,o){let s=n.mul(o,qr),i=n.pow(s,t),a=n.mul(o,i),c=n.mul(n.mul(a,qr),i),u=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(u),o))throw new Error("Cannot find square root");return u}}return r%Vy,Hy(r)}var Of=(r,t)=>(at(r,t)<)===lt,Ky=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function Rc(r){let t={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},e=Ky.reduce((n,o)=>(n[o]="function",n),t);return Ce(r,e)}function qy(r,t,e){if(e<xt)throw new Error("Expected power > 0");if(e===xt)return r.ONE;if(e===lt)return t;let n=r.ONE,o=t;for(;e>xt;)e<&&(n=r.mul(n,o)),o=r.sqr(o),e>>=lt;return n}function jy(r,t){let e=new Array(t.length),n=t.reduce((s,i,a)=>r.is0(i)?s:(e[a]=s,r.mul(s,i)),r.ONE),o=r.inv(n);return t.reduceRight((s,i,a)=>r.is0(i)?s:(e[a]=r.mul(s,e[a]),r.mul(s,i)),o),e}function Uc(r,t){let e=t!==void 0?t:r.toString(2).length,n=Math.ceil(e/8);return{nBitLength:e,nByteLength:n}}function xr(r,t,e=!1,n={}){if(r<=xt)throw new Error(`Expected Field ORDER > 0, got ${r}`);let{nBitLength:o,nByteLength:s}=Uc(r,t);if(s>2048)throw new Error("Field lengths over 2048 bytes are not supported");let i=zy(r),a=Object.freeze({ORDER:r,BITS:o,BYTES:s,MASK:co(o),ZERO:xt,ONE:lt,create:c=>at(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error(`Invalid field element: expected bigint, got ${typeof c}`);return xt<=c&&c<r},is0:c=>c===xt,isOdd:c=>(c<)===lt,neg:c=>at(-c,r),eql:(c,u)=>c===u,sqr:c=>at(c*c,r),add:(c,u)=>at(c+u,r),sub:(c,u)=>at(c-u,r),mul:(c,u)=>at(c*u,r),pow:(c,u)=>qy(a,c,u),div:(c,u)=>at(c*bs(u,r),r),sqrN:c=>c*c,addN:(c,u)=>c+u,subN:(c,u)=>c-u,mulN:(c,u)=>c*u,inv:c=>bs(c,r),sqrt:n.sqrt||(c=>i(a,c)),invertBatch:c=>jy(a,c),cmov:(c,u,l)=>l?u:c,toBytes:c=>e?zr(c,s):wr(c,s),fromBytes:c=>{if(c.length!==s)throw new Error(`Fp.fromBytes: expected ${s}, got ${c.length}`);return e?yr(c):Ke(c)}});return Object.freeze(a)}function Hf(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let t=r.toString(2).length;return Math.ceil(t/8)}function Dc(r){let t=Hf(r);return t+Math.ceil(t/2)}function zf(r,t,e=!1){let n=r.length,o=Hf(t),s=Dc(t);if(n<16||n<s||n>1024)throw new Error(`expected ${s}-1024 bytes of input, got ${n}`);let i=e?Ke(r):yr(r),a=at(i,t-lt)+lt;return e?zr(a,o):wr(a,o)}var Wy=BigInt(0),Fc=BigInt(1),$c=new WeakMap,Kf=new WeakMap;function vs(r,t){let e=(s,i)=>{let a=i.negate();return s?a:i},n=s=>{if(!Number.isSafeInteger(s)||s<=0||s>t)throw new Error(`Wrong window size=${s}, should be [1..${t}]`)},o=s=>{n(s);let i=Math.ceil(t/s)+1,a=2**(s-1);return{windows:i,windowSize:a}};return{constTimeNegate:e,unsafeLadder(s,i){let a=r.ZERO,c=s;for(;i>Wy;)i&Fc&&(a=a.add(c)),c=c.double(),i>>=Fc;return a},precomputeWindow(s,i){let{windows:a,windowSize:c}=o(i),u=[],l=s,f=l;for(let d=0;d<a;d++){f=l,u.push(f);for(let h=1;h<c;h++)f=f.add(l),u.push(f);l=f.double()}return u},wNAF(s,i,a){let{windows:c,windowSize:u}=o(s),l=r.ZERO,f=r.BASE,d=BigInt(2**s-1),h=2**s,w=BigInt(s);for(let m=0;m<c;m++){let g=m*u,x=Number(a&d);a>>=w,x>u&&(x-=h,a+=Fc);let b=g,y=g+Math.abs(x)-1,S=m%2!==0,_=x<0;x===0?f=f.add(e(S,i[b])):l=l.add(e(_,i[y]))}return{p:l,f}},wNAFCached(s,i,a){let c=Kf.get(s)||1,u=$c.get(s);return u||(u=this.precomputeWindow(s,c),c!==1&&$c.set(s,a(u))),this.wNAF(c,u,i)},setWindowSize(s,i){n(i),Kf.set(s,i),$c.delete(s)}}}function Es(r,t,e,n){if(!Array.isArray(e)||!Array.isArray(n)||n.length!==e.length)throw new Error("arrays of points and scalars must have equal length");n.forEach((l,f)=>{if(!t.isValid(l))throw new Error(`wrong scalar at index ${f}`)}),e.forEach((l,f)=>{if(!(l instanceof r))throw new Error(`wrong point at index ${f}`)});let o=Nc(BigInt(e.length)),s=o>12?o-3:o>4?o-2:o?2:1,i=(1<<s)-1,a=new Array(i+1).fill(r.ZERO),c=Math.floor((t.BITS-1)/s)*s,u=r.ZERO;for(let l=c;l>=0;l-=s){a.fill(r.ZERO);for(let d=0;d<n.length;d++){let h=n[d],w=Number(h>>BigInt(l)&BigInt(i));a[w]=a[w].add(e[d])}let f=r.ZERO;for(let d=a.length-1,h=r.ZERO;d>0;d--)h=h.add(a[d]),f=f.add(h);if(u=u.add(f),l!==0)for(let d=0;d<s;d++)u=u.double()}return u}function uo(r){return Rc(r.Fp),Ce(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...Uc(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var ye=BigInt(0),Wt=BigInt(1),Ss=BigInt(2),Zy=BigInt(8),Yy={zip215:!0};function Jy(r){let t=uo(r);return Ce(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...t})}function qf(r){let t=Jy(r),{Fp:e,n,prehash:o,hash:s,randomBytes:i,nByteLength:a,h:c}=t,u=Ss<<BigInt(a*8)-Wt,l=e.create,f=xr(t.n,t.nBitLength),d=t.uvRatio||((B,A)=>{try{return{isValid:!0,value:e.sqrt(B*e.inv(A))}}catch{return{isValid:!1,value:ye}}}),h=t.adjustScalarBytes||(B=>B),w=t.domain||((B,A,C)=>{if(ge("phflag",C),A.length||C)throw new Error("Contexts/pre-hash are not supported");return B});function m(B,A){Gt("coordinate "+B,A,ye,u)}function g(B){if(!(B instanceof y))throw new Error("ExtendedPoint expected")}let x=Kr((B,A)=>{let{ex:C,ey:$,ez:H}=B,K=B.is0();A==null&&(A=K?Zy:e.inv(H));let G=l(C*A),Y=l($*A),W=l(H*A);if(K)return{x:ye,y:Wt};if(W!==Wt)throw new Error("invZ was invalid");return{x:G,y:Y}}),b=Kr(B=>{let{a:A,d:C}=t;if(B.is0())throw new Error("bad point: ZERO");let{ex:$,ey:H,ez:K,et:G}=B,Y=l($*$),W=l(H*H),ot=l(K*K),ut=l(ot*ot),vt=l(Y*A),Et=l(ot*l(vt+W)),_t=l(ut+l(C*l(Y*W)));if(Et!==_t)throw new Error("bad point: equation left != right (1)");let Vt=l($*H),wt=l(K*G);if(Vt!==wt)throw new Error("bad point: equation left != right (2)");return!0});class y{constructor(A,C,$,H){this.ex=A,this.ey=C,this.ez=$,this.et=H,m("x",A),m("y",C),m("z",$),m("t",H),Object.freeze(this)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(A){if(A instanceof y)throw new Error("extended point not allowed");let{x:C,y:$}=A||{};return m("x",C),m("y",$),new y(C,$,Wt,l(C*$))}static normalizeZ(A){let C=e.invertBatch(A.map($=>$.ez));return A.map(($,H)=>$.toAffine(C[H])).map(y.fromAffine)}static msm(A,C){return Es(y,f,A,C)}_setWindowSize(A){T.setWindowSize(this,A)}assertValidity(){b(this)}equals(A){g(A);let{ex:C,ey:$,ez:H}=this,{ex:K,ey:G,ez:Y}=A,W=l(C*Y),ot=l(K*H),ut=l($*Y),vt=l(G*H);return W===ot&&ut===vt}is0(){return this.equals(y.ZERO)}negate(){return new y(l(-this.ex),this.ey,this.ez,l(-this.et))}double(){let{a:A}=t,{ex:C,ey:$,ez:H}=this,K=l(C*C),G=l($*$),Y=l(Ss*l(H*H)),W=l(A*K),ot=C+$,ut=l(l(ot*ot)-K-G),vt=W+G,Et=vt-Y,_t=W-G,Vt=l(ut*Et),wt=l(vt*_t),Kt=l(ut*_t),$e=l(Et*vt);return new y(Vt,wt,$e,Kt)}add(A){g(A);let{a:C,d:$}=t,{ex:H,ey:K,ez:G,et:Y}=this,{ex:W,ey:ot,ez:ut,et:vt}=A;if(C===BigInt(-1)){let zl=l((K-H)*(ot+W)),Kl=l((K+H)*(ot-W)),La=l(Kl-zl);if(La===ye)return this.double();let ql=l(G*Ss*vt),jl=l(Y*Ss*ut),Gl=jl+ql,Wl=Kl+zl,Zl=jl-ql,mm=l(Gl*La),gm=l(Wl*Zl),ym=l(Gl*Zl),wm=l(La*Wl);return new y(mm,gm,wm,ym)}let Et=l(H*W),_t=l(K*ot),Vt=l(Y*$*vt),wt=l(G*ut),Kt=l((H+K)*(W+ot)-Et-_t),$e=wt-Vt,Gn=wt+Vt,Wn=l(_t-C*Et),fm=l(Kt*$e),hm=l(Gn*Wn),dm=l(Kt*Wn),pm=l($e*Gn);return new y(fm,hm,pm,dm)}subtract(A){return this.add(A.negate())}wNAF(A){return T.wNAFCached(this,A,y.normalizeZ)}multiply(A){let C=A;Gt("scalar",C,Wt,n);let{p:$,f:H}=this.wNAF(C);return y.normalizeZ([$,H])[0]}multiplyUnsafe(A){let C=A;return Gt("scalar",C,ye,n),C===ye?_:this.equals(_)||C===Wt?this:this.equals(S)?this.wNAF(C).p:T.unsafeLadder(this,C)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return T.unsafeLadder(this,n).is0()}toAffine(A){return x(this,A)}clearCofactor(){let{h:A}=t;return A===Wt?this:this.multiplyUnsafe(A)}static fromHex(A,C=!1){let{d:$,a:H}=t,K=e.BYTES;A=mt("pointHex",A,K),ge("zip215",C);let G=A.slice(),Y=A[K-1];G[K-1]=Y&-129;let W=yr(G),ot=C?u:e.ORDER;Gt("pointHex.y",W,ye,ot);let ut=l(W*W),vt=l(ut-Wt),Et=l($*ut-H),{isValid:_t,value:Vt}=d(vt,Et);if(!_t)throw new Error("Point.fromHex: invalid y coordinate");let wt=(Vt&Wt)===Wt,Kt=(Y&128)!==0;if(!C&&Vt===ye&&Kt)throw new Error("Point.fromHex: x=0 and x_0=1");return Kt!==wt&&(Vt=l(-Vt)),y.fromAffine({x:Vt,y:W})}static fromPrivateKey(A){return k(A).point}toRawBytes(){let{x:A,y:C}=this.toAffine(),$=zr(C,e.BYTES);return $[$.length-1]|=A&Wt?128:0,$}toHex(){return ze(this.toRawBytes())}}y.BASE=new y(t.Gx,t.Gy,Wt,l(t.Gx*t.Gy)),y.ZERO=new y(ye,Wt,Wt,ye);let{BASE:S,ZERO:_}=y,T=vs(y,a*8);function E(B){return at(B,n)}function v(B){return E(yr(B))}function k(B){let A=a;B=mt("private key",B,A);let C=mt("hashed private key",s(B),2*A),$=h(C.slice(0,A)),H=C.slice(A,2*A),K=v($),G=S.multiply(K),Y=G.toRawBytes();return{head:$,prefix:H,scalar:K,point:G,pointBytes:Y}}function V(B){return k(B).pointBytes}function D(B=new Uint8Array,...A){let C=qe(...A);return v(s(w(C,mt("context",B),!!o)))}function U(B,A,C={}){B=mt("message",B),o&&(B=o(B));let{prefix:$,scalar:H,pointBytes:K}=k(A),G=D(C.context,$,B),Y=S.multiply(G).toRawBytes(),W=D(C.context,Y,K,B),ot=E(G+W*H);Gt("signature.s",ot,ye,n);let ut=qe(Y,zr(ot,e.BYTES));return mt("result",ut,a*2)}let L=Yy;function N(B,A,C,$=L){let{context:H,zip215:K}=$,G=e.BYTES;B=mt("signature",B,2*G),A=mt("message",A),K!==void 0&&ge("zip215",K),o&&(A=o(A));let Y=yr(B.slice(G,2*G)),W,ot,ut;try{W=y.fromHex(C,K),ot=y.fromHex(B.slice(0,G),K),ut=S.multiplyUnsafe(Y)}catch{return!1}if(!K&&W.isSmallOrder())return!1;let vt=D(H,ot.toRawBytes(),W.toRawBytes(),A);return ot.add(W.multiplyUnsafe(vt)).subtract(ut).clearCofactor().equals(y.ZERO)}return S._setWindowSize(8),{CURVE:t,getPublicKey:V,sign:U,verify:N,ExtendedPoint:y,utils:{getExtendedPublicKey:k,randomPrivateKey:()=>i(e.BYTES),precompute(B=8,A=y.BASE){return A._setWindowSize(B),A.multiply(BigInt(3)),A}}}}var Mc=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),jf=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),VE=BigInt(0),Xy=BigInt(1),Gf=BigInt(2),OE=BigInt(3),Qy=BigInt(5),tw=BigInt(8);function ew(r){let t=BigInt(10),e=BigInt(20),n=BigInt(40),o=BigInt(80),s=Mc,a=r*r%s*r%s,c=ft(a,Gf,s)*a%s,u=ft(c,Xy,s)*r%s,l=ft(u,Qy,s)*u%s,f=ft(l,t,s)*l%s,d=ft(f,e,s)*f%s,h=ft(d,n,s)*d%s,w=ft(h,o,s)*h%s,m=ft(w,o,s)*h%s,g=ft(m,t,s)*l%s;return{pow_p_5_8:ft(g,Gf,s)*r%s,b2:a}}function rw(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function nw(r,t){let e=Mc,n=at(t*t*t,e),o=at(n*n*t,e),s=ew(r*o).pow_p_5_8,i=at(r*n*s,e),a=at(t*i*i,e),c=i,u=at(i*jf,e),l=a===r,f=a===at(-r,e),d=a===at(-r*jf,e);return l&&(i=c),(f||d)&&(i=u),Of(i,e)&&(i=at(-i,e)),{isValid:l||f,value:i}}var ow=xr(Mc,void 0,!0),sw={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:ow,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:tw,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Df,randomBytes:gs,adjustScalarBytes:rw,uvRatio:nw},Wf=qf(sw);var As=32;function Zf(r,t,e){return Wf.verify(t,e instanceof Uint8Array?e:e.subarray(),r)}var Bs=class{type="Ed25519";raw;constructor(t){this.raw=Vc(t,As)}toMultihash(){return jt.digest(ks(this))}toCID(){return O.createV1(114,this.toMultihash())}toString(){return it.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:st(this.raw,t.raw)}verify(t,e){return Zf(this.raw,e,t)}};function Oc(r){return r=Vc(r,As),new Bs(r)}function Vc(r,t){if(r=Uint8Array.from(r??[]),r.length!==t)throw new St(`Key must be a Uint8Array of length ${t}, got ${r.length}`);return r}var bt;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.secp256k1="secp256k1"})(bt||(bt={}));var Hc;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.secp256k1=2]="secp256k1"})(Hc||(Hc={}));(function(r){r.codec=()=>so(Hc)})(bt||(bt={}));var Ne;(function(r){let t;r.codec=()=>(t==null&&(t=gn((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.Type!=null&&(n.uint32(8),bt.codec().encode(e.Type,n)),e.Data!=null&&(n.uint32(18),n.bytes(e.Data)),o.lengthDelimited!==!1&&n.ldelim()},(e,n,o={})=>{let s={},i=n==null?e.len:e.pos+n;for(;e.pos<i;){let a=e.uint32();switch(a>>>3){case 1:{s.Type=bt.codec().decode(e);break}case 2:{s.Data=e.bytes();break}default:{e.skipType(a&7);break}}}return s})),t),r.encode=e=>pn(e,r.codec()),r.decode=(e,n)=>un(e,r.codec(),n)})(Ne||(Ne={}));var zc;(function(r){let t;r.codec=()=>(t==null&&(t=gn((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.Type!=null&&(n.uint32(8),bt.codec().encode(e.Type,n)),e.Data!=null&&(n.uint32(18),n.bytes(e.Data)),o.lengthDelimited!==!1&&n.ldelim()},(e,n,o={})=>{let s={},i=n==null?e.len:e.pos+n;for(;e.pos<i;){let a=e.uint32();switch(a>>>3){case 1:{s.Type=bt.codec().decode(e);break}case 2:{s.Data=e.bytes();break}default:{e.skipType(a&7);break}}}return s})),t),r.encode=e=>pn(e,r.codec()),r.decode=(e,n)=>un(e,r.codec(),n)})(zc||(zc={}));var bo={};gt(bo,{MAX_RSA_KEY_SIZE:()=>yi,generateRSAKeyPair:()=>Gh,jwkToJWKKeyPair:()=>Wh,jwkToPkcs1:()=>Ew,jwkToPkix:()=>Xc,jwkToRSAPrivateKey:()=>jh,pkcs1ToJwk:()=>zh,pkcs1ToRSAPrivateKey:()=>qh,pkixToJwk:()=>Kh,pkixToRSAPublicKey:()=>Qc});var aw=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),br=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),vr=new Uint32Array(64),Kc=class extends bn{constructor(){super(64,32,8,!1),this.A=br[0]|0,this.B=br[1]|0,this.C=br[2]|0,this.D=br[3]|0,this.E=br[4]|0,this.F=br[5]|0,this.G=br[6]|0,this.H=br[7]|0}get(){let{A:t,B:e,C:n,D:o,E:s,F:i,G:a,H:c}=this;return[t,e,n,o,s,i,a,c]}set(t,e,n,o,s,i,a,c){this.A=t|0,this.B=e|0,this.C=n|0,this.D=o|0,this.E=s|0,this.F=i|0,this.G=a|0,this.H=c|0}process(t,e){for(let f=0;f<16;f++,e+=4)vr[f]=t.getUint32(e,!1);for(let f=16;f<64;f++){let d=vr[f-15],h=vr[f-2],w=me(d,7)^me(d,18)^d>>>3,m=me(h,17)^me(h,19)^h>>>10;vr[f]=m+vr[f-7]+w+vr[f-16]|0}let{A:n,B:o,C:s,D:i,E:a,F:c,G:u,H:l}=this;for(let f=0;f<64;f++){let d=me(a,6)^me(a,11)^me(a,25),h=l+d+Lf(a,c,u)+aw[f]+vr[f]|0,m=(me(n,2)^me(n,13)^me(n,22))+Rf(n,o,s)|0;l=u,u=c,c=a,a=i+h|0,i=s,s=o,o=n,n=h+m|0}n=n+this.A|0,o=o+this.B|0,s=s+this.C|0,i=i+this.D|0,a=a+this.E|0,c=c+this.F|0,u=u+this.G|0,l=l+this.H|0,this.set(n,o,s,i,a,c,u,l)}roundClean(){vr.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var En=ms(()=>new Kc);var Z=Lr(Xf());function jr(r,t){let e=0;if(r.length===1)return r[0];for(let n=r.length-1;n>=0;n--)e+=r[r.length-1-n]*Math.pow(2,t*n);return e}function Er(r,t,e=-1){let n=e,o=r,s=0,i=Math.pow(2,t);for(let a=1;a<8;a++){if(r<i){let c;if(n<0)c=new ArrayBuffer(a),s=a;else{if(n<a)return new ArrayBuffer(0);c=new ArrayBuffer(n),s=n}let u=new Uint8Array(c);for(let l=a-1;l>=0;l--){let f=Math.pow(2,l*t);u[s-l-1]=Math.floor(o/f),o-=u[s-l-1]*f}return c}i*=Math.pow(2,t)}return new ArrayBuffer(0)}function Ts(...r){let t=0,e=0;for(let s of r)t+=s.length;let n=new ArrayBuffer(t),o=new Uint8Array(n);for(let s of r)o.set(s,e),e+=s.length;return o}function jc(){let r=new Uint8Array(this.valueHex);if(this.valueHex.byteLength>=2){let a=r[0]===255&&r[1]&128,c=r[0]===0&&(r[1]&128)===0;(a||c)&&this.warnings.push("Needlessly long format")}let t=new ArrayBuffer(this.valueHex.byteLength),e=new Uint8Array(t);for(let a=0;a<this.valueHex.byteLength;a++)e[a]=0;e[0]=r[0]&128;let n=jr(e,8),o=new ArrayBuffer(this.valueHex.byteLength),s=new Uint8Array(o);for(let a=0;a<this.valueHex.byteLength;a++)s[a]=r[a];return s[0]&=127,jr(s,8)-n}function Qf(r){let t=r<0?r*-1:r,e=128;for(let n=1;n<8;n++){if(t<=e){if(r<0){let i=e-t,a=Er(i,8,n),c=new Uint8Array(a);return c[0]|=128,a}let o=Er(t,8,n),s=new Uint8Array(o);if(s[0]&128){let i=o.slice(0),a=new Uint8Array(i);o=new ArrayBuffer(o.byteLength+1),s=new Uint8Array(o);for(let c=0;c<i.byteLength;c++)s[c+1]=a[c];s[0]=0}return o}e*=Math.pow(2,8)}return new ArrayBuffer(0)}function th(r,t){if(r.byteLength!==t.byteLength)return!1;let e=new Uint8Array(r),n=new Uint8Array(t);for(let o=0;o<e.length;o++)if(e[o]!==n[o])return!1;return!0}function Zt(r,t){let e=r.toString(10);if(t<e.length)return"";let n=t-e.length,o=new Array(n);for(let i=0;i<n;i++)o[i]="0";return o.join("").concat(e)}var l8=Math.log(2);function Cs(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function Gc(r){let t=0,e=0;for(let o=0;o<r.length;o++){let s=r[o];t+=s.byteLength}let n=new Uint8Array(t);for(let o=0;o<r.length;o++){let s=r[o];n.set(new Uint8Array(s),e),e+=s.byteLength}return n.buffer}function Ye(r,t,e,n){return t instanceof Uint8Array?t.byteLength?e<0?(r.error="Wrong parameter: inputOffset less than zero",!1):n<0?(r.error="Wrong parameter: inputLength less than zero",!1):t.byteLength-e-n<0?(r.error="End of input reached before message was fully decoded (inconsistent offset and length values)",!1):!0:(r.error="Wrong parameter: inputBuffer has zero length",!1):(r.error="Wrong parameter: inputBuffer must be 'Uint8Array'",!1)}var fo=class{constructor(){this.items=[]}write(t){this.items.push(t)}final(){return Gc(this.items)}},lo=[new Uint8Array([1])],eh="0123456789";var In="",we=new ArrayBuffer(0),Wc=new Uint8Array(0),ho="EndOfContent",nh="OCTET STRING",oh="BIT STRING";function Je(r){var t;return t=class extends r{constructor(...n){var o;super(...n);let s=n[0]||{};this.isHexOnly=(o=s.isHexOnly)!==null&&o!==void 0?o:!1,this.valueHexView=s.valueHex?Z.BufferSourceConverter.toUint8Array(s.valueHex):Wc}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,o,s){let i=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!Ye(this,i,o,s))return-1;let a=o+s;return this.valueHexView=i.subarray(o,a),this.valueHexView.length?(this.blockLength=s,a):(this.warnings.push("Zero buffer length"),o)}toBER(n=!1){return this.isHexOnly?n?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",we)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:Z.Convert.ToHex(this.valueHexView)}}},t.NAME="hexBlock",t}var Ge=class{constructor({blockLength:t=0,error:e=In,warnings:n=[],valueBeforeDecode:o=Wc}={}){this.blockLength=t,this.error=e,this.warnings=n,this.valueBeforeDecodeView=Z.BufferSourceConverter.toUint8Array(o)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(t){this.valueBeforeDecodeView=new Uint8Array(t)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:Z.Convert.ToHex(this.valueBeforeDecodeView)}}};Ge.NAME="baseBlock";var Dt=class extends Ge{fromBER(t,e,n){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(t,e){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}};Dt.NAME="valueBlock";var Ns=class extends Je(Ge){constructor({idBlock:t={}}={}){var e,n,o,s;super(),t?(this.isHexOnly=(e=t.isHexOnly)!==null&&e!==void 0?e:!1,this.valueHexView=t.valueHex?Z.BufferSourceConverter.toUint8Array(t.valueHex):Wc,this.tagClass=(n=t.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(o=t.tagNumber)!==null&&o!==void 0?o:-1,this.isConstructed=(s=t.isConstructed)!==null&&s!==void 0?s:!1):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(t=!1){let e=0;switch(this.tagClass){case 1:e|=0;break;case 2:e|=64;break;case 3:e|=128;break;case 4:e|=192;break;default:return this.error="Unknown tag class",we}if(this.isConstructed&&(e|=32),this.tagNumber<31&&!this.isHexOnly){let o=new Uint8Array(1);if(!t){let s=this.tagNumber;s&=31,e|=s,o[0]=e}return o.buffer}if(!this.isHexOnly){let o=Er(this.tagNumber,7),s=new Uint8Array(o),i=o.byteLength,a=new Uint8Array(i+1);if(a[0]=e|31,!t){for(let c=0;c<i-1;c++)a[c+1]=s[c]|128;a[i]=s[i-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=e|31,!t){let o=this.valueHexView;for(let s=0;s<o.length-1;s++)n[s+1]=o[s]|128;n[this.valueHexView.byteLength]=o[o.length-1]}return n.buffer}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);if(s.length===0)return this.error="Zero buffer length",-1;switch(s[0]&192){case 0:this.tagClass=1;break;case 64:this.tagClass=2;break;case 128:this.tagClass=3;break;case 192:this.tagClass=4;break;default:return this.error="Unknown tag class",-1}this.isConstructed=(s[0]&32)===32,this.isHexOnly=!1;let a=s[0]&31;if(a!==31)this.tagNumber=a,this.blockLength=1;else{let c=1,u=this.valueHexView=new Uint8Array(255),l=255;for(;s[c]&128;){if(u[c-1]=s[c]&127,c++,c>=s.length)return this.error="End of input reached before message was fully decoded",-1;if(c===l){l+=255;let d=new Uint8Array(l);for(let h=0;h<u.length;h++)d[h]=u[h];u=this.valueHexView=new Uint8Array(l)}}this.blockLength=c+1,u[c-1]=s[c]&127;let f=new Uint8Array(c);for(let d=0;d<c;d++)f[d]=u[d];u=this.valueHexView=new Uint8Array(c),u.set(f),this.blockLength<=9?this.tagNumber=jr(u,7):(this.isHexOnly=!0,this.warnings.push("Tag too long, represented as hex-coded"))}if(this.tagClass===1&&this.isConstructed)switch(this.tagNumber){case 1:case 2:case 5:case 6:case 9:case 13:case 14:case 23:case 24:case 31:case 32:case 33:case 34:return this.error="Constructed encoding used for primitive type",-1}return e+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}};Ns.NAME="identificationBlock";var Ps=class extends Ge{constructor({lenBlock:t={}}={}){var e,n,o;super(),this.isIndefiniteForm=(e=t.isIndefiniteForm)!==null&&e!==void 0?e:!1,this.longFormUsed=(n=t.longFormUsed)!==null&&n!==void 0?n:!1,this.length=(o=t.length)!==null&&o!==void 0?o:0}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);if(s.length===0)return this.error="Zero buffer length",-1;if(s[0]===255)return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=s[0]===128,this.isIndefiniteForm)return this.blockLength=1,e+this.blockLength;if(this.longFormUsed=!!(s[0]&128),this.longFormUsed===!1)return this.length=s[0],this.blockLength=1,e+this.blockLength;let i=s[0]&127;if(i>8)return this.error="Too big integer",-1;if(i+1>s.length)return this.error="End of input reached before message was fully decoded",-1;let a=e+1,c=o.subarray(a,a+i);return c[i-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=jr(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=i+1,e+this.blockLength}toBER(t=!1){let e,n;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return e=new ArrayBuffer(1),t===!1&&(n=new Uint8Array(e),n[0]=128),e;if(this.longFormUsed){let o=Er(this.length,8);if(o.byteLength>127)return this.error="Too big length",we;if(e=new ArrayBuffer(o.byteLength+1),t)return e;let s=new Uint8Array(o);n=new Uint8Array(e),n[0]=o.byteLength|128;for(let i=0;i<o.byteLength;i++)n[i+1]=s[i];return e}return e=new ArrayBuffer(1),t===!1&&(n=new Uint8Array(e),n[0]=this.length),e}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}};Ps.NAME="lengthBlock";var F={},Ct=class extends Ge{constructor({name:t=In,optional:e=!1,primitiveSchema:n,...o}={},s){super(o),this.name=t,this.optional=e,n&&(this.primitiveSchema=n),this.idBlock=new Ns(o),this.lenBlock=new Ps(o),this.valueBlock=s?new s(o):new Dt(o)}fromBER(t,e,n){let o=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}toBER(t,e){let n=e||new fo;e||sh(this);let o=this.idBlock.toBER(t);if(n.write(o),this.lenBlock.isIndefiniteForm)n.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(t,n),n.write(new ArrayBuffer(2));else{let s=this.valueBlock.toBER(t);this.lenBlock.length=s.byteLength;let i=this.lenBlock.toBER(t);n.write(i),n.write(s)}return e?we:n.final()}toJSON(){let t={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(t.primitiveSchema=this.primitiveSchema.toJSON()),t}toString(t="ascii"){return t==="ascii"?this.onAsciiEncoding():Z.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${Z.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(t){if(this===t)return!0;if(!(t instanceof this.constructor))return!1;let e=this.toBER(),n=t.toBER();return th(e,n)}};Ct.NAME="BaseBlock";function sh(r){if(r instanceof F.Constructed)for(let t of r.valueBlock.value)sh(t)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var Ls=class extends Ct{constructor({value:t=In,...e}={},n){super(e,n),t&&this.fromString(t)}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}fromBER(t,e,n){let o=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};Ls.NAME="BaseStringBlock";var Rs=class extends Je(Dt){constructor({isHexOnly:t=!0,...e}={}){super(e),this.isHexOnly=t}};Rs.NAME="PrimitiveValueBlock";var ih,Us=class extends Ct{constructor(t={}){super(t,Rs),this.idBlock.isConstructed=!1}};ih=Us;F.Primitive=ih;Us.NAME="PRIMITIVE";function gw(r,t){if(r instanceof t)return r;let e=new t;return e.idBlock=r.idBlock,e.lenBlock=r.lenBlock,e.warnings=r.warnings,e.valueBeforeDecodeView=r.valueBeforeDecodeView,e}function mi(r,t=0,e=r.length){let n=t,o=new Ct({},Dt),s=new Ge;if(!Ye(s,r,t,e))return o.error=s.error,{offset:-1,result:o};if(!r.subarray(t,t+e).length)return o.error="Zero buffer length",{offset:-1,result:o};let a=o.idBlock.fromBER(r,t,e);if(o.idBlock.warnings.length&&o.warnings.concat(o.idBlock.warnings),a===-1)return o.error=o.idBlock.error,{offset:-1,result:o};if(t=a,e-=o.idBlock.blockLength,a=o.lenBlock.fromBER(r,t,e),o.lenBlock.warnings.length&&o.warnings.concat(o.lenBlock.warnings),a===-1)return o.error=o.lenBlock.error,{offset:-1,result:o};if(t=a,e-=o.lenBlock.blockLength,!o.idBlock.isConstructed&&o.lenBlock.isIndefiniteForm)return o.error="Indefinite length form used for primitive encoding form",{offset:-1,result:o};let c=Ct;switch(o.idBlock.tagClass){case 1:if(o.idBlock.tagNumber>=37&&o.idBlock.isHexOnly===!1)return o.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:o};switch(o.idBlock.tagNumber){case 0:if(o.idBlock.isConstructed&&o.lenBlock.length>0)return o.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:o};c=F.EndOfContent;break;case 1:c=F.Boolean;break;case 2:c=F.Integer;break;case 3:c=F.BitString;break;case 4:c=F.OctetString;break;case 5:c=F.Null;break;case 6:c=F.ObjectIdentifier;break;case 10:c=F.Enumerated;break;case 12:c=F.Utf8String;break;case 13:c=F.RelativeObjectIdentifier;break;case 14:c=F.TIME;break;case 15:return o.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:o};case 16:c=F.Sequence;break;case 17:c=F.Set;break;case 18:c=F.NumericString;break;case 19:c=F.PrintableString;break;case 20:c=F.TeletexString;break;case 21:c=F.VideotexString;break;case 22:c=F.IA5String;break;case 23:c=F.UTCTime;break;case 24:c=F.GeneralizedTime;break;case 25:c=F.GraphicString;break;case 26:c=F.VisibleString;break;case 27:c=F.GeneralString;break;case 28:c=F.UniversalString;break;case 29:c=F.CharacterString;break;case 30:c=F.BmpString;break;case 31:c=F.DATE;break;case 32:c=F.TimeOfDay;break;case 33:c=F.DateTime;break;case 34:c=F.Duration;break;default:{let u=o.idBlock.isConstructed?new F.Constructed:new F.Primitive;u.idBlock=o.idBlock,u.lenBlock=o.lenBlock,u.warnings=o.warnings,o=u}}break;case 2:case 3:case 4:default:c=o.idBlock.isConstructed?F.Constructed:F.Primitive}return o=gw(o,c),a=o.fromBER(r,t,o.lenBlock.isIndefiniteForm?e:o.lenBlock.length),o.valueBeforeDecodeView=r.subarray(n,n+o.blockLength),{offset:a,result:o}}function Zc(r){if(!r.byteLength){let t=new Ct({},Dt);return t.error="Input buffer has zero length",{offset:-1,result:t}}return mi(Z.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function yw(r,t){return r?1:t}var Pe=class extends Dt{constructor({value:t=[],isIndefiniteForm:e=!1,...n}={}){super(n),this.value=t,this.isIndefiniteForm=e}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;if(this.valueBeforeDecodeView=o.subarray(e,e+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),e;let s=e;for(;yw(this.isIndefiniteForm,n)>0;){let i=mi(o,s,n);if(i.offset===-1)return this.error=i.result.error,this.warnings.concat(i.result.warnings),-1;if(s=i.offset,this.blockLength+=i.result.blockLength,n-=i.result.blockLength,this.value.push(i.result),this.isIndefiniteForm&&i.result.constructor.NAME===ho)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===ho?this.value.pop():this.warnings.push("No EndOfContent block encoded")),s}toBER(t,e){let n=e||new fo;for(let o=0;o<this.value.length;o++)this.value[o].toBER(t,n);return e?we:n.final()}toJSON(){let t={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let e of this.value)t.value.push(e.toJSON());return t}};Pe.NAME="ConstructedValueBlock";var ah,Sr=class extends Ct{constructor(t={}){super(t,Pe),this.idBlock.isConstructed=!0}fromBER(t,e,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let o=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}onAsciiEncoding(){let t=[];for(let n of this.valueBlock.value)t.push(n.toString("ascii").split(`
|
|
4
4
|
`).map(o=>` ${o}`).join(`
|
|
5
5
|
`));let e=this.idBlock.tagClass===3?`[${this.idBlock.tagNumber}]`:this.constructor.NAME;return t.length?`${e} :
|
|
6
6
|
${t.join(`
|
|
7
|
-
`)}`:`${e} :`}};ih=Sr;F.Constructed=ih;Sr.NAME="CONSTRUCTED";var Ds=class extends Rt{fromBER(t,e,n){return e}toBER(t){return we}};Ds.override="EndOfContentValueBlock";var ah,Fs=class extends Tt{constructor(t={}){super(t,Ds),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};ah=Fs;F.EndOfContent=ah;Fs.NAME=ho;var ch,Sn=class extends Tt{constructor(t={}){super(t,Rt),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(t,e,n){return this.lenBlock.length>0&&this.warnings.push("Non-zero length of value block for Null type"),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.blockLength+=n,e+n>t.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):e+n}toBER(t,e){let n=new ArrayBuffer(2);if(!t){let o=new Uint8Array(n);o[0]=5,o[1]=0}return e&&e.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};ch=Sn;F.Null=ch;Sn.NAME="NULL";var $s=class extends Je(Rt){constructor({value:t,...e}={}){super(e),e.valueHex?this.valueHexView=Z.BufferSourceConverter.toUint8Array(e.valueHex):this.valueHexView=new Uint8Array(1),t&&(this.value=t)}get value(){for(let t of this.valueHexView)if(t>0)return!0;return!1}set value(t){this.valueHexView[0]=t?255:0}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);return Ye(this,o,e,n)?(this.valueHexView=o.subarray(e,e+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,jc.call(this),this.blockLength=n,e+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};$s.NAME="BooleanValueBlock";var uh,Ms=class extends Tt{constructor(t={}){super(t,$s),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}};uh=Ms;F.Boolean=uh;Ms.NAME="BOOLEAN";var Vs=class extends Je(Pe){constructor({isConstructed:t=!1,...e}={}){super(e),this.isConstructed=t}fromBER(t,e,n){let o=0;if(this.isConstructed){if(this.isHexOnly=!1,o=Pe.prototype.fromBER.call(this,t,e,n),o===-1)return o;for(let s=0;s<this.value.length;s++){let i=this.value[s].constructor.NAME;if(i===ho){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(i!==rh)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,o=super.fromBER(t,e,n),this.blockLength=n;return o}toBER(t,e){return this.isConstructed?Pe.prototype.toBER.call(this,t,e):t?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};Vs.NAME="OctetStringValueBlock";var lh,Os=class r extends Tt{constructor({idBlock:t={},lenBlock:e={},...n}={}){var o,s;(o=n.isConstructed)!==null&&o!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!n.isIndefiniteForm},...n},Vs),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(t,e,n){if(this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,n===0)return this.idBlock.error.length===0&&(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length===0&&(this.blockLength+=this.lenBlock.blockLength),e;if(!this.valueBlock.isConstructed){let s=(t instanceof ArrayBuffer?new Uint8Array(t):t).subarray(e,e+n);try{if(s.byteLength){let i=mi(s,0,s.byteLength);i.offset!==-1&&i.offset===n&&(this.valueBlock.value=[i.result])}}catch{}}return super.fromBER(t,e,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?Sr.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${Z.Convert.ToHex(this.valueBlock.valueHexView)}`}getValue(){if(!this.idBlock.isConstructed)return this.valueBlock.valueHexView.slice().buffer;let t=[];for(let e of this.valueBlock.value)e instanceof r&&t.push(e.valueBlock.valueHexView);return Z.BufferSourceConverter.concat(t)}};lh=Os;F.OctetString=lh;Os.NAME=rh;var Hs=class extends Je(Pe){constructor({unusedBits:t=0,isConstructed:e=!1,...n}={}){super(n),this.unusedBits=t,this.isConstructed=e,this.blockLength=this.valueHexView.byteLength}fromBER(t,e,n){if(!n)return e;let o=-1;if(this.isConstructed){if(o=Pe.prototype.fromBER.call(this,t,e,n),o===-1)return o;for(let a of this.value){let c=a.constructor.NAME;if(c===ho){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==nh)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let u=a.valueBlock;if(this.unusedBits>0&&u.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=u.unusedBits}return o}let s=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,s,e,n))return-1;let i=s.subarray(e,e+n);if(this.unusedBits=i[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=i.subarray(1);try{if(a.byteLength){let c=mi(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=i.subarray(1),this.blockLength=i.length,e+n}toBER(t,e){if(this.isConstructed)return Pe.prototype.toBER.call(this,t,e);if(t)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return we;let n=new Uint8Array(this.valueHexView.length+1);return n[0]=this.unusedBits,n.set(this.valueHexView,1),n.buffer}toJSON(){return{...super.toJSON(),unusedBits:this.unusedBits,isConstructed:this.isConstructed}}};Hs.NAME="BitStringValueBlock";var fh,An=class extends Tt{constructor({idBlock:t={},lenBlock:e={},...n}={}){var o,s;(o=n.isConstructed)!==null&&o!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!n.isIndefiniteForm},...n},Hs),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(t,e,n){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(t,e,n)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return Sr.prototype.onAsciiEncoding.call(this);{let t=[],e=this.valueBlock.valueHexView;for(let o of e)t.push(o.toString(2).padStart(8,"0"));let n=t.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};fh=An;F.BitString=fh;An.NAME=nh;var hh;function ww(r,t){let e=new Uint8Array([0]),n=new Uint8Array(r),o=new Uint8Array(t),s=n.slice(0),i=s.length-1,a=o.slice(0),c=a.length-1,u=0,l=c<i?i:c,f=0;for(let d=l;d>=0;d--,f++){switch(!0){case f<a.length:u=s[i-f]+a[c-f]+e[0];break;default:u=s[i-f]+e[0]}switch(e[0]=u/10,!0){case f>=s.length:s=Ts(new Uint8Array([u%10]),s);break;default:s[i-f]=u%10}}return e[0]>0&&(s=Ts(e,s)),s}function eh(r){if(r>=lo.length)for(let t=lo.length;t<=r;t++){let e=new Uint8Array([0]),n=lo[t-1].slice(0);for(let o=n.length-1;o>=0;o--){let s=new Uint8Array([(n[o]<<1)+e[0]]);e[0]=s[0]/10,n[o]=s[0]%10}e[0]>0&&(n=Ts(e,n)),lo.push(n)}return lo[r]}function xw(r,t){let e=0,n=new Uint8Array(r),o=new Uint8Array(t),s=n.slice(0),i=s.length-1,a=o.slice(0),c=a.length-1,u,l=0;for(let f=c;f>=0;f--,l++)switch(u=s[i-l]-a[c-l]-e,!0){case u<0:e=1,s[i-l]=u+10;break;default:e=0,s[i-l]=u}if(e>0)for(let f=i-c+1;f>=0;f--,l++)if(u=s[i-l]-e,u<0)e=1,s[i-l]=u+10;else{e=0,s[i-l]=u;break}return s.slice()}var po=class extends Je(Rt){constructor({value:t,...e}={}){super(e),this._valueDec=0,e.valueHex&&this.setValueHex(),t!==void 0&&(this.valueDec=t)}setValueHex(){this.valueHexView.length>=4?(this.warnings.push("Too big Integer for decoding, hex only"),this.isHexOnly=!0,this._valueDec=0):(this.isHexOnly=!1,this.valueHexView.length>0&&(this._valueDec=jc.call(this)))}set valueDec(t){this._valueDec=t,this.isHexOnly=!1,this.valueHexView=new Uint8Array(Xf(t))}get valueDec(){return this._valueDec}fromDER(t,e,n,o=0){let s=this.fromBER(t,e,n);if(s===-1)return s;let i=this.valueHexView;return i[0]===0&&i[1]&128?this.valueHexView=i.subarray(1):o!==0&&i.length<o&&(o-i.length>1&&(o=i.length+1),this.valueHexView=i.subarray(o-i.length)),s}toDER(t=!1){let e=this.valueHexView;switch(!0){case(e[0]&128)!==0:{let n=new Uint8Array(this.valueHexView.length+1);n[0]=0,n.set(e,1),this.valueHexView=n}break;case(e[0]===0&&(e[1]&128)===0):this.valueHexView=this.valueHexView.subarray(1);break}return this.toBER(t)}fromBER(t,e,n){let o=super.fromBER(t,e,n);return o===-1||this.setValueHex(),o}toBER(t){return t?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){let t=this.valueHexView.length*8-1,e=new Uint8Array(this.valueHexView.length*8/3),n=0,o,s=this.valueHexView,i="",a=!1;for(let c=s.byteLength-1;c>=0;c--){o=s[c];for(let u=0;u<8;u++){if((o&1)===1)switch(n){case t:e=xw(eh(n),e),i="-";break;default:e=ww(e,eh(n))}n++,o>>=1}}for(let c=0;c<e.length;c++)e[c]&&(a=!0),a&&(i+=th.charAt(e[c]));return a===!1&&(i+=th.charAt(0)),i}};hh=po;po.NAME="IntegerValueBlock";Object.defineProperty(hh.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var dh,Ct=class r extends Tt{constructor(t={}){super(t,po),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return Cs(),BigInt(this.valueBlock.toString())}static fromBigInt(t){Cs();let e=BigInt(t),n=new fo,o=e.toString(16).replace(/^-/,""),s=new Uint8Array(Z.Convert.FromHex(o));if(e<0){let a=new Uint8Array(s.length+(s[0]&128?1:0));a[0]|=128;let u=BigInt(`0x${Z.Convert.ToHex(a)}`)+e,l=Z.BufferSourceConverter.toUint8Array(Z.Convert.FromHex(u.toString(16)));l[0]|=128,n.write(l)}else s[0]&128&&n.write(new Uint8Array([0])),n.write(s);return new r({valueHex:n.final()})}convertToDER(){let t=new r({valueHex:this.valueBlock.valueHexView});return t.valueBlock.toDER(),t}convertFromDER(){return new r({valueHex:this.valueBlock.valueHexView[0]===0?this.valueBlock.valueHexView.subarray(1):this.valueBlock.valueHexView})}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()}`}};dh=Ct;F.Integer=dh;Ct.NAME="INTEGER";var ph,zs=class extends Ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};ph=zs;F.Enumerated=ph;zs.NAME="ENUMERATED";var mo=class extends Je(Rt){constructor({valueDec:t=-1,isFirstSid:e=!1,...n}={}){super(n),this.valueDec=t,this.isFirstSid=e}fromBER(t,e,n){if(!n)return e;let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=s[a]&127,this.blockLength++,!!(s[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,s[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=jr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),e+this.blockLength)}set valueBigInt(t){Cs();let e=BigInt(t).toString(2);for(;e.length%7;)e="0"+e;let n=new Uint8Array(e.length/7);for(let o=0;o<n.length;o++)n[o]=parseInt(e.slice(o*7,o*7+7),2)+(o+1<n.length?128:0);this.fromBER(n.buffer,0,n.length)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);let o=this.valueHexView,s=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)s[i]=o[i]|128;return s[this.blockLength-1]=o[this.blockLength-1],s.buffer}let e=Er(this.valueDec,7);if(e.byteLength===0)return this.error="Error during encoding SID value",we;let n=new Uint8Array(e.byteLength);if(!t){let o=new Uint8Array(e),s=e.byteLength-1;for(let i=0;i<s;i++)n[i]=o[i]|128;n[s]=o[s]}return n}toString(){let t="";if(this.isHexOnly)t=Z.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let e=this.valueDec;this.valueDec<=39?t="0.":this.valueDec<=79?(t="1.",e-=40):(t="2.",e-=80),t+=e.toString()}else t=this.valueDec.toString();return t}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}};mo.NAME="sidBlock";var Ks=class extends Rt{constructor({value:t=kn,...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,n){let o=e;for(;n>0;){let s=new mo;if(o=s.fromBER(t,o,n),o===-1)return this.blockLength=0,this.error=s.error,o;this.value.length===0&&(s.isFirstSid=!0),this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return o}toBER(t){let e=[];for(let n=0;n<this.value.length;n++){let o=this.value[n].toBER(t);if(o.byteLength===0)return this.error=this.value[n].error,we;e.push(o)}return Gc(e)}fromString(t){this.value=[];let e=0,n=0,o="",s=!1;do if(n=t.indexOf(".",e),n===-1?o=t.substring(e):o=t.substring(e,n),e=n+1,s){let i=this.value[0],a=0;switch(i.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(o,10);if(isNaN(c))return;i.valueDec=c+a,s=!1}else{let i=new mo;if(o>Number.MAX_SAFE_INTEGER){Cs();let a=BigInt(o);i.valueBigInt=a}else if(i.valueDec=parseInt(o,10),isNaN(i.valueDec))return;this.value.length||(i.isFirstSid=!0,s=!0),this.value.push(i)}while(n!==-1)}toString(){let t="",e=!1;for(let n=0;n<this.value.length;n++){e=this.value[n].isHexOnly;let o=this.value[n].toString();n!==0&&(t=`${t}.`),e?(o=`{${o}}`,this.value[n].isFirstSid?t=`2.{${o} - 80}`:t+=o):t+=o}return t}toJSON(){let t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}};Ks.NAME="ObjectIdentifierValueBlock";var mh,Bn=class extends Tt{constructor(t={}){super(t,Ks),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};mh=Bn;F.ObjectIdentifier=mh;Bn.NAME="OBJECT IDENTIFIER";var go=class extends Je(Ge){constructor({valueDec:t=0,...e}={}){super(e),this.valueDec=t}fromBER(t,e,n){if(n===0)return e;let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=s[a]&127,this.blockLength++,!!(s[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,s[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=jr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),e+this.blockLength)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);let o=this.valueHexView,s=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)s[i]=o[i]|128;return s[this.blockLength-1]=o[this.blockLength-1],s.buffer}let e=Er(this.valueDec,7);if(e.byteLength===0)return this.error="Error during encoding SID value",we;let n=new Uint8Array(e.byteLength);if(!t){let o=new Uint8Array(e),s=e.byteLength-1;for(let i=0;i<s;i++)n[i]=o[i]|128;n[s]=o[s]}return n.buffer}toString(){let t="";return this.isHexOnly?t=Z.Convert.ToHex(this.valueHexView):t=this.valueDec.toString(),t}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};go.NAME="relativeSidBlock";var qs=class extends Rt{constructor({value:t=kn,...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,n){let o=e;for(;n>0;){let s=new go;if(o=s.fromBER(t,o,n),o===-1)return this.blockLength=0,this.error=s.error,o;this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return o}toBER(t,e){let n=[];for(let o=0;o<this.value.length;o++){let s=this.value[o].toBER(t);if(s.byteLength===0)return this.error=this.value[o].error,we;n.push(s)}return Gc(n)}fromString(t){this.value=[];let e=0,n=0,o="";do{n=t.indexOf(".",e),n===-1?o=t.substring(e):o=t.substring(e,n),e=n+1;let s=new go;if(s.valueDec=parseInt(o,10),isNaN(s.valueDec))return!0;this.value.push(s)}while(n!==-1);return!0}toString(){let t="",e=!1;for(let n=0;n<this.value.length;n++){e=this.value[n].isHexOnly;let o=this.value[n].toString();n!==0&&(t=`${t}.`),e&&(o=`{${o}}`),t+=o}return t}toJSON(){let t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}};qs.NAME="RelativeObjectIdentifierValueBlock";var gh,js=class extends Tt{constructor(t={}){super(t,qs),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};gh=js;F.RelativeObjectIdentifier=gh;js.NAME="RelativeObjectIdentifier";var yh,We=class extends Sr{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};yh=We;F.Sequence=yh;We.NAME="SEQUENCE";var wh,Gs=class extends Sr{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};wh=Gs;F.Set=wh;Gs.NAME="SET";var Ws=class extends Je(Rt){constructor({...t}={}){super(t),this.isHexOnly=!0,this.value=kn}toJSON(){return{...super.toJSON(),value:this.value}}};Ws.NAME="StringValueBlock";var Zs=class extends Ws{};Zs.NAME="SimpleStringValueBlock";var Vt=class extends Ls{constructor({...t}={}){super(t,Zs)}fromBuffer(t){this.valueBlock.value=String.fromCharCode.apply(null,Z.BufferSourceConverter.toUint8Array(t))}fromString(t){let e=t.length,n=this.valueBlock.valueHexView=new Uint8Array(e);for(let o=0;o<e;o++)n[o]=t.charCodeAt(o);this.valueBlock.value=t}};Vt.NAME="SIMPLE STRING";var Ys=class extends Vt{fromBuffer(t){this.valueBlock.valueHexView=Z.BufferSourceConverter.toUint8Array(t);try{this.valueBlock.value=Z.Convert.ToUtf8String(t)}catch(e){this.warnings.push(`Error during "decodeURIComponent": ${e}, using raw string`),this.valueBlock.value=Z.Convert.ToBinary(t)}}fromString(t){this.valueBlock.valueHexView=new Uint8Array(Z.Convert.FromUtf8String(t)),this.valueBlock.value=t}};Ys.NAME="Utf8StringValueBlock";var xh,Ze=class extends Ys{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};xh=Ze;F.Utf8String=xh;Ze.NAME="UTF8String";var Js=class extends Vt{fromBuffer(t){this.valueBlock.value=Z.Convert.ToUtf16String(t),this.valueBlock.valueHexView=Z.BufferSourceConverter.toUint8Array(t)}fromString(t){this.valueBlock.value=t,this.valueBlock.valueHexView=new Uint8Array(Z.Convert.FromUtf16String(t))}};Js.NAME="BmpStringValueBlock";var bh,Xs=class extends Js{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};bh=Xs;F.BmpString=bh;Xs.NAME="BMPString";var Qs=class extends Vt{fromBuffer(t){let e=ArrayBuffer.isView(t)?t.slice().buffer:t.slice(0),n=new Uint8Array(e);for(let o=0;o<n.length;o+=4)n[o]=n[o+3],n[o+1]=n[o+2],n[o+2]=0,n[o+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(e))}fromString(t){let e=t.length,n=this.valueBlock.valueHexView=new Uint8Array(e*4);for(let o=0;o<e;o++){let s=Er(t.charCodeAt(o),8),i=new Uint8Array(s);if(i.length>4)continue;let a=4-i.length;for(let c=i.length-1;c>=0;c--)n[o*4+c+a]=i[c]}this.valueBlock.value=t}};Qs.NAME="UniversalStringValueBlock";var vh,ti=class extends Qs{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};vh=ti;F.UniversalString=vh;ti.NAME="UniversalString";var Eh,ei=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};Eh=ei;F.NumericString=Eh;ei.NAME="NumericString";var Sh,ri=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};Sh=ri;F.PrintableString=Sh;ri.NAME="PrintableString";var Ah,ni=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};Ah=ni;F.TeletexString=Ah;ni.NAME="TeletexString";var Bh,oi=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};Bh=oi;F.VideotexString=Bh;oi.NAME="VideotexString";var kh,si=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};kh=si;F.IA5String=kh;si.NAME="IA5String";var Ih,ii=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};Ih=ii;F.GraphicString=Ih;ii.NAME="GraphicString";var _h,yo=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};_h=yo;F.VisibleString=_h;yo.NAME="VisibleString";var Th,ai=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};Th=ai;F.GeneralString=Th;ai.NAME="GeneralString";var Ch,ci=class extends Vt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};Ch=ci;F.CharacterString=Ch;ci.NAME="CharacterString";var Nh,wo=class extends yo{constructor({value:t,valueDate:e,...n}={}){if(super(n),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,t){this.fromString(t),this.valueBlock.valueHexView=new Uint8Array(t.length);for(let o=0;o<t.length;o++)this.valueBlock.valueHexView[o]=t.charCodeAt(o)}e&&(this.fromDate(e),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(t){this.fromString(String.fromCharCode.apply(null,Z.BufferSourceConverter.toUint8Array(t)))}toBuffer(){let t=this.toString(),e=new ArrayBuffer(t.length),n=new Uint8Array(e);for(let o=0;o<t.length;o++)n[o]=t.charCodeAt(o);return e}fromDate(t){this.year=t.getUTCFullYear(),this.month=t.getUTCMonth()+1,this.day=t.getUTCDate(),this.hour=t.getUTCHours(),this.minute=t.getUTCMinutes(),this.second=t.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(t){let n=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/ig.exec(t);if(n===null){this.error="Wrong input string for conversion";return}let o=parseInt(n[1],10);o>=50?this.year=1900+o:this.year=2e3+o,this.month=parseInt(n[2],10),this.day=parseInt(n[3],10),this.hour=parseInt(n[4],10),this.minute=parseInt(n[5],10),this.second=parseInt(n[6],10)}toString(t="iso"){if(t==="iso"){let e=new Array(7);return e[0]=Zt(this.year<2e3?this.year-1900:this.year-2e3,2),e[1]=Zt(this.month,2),e[2]=Zt(this.day,2),e[3]=Zt(this.hour,2),e[4]=Zt(this.minute,2),e[5]=Zt(this.second,2),e[6]="Z",e.join("")}return super.toString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.toDate().toISOString()}`}toJSON(){return{...super.toJSON(),year:this.year,month:this.month,day:this.day,hour:this.hour,minute:this.minute,second:this.second}}};Nh=wo;F.UTCTime=Nh;wo.NAME="UTCTime";var Ph,ui=class extends wo{constructor(t={}){var e;super(t),(e=this.millisecond)!==null&&e!==void 0||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(t){super.fromDate(t),this.millisecond=t.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(t){let e=!1,n="",o="",s=0,i,a=0,c=0;if(t[t.length-1]==="Z")n=t.substring(0,t.length-1),e=!0;else{let f=new Number(t[t.length-1]);if(isNaN(f.valueOf()))throw new Error("Wrong input string for conversion");n=t}if(e){if(n.indexOf("+")!==-1)throw new Error("Wrong input string for conversion");if(n.indexOf("-")!==-1)throw new Error("Wrong input string for conversion")}else{let f=1,d=n.indexOf("+"),h="";if(d===-1&&(d=n.indexOf("-"),f=-1),d!==-1){if(h=n.substring(d+1),n=n.substring(0,d),h.length!==2&&h.length!==4)throw new Error("Wrong input string for conversion");let w=parseInt(h.substring(0,2),10);if(isNaN(w.valueOf()))throw new Error("Wrong input string for conversion");if(a=f*w,h.length===4){if(w=parseInt(h.substring(2,4),10),isNaN(w.valueOf()))throw new Error("Wrong input string for conversion");c=f*w}}}let u=n.indexOf(".");if(u===-1&&(u=n.indexOf(",")),u!==-1){let f=new Number(`0${n.substring(u)}`);if(isNaN(f.valueOf()))throw new Error("Wrong input string for conversion");s=f.valueOf(),o=n.substring(0,u)}else o=n;switch(!0){case o.length===8:if(i=/(\d{4})(\d{2})(\d{2})/ig,u!==-1)throw new Error("Wrong input string for conversion");break;case o.length===10:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,u!==-1){let f=60*s;this.minute=Math.floor(f),f=60*(f-this.minute),this.second=Math.floor(f),f=1e3*(f-this.second),this.millisecond=Math.floor(f)}break;case o.length===12:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,u!==-1){let f=60*s;this.second=Math.floor(f),f=1e3*(f-this.second),this.millisecond=Math.floor(f)}break;case o.length===14:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,u!==-1){let f=1e3*s;this.millisecond=Math.floor(f)}break;default:throw new Error("Wrong input string for conversion")}let l=i.exec(o);if(l===null)throw new Error("Wrong input string for conversion");for(let f=1;f<l.length;f++)switch(f){case 1:this.year=parseInt(l[f],10);break;case 2:this.month=parseInt(l[f],10);break;case 3:this.day=parseInt(l[f],10);break;case 4:this.hour=parseInt(l[f],10)+a;break;case 5:this.minute=parseInt(l[f],10)+c;break;case 6:this.second=parseInt(l[f],10);break;default:throw new Error("Wrong input string for conversion")}if(e===!1){let f=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=f.getUTCFullYear(),this.month=f.getUTCMonth(),this.day=f.getUTCDay(),this.hour=f.getUTCHours(),this.minute=f.getUTCMinutes(),this.second=f.getUTCSeconds(),this.millisecond=f.getUTCMilliseconds()}}toString(t="iso"){if(t==="iso"){let e=[];return e.push(Zt(this.year,4)),e.push(Zt(this.month,2)),e.push(Zt(this.day,2)),e.push(Zt(this.hour,2)),e.push(Zt(this.minute,2)),e.push(Zt(this.second,2)),this.millisecond!==0&&(e.push("."),e.push(Zt(this.millisecond,3))),e.push("Z"),e.join("")}return super.toString(t)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};Ph=ui;F.GeneralizedTime=Ph;ui.NAME="GeneralizedTime";var Lh,li=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};Lh=li;F.DATE=Lh;li.NAME="DATE";var Uh,fi=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};Uh=fi;F.TimeOfDay=Uh;fi.NAME="TimeOfDay";var Rh,hi=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};Rh=hi;F.DateTime=Rh;hi.NAME="DateTime";var Dh,di=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Dh=di;F.Duration=Dh;di.NAME="Duration";var Fh,pi=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};Fh=pi;F.TIME=Fh;pi.NAME="TIME";function rt(r,t="utf8"){let e=fs[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return e.encoder.encode(r).substring(1)}var xo=class extends Error{constructor(t="An error occurred while verifying a message"){super(t),this.name="VerificationError"}},gi=class extends Error{constructor(t="Missing Web Crypto API"){super(t),this.name="WebCryptoMissingError"}};var $h={get(r=globalThis){let t=r.crypto;if(t?.subtle==null)throw new gi("Missing Web Crypto API. The most likely cause of this error is that this page is being accessed from an insecure context (i.e. not HTTPS). For more information and possible resolutions see https://github.com/libp2p/js-libp2p/blob/main/packages/crypto/README.md#web-crypto-api");return t}};var Ar=$h;async function Mh(r){let t=await Ar.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),e=await vw(t);return{privateKey:e[0],publicKey:e[1]}}async function Vh(r,t){let e=await Ar.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await Ar.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},e,t instanceof Uint8Array?t:t.subarray());return new Uint8Array(n,0,n.byteLength)}async function Oh(r,t,e){let n=await Ar.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return Ar.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,t,e instanceof Uint8Array?e:e.subarray())}async function vw(r){if(r.privateKey==null||r.publicKey==null)throw new St("Private and public key are required");return Promise.all([Ar.get().subtle.exportKey("jwk",r.privateKey),Ar.get().subtle.exportKey("jwk",r.publicKey)])}function Yc(r){if(r.kty!=="RSA")throw new St("invalid key type");if(r.n==null)throw new St("invalid key modulus");return z(r.n,"base64url").length*8}var In=class{type="RSA";_key;_raw;_multihash;constructor(t,e){this._key=t,this._multihash=e}get raw(){return this._raw==null&&(this._raw=bo.jwkToPkix(this._key)),this._raw}toMultihash(){return this._multihash}toCID(){return O.createV1(114,this._multihash)}toString(){return st.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:ot(this.raw,t.raw)}verify(t,e){return Oh(this._key,e,t)}},vo=class{type="RSA";_key;_raw;publicKey;constructor(t,e){this._key=t,this.publicKey=e}get raw(){return this._raw==null&&(this._raw=bo.jwkToPkcs1(this._key)),this._raw}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:ot(this.raw,t.raw)}sign(t){return Vh(this._key,t)}};var yi=8192,Jc=18;function Hh(r){let{result:t}=Zc(r),e=t.valueBlock.value;return{n:Le(e[1]),e:Le(e[2]),d:Le(e[3]),p:Le(e[4]),q:Le(e[5]),dp:Le(e[6]),dq:Le(e[7]),qi:Le(e[8]),kty:"RSA",alg:"RS256"}}function Ew(r){if(r.n==null||r.e==null||r.d==null||r.p==null||r.q==null||r.dp==null||r.dq==null||r.qi==null)throw new St("JWK was missing components");let e=new We({value:[new Ct({value:0}),Ct.fromBigInt(Ue(z(r.n,"base64url"))),Ct.fromBigInt(Ue(z(r.e,"base64url"))),Ct.fromBigInt(Ue(z(r.d,"base64url"))),Ct.fromBigInt(Ue(z(r.p,"base64url"))),Ct.fromBigInt(Ue(z(r.q,"base64url"))),Ct.fromBigInt(Ue(z(r.dp,"base64url"))),Ct.fromBigInt(Ue(z(r.dq,"base64url"))),Ct.fromBigInt(Ue(z(r.qi,"base64url")))]}).toBER();return new Uint8Array(e,0,e.byteLength)}function zh(r){let{result:t}=Zc(r),e=t.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:Le(e[0]),e:Le(e[1])}}function Xc(r){if(r.n==null||r.e==null)throw new St("JWK was missing components");let e=new We({value:[new We({value:[new Bn({value:"1.2.840.113549.1.1.1"}),new Sn]}),new An({valueHex:new We({value:[Ct.fromBigInt(Ue(z(r.n,"base64url"))),Ct.fromBigInt(Ue(z(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(e,0,e.byteLength)}function Le(r){let t=r.valueBlock.valueHexView;for(;t[0]===0;)t=t.subarray(1);return rt(t,"base64url")}function Ue(r){let t=[];return r.forEach(function(e){let n=e.toString(16);n.length%2>0&&(n=`0${n}`),t.push(n)}),BigInt("0x"+t.join(""))}function Kh(r){let t=Hh(r);return qh(t)}function Qc(r){let t=zh(r);if(Yc(t)>yi)throw new tn("Key size is too large");let e=vn(Ne.encode({Type:bt.RSA,Data:r})),n=de(Jc,e);return new In(t,n)}function qh(r){if(Yc(r)>yi)throw new St("Key size is too large");let t=Gh(r),e=vn(Ne.encode({Type:bt.RSA,Data:Xc(t.publicKey)})),n=de(Jc,e);return new vo(t.privateKey,new In(t.publicKey,n))}async function jh(r){if(r>yi)throw new St("Key size is too large");let t=await Mh(r),e=vn(Ne.encode({Type:bt.RSA,Data:Xc(t.publicKey)})),n=de(Jc,e);return new vo(t.privateKey,new In(t.publicKey,n))}function Gh(r){if(r==null)throw new St("Missing key parameter");return{privateKey:r,publicKey:{kty:r.kty,n:r.n,e:r.e}}}var wi=class extends wn{constructor(t,e){super(),this.finished=!1,this.destroyed=!1,Tf(t);let n=io(e);if(this.iHash=t.create(),typeof this.iHash.update!="function")throw new Error("Expected instance of class which extends utils.Hash");this.blockLen=this.iHash.blockLen,this.outputLen=this.iHash.outputLen;let o=this.blockLen,s=new Uint8Array(o);s.set(n.length>o?t.create().update(n).digest():n);for(let i=0;i<s.length;i++)s[i]^=54;this.iHash.update(s),this.oHash=t.create();for(let i=0;i<s.length;i++)s[i]^=106;this.oHash.update(s),s.fill(0)}update(t){return yn(this),this.iHash.update(t),this}digestInto(t){yn(this),gn(t,this.outputLen),this.finished=!0,this.iHash.digestInto(t),this.oHash.update(t),this.oHash.digestInto(t),this.destroy()}digest(){let t=new Uint8Array(this.oHash.outputLen);return this.digestInto(t),t}_cloneInto(t){t||(t=Object.create(Object.getPrototypeOf(this),{}));let{oHash:e,iHash:n,finished:o,destroyed:s,blockLen:i,outputLen:a}=this;return t=t,t.finished=o,t.destroyed=s,t.blockLen=i,t.outputLen=a,t.oHash=e._cloneInto(t.oHash),t.iHash=n._cloneInto(t.iHash),t}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},tu=(r,t,e)=>new wi(r,t).update(e).digest();tu.create=(r,t)=>new wi(r,t);function Wh(r){r.lowS!==void 0&&ge("lowS",r.lowS),r.prehash!==void 0&&ge("prehash",r.prehash)}function Sw(r){let t=uo(r);Ce(t,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:e,Fp:n,a:o}=t;if(e){if(!n.eql(o,n.ZERO))throw new Error("Endomorphism can only be defined for Koblitz curves that have a=0");if(typeof e!="object"||typeof e.beta!="bigint"||typeof e.splitScalar!="function")throw new Error("Expected endomorphism with beta: bigint and splitScalar: function")}return Object.freeze({...t})}var{bytesToNumberBE:Aw,hexToBytes:Bw}=xs,Xe={Err:class extends Error{constructor(t=""){super(t)}},_tlv:{encode:(r,t)=>{let{Err:e}=Xe;if(r<0||r>256)throw new e("tlv.encode: wrong tag");if(t.length&1)throw new e("tlv.encode: unpadded data");let n=t.length/2,o=Or(n);if(o.length/2&128)throw new e("tlv.encode: long form length too big");let s=n>127?Or(o.length/2|128):"";return`${Or(r)}${s}${o}${t}`},decode(r,t){let{Err:e}=Xe,n=0;if(r<0||r>256)throw new e("tlv.encode: wrong tag");if(t.length<2||t[n++]!==r)throw new e("tlv.decode: wrong tlv");let o=t[n++],s=!!(o&128),i=0;if(!s)i=o;else{let c=o&127;if(!c)throw new e("tlv.decode(long): indefinite length not supported");if(c>4)throw new e("tlv.decode(long): byte length is too big");let u=t.subarray(n,n+c);if(u.length!==c)throw new e("tlv.decode: length bytes not complete");if(u[0]===0)throw new e("tlv.decode(long): zero leftmost byte");for(let l of u)i=i<<8|l;if(n+=c,i<128)throw new e("tlv.decode(long): not minimal encoding")}let a=t.subarray(n,n+i);if(a.length!==i)throw new e("tlv.decode: wrong value length");return{v:a,l:t.subarray(n+i)}}},_int:{encode(r){let{Err:t}=Xe;if(r<Qe)throw new t("integer: negative integers are not allowed");let e=Or(r);if(Number.parseInt(e[0],16)&8&&(e="00"+e),e.length&1)throw new t("unexpected assertion");return e},decode(r){let{Err:t}=Xe;if(r[0]&128)throw new t("Invalid signature integer: negative");if(r[0]===0&&!(r[1]&128))throw new t("Invalid signature integer: unnecessary leading zero");return Aw(r)}},toSig(r){let{Err:t,_int:e,_tlv:n}=Xe,o=typeof r=="string"?Bw(r):r;bn(o);let{v:s,l:i}=n.decode(48,o);if(i.length)throw new t("Invalid signature: left bytes after parsing");let{v:a,l:c}=n.decode(2,s),{v:u,l}=n.decode(2,c);if(l.length)throw new t("Invalid signature: left bytes after parsing");return{r:e.decode(a),s:e.decode(u)}},hexFromSig(r){let{_tlv:t,_int:e}=Xe,n=`${t.encode(2,e.encode(r.r))}${t.encode(2,e.encode(r.s))}`;return t.encode(48,n)}},Qe=BigInt(0),Bt=BigInt(1),O8=BigInt(2),Zh=BigInt(3),H8=BigInt(4);function kw(r){let t=Sw(r),{Fp:e}=t,n=xr(t.n,t.nBitLength),o=t.toBytes||((m,g,x)=>{let b=g.toAffine();return qe(Uint8Array.from([4]),e.toBytes(b.x),e.toBytes(b.y))}),s=t.fromBytes||(m=>{let g=m.subarray(1),x=e.fromBytes(g.subarray(0,e.BYTES)),b=e.fromBytes(g.subarray(e.BYTES,2*e.BYTES));return{x,y:b}});function i(m){let{a:g,b:x}=t,b=e.sqr(m),y=e.mul(b,m);return e.add(e.add(y,e.mul(m,g)),x)}if(!e.eql(e.sqr(t.Gy),i(t.Gx)))throw new Error("bad generator point: equation left != right");function a(m){return ao(m,Bt,t.n)}function c(m){let{allowedPrivateKeyLengths:g,nByteLength:x,wrapPrivateKey:b,n:y}=t;if(g&&typeof m!="bigint"){if(gr(m)&&(m=ze(m)),typeof m!="string"||!g.includes(m.length))throw new Error("Invalid key");m=m.padStart(x*2,"0")}let S;try{S=typeof m=="bigint"?m:Ke(pt("private key",m,x))}catch{throw new Error(`private key must be ${x} bytes, hex or bigint, not ${typeof m}`)}return b&&(S=it(S,y)),Gt("private key",S,Bt,y),S}function u(m){if(!(m instanceof d))throw new Error("ProjectivePoint expected")}let l=Kr((m,g)=>{let{px:x,py:b,pz:y}=m;if(e.eql(y,e.ONE))return{x,y:b};let S=m.is0();g==null&&(g=S?e.ONE:e.inv(y));let _=e.mul(x,g),T=e.mul(b,g),E=e.mul(y,g);if(S)return{x:e.ZERO,y:e.ZERO};if(!e.eql(E,e.ONE))throw new Error("invZ was invalid");return{x:_,y:T}}),f=Kr(m=>{if(m.is0()){if(t.allowInfinityPoint&&!e.is0(m.py))return;throw new Error("bad point: ZERO")}let{x:g,y:x}=m.toAffine();if(!e.isValid(g)||!e.isValid(x))throw new Error("bad point: x or y not FE");let b=e.sqr(x),y=i(g);if(!e.eql(b,y))throw new Error("bad point: equation left != right");if(!m.isTorsionFree())throw new Error("bad point: not in prime-order subgroup");return!0});class d{constructor(g,x,b){if(this.px=g,this.py=x,this.pz=b,g==null||!e.isValid(g))throw new Error("x required");if(x==null||!e.isValid(x))throw new Error("y required");if(b==null||!e.isValid(b))throw new Error("z required");Object.freeze(this)}static fromAffine(g){let{x,y:b}=g||{};if(!g||!e.isValid(x)||!e.isValid(b))throw new Error("invalid affine point");if(g instanceof d)throw new Error("projective point not allowed");let y=S=>e.eql(S,e.ZERO);return y(x)&&y(b)?d.ZERO:new d(x,b,e.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(g){let x=e.invertBatch(g.map(b=>b.pz));return g.map((b,y)=>b.toAffine(x[y])).map(d.fromAffine)}static fromHex(g){let x=d.fromAffine(s(pt("pointHex",g)));return x.assertValidity(),x}static fromPrivateKey(g){return d.BASE.multiply(c(g))}static msm(g,x){return Es(d,n,g,x)}_setWindowSize(g){w.setWindowSize(this,g)}assertValidity(){f(this)}hasEvenY(){let{y:g}=this.toAffine();if(e.isOdd)return!e.isOdd(g);throw new Error("Field doesn't support isOdd")}equals(g){u(g);let{px:x,py:b,pz:y}=this,{px:S,py:_,pz:T}=g,E=e.eql(e.mul(x,T),e.mul(S,y)),v=e.eql(e.mul(b,T),e.mul(_,y));return E&&v}negate(){return new d(this.px,e.neg(this.py),this.pz)}double(){let{a:g,b:x}=t,b=e.mul(x,Zh),{px:y,py:S,pz:_}=this,T=e.ZERO,E=e.ZERO,v=e.ZERO,k=e.mul(y,y),V=e.mul(S,S),D=e.mul(_,_),R=e.mul(y,S);return R=e.add(R,R),v=e.mul(y,_),v=e.add(v,v),T=e.mul(g,v),E=e.mul(b,D),E=e.add(T,E),T=e.sub(V,E),E=e.add(V,E),E=e.mul(T,E),T=e.mul(R,T),v=e.mul(b,v),D=e.mul(g,D),R=e.sub(k,D),R=e.mul(g,R),R=e.add(R,v),v=e.add(k,k),k=e.add(v,k),k=e.add(k,D),k=e.mul(k,R),E=e.add(E,k),D=e.mul(S,_),D=e.add(D,D),k=e.mul(D,R),T=e.sub(T,k),v=e.mul(D,V),v=e.add(v,v),v=e.add(v,v),new d(T,E,v)}add(g){u(g);let{px:x,py:b,pz:y}=this,{px:S,py:_,pz:T}=g,E=e.ZERO,v=e.ZERO,k=e.ZERO,V=t.a,D=e.mul(t.b,Zh),R=e.mul(x,S),L=e.mul(b,_),N=e.mul(y,T),P=e.add(x,b),B=e.add(S,_);P=e.mul(P,B),B=e.add(R,L),P=e.sub(P,B),B=e.add(x,y);let A=e.add(S,T);return B=e.mul(B,A),A=e.add(R,N),B=e.sub(B,A),A=e.add(b,y),E=e.add(_,T),A=e.mul(A,E),E=e.add(L,N),A=e.sub(A,E),k=e.mul(V,B),E=e.mul(D,N),k=e.add(E,k),E=e.sub(L,k),k=e.add(L,k),v=e.mul(E,k),L=e.add(R,R),L=e.add(L,R),N=e.mul(V,N),B=e.mul(D,B),L=e.add(L,N),N=e.sub(R,N),N=e.mul(V,N),B=e.add(B,N),R=e.mul(L,B),v=e.add(v,R),R=e.mul(A,B),E=e.mul(P,E),E=e.sub(E,R),R=e.mul(P,L),k=e.mul(A,k),k=e.add(k,R),new d(E,v,k)}subtract(g){return this.add(g.negate())}is0(){return this.equals(d.ZERO)}wNAF(g){return w.wNAFCached(this,g,d.normalizeZ)}multiplyUnsafe(g){Gt("scalar",g,Qe,t.n);let x=d.ZERO;if(g===Qe)return x;if(g===Bt)return this;let{endo:b}=t;if(!b)return w.unsafeLadder(this,g);let{k1neg:y,k1:S,k2neg:_,k2:T}=b.splitScalar(g),E=x,v=x,k=this;for(;S>Qe||T>Qe;)S&Bt&&(E=E.add(k)),T&Bt&&(v=v.add(k)),k=k.double(),S>>=Bt,T>>=Bt;return y&&(E=E.negate()),_&&(v=v.negate()),v=new d(e.mul(v.px,b.beta),v.py,v.pz),E.add(v)}multiply(g){let{endo:x,n:b}=t;Gt("scalar",g,Bt,b);let y,S;if(x){let{k1neg:_,k1:T,k2neg:E,k2:v}=x.splitScalar(g),{p:k,f:V}=this.wNAF(T),{p:D,f:R}=this.wNAF(v);k=w.constTimeNegate(_,k),D=w.constTimeNegate(E,D),D=new d(e.mul(D.px,x.beta),D.py,D.pz),y=k.add(D),S=V.add(R)}else{let{p:_,f:T}=this.wNAF(g);y=_,S=T}return d.normalizeZ([y,S])[0]}multiplyAndAddUnsafe(g,x,b){let y=d.BASE,S=(T,E)=>E===Qe||E===Bt||!T.equals(y)?T.multiplyUnsafe(E):T.multiply(E),_=S(this,x).add(S(g,b));return _.is0()?void 0:_}toAffine(g){return l(this,g)}isTorsionFree(){let{h:g,isTorsionFree:x}=t;if(g===Bt)return!0;if(x)return x(d,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h:g,clearCofactor:x}=t;return g===Bt?this:x?x(d,this):this.multiplyUnsafe(t.h)}toRawBytes(g=!0){return ge("isCompressed",g),this.assertValidity(),o(d,this,g)}toHex(g=!0){return ge("isCompressed",g),ze(this.toRawBytes(g))}}d.BASE=new d(t.Gx,t.Gy,e.ONE),d.ZERO=new d(e.ZERO,e.ONE,e.ZERO);let h=t.nBitLength,w=vs(d,t.endo?Math.ceil(h/2):h);return{CURVE:t,ProjectivePoint:d,normPrivateKeyToScalar:c,weierstrassEquation:i,isWithinCurveOrder:a}}function Iw(r){let t=uo(r);return Ce(t,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...t})}function Yh(r){let t=Iw(r),{Fp:e,n}=t,o=e.BYTES+1,s=2*e.BYTES+1;function i(N){return it(N,n)}function a(N){return bs(N,n)}let{ProjectivePoint:c,normPrivateKeyToScalar:u,weierstrassEquation:l,isWithinCurveOrder:f}=kw({...t,toBytes(N,P,B){let A=P.toAffine(),C=e.toBytes(A.x),$=qe;return ge("isCompressed",B),B?$(Uint8Array.from([P.hasEvenY()?2:3]),C):$(Uint8Array.from([4]),C,e.toBytes(A.y))},fromBytes(N){let P=N.length,B=N[0],A=N.subarray(1);if(P===o&&(B===2||B===3)){let C=Ke(A);if(!ao(C,Bt,e.ORDER))throw new Error("Point is not on curve");let $=l(C),H;try{H=e.sqrt($)}catch(Y){let W=Y instanceof Error?": "+Y.message:"";throw new Error("Point is not on curve"+W)}let K=(H&Bt)===Bt;return(B&1)===1!==K&&(H=e.neg(H)),{x:C,y:H}}else if(P===s&&B===4){let C=e.fromBytes(A.subarray(0,e.BYTES)),$=e.fromBytes(A.subarray(e.BYTES,2*e.BYTES));return{x:C,y:$}}else throw new Error(`Point of length ${P} was invalid. Expected ${o} compressed bytes or ${s} uncompressed bytes`)}}),d=N=>ze(wr(N,t.nByteLength));function h(N){let P=n>>Bt;return N>P}function w(N){return h(N)?i(-N):N}let m=(N,P,B)=>Ke(N.slice(P,B));class g{constructor(P,B,A){this.r=P,this.s=B,this.recovery=A,this.assertValidity()}static fromCompact(P){let B=t.nByteLength;return P=pt("compactSignature",P,B*2),new g(m(P,0,B),m(P,B,2*B))}static fromDER(P){let{r:B,s:A}=Xe.toSig(pt("DER",P));return new g(B,A)}assertValidity(){Gt("r",this.r,Bt,n),Gt("s",this.s,Bt,n)}addRecoveryBit(P){return new g(this.r,this.s,P)}recoverPublicKey(P){let{r:B,s:A,recovery:C}=this,$=T(pt("msgHash",P));if(C==null||![0,1,2,3].includes(C))throw new Error("recovery id invalid");let H=C===2||C===3?B+t.n:B;if(H>=e.ORDER)throw new Error("recovery id 2 or 3 invalid");let K=C&1?"03":"02",G=c.fromHex(K+d(H)),Y=a(H),W=i(-$*Y),nt=i(A*Y),ct=c.BASE.multiplyAndAddUnsafe(G,W,nt);if(!ct)throw new Error("point at infinify");return ct.assertValidity(),ct}hasHighS(){return h(this.s)}normalizeS(){return this.hasHighS()?new g(this.r,i(-this.s),this.recovery):this}toDERRawBytes(){return Hr(this.toDERHex())}toDERHex(){return Xe.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return Hr(this.toCompactHex())}toCompactHex(){return d(this.r)+d(this.s)}}let x={isValidPrivateKey(N){try{return u(N),!0}catch{return!1}},normPrivateKeyToScalar:u,randomPrivateKey:()=>{let N=Dc(t.n);return Hf(t.randomBytes(N),t.n)},precompute(N=8,P=c.BASE){return P._setWindowSize(N),P.multiply(BigInt(3)),P}};function b(N,P=!0){return c.fromPrivateKey(N).toRawBytes(P)}function y(N){let P=gr(N),B=typeof N=="string",A=(P||B)&&N.length;return P?A===o||A===s:B?A===2*o||A===2*s:N instanceof c}function S(N,P,B=!0){if(y(N))throw new Error("first arg must be private key");if(!y(P))throw new Error("second arg must be public key");return c.fromHex(P).multiply(u(N)).toRawBytes(B)}let _=t.bits2int||function(N){let P=Ke(N),B=N.length*8-t.nBitLength;return B>0?P>>BigInt(B):P},T=t.bits2int_modN||function(N){return i(_(N))},E=co(t.nBitLength);function v(N){return Gt(`num < 2^${t.nBitLength}`,N,Qe,E),wr(N,t.nByteLength)}function k(N,P,B=V){if(["recovered","canonical"].some(Et=>Et in B))throw new Error("sign() legacy options not supported");let{hash:A,randomBytes:C}=t,{lowS:$,prehash:H,extraEntropy:K}=B;$==null&&($=!0),N=pt("msgHash",N),Wh(B),H&&(N=pt("prehashed msgHash",A(N)));let G=T(N),Y=u(P),W=[v(Y),v(G)];if(K!=null&&K!==!1){let Et=K===!0?C(e.BYTES):K;W.push(pt("extraEntropy",Et))}let nt=qe(...W),ct=G;function vt(Et){let It=_(Et);if(!f(It))return;let $t=a(It),wt=c.BASE.multiply(It).toAffine(),Kt=i(wt.x);if(Kt===Qe)return;let $e=i($t*i(ct+Kt*Y));if($e===Qe)return;let Gn=(wt.x===Kt?0:2)|Number(wt.y&Bt),Wn=$e;return $&&h($e)&&(Wn=w($e),Gn^=1),new g(Kt,Wn,Gn)}return{seed:nt,k2sig:vt}}let V={lowS:t.lowS,prehash:!1},D={lowS:t.lowS,prehash:!1};function R(N,P,B=V){let{seed:A,k2sig:C}=k(N,P,B),$=t;return Pc($.hash.outputLen,$.nByteLength,$.hmac)(A,C)}c.BASE._setWindowSize(8);function L(N,P,B,A=D){let C=N;if(P=pt("msgHash",P),B=pt("publicKey",B),"strict"in A)throw new Error("options.strict was renamed to lowS");Wh(A);let{lowS:$,prehash:H}=A,K,G;try{if(typeof C=="string"||gr(C))try{K=g.fromDER(C)}catch(wt){if(!(wt instanceof Xe.Err))throw wt;K=g.fromCompact(C)}else if(typeof C=="object"&&typeof C.r=="bigint"&&typeof C.s=="bigint"){let{r:wt,s:Kt}=C;K=new g(wt,Kt)}else throw new Error("PARSE");G=c.fromHex(B)}catch(wt){if(wt.message==="PARSE")throw new Error("signature must be Signature instance, Uint8Array or hex string");return!1}if($&&K.hasHighS())return!1;H&&(P=t.hash(P));let{r:Y,s:W}=K,nt=T(P),ct=a(W),vt=i(nt*ct),Et=i(Y*ct),It=c.BASE.multiplyAndAddUnsafe(G,vt,Et)?.toAffine();return It?i(It.x)===Y:!1}return{CURVE:t,getPublicKey:b,getSharedSecret:S,sign:R,verify:L,ProjectivePoint:c,Signature:g,utils:x}}function _w(r){return{hash:r,hmac:(t,...e)=>tu(r,t,Ac(...e)),randomBytes:gs}}function Jh(r,t){let e=n=>Yh({...r,..._w(n)});return Object.freeze({...e(t),create:e})}var td=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),Xh=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),Tw=BigInt(1),eu=BigInt(2),Qh=(r,t)=>(r+t/eu)/t;function Cw(r){let t=td,e=BigInt(3),n=BigInt(6),o=BigInt(11),s=BigInt(22),i=BigInt(23),a=BigInt(44),c=BigInt(88),u=r*r*r%t,l=u*u*r%t,f=lt(l,e,t)*l%t,d=lt(f,e,t)*l%t,h=lt(d,eu,t)*u%t,w=lt(h,o,t)*h%t,m=lt(w,s,t)*w%t,g=lt(m,a,t)*m%t,x=lt(g,c,t)*g%t,b=lt(x,a,t)*m%t,y=lt(b,e,t)*l%t,S=lt(y,i,t)*w%t,_=lt(S,n,t)*u%t,T=lt(_,eu,t);if(!ru.eql(ru.sqr(T),r))throw new Error("Cannot find square root");return T}var ru=xr(td,void 0,void 0,{sqrt:Cw}),Gr=Jh({a:BigInt(0),b:BigInt(7),Fp:ru,n:Xh,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let t=Xh,e=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-Tw*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),o=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),s=e,i=BigInt("0x100000000000000000000000000000000"),a=Qh(s*r,t),c=Qh(-n*r,t),u=it(r-a*e-c*o,t),l=it(-a*n-c*s,t),f=u>i,d=l>i;if(f&&(u=t-u),d&&(l=t-l),u>i||l>i)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:f,k1:u,k2neg:d,k2:l}}}},vn),J8=BigInt(0);var X8=Gr.ProjectivePoint;function ed(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function rd(r,t,e){let n=dr.digest(e instanceof Uint8Array?e:e.subarray());if(ed(n))return n.then(({digest:o})=>Gr.verify(t,o,r)).catch(o=>{throw new xo(String(o))});try{return Gr.verify(t,n.digest,r)}catch(o){throw new xo(String(o))}}var xi=class{type="secp256k1";raw;_key;constructor(t){this._key=od(t),this.raw=nd(this._key)}toMultihash(){return jt.digest(ks(this))}toCID(){return O.createV1(114,this.toMultihash())}toString(){return st.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:ot(this.raw,t.raw)}verify(t,e){return rd(this._key,e,t)}};function nu(r){return new xi(r)}function nd(r){return Gr.ProjectivePoint.fromHex(r).toRawBytes(!0)}function od(r){try{return Gr.ProjectivePoint.fromHex(r),r}catch(t){throw new tn(String(t))}}function sd(r){let{Type:t,Data:e}=Ne.decode(r),n=e??new Uint8Array;switch(t){case bt.RSA:return Qc(n);case bt.Ed25519:return Oc(n);case bt.secp256k1:return nu(n);default:throw new en}}function bi(r){let{Type:t,Data:e}=Ne.decode(r.digest),n=e??new Uint8Array;switch(t){case bt.Ed25519:return Oc(n);case bt.secp256k1:return nu(n);default:throw new en}}function ks(r){return Ne.encode({Type:bt[r.type],Data:r.raw})}var id=Symbol.for("nodejs.util.inspect.custom"),Nw=114,Eo=class{type;multihash;publicKey;string;constructor(t){this.type=t.type,this.multihash=t.multihash,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Ua]=!0;toString(){return this.string==null&&(this.string=st.encode(this.multihash.bytes).slice(1)),this.string}toMultihash(){return this.multihash}toCID(){return O.createV1(Nw,this.multihash)}toJSON(){return this.toString()}equals(t){if(t==null)return!1;if(t instanceof Uint8Array)return ot(this.multihash.bytes,t);if(typeof t=="string")return this.toString()===t;if(t?.toMultihash()?.bytes!=null)return ot(this.multihash.bytes,t.toMultihash().bytes);throw new Error("not valid Id")}[id](){return`PeerId(${this.toString()})`}},vi=class extends Eo{type="RSA";publicKey;constructor(t){super({...t,type:"RSA"}),this.publicKey=t.publicKey}},Ei=class extends Eo{type="Ed25519";publicKey;constructor(t){super({...t,type:"Ed25519"}),this.publicKey=t.publicKey}},Si=class extends Eo{type="secp256k1";publicKey;constructor(t){super({...t,type:"secp256k1"}),this.publicKey=t.publicKey}},Pw=2336,So=class{type="url";multihash;publicKey;url;constructor(t){this.url=t.toString(),this.multihash=jt.digest(z(this.url))}[id](){return`PeerId(${this.url})`}[Ua]=!0;toString(){return this.toCID().toString()}toMultihash(){return this.multihash}toCID(){return O.createV1(Pw,this.toMultihash())}toJSON(){return this.toString()}equals(t){return t==null?!1:(t instanceof Uint8Array&&(t=rt(t)),t.toString()===this.toString())}};var Lw=114,ad=2336;function cd(r,t){let e;if(r.charAt(0)==="1"||r.charAt(0)==="Q")e=pe(st.decode(`z${r}`));else{if(t==null)throw new St('Please pass a multibase decoder for strings that do not start with "1" or "Q"');e=pe(t.decode(r))}return ud(e)}function ud(r){if(Rw(r))return new vi({multihash:r});if(Uw(r))try{let t=bi(r);if(t.type==="Ed25519")return new Ei({multihash:r,publicKey:t});if(t.type==="secp256k1")return new Si({multihash:r,publicKey:t})}catch{let e=rt(r.digest);return new So(new URL(e))}throw new cr("Supplied PeerID Multihash is invalid")}function ld(r){if(r?.multihash==null||r.version==null||r.version===1&&r.code!==Lw&&r.code!==ad)throw new Xo("Supplied PeerID CID is invalid");if(r.code===ad){let t=rt(r.multihash.digest);return new So(new URL(t))}return ud(r.multihash)}function Uw(r){return r.code===jt.code}function Rw(r){return r.code===dr.code}var ou=64,xe=class{fp;h;seed;constructor(t,e,n,o=2){if(o>ou)throw new TypeError("Invalid Fingerprint Size");let s=e.hashV(t,n),i=Xl(o);for(let a=0;a<i.length;a++)i[a]=s[a];i.length===0&&(i[0]=7),this.fp=i,this.h=e,this.seed=n}hash(){return this.h.hash(this.fp,this.seed)}equals(t){return t?.fp instanceof Uint8Array?ot(this.fp,t.fp):!1}};function Wr(r,t){return Math.floor(Math.random()*(t-r))+r}var Zr=class{contents;constructor(t){this.contents=new Array(t).fill(null)}has(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");return this.contents.some(e=>t.equals(e))}add(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");for(let e=0;e<this.contents.length;e++)if(this.contents[e]==null)return this.contents[e]=t,!0;return!0}swap(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");let e=Wr(0,this.contents.length-1),n=this.contents[e];return this.contents[e]=t,n}remove(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");let e=this.contents.findIndex(n=>t.equals(n));return e>-1?(this.contents[e]=null,!0):!1}};var su={32:16777619n,64:1099511628211n,128:309485009821345068724781371n,256:374144419156711147060143317175368453031918731002211n,512:35835915874844867368919076489095108449946327955754392558399825615420669938882575126094039892345713852759n,1024:5016456510113118655434598811035278955030765345404790744303017523831112055108147451509157692220295382716162651878526895249385292291816524375083746691371804094271873160484737966720260389217684476157468082573n},pd={32:2166136261n,64:14695981039346656037n,128:144066263297769815596495629667062367629n,256:100029257958052580907070968620625704837092796014241193945225284501741471925557n,512:9659303129496669498009435400716310466090418745672637896108374329434462657994582932197716438449813051892206539805784495328239340083876191928701583869517785n,1024:14197795064947621068722070641403218320880622795441933960878474914617582723252296732303717722150864096521202355549365628174669108571814760471015076148029755969804077320157692458563003215304957150157403644460363550505412711285966361610267868082893823963790439336411086884584107735010676915n},md=new globalThis.TextEncoder;function Dw(r,t){let e=su[t],n=pd[t];for(let o=0;o<r.length;o++)n^=BigInt(r[o]),n=BigInt.asUintN(t,n*e);return n}function Fw(r,t,e){if(e.length===0)throw new Error("The `utf8Buffer` option must have a length greater than zero");let n=su[t],o=pd[t],s=r;for(;s.length>0;){let i=md.encodeInto(s,e);s=s.slice(i.read);for(let a=0;a<i.written;a++)o^=BigInt(e[a]),o=BigInt.asUintN(t,o*n)}return o}function iu(r,{size:t=32,utf8Buffer:e}={}){if(!su[t])throw new Error("The `size` option must be one of 32, 64, 128, 256, 512, or 1024");if(typeof r=="string"){if(e)return Fw(r,t,e);r=md.encode(r)}return Dw(r,t)}var $w=Lr(dd(),1);var Bo={hash:r=>Number(iu(r,{size:32})),hashV:(r,t)=>Mw(Bo.hash(r,t))};function Mw(r){let t=r.toString(16);return t.length%2===1&&(t=`0${t}`),z(t,"base16")}var Vw=500,ko=class{bucketSize;filterSize;fingerprintSize;buckets;count;hash;seed;constructor(t){this.filterSize=t.filterSize,this.bucketSize=t.bucketSize??4,this.fingerprintSize=t.fingerprintSize??2,this.count=0,this.buckets=[],this.hash=t.hash??Bo,this.seed=t.seed??Wr(0,Math.pow(2,10))}add(t){typeof t=="string"&&(t=z(t));let e=new xe(t,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(t,this.seed)%this.filterSize,o=(n^e.hash())%this.filterSize;if(this.buckets[n]==null&&(this.buckets[n]=new Zr(this.bucketSize)),this.buckets[o]==null&&(this.buckets[o]=new Zr(this.bucketSize)),this.buckets[n].add(e)||this.buckets[o].add(e))return this.count++,!0;let s=[n,o],i=s[Wr(0,s.length-1)];this.buckets[i]==null&&(this.buckets[i]=new Zr(this.bucketSize));for(let a=0;a<Vw;a++){let c=this.buckets[i].swap(e);if(c!=null&&(i=(i^c.hash())%this.filterSize,this.buckets[i]==null&&(this.buckets[i]=new Zr(this.bucketSize)),this.buckets[i].add(c)))return this.count++,!0}return!1}has(t){typeof t=="string"&&(t=z(t));let e=new xe(t,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(t,this.seed)%this.filterSize,o=this.buckets[n]?.has(e)??!1;if(o)return o;let s=(n^e.hash())%this.filterSize;return this.buckets[s]?.has(e)??!1}remove(t){typeof t=="string"&&(t=z(t));let e=new xe(t,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(t,this.seed)%this.filterSize,o=this.buckets[n]?.remove(e)??!1;if(o)return this.count--,o;let s=(n^e.hash())%this.filterSize,i=this.buckets[s]?.remove(e)??!1;return i&&this.count--,i}get reliable(){return Math.floor(100*(this.count/this.filterSize))<=90}},Ow={1:.5,2:.84,4:.95,8:.98};function Hw(r=.001){return r>.002?2:r>1e-5?4:8}function gd(r,t=.001){let e=Hw(t),n=Ow[e],o=Math.round(r/n),s=Math.min(Math.ceil(Math.log2(1/t)+Math.log2(2*e)),ou);return{filterSize:o,bucketSize:e,fingerprintSize:s}}var Bi=class{filterSize;bucketSize;fingerprintSize;scale;filterSeries;hash;seed;constructor(t){this.bucketSize=t.bucketSize??4,this.filterSize=t.filterSize??(1<<18)/this.bucketSize,this.fingerprintSize=t.fingerprintSize??2,this.scale=t.scale??2,this.hash=t.hash??Bo,this.seed=t.seed??Wr(0,Math.pow(2,10)),this.filterSeries=[new ko({filterSize:this.filterSize,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed})]}add(t){if(typeof t=="string"&&(t=z(t)),this.has(t))return!0;let e=this.filterSeries.find(n=>n.reliable);if(e==null){let n=this.filterSize*Math.pow(this.scale,this.filterSeries.length);e=new ko({filterSize:n,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed}),this.filterSeries.push(e)}return e.add(t)}has(t){typeof t=="string"&&(t=z(t));for(let e=0;e<this.filterSeries.length;e++)if(this.filterSeries[e].has(t))return!0;return!1}remove(t){typeof t=="string"&&(t=z(t));for(let e=0;e<this.filterSeries.length;e++)if(this.filterSeries[e].remove(t))return!0;return!1}get count(){return this.filterSeries.reduce((t,e)=>t+e.count,0)}};function au(r,t=.001,e){return new Bi({...gd(r,t),...e??{}})}function zw(r,t){try{if(typeof r=="string"&&r.length>0)return Kw(r);if(typeof r=="number"&&isFinite(r))return t?.long?jw(r):qw(r);throw new Error("Value is not a string or number.")}catch(e){let n=Gw(e)?`${e.message}. value=${JSON.stringify(r)}`:"An unknown error has occured.";throw new Error(n)}}function Kw(r){if(r=String(r),r.length>100)throw new Error("Value exceeds the maximum length of 100 characters.");let t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(r);if(!t)return NaN;let e=parseFloat(t[1]),n=(t[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return e*315576e5;case"weeks":case"week":case"w":return e*6048e5;case"days":case"day":case"d":return e*864e5;case"hours":case"hour":case"hrs":case"hr":case"h":return e*36e5;case"minutes":case"minute":case"mins":case"min":case"m":return e*6e4;case"seconds":case"second":case"secs":case"sec":case"s":return e*1e3;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return e;default:throw new Error(`The unit ${n} was matched, but no matching case exists.`)}}var Ii=zw;function qw(r){let t=Math.abs(r);return t>=864e5?`${Math.round(r/864e5)}d`:t>=36e5?`${Math.round(r/36e5)}h`:t>=6e4?`${Math.round(r/6e4)}m`:t>=1e3?`${Math.round(r/1e3)}s`:`${r}ms`}function jw(r){let t=Math.abs(r);return t>=864e5?ki(r,t,864e5,"day"):t>=36e5?ki(r,t,36e5,"hour"):t>=6e4?ki(r,t,6e4,"minute"):t>=1e3?ki(r,t,1e3,"second"):`${r} ms`}function ki(r,t,e,n){let o=t>=e*1.5;return`${Math.round(r/e)} ${n}${o?"s":""}`}function Gw(r){return typeof r=="object"&&r!==null&&"message"in r}function cu(r){e.debug=e,e.default=e,e.coerce=c,e.disable=s,e.enable=o,e.enabled=i,e.humanize=Ii,e.destroy=u,Object.keys(r).forEach(l=>{e[l]=r[l]}),e.names=[],e.skips=[],e.formatters={};function t(l){let f=0;for(let d=0;d<l.length;d++)f=(f<<5)-f+l.charCodeAt(d),f|=0;return e.colors[Math.abs(f)%e.colors.length]}e.selectColor=t;function e(l){let f,d=null,h,w;function m(...g){if(!m.enabled)return;let x=m,b=Number(new Date),y=b-(f||b);x.diff=y,x.prev=f,x.curr=b,f=b,g[0]=e.coerce(g[0]),typeof g[0]!="string"&&g.unshift("%O");let S=0;g[0]=g[0].replace(/%([a-zA-Z%])/g,(T,E)=>{if(T==="%%")return"%";S++;let v=e.formatters[E];if(typeof v=="function"){let k=g[S];T=v.call(x,k),g.splice(S,1),S--}return T}),e.formatArgs.call(x,g),(x.log||e.log).apply(x,g)}return m.namespace=l,m.useColors=e.useColors(),m.color=e.selectColor(l),m.extend=n,m.destroy=e.destroy,Object.defineProperty(m,"enabled",{enumerable:!0,configurable:!1,get:()=>d!==null?d:(h!==e.namespaces&&(h=e.namespaces,w=e.enabled(l)),w),set:g=>{d=g}}),typeof e.init=="function"&&e.init(m),m}function n(l,f){let d=e(this.namespace+(typeof f>"u"?":":f)+l);return d.log=this.log,d}function o(l){e.save(l),e.namespaces=l,e.names=[],e.skips=[];let f,d=(typeof l=="string"?l:"").split(/[\s,]+/),h=d.length;for(f=0;f<h;f++)d[f]&&(l=d[f].replace(/\*/g,".*?"),l[0]==="-"?e.skips.push(new RegExp("^"+l.substr(1)+"$")):e.names.push(new RegExp("^"+l+"$")))}function s(){let l=[...e.names.map(a),...e.skips.map(a).map(f=>"-"+f)].join(",");return e.enable(""),l}function i(l){if(l[l.length-1]==="*")return!0;let f,d;for(f=0,d=e.skips.length;f<d;f++)if(e.skips[f].test(l))return!1;for(f=0,d=e.names.length;f<d;f++)if(e.names[f].test(l))return!0;return!1}function a(l){return l.toString().substring(2,l.toString().length-2).replace(/\.\*\?$/,"*")}function c(l){return l instanceof Error?l.stack??l.message:l}function u(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return e.setupFormatters(e.formatters),e.enable(e.load()),e}var _i=tx(),Ww=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function Zw(){return typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)?!0:typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/(edge|trident)\/(\d+)/)!=null?!1:typeof document<"u"&&document.documentElement?.style?.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/firefox\/(\d+)/)!=null&&parseInt(RegExp.$1,10)>=31||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/applewebkit\/(\d+)/)}function Yw(r){if(r[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+r[0]+(this.useColors?"%c ":" ")+"+"+Ii(this.diff),!this.useColors)return;let t="color: "+this.color;r.splice(1,0,t,"color: inherit");let e=0,n=0;r[0].replace(/%[a-zA-Z%]/g,o=>{o!=="%%"&&(e++,o==="%c"&&(n=e))}),r.splice(n,0,t)}var Jw=console.debug??console.log??(()=>{});function Xw(r){try{r?_i?.setItem("debug",r):_i?.removeItem("debug")}catch{}}function Qw(){let r;try{r=_i?.getItem("debug")}catch{}return!r&&typeof globalThis.process<"u"&&"env"in globalThis.process&&(r=globalThis.process.env.DEBUG),r}function tx(){try{return localStorage}catch{}}function ex(r){r.j=function(t){try{return JSON.stringify(t)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}}var yd=cu({formatArgs:Yw,save:Xw,load:Qw,useColors:Zw,setupFormatters:ex,colors:Ww,storage:_i,log:Jw});var Yt=yd;Yt.formatters.b=r=>r==null?"undefined":st.baseEncode(r);Yt.formatters.t=r=>r==null?"undefined":_t.baseEncode(r);Yt.formatters.m=r=>r==null?"undefined":Te.baseEncode(r);Yt.formatters.p=r=>r==null?"undefined":r.toString();Yt.formatters.c=r=>r==null?"undefined":r.toString();Yt.formatters.k=r=>r==null?"undefined":r.toString();Yt.formatters.a=r=>r==null?"undefined":r.toString();Yt.formatters.e=r=>r==null?"undefined":wd(r.stack)??wd(r.message)??r.toString();function rx(r){let t=()=>{};return t.enabled=!1,t.color="",t.diff=0,t.log=()=>{},t.namespace=r,t.destroy=()=>!0,t.extend=()=>t,t}function xd(){return{forComponent(r){return te(r)}}}function te(r){let t=rx(`${r}:trace`);return Yt.enabled(`${r}:trace`)&&Yt.names.map(e=>e.toString()).find(e=>e.includes(":trace"))!=null&&(t=Yt(`${r}:trace`)),Object.assign(Yt(r),{error:Yt(`${r}:error`),trace:t})}function wd(r){if(r!=null&&(r=r.trim(),r.length!==0))return r}var lu=Lr(vd(),1);var _o=class extends Error{constructor(t){super(t),this.name="TimeoutError"}},fu=class extends Error{constructor(t){super(),this.name="AbortError",this.message=t}},Ed=r=>globalThis.DOMException===void 0?new fu(r):new DOMException(r),Sd=r=>{let t=r.reason===void 0?Ed("This operation was aborted."):r.reason;return t instanceof Error?t:Ed(t)};function To(r,t){let{milliseconds:e,fallback:n,message:o,customTimers:s={setTimeout,clearTimeout}}=t,i,c=new Promise((u,l)=>{if(typeof e!="number"||Math.sign(e)!==1)throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${e}\``);if(t.signal){let{signal:d}=t;d.aborted&&l(Sd(d));let h=()=>{l(Sd(d))};d.addEventListener("abort",h,{once:!0}),r.finally(()=>{d.removeEventListener("abort",h)})}if(e===Number.POSITIVE_INFINITY){r.then(u,l);return}let f=new _o;i=s.setTimeout.call(void 0,()=>{if(n){try{u(n())}catch(d){l(d)}return}typeof r.cancel=="function"&&r.cancel(),o===!1?u():o instanceof Error?l(o):(f.message=o??`Promise timed out after ${e} milliseconds`,l(f))},e),(async()=>{try{u(await r)}catch(d){l(d)}})()}).finally(()=>{c.clear()});return c.clear=()=>{s.clearTimeout.call(void 0,i),i=void 0},c}function hu(r,t,e){let n=0,o=r.length;for(;o>0;){let s=Math.trunc(o/2),i=n+s;e(r[i],t)<=0?(n=++i,o-=s+1):o=s}return n}var Co=class{#t=[];enqueue(t,e){e={priority:0,...e};let n={priority:e.priority,run:t};if(this.size&&this.#t[this.size-1].priority>=e.priority){this.#t.push(n);return}let o=hu(this.#t,n,(s,i)=>i.priority-s.priority);this.#t.splice(o,0,n)}dequeue(){return this.#t.shift()?.run}filter(t){return this.#t.filter(e=>e.priority===t.priority).map(e=>e.run)}get size(){return this.#t.length}};var Re=class extends lu.default{#t;#e;#r=0;#o;#a;#u=0;#s;#l;#n;#m;#i=0;#f;#c;#g;timeout;constructor(t){if(super(),t={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:Co,...t},!(typeof t.intervalCap=="number"&&t.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${t.intervalCap?.toString()??""}\` (${typeof t.intervalCap})`);if(t.interval===void 0||!(Number.isFinite(t.interval)&&t.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${t.interval?.toString()??""}\` (${typeof t.interval})`);this.#t=t.carryoverConcurrencyCount,this.#e=t.intervalCap===Number.POSITIVE_INFINITY||t.interval===0,this.#o=t.intervalCap,this.#a=t.interval,this.#n=new t.queueClass,this.#m=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#g=t.throwOnTimeout===!0,this.#c=t.autoStart===!1}get#x(){return this.#e||this.#r<this.#o}get#b(){return this.#i<this.#f}#v(){this.#i--,this.#h(),this.emit("next")}#E(){this.#w(),this.#y(),this.#l=void 0}get#S(){let t=Date.now();if(this.#s===void 0){let e=this.#u-t;if(e<0)this.#r=this.#t?this.#i:0;else return this.#l===void 0&&(this.#l=setTimeout(()=>{this.#E()},e)),!0}return!1}#h(){if(this.#n.size===0)return this.#s&&clearInterval(this.#s),this.#s=void 0,this.emit("empty"),this.#i===0&&this.emit("idle"),!1;if(!this.#c){let t=!this.#S;if(this.#x&&this.#b){let e=this.#n.dequeue();return e?(this.emit("active"),e(),t&&this.#y(),!0):!1}}return!1}#y(){this.#e||this.#s!==void 0||(this.#s=setInterval(()=>{this.#w()},this.#a),this.#u=Date.now()+this.#a)}#w(){this.#r===0&&this.#i===0&&this.#s&&(clearInterval(this.#s),this.#s=void 0),this.#r=this.#t?this.#i:0,this.#d()}#d(){for(;this.#h(););}get concurrency(){return this.#f}set concurrency(t){if(!(typeof t=="number"&&t>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${t}\` (${typeof t})`);this.#f=t,this.#d()}async#A(t){return new Promise((e,n)=>{t.addEventListener("abort",()=>{n(t.reason)},{once:!0})})}async add(t,e={}){return e={timeout:this.timeout,throwOnTimeout:this.#g,...e},new Promise((n,o)=>{this.#n.enqueue(async()=>{this.#i++,this.#r++;try{e.signal?.throwIfAborted();let s=t({signal:e.signal});e.timeout&&(s=To(Promise.resolve(s),{milliseconds:e.timeout})),e.signal&&(s=Promise.race([s,this.#A(e.signal)]));let i=await s;n(i),this.emit("completed",i)}catch(s){if(s instanceof _o&&!e.throwOnTimeout){n();return}o(s),this.emit("error",s)}finally{this.#v()}},e),this.emit("add"),this.#h()})}async addAll(t,e){return Promise.all(t.map(async n=>this.add(n,e)))}start(){return this.#c?(this.#c=!1,this.#d(),this):this}pause(){this.#c=!0}clear(){this.#n=new this.#m}async onEmpty(){this.#n.size!==0&&await this.#p("empty")}async onSizeLessThan(t){this.#n.size<t||await this.#p("next",()=>this.#n.size<t)}async onIdle(){this.#i===0&&this.#n.size===0||await this.#p("idle")}async#p(t,e){return new Promise(n=>{let o=()=>{e&&!e()||(this.off(t,o),n())};this.on(t,o)})}get size(){return this.#n.size}sizeBy(t){return this.#n.filter(t).length}get pending(){return this.#i}get isPaused(){return this.#c}};function Ci(r){let t=[be.A];return r==null?t:Array.isArray(r)?r.length===0?t:r:[r]}var du=60;function Ni(r){return{Status:r.Status??0,TC:r.TC??r.flag_tc??!1,RD:r.RD??r.flag_rd??!1,RA:r.RA??r.flag_ra??!1,AD:r.AD??r.flag_ad??!1,CD:r.CD??r.flag_cd??!1,Question:(r.Question??r.questions??[]).map(t=>({name:t.name,type:be[t.type]})),Answer:(r.Answer??r.answers??[]).map(t=>({name:t.name,type:be[t.type],TTL:t.TTL??t.ttl??du,data:t.data instanceof Uint8Array?rt(t.data):t.data}))}}var sx=4;function pu(r,t={}){let e=new Re({concurrency:t.queryConcurrency??sx});return async(n,o={})=>{let s=new URLSearchParams;s.set("name",n),Ci(o.types).forEach(a=>{s.append("type",be[a])}),o.onProgress?.(new tt("dns:query",{detail:n}));let i=await e.add(async()=>{let a=await fetch(`${r}?${s}`,{headers:{accept:"application/dns-json"},signal:o?.signal});if(a.status!==200)throw new Error(`Unexpected HTTP status: ${a.status} - ${a.statusText}`);let c=Ni(await a.json());return o.onProgress?.(new tt("dns:response",{detail:c})),c},{signal:o.signal});if(i==null)throw new Error("No DNS response received");return i}}function Ad(){return[pu("https://cloudflare-dns.com/dns-query"),pu("https://dns.google/resolve")]}var Id=Lr(kd(),1);var mu=class{lru;constructor(t){this.lru=(0,Id.default)(t)}get(t,e){let n=!0,o=[];for(let s of e){let i=this.getAnswers(t,s);if(i.length===0){n=!1;break}o.push(...i)}if(n)return Ni({answers:o})}getAnswers(t,e){let n=`${t.toLowerCase()}-${e}`,o=this.lru.get(n);if(o!=null){let s=o.filter(i=>i.expires>Date.now()).map(({expires:i,value:a})=>({...a,TTL:Math.round((i-Date.now())/1e3),type:be[a.type]}));return s.length===0&&this.lru.remove(n),s}return[]}add(t,e){let n=`${t.toLowerCase()}-${e.type}`,o=this.lru.get(n)??[];o.push({expires:Date.now()+(e.TTL??du)*1e3,value:e}),this.lru.set(n,o)}remove(t,e){let n=`${t.toLowerCase()}-${e}`;this.lru.remove(n)}clear(){this.lru.clear()}};function _d(r){return new mu(r)}var ix=1e3,Pi=class{resolvers;cache;constructor(t){this.resolvers={},this.cache=_d(t.cacheSize??ix),Object.entries(t.resolvers??{}).forEach(([e,n])=>{Array.isArray(n)||(n=[n]),e.endsWith(".")||(e=`${e}.`),this.resolvers[e]=n}),this.resolvers["."]==null&&(this.resolvers["."]=Ad())}async query(t,e={}){let n=Ci(e.types),o=e.cached!==!1?this.cache.get(t,n):void 0;if(o!=null)return e.onProgress?.(new tt("dns:cache",{detail:o})),o;let s=`${t.split(".").pop()}.`,i=(this.resolvers[s]??this.resolvers["."]).sort(()=>Math.random()>.5?-1:1),a=[];for(let c of i){if(e.signal?.aborted===!0)break;try{let u=await c(t,{...e,types:n});for(let l of u.Answer)this.cache.add(t,l);return u}catch(u){a.push(u),e.onProgress?.(new tt("dns:error",{detail:u}))}}throw a.length===1?a[0]:new AggregateError(a,`DNS lookup of ${t} ${n} failed`)}};var be;(function(r){r[r.A=1]="A",r[r.CNAME=5]="CNAME",r[r.TXT=16]="TXT",r[r.AAAA=28]="AAAA"})(be||(be={}));function Td(r={}){return new Pi(r)}var ax=["string","number","bigint","symbol"],cx=["Function","Generator","AsyncGenerator","GeneratorFunction","AsyncGeneratorFunction","AsyncFunction","Observable","Array","Buffer","Object","RegExp","Date","Error","Map","Set","WeakMap","WeakSet","ArrayBuffer","SharedArrayBuffer","DataView","Promise","URL","HTMLElement","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","BigInt64Array","BigUint64Array"];function Cd(r){if(r===null)return"null";if(r===void 0)return"undefined";if(r===!0||r===!1)return"boolean";let t=typeof r;if(ax.includes(t))return t;if(t==="function")return"Function";if(Array.isArray(r))return"Array";if(ux(r))return"Buffer";let e=lx(r);return e||"Object"}function ux(r){return r&&r.constructor&&r.constructor.isBuffer&&r.constructor.isBuffer.call(null,r)}function lx(r){let t=Object.prototype.toString.call(r).slice(8,-1);if(cx.includes(t))return t}var p=class{constructor(t,e,n){this.major=t,this.majorEncoded=t<<5,this.name=e,this.terminal=n}toString(){return`Type[${this.major}].${this.name}`}compare(t){return this.major<t.major?-1:this.major>t.major?1:0}};p.uint=new p(0,"uint",!0);p.negint=new p(1,"negint",!0);p.bytes=new p(2,"bytes",!0);p.string=new p(3,"string",!0);p.array=new p(4,"array",!1);p.map=new p(5,"map",!1);p.tag=new p(6,"tag",!1);p.float=new p(7,"float",!0);p.false=new p(7,"false",!0);p.true=new p(7,"true",!0);p.null=new p(7,"null",!0);p.undefined=new p(7,"undefined",!0);p.break=new p(7,"break",!0);var I=class{constructor(t,e,n){this.type=t,this.value=e,this.encodedLength=n,this.encodedBytes=void 0,this.byteValue=void 0}toString(){return`Token[${this.type}].${this.value}`}};var _n=globalThis.process&&!globalThis.process.browser&&globalThis.Buffer&&typeof globalThis.Buffer.isBuffer=="function",fx=new TextDecoder,hx=new TextEncoder;function Li(r){return _n&&globalThis.Buffer.isBuffer(r)}function No(r){return r instanceof Uint8Array?Li(r)?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):r:Uint8Array.from(r)}var Ud=_n?(r,t,e)=>e-t>64?globalThis.Buffer.from(r.subarray(t,e)).toString("utf8"):Pd(r,t,e):(r,t,e)=>e-t>64?fx.decode(r.subarray(t,e)):Pd(r,t,e),Ui=_n?r=>r.length>64?globalThis.Buffer.from(r):Nd(r):r=>r.length>64?hx.encode(r):Nd(r),De=r=>Uint8Array.from(r),Tn=_n?(r,t,e)=>Li(r)?new Uint8Array(r.subarray(t,e)):r.slice(t,e):(r,t,e)=>r.slice(t,e),Rd=_n?(r,t)=>(r=r.map(e=>e instanceof Uint8Array?e:globalThis.Buffer.from(e)),No(globalThis.Buffer.concat(r,t))):(r,t)=>{let e=new Uint8Array(t),n=0;for(let o of r)n+o.length>e.length&&(o=o.subarray(0,e.length-n)),e.set(o,n),n+=o.length;return e},Dd=_n?r=>globalThis.Buffer.allocUnsafe(r):r=>new Uint8Array(r);function Fd(r,t){if(Li(r)&&Li(t))return r.compare(t);for(let e=0;e<r.length;e++)if(r[e]!==t[e])return r[e]<t[e]?-1:1;return 0}function Nd(r){let t=[],e=0;for(let n=0;n<r.length;n++){let o=r.charCodeAt(n);o<128?t[e++]=o:o<2048?(t[e++]=o>>6|192,t[e++]=o&63|128):(o&64512)===55296&&n+1<r.length&&(r.charCodeAt(n+1)&64512)===56320?(o=65536+((o&1023)<<10)+(r.charCodeAt(++n)&1023),t[e++]=o>>18|240,t[e++]=o>>12&63|128,t[e++]=o>>6&63|128,t[e++]=o&63|128):(t[e++]=o>>12|224,t[e++]=o>>6&63|128,t[e++]=o&63|128)}return t}function Pd(r,t,e){let n=[];for(;t<e;){let o=r[t],s=null,i=o>239?4:o>223?3:o>191?2:1;if(t+i<=e){let a,c,u,l;switch(i){case 1:o<128&&(s=o);break;case 2:a=r[t+1],(a&192)===128&&(l=(o&31)<<6|a&63,l>127&&(s=l));break;case 3:a=r[t+1],c=r[t+2],(a&192)===128&&(c&192)===128&&(l=(o&15)<<12|(a&63)<<6|c&63,l>2047&&(l<55296||l>57343)&&(s=l));break;case 4:a=r[t+1],c=r[t+2],u=r[t+3],(a&192)===128&&(c&192)===128&&(u&192)===128&&(l=(o&15)<<18|(a&63)<<12|(c&63)<<6|u&63,l>65535&&l<1114112&&(s=l))}}s===null?(s=65533,i=1):s>65535&&(s-=65536,n.push(s>>>10&1023|55296),s=56320|s&1023),n.push(s),t+=i}return gu(n)}var Ld=4096;function gu(r){let t=r.length;if(t<=Ld)return String.fromCharCode.apply(String,r);let e="",n=0;for(;n<t;)e+=String.fromCharCode.apply(String,r.slice(n,n+=Ld));return e}var dx=256,Po=class{constructor(t=dx){this.chunkSize=t,this.cursor=0,this.maxCursor=-1,this.chunks=[],this._initReuseChunk=null}reset(){this.cursor=0,this.maxCursor=-1,this.chunks.length&&(this.chunks=[]),this._initReuseChunk!==null&&(this.chunks.push(this._initReuseChunk),this.maxCursor=this._initReuseChunk.length-1)}push(t){let e=this.chunks[this.chunks.length-1];if(this.cursor+t.length<=this.maxCursor+1){let o=e.length-(this.maxCursor-this.cursor)-1;e.set(t,o)}else{if(e){let o=e.length-(this.maxCursor-this.cursor)-1;o<e.length&&(this.chunks[this.chunks.length-1]=e.subarray(0,o),this.maxCursor=this.cursor-1)}t.length<64&&t.length<this.chunkSize?(e=Dd(this.chunkSize),this.chunks.push(e),this.maxCursor+=e.length,this._initReuseChunk===null&&(this._initReuseChunk=e),e.set(t,0)):(this.chunks.push(t),this.maxCursor+=t.length)}this.cursor+=t.length}toBytes(t=!1){let e;if(this.chunks.length===1){let n=this.chunks[0];t&&this.cursor>n.length/2?(e=this.cursor===n.length?n:n.subarray(0,this.cursor),this._initReuseChunk=null,this.chunks=[]):e=Tn(n,0,this.cursor)}else e=Rd(this.chunks,this.cursor);return t&&this.reset(),e}};var M="CBOR decode error:",tr="CBOR encode error:",Lo=[];Lo[23]=1;Lo[24]=2;Lo[25]=3;Lo[26]=5;Lo[27]=9;function er(r,t,e){if(r.length-t<e)throw new Error(`${M} not enough data for type`)}var kt=[24,256,65536,4294967296,BigInt("18446744073709551616")];function ee(r,t,e){er(r,t,1);let n=r[t];if(e.strict===!0&&n<kt[0])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);return n}function re(r,t,e){er(r,t,2);let n=r[t]<<8|r[t+1];if(e.strict===!0&&n<kt[1])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);return n}function ne(r,t,e){er(r,t,4);let n=r[t]*16777216+(r[t+1]<<16)+(r[t+2]<<8)+r[t+3];if(e.strict===!0&&n<kt[2])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);return n}function oe(r,t,e){er(r,t,8);let n=r[t]*16777216+(r[t+1]<<16)+(r[t+2]<<8)+r[t+3],o=r[t+4]*16777216+(r[t+5]<<16)+(r[t+6]<<8)+r[t+7],s=(BigInt(n)<<BigInt(32))+BigInt(o);if(e.strict===!0&&s<kt[3])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);if(s<=Number.MAX_SAFE_INTEGER)return Number(s);if(e.allowBigInt===!0)return s;throw new Error(`${M} integers outside of the safe integer range are not supported`)}function $d(r,t,e,n){return new I(p.uint,ee(r,t+1,n),2)}function Md(r,t,e,n){return new I(p.uint,re(r,t+1,n),3)}function Vd(r,t,e,n){return new I(p.uint,ne(r,t+1,n),5)}function Od(r,t,e,n){return new I(p.uint,oe(r,t+1,n),9)}function ae(r,t){return Nt(r,0,t.value)}function Nt(r,t,e){if(e<kt[0]){let n=Number(e);r.push([t|n])}else if(e<kt[1]){let n=Number(e);r.push([t|24,n])}else if(e<kt[2]){let n=Number(e);r.push([t|25,n>>>8,n&255])}else if(e<kt[3]){let n=Number(e);r.push([t|26,n>>>24&255,n>>>16&255,n>>>8&255,n&255])}else{let n=BigInt(e);if(n<kt[4]){let o=[t|27,0,0,0,0,0,0,0],s=Number(n&BigInt(4294967295)),i=Number(n>>BigInt(32)&BigInt(4294967295));o[8]=s&255,s=s>>8,o[7]=s&255,s=s>>8,o[6]=s&255,s=s>>8,o[5]=s&255,o[4]=i&255,i=i>>8,o[3]=i&255,i=i>>8,o[2]=i&255,i=i>>8,o[1]=i&255,r.push(o)}else throw new Error(`${M} encountered BigInt larger than allowable range`)}}ae.encodedSize=function(t){return Nt.encodedSize(t.value)};Nt.encodedSize=function(t){return t<kt[0]?1:t<kt[1]?2:t<kt[2]?3:t<kt[3]?5:9};ae.compareTokens=function(t,e){return t.value<e.value?-1:t.value>e.value?1:0};function Hd(r,t,e,n){return new I(p.negint,-1-ee(r,t+1,n),2)}function zd(r,t,e,n){return new I(p.negint,-1-re(r,t+1,n),3)}function Kd(r,t,e,n){return new I(p.negint,-1-ne(r,t+1,n),5)}var yu=BigInt(-1),qd=BigInt(1);function jd(r,t,e,n){let o=oe(r,t+1,n);if(typeof o!="bigint"){let s=-1-o;if(s>=Number.MIN_SAFE_INTEGER)return new I(p.negint,s,9)}if(n.allowBigInt!==!0)throw new Error(`${M} integers outside of the safe integer range are not supported`);return new I(p.negint,yu-BigInt(o),9)}function Ri(r,t){let e=t.value,n=typeof e=="bigint"?e*yu-qd:e*-1-1;Nt(r,t.type.majorEncoded,n)}Ri.encodedSize=function(t){let e=t.value,n=typeof e=="bigint"?e*yu-qd:e*-1-1;return n<kt[0]?1:n<kt[1]?2:n<kt[2]?3:n<kt[3]?5:9};Ri.compareTokens=function(t,e){return t.value<e.value?1:t.value>e.value?-1:0};function Uo(r,t,e,n){er(r,t,e+n);let o=Tn(r,t+e,t+e+n);return new I(p.bytes,o,e+n)}function Gd(r,t,e,n){return Uo(r,t,1,e)}function Wd(r,t,e,n){return Uo(r,t,2,ee(r,t+1,n))}function Zd(r,t,e,n){return Uo(r,t,3,re(r,t+1,n))}function Yd(r,t,e,n){return Uo(r,t,5,ne(r,t+1,n))}function Jd(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer bytes lengths not supported`);return Uo(r,t,9,o)}function Di(r){return r.encodedBytes===void 0&&(r.encodedBytes=r.type===p.string?Ui(r.value):r.value),r.encodedBytes}function Cn(r,t){let e=Di(t);Nt(r,t.type.majorEncoded,e.length),r.push(e)}Cn.encodedSize=function(t){let e=Di(t);return Nt.encodedSize(e.length)+e.length};Cn.compareTokens=function(t,e){return mx(Di(t),Di(e))};function mx(r,t){return r.length<t.length?-1:r.length>t.length?1:Fd(r,t)}function Ro(r,t,e,n,o){let s=e+n;er(r,t,s);let i=new I(p.string,Ud(r,t+e,t+s),s);return o.retainStringBytes===!0&&(i.byteValue=Tn(r,t+e,t+s)),i}function Xd(r,t,e,n){return Ro(r,t,1,e,n)}function Qd(r,t,e,n){return Ro(r,t,2,ee(r,t+1,n),n)}function tp(r,t,e,n){return Ro(r,t,3,re(r,t+1,n),n)}function ep(r,t,e,n){return Ro(r,t,5,ne(r,t+1,n),n)}function rp(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer string lengths not supported`);return Ro(r,t,9,o,n)}var np=Cn;function Nn(r,t,e,n){return new I(p.array,n,e)}function op(r,t,e,n){return Nn(r,t,1,e)}function sp(r,t,e,n){return Nn(r,t,2,ee(r,t+1,n))}function ip(r,t,e,n){return Nn(r,t,3,re(r,t+1,n))}function ap(r,t,e,n){return Nn(r,t,5,ne(r,t+1,n))}function cp(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer array lengths not supported`);return Nn(r,t,9,o)}function up(r,t,e,n){if(n.allowIndefinite===!1)throw new Error(`${M} indefinite length items not allowed`);return Nn(r,t,1,1/0)}function Fi(r,t){Nt(r,p.array.majorEncoded,t.value)}Fi.compareTokens=ae.compareTokens;Fi.encodedSize=function(t){return Nt.encodedSize(t.value)};function Pn(r,t,e,n){return new I(p.map,n,e)}function lp(r,t,e,n){return Pn(r,t,1,e)}function fp(r,t,e,n){return Pn(r,t,2,ee(r,t+1,n))}function hp(r,t,e,n){return Pn(r,t,3,re(r,t+1,n))}function dp(r,t,e,n){return Pn(r,t,5,ne(r,t+1,n))}function pp(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer map lengths not supported`);return Pn(r,t,9,o)}function mp(r,t,e,n){if(n.allowIndefinite===!1)throw new Error(`${M} indefinite length items not allowed`);return Pn(r,t,1,1/0)}function $i(r,t){Nt(r,p.map.majorEncoded,t.value)}$i.compareTokens=ae.compareTokens;$i.encodedSize=function(t){return Nt.encodedSize(t.value)};function gp(r,t,e,n){return new I(p.tag,e,1)}function yp(r,t,e,n){return new I(p.tag,ee(r,t+1,n),2)}function wp(r,t,e,n){return new I(p.tag,re(r,t+1,n),3)}function xp(r,t,e,n){return new I(p.tag,ne(r,t+1,n),5)}function bp(r,t,e,n){return new I(p.tag,oe(r,t+1,n),9)}function Mi(r,t){Nt(r,p.tag.majorEncoded,t.value)}Mi.compareTokens=ae.compareTokens;Mi.encodedSize=function(t){return Nt.encodedSize(t.value)};var vx=20,Ex=21,Sx=22,Ax=23;function vp(r,t,e,n){if(n.allowUndefined===!1)throw new Error(`${M} undefined values are not supported`);return n.coerceUndefinedToNull===!0?new I(p.null,null,1):new I(p.undefined,void 0,1)}function Ep(r,t,e,n){if(n.allowIndefinite===!1)throw new Error(`${M} indefinite length items not allowed`);return new I(p.break,void 0,1)}function wu(r,t,e){if(e){if(e.allowNaN===!1&&Number.isNaN(r))throw new Error(`${M} NaN values are not supported`);if(e.allowInfinity===!1&&(r===1/0||r===-1/0))throw new Error(`${M} Infinity values are not supported`)}return new I(p.float,r,t)}function Sp(r,t,e,n){return wu(xu(r,t+1),3,n)}function Ap(r,t,e,n){return wu(bu(r,t+1),5,n)}function Bp(r,t,e,n){return wu(Tp(r,t+1),9,n)}function Vi(r,t,e){let n=t.value;if(n===!1)r.push([p.float.majorEncoded|vx]);else if(n===!0)r.push([p.float.majorEncoded|Ex]);else if(n===null)r.push([p.float.majorEncoded|Sx]);else if(n===void 0)r.push([p.float.majorEncoded|Ax]);else{let o,s=!1;(!e||e.float64!==!0)&&(Ip(n),o=xu(ve,1),n===o||Number.isNaN(n)?(ve[0]=249,r.push(ve.slice(0,3)),s=!0):(_p(n),o=bu(ve,1),n===o&&(ve[0]=250,r.push(ve.slice(0,5)),s=!0))),s||(Bx(n),o=Tp(ve,1),ve[0]=251,r.push(ve.slice(0,9)))}}Vi.encodedSize=function(t,e){let n=t.value;if(n===!1||n===!0||n===null||n===void 0)return 1;if(!e||e.float64!==!0){Ip(n);let o=xu(ve,1);if(n===o||Number.isNaN(n))return 3;if(_p(n),o=bu(ve,1),n===o)return 5}return 9};var kp=new ArrayBuffer(9),ce=new DataView(kp,1),ve=new Uint8Array(kp,0);function Ip(r){if(r===1/0)ce.setUint16(0,31744,!1);else if(r===-1/0)ce.setUint16(0,64512,!1);else if(Number.isNaN(r))ce.setUint16(0,32256,!1);else{ce.setFloat32(0,r);let t=ce.getUint32(0),e=(t&2139095040)>>23,n=t&8388607;if(e===255)ce.setUint16(0,31744,!1);else if(e===0)ce.setUint16(0,(r&2147483648)>>16|n>>13,!1);else{let o=e-127;o<-24?ce.setUint16(0,0):o<-14?ce.setUint16(0,(t&2147483648)>>16|1<<24+o,!1):ce.setUint16(0,(t&2147483648)>>16|o+15<<10|n>>13,!1)}}}function xu(r,t){if(r.length-t<2)throw new Error(`${M} not enough data for float16`);let e=(r[t]<<8)+r[t+1];if(e===31744)return 1/0;if(e===64512)return-1/0;if(e===32256)return NaN;let n=e>>10&31,o=e&1023,s;return n===0?s=o*2**-24:n!==31?s=(o+1024)*2**(n-25):s=o===0?1/0:NaN,e&32768?-s:s}function _p(r){ce.setFloat32(0,r,!1)}function bu(r,t){if(r.length-t<4)throw new Error(`${M} not enough data for float32`);let e=(r.byteOffset||0)+t;return new DataView(r.buffer,e,4).getFloat32(0,!1)}function Bx(r){ce.setFloat64(0,r,!1)}function Tp(r,t){if(r.length-t<8)throw new Error(`${M} not enough data for float64`);let e=(r.byteOffset||0)+t;return new DataView(r.buffer,e,8).getFloat64(0,!1)}Vi.compareTokens=ae.compareTokens;function X(r,t,e){throw new Error(`${M} encountered invalid minor (${e}) for major ${r[t]>>>5}`)}function Oi(r){return()=>{throw new Error(`${M} ${r}`)}}var U=[];for(let r=0;r<=23;r++)U[r]=X;U[24]=$d;U[25]=Md;U[26]=Vd;U[27]=Od;U[28]=X;U[29]=X;U[30]=X;U[31]=X;for(let r=32;r<=55;r++)U[r]=X;U[56]=Hd;U[57]=zd;U[58]=Kd;U[59]=jd;U[60]=X;U[61]=X;U[62]=X;U[63]=X;for(let r=64;r<=87;r++)U[r]=Gd;U[88]=Wd;U[89]=Zd;U[90]=Yd;U[91]=Jd;U[92]=X;U[93]=X;U[94]=X;U[95]=Oi("indefinite length bytes/strings are not supported");for(let r=96;r<=119;r++)U[r]=Xd;U[120]=Qd;U[121]=tp;U[122]=ep;U[123]=rp;U[124]=X;U[125]=X;U[126]=X;U[127]=Oi("indefinite length bytes/strings are not supported");for(let r=128;r<=151;r++)U[r]=op;U[152]=sp;U[153]=ip;U[154]=ap;U[155]=cp;U[156]=X;U[157]=X;U[158]=X;U[159]=up;for(let r=160;r<=183;r++)U[r]=lp;U[184]=fp;U[185]=hp;U[186]=dp;U[187]=pp;U[188]=X;U[189]=X;U[190]=X;U[191]=mp;for(let r=192;r<=215;r++)U[r]=gp;U[216]=yp;U[217]=wp;U[218]=xp;U[219]=bp;U[220]=X;U[221]=X;U[222]=X;U[223]=X;for(let r=224;r<=243;r++)U[r]=Oi("simple values are not supported");U[244]=X;U[245]=X;U[246]=X;U[247]=vp;U[248]=Oi("simple values are not supported");U[249]=Sp;U[250]=Ap;U[251]=Bp;U[252]=X;U[253]=X;U[254]=X;U[255]=Ep;var Ee=[];for(let r=0;r<24;r++)Ee[r]=new I(p.uint,r,1);for(let r=-1;r>=-24;r--)Ee[31-r]=new I(p.negint,r,1);Ee[64]=new I(p.bytes,new Uint8Array(0),1);Ee[96]=new I(p.string,"",1);Ee[128]=new I(p.array,0,1);Ee[160]=new I(p.map,0,1);Ee[244]=new I(p.false,!1,1);Ee[245]=new I(p.true,!0,1);Ee[246]=new I(p.null,null,1);function Cp(r){switch(r.type){case p.false:return De([244]);case p.true:return De([245]);case p.null:return De([246]);case p.bytes:return r.value.length?void 0:De([64]);case p.string:return r.value===""?De([96]):void 0;case p.array:return r.value===0?De([128]):void 0;case p.map:return r.value===0?De([160]):void 0;case p.uint:return r.value<24?De([Number(r.value)]):void 0;case p.negint:if(r.value>=-24)return De([31-Number(r.value)])}}var Ix={float64:!1,mapSorter:Cx,quickEncodeToken:Cp};function _x(){let r=[];return r[p.uint.major]=ae,r[p.negint.major]=Ri,r[p.bytes.major]=Cn,r[p.string.major]=np,r[p.array.major]=Fi,r[p.map.major]=$i,r[p.tag.major]=Mi,r[p.float.major]=Vi,r}var Np=_x(),vu=new Po,zi=class r{constructor(t,e){this.obj=t,this.parent=e}includes(t){let e=this;do if(e.obj===t)return!0;while(e=e.parent);return!1}static createCheck(t,e){if(t&&t.includes(e))throw new Error(`${tr} object contains circular references`);return new r(e,t)}},Br={null:new I(p.null,null),undefined:new I(p.undefined,void 0),true:new I(p.true,!0),false:new I(p.false,!1),emptyArray:new I(p.array,0),emptyMap:new I(p.map,0)},kr={number(r,t,e,n){return!Number.isInteger(r)||!Number.isSafeInteger(r)?new I(p.float,r):r>=0?new I(p.uint,r):new I(p.negint,r)},bigint(r,t,e,n){return r>=BigInt(0)?new I(p.uint,r):new I(p.negint,r)},Uint8Array(r,t,e,n){return new I(p.bytes,r)},string(r,t,e,n){return new I(p.string,r)},boolean(r,t,e,n){return r?Br.true:Br.false},null(r,t,e,n){return Br.null},undefined(r,t,e,n){return Br.undefined},ArrayBuffer(r,t,e,n){return new I(p.bytes,new Uint8Array(r))},DataView(r,t,e,n){return new I(p.bytes,new Uint8Array(r.buffer,r.byteOffset,r.byteLength))},Array(r,t,e,n){if(!r.length)return e.addBreakTokens===!0?[Br.emptyArray,new I(p.break)]:Br.emptyArray;n=zi.createCheck(n,r);let o=[],s=0;for(let i of r)o[s++]=Hi(i,e,n);return e.addBreakTokens?[new I(p.array,r.length),o,new I(p.break)]:[new I(p.array,r.length),o]},Object(r,t,e,n){let o=t!=="Object",s=o?r.keys():Object.keys(r),i=o?r.size:s.length;if(!i)return e.addBreakTokens===!0?[Br.emptyMap,new I(p.break)]:Br.emptyMap;n=zi.createCheck(n,r);let a=[],c=0;for(let u of s)a[c++]=[Hi(u,e,n),Hi(o?r.get(u):r[u],e,n)];return Tx(a,e),e.addBreakTokens?[new I(p.map,i),a,new I(p.break)]:[new I(p.map,i),a]}};kr.Map=kr.Object;kr.Buffer=kr.Uint8Array;for(let r of"Uint8Clamped Uint16 Uint32 Int8 Int16 Int32 BigUint64 BigInt64 Float32 Float64".split(" "))kr[`${r}Array`]=kr.DataView;function Hi(r,t={},e){let n=Cd(r),o=t&&t.typeEncoders&&t.typeEncoders[n]||kr[n];if(typeof o=="function"){let i=o(r,n,t,e);if(i!=null)return i}let s=kr[n];if(!s)throw new Error(`${tr} unsupported type: ${n}`);return s(r,n,t,e)}function Tx(r,t){t.mapSorter&&r.sort(t.mapSorter)}function Cx(r,t){let e=Array.isArray(r[0])?r[0][0]:r[0],n=Array.isArray(t[0])?t[0][0]:t[0];if(e.type!==n.type)return e.type.compare(n.type);let o=e.type.major,s=Np[o].compareTokens(e,n);return s===0&&console.warn("WARNING: complex key types used, CBOR key sorting guarantees are gone"),s}function Pp(r,t,e,n){if(Array.isArray(t))for(let o of t)Pp(r,o,e,n);else e[t.type.major](r,t,n)}function Eu(r,t,e){let n=Hi(r,e);if(!Array.isArray(n)&&e.quickEncodeToken){let o=e.quickEncodeToken(n);if(o)return o;let s=t[n.type.major];if(s.encodedSize){let i=s.encodedSize(n,e),a=new Po(i);if(s(a,n,e),a.chunks.length!==1)throw new Error(`Unexpected error: pre-calculated length for ${n} was wrong`);return No(a.chunks[0])}}return vu.reset(),Pp(vu,n,t,e),vu.toBytes(!0)}function Ir(r,t){return t=Object.assign({},Ix,t),Eu(r,Np,t)}var Nx={strict:!1,allowIndefinite:!0,allowUndefined:!0,allowBigInt:!0},Ki=class{constructor(t,e={}){this._pos=0,this.data=t,this.options=e}pos(){return this._pos}done(){return this._pos>=this.data.length}next(){let t=this.data[this._pos],e=Ee[t];if(e===void 0){let n=U[t];if(!n)throw new Error(`${M} no decoder for major type ${t>>>5} (byte 0x${t.toString(16).padStart(2,"0")})`);let o=t&31;e=n(this.data,this._pos,o,this.options)}return this._pos+=e.encodedLength,e}},Do=Symbol.for("DONE"),qi=Symbol.for("BREAK");function Px(r,t,e){let n=[];for(let o=0;o<r.value;o++){let s=Ln(t,e);if(s===qi){if(r.value===1/0)break;throw new Error(`${M} got unexpected break to lengthed array`)}if(s===Do)throw new Error(`${M} found array but not enough entries (got ${o}, expected ${r.value})`);n[o]=s}return n}function Lx(r,t,e){let n=e.useMaps===!0,o=n?void 0:{},s=n?new Map:void 0;for(let i=0;i<r.value;i++){let a=Ln(t,e);if(a===qi){if(r.value===1/0)break;throw new Error(`${M} got unexpected break to lengthed map`)}if(a===Do)throw new Error(`${M} found map but not enough entries (got ${i} [no key], expected ${r.value})`);if(n!==!0&&typeof a!="string")throw new Error(`${M} non-string keys not supported (got ${typeof a})`);if(e.rejectDuplicateMapKeys===!0&&(n&&s.has(a)||!n&&a in o))throw new Error(`${M} found repeat map key "${a}"`);let c=Ln(t,e);if(c===Do)throw new Error(`${M} found map but not enough entries (got ${i} [no value], expected ${r.value})`);n?s.set(a,c):o[a]=c}return n?s:o}function Ln(r,t){if(r.done())return Do;let e=r.next();if(e.type===p.break)return qi;if(e.type.terminal)return e.value;if(e.type===p.array)return Px(e,r,t);if(e.type===p.map)return Lx(e,r,t);if(e.type===p.tag){if(t.tags&&typeof t.tags[e.value]=="function"){let n=Ln(r,t);return t.tags[e.value](n)}throw new Error(`${M} tag not supported (${e.value})`)}throw new Error("unsupported")}function Su(r,t){if(!(r instanceof Uint8Array))throw new Error(`${M} data to decode must be a Uint8Array`);t=Object.assign({},Nx,t);let e=t.tokenizer||new Ki(r,t),n=Ln(e,t);if(n===Do)throw new Error(`${M} did not find any content to decode`);if(n===qi)throw new Error(`${M} got unexpected break`);return[n,r.subarray(e.pos())]}function se(r,t){let[e,n]=Su(r,t);if(n.length>0)throw new Error(`${M} too many terminals, data makes no sense`);return e}var rr="/",Lp=new TextEncoder().encode(rr),ji=Lp[0],Ft=class r{_buf;constructor(t,e){if(typeof t=="string")this._buf=z(t);else if(t instanceof Uint8Array)this._buf=t;else throw new Error("Invalid key, should be String of Uint8Array");if(e==null&&(e=!0),e&&this.clean(),this._buf.byteLength===0||this._buf[0]!==ji)throw new Error("Invalid key")}toString(t="utf8"){return rt(this._buf,t)}uint8Array(){return this._buf}get[Symbol.toStringTag](){return`Key(${this.toString()})`}static withNamespaces(t){return new r(t.join(rr))}static random(){return new r(Math.random().toString().substring(2))}static asKey(t){return t instanceof Uint8Array||typeof t=="string"?new r(t):typeof t.uint8Array=="function"?new r(t.uint8Array()):null}clean(){if((this._buf==null||this._buf.byteLength===0)&&(this._buf=Lp),this._buf[0]!==ji){let t=new Uint8Array(this._buf.byteLength+1);t.fill(ji,0,1),t.set(this._buf,1),this._buf=t}for(;this._buf.byteLength>1&&this._buf[this._buf.byteLength-1]===ji;)this._buf=this._buf.subarray(0,-1)}less(t){let e=this.list(),n=t.list();for(let o=0;o<e.length;o++){if(n.length<o+1)return!1;let s=e[o],i=n[o];if(s<i)return!0;if(s>i)return!1}return e.length<n.length}reverse(){return r.withNamespaces(this.list().slice().reverse())}namespaces(){return this.list()}baseNamespace(){let t=this.namespaces();return t[t.length-1]}list(){return this.toString().split(rr).slice(1)}type(){return Ux(this.baseNamespace())}name(){return Rx(this.baseNamespace())}instance(t){return new r(this.toString()+":"+t)}path(){let t=this.parent().toString();return t.endsWith(rr)||(t+=rr),t+=this.type(),new r(t)}parent(){let t=this.list();return t.length===1?new r(rr):new r(t.slice(0,-1).join(rr))}child(t){return this.toString()===rr?t:t.toString()===rr?this:new r(this.toString()+t.toString(),!1)}isAncestorOf(t){return t.toString()===this.toString()?!1:t.toString().startsWith(this.toString())}isDecendantOf(t){return t.toString()===this.toString()?!1:this.toString().startsWith(t.toString())}isTopLevel(){return this.list().length===1}concat(...t){return r.withNamespaces([...this.namespaces(),...Dx(t.map(e=>e.namespaces()))])}};function Ux(r){let t=r.split(":");return t.length<2?"":t.slice(0,-1).join(":")}function Rx(r){let t=r.split(":");return t[t.length-1]}function Dx(r){return[].concat(...r)}function Gi({enumerable:r=!0,configurable:t=!1}={}){return{enumerable:r,configurable:t,writable:!1}}function*Fx(r,t){if(t!=null&&typeof t=="object")if(Array.isArray(t))for(let[e,n]of t.entries()){let o=[...r,e],s=O.asCID(n);s!=null?yield[o.join("/"),s]:typeof n=="object"&&(yield*Bu(n,o))}else{let e=O.asCID(t);e!=null?yield[r.join("/"),e]:yield*Bu(t,r)}}function*Bu(r,t){if(r==null||r instanceof Uint8Array)return;let e=O.asCID(r);e!=null&&(yield[t.join("/"),e]);for(let[n,o]of Object.entries(r)){let s=[...t,n];yield*Fx(s,o)}}function*$x(r,t){if(Array.isArray(t))for(let[e,n]of t.entries()){let o=[...r,e];yield o.join("/"),typeof n=="object"&&O.asCID(n)==null&&(yield*ku(n,o))}else yield*ku(t,r)}function*ku(r,t){if(!(r==null||typeof r!="object"))for(let[e,n]of Object.entries(r)){let o=[...t,e];yield o.join("/"),n!=null&&!(n instanceof Uint8Array)&&typeof n=="object"&&O.asCID(n)==null&&(yield*$x(o,n))}}function Mx(r,t){let e=r;for(let[n,o]of t.entries()){if(e=e[o],e==null)throw new Error(`Object has no property at ${t.slice(0,n+1).map(i=>`[${JSON.stringify(i)}]`).join("")}`);let s=O.asCID(e);if(s!=null)return{value:s,remaining:t.slice(n+1).join("/")}}return{value:e}}var Iu=class{cid;bytes;value;asBlock;constructor({cid:t,bytes:e,value:n}){if(t==null||e==null||typeof n>"u")throw new Error("Missing required argument");this.cid=t,this.bytes=e,this.value=n,this.asBlock=this,Object.defineProperties(this,{cid:Gi(),bytes:Gi(),value:Gi(),asBlock:Gi()})}links(){return Bu(this.value,[])}tree(){return ku(this.value,[])}get(t="/"){return Mx(this.value,t.split("/").filter(Boolean))}};function Up({bytes:r,cid:t,value:e,codec:n}){let o=e!==void 0?e:n?.decode(r);if(o===void 0)throw new Error('Missing required argument, must either provide "value" or "codec"');return new Iu({cid:t,bytes:r,value:o})}var Fp="/pin/",Rp="/pinned-block/",_u=_e,Dp=1;function Wi(r){return r.version===0&&(r=r.toV1()),new Ft(`${Fp}${r.toString(_u)}`)}var Zi=class{datastore;blockstore;getCodec;constructor(t,e,n){this.datastore=t,this.blockstore=e,this.getCodec=n}async*add(t,e={}){let n=Wi(t);if(await this.datastore.has(n))throw new Error("Already pinned");let o=Math.round(e.depth??1/0);if(o<0)throw new Error("Depth must be greater than or equal to 0");let s=new Ve({concurrency:Dp});for await(let a of this.#t(t,s,{...e,depth:o}))await this.#e(a,c=>c.pinnedBy.find(u=>ot(u,t.bytes))!=null?!1:(c.pinCount++,c.pinnedBy.push(t.bytes),!0),e),yield a;let i={depth:o,metadata:e.metadata??{}};await this.datastore.put(n,Ir(i),e)}async*#t(t,e,n){if(n.depth===-1)return;let o=await this.getCodec(t.code),s=await this.blockstore.get(t,n),i=Up({bytes:s,cid:t,codec:o});yield t;for await(let[,a]of i.links())yield*await e.add(async()=>this.#t(a,e,{...n,depth:n.depth-1}))}async#e(t,e,n){let o=new Ft(`${Rp}${_u.encode(t.multihash.bytes)}`),s={pinCount:0,pinnedBy:[]};try{s=se(await this.datastore.get(o,n))}catch(a){if(a.name!=="NotFoundError")throw a}if(e(s)){if(s.pinCount===0&&await this.datastore.has(o)){await this.datastore.delete(o);return}await this.datastore.put(o,Ir(s),n),n.onProgress?.(new tt("helia:pin:add",t))}}async*rm(t,e={}){let n=Wi(t),o=await this.datastore.get(n,e),s=se(o);await this.datastore.delete(n,e);let i=new Ve({concurrency:Dp});for await(let a of this.#t(t,i,{...e,depth:s.depth}))await this.#e(a,c=>(c.pinCount--,c.pinnedBy=c.pinnedBy.filter(u=>ot(u,t.bytes)),!0),{...e,depth:s.depth}),yield a}async*ls(t={}){for await(let{key:e,value:n}of this.datastore.query({prefix:Fp+(t.cid!=null?`${t.cid.toString(_e)}`:"")},t)){let o=O.parse(e.toString().substring(5),_e),s=se(n);yield{cid:o,...s}}}async isPinned(t,e={}){let n=new Ft(`${Rp}${_u.encode(t.multihash.bytes)}`);return this.datastore.has(n,e)}async get(t,e){let n=Wi(t),o=await this.datastore.get(n,e);return se(o)}async setMetadata(t,e,n){let o=Wi(t),s=await this.datastore.get(o,n),i=se(s);i.metadata=e??{},await this.datastore.put(o,Ir(i),n)}};var Tu=1,Cu=5;var Fo=class extends Error{static name="InsufficientProvidersError";constructor(t="Insufficient providers found"){super(t),this.name="InsufficientProvidersError"}},_r=class extends Error{static name="NoRoutersAvailableError";constructor(t="No routers available"){super(t),this.name="NoRoutersAvailableError"}},$o=class extends Error{static name="UnknownHashAlgorithmError";constructor(t="Unknown hash algorithm"){super(t),this.name="UnknownHashAlgorithmError"}},Mo=class extends Error{static name="UnknownCodecError";constructor(t="Unknown codec"){super(t),this.name="UnknownCodecError"}};var Vx=5,Yi=class{log;routers;providerLookupConcurrency;constructor(t,e){this.log=t.logger.forComponent("helia:routing"),this.routers=e.routers??[],this.providerLookupConcurrency=e.providerLookupConcurrency??Vx}async start(){await ur(...this.routers)}async stop(){await lr(...this.routers)}async*findProviders(t,e={}){if(this.routers.length===0)throw new _r("No content routers available");let n=new ss({concurrency:this.providerLookupConcurrency});n.addEventListener("error",()=>{});for await(let o of Fr(n.toGenerator(),...Un(this.routers,"findProviders").map(s=>s.findProviders(t,e))))if(o!=null){if(o.multiaddrs.length===0){if(n.find(o.id)!=null)continue;n.add(async()=>{try{let s=await this.findPeer(o.id,e);return s.multiaddrs.length===0?null:s}catch(s){return this.log.error("could not load multiaddrs for peer %p",o.id,s),null}},{peerId:o.id,signal:e.signal}).catch(s=>{this.log.error("could not load multiaddrs for peer %p",o.id,s)})}yield o}}async provide(t,e={}){if(this.routers.length===0)throw new _r("No content routers available");await Promise.all(Un(this.routers,"provide").map(async n=>{await n.provide(t,e)}))}async put(t,e,n){await Promise.all(Un(this.routers,"put").map(async o=>{await o.put(t,e,n)}))}async get(t,e){return Promise.any(Un(this.routers,"get").map(async n=>n.get(t,e)))}async findPeer(t,e){if(this.routers.length===0)throw new _r("No peer routers available");let n=this,o=Fr(...Un(this.routers,"findPeer").map(s=>async function*(){try{yield await s.findPeer(t,e)}catch(i){n.log.error(i)}}()));for await(let s of o)if(s!=null)return s;throw new Pt("Could not find peer in routing")}async*getClosestPeers(t,e={}){if(this.routers.length===0)throw new _r("No peer routers available");for await(let n of Fr(...Un(this.routers,"getClosestPeers").map(o=>o.getClosestPeers(t,e))))n!=null&&(yield n)}};function Un(r,t){return r.filter(e=>e[t]!=null)}var Tr={},Rn=r=>{r.addEventListener("message",t=>{Rn.dispatchEvent("message",r,t)}),r.port!=null&&r.port.addEventListener("message",t=>{Rn.dispatchEvent("message",r,t)})};Rn.addEventListener=(r,t)=>{Tr[r]==null&&(Tr[r]=[]),Tr[r].push(t)};Rn.removeEventListener=(r,t)=>{Tr[r]!=null&&(Tr[r]=Tr[r].filter(e=>e===t))};Rn.dispatchEvent=function(r,t,e){Tr[r]!=null&&Tr[r].forEach(n=>n(t,e))};var Nu=Rn;var Pu="lock:worker:request-read",Lu="lock:worker:release-read",Uu="lock:master:grant-read",Ru="lock:worker:request-write",Du="lock:worker:release-write",Fu="lock:master:grant-write";var $p=(r=21)=>Math.random().toString().substring(2);var Mp=(r,t,e,n,o)=>(s,i)=>{if(i.data.type!==e)return;let a={type:i.data.type,name:i.data.name,identifier:i.data.identifier};r.dispatchEvent(new MessageEvent(t,{data:{name:a.name,handler:async()=>{s.postMessage({type:o,name:a.name,identifier:a.identifier}),await new Promise(c=>{let u=l=>{if(l?.data==null)return;let f={type:l.data.type,name:l.data.name,identifier:l.data.identifier};f.type===n&&f.identifier===a.identifier&&(s.removeEventListener("message",u),c())};s.addEventListener("message",u)})}}}))},Vp=(r,t,e,n)=>async()=>{let o=$p();return globalThis.postMessage({type:t,identifier:o,name:r}),new Promise(s=>{let i=a=>{if(a?.data==null)return;let c={type:a.data.type,identifier:a.data.identifier};c.type===e&&c.identifier===o&&(globalThis.removeEventListener("message",i),s(()=>{globalThis.postMessage({type:n,identifier:o,name:r})}))};globalThis.addEventListener("message",i)})},Ox={singleProcess:!1},Op=r=>{if(r=Object.assign({},Ox,r),!!globalThis.document||r.singleProcess){let e=new EventTarget;return Nu.addEventListener("message",Mp(e,"requestReadLock",Pu,Lu,Uu)),Nu.addEventListener("message",Mp(e,"requestWriteLock",Ru,Du,Fu)),e}return{isWorker:!0,readLock:e=>Vp(e,Pu,Uu,Lu),writeLock:e=>Vp(e,Ru,Fu,Du)}};var Jr={},Cr;async function $u(r,t){let e,n=new Promise(o=>{e=o});return r.add(async()=>To((async()=>{await new Promise(o=>{e(()=>{o()})})})(),{milliseconds:t.timeout})),n}var Hx=(r,t)=>{if(Cr.isWorker===!0)return{readLock:Cr.readLock(r,t),writeLock:Cr.writeLock(r,t)};let e=new Re({concurrency:1}),n;return{async readLock(){if(n!=null)return $u(n,t);n=new Re({concurrency:t.concurrency,autoStart:!1});let o=n,s=$u(n,t);return e.add(async()=>{o.start(),await o.onIdle().then(()=>{n===o&&(n=null)})}),s},async writeLock(){return n=null,$u(e,t)}}},zx={name:"lock",concurrency:1/0,timeout:846e5,singleProcess:!1};function Mu(r){let t=Object.assign({},zx,r);return Cr==null&&(Cr=Op(t),Cr.isWorker!==!0&&(Cr.addEventListener("requestReadLock",e=>{Jr[e.data.name]!=null&&Jr[e.data.name].readLock().then(async n=>e.data.handler().finally(()=>{n()}))}),Cr.addEventListener("requestWriteLock",async e=>{Jr[e.data.name]!=null&&Jr[e.data.name].writeLock().then(async n=>e.data.handler().finally(()=>{n()}))}))),Jr[t.name]==null&&(Jr[t.name]=Hx(t.name,t)),Jr[t.name]}var Ji=class{lock;child;pins;started;constructor(t,e,n={}){this.child=t,this.pins=e,this.lock=Mu({singleProcess:n.holdGcLock}),this.started=!1}isStarted(){return this.started}async start(){await ur(this.child),this.started=!0}async stop(){await lr(this.child),this.started=!1}unwrap(){return this.child}async put(t,e,n={}){n?.signal?.throwIfAborted();let o=await this.lock.readLock();try{return await this.child.put(t,e,n)}finally{o()}}async*putMany(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{yield*this.child.putMany(t,e)}finally{n()}}async get(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{return await this.child.get(t,e)}finally{n()}}async*getMany(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{yield*this.child.getMany(t,e)}finally{n()}}async delete(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.writeLock();try{if(await this.pins.isPinned(t))throw new Error("CID was pinned");await this.child.delete(t,e)}finally{n()}}async*deleteMany(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.writeLock();try{let o=this;yield*this.child.deleteMany(async function*(){for await(let s of t){if(await o.pins.isPinned(s))throw new Error("CID was pinned");yield s}}(),e)}finally{n()}}async has(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{return await this.child.has(t,e)}finally{n()}}async*getAll(t={}){t?.signal?.throwIfAborted();let e=await this.lock.readLock();try{yield*this.child.getAll(t)}finally{e()}}createSession(t,e){return e?.signal?.throwIfAborted(),this.child.createSession(t,e)}};var Vu=new Ft("/version"),Hp=1;async function zp(r){if(!await r.has(Vu)){await r.put(Vu,z(`${Hp}`));return}let t=await r.get(Vu),e=rt(t);if(parseInt(e,10)!==Hp)throw new Error("Unknown datastore version, a datastore migration may be required")}var zu={};gt(zu,{code:()=>Hu,decode:()=>Xx,decodeOptions:()=>Zx,encode:()=>Jx,encodeOptions:()=>Gx,name:()=>Yx,toByteView:()=>qp});var Kp=42;function qp(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}function Kx(r){if(r.asCID!==r&&r["/"]!==r.bytes)return null;let t=O.asCID(r);if(!t)return null;let e=new Uint8Array(t.bytes.byteLength+1);return e.set(t.bytes,1),[new I(p.tag,Kp),new I(p.bytes,e)]}function qx(){throw new Error("`undefined` is not supported by the IPLD Data Model and cannot be encoded")}function jx(r){if(Number.isNaN(r))throw new Error("`NaN` is not supported by the IPLD Data Model and cannot be encoded");if(r===1/0||r===-1/0)throw new Error("`Infinity` and `-Infinity` is not supported by the IPLD Data Model and cannot be encoded");return null}var Ou={float64:!0,typeEncoders:{Object:Kx,undefined:qx,number:jx}},Gx={...Ou,typeEncoders:{...Ou.typeEncoders}};function Wx(r){if(r[0]!==0)throw new Error("Invalid CID for CBOR tag 42; expected leading 0x00");return O.decode(r.subarray(1))}var Xi={allowIndefinite:!1,coerceUndefinedToNull:!0,allowNaN:!1,allowInfinity:!1,allowBigInt:!0,strict:!0,useMaps:!1,rejectDuplicateMapKeys:!0,tags:[]};Xi.tags[Kp]=Wx;var Zx={...Xi,tags:Xi.tags.slice()},Yx="dag-cbor",Hu=113,Jx=r=>Ir(r,Ou),Xx=r=>se(qp(r),Xi);var Yu={};gt(Yu,{code:()=>Zu,decode:()=>Gp,encode:()=>jp,format:()=>u1,name:()=>c1,parse:()=>f1,stringify:()=>u1});var Ku=class extends Array{constructor(){super(),this.inRecursive=[]}prefix(t){let e=this.inRecursive[this.inRecursive.length-1];e&&(e.type===p.array&&(e.elements++,e.elements!==1&&t.push([44])),e.type===p.map&&(e.elements++,e.elements!==1&&(e.elements%2===1?t.push([44]):t.push([58]))))}[p.uint.major](t,e){this.prefix(t);let n=String(e.value),o=[];for(let s=0;s<n.length;s++)o[s]=n.charCodeAt(s);t.push(o)}[p.negint.major](t,e){this[p.uint.major](t,e)}[p.bytes.major](t,e){throw new Error(`${tr} unsupported type: Uint8Array`)}[p.string.major](t,e){this.prefix(t);let n=Ui(JSON.stringify(e.value));t.push(n.length>32?No(n):n)}[p.array.major](t,e){this.prefix(t),this.inRecursive.push({type:p.array,elements:0}),t.push([91])}[p.map.major](t,e){this.prefix(t),this.inRecursive.push({type:p.map,elements:0}),t.push([123])}[p.tag.major](t,e){}[p.float.major](t,e){if(e.type.name==="break"){let i=this.inRecursive.pop();if(i){if(i.type===p.array)t.push([93]);else if(i.type===p.map)t.push([125]);else throw new Error("Unexpected recursive type; this should not happen!");return}throw new Error("Unexpected break; this should not happen!")}if(e.value===void 0)throw new Error(`${tr} unsupported type: undefined`);if(this.prefix(t),e.type.name==="true"){t.push([116,114,117,101]);return}else if(e.type.name==="false"){t.push([102,97,108,115,101]);return}else if(e.type.name==="null"){t.push([110,117,108,108]);return}let n=String(e.value),o=[],s=!1;for(let i=0;i<n.length;i++)o[i]=n.charCodeAt(i),!s&&(o[i]===46||o[i]===101||o[i]===69)&&(s=!0);s||(o.push(46),o.push(48)),t.push(o)}};function Qx(r,t){if(Array.isArray(r[0])||Array.isArray(t[0]))throw new Error(`${tr} complex map keys are not supported`);let e=r[0],n=t[0];if(e.type!==p.string||n.type!==p.string)throw new Error(`${tr} non-string map keys are not supported`);if(e<n)return-1;if(e>n)return 1;throw new Error(`${tr} unexpected duplicate map keys, this is not supported`)}var t1={addBreakTokens:!0,mapSorter:Qx};function qu(r,t){return t=Object.assign({},t1,t),Eu(r,new Ku,t)}var Dn=class{constructor(t,e={}){this._pos=0,this.data=t,this.options=e,this.modeStack=["value"],this.lastToken=""}pos(){return this._pos}done(){return this._pos>=this.data.length}ch(){return this.data[this._pos]}currentMode(){return this.modeStack[this.modeStack.length-1]}skipWhitespace(){let t=this.ch();for(;t===32||t===9||t===13||t===10;)t=this.data[++this._pos]}expect(t){if(this.data.length-this._pos<t.length)throw new Error(`${M} unexpected end of input at position ${this._pos}`);for(let e=0;e<t.length;e++)if(this.data[this._pos++]!==t[e])throw new Error(`${M} unexpected token at position ${this._pos}, expected to find '${String.fromCharCode(...t)}'`)}parseNumber(){let t=this._pos,e=!1,n=!1,o=a=>{for(;!this.done();){let c=this.ch();if(a.includes(c))this._pos++;else break}};if(this.ch()===45&&(e=!0,this._pos++),this.ch()===48)if(this._pos++,this.ch()===46)this._pos++,n=!0;else return new I(p.uint,0,this._pos-t);if(o([48,49,50,51,52,53,54,55,56,57]),e&&this._pos===t+1)throw new Error(`${M} unexpected token at position ${this._pos}`);if(!this.done()&&this.ch()===46){if(n)throw new Error(`${M} unexpected token at position ${this._pos}`);n=!0,this._pos++,o([48,49,50,51,52,53,54,55,56,57])}!this.done()&&(this.ch()===101||this.ch()===69)&&(n=!0,this._pos++,!this.done()&&(this.ch()===43||this.ch()===45)&&this._pos++,o([48,49,50,51,52,53,54,55,56,57]));let s=String.fromCharCode.apply(null,this.data.subarray(t,this._pos)),i=parseFloat(s);return n?new I(p.float,i,this._pos-t):this.options.allowBigInt!==!0||Number.isSafeInteger(i)?new I(i>=0?p.uint:p.negint,i,this._pos-t):new I(i>=0?p.uint:p.negint,BigInt(s),this._pos-t)}parseString(){if(this.ch()!==34)throw new Error(`${M} unexpected character at position ${this._pos}; this shouldn't happen`);this._pos++;for(let s=this._pos,i=0;s<this.data.length&&i<65536;s++,i++){let a=this.data[s];if(a===92||a<32||a>=128)break;if(a===34){let c=String.fromCharCode.apply(null,this.data.subarray(this._pos,s));return this._pos=s+1,new I(p.string,c,i)}}let t=this._pos,e=[],n=()=>{if(this._pos+4>=this.data.length)throw new Error(`${M} unexpected end of unicode escape sequence at position ${this._pos}`);let s=0;for(let i=0;i<4;i++){let a=this.ch();if(a>=48&&a<=57)a-=48;else if(a>=97&&a<=102)a=a-97+10;else if(a>=65&&a<=70)a=a-65+10;else throw new Error(`${M} unexpected unicode escape character at position ${this._pos}`);s=s*16+a,this._pos++}return s},o=()=>{let s=this.ch(),i=null,a=s>239?4:s>223?3:s>191?2:1;if(this._pos+a>this.data.length)throw new Error(`${M} unexpected unicode sequence at position ${this._pos}`);let c,u,l,f;switch(a){case 1:s<128&&(i=s);break;case 2:c=this.data[this._pos+1],(c&192)===128&&(f=(s&31)<<6|c&63,f>127&&(i=f));break;case 3:c=this.data[this._pos+1],u=this.data[this._pos+2],(c&192)===128&&(u&192)===128&&(f=(s&15)<<12|(c&63)<<6|u&63,f>2047&&(f<55296||f>57343)&&(i=f));break;case 4:c=this.data[this._pos+1],u=this.data[this._pos+2],l=this.data[this._pos+3],(c&192)===128&&(u&192)===128&&(l&192)===128&&(f=(s&15)<<18|(c&63)<<12|(u&63)<<6|l&63,f>65535&&f<1114112&&(i=f))}i===null?(i=65533,a=1):i>65535&&(i-=65536,e.push(i>>>10&1023|55296),i=56320|i&1023),e.push(i),this._pos+=a};for(;!this.done();){let s=this.ch(),i;switch(s){case 92:if(this._pos++,this.done())throw new Error(`${M} unexpected string termination at position ${this._pos}`);switch(i=this.ch(),this._pos++,i){case 34:case 39:case 92:case 47:e.push(i);break;case 98:e.push(8);break;case 116:e.push(9);break;case 110:e.push(10);break;case 102:e.push(12);break;case 114:e.push(13);break;case 117:e.push(n());break;default:throw new Error(`${M} unexpected string escape character at position ${this._pos}`)}break;case 34:return this._pos++,new I(p.string,gu(e),this._pos-t);default:if(s<32)throw new Error(`${M} invalid control character at position ${this._pos}`);s<128?(e.push(s),this._pos++):o()}}throw new Error(`${M} unexpected end of string at position ${this._pos}`)}parseValue(){switch(this.ch()){case 123:return this.modeStack.push("obj-start"),this._pos++,new I(p.map,1/0,1);case 91:return this.modeStack.push("array-start"),this._pos++,new I(p.array,1/0,1);case 34:return this.parseString();case 110:return this.expect([110,117,108,108]),new I(p.null,null,4);case 102:return this.expect([102,97,108,115,101]),new I(p.false,!1,5);case 116:return this.expect([116,114,117,101]),new I(p.true,!0,4);case 45:case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return this.parseNumber();default:throw new Error(`${M} unexpected character at position ${this._pos}`)}}next(){switch(this.skipWhitespace(),this.currentMode()){case"value":return this.modeStack.pop(),this.parseValue();case"array-value":{if(this.modeStack.pop(),this.ch()===93)return this._pos++,this.skipWhitespace(),new I(p.break,void 0,1);if(this.ch()!==44)throw new Error(`${M} unexpected character at position ${this._pos}, was expecting array delimiter but found '${String.fromCharCode(this.ch())}'`);return this._pos++,this.modeStack.push("array-value"),this.skipWhitespace(),this.parseValue()}case"array-start":return this.modeStack.pop(),this.ch()===93?(this._pos++,this.skipWhitespace(),new I(p.break,void 0,1)):(this.modeStack.push("array-value"),this.skipWhitespace(),this.parseValue());case"obj-key":if(this.ch()===125)return this.modeStack.pop(),this._pos++,this.skipWhitespace(),new I(p.break,void 0,1);if(this.ch()!==44)throw new Error(`${M} unexpected character at position ${this._pos}, was expecting object delimiter but found '${String.fromCharCode(this.ch())}'`);this._pos++,this.skipWhitespace();case"obj-start":{if(this.modeStack.pop(),this.ch()===125)return this._pos++,this.skipWhitespace(),new I(p.break,void 0,1);let t=this.parseString();if(this.skipWhitespace(),this.ch()!==58)throw new Error(`${M} unexpected character at position ${this._pos}, was expecting key/value delimiter ':' but found '${String.fromCharCode(this.ch())}'`);return this._pos++,this.modeStack.push("obj-value"),t}case"obj-value":return this.modeStack.pop(),this.modeStack.push("obj-key"),this.skipWhitespace(),this.parseValue();default:throw new Error(`${M} unexpected parse state at position ${this._pos}; this shouldn't happen`)}}};function ju(r,t){return t=Object.assign({tokenizer:new Dn(r,t)},t),se(r,t)}function r1(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}function n1(r){if(r.asCID!==r&&r["/"]!==r.bytes)return null;let t=O.asCID(r);if(!t)return null;let e=t.toString();return[new I(p.map,1/0,1),new I(p.string,"/",1),new I(p.string,e,e.length),new I(p.break,void 0,1)]}function Qi(r){let t=Te.encode(r).slice(1);return[new I(p.map,1/0,1),new I(p.string,"/",1),new I(p.map,1/0,1),new I(p.string,"bytes",5),new I(p.string,t,t.length),new I(p.break,void 0,1),new I(p.break,void 0,1)]}function Se(r){return Qi(new Uint8Array(r.buffer,r.byteOffset,r.byteLength))}function o1(r){return Qi(new Uint8Array(r))}function s1(){throw new Error("`undefined` is not supported by the IPLD Data Model and cannot be encoded")}function i1(r){if(Number.isNaN(r))throw new Error("`NaN` is not supported by the IPLD Data Model and cannot be encoded");if(r===1/0||r===-1/0)throw new Error("`Infinity` and `-Infinity` is not supported by the IPLD Data Model and cannot be encoded");return null}var a1={typeEncoders:{Object:n1,Buffer:Qi,Uint8Array:Qi,Int8Array:Se,Uint16Array:Se,Int16Array:Se,Uint32Array:Se,Int32Array:Se,Float32Array:Se,Float64Array:Se,Uint8ClampedArray:Se,BigInt64Array:Se,BigUint64Array:Se,DataView:Se,ArrayBuffer:o1,undefined:s1,number:i1}},Gu=class extends Dn{constructor(t,e){super(t,e),this.tokenBuffer=[]}done(){return this.tokenBuffer.length===0&&super.done()}_next(){return this.tokenBuffer.length>0?this.tokenBuffer.pop():super.next()}next(){let t=this._next();if(t.type===p.map){let e=this._next();if(e.type===p.string&&e.value==="/"){let n=this._next();if(n.type===p.string){if(this._next().type!==p.break)throw new Error("Invalid encoded CID form");return this.tokenBuffer.push(n),new I(p.tag,42,0)}if(n.type===p.map){let o=this._next();if(o.type===p.string&&o.value==="bytes"){let s=this._next();if(s.type===p.string){for(let a=0;a<2;a++)if(this._next().type!==p.break)throw new Error("Invalid encoded Bytes form");let i=Te.decode(`m${s.value}`);return new I(p.bytes,i,s.value.length)}this.tokenBuffer.push(s)}this.tokenBuffer.push(o)}this.tokenBuffer.push(n)}this.tokenBuffer.push(e)}return t}},Wu={allowIndefinite:!1,allowUndefined:!1,allowNaN:!1,allowInfinity:!1,allowBigInt:!0,strict:!0,useMaps:!1,rejectDuplicateMapKeys:!0,tags:[]};Wu.tags[42]=O.parse;var c1="dag-json",Zu=297,jp=r=>qu(r,a1),Gp=r=>{let t=r1(r),e=Object.assign(Wu,{tokenizer:new Gu(t,Wu)});return ju(t,e)},u1=r=>l1.decode(jp(r));var l1=new TextDecoder,f1=r=>Gp(h1.encode(r)),h1=new TextEncoder;var rl={};gt(rl,{code:()=>el,createLink:()=>n0,createNode:()=>r0,decode:()=>B1,encode:()=>A1,name:()=>S1,prepare:()=>Qu,validate:()=>tl});var d1=new TextDecoder;function Ju(r,t){let e=0;for(let n=0;;n+=7){if(n>=64)throw new Error("protobuf: varint overflow");if(t>=r.length)throw new Error("protobuf: unexpected end of data");let o=r[t++];if(e+=n<28?(o&127)<<n:(o&127)*2**n,o<128)break}return[e,t]}function ta(r,t){let e;[e,t]=Ju(r,t);let n=t+e;if(e<0||n<0)throw new Error("protobuf: invalid length");if(n>r.length)throw new Error("protobuf: unexpected end of data");return[r.subarray(t,n),n]}function Wp(r,t){let e;return[e,t]=Ju(r,t),[e&7,e>>3,t]}function p1(r){let t={},e=r.length,n=0;for(;n<e;){let o,s;if([o,s,n]=Wp(r,n),s===1){if(t.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(o!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${o}) for Hash`);if(t.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[t.Hash,n]=ta(r,n)}else if(s===2){if(t.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(o!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${o}) for Name`);if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let i;[i,n]=ta(r,n),t.Name=d1.decode(i)}else if(s===3){if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(o!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${o}) for Tsize`);[t.Tsize,n]=Ju(r,n)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${s}`)}if(n>e)throw new Error("protobuf: (PBLink) unexpected end of data");return t}function Zp(r){let t=r.length,e=0,n,o=!1,s;for(;e<t;){let a,c;if([a,c,e]=Wp(r,e),a!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${a}`);if(c===1){if(s)throw new Error("protobuf: (PBNode) duplicate Data section");[s,e]=ta(r,e),n&&(o=!0)}else if(c===2){if(o)throw new Error("protobuf: (PBNode) duplicate Links section");n||(n=[]);let u;[u,e]=ta(r,e),n.push(p1(u))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${c}`)}if(e>t)throw new Error("protobuf: (PBNode) unexpected end of data");let i={};return s&&(i.Data=s),i.Links=n||[],i}var Jp=new TextEncoder,Yp=2**32,m1=2**31;function g1(r,t){let e=t.length;if(typeof r.Tsize=="number"){if(r.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(r.Tsize))throw new Error("Tsize too large for encoding");e=Vo(t,e,r.Tsize)-1,t[e]=24}if(typeof r.Name=="string"){let n=Jp.encode(r.Name);e-=n.length,t.set(n,e),e=Vo(t,e,n.length)-1,t[e]=18}return r.Hash&&(e-=r.Hash.length,t.set(r.Hash,e),e=Vo(t,e,r.Hash.length)-1,t[e]=10),t.length-e}function Xp(r){let t=w1(r),e=new Uint8Array(t),n=t;if(r.Data&&(n-=r.Data.length,e.set(r.Data,n),n=Vo(e,n,r.Data.length)-1,e[n]=10),r.Links)for(let o=r.Links.length-1;o>=0;o--){let s=g1(r.Links[o],e.subarray(0,n));n-=s,n=Vo(e,n,s)-1,e[n]=18}return e}function y1(r){let t=0;if(r.Hash){let e=r.Hash.length;t+=1+e+Fn(e)}if(typeof r.Name=="string"){let e=Jp.encode(r.Name).length;t+=1+e+Fn(e)}return typeof r.Tsize=="number"&&(t+=1+Fn(r.Tsize)),t}function w1(r){let t=0;if(r.Data){let e=r.Data.length;t+=1+e+Fn(e)}if(r.Links)for(let e of r.Links){let n=y1(e);t+=1+n+Fn(n)}return t}function Vo(r,t,e){t-=Fn(e);let n=t;for(;e>=m1;)r[t++]=e&127|128,e/=128;for(;e>=128;)r[t++]=e&127|128,e>>>=7;return r[t]=e,n}function Fn(r){return r%2===0&&r++,Math.floor((x1(r)+6)/7)}function x1(r){let t=0;return r>=Yp&&(r=Math.floor(r/Yp),t=32),r>=65536&&(r>>>=16,t+=16),r>=256&&(r>>>=8,t+=8),t+b1[r]}var b1=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8];var v1=["Data","Links"],E1=["Hash","Name","Tsize"],Xu=new TextEncoder;function t0(r,t){if(r===t)return 0;let e=r.Name?Xu.encode(r.Name):[],n=t.Name?Xu.encode(t.Name):[],o=e.length,s=n.length;for(let i=0,a=Math.min(o,s);i<a;++i)if(e[i]!==n[i]){o=e[i],s=n[i];break}return o<s?-1:s<o?1:0}function Qp(r,t){return!Object.keys(r).some(e=>!t.includes(e))}function e0(r){if(typeof r.asCID=="object"){let e=O.asCID(r);if(!e)throw new TypeError("Invalid DAG-PB form");return{Hash:e}}if(typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let t={};if(r.Hash){let e=O.asCID(r.Hash);try{e||(typeof r.Hash=="string"?e=O.parse(r.Hash):r.Hash instanceof Uint8Array&&(e=O.decode(r.Hash)))}catch(n){throw new TypeError(`Invalid DAG-PB form: ${n.message}`)}e&&(t.Hash=e)}if(!t.Hash)throw new TypeError("Invalid DAG-PB form");return typeof r.Name=="string"&&(t.Name=r.Name),typeof r.Tsize=="number"&&(t.Tsize=r.Tsize),t}function Qu(r){if((r instanceof Uint8Array||typeof r=="string")&&(r={Data:r}),typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let t={};if(r.Data!==void 0)if(typeof r.Data=="string")t.Data=Xu.encode(r.Data);else if(r.Data instanceof Uint8Array)t.Data=r.Data;else throw new TypeError("Invalid DAG-PB form");if(r.Links!==void 0)if(Array.isArray(r.Links))t.Links=r.Links.map(e0),t.Links.sort(t0);else throw new TypeError("Invalid DAG-PB form");else t.Links=[];return t}function tl(r){if(!r||typeof r!="object"||Array.isArray(r)||r instanceof Uint8Array||r["/"]&&r["/"]===r.bytes)throw new TypeError("Invalid DAG-PB form");if(!Qp(r,v1))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(r.Data!==void 0&&!(r.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(r.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let t=0;t<r.Links.length;t++){let e=r.Links[t];if(!e||typeof e!="object"||Array.isArray(e)||e instanceof Uint8Array||e["/"]&&e["/"]===e.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!Qp(e,E1))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(e.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(e.Hash==null||!e.Hash["/"]||e.Hash["/"]!==e.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(e.Name!==void 0&&typeof e.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(e.Tsize!==void 0){if(typeof e.Tsize!="number"||e.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(e.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(t>0&&t0(e,r.Links[t-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function r0(r,t=[]){return Qu({Data:r,Links:t})}function n0(r,t,e){return e0({Hash:e,Name:r,Tsize:t})}function o0(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}var S1="dag-pb",el=112;function A1(r){tl(r);let t={};return r.Links&&(t.Links=r.Links.map(e=>{let n={};return e.Hash&&(n.Hash=e.Hash.bytes),e.Name!==void 0&&(n.Name=e.Name),e.Tsize!==void 0&&(n.Tsize=e.Tsize),n})),r.Data&&(t.Data=r.Data),Xp(t)}function B1(r){let t=o0(r),e=Zp(t),n={};return e.Data&&(n.Data=e.Data),e.Links&&(n.Links=e.Links.map(o=>{let s={};try{s.Hash=O.decode(o.Hash)}catch{}if(!s.Hash)throw new Error("Invalid Hash field found in link, expected CID");return o.Name!==void 0&&(s.Name=o.Name),o.Tsize!==void 0&&(s.Tsize=o.Tsize),s})),n}function $n(r){return r?.then!=null}function s0(r=[],t){let e={[el]:rl,[Jn]:Xn,[Hu]:zu,[Zu]:Yu,[lc]:cs};return r.forEach(n=>{e[n.code]=n}),async n=>{let o=e[n];if(o==null&&t!=null){let s=t(n);$n(s)?o=await s:o=s,e[o.code]=o}if(o!=null)return o;throw new Mo(`Could not load codec for ${n}`)}}function i0(r=[],t){let e={[dr.code]:dr,[ls.code]:ls,[jt.code]:jt};return r.forEach(n=>{e[n.code]=n}),async n=>{let o=e[n];if(o==null&&t!=null){let s=t(n);$n(s)?o=await s:o=s,e[o.code]=o}if(o!=null)return o;throw new $o(`No hasher configured for multihash code 0x${n.toString(16)}, please configure one. You can look up which hash this is at https://github.com/multiformats/multicodec/blob/master/table.csv`)}}var ue=class r extends Error{static name="NotFoundError";static code="ERR_NOT_FOUND";name=r.name;code=r.code;constructor(t="Not Found"){super(t)}};var nr=class{has(t,e){return Promise.reject(new Error(".has is not implemented"))}put(t,e,n){return Promise.reject(new Error(".put is not implemented"))}async*putMany(t,e){for await(let{cid:n,block:o}of t)await this.put(n,o,e),yield n}get(t,e){return Promise.reject(new Error(".get is not implemented"))}async*getMany(t,e){for await(let n of t)yield{cid:n,block:await this.get(n,e)}}delete(t,e){return Promise.reject(new Error(".delete is not implemented"))}async*deleteMany(t,e){for await(let n of t)await this.delete(n,e),yield n}async*getAll(t){throw new Error(".getAll is not implemented")}};var ea=0,ra=class extends nr{child;constructor(t){super(),this.child=t}put(t,e){return t.multihash.code===ea||this.child==null?t:this.child.put(t,e)}get(t){if(t.multihash.code===ea)return t.multihash.digest;if(this.child==null)throw new ue;return this.child.get(t)}has(t){return t.multihash.code===ea?!0:this.child==null?!1:this.child.has(t)}delete(t){if(t.code!==ea&&this.child!=null)return this.child.delete(t)}getAll(t){return this.child!=null?this.child.getAll(t):[]}};function k1(r){return r[Symbol.asyncIterator]!=null}function I1(r,t){let e=0;if(k1(r))return async function*(){for await(let c of r)await t(c,e++)&&(yield c)}();let n=sn(r),{value:o,done:s}=n.next();if(s===!0)return function*(){}();let i=t(o,e++);if(typeof i.then=="function")return async function*(){await i&&(yield o);for await(let c of n)await t(c,e++)&&(yield c)}();let a=t;return function*(){i===!0&&(yield o);for(let c of n)a(c,e++)&&(yield c)}()}var Ae=I1;function _1(r){return r[Symbol.asyncIterator]!=null}function a0(r){return r?.then!=null}function T1(r,t){let e=0;if(_1(r))return async function*(){for await(let c of r){let u=t(c,e++);a0(u)&&await u,yield c}}();let n=sn(r),{value:o,done:s}=n.next();if(s===!0)return function*(){}();if(typeof t(o,e++)?.then=="function")return async function*(){yield o;for await(let c of n){let u=t(c,e++);a0(u)&&await u,yield c}}();let a=t;return function*(){yield o;for(let c of n)a(c,e++),yield c}()}var nl=T1;var na=class{child;getHasher;log;logger;components;constructor(t){this.log=t.logger.forComponent("helia:networked-storage"),this.logger=t.logger,this.components=t,this.child=new ra(t.blockstore),this.getHasher=t.getHasher}async put(t,e,n={}){return await this.child.has(t,n)?(n.onProgress?.(new tt("blocks:put:duplicate",t)),t):(n.onProgress?.(new tt("blocks:put:providers:notify",t)),await Promise.all(this.components.blockBrokers.map(async o=>o.announce?.(t,e,n))),n.onProgress?.(new tt("blocks:put:blockstore:put",t)),this.child.put(t,e,n))}async*putMany(t,e={}){let n=Ae(t,async({cid:s})=>{let i=await this.child.has(s,e);return i&&e.onProgress?.(new tt("blocks:put-many:duplicate",s)),!i}),o=nl(n,async({cid:s,block:i})=>{e.onProgress?.(new tt("blocks:put-many:providers:notify",s)),await Promise.all(this.components.blockBrokers.map(async a=>a.announce?.(s,i,e)))});e.onProgress?.(new tt("blocks:put-many:blockstore:put-many")),yield*this.child.putMany(o,e)}async get(t,e={}){if(e.offline!==!0&&!await this.child.has(t,e)){let n=await this.getHasher(t.multihash.code);e.onProgress?.(new tt("blocks:get:providers:get",t));let o=await c0(t,this.components.blockBrokers,n,{...e,log:this.log});return e.onProgress?.(new tt("blocks:get:blockstore:put",t)),await this.child.put(t,o,e),e.onProgress?.(new tt("blocks:get:providers:notify",t)),await Promise.all(this.components.blockBrokers.map(async s=>s.announce?.(t,o,e))),o}return e.onProgress?.(new tt("blocks:get:blockstore:get",t)),this.child.get(t,e)}async*getMany(t,e={}){e.onProgress?.(new tt("blocks:get-many:blockstore:get-many")),yield*this.child.getMany(nl(t,async n=>{if(e.offline!==!0&&!await this.child.has(n,e)){let o=await this.getHasher(n.multihash.code);e.onProgress?.(new tt("blocks:get-many:providers:get",n));let s=await c0(n,this.components.blockBrokers,o,{...e,log:this.log});e.onProgress?.(new tt("blocks:get-many:blockstore:put",n)),await this.child.put(n,s,e),e.onProgress?.(new tt("blocks:get-many:providers:notify",n)),await Promise.all(this.components.blockBrokers.map(async i=>i.announce?.(n,s,e)))}}))}async delete(t,e={}){e.onProgress?.(new tt("blocks:delete:blockstore:delete",t)),await this.child.delete(t,e)}async*deleteMany(t,e={}){e.onProgress?.(new tt("blocks:delete-many:blockstore:delete-many")),yield*this.child.deleteMany(async function*(){for await(let n of t)yield n}(),e)}async has(t,e={}){return this.child.has(t,e)}async*getAll(t={}){t.onProgress?.(new tt("blocks:get-all:blockstore:get-many")),yield*this.child.getAll(t)}},oa=class extends na{started;constructor(t){super(t),this.started=!1}isStarted(){return this.started}async start(){await ur(this.child,...this.components.blockBrokers),this.started=!0}async stop(){await lr(this.child,...this.components.blockBrokers),this.started=!1}unwrap(){return this.child}createSession(t,e){let n=this.components.blockBrokers.map(o=>o.createSession==null?o:o.createSession(e));return new ol({blockstore:this.child,blockBrokers:n,getHasher:this.getHasher,logger:this.logger},{root:t})}},ol=class extends na{closeController;constructor(t,e){super(t),this.closeController=new AbortController,ht(1/0,this.closeController.signal),this.log=t.logger.forComponent(`helia:session-storage:${e.root}`)}close(){this.closeController.abort()}async put(t,e,n={}){let o=Mt([this.closeController.signal,n.signal]);ht(1/0,o);try{return await super.put(t,e,{...n,signal:o})}finally{o.clear()}}async*putMany(t,e={}){let n=Mt([this.closeController.signal,e.signal]);ht(1/0,n);try{yield*super.putMany(t,{...e,signal:n})}finally{n.clear()}}async get(t,e={}){let n=Mt([this.closeController.signal,e.signal]);ht(1/0,n);try{return await super.get(t,{...e,signal:n})}finally{n.clear()}}async*getMany(t,e={}){let n=Mt([this.closeController.signal,e.signal]);ht(1/0,n);try{yield*super.getMany(t,{...e,signal:n})}finally{n.clear()}}async delete(t,e={}){let n=Mt([this.closeController.signal,e.signal]);ht(1/0,n);try{await super.delete(t,{...e,signal:n})}finally{n.clear()}}async*deleteMany(t,e={}){let n=Mt([this.closeController.signal,e.signal]);ht(1/0,n);try{yield*super.deleteMany(t,{...e,signal:n})}finally{n.clear()}}async has(t,e={}){let n=Mt([this.closeController.signal,e.signal]);ht(1/0,n);try{return await super.has(t,{...e,signal:n})}finally{n.clear()}}async*getAll(t={}){let e=Mt([this.closeController.signal,t.signal]);ht(1/0,e);try{yield*super.getAll({...t,signal:e})}finally{e.clear()}}};function C1(r){return typeof r.retrieve=="function"}var N1=(r,t)=>{if(t==null)throw new St(`No hasher configured for multihash code 0x${r.multihash.code.toString(16)}, please configure one. You can look up which hash this is at https://github.com/multiformats/multicodec/blob/master/table.csv`);return async e=>{let n,o=t.digest(e);if($n(o)?n=await o:n=o,!ot(n.digest,r.multihash.digest))throw new cr("Hash of downloaded block did not match multihash from passed CID")}};async function c0(r,t,e,n){let o=N1(r,e),s=new AbortController,i=Mt([s.signal,n.signal]);ht(1/0,s.signal,i);let a=[];for(let c of t)C1(c)&&a.push(c);try{return await Promise.any(a.map(async c=>{try{let u=!1,l=await c.retrieve(r,{...n,signal:i,validateFn:async f=>{await o(f),u=!0}});return u||await o(l),l}catch(u){throw n.log.error("could not retrieve verified block for %c",r,u),u}}))}finally{s.abort(),i.clear()}}var Oo=class extends rn{intialPeerSearchComplete;requests;name;log;logger;minProviders;maxProviders;providers;evictionFilter;constructor(t,e){super(),ht(1/0,this),this.name=e.name,this.logger=t.logger,this.log=t.logger.forComponent(this.name),this.requests=new Map,this.minProviders=e.minProviders??1,this.maxProviders=e.maxProviders??5,this.providers=[],this.evictionFilter=au(this.maxProviders)}async retrieve(t,e={}){let n=Te.encode(t.multihash.bytes),o=this.requests.get(n);if(o!=null)return this.log("join existing request for %c",t),o;let s=At();if(this.requests.set(n,s.promise),this.providers.length===0){let u=!1;this.intialPeerSearchComplete==null&&(u=!0,this.log=this.logger.forComponent(`${this.name}:${t}`),this.intialPeerSearchComplete=this.findProviders(t,this.minProviders,e)),await this.intialPeerSearchComplete,u&&this.log("found initial session peers for %c",t)}let i=!1,a=new Ve({concurrency:this.maxProviders});a.addEventListener("error",()=>{}),a.addEventListener("failure",u=>{this.log.error("error querying provider %o, evicting from session",u.detail.job.options.provider,u.detail.error),this.evict(u.detail.job.options.provider)}),a.addEventListener("success",u=>{i=!0,s.resolve(u.detail.result)}),a.addEventListener("idle",()=>{i||e.signal?.aborted===!0||Promise.resolve().then(async()=>{this.log("no session peers had block for for %c, finding new providers",t);for(let u=0;u<this.minProviders&&this.providers.length!==0;u++){let l=this.providers[Math.floor(Math.random()*this.providers.length)];this.evict(l)}await this.findProviders(t,this.minProviders,e),this.log("found new providers re-retrieving %c",t),this.requests.delete(n),s.resolve(await this.retrieve(t,e))}).catch(u=>{this.log.error("could not find new providers for %c",t,u),s.reject(u)})});let c=u=>{a.add(async()=>this.queryProvider(t,u.detail,e),{provider:u.detail}).catch(l=>{e.signal?.aborted!==!0&&this.log.error("error retrieving session block for %c",t,l)})};this.addEventListener("provider",c),Promise.all([...this.providers].map(async u=>a.add(async()=>this.queryProvider(t,u,e),{provider:u}))).catch(u=>{e.signal?.aborted!==!0&&this.log.error("error retrieving session block for %c",t,u)});try{return await s.promise}finally{this.removeEventListener("provider",c),a.clear(),this.requests.delete(n)}}evict(t){this.evictionFilter.add(this.toEvictionKey(t));let e=this.providers.findIndex(n=>this.equals(n,t));e!==-1&&this.providers.splice(e,1)}isEvicted(t){return this.evictionFilter.has(this.toEvictionKey(t))}hasProvider(t){return!!(this.providers.find(e=>this.equals(e,t))!=null||this.isEvicted(t))}async findProviders(t,e,n){let o=At(),s=0;return Promise.resolve().then(async()=>{this.log("finding %d-%d new provider(s) for %c",e,this.maxProviders,t);for await(let i of this.findNewProviders(t,n)){if(s===this.maxProviders||n.signal?.aborted===!0)break;if(!this.hasProvider(i)&&(this.log("found %d/%d new providers",s,this.maxProviders),this.providers.push(i),this.safeDispatchEvent("provider",{detail:i}),s++,s===e&&(this.log("session is ready"),o.resolve()),this.providers.length===this.maxProviders)){this.log("found max session peers",s);break}}if(this.log("found %d/%d new session peers",s,this.maxProviders),s<e)throw new Fo(`Found ${s} of ${e} ${this.name} providers for ${t}`)}).catch(i=>{this.log.error("error searching routing for potential session peers for %c",t,i.errors??i),o.reject(i)}),o.promise}};var sa=class{blockstore;datastore;pins;logger;routing;getCodec;getHasher;dns;metrics;log;constructor(t){this.logger=t.logger??xd(),this.log=this.logger.forComponent("helia"),this.getHasher=i0(t.hashers,t.loadHasher),this.getCodec=s0(t.codecs,t.loadCodec),this.dns=t.dns??Td(),this.metrics=t.metrics;let e={blockstore:t.blockstore,datastore:t.datastore,logger:this.logger,blockBrokers:[],getHasher:this.getHasher,getCodec:this.getCodec,dns:this.dns,metrics:this.metrics,...t.components??{}};this.routing=e.routing=new Yi(e,{routers:(t.routers??[]).flatMap(o=>{let s=[o];return o[Zn]!=null&&s.push(o[Zn]),o[Yn]!=null&&s.push(o[Yn]),s}),providerLookupConcurrency:t.providerLookupConcurrency});let n=new oa(e);this.pins=new Zi(t.datastore,n,this.getCodec),this.blockstore=new Ji(n,this.pins,{holdGcLock:t.holdGcLock??!0}),this.datastore=t.datastore,e.blockBrokers=t.blockBrokers.map(o=>o(e))}async start(){await zp(this.datastore),await ur(this.blockstore,this.datastore,this.routing)}async stop(){await lr(this.blockstore,this.datastore,this.routing)}async gc(t={}){let e=await this.blockstore.lock.writeLock();try{let n=this,o=this.blockstore.unwrap();this.log("gc start"),await Rr(o.deleteMany(async function*(){for await(let{cid:s}of o.getAll())try{if(await n.pins.isPinned(s,t))continue;yield s,t.onProgress?.(new tt("helia:gc:deleted",s))}catch(i){n.log.error("Error during gc",i),t.onProgress?.(new tt("helia:gc:error",i))}}()))}finally{e()}this.log("gc finished")}};var ia=class{index=0;input="";new(t){return this.index=0,this.input=t,this}readAtomically(t){let e=this.index,n=t();return n===void 0&&(this.index=e),n}parseWith(t){let e=t();if(this.index===this.input.length)return e}peekChar(){if(!(this.index>=this.input.length))return this.input[this.index]}readChar(){if(!(this.index>=this.input.length))return this.input[this.index++]}readGivenChar(t){return this.readAtomically(()=>{let e=this.readChar();if(e===t)return e})}readSeparator(t,e,n){return this.readAtomically(()=>{if(!(e>0&&this.readGivenChar(t)===void 0))return n()})}readNumber(t,e,n,o){return this.readAtomically(()=>{let s=0,i=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",u=2**(8*o)-1;for(;;){let l=this.readAtomically(()=>{let f=this.readChar();if(f===void 0)return;let d=Number.parseInt(f,t);if(!Number.isNaN(d))return d});if(l===void 0)break;if(s*=t,s+=l,s>u||(i+=1,e!==void 0&&i>e))return}if(i!==0)return!n&&c&&i>1?void 0:s})}readIPv4Addr(){return this.readAtomically(()=>{let t=new Uint8Array(4);for(let e=0;e<t.length;e++){let n=this.readSeparator(".",e,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;t[e]=n}return t})}readIPv6Addr(){let t=e=>{for(let n=0;n<e.length/2;n++){let o=n*2;if(n<e.length-3){let i=this.readSeparator(":",n,()=>this.readIPv4Addr());if(i!==void 0)return e[o]=i[0],e[o+1]=i[1],e[o+2]=i[2],e[o+3]=i[3],[o+4,!0]}let s=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(s===void 0)return[o,!1];e[o]=s>>8,e[o+1]=s&255}return[e.length,!1]};return this.readAtomically(()=>{let e=new Uint8Array(16),[n,o]=t(e);if(n===16)return e;if(o||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let s=new Uint8Array(14),i=16-(n+2),[a]=t(s.subarray(0,i));return e.set(s.subarray(0,a),16-a),e})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var u0=45,P1=15,Mn=new ia;function sl(r){if(!(r.length>P1))return Mn.new(r).parseWith(()=>Mn.readIPv4Addr())}function il(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>u0))return Mn.new(r).parseWith(()=>Mn.readIPv6Addr())}function aa(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>u0))return Mn.new(r).parseWith(()=>Mn.readIPAddr())}function Vn(r){return!!sl(r)}function On(r){return!!il(r)}function ca(r){return!!aa(r)}var f0=Lr(l0(),1),L1=["0.0.0.0/8","10.0.0.0/8","100.64.0.0/10","127.0.0.0/8","169.254.0.0/16","172.16.0.0/12","192.0.0.0/24","192.0.0.0/29","192.0.0.8/32","192.0.0.9/32","192.0.0.10/32","192.0.0.170/32","192.0.0.171/32","192.0.2.0/24","192.31.196.0/24","192.52.193.0/24","192.88.99.0/24","192.168.0.0/16","192.175.48.0/24","198.18.0.0/15","198.51.100.0/24","203.0.113.0/24","240.0.0.0/4","255.255.255.255/32"],U1=L1.map(r=>new f0.Netmask(r));function al(r){for(let t of U1)if(t.contains(r))return!0;return!1}function R1(r){return/^::ffff:([0-9a-fA-F]{1,4}):([0-9a-fA-F]{1,4})$/.test(r)}function D1(r){let t=r.split(":");if(t.length<2)return!1;let e=t[t.length-1].padStart(4,"0"),n=t[t.length-2].padStart(4,"0"),o=`${parseInt(n.substring(0,2),16)}.${parseInt(n.substring(2),16)}.${parseInt(e.substring(0,2),16)}.${parseInt(e.substring(2),16)}`;return al(o)}function F1(r){return/^::ffff:([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/.test(r)}function $1(r){let t=r.split(":"),e=t[t.length-1];return al(e)}function M1(r){return/^::$/.test(r)||/^::1$/.test(r)||/^64:ff9b::([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/.test(r)||/^100::([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2001::([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2001:2[0-9a-fA-F]:([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2001:db8:([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2002:([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^f[c-d]([0-9a-fA-F]{2,2}):/i.test(r)||/^fe[8-9a-bA-B][0-9a-fA-F]:/i.test(r)||/^ff([0-9a-fA-F]{2,2}):/i.test(r)}function h0(r){return Vn(r)?al(r):R1(r)?D1(r):F1(r)?$1(r):On(r)?M1(r):void 0}var V1=r=>r.toString().split("/").slice(1),Hn=r=>({match:t=>t.length<1?!1:r(t[0])?t.slice(1):!1,pattern:"fn"}),J=r=>({match:t=>Hn(e=>e===r).match(t),pattern:r}),zn=()=>({match:r=>Hn(t=>typeof t=="string").match(r),pattern:"{string}"}),zo=()=>({match:r=>Hn(t=>!isNaN(parseInt(t))).match(r),pattern:"{number}"}),ft=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{st.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),Ko=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{ic.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),at=r=>({match:t=>{let e=r.match(t);return e===!1?t:e},pattern:`optional(${r.pattern})`}),Ht=(...r)=>({match:t=>{let e;for(let n of r){let o=n.match(t);o!==!1&&(e==null||o.length<e.length)&&(e=o)}return e??!1},pattern:`or(${r.map(t=>t.pattern).join(", ")})`}),Q=(...r)=>({match:t=>{for(let e of r){let n=e.match(t);if(n===!1)return!1;t=n}return t},pattern:`and(${r.map(t=>t.pattern).join(", ")})`});function mt(...r){function t(o){let s=V1(o);for(let i of r){let a=i.match(s);if(a===!1)return!1;s=a}return s}function e(o){return t(o)!==!1}function n(o){let s=t(o);return s===!1?!1:s.length===0}return{matchers:r,matches:e,exactMatch:n}}var la=Q(J("dns4"),zn()),fa=Q(J("dns6"),zn()),ha=Q(J("dnsaddr"),zn()),ul=Q(J("dns"),zn()),R3=mt(la,at(ft())),D3=mt(fa,at(ft())),F3=mt(ha,at(ft())),d0=mt(Ht(ul,ha,la,fa),at(ft())),p0=Q(J("ip4"),Hn(Vn)),m0=Q(J("ip6"),Hn(On)),ll=Ht(p0,m0),or=Ht(ll,ul,la,fa,ha),$3=mt(Ht(ll,Q(Ht(ul,ha,la,fa),at(ft())))),M3=mt(p0),V3=mt(m0),O3=mt(ll),fl=Q(or,J("tcp"),zo()),qo=Q(or,J("udp"),zo()),H3=mt(Q(fl,at(ft()))),z3=mt(qo),hl=Q(qo,J("quic")),da=Q(qo,J("quic-v1")),O1=Ht(hl,da),K3=mt(hl),q3=mt(da),cl=Ht(or,fl,qo,hl,da),g0=Ht(Q(cl,J("ws"),at(ft()))),j3=mt(g0),y0=Ht(Q(cl,J("wss"),at(ft())),Q(cl,J("tls"),at(Q(J("sni"),zn())),J("ws"),at(ft()))),G3=mt(y0),w0=Q(qo,J("webrtc-direct"),at(Ko()),at(Ko()),at(ft())),W3=mt(w0),x0=Q(da,J("webtransport"),at(Ko()),at(Ko()),at(ft())),Z3=mt(x0),ua=Ht(g0,y0,Q(fl,at(ft())),Q(O1,at(ft())),Q(or,at(ft())),w0,x0,ft()),Y3=mt(ua),H1=Q(ua,J("p2p-circuit"),ft()),J3=mt(H1),z1=Ht(Q(ua,J("p2p-circuit"),J("webrtc"),at(ft())),Q(ua,J("webrtc"),at(ft())),J("webrtc")),X3=mt(z1),K1=Ht(Q(or,J("tcp"),zo(),J("http"),at(ft())),Q(or,J("http"),at(ft()))),b0=mt(K1),q1=Ht(Q(or,J("tcp"),Ht(Q(J("443"),J("http")),Q(zo(),J("https"))),at(ft())),Q(or,J("tls"),J("http"),at(ft())),Q(or,J("https"),at(ft()))),v0=mt(q1);var ik=parseInt("0xFFFF",16),ak=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);var A0=Vn,Y1=On,dl=function(r){let t=0;if(r=r.toString().trim(),A0(r)){let e=new Uint8Array(t+4);return r.split(/\./g).forEach(n=>{e[t++]=parseInt(n,10)&255}),e}if(Y1(r)){let e=r.split(":",8),n;for(n=0;n<e.length;n++){let s=A0(e[n]),i;s&&(i=dl(e[n]),e[n]=rt(i.slice(0,2),"base16")),i!=null&&++n<8&&e.splice(n,0,rt(i.slice(2,4),"base16"))}if(e[0]==="")for(;e.length<8;)e.unshift("0");else if(e[e.length-1]==="")for(;e.length<8;)e.push("0");else if(e.length<8){for(n=0;n<e.length&&e[n]!=="";n++);let s=[n,1];for(n=9-e.length;n>0;n--)s.push("0");e.splice.apply(e,s)}let o=new Uint8Array(t+16);for(n=0;n<e.length;n++){let s=parseInt(e[n],16);o[t++]=s>>8&255,o[t++]=s&255}return o}throw new Error("invalid ip address")},B0=function(r,t=0,e){t=~~t,e=e??r.length-t;let n=new DataView(r.buffer);if(e===4){let o=[];for(let s=0;s<e;s++)o.push(r[t+s]);return o.join(".")}if(e===16){let o=[];for(let s=0;s<e;s+=2)o.push(n.getUint16(t+s).toString(16));return o.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var Kn={},pl={},X1=[[4,32,"ip4"],[6,16,"tcp"],[33,16,"dccp"],[41,128,"ip6"],[42,-1,"ip6zone"],[43,8,"ipcidr"],[53,-1,"dns",!0],[54,-1,"dns4",!0],[55,-1,"dns6",!0],[56,-1,"dnsaddr",!0],[132,16,"sctp"],[273,16,"udp"],[275,0,"p2p-webrtc-star"],[276,0,"p2p-webrtc-direct"],[277,0,"p2p-stardust"],[280,0,"webrtc-direct"],[281,0,"webrtc"],[290,0,"p2p-circuit"],[301,0,"udt"],[302,0,"utp"],[400,-1,"unix",!1,!0],[421,-1,"ipfs"],[421,-1,"p2p"],[443,0,"https"],[444,96,"onion"],[445,296,"onion3"],[446,-1,"garlic64"],[448,0,"tls"],[449,-1,"sni"],[460,0,"quic"],[461,0,"quic-v1"],[465,0,"webtransport"],[466,-1,"certhash"],[477,0,"ws"],[478,0,"wss"],[479,0,"p2p-websocket-star"],[480,0,"http"],[481,-1,"http-path"],[777,-1,"memory"]];X1.forEach(r=>{let t=Q1(...r);pl[t.code]=t,Kn[t.name]=t});function Q1(r,t,e,n,o){return{code:r,size:t,name:e,resolvable:!!n,path:!!o}}function j(r){if(typeof r=="number"){if(pl[r]!=null)return pl[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(Kn[r]!=null)return Kn[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var Hk=j("ip4"),zk=j("ip6"),Kk=j("ipcidr");function wl(r,t){switch(j(r).code){case 4:case 41:return eb(t);case 42:return yl(t);case 6:case 273:case 33:case 132:return _0(t).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return yl(t);case 421:return sb(t);case 444:return I0(t);case 445:return I0(t);case 466:return ob(t);case 481:return globalThis.encodeURIComponent(yl(t));default:return rt(t,"base16")}}function xl(r,t){switch(j(r).code){case 4:return k0(t);case 41:return k0(t);case 42:return gl(t);case 6:case 273:case 33:case 132:return bl(parseInt(t,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return gl(t);case 421:return rb(t);case 444:return ib(t);case 445:return ab(t);case 466:return nb(t);case 481:return gl(globalThis.decodeURIComponent(t));default:return z(t,"base16")}}var ml=Object.values(ro).map(r=>r.decoder),tb=function(){let r=ml[0].or(ml[1]);return ml.slice(2).forEach(t=>r=r.or(t)),r}();function k0(r){if(!ca(r))throw new Error("invalid ip address");return dl(r)}function eb(r){let t=B0(r,0,r.length);if(t==null)throw new Error("ipBuff is required");if(!ca(t))throw new Error("invalid ip address");return t}function bl(r){let t=new ArrayBuffer(2);return new DataView(t).setUint16(0,r),new Uint8Array(t)}function _0(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function gl(r){let t=z(r),e=Uint8Array.from(on(t.length));return Xt([e,t],e.length+t.length)}function yl(r){let t=Dr(r);if(r=r.slice(qt(t)),r.length!==t)throw new Error("inconsistent lengths");return rt(r)}function rb(r){let t;r[0]==="Q"||r[0]==="1"?t=pe(st.decode(`z${r}`)).bytes:t=O.parse(r).multihash.bytes;let e=Uint8Array.from(on(t.length));return Xt([e,t],e.length+t.length)}function nb(r){let t=tb.decode(r),e=Uint8Array.from(on(t.length));return Xt([e,t],e.length+t.length)}function ob(r){let t=Dr(r),e=r.slice(qt(t));if(e.length!==t)throw new Error("inconsistent lengths");return"u"+rt(e,"base64url")}function sb(r){let t=Dr(r),e=r.slice(qt(t));if(e.length!==t)throw new Error("inconsistent lengths");return rt(e,"base58btc")}function ib(r){let t=r.split(":");if(t.length!==2)throw new Error(`failed to parse onion addr: ["'${t.join('", "')}'"]' does not contain a port number`);if(t[0].length!==16)throw new Error(`failed to parse onion addr: ${t[0]} not a Tor onion address.`);let e=_t.decode("b"+t[0]),n=parseInt(t[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let o=bl(n);return Xt([e,o],e.length+o.length)}function ab(r){let t=r.split(":");if(t.length!==2)throw new Error(`failed to parse onion addr: ["'${t.join('", "')}'"]' does not contain a port number`);if(t[0].length!==56)throw new Error(`failed to parse onion addr: ${t[0]} not a Tor onion3 address.`);let e=_t.decode(`b${t[0]}`),n=parseInt(t[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let o=bl(n);return Xt([e,o],e.length+o.length)}function I0(r){let t=r.slice(0,r.length-2),e=r.slice(r.length-2),n=rt(t,"base32"),o=_0(e);return`${n}:${o}`}function T0(r){r=vl(r);let t=[],e=[],n=null,o=r.split("/").slice(1);if(o.length===1&&o[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let s=0;s<o.length;s++){let i=o[s],a=j(i);if(a.size===0){t.push([a.code]),e.push([a.code]);continue}if(s++,s>=o.length)throw N0("invalid address: "+r);if(a.path===!0){n=vl(o.slice(s).join("/")),t.push([a.code,xl(a.code,n)]),e.push([a.code,n]);break}let c=xl(a.code,o[s]);t.push([a.code,c]),e.push([a.code,wl(a.code,c)])}return{string:C0(e),bytes:Sl(t),tuples:t,stringTuples:e,path:n}}function El(r){let t=[],e=[],n=null,o=0;for(;o<r.length;){let s=Dr(r,o),i=qt(s),a=j(s),c=cb(a,r.slice(o+i));if(c===0){t.push([s]),e.push([s]),o+=i;continue}let u=r.slice(o+i,o+i+c);if(o+=c+i,o>r.length)throw N0("Invalid address Uint8Array: "+rt(r,"base16"));t.push([s,u]);let l=wl(s,u);if(e.push([s,l]),a.path===!0){n=l;break}}return{bytes:Uint8Array.from(r),string:C0(e),tuples:t,stringTuples:e,path:n}}function C0(r){let t=[];return r.map(e=>{let n=j(e[0]);return t.push(n.name),e.length>1&&e[1]!=null&&t.push(e[1]),null}),vl(t.join("/"))}function Sl(r){return Xt(r.map(t=>{let e=j(t[0]),n=Uint8Array.from(on(e.code));return t.length>1&&t[1]!=null&&(n=Xt([n,t[1]])),n}))}function cb(r,t){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let e=Dr(t instanceof Uint8Array?t:Uint8Array.from(t));return e+qt(e)}}function vl(r){return"/"+r.trim().split("/").filter(t=>t).join("/")}function N0(r){return new Error("Error parsing address: "+r)}var ub=Symbol.for("nodejs.util.inspect.custom"),Bl=Symbol.for("@multiformats/js-multiaddr/multiaddr"),lb=[j("dns").code,j("dns4").code,j("dns6").code,j("dnsaddr").code],Al=class extends Error{constructor(t="No available resolver"){super(t),this.name="NoAvailableResolverError"}},pa=class r{bytes;#t;#e;#r;#o;[Bl]=!0;constructor(t){t==null&&(t="");let e;if(t instanceof Uint8Array)e=El(t);else if(typeof t=="string"){if(t.length>0&&t.charAt(0)!=="/")throw new Error(`multiaddr "${t}" must start with a "/"`);e=T0(t)}else if(L0(t))e=El(t.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=e.bytes,this.#t=e.string,this.#e=e.tuples,this.#r=e.stringTuples,this.#o=e.path}toString(){return this.#t}toJSON(){return this.toString()}toOptions(){let t,e,n,o,s="",i=j("tcp"),a=j("udp"),c=j("ip4"),u=j("ip6"),l=j("dns6"),f=j("ip6zone");for(let[h,w]of this.stringTuples())h===f.code&&(s=`%${w??""}`),lb.includes(h)&&(e=i.name,o=443,n=`${w??""}${s}`,t=h===l.code?6:4),(h===i.code||h===a.code)&&(e=j(h).name,o=parseInt(w??"")),(h===c.code||h===u.code)&&(e=j(h).name,n=`${w??""}${s}`,t=h===u.code?6:4);if(t==null||e==null||n==null||o==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:t,host:n,transport:e,port:o}}protos(){return this.#e.map(([t])=>Object.assign({},j(t)))}protoCodes(){return this.#e.map(([t])=>t)}protoNames(){return this.#e.map(([t])=>j(t).name)}tuples(){return this.#e}stringTuples(){return this.#r}encapsulate(t){return t=new r(t),new r(this.toString()+t.toString())}decapsulate(t){let e=t.toString(),n=this.toString(),o=n.lastIndexOf(e);if(o<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${t.toString()}`);return new r(n.slice(0,o))}decapsulateCode(t){let e=this.tuples();for(let n=e.length-1;n>=0;n--)if(e[n][0]===t)return new r(Sl(e.slice(0,n)));return this}getPeerId(){try{let t=[];this.stringTuples().forEach(([n,o])=>{n===Kn.p2p.code&&t.push([n,o]),n===Kn["p2p-circuit"].code&&(t=[])});let e=t.pop();if(e?.[1]!=null){let n=e[1];return n[0]==="Q"||n[0]==="1"?rt(st.decode(`z${n}`),"base58btc"):rt(O.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#o}equals(t){return ot(this.bytes,t.bytes)}async resolve(t){let e=this.protos().find(s=>s.resolvable);if(e==null)return[this];let n=P0.get(e.name);if(n==null)throw new Al(`no available resolver for ${e.name}`);return(await n(this,t)).map(s=>sr(s))}nodeAddress(){let t=this.toOptions();if(t.transport!=="tcp"&&t.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${t.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:t.family,address:t.host,port:t.port}}isThinWaistAddress(t){let e=(t??this).protos();return!(e.length!==2||e[0].code!==4&&e[0].code!==41||e[1].code!==6&&e[1].code!==273)}[ub](){return`Multiaddr(${this.#t})`}};var P0=new Map;function L0(r){return!!r?.[Bl]}function sr(r){return new pa(r)}var fb=[j("tcp").code,j("dns").code,j("dnsaddr").code,j("dns4").code,j("dns6").code];function U0(r){return F0("sni",r)?.[1]}function R0(r){let t=F0("tcp",r)?.[1];return t==null?"":`:${t}`}function F0(r,t){let e;try{e=j(r).code}catch{return}for(let[n,o]of t)if(n===e&&o!=null)return[n,o]}function D0(r){return r.some(([t,e])=>t===j("tls").code)}function Jt(r,t,e){let n=$0[j(r).name];if(n==null)throw new Error(`Can't interpret protocol ${j(r).name}`);let o=n(t,e);return r===j("ip6").code?`[${o}]`:o}var $0={ip4:(r,t)=>r,ip6:(r,t)=>t.length===0?r:`[${r}]`,tcp:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`tcp://${Jt(e[0],e[1]??"",t)}:${r}`},udp:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`udp://${Jt(e[0],e[1]??"",t)}:${r}`},dnsaddr:(r,t)=>r,dns4:(r,t)=>r,dns6:(r,t)=>r,dns:(r,t)=>r,ipfs:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/ipfs/${r}`},p2p:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p/${r}`},http:(r,t)=>{let e=D0(t),n=U0(t),o=R0(t);if(e&&n!=null)return`https://${n}${o}`;let s=e?"https://":"http://",i=t.pop();if(i==null)throw new Error("Unexpected end of multiaddr");let a=Jt(i[0],i[1]??"",t);return a=a.replace("tcp://",""),`${s}${a}`},"http-path":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");let n=Jt(e[0],e[1]??"",t),o=decodeURIComponent(r);return`${n}/${o}`},tls:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return Jt(e[0],e[1]??"",t)},sni:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return Jt(e[0],e[1]??"",t)},https:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");let n=Jt(e[0],e[1]??"",t);return n=n.replace("tcp://",""),`https://${n}`},ws:(r,t)=>{let e=D0(t),n=U0(t),o=R0(t);if(e&&n!=null)return`wss://${n}${o}`;let s=e?"wss://":"ws://",i=t.pop();if(i==null)throw new Error("Unexpected end of multiaddr");let a=Jt(i[0],i[1]??"",t);return a=a.replace("tcp://",""),`${s}${a}`},wss:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");let n=Jt(e[0],e[1]??"",t);return n=n.replace("tcp://",""),`wss://${n}`},"p2p-websocket-star":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p-websocket-star`},"p2p-webrtc-star":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p-webrtc-star`},"p2p-webrtc-direct":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p-webrtc-direct`}};function M0(r,t){let n=sr(r).stringTuples(),o=n.pop();if(o==null)throw new Error("Unexpected end of multiaddr");let s=j(o[0]),i=$0[s.name];if(i==null)throw new Error(`No interpreter found for ${s.name}`);let a=i(o[1]??"",n);return t?.assumeHttp!==!1&&fb.includes(o[0])&&(a=a.replace(/^.*:\/\//,""),o[1]==="443"?a=`https://${a}`:a=`http://${a}`),(a.startsWith("http://")||a.startsWith("https://")||a.startsWith("ws://")||a.startsWith("wss://"))&&(a=new URL(a).toString(),a.endsWith("/")&&(a=a.substring(0,a.length-1))),a}var ma=class{url;#t=0;#e=0;#r=0;#o=0;#a=new Map;log;constructor(t,e){this.url=t instanceof URL?t:new URL(t),this.log=e.forComponent(`helia:trustless-gateway-block-broker:${this.url.hostname}`)}#u(t){let e=t.multihash.bytes;return Te.encode(e)}async getRawBlock(t,e){let n=new URL(this.url.toString());if(n.pathname=`/ipfs/${t.toString()}`,n.search="?format=raw",e?.aborted===!0)throw new Error(`Signal to fetch raw block for CID ${t} from gateway ${this.url} was aborted prior to fetch`);let o=this.#u(t),s=new AbortController,i=()=>{s.abort()};e?.addEventListener("abort",i);try{let a=this.#a.get(o);return a==null&&(this.#t++,a=fetch(n.toString(),{signal:s.signal,headers:{Accept:"application/vnd.ipld.raw"},cache:"force-cache"}).then(async c=>{if(this.log("GET %s %d",n,c.status),!c.ok)throw this.#e++,new Error(`unable to fetch raw block for CID ${t} from gateway ${this.url}`);return this.#o++,new Uint8Array(await c.arrayBuffer())}),this.#a.set(o,a)),await a}catch{throw e?.aborted===!0?new Error(`fetching raw block for CID ${t} from gateway ${this.url} was aborted`):(this.#e++,new Error(`unable to fetch raw block for CID ${t}`))}finally{e?.removeEventListener("abort",i),this.#a.delete(o)}}reliability(){return this.#t===0?1:this.#r>0?-1/0:this.#o/(this.#t+this.#e*3)}incrementInvalidBlocks(){this.#r++}getStats(){return{attempts:this.#t,errors:this.#e,invalidBlocks:this.#r,successes:this.#o,pendingResponses:this.#a.size}}};function hb(r,t,e){return r.filter(n=>{if(v0.matches(n)||t&&b0.matches(n))return e||d0.matches(n)?!0:h0(n.toOptions().host)===!1;if(!t&&e){let{host:o}=n.toOptions();if(o==="127.0.0.1"||o==="localhost"||o.endsWith(".localhost"))return!0}return!1})}async function*ga(r,t,e,n,o,s){for await(let i of t.findProviders(r,s)){let a=hb(i.multiaddrs,n,o);if(a.length===0)continue;let c=M0(a[0]);yield new ma(c,e)}}var kl=class extends Oo{routing;allowInsecure;allowLocal;constructor(t,e){super(t,{...e,name:"helia:trustless-gateway:session"}),this.routing=t.routing,this.allowInsecure=e.allowInsecure??ya,this.allowLocal=e.allowLocal??wa}async queryProvider(t,e,n){this.log("fetching BLOCK for %c from %s",t,e.url);let o=await e.getRawBlock(t,n.signal);return this.log.trace("got block for %c from %s",t,e.url),await n.validateFn?.(o),o}async*findNewProviders(t,e={}){yield*ga(t,this.routing,this.logger,this.allowInsecure,this.allowLocal,e)}toEvictionKey(t){return t.url.toString()}equals(t,e){return t.url.toString()===e.url.toString()}};function V0(r,t){return new kl(r,t)}var xa=class{allowInsecure;allowLocal;routing;log;logger;constructor(t,e={}){this.log=t.logger.forComponent("helia:trustless-gateway-block-broker"),this.logger=t.logger,this.routing=t.routing,this.allowInsecure=e.allowInsecure??ya,this.allowLocal=e.allowLocal??wa}async retrieve(t,e={}){let n=[];for await(let o of ga(t,this.routing,this.logger,this.allowInsecure,this.allowLocal,e)){this.log("getting block for %c from %s",t,o.url);try{let s=await o.getRawBlock(t,e.signal);this.log.trace("got block for %c from %s",t,o.url);try{await e.validateFn?.(s)}catch(i){this.log.error("failed to validate block for %c from %s",t,o.url,i);continue}return s}catch(s){if(this.log.error("failed to get block for %c from %s",t,o.url,s),s instanceof Error?n.push(s):n.push(new Error(`Unable to fetch raw block for CID ${t} from gateway ${o.url}`)),e.signal?.aborted===!0){this.log.trace("request aborted while fetching raw block for CID %c from gateway %s",t,o.url);break}}}throw n.length>0?new AggregateError(n,`Unable to fetch raw block for CID ${t} from any gateway`):new Error(`Unable to fetch raw block for CID ${t} from any gateway`)}createSession(t={}){return V0({logger:this.logger,routing:this.routing},{...t,allowLocal:this.allowLocal,allowInsecure:this.allowInsecure})}};var ya=!1,wa=!1;function Il(r={}){return t=>new xa(t,r)}async function*ba(r,t={}){let e=r.getReader();try{for(;;){let n=await e.read();if(n.done)return;yield n.value}}finally{t.preventCancel!==!0&&await e.cancel(),e.releaseLock()}}var wb=Lr(Tl(),1);var Be=class extends Error{static name="SignatureVerificationError";constructor(t="Record signature verification failed"){super(t),this.name="SignatureVerificationError"}},va=class extends Error{static name="RecordExpiredError";constructor(t="Record has expired"){super(t),this.name="RecordExpiredError"}},qn=class extends Error{static name="UnsupportedValidityError";constructor(t="The validity type is unsupported"){super(t),this.name="UnsupportedValidityError"}},Ea=class extends Error{static name="RecordTooLargeError";constructor(t="The record is too large"){super(t),this.name="RecordTooLargeError"}},Sa=class extends Error{static name="InvalidValueError";constructor(t="Value must be a valid content path starting with /"){super(t),this.name="InvalidValueError"}},Aa=class extends Error{static name="InvalidRecordDataError";constructor(t="Invalid record data"){super(t),this.name="InvalidRecordDataError"}},jo=class extends Error{static name="InvalidEmbeddedPublicKeyError";constructor(t="Invalid embedded public key"){super(t),this.name="InvalidEmbeddedPublicKeyError"}};var ke;(function(r){let t;(function(o){o.EOL="EOL"})(t=r.ValidityType||(r.ValidityType={}));let e;(function(o){o[o.EOL=0]="EOL"})(e||(e={})),function(o){o.codec=()=>so(e)}(t=r.ValidityType||(r.ValidityType={}));let n;r.codec=()=>(n==null&&(n=mn((o,s,i={})=>{i.lengthDelimited!==!1&&s.fork(),o.value!=null&&(s.uint32(10),s.bytes(o.value)),o.signatureV1!=null&&(s.uint32(18),s.bytes(o.signatureV1)),o.validityType!=null&&(s.uint32(24),r.ValidityType.codec().encode(o.validityType,s)),o.validity!=null&&(s.uint32(34),s.bytes(o.validity)),o.sequence!=null&&(s.uint32(40),s.uint64(o.sequence)),o.ttl!=null&&(s.uint32(48),s.uint64(o.ttl)),o.pubKey!=null&&(s.uint32(58),s.bytes(o.pubKey)),o.signatureV2!=null&&(s.uint32(66),s.bytes(o.signatureV2)),o.data!=null&&(s.uint32(74),s.bytes(o.data)),i.lengthDelimited!==!1&&s.ldelim()},(o,s,i={})=>{let a={},c=s==null?o.len:o.pos+s;for(;o.pos<c;){let u=o.uint32();switch(u>>>3){case 1:{a.value=o.bytes();break}case 2:{a.signatureV1=o.bytes();break}case 3:{a.validityType=r.ValidityType.codec().decode(o);break}case 4:{a.validity=o.bytes();break}case 5:{a.sequence=o.uint64();break}case 6:{a.ttl=o.uint64();break}case 7:{a.pubKey=o.bytes();break}case 8:{a.signatureV2=o.bytes();break}case 9:{a.data=o.bytes();break}default:{o.skipType(u&7);break}}}return a})),n),r.encode=o=>dn(o,r.codec()),r.decode=(o,s)=>cn(o,r.codec(),s)})(ke||(ke={}));var db=te("ipns:utils"),O0=z("/ipns/");var pb=0,mb=18;function H0(r){let t;if(r.pubKey!=null)try{t=sd(r.pubKey)}catch(e){throw db.error(e),e}if(t!=null)return t}function z0(r){let t=z("ipns-signature:");return Xt([t,r])}function Xr(r){return"signatureV1"in r?ke.encode({value:z(r.value),signatureV1:r.signatureV1,validityType:r.validityType,validity:z(r.validity),sequence:r.sequence,ttl:r.ttl,pubKey:r.pubKey,signatureV2:r.signatureV2,data:r.data}):ke.encode({pubKey:r.pubKey,signatureV2:r.signatureV2,data:r.data})}function Fe(r){let t=ke.decode(r);if(t.sequence!=null&&(t.sequence=BigInt(t.sequence)),t.ttl!=null&&(t.ttl=BigInt(t.ttl)),t.signatureV2==null||t.data==null)throw new Be("Missing data or signatureV2");let e=K0(t.data),n=gb(e.Value),o=rt(e.Validity);if(t.value!=null&&t.signatureV1!=null)return yb(t),{value:n,validityType:ke.ValidityType.EOL,validity:o,sequence:e.Sequence,ttl:e.TTL,pubKey:t.pubKey,signatureV1:t.signatureV1,signatureV2:t.signatureV2,data:t.data};if(t.signatureV2!=null)return{value:n,validityType:ke.ValidityType.EOL,validity:o,sequence:e.Sequence,ttl:e.TTL,pubKey:t.pubKey,signatureV2:t.signatureV2,data:t.data};throw new Error("invalid record: does not include signatureV1 or signatureV2")}function Go(r){return Xt([O0,r.bytes])}function ir(r){let t=pe(r.slice(O0.length));if(!Ba(t,pb)&&!Ba(t,mb))throw new cr("Multihash in IPNS key was not identity or sha2-256");return t}function K0(r){let t=se(r);if(t.ValidityType===0)t.ValidityType=ke.ValidityType.EOL;else throw new qn("The validity type is unsupported");return Number.isInteger(t.Sequence)&&(t.Sequence=BigInt(t.Sequence)),Number.isInteger(t.TTL)&&(t.TTL=BigInt(t.TTL)),t}function gb(r){let t=rt(r).trim();if(t.startsWith("/"))return t;try{return`/ipfs/${O.decode(r).toV1().toString()}`}catch{}try{return`/ipfs/${O.parse(t).toV1().toString()}`}catch{}throw new Sa("Value must be a valid content path starting with /")}function yb(r){if(r.data==null)throw new Aa("Record data is missing");let t=K0(r.data);if(!ot(t.Value,r.value??new Uint8Array(0)))throw new Be('Field "value" did not match between protobuf and CBOR');if(!ot(t.Validity,r.validity??new Uint8Array(0)))throw new Be('Field "validity" did not match between protobuf and CBOR');if(t.ValidityType!==r.validityType)throw new Be('Field "validityType" did not match between protobuf and CBOR');if(t.Sequence!==r.sequence)throw new Be('Field "sequence" did not match between protobuf and CBOR');if(t.TTL!==r.ttl)throw new Be('Field "ttl" did not match between protobuf and CBOR')}function Ba(r,t){return r.code===t}var o_=te("ipns"),s_=60*60*1e9,xb="/ipns/",i_=xb.length;var q0=Lr(Tl(),1);var ka=te("ipns:validator"),bb=1024*10,vb=async(r,t)=>{let e=Fe(t),n;try{let o=z0(e.data);n=await r.verify(o,e.signatureV2)}catch{n=!1}if(!n)throw ka.error("record signature verification failed"),new Be("Record signature verification failed");if(e.validityType===ke.ValidityType.EOL){if(q0.default.fromString(e.validity).toDate().getTime()<Date.now())throw ka.error("record has expired"),new va("record has expired")}else if(e.validityType!=null)throw ka.error("the validity type is unsupported"),new qn("The validity type is unsupported");ka("ipns record for %s is valid",e.value)};async function j0(r,t){if(t.byteLength>bb)throw new Ea("The record is too large");let e=ir(r),n;Ba(e,0)&&(n=bi(e));let o=Fe(t),s=H0(o)??n;if(s==null)throw new jo("Could not extract public key from IPNS record or routing key");let i=Go(s.toMultihash());if(!ot(r,i))throw new jo("Embedded public key did not match routing key");await vb(s,t)}async function*Wo(r){let t=/\r?\n/,e=new TextDecoder("utf8"),n="";for await(let o of r){typeof o=="string"&&(o=new TextEncoder().encode(o)),n+=e.decode(o,{stream:!0});let s=n.split(t);n=s.pop()??"";for(let i=0;i<s.length;i++)yield JSON.parse(s[i])}n+=e.decode(),n!==""&&(yield JSON.parse(n))}var jn=class extends Error{static name="InvalidRequestError";constructor(t="Invalid request"){super(t),this.name="InvalidRequestError"}},Qr=class extends Error{static name="BadResponseError";constructor(t="Bad response"){super(t),this.name="BadResponseError"}};function Eb(r){return r[Symbol.asyncIterator]!=null}function Sb(r){if(Eb(r))return(async()=>{for await(let t of r)return t})();for(let t of r)return t}var Ia=Sb;var G0=z("/ipns/");function W0(r){return ot(r.subarray(0,G0.byteLength),G0)}var _a=class{client;constructor(t){this.client=t}async*findProviders(t,e={}){yield*an(this.client.getProviders(t,e),n=>({id:n.ID,multiaddrs:n.Addrs??[]}))}async provide(){}async cancelReprovide(){}async put(t,e,n){if(!W0(t))return;let o=ir(t),s=O.createV1(114,o),i=Fe(e);await this.client.putIPNS(s,i,n)}async get(t,e){if(!W0(t))throw new Pt("Not found");let n=ir(t),o=O.createV1(114,n);try{let s=await this.client.getIPNS(o,e);return Xr(s)}catch(s){throw s.name==="BadResponseError"?new Pt("Not found"):s}}},Ta=class{client;constructor(t){this.client=t}async findPeer(t,e={}){let n=await Ia(this.client.getPeers(t,e));if(n!=null)return{id:n.ID,multiaddrs:n.Addrs??[]};throw new Pt("Not found")}async*getClosestPeers(t,e={}){}};var zt=te("delegated-routing-v1-http-api-client"),Z0={concurrentRequests:4,timeout:3e4},Ca=class{started;httpQueue;shutDownController;clientUrl;timeout;contentRouting;peerRouting;filterAddrs;filterProtocols;constructor(t,e={}){this.started=!1,this.shutDownController=new AbortController,ht(1/0,this.shutDownController.signal),this.httpQueue=new Re({concurrency:e.concurrentRequests??Z0.concurrentRequests}),this.clientUrl=t instanceof URL?t:new URL(t),this.timeout=e.timeout??Z0.timeout,this.filterAddrs=e.filterAddrs,this.filterProtocols=e.filterProtocols,this.contentRouting=new _a(this),this.peerRouting=new Ta(this)}get[Zn](){return this.contentRouting}get[Yn](){return this.peerRouting}isStarted(){return this.started}start(){this.started=!0}stop(){this.httpQueue.clear(),this.shutDownController.abort(),this.started=!1}async*getProviders(t,e={}){zt("getProviders starts: %c",t);let n=AbortSignal.timeout(this.timeout),o=Mt([this.shutDownController.signal,n,e.signal]);ht(1/0,n,o);let s=At(),i=At();this.httpQueue.add(async()=>(s.resolve(),i.promise));try{await s.promise;let a=new URL(`${this.clientUrl}routing/v1/providers/${t.toString()}`);this.#e(a,e.filterAddrs,e.filterProtocols);let u=await fetch(a,{headers:{Accept:"application/x-ndjson"},signal:o});if(u.status===404)throw new Pt("No matching records found");if(u.status===422)throw new jn("Request does not conform to schema or semantic constraints");if(u.body==null)throw new Qr("Routing response had no body");if(u.headers.get("Content-Type")==="application/json"){let f=await u.json();for(let d of f.Providers){let h=this.#t(d);h!=null&&(yield h)}}else for await(let f of Wo(ba(u.body))){let d=this.#t(f);d!=null&&(yield d)}}catch(a){zt.error("getProviders errored:",a)}finally{o.clear(),i.resolve(),zt("getProviders finished: %c",t)}}async*getPeers(t,e={}){zt("getPeers starts: %c",t);let n=AbortSignal.timeout(this.timeout),o=Mt([this.shutDownController.signal,n,e.signal]);ht(1/0,n,o);let s=At(),i=At();this.httpQueue.add(async()=>(s.resolve(),i.promise));try{await s.promise;let a=new URL(`${this.clientUrl}routing/v1/peers/${t.toCID().toString()}`);this.#e(a,e.filterAddrs,e.filterProtocols);let u=await fetch(a,{headers:{Accept:"application/x-ndjson"},signal:o});if(u.status===404)throw new Pt("No matching records found");if(u.status===422)throw new jn("Request does not conform to schema or semantic constraints");if(u.body==null)throw new Qr("Routing response had no body");if(u.headers.get("Content-Type")==="application/json"){let f=await u.json();for(let d of f.Peers){let h=this.#t(d);h!=null&&(yield h)}}else for await(let f of Wo(ba(u.body))){let d=this.#t(f);d!=null&&(yield d)}}catch(a){zt.error("getPeers errored:",a)}finally{o.clear(),i.resolve(),zt("getPeers finished: %c",t)}}async getIPNS(t,e={}){zt("getIPNS starts: %s",t);let n=AbortSignal.timeout(this.timeout),o=Mt([this.shutDownController.signal,n,e.signal]);ht(1/0,n,o);let s=At(),i=At();this.httpQueue.add(async()=>(s.resolve(),i.promise));let a=`${this.clientUrl}routing/v1/ipns/${t}`;try{await s.promise;let u=await fetch(a,{headers:{Accept:"application/vnd.ipfs.ipns-record"},signal:o});if(zt("getIPNS GET %s %d",a,u.status),u.status===404)throw new Pt("No matching records found");if(u.status===422)throw new jn("Request does not conform to schema or semantic constraints");if(u.body==null)throw new Qr("GET ipns response had no body");let l=await u.arrayBuffer(),f=new Uint8Array(l,0,l.byteLength);return e.validate!==!1&&await j0(Go(t.multihash),f),Fe(f)}catch(c){throw zt.error("getIPNS GET %s error:",a,c),c}finally{o.clear(),i.resolve(),zt("getIPNS finished: %s",t)}}async putIPNS(t,e,n={}){zt("putIPNS starts: %c",t);let o=AbortSignal.timeout(this.timeout),s=Mt([this.shutDownController.signal,o,n.signal]);ht(1/0,o,s);let i=At(),a=At();this.httpQueue.add(async()=>(i.resolve(),a.promise));let c=`${this.clientUrl}routing/v1/ipns/${t}`;try{await i.promise;let u=Xr(e),f=await fetch(c,{method:"PUT",headers:{"Content-Type":"application/vnd.ipfs.ipns-record"},body:u,signal:s});if(zt("putIPNS PUT %s %d",c,f.status),f.status!==200)throw new Qr("PUT ipns response had status other than 200")}catch(u){throw zt.error("putIPNS PUT %s error:",c,u.stack),u}finally{s.clear(),a.resolve(),zt("putIPNS finished: %c",t)}}#t(t){try{let e=[],n=t.Addrs?.map(sr)??[];return t.Protocols!=null&&e.push(...t.Protocols),t.Protocol!=null&&(e.push(t.Protocol),delete t.Protocol),{...t,Schema:"peer",ID:cd(t.ID),Addrs:n,Protocols:e}}catch(e){zt.error("could not conform record to peer schema",e)}}#e(t,e,n){if(e!=null||this.filterAddrs!=null){let o=e?.join(",")??this.filterAddrs?.join(",")??"";o!==""&&t.searchParams.set("filter-addrs",o)}if(n!=null||this.filterProtocols!=null){let o=n?.join(",")??this.filterProtocols?.join(",")??"";o!==""&&t.searchParams.set("filter-protocols",o)}}};function Y0(r,t={}){return new Ca(new URL(r),t)}function J0(){return{filterProtocols:["unknown","transport-bitswap","transport-ipfs-gateway-http"],filterAddrs:["https","webtransport","webrtc","webrtc-direct","wss","tls"]}}var X0=z("/ipns/");function Q0(r){return ot(r.subarray(0,X0.byteLength),X0)}var Cl=class{client;constructor(t,e={}){this.client=Y0(t,e)}async provide(t,e){}async*findProviders(t,e){yield*an(this.client.getProviders(t,e),n=>({id:n.ID,multiaddrs:n.Addrs,protocols:n.Protocols}))}async put(t,e,n){if(!Q0(t))return;let o=ir(t),s=O.createV1(114,o),i=Fe(e);await this.client.putIPNS(s,i,n)}async get(t,e){if(!Q0(t))throw new Pt("Not found");let n=ir(t),o=O.createV1(114,n);try{let s=await this.client.getIPNS(o,e);return Xr(s)}catch(s){throw s.name==="BadResponseError"?new Pt("Not found"):s}}async findPeer(t,e){let n=await Ia(this.client.getPeers(t,e));if(n!=null)return{id:n.ID,multiaddrs:n.Addrs??[]};throw new Pt("Not found")}async*getClosestPeers(t,e){}};function Nl(r,t){let e=t??J0();return new Cl(new URL(r),e)}var tm="[a-fA-F\\d:]",Nr=r=>r&&r.includeBoundaries?`(?:(?<=\\s|^)(?=${tm})|(?<=${tm})(?=\\s|$))`:"",Ie="(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}",yt="[a-fA-F\\d]{1,4}",Na=`
|
|
7
|
+
`)}`:`${e} :`}};ah=Sr;F.Constructed=ah;Sr.NAME="CONSTRUCTED";var Ds=class extends Dt{fromBER(t,e,n){return e}toBER(t){return we}};Ds.override="EndOfContentValueBlock";var ch,Fs=class extends Ct{constructor(t={}){super(t,Ds),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};ch=Fs;F.EndOfContent=ch;Fs.NAME=ho;var uh,An=class extends Ct{constructor(t={}){super(t,Dt),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(t,e,n){return this.lenBlock.length>0&&this.warnings.push("Non-zero length of value block for Null type"),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.blockLength+=n,e+n>t.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):e+n}toBER(t,e){let n=new ArrayBuffer(2);if(!t){let o=new Uint8Array(n);o[0]=5,o[1]=0}return e&&e.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};uh=An;F.Null=uh;An.NAME="NULL";var $s=class extends Je(Dt){constructor({value:t,...e}={}){super(e),e.valueHex?this.valueHexView=Z.BufferSourceConverter.toUint8Array(e.valueHex):this.valueHexView=new Uint8Array(1),t&&(this.value=t)}get value(){for(let t of this.valueHexView)if(t>0)return!0;return!1}set value(t){this.valueHexView[0]=t?255:0}fromBER(t,e,n){let o=Z.BufferSourceConverter.toUint8Array(t);return Ye(this,o,e,n)?(this.valueHexView=o.subarray(e,e+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,jc.call(this),this.blockLength=n,e+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};$s.NAME="BooleanValueBlock";var lh,Ms=class extends Ct{constructor(t={}){super(t,$s),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}};lh=Ms;F.Boolean=lh;Ms.NAME="BOOLEAN";var Vs=class extends Je(Pe){constructor({isConstructed:t=!1,...e}={}){super(e),this.isConstructed=t}fromBER(t,e,n){let o=0;if(this.isConstructed){if(this.isHexOnly=!1,o=Pe.prototype.fromBER.call(this,t,e,n),o===-1)return o;for(let s=0;s<this.value.length;s++){let i=this.value[s].constructor.NAME;if(i===ho){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(i!==nh)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,o=super.fromBER(t,e,n),this.blockLength=n;return o}toBER(t,e){return this.isConstructed?Pe.prototype.toBER.call(this,t,e):t?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};Vs.NAME="OctetStringValueBlock";var fh,Os=class r extends Ct{constructor({idBlock:t={},lenBlock:e={},...n}={}){var o,s;(o=n.isConstructed)!==null&&o!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!n.isIndefiniteForm},...n},Vs),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(t,e,n){if(this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,n===0)return this.idBlock.error.length===0&&(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length===0&&(this.blockLength+=this.lenBlock.blockLength),e;if(!this.valueBlock.isConstructed){let s=(t instanceof ArrayBuffer?new Uint8Array(t):t).subarray(e,e+n);try{if(s.byteLength){let i=mi(s,0,s.byteLength);i.offset!==-1&&i.offset===n&&(this.valueBlock.value=[i.result])}}catch{}}return super.fromBER(t,e,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?Sr.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${Z.Convert.ToHex(this.valueBlock.valueHexView)}`}getValue(){if(!this.idBlock.isConstructed)return this.valueBlock.valueHexView.slice().buffer;let t=[];for(let e of this.valueBlock.value)e instanceof r&&t.push(e.valueBlock.valueHexView);return Z.BufferSourceConverter.concat(t)}};fh=Os;F.OctetString=fh;Os.NAME=nh;var Hs=class extends Je(Pe){constructor({unusedBits:t=0,isConstructed:e=!1,...n}={}){super(n),this.unusedBits=t,this.isConstructed=e,this.blockLength=this.valueHexView.byteLength}fromBER(t,e,n){if(!n)return e;let o=-1;if(this.isConstructed){if(o=Pe.prototype.fromBER.call(this,t,e,n),o===-1)return o;for(let a of this.value){let c=a.constructor.NAME;if(c===ho){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==oh)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let u=a.valueBlock;if(this.unusedBits>0&&u.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=u.unusedBits}return o}let s=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,s,e,n))return-1;let i=s.subarray(e,e+n);if(this.unusedBits=i[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=i.subarray(1);try{if(a.byteLength){let c=mi(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=i.subarray(1),this.blockLength=i.length,e+n}toBER(t,e){if(this.isConstructed)return Pe.prototype.toBER.call(this,t,e);if(t)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return we;let n=new Uint8Array(this.valueHexView.length+1);return n[0]=this.unusedBits,n.set(this.valueHexView,1),n.buffer}toJSON(){return{...super.toJSON(),unusedBits:this.unusedBits,isConstructed:this.isConstructed}}};Hs.NAME="BitStringValueBlock";var hh,Bn=class extends Ct{constructor({idBlock:t={},lenBlock:e={},...n}={}){var o,s;(o=n.isConstructed)!==null&&o!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!n.isIndefiniteForm},...n},Hs),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(t,e,n){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(t,e,n)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return Sr.prototype.onAsciiEncoding.call(this);{let t=[],e=this.valueBlock.valueHexView;for(let o of e)t.push(o.toString(2).padStart(8,"0"));let n=t.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};hh=Bn;F.BitString=hh;Bn.NAME=oh;var dh;function ww(r,t){let e=new Uint8Array([0]),n=new Uint8Array(r),o=new Uint8Array(t),s=n.slice(0),i=s.length-1,a=o.slice(0),c=a.length-1,u=0,l=c<i?i:c,f=0;for(let d=l;d>=0;d--,f++){switch(!0){case f<a.length:u=s[i-f]+a[c-f]+e[0];break;default:u=s[i-f]+e[0]}switch(e[0]=u/10,!0){case f>=s.length:s=Ts(new Uint8Array([u%10]),s);break;default:s[i-f]=u%10}}return e[0]>0&&(s=Ts(e,s)),s}function rh(r){if(r>=lo.length)for(let t=lo.length;t<=r;t++){let e=new Uint8Array([0]),n=lo[t-1].slice(0);for(let o=n.length-1;o>=0;o--){let s=new Uint8Array([(n[o]<<1)+e[0]]);e[0]=s[0]/10,n[o]=s[0]%10}e[0]>0&&(n=Ts(e,n)),lo.push(n)}return lo[r]}function xw(r,t){let e=0,n=new Uint8Array(r),o=new Uint8Array(t),s=n.slice(0),i=s.length-1,a=o.slice(0),c=a.length-1,u,l=0;for(let f=c;f>=0;f--,l++)switch(u=s[i-l]-a[c-l]-e,!0){case u<0:e=1,s[i-l]=u+10;break;default:e=0,s[i-l]=u}if(e>0)for(let f=i-c+1;f>=0;f--,l++)if(u=s[i-l]-e,u<0)e=1,s[i-l]=u+10;else{e=0,s[i-l]=u;break}return s.slice()}var po=class extends Je(Dt){constructor({value:t,...e}={}){super(e),this._valueDec=0,e.valueHex&&this.setValueHex(),t!==void 0&&(this.valueDec=t)}setValueHex(){this.valueHexView.length>=4?(this.warnings.push("Too big Integer for decoding, hex only"),this.isHexOnly=!0,this._valueDec=0):(this.isHexOnly=!1,this.valueHexView.length>0&&(this._valueDec=jc.call(this)))}set valueDec(t){this._valueDec=t,this.isHexOnly=!1,this.valueHexView=new Uint8Array(Qf(t))}get valueDec(){return this._valueDec}fromDER(t,e,n,o=0){let s=this.fromBER(t,e,n);if(s===-1)return s;let i=this.valueHexView;return i[0]===0&&i[1]&128?this.valueHexView=i.subarray(1):o!==0&&i.length<o&&(o-i.length>1&&(o=i.length+1),this.valueHexView=i.subarray(o-i.length)),s}toDER(t=!1){let e=this.valueHexView;switch(!0){case(e[0]&128)!==0:{let n=new Uint8Array(this.valueHexView.length+1);n[0]=0,n.set(e,1),this.valueHexView=n}break;case(e[0]===0&&(e[1]&128)===0):this.valueHexView=this.valueHexView.subarray(1);break}return this.toBER(t)}fromBER(t,e,n){let o=super.fromBER(t,e,n);return o===-1||this.setValueHex(),o}toBER(t){return t?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){let t=this.valueHexView.length*8-1,e=new Uint8Array(this.valueHexView.length*8/3),n=0,o,s=this.valueHexView,i="",a=!1;for(let c=s.byteLength-1;c>=0;c--){o=s[c];for(let u=0;u<8;u++){if((o&1)===1)switch(n){case t:e=xw(rh(n),e),i="-";break;default:e=ww(e,rh(n))}n++,o>>=1}}for(let c=0;c<e.length;c++)e[c]&&(a=!0),a&&(i+=eh.charAt(e[c]));return a===!1&&(i+=eh.charAt(0)),i}};dh=po;po.NAME="IntegerValueBlock";Object.defineProperty(dh.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var ph,Nt=class r extends Ct{constructor(t={}){super(t,po),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return Cs(),BigInt(this.valueBlock.toString())}static fromBigInt(t){Cs();let e=BigInt(t),n=new fo,o=e.toString(16).replace(/^-/,""),s=new Uint8Array(Z.Convert.FromHex(o));if(e<0){let a=new Uint8Array(s.length+(s[0]&128?1:0));a[0]|=128;let u=BigInt(`0x${Z.Convert.ToHex(a)}`)+e,l=Z.BufferSourceConverter.toUint8Array(Z.Convert.FromHex(u.toString(16)));l[0]|=128,n.write(l)}else s[0]&128&&n.write(new Uint8Array([0])),n.write(s);return new r({valueHex:n.final()})}convertToDER(){let t=new r({valueHex:this.valueBlock.valueHexView});return t.valueBlock.toDER(),t}convertFromDER(){return new r({valueHex:this.valueBlock.valueHexView[0]===0?this.valueBlock.valueHexView.subarray(1):this.valueBlock.valueHexView})}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()}`}};ph=Nt;F.Integer=ph;Nt.NAME="INTEGER";var mh,zs=class extends Nt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};mh=zs;F.Enumerated=mh;zs.NAME="ENUMERATED";var mo=class extends Je(Dt){constructor({valueDec:t=-1,isFirstSid:e=!1,...n}={}){super(n),this.valueDec=t,this.isFirstSid=e}fromBER(t,e,n){if(!n)return e;let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=s[a]&127,this.blockLength++,!!(s[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,s[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=jr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),e+this.blockLength)}set valueBigInt(t){Cs();let e=BigInt(t).toString(2);for(;e.length%7;)e="0"+e;let n=new Uint8Array(e.length/7);for(let o=0;o<n.length;o++)n[o]=parseInt(e.slice(o*7,o*7+7),2)+(o+1<n.length?128:0);this.fromBER(n.buffer,0,n.length)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);let o=this.valueHexView,s=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)s[i]=o[i]|128;return s[this.blockLength-1]=o[this.blockLength-1],s.buffer}let e=Er(this.valueDec,7);if(e.byteLength===0)return this.error="Error during encoding SID value",we;let n=new Uint8Array(e.byteLength);if(!t){let o=new Uint8Array(e),s=e.byteLength-1;for(let i=0;i<s;i++)n[i]=o[i]|128;n[s]=o[s]}return n}toString(){let t="";if(this.isHexOnly)t=Z.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let e=this.valueDec;this.valueDec<=39?t="0.":this.valueDec<=79?(t="1.",e-=40):(t="2.",e-=80),t+=e.toString()}else t=this.valueDec.toString();return t}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}};mo.NAME="sidBlock";var Ks=class extends Dt{constructor({value:t=In,...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,n){let o=e;for(;n>0;){let s=new mo;if(o=s.fromBER(t,o,n),o===-1)return this.blockLength=0,this.error=s.error,o;this.value.length===0&&(s.isFirstSid=!0),this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return o}toBER(t){let e=[];for(let n=0;n<this.value.length;n++){let o=this.value[n].toBER(t);if(o.byteLength===0)return this.error=this.value[n].error,we;e.push(o)}return Gc(e)}fromString(t){this.value=[];let e=0,n=0,o="",s=!1;do if(n=t.indexOf(".",e),n===-1?o=t.substring(e):o=t.substring(e,n),e=n+1,s){let i=this.value[0],a=0;switch(i.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(o,10);if(isNaN(c))return;i.valueDec=c+a,s=!1}else{let i=new mo;if(o>Number.MAX_SAFE_INTEGER){Cs();let a=BigInt(o);i.valueBigInt=a}else if(i.valueDec=parseInt(o,10),isNaN(i.valueDec))return;this.value.length||(i.isFirstSid=!0,s=!0),this.value.push(i)}while(n!==-1)}toString(){let t="",e=!1;for(let n=0;n<this.value.length;n++){e=this.value[n].isHexOnly;let o=this.value[n].toString();n!==0&&(t=`${t}.`),e?(o=`{${o}}`,this.value[n].isFirstSid?t=`2.{${o} - 80}`:t+=o):t+=o}return t}toJSON(){let t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}};Ks.NAME="ObjectIdentifierValueBlock";var gh,kn=class extends Ct{constructor(t={}){super(t,Ks),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};gh=kn;F.ObjectIdentifier=gh;kn.NAME="OBJECT IDENTIFIER";var go=class extends Je(Ge){constructor({valueDec:t=0,...e}={}){super(e),this.valueDec=t}fromBER(t,e,n){if(n===0)return e;let o=Z.BufferSourceConverter.toUint8Array(t);if(!Ye(this,o,e,n))return-1;let s=o.subarray(e,e+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=s[a]&127,this.blockLength++,!!(s[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,s[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=jr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),e+this.blockLength)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);let o=this.valueHexView,s=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)s[i]=o[i]|128;return s[this.blockLength-1]=o[this.blockLength-1],s.buffer}let e=Er(this.valueDec,7);if(e.byteLength===0)return this.error="Error during encoding SID value",we;let n=new Uint8Array(e.byteLength);if(!t){let o=new Uint8Array(e),s=e.byteLength-1;for(let i=0;i<s;i++)n[i]=o[i]|128;n[s]=o[s]}return n.buffer}toString(){let t="";return this.isHexOnly?t=Z.Convert.ToHex(this.valueHexView):t=this.valueDec.toString(),t}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};go.NAME="relativeSidBlock";var qs=class extends Dt{constructor({value:t=In,...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,n){let o=e;for(;n>0;){let s=new go;if(o=s.fromBER(t,o,n),o===-1)return this.blockLength=0,this.error=s.error,o;this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return o}toBER(t,e){let n=[];for(let o=0;o<this.value.length;o++){let s=this.value[o].toBER(t);if(s.byteLength===0)return this.error=this.value[o].error,we;n.push(s)}return Gc(n)}fromString(t){this.value=[];let e=0,n=0,o="";do{n=t.indexOf(".",e),n===-1?o=t.substring(e):o=t.substring(e,n),e=n+1;let s=new go;if(s.valueDec=parseInt(o,10),isNaN(s.valueDec))return!0;this.value.push(s)}while(n!==-1);return!0}toString(){let t="",e=!1;for(let n=0;n<this.value.length;n++){e=this.value[n].isHexOnly;let o=this.value[n].toString();n!==0&&(t=`${t}.`),e&&(o=`{${o}}`),t+=o}return t}toJSON(){let t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}};qs.NAME="RelativeObjectIdentifierValueBlock";var yh,js=class extends Ct{constructor(t={}){super(t,qs),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};yh=js;F.RelativeObjectIdentifier=yh;js.NAME="RelativeObjectIdentifier";var wh,We=class extends Sr{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};wh=We;F.Sequence=wh;We.NAME="SEQUENCE";var xh,Gs=class extends Sr{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};xh=Gs;F.Set=xh;Gs.NAME="SET";var Ws=class extends Je(Dt){constructor({...t}={}){super(t),this.isHexOnly=!0,this.value=In}toJSON(){return{...super.toJSON(),value:this.value}}};Ws.NAME="StringValueBlock";var Zs=class extends Ws{};Zs.NAME="SimpleStringValueBlock";var Ht=class extends Ls{constructor({...t}={}){super(t,Zs)}fromBuffer(t){this.valueBlock.value=String.fromCharCode.apply(null,Z.BufferSourceConverter.toUint8Array(t))}fromString(t){let e=t.length,n=this.valueBlock.valueHexView=new Uint8Array(e);for(let o=0;o<e;o++)n[o]=t.charCodeAt(o);this.valueBlock.value=t}};Ht.NAME="SIMPLE STRING";var Ys=class extends Ht{fromBuffer(t){this.valueBlock.valueHexView=Z.BufferSourceConverter.toUint8Array(t);try{this.valueBlock.value=Z.Convert.ToUtf8String(t)}catch(e){this.warnings.push(`Error during "decodeURIComponent": ${e}, using raw string`),this.valueBlock.value=Z.Convert.ToBinary(t)}}fromString(t){this.valueBlock.valueHexView=new Uint8Array(Z.Convert.FromUtf8String(t)),this.valueBlock.value=t}};Ys.NAME="Utf8StringValueBlock";var bh,Ze=class extends Ys{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};bh=Ze;F.Utf8String=bh;Ze.NAME="UTF8String";var Js=class extends Ht{fromBuffer(t){this.valueBlock.value=Z.Convert.ToUtf16String(t),this.valueBlock.valueHexView=Z.BufferSourceConverter.toUint8Array(t)}fromString(t){this.valueBlock.value=t,this.valueBlock.valueHexView=new Uint8Array(Z.Convert.FromUtf16String(t))}};Js.NAME="BmpStringValueBlock";var vh,Xs=class extends Js{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};vh=Xs;F.BmpString=vh;Xs.NAME="BMPString";var Qs=class extends Ht{fromBuffer(t){let e=ArrayBuffer.isView(t)?t.slice().buffer:t.slice(0),n=new Uint8Array(e);for(let o=0;o<n.length;o+=4)n[o]=n[o+3],n[o+1]=n[o+2],n[o+2]=0,n[o+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(e))}fromString(t){let e=t.length,n=this.valueBlock.valueHexView=new Uint8Array(e*4);for(let o=0;o<e;o++){let s=Er(t.charCodeAt(o),8),i=new Uint8Array(s);if(i.length>4)continue;let a=4-i.length;for(let c=i.length-1;c>=0;c--)n[o*4+c+a]=i[c]}this.valueBlock.value=t}};Qs.NAME="UniversalStringValueBlock";var Eh,ti=class extends Qs{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};Eh=ti;F.UniversalString=Eh;ti.NAME="UniversalString";var Sh,ei=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};Sh=ei;F.NumericString=Sh;ei.NAME="NumericString";var Ah,ri=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};Ah=ri;F.PrintableString=Ah;ri.NAME="PrintableString";var Bh,ni=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};Bh=ni;F.TeletexString=Bh;ni.NAME="TeletexString";var kh,oi=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};kh=oi;F.VideotexString=kh;oi.NAME="VideotexString";var Ih,si=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};Ih=si;F.IA5String=Ih;si.NAME="IA5String";var _h,ii=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};_h=ii;F.GraphicString=_h;ii.NAME="GraphicString";var Th,yo=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};Th=yo;F.VisibleString=Th;yo.NAME="VisibleString";var Ch,ai=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};Ch=ai;F.GeneralString=Ch;ai.NAME="GeneralString";var Nh,ci=class extends Ht{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};Nh=ci;F.CharacterString=Nh;ci.NAME="CharacterString";var Ph,wo=class extends yo{constructor({value:t,valueDate:e,...n}={}){if(super(n),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,t){this.fromString(t),this.valueBlock.valueHexView=new Uint8Array(t.length);for(let o=0;o<t.length;o++)this.valueBlock.valueHexView[o]=t.charCodeAt(o)}e&&(this.fromDate(e),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(t){this.fromString(String.fromCharCode.apply(null,Z.BufferSourceConverter.toUint8Array(t)))}toBuffer(){let t=this.toString(),e=new ArrayBuffer(t.length),n=new Uint8Array(e);for(let o=0;o<t.length;o++)n[o]=t.charCodeAt(o);return e}fromDate(t){this.year=t.getUTCFullYear(),this.month=t.getUTCMonth()+1,this.day=t.getUTCDate(),this.hour=t.getUTCHours(),this.minute=t.getUTCMinutes(),this.second=t.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(t){let n=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/ig.exec(t);if(n===null){this.error="Wrong input string for conversion";return}let o=parseInt(n[1],10);o>=50?this.year=1900+o:this.year=2e3+o,this.month=parseInt(n[2],10),this.day=parseInt(n[3],10),this.hour=parseInt(n[4],10),this.minute=parseInt(n[5],10),this.second=parseInt(n[6],10)}toString(t="iso"){if(t==="iso"){let e=new Array(7);return e[0]=Zt(this.year<2e3?this.year-1900:this.year-2e3,2),e[1]=Zt(this.month,2),e[2]=Zt(this.day,2),e[3]=Zt(this.hour,2),e[4]=Zt(this.minute,2),e[5]=Zt(this.second,2),e[6]="Z",e.join("")}return super.toString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.toDate().toISOString()}`}toJSON(){return{...super.toJSON(),year:this.year,month:this.month,day:this.day,hour:this.hour,minute:this.minute,second:this.second}}};Ph=wo;F.UTCTime=Ph;wo.NAME="UTCTime";var Lh,ui=class extends wo{constructor(t={}){var e;super(t),(e=this.millisecond)!==null&&e!==void 0||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(t){super.fromDate(t),this.millisecond=t.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(t){let e=!1,n="",o="",s=0,i,a=0,c=0;if(t[t.length-1]==="Z")n=t.substring(0,t.length-1),e=!0;else{let f=new Number(t[t.length-1]);if(isNaN(f.valueOf()))throw new Error("Wrong input string for conversion");n=t}if(e){if(n.indexOf("+")!==-1)throw new Error("Wrong input string for conversion");if(n.indexOf("-")!==-1)throw new Error("Wrong input string for conversion")}else{let f=1,d=n.indexOf("+"),h="";if(d===-1&&(d=n.indexOf("-"),f=-1),d!==-1){if(h=n.substring(d+1),n=n.substring(0,d),h.length!==2&&h.length!==4)throw new Error("Wrong input string for conversion");let w=parseInt(h.substring(0,2),10);if(isNaN(w.valueOf()))throw new Error("Wrong input string for conversion");if(a=f*w,h.length===4){if(w=parseInt(h.substring(2,4),10),isNaN(w.valueOf()))throw new Error("Wrong input string for conversion");c=f*w}}}let u=n.indexOf(".");if(u===-1&&(u=n.indexOf(",")),u!==-1){let f=new Number(`0${n.substring(u)}`);if(isNaN(f.valueOf()))throw new Error("Wrong input string for conversion");s=f.valueOf(),o=n.substring(0,u)}else o=n;switch(!0){case o.length===8:if(i=/(\d{4})(\d{2})(\d{2})/ig,u!==-1)throw new Error("Wrong input string for conversion");break;case o.length===10:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,u!==-1){let f=60*s;this.minute=Math.floor(f),f=60*(f-this.minute),this.second=Math.floor(f),f=1e3*(f-this.second),this.millisecond=Math.floor(f)}break;case o.length===12:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,u!==-1){let f=60*s;this.second=Math.floor(f),f=1e3*(f-this.second),this.millisecond=Math.floor(f)}break;case o.length===14:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,u!==-1){let f=1e3*s;this.millisecond=Math.floor(f)}break;default:throw new Error("Wrong input string for conversion")}let l=i.exec(o);if(l===null)throw new Error("Wrong input string for conversion");for(let f=1;f<l.length;f++)switch(f){case 1:this.year=parseInt(l[f],10);break;case 2:this.month=parseInt(l[f],10);break;case 3:this.day=parseInt(l[f],10);break;case 4:this.hour=parseInt(l[f],10)+a;break;case 5:this.minute=parseInt(l[f],10)+c;break;case 6:this.second=parseInt(l[f],10);break;default:throw new Error("Wrong input string for conversion")}if(e===!1){let f=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=f.getUTCFullYear(),this.month=f.getUTCMonth(),this.day=f.getUTCDay(),this.hour=f.getUTCHours(),this.minute=f.getUTCMinutes(),this.second=f.getUTCSeconds(),this.millisecond=f.getUTCMilliseconds()}}toString(t="iso"){if(t==="iso"){let e=[];return e.push(Zt(this.year,4)),e.push(Zt(this.month,2)),e.push(Zt(this.day,2)),e.push(Zt(this.hour,2)),e.push(Zt(this.minute,2)),e.push(Zt(this.second,2)),this.millisecond!==0&&(e.push("."),e.push(Zt(this.millisecond,3))),e.push("Z"),e.join("")}return super.toString(t)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};Lh=ui;F.GeneralizedTime=Lh;ui.NAME="GeneralizedTime";var Rh,li=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};Rh=li;F.DATE=Rh;li.NAME="DATE";var Uh,fi=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};Uh=fi;F.TimeOfDay=Uh;fi.NAME="TimeOfDay";var Dh,hi=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};Dh=hi;F.DateTime=Dh;hi.NAME="DateTime";var Fh,di=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Fh=di;F.Duration=Fh;di.NAME="Duration";var $h,pi=class extends Ze{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};$h=pi;F.TIME=$h;pi.NAME="TIME";function nt(r,t="utf8"){let e=fs[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return e.encoder.encode(r).substring(1)}var xo=class extends Error{constructor(t="An error occurred while verifying a message"){super(t),this.name="VerificationError"}},gi=class extends Error{constructor(t="Missing Web Crypto API"){super(t),this.name="WebCryptoMissingError"}};var Mh={get(r=globalThis){let t=r.crypto;if(t?.subtle==null)throw new gi("Missing Web Crypto API. The most likely cause of this error is that this page is being accessed from an insecure context (i.e. not HTTPS). For more information and possible resolutions see https://github.com/libp2p/js-libp2p/blob/main/packages/crypto/README.md#web-crypto-api");return t}};var Ar=Mh;async function Vh(r){let t=await Ar.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),e=await vw(t);return{privateKey:e[0],publicKey:e[1]}}async function Oh(r,t){let e=await Ar.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await Ar.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},e,t instanceof Uint8Array?t:t.subarray());return new Uint8Array(n,0,n.byteLength)}async function Hh(r,t,e){let n=await Ar.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return Ar.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,t,e instanceof Uint8Array?e:e.subarray())}async function vw(r){if(r.privateKey==null||r.publicKey==null)throw new St("Private and public key are required");return Promise.all([Ar.get().subtle.exportKey("jwk",r.privateKey),Ar.get().subtle.exportKey("jwk",r.publicKey)])}function Yc(r){if(r.kty!=="RSA")throw new St("invalid key type");if(r.n==null)throw new St("invalid key modulus");return z(r.n,"base64url").length*8}var _n=class{type="RSA";_key;_raw;_multihash;constructor(t,e){this._key=t,this._multihash=e}get raw(){return this._raw==null&&(this._raw=bo.jwkToPkix(this._key)),this._raw}toMultihash(){return this._multihash}toCID(){return O.createV1(114,this._multihash)}toString(){return it.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:st(this.raw,t.raw)}verify(t,e){return Hh(this._key,e,t)}},vo=class{type="RSA";_key;_raw;publicKey;constructor(t,e){this._key=t,this.publicKey=e}get raw(){return this._raw==null&&(this._raw=bo.jwkToPkcs1(this._key)),this._raw}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:st(this.raw,t.raw)}sign(t){return Oh(this._key,t)}};var yi=8192,Jc=18;function zh(r){let{result:t}=Zc(r),e=t.valueBlock.value;return{n:Le(e[1]),e:Le(e[2]),d:Le(e[3]),p:Le(e[4]),q:Le(e[5]),dp:Le(e[6]),dq:Le(e[7]),qi:Le(e[8]),kty:"RSA",alg:"RS256"}}function Ew(r){if(r.n==null||r.e==null||r.d==null||r.p==null||r.q==null||r.dp==null||r.dq==null||r.qi==null)throw new St("JWK was missing components");let e=new We({value:[new Nt({value:0}),Nt.fromBigInt(Re(z(r.n,"base64url"))),Nt.fromBigInt(Re(z(r.e,"base64url"))),Nt.fromBigInt(Re(z(r.d,"base64url"))),Nt.fromBigInt(Re(z(r.p,"base64url"))),Nt.fromBigInt(Re(z(r.q,"base64url"))),Nt.fromBigInt(Re(z(r.dp,"base64url"))),Nt.fromBigInt(Re(z(r.dq,"base64url"))),Nt.fromBigInt(Re(z(r.qi,"base64url")))]}).toBER();return new Uint8Array(e,0,e.byteLength)}function Kh(r){let{result:t}=Zc(r),e=t.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:Le(e[0]),e:Le(e[1])}}function Xc(r){if(r.n==null||r.e==null)throw new St("JWK was missing components");let e=new We({value:[new We({value:[new kn({value:"1.2.840.113549.1.1.1"}),new An]}),new Bn({valueHex:new We({value:[Nt.fromBigInt(Re(z(r.n,"base64url"))),Nt.fromBigInt(Re(z(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(e,0,e.byteLength)}function Le(r){let t=r.valueBlock.valueHexView;for(;t[0]===0;)t=t.subarray(1);return nt(t,"base64url")}function Re(r){let t=[];return r.forEach(function(e){let n=e.toString(16);n.length%2>0&&(n=`0${n}`),t.push(n)}),BigInt("0x"+t.join(""))}function qh(r){let t=zh(r);return jh(t)}function Qc(r){let t=Kh(r);if(Yc(t)>yi)throw new en("Key size is too large");let e=En(Ne.encode({Type:bt.RSA,Data:r})),n=de(Jc,e);return new _n(t,n)}function jh(r){if(Yc(r)>yi)throw new St("Key size is too large");let t=Wh(r),e=En(Ne.encode({Type:bt.RSA,Data:Xc(t.publicKey)})),n=de(Jc,e);return new vo(t.privateKey,new _n(t.publicKey,n))}async function Gh(r){if(r>yi)throw new St("Key size is too large");let t=await Vh(r),e=En(Ne.encode({Type:bt.RSA,Data:Xc(t.publicKey)})),n=de(Jc,e);return new vo(t.privateKey,new _n(t.publicKey,n))}function Wh(r){if(r==null)throw new St("Missing key parameter");return{privateKey:r,publicKey:{kty:r.kty,n:r.n,e:r.e}}}var wi=class extends xn{constructor(t,e){super(),this.finished=!1,this.destroyed=!1,Cf(t);let n=io(e);if(this.iHash=t.create(),typeof this.iHash.update!="function")throw new Error("Expected instance of class which extends utils.Hash");this.blockLen=this.iHash.blockLen,this.outputLen=this.iHash.outputLen;let o=this.blockLen,s=new Uint8Array(o);s.set(n.length>o?t.create().update(n).digest():n);for(let i=0;i<s.length;i++)s[i]^=54;this.iHash.update(s),this.oHash=t.create();for(let i=0;i<s.length;i++)s[i]^=106;this.oHash.update(s),s.fill(0)}update(t){return wn(this),this.iHash.update(t),this}digestInto(t){wn(this),yn(t,this.outputLen),this.finished=!0,this.iHash.digestInto(t),this.oHash.update(t),this.oHash.digestInto(t),this.destroy()}digest(){let t=new Uint8Array(this.oHash.outputLen);return this.digestInto(t),t}_cloneInto(t){t||(t=Object.create(Object.getPrototypeOf(this),{}));let{oHash:e,iHash:n,finished:o,destroyed:s,blockLen:i,outputLen:a}=this;return t=t,t.finished=o,t.destroyed=s,t.blockLen=i,t.outputLen=a,t.oHash=e._cloneInto(t.oHash),t.iHash=n._cloneInto(t.iHash),t}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},tu=(r,t,e)=>new wi(r,t).update(e).digest();tu.create=(r,t)=>new wi(r,t);function Zh(r){r.lowS!==void 0&&ge("lowS",r.lowS),r.prehash!==void 0&&ge("prehash",r.prehash)}function Sw(r){let t=uo(r);Ce(t,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:e,Fp:n,a:o}=t;if(e){if(!n.eql(o,n.ZERO))throw new Error("Endomorphism can only be defined for Koblitz curves that have a=0");if(typeof e!="object"||typeof e.beta!="bigint"||typeof e.splitScalar!="function")throw new Error("Expected endomorphism with beta: bigint and splitScalar: function")}return Object.freeze({...t})}var{bytesToNumberBE:Aw,hexToBytes:Bw}=xs,Xe={Err:class extends Error{constructor(t=""){super(t)}},_tlv:{encode:(r,t)=>{let{Err:e}=Xe;if(r<0||r>256)throw new e("tlv.encode: wrong tag");if(t.length&1)throw new e("tlv.encode: unpadded data");let n=t.length/2,o=Or(n);if(o.length/2&128)throw new e("tlv.encode: long form length too big");let s=n>127?Or(o.length/2|128):"";return`${Or(r)}${s}${o}${t}`},decode(r,t){let{Err:e}=Xe,n=0;if(r<0||r>256)throw new e("tlv.encode: wrong tag");if(t.length<2||t[n++]!==r)throw new e("tlv.decode: wrong tlv");let o=t[n++],s=!!(o&128),i=0;if(!s)i=o;else{let c=o&127;if(!c)throw new e("tlv.decode(long): indefinite length not supported");if(c>4)throw new e("tlv.decode(long): byte length is too big");let u=t.subarray(n,n+c);if(u.length!==c)throw new e("tlv.decode: length bytes not complete");if(u[0]===0)throw new e("tlv.decode(long): zero leftmost byte");for(let l of u)i=i<<8|l;if(n+=c,i<128)throw new e("tlv.decode(long): not minimal encoding")}let a=t.subarray(n,n+i);if(a.length!==i)throw new e("tlv.decode: wrong value length");return{v:a,l:t.subarray(n+i)}}},_int:{encode(r){let{Err:t}=Xe;if(r<Qe)throw new t("integer: negative integers are not allowed");let e=Or(r);if(Number.parseInt(e[0],16)&8&&(e="00"+e),e.length&1)throw new t("unexpected assertion");return e},decode(r){let{Err:t}=Xe;if(r[0]&128)throw new t("Invalid signature integer: negative");if(r[0]===0&&!(r[1]&128))throw new t("Invalid signature integer: unnecessary leading zero");return Aw(r)}},toSig(r){let{Err:t,_int:e,_tlv:n}=Xe,o=typeof r=="string"?Bw(r):r;vn(o);let{v:s,l:i}=n.decode(48,o);if(i.length)throw new t("Invalid signature: left bytes after parsing");let{v:a,l:c}=n.decode(2,s),{v:u,l}=n.decode(2,c);if(l.length)throw new t("Invalid signature: left bytes after parsing");return{r:e.decode(a),s:e.decode(u)}},hexFromSig(r){let{_tlv:t,_int:e}=Xe,n=`${t.encode(2,e.encode(r.r))}${t.encode(2,e.encode(r.s))}`;return t.encode(48,n)}},Qe=BigInt(0),Bt=BigInt(1),H8=BigInt(2),Yh=BigInt(3),z8=BigInt(4);function kw(r){let t=Sw(r),{Fp:e}=t,n=xr(t.n,t.nBitLength),o=t.toBytes||((m,g,x)=>{let b=g.toAffine();return qe(Uint8Array.from([4]),e.toBytes(b.x),e.toBytes(b.y))}),s=t.fromBytes||(m=>{let g=m.subarray(1),x=e.fromBytes(g.subarray(0,e.BYTES)),b=e.fromBytes(g.subarray(e.BYTES,2*e.BYTES));return{x,y:b}});function i(m){let{a:g,b:x}=t,b=e.sqr(m),y=e.mul(b,m);return e.add(e.add(y,e.mul(m,g)),x)}if(!e.eql(e.sqr(t.Gy),i(t.Gx)))throw new Error("bad generator point: equation left != right");function a(m){return ao(m,Bt,t.n)}function c(m){let{allowedPrivateKeyLengths:g,nByteLength:x,wrapPrivateKey:b,n:y}=t;if(g&&typeof m!="bigint"){if(gr(m)&&(m=ze(m)),typeof m!="string"||!g.includes(m.length))throw new Error("Invalid key");m=m.padStart(x*2,"0")}let S;try{S=typeof m=="bigint"?m:Ke(mt("private key",m,x))}catch{throw new Error(`private key must be ${x} bytes, hex or bigint, not ${typeof m}`)}return b&&(S=at(S,y)),Gt("private key",S,Bt,y),S}function u(m){if(!(m instanceof d))throw new Error("ProjectivePoint expected")}let l=Kr((m,g)=>{let{px:x,py:b,pz:y}=m;if(e.eql(y,e.ONE))return{x,y:b};let S=m.is0();g==null&&(g=S?e.ONE:e.inv(y));let _=e.mul(x,g),T=e.mul(b,g),E=e.mul(y,g);if(S)return{x:e.ZERO,y:e.ZERO};if(!e.eql(E,e.ONE))throw new Error("invZ was invalid");return{x:_,y:T}}),f=Kr(m=>{if(m.is0()){if(t.allowInfinityPoint&&!e.is0(m.py))return;throw new Error("bad point: ZERO")}let{x:g,y:x}=m.toAffine();if(!e.isValid(g)||!e.isValid(x))throw new Error("bad point: x or y not FE");let b=e.sqr(x),y=i(g);if(!e.eql(b,y))throw new Error("bad point: equation left != right");if(!m.isTorsionFree())throw new Error("bad point: not in prime-order subgroup");return!0});class d{constructor(g,x,b){if(this.px=g,this.py=x,this.pz=b,g==null||!e.isValid(g))throw new Error("x required");if(x==null||!e.isValid(x))throw new Error("y required");if(b==null||!e.isValid(b))throw new Error("z required");Object.freeze(this)}static fromAffine(g){let{x,y:b}=g||{};if(!g||!e.isValid(x)||!e.isValid(b))throw new Error("invalid affine point");if(g instanceof d)throw new Error("projective point not allowed");let y=S=>e.eql(S,e.ZERO);return y(x)&&y(b)?d.ZERO:new d(x,b,e.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(g){let x=e.invertBatch(g.map(b=>b.pz));return g.map((b,y)=>b.toAffine(x[y])).map(d.fromAffine)}static fromHex(g){let x=d.fromAffine(s(mt("pointHex",g)));return x.assertValidity(),x}static fromPrivateKey(g){return d.BASE.multiply(c(g))}static msm(g,x){return Es(d,n,g,x)}_setWindowSize(g){w.setWindowSize(this,g)}assertValidity(){f(this)}hasEvenY(){let{y:g}=this.toAffine();if(e.isOdd)return!e.isOdd(g);throw new Error("Field doesn't support isOdd")}equals(g){u(g);let{px:x,py:b,pz:y}=this,{px:S,py:_,pz:T}=g,E=e.eql(e.mul(x,T),e.mul(S,y)),v=e.eql(e.mul(b,T),e.mul(_,y));return E&&v}negate(){return new d(this.px,e.neg(this.py),this.pz)}double(){let{a:g,b:x}=t,b=e.mul(x,Yh),{px:y,py:S,pz:_}=this,T=e.ZERO,E=e.ZERO,v=e.ZERO,k=e.mul(y,y),V=e.mul(S,S),D=e.mul(_,_),U=e.mul(y,S);return U=e.add(U,U),v=e.mul(y,_),v=e.add(v,v),T=e.mul(g,v),E=e.mul(b,D),E=e.add(T,E),T=e.sub(V,E),E=e.add(V,E),E=e.mul(T,E),T=e.mul(U,T),v=e.mul(b,v),D=e.mul(g,D),U=e.sub(k,D),U=e.mul(g,U),U=e.add(U,v),v=e.add(k,k),k=e.add(v,k),k=e.add(k,D),k=e.mul(k,U),E=e.add(E,k),D=e.mul(S,_),D=e.add(D,D),k=e.mul(D,U),T=e.sub(T,k),v=e.mul(D,V),v=e.add(v,v),v=e.add(v,v),new d(T,E,v)}add(g){u(g);let{px:x,py:b,pz:y}=this,{px:S,py:_,pz:T}=g,E=e.ZERO,v=e.ZERO,k=e.ZERO,V=t.a,D=e.mul(t.b,Yh),U=e.mul(x,S),L=e.mul(b,_),N=e.mul(y,T),P=e.add(x,b),B=e.add(S,_);P=e.mul(P,B),B=e.add(U,L),P=e.sub(P,B),B=e.add(x,y);let A=e.add(S,T);return B=e.mul(B,A),A=e.add(U,N),B=e.sub(B,A),A=e.add(b,y),E=e.add(_,T),A=e.mul(A,E),E=e.add(L,N),A=e.sub(A,E),k=e.mul(V,B),E=e.mul(D,N),k=e.add(E,k),E=e.sub(L,k),k=e.add(L,k),v=e.mul(E,k),L=e.add(U,U),L=e.add(L,U),N=e.mul(V,N),B=e.mul(D,B),L=e.add(L,N),N=e.sub(U,N),N=e.mul(V,N),B=e.add(B,N),U=e.mul(L,B),v=e.add(v,U),U=e.mul(A,B),E=e.mul(P,E),E=e.sub(E,U),U=e.mul(P,L),k=e.mul(A,k),k=e.add(k,U),new d(E,v,k)}subtract(g){return this.add(g.negate())}is0(){return this.equals(d.ZERO)}wNAF(g){return w.wNAFCached(this,g,d.normalizeZ)}multiplyUnsafe(g){Gt("scalar",g,Qe,t.n);let x=d.ZERO;if(g===Qe)return x;if(g===Bt)return this;let{endo:b}=t;if(!b)return w.unsafeLadder(this,g);let{k1neg:y,k1:S,k2neg:_,k2:T}=b.splitScalar(g),E=x,v=x,k=this;for(;S>Qe||T>Qe;)S&Bt&&(E=E.add(k)),T&Bt&&(v=v.add(k)),k=k.double(),S>>=Bt,T>>=Bt;return y&&(E=E.negate()),_&&(v=v.negate()),v=new d(e.mul(v.px,b.beta),v.py,v.pz),E.add(v)}multiply(g){let{endo:x,n:b}=t;Gt("scalar",g,Bt,b);let y,S;if(x){let{k1neg:_,k1:T,k2neg:E,k2:v}=x.splitScalar(g),{p:k,f:V}=this.wNAF(T),{p:D,f:U}=this.wNAF(v);k=w.constTimeNegate(_,k),D=w.constTimeNegate(E,D),D=new d(e.mul(D.px,x.beta),D.py,D.pz),y=k.add(D),S=V.add(U)}else{let{p:_,f:T}=this.wNAF(g);y=_,S=T}return d.normalizeZ([y,S])[0]}multiplyAndAddUnsafe(g,x,b){let y=d.BASE,S=(T,E)=>E===Qe||E===Bt||!T.equals(y)?T.multiplyUnsafe(E):T.multiply(E),_=S(this,x).add(S(g,b));return _.is0()?void 0:_}toAffine(g){return l(this,g)}isTorsionFree(){let{h:g,isTorsionFree:x}=t;if(g===Bt)return!0;if(x)return x(d,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h:g,clearCofactor:x}=t;return g===Bt?this:x?x(d,this):this.multiplyUnsafe(t.h)}toRawBytes(g=!0){return ge("isCompressed",g),this.assertValidity(),o(d,this,g)}toHex(g=!0){return ge("isCompressed",g),ze(this.toRawBytes(g))}}d.BASE=new d(t.Gx,t.Gy,e.ONE),d.ZERO=new d(e.ZERO,e.ONE,e.ZERO);let h=t.nBitLength,w=vs(d,t.endo?Math.ceil(h/2):h);return{CURVE:t,ProjectivePoint:d,normPrivateKeyToScalar:c,weierstrassEquation:i,isWithinCurveOrder:a}}function Iw(r){let t=uo(r);return Ce(t,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...t})}function Jh(r){let t=Iw(r),{Fp:e,n}=t,o=e.BYTES+1,s=2*e.BYTES+1;function i(N){return at(N,n)}function a(N){return bs(N,n)}let{ProjectivePoint:c,normPrivateKeyToScalar:u,weierstrassEquation:l,isWithinCurveOrder:f}=kw({...t,toBytes(N,P,B){let A=P.toAffine(),C=e.toBytes(A.x),$=qe;return ge("isCompressed",B),B?$(Uint8Array.from([P.hasEvenY()?2:3]),C):$(Uint8Array.from([4]),C,e.toBytes(A.y))},fromBytes(N){let P=N.length,B=N[0],A=N.subarray(1);if(P===o&&(B===2||B===3)){let C=Ke(A);if(!ao(C,Bt,e.ORDER))throw new Error("Point is not on curve");let $=l(C),H;try{H=e.sqrt($)}catch(Y){let W=Y instanceof Error?": "+Y.message:"";throw new Error("Point is not on curve"+W)}let K=(H&Bt)===Bt;return(B&1)===1!==K&&(H=e.neg(H)),{x:C,y:H}}else if(P===s&&B===4){let C=e.fromBytes(A.subarray(0,e.BYTES)),$=e.fromBytes(A.subarray(e.BYTES,2*e.BYTES));return{x:C,y:$}}else throw new Error(`Point of length ${P} was invalid. Expected ${o} compressed bytes or ${s} uncompressed bytes`)}}),d=N=>ze(wr(N,t.nByteLength));function h(N){let P=n>>Bt;return N>P}function w(N){return h(N)?i(-N):N}let m=(N,P,B)=>Ke(N.slice(P,B));class g{constructor(P,B,A){this.r=P,this.s=B,this.recovery=A,this.assertValidity()}static fromCompact(P){let B=t.nByteLength;return P=mt("compactSignature",P,B*2),new g(m(P,0,B),m(P,B,2*B))}static fromDER(P){let{r:B,s:A}=Xe.toSig(mt("DER",P));return new g(B,A)}assertValidity(){Gt("r",this.r,Bt,n),Gt("s",this.s,Bt,n)}addRecoveryBit(P){return new g(this.r,this.s,P)}recoverPublicKey(P){let{r:B,s:A,recovery:C}=this,$=T(mt("msgHash",P));if(C==null||![0,1,2,3].includes(C))throw new Error("recovery id invalid");let H=C===2||C===3?B+t.n:B;if(H>=e.ORDER)throw new Error("recovery id 2 or 3 invalid");let K=C&1?"03":"02",G=c.fromHex(K+d(H)),Y=a(H),W=i(-$*Y),ot=i(A*Y),ut=c.BASE.multiplyAndAddUnsafe(G,W,ot);if(!ut)throw new Error("point at infinify");return ut.assertValidity(),ut}hasHighS(){return h(this.s)}normalizeS(){return this.hasHighS()?new g(this.r,i(-this.s),this.recovery):this}toDERRawBytes(){return Hr(this.toDERHex())}toDERHex(){return Xe.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return Hr(this.toCompactHex())}toCompactHex(){return d(this.r)+d(this.s)}}let x={isValidPrivateKey(N){try{return u(N),!0}catch{return!1}},normPrivateKeyToScalar:u,randomPrivateKey:()=>{let N=Dc(t.n);return zf(t.randomBytes(N),t.n)},precompute(N=8,P=c.BASE){return P._setWindowSize(N),P.multiply(BigInt(3)),P}};function b(N,P=!0){return c.fromPrivateKey(N).toRawBytes(P)}function y(N){let P=gr(N),B=typeof N=="string",A=(P||B)&&N.length;return P?A===o||A===s:B?A===2*o||A===2*s:N instanceof c}function S(N,P,B=!0){if(y(N))throw new Error("first arg must be private key");if(!y(P))throw new Error("second arg must be public key");return c.fromHex(P).multiply(u(N)).toRawBytes(B)}let _=t.bits2int||function(N){let P=Ke(N),B=N.length*8-t.nBitLength;return B>0?P>>BigInt(B):P},T=t.bits2int_modN||function(N){return i(_(N))},E=co(t.nBitLength);function v(N){return Gt(`num < 2^${t.nBitLength}`,N,Qe,E),wr(N,t.nByteLength)}function k(N,P,B=V){if(["recovered","canonical"].some(Et=>Et in B))throw new Error("sign() legacy options not supported");let{hash:A,randomBytes:C}=t,{lowS:$,prehash:H,extraEntropy:K}=B;$==null&&($=!0),N=mt("msgHash",N),Zh(B),H&&(N=mt("prehashed msgHash",A(N)));let G=T(N),Y=u(P),W=[v(Y),v(G)];if(K!=null&&K!==!1){let Et=K===!0?C(e.BYTES):K;W.push(mt("extraEntropy",Et))}let ot=qe(...W),ut=G;function vt(Et){let _t=_(Et);if(!f(_t))return;let Vt=a(_t),wt=c.BASE.multiply(_t).toAffine(),Kt=i(wt.x);if(Kt===Qe)return;let $e=i(Vt*i(ut+Kt*Y));if($e===Qe)return;let Gn=(wt.x===Kt?0:2)|Number(wt.y&Bt),Wn=$e;return $&&h($e)&&(Wn=w($e),Gn^=1),new g(Kt,Wn,Gn)}return{seed:ot,k2sig:vt}}let V={lowS:t.lowS,prehash:!1},D={lowS:t.lowS,prehash:!1};function U(N,P,B=V){let{seed:A,k2sig:C}=k(N,P,B),$=t;return Pc($.hash.outputLen,$.nByteLength,$.hmac)(A,C)}c.BASE._setWindowSize(8);function L(N,P,B,A=D){let C=N;if(P=mt("msgHash",P),B=mt("publicKey",B),"strict"in A)throw new Error("options.strict was renamed to lowS");Zh(A);let{lowS:$,prehash:H}=A,K,G;try{if(typeof C=="string"||gr(C))try{K=g.fromDER(C)}catch(wt){if(!(wt instanceof Xe.Err))throw wt;K=g.fromCompact(C)}else if(typeof C=="object"&&typeof C.r=="bigint"&&typeof C.s=="bigint"){let{r:wt,s:Kt}=C;K=new g(wt,Kt)}else throw new Error("PARSE");G=c.fromHex(B)}catch(wt){if(wt.message==="PARSE")throw new Error("signature must be Signature instance, Uint8Array or hex string");return!1}if($&&K.hasHighS())return!1;H&&(P=t.hash(P));let{r:Y,s:W}=K,ot=T(P),ut=a(W),vt=i(ot*ut),Et=i(Y*ut),_t=c.BASE.multiplyAndAddUnsafe(G,vt,Et)?.toAffine();return _t?i(_t.x)===Y:!1}return{CURVE:t,getPublicKey:b,getSharedSecret:S,sign:U,verify:L,ProjectivePoint:c,Signature:g,utils:x}}function _w(r){return{hash:r,hmac:(t,...e)=>tu(r,t,Ac(...e)),randomBytes:gs}}function Xh(r,t){let e=n=>Jh({...r,..._w(n)});return Object.freeze({...e(t),create:e})}var ed=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),Qh=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),Tw=BigInt(1),eu=BigInt(2),td=(r,t)=>(r+t/eu)/t;function Cw(r){let t=ed,e=BigInt(3),n=BigInt(6),o=BigInt(11),s=BigInt(22),i=BigInt(23),a=BigInt(44),c=BigInt(88),u=r*r*r%t,l=u*u*r%t,f=ft(l,e,t)*l%t,d=ft(f,e,t)*l%t,h=ft(d,eu,t)*u%t,w=ft(h,o,t)*h%t,m=ft(w,s,t)*w%t,g=ft(m,a,t)*m%t,x=ft(g,c,t)*g%t,b=ft(x,a,t)*m%t,y=ft(b,e,t)*l%t,S=ft(y,i,t)*w%t,_=ft(S,n,t)*u%t,T=ft(_,eu,t);if(!ru.eql(ru.sqr(T),r))throw new Error("Cannot find square root");return T}var ru=xr(ed,void 0,void 0,{sqrt:Cw}),Gr=Xh({a:BigInt(0),b:BigInt(7),Fp:ru,n:Qh,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let t=Qh,e=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-Tw*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),o=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),s=e,i=BigInt("0x100000000000000000000000000000000"),a=td(s*r,t),c=td(-n*r,t),u=at(r-a*e-c*o,t),l=at(-a*n-c*s,t),f=u>i,d=l>i;if(f&&(u=t-u),d&&(l=t-l),u>i||l>i)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:f,k1:u,k2neg:d,k2:l}}}},En),X8=BigInt(0);var Q8=Gr.ProjectivePoint;function rd(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function nd(r,t,e){let n=dr.digest(e instanceof Uint8Array?e:e.subarray());if(rd(n))return n.then(({digest:o})=>Gr.verify(t,o,r)).catch(o=>{throw new xo(String(o))});try{return Gr.verify(t,n.digest,r)}catch(o){throw new xo(String(o))}}var xi=class{type="secp256k1";raw;_key;constructor(t){this._key=sd(t),this.raw=od(this._key)}toMultihash(){return jt.digest(ks(this))}toCID(){return O.createV1(114,this.toMultihash())}toString(){return it.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:st(this.raw,t.raw)}verify(t,e){return nd(this._key,e,t)}};function nu(r){return new xi(r)}function od(r){return Gr.ProjectivePoint.fromHex(r).toRawBytes(!0)}function sd(r){try{return Gr.ProjectivePoint.fromHex(r),r}catch(t){throw new en(String(t))}}function id(r){let{Type:t,Data:e}=Ne.decode(r),n=e??new Uint8Array;switch(t){case bt.RSA:return Qc(n);case bt.Ed25519:return Oc(n);case bt.secp256k1:return nu(n);default:throw new rn}}function bi(r){let{Type:t,Data:e}=Ne.decode(r.digest),n=e??new Uint8Array;switch(t){case bt.Ed25519:return Oc(n);case bt.secp256k1:return nu(n);default:throw new rn}}function ks(r){return Ne.encode({Type:bt[r.type],Data:r.raw})}var ad=Symbol.for("nodejs.util.inspect.custom"),Nw=114,Eo=class{type;multihash;publicKey;string;constructor(t){this.type=t.type,this.multihash=t.multihash,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Ra]=!0;toString(){return this.string==null&&(this.string=it.encode(this.multihash.bytes).slice(1)),this.string}toMultihash(){return this.multihash}toCID(){return O.createV1(Nw,this.multihash)}toJSON(){return this.toString()}equals(t){if(t==null)return!1;if(t instanceof Uint8Array)return st(this.multihash.bytes,t);if(typeof t=="string")return this.toString()===t;if(t?.toMultihash()?.bytes!=null)return st(this.multihash.bytes,t.toMultihash().bytes);throw new Error("not valid Id")}[ad](){return`PeerId(${this.toString()})`}},vi=class extends Eo{type="RSA";publicKey;constructor(t){super({...t,type:"RSA"}),this.publicKey=t.publicKey}},Ei=class extends Eo{type="Ed25519";publicKey;constructor(t){super({...t,type:"Ed25519"}),this.publicKey=t.publicKey}},Si=class extends Eo{type="secp256k1";publicKey;constructor(t){super({...t,type:"secp256k1"}),this.publicKey=t.publicKey}},Pw=2336,So=class{type="url";multihash;publicKey;url;constructor(t){this.url=t.toString(),this.multihash=jt.digest(z(this.url))}[ad](){return`PeerId(${this.url})`}[Ra]=!0;toString(){return this.toCID().toString()}toMultihash(){return this.multihash}toCID(){return O.createV1(Pw,this.toMultihash())}toJSON(){return this.toString()}equals(t){return t==null?!1:(t instanceof Uint8Array&&(t=nt(t)),t.toString()===this.toString())}};var Lw=114,cd=2336;function ud(r,t){let e;if(r.charAt(0)==="1"||r.charAt(0)==="Q")e=pe(it.decode(`z${r}`));else{if(t==null)throw new St('Please pass a multibase decoder for strings that do not start with "1" or "Q"');e=pe(t.decode(r))}return ld(e)}function ld(r){if(Uw(r))return new vi({multihash:r});if(Rw(r))try{let t=bi(r);if(t.type==="Ed25519")return new Ei({multihash:r,publicKey:t});if(t.type==="secp256k1")return new Si({multihash:r,publicKey:t})}catch{let e=nt(r.digest);return new So(new URL(e))}throw new cr("Supplied PeerID Multihash is invalid")}function fd(r){if(r?.multihash==null||r.version==null||r.version===1&&r.code!==Lw&&r.code!==cd)throw new Xo("Supplied PeerID CID is invalid");if(r.code===cd){let t=nt(r.multihash.digest);return new So(new URL(t))}return ld(r.multihash)}function Rw(r){return r.code===jt.code}function Uw(r){return r.code===dr.code}var ou=64,xe=class{fp;h;seed;constructor(t,e,n,o=2){if(o>ou)throw new TypeError("Invalid Fingerprint Size");let s=e.hashV(t,n),i=Ql(o);for(let a=0;a<i.length;a++)i[a]=s[a];i.length===0&&(i[0]=7),this.fp=i,this.h=e,this.seed=n}hash(){return this.h.hash(this.fp,this.seed)}equals(t){return t?.fp instanceof Uint8Array?st(this.fp,t.fp):!1}};function Wr(r,t){return Math.floor(Math.random()*(t-r))+r}var Zr=class{contents;constructor(t){this.contents=new Array(t).fill(null)}has(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");return this.contents.some(e=>t.equals(e))}add(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");for(let e=0;e<this.contents.length;e++)if(this.contents[e]==null)return this.contents[e]=t,!0;return!0}swap(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");let e=Wr(0,this.contents.length-1),n=this.contents[e];return this.contents[e]=t,n}remove(t){if(!(t instanceof xe))throw new TypeError("Invalid Fingerprint");let e=this.contents.findIndex(n=>t.equals(n));return e>-1?(this.contents[e]=null,!0):!1}};var su={32:16777619n,64:1099511628211n,128:309485009821345068724781371n,256:374144419156711147060143317175368453031918731002211n,512:35835915874844867368919076489095108449946327955754392558399825615420669938882575126094039892345713852759n,1024:5016456510113118655434598811035278955030765345404790744303017523831112055108147451509157692220295382716162651878526895249385292291816524375083746691371804094271873160484737966720260389217684476157468082573n},md={32:2166136261n,64:14695981039346656037n,128:144066263297769815596495629667062367629n,256:100029257958052580907070968620625704837092796014241193945225284501741471925557n,512:9659303129496669498009435400716310466090418745672637896108374329434462657994582932197716438449813051892206539805784495328239340083876191928701583869517785n,1024:14197795064947621068722070641403218320880622795441933960878474914617582723252296732303717722150864096521202355549365628174669108571814760471015076148029755969804077320157692458563003215304957150157403644460363550505412711285966361610267868082893823963790439336411086884584107735010676915n},gd=new globalThis.TextEncoder;function Dw(r,t){let e=su[t],n=md[t];for(let o=0;o<r.length;o++)n^=BigInt(r[o]),n=BigInt.asUintN(t,n*e);return n}function Fw(r,t,e){if(e.length===0)throw new Error("The `utf8Buffer` option must have a length greater than zero");let n=su[t],o=md[t],s=r;for(;s.length>0;){let i=gd.encodeInto(s,e);s=s.slice(i.read);for(let a=0;a<i.written;a++)o^=BigInt(e[a]),o=BigInt.asUintN(t,o*n)}return o}function iu(r,{size:t=32,utf8Buffer:e}={}){if(!su[t])throw new Error("The `size` option must be one of 32, 64, 128, 256, 512, or 1024");if(typeof r=="string"){if(e)return Fw(r,t,e);r=gd.encode(r)}return Dw(r,t)}var $w=Lr(pd(),1);var Bo={hash:r=>Number(iu(r,{size:32})),hashV:(r,t)=>Mw(Bo.hash(r,t))};function Mw(r){let t=r.toString(16);return t.length%2===1&&(t=`0${t}`),z(t,"base16")}var Vw=500,ko=class{bucketSize;filterSize;fingerprintSize;buckets;count;hash;seed;constructor(t){this.filterSize=t.filterSize,this.bucketSize=t.bucketSize??4,this.fingerprintSize=t.fingerprintSize??2,this.count=0,this.buckets=[],this.hash=t.hash??Bo,this.seed=t.seed??Wr(0,Math.pow(2,10))}add(t){typeof t=="string"&&(t=z(t));let e=new xe(t,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(t,this.seed)%this.filterSize,o=(n^e.hash())%this.filterSize;if(this.buckets[n]==null&&(this.buckets[n]=new Zr(this.bucketSize)),this.buckets[o]==null&&(this.buckets[o]=new Zr(this.bucketSize)),this.buckets[n].add(e)||this.buckets[o].add(e))return this.count++,!0;let s=[n,o],i=s[Wr(0,s.length-1)];this.buckets[i]==null&&(this.buckets[i]=new Zr(this.bucketSize));for(let a=0;a<Vw;a++){let c=this.buckets[i].swap(e);if(c!=null&&(i=(i^c.hash())%this.filterSize,this.buckets[i]==null&&(this.buckets[i]=new Zr(this.bucketSize)),this.buckets[i].add(c)))return this.count++,!0}return!1}has(t){typeof t=="string"&&(t=z(t));let e=new xe(t,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(t,this.seed)%this.filterSize,o=this.buckets[n]?.has(e)??!1;if(o)return o;let s=(n^e.hash())%this.filterSize;return this.buckets[s]?.has(e)??!1}remove(t){typeof t=="string"&&(t=z(t));let e=new xe(t,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(t,this.seed)%this.filterSize,o=this.buckets[n]?.remove(e)??!1;if(o)return this.count--,o;let s=(n^e.hash())%this.filterSize,i=this.buckets[s]?.remove(e)??!1;return i&&this.count--,i}get reliable(){return Math.floor(100*(this.count/this.filterSize))<=90}},Ow={1:.5,2:.84,4:.95,8:.98};function Hw(r=.001){return r>.002?2:r>1e-5?4:8}function yd(r,t=.001){let e=Hw(t),n=Ow[e],o=Math.round(r/n),s=Math.min(Math.ceil(Math.log2(1/t)+Math.log2(2*e)),ou);return{filterSize:o,bucketSize:e,fingerprintSize:s}}var Bi=class{filterSize;bucketSize;fingerprintSize;scale;filterSeries;hash;seed;constructor(t){this.bucketSize=t.bucketSize??4,this.filterSize=t.filterSize??(1<<18)/this.bucketSize,this.fingerprintSize=t.fingerprintSize??2,this.scale=t.scale??2,this.hash=t.hash??Bo,this.seed=t.seed??Wr(0,Math.pow(2,10)),this.filterSeries=[new ko({filterSize:this.filterSize,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed})]}add(t){if(typeof t=="string"&&(t=z(t)),this.has(t))return!0;let e=this.filterSeries.find(n=>n.reliable);if(e==null){let n=this.filterSize*Math.pow(this.scale,this.filterSeries.length);e=new ko({filterSize:n,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed}),this.filterSeries.push(e)}return e.add(t)}has(t){typeof t=="string"&&(t=z(t));for(let e=0;e<this.filterSeries.length;e++)if(this.filterSeries[e].has(t))return!0;return!1}remove(t){typeof t=="string"&&(t=z(t));for(let e=0;e<this.filterSeries.length;e++)if(this.filterSeries[e].remove(t))return!0;return!1}get count(){return this.filterSeries.reduce((t,e)=>t+e.count,0)}};function au(r,t=.001,e){return new Bi({...yd(r,t),...e??{}})}function zw(r,t){try{if(typeof r=="string"&&r.length>0)return Kw(r);if(typeof r=="number"&&isFinite(r))return t?.long?jw(r):qw(r);throw new Error("Value is not a string or number.")}catch(e){let n=Gw(e)?`${e.message}. value=${JSON.stringify(r)}`:"An unknown error has occured.";throw new Error(n)}}function Kw(r){if(r=String(r),r.length>100)throw new Error("Value exceeds the maximum length of 100 characters.");let t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(r);if(!t)return NaN;let e=parseFloat(t[1]),n=(t[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return e*315576e5;case"weeks":case"week":case"w":return e*6048e5;case"days":case"day":case"d":return e*864e5;case"hours":case"hour":case"hrs":case"hr":case"h":return e*36e5;case"minutes":case"minute":case"mins":case"min":case"m":return e*6e4;case"seconds":case"second":case"secs":case"sec":case"s":return e*1e3;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return e;default:throw new Error(`The unit ${n} was matched, but no matching case exists.`)}}var Ii=zw;function qw(r){let t=Math.abs(r);return t>=864e5?`${Math.round(r/864e5)}d`:t>=36e5?`${Math.round(r/36e5)}h`:t>=6e4?`${Math.round(r/6e4)}m`:t>=1e3?`${Math.round(r/1e3)}s`:`${r}ms`}function jw(r){let t=Math.abs(r);return t>=864e5?ki(r,t,864e5,"day"):t>=36e5?ki(r,t,36e5,"hour"):t>=6e4?ki(r,t,6e4,"minute"):t>=1e3?ki(r,t,1e3,"second"):`${r} ms`}function ki(r,t,e,n){let o=t>=e*1.5;return`${Math.round(r/e)} ${n}${o?"s":""}`}function Gw(r){return typeof r=="object"&&r!==null&&"message"in r}function cu(r){e.debug=e,e.default=e,e.coerce=c,e.disable=s,e.enable=o,e.enabled=i,e.humanize=Ii,e.destroy=u,Object.keys(r).forEach(l=>{e[l]=r[l]}),e.names=[],e.skips=[],e.formatters={};function t(l){let f=0;for(let d=0;d<l.length;d++)f=(f<<5)-f+l.charCodeAt(d),f|=0;return e.colors[Math.abs(f)%e.colors.length]}e.selectColor=t;function e(l){let f,d=null,h,w;function m(...g){if(!m.enabled)return;let x=m,b=Number(new Date),y=b-(f||b);x.diff=y,x.prev=f,x.curr=b,f=b,g[0]=e.coerce(g[0]),typeof g[0]!="string"&&g.unshift("%O");let S=0;g[0]=g[0].replace(/%([a-zA-Z%])/g,(T,E)=>{if(T==="%%")return"%";S++;let v=e.formatters[E];if(typeof v=="function"){let k=g[S];T=v.call(x,k),g.splice(S,1),S--}return T}),e.formatArgs.call(x,g),(x.log||e.log).apply(x,g)}return m.namespace=l,m.useColors=e.useColors(),m.color=e.selectColor(l),m.extend=n,m.destroy=e.destroy,Object.defineProperty(m,"enabled",{enumerable:!0,configurable:!1,get:()=>d!==null?d:(h!==e.namespaces&&(h=e.namespaces,w=e.enabled(l)),w),set:g=>{d=g}}),typeof e.init=="function"&&e.init(m),m}function n(l,f){let d=e(this.namespace+(typeof f>"u"?":":f)+l);return d.log=this.log,d}function o(l){e.save(l),e.namespaces=l,e.names=[],e.skips=[];let f,d=(typeof l=="string"?l:"").split(/[\s,]+/),h=d.length;for(f=0;f<h;f++)d[f]&&(l=d[f].replace(/\*/g,".*?"),l[0]==="-"?e.skips.push(new RegExp("^"+l.substr(1)+"$")):e.names.push(new RegExp("^"+l+"$")))}function s(){let l=[...e.names.map(a),...e.skips.map(a).map(f=>"-"+f)].join(",");return e.enable(""),l}function i(l){if(l[l.length-1]==="*")return!0;let f,d;for(f=0,d=e.skips.length;f<d;f++)if(e.skips[f].test(l))return!1;for(f=0,d=e.names.length;f<d;f++)if(e.names[f].test(l))return!0;return!1}function a(l){return l.toString().substring(2,l.toString().length-2).replace(/\.\*\?$/,"*")}function c(l){return l instanceof Error?l.stack??l.message:l}function u(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return e.setupFormatters(e.formatters),e.enable(e.load()),e}var _i=tx(),Ww=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function Zw(){return typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)?!0:typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/(edge|trident)\/(\d+)/)!=null?!1:typeof document<"u"&&document.documentElement?.style?.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/firefox\/(\d+)/)!=null&&parseInt(RegExp.$1,10)>=31||typeof navigator<"u"&&navigator.userAgent?.toLowerCase().match(/applewebkit\/(\d+)/)}function Yw(r){if(r[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+r[0]+(this.useColors?"%c ":" ")+"+"+Ii(this.diff),!this.useColors)return;let t="color: "+this.color;r.splice(1,0,t,"color: inherit");let e=0,n=0;r[0].replace(/%[a-zA-Z%]/g,o=>{o!=="%%"&&(e++,o==="%c"&&(n=e))}),r.splice(n,0,t)}var Jw=console.debug??console.log??(()=>{});function Xw(r){try{r?_i?.setItem("debug",r):_i?.removeItem("debug")}catch{}}function Qw(){let r;try{r=_i?.getItem("debug")}catch{}return!r&&typeof globalThis.process<"u"&&"env"in globalThis.process&&(r=globalThis.process.env.DEBUG),r}function tx(){try{return localStorage}catch{}}function ex(r){r.j=function(t){try{return JSON.stringify(t)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}}var wd=cu({formatArgs:Yw,save:Xw,load:Qw,useColors:Zw,setupFormatters:ex,colors:Ww,storage:_i,log:Jw});var Yt=wd;Yt.formatters.b=r=>r==null?"undefined":it.baseEncode(r);Yt.formatters.t=r=>r==null?"undefined":Tt.baseEncode(r);Yt.formatters.m=r=>r==null?"undefined":Te.baseEncode(r);Yt.formatters.p=r=>r==null?"undefined":r.toString();Yt.formatters.c=r=>r==null?"undefined":r.toString();Yt.formatters.k=r=>r==null?"undefined":r.toString();Yt.formatters.a=r=>r==null?"undefined":r.toString();Yt.formatters.e=r=>r==null?"undefined":xd(r.stack)??xd(r.message)??r.toString();function rx(r){let t=()=>{};return t.enabled=!1,t.color="",t.diff=0,t.log=()=>{},t.namespace=r,t.destroy=()=>!0,t.extend=()=>t,t}function bd(){return{forComponent(r){return te(r)}}}function te(r){let t=rx(`${r}:trace`);return Yt.enabled(`${r}:trace`)&&Yt.names.map(e=>e.toString()).find(e=>e.includes(":trace"))!=null&&(t=Yt(`${r}:trace`)),Object.assign(Yt(r),{error:Yt(`${r}:error`),trace:t})}function xd(r){if(r!=null&&(r=r.trim(),r.length!==0))return r}var lu=Lr(Ed(),1);var _o=class extends Error{constructor(t){super(t),this.name="TimeoutError"}},fu=class extends Error{constructor(t){super(),this.name="AbortError",this.message=t}},Sd=r=>globalThis.DOMException===void 0?new fu(r):new DOMException(r),Ad=r=>{let t=r.reason===void 0?Sd("This operation was aborted."):r.reason;return t instanceof Error?t:Sd(t)};function To(r,t){let{milliseconds:e,fallback:n,message:o,customTimers:s={setTimeout,clearTimeout}}=t,i,c=new Promise((u,l)=>{if(typeof e!="number"||Math.sign(e)!==1)throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${e}\``);if(t.signal){let{signal:d}=t;d.aborted&&l(Ad(d));let h=()=>{l(Ad(d))};d.addEventListener("abort",h,{once:!0}),r.finally(()=>{d.removeEventListener("abort",h)})}if(e===Number.POSITIVE_INFINITY){r.then(u,l);return}let f=new _o;i=s.setTimeout.call(void 0,()=>{if(n){try{u(n())}catch(d){l(d)}return}typeof r.cancel=="function"&&r.cancel(),o===!1?u():o instanceof Error?l(o):(f.message=o??`Promise timed out after ${e} milliseconds`,l(f))},e),(async()=>{try{u(await r)}catch(d){l(d)}})()}).finally(()=>{c.clear()});return c.clear=()=>{s.clearTimeout.call(void 0,i),i=void 0},c}function hu(r,t,e){let n=0,o=r.length;for(;o>0;){let s=Math.trunc(o/2),i=n+s;e(r[i],t)<=0?(n=++i,o-=s+1):o=s}return n}var Co=class{#t=[];enqueue(t,e){e={priority:0,...e};let n={priority:e.priority,run:t};if(this.size&&this.#t[this.size-1].priority>=e.priority){this.#t.push(n);return}let o=hu(this.#t,n,(s,i)=>i.priority-s.priority);this.#t.splice(o,0,n)}dequeue(){return this.#t.shift()?.run}filter(t){return this.#t.filter(e=>e.priority===t.priority).map(e=>e.run)}get size(){return this.#t.length}};var Ue=class extends lu.default{#t;#e;#r=0;#o;#a;#u=0;#s;#l;#n;#m;#i=0;#f;#c;#g;timeout;constructor(t){if(super(),t={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:Co,...t},!(typeof t.intervalCap=="number"&&t.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${t.intervalCap?.toString()??""}\` (${typeof t.intervalCap})`);if(t.interval===void 0||!(Number.isFinite(t.interval)&&t.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${t.interval?.toString()??""}\` (${typeof t.interval})`);this.#t=t.carryoverConcurrencyCount,this.#e=t.intervalCap===Number.POSITIVE_INFINITY||t.interval===0,this.#o=t.intervalCap,this.#a=t.interval,this.#n=new t.queueClass,this.#m=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#g=t.throwOnTimeout===!0,this.#c=t.autoStart===!1}get#x(){return this.#e||this.#r<this.#o}get#b(){return this.#i<this.#f}#v(){this.#i--,this.#h(),this.emit("next")}#E(){this.#w(),this.#y(),this.#l=void 0}get#S(){let t=Date.now();if(this.#s===void 0){let e=this.#u-t;if(e<0)this.#r=this.#t?this.#i:0;else return this.#l===void 0&&(this.#l=setTimeout(()=>{this.#E()},e)),!0}return!1}#h(){if(this.#n.size===0)return this.#s&&clearInterval(this.#s),this.#s=void 0,this.emit("empty"),this.#i===0&&this.emit("idle"),!1;if(!this.#c){let t=!this.#S;if(this.#x&&this.#b){let e=this.#n.dequeue();return e?(this.emit("active"),e(),t&&this.#y(),!0):!1}}return!1}#y(){this.#e||this.#s!==void 0||(this.#s=setInterval(()=>{this.#w()},this.#a),this.#u=Date.now()+this.#a)}#w(){this.#r===0&&this.#i===0&&this.#s&&(clearInterval(this.#s),this.#s=void 0),this.#r=this.#t?this.#i:0,this.#d()}#d(){for(;this.#h(););}get concurrency(){return this.#f}set concurrency(t){if(!(typeof t=="number"&&t>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${t}\` (${typeof t})`);this.#f=t,this.#d()}async#A(t){return new Promise((e,n)=>{t.addEventListener("abort",()=>{n(t.reason)},{once:!0})})}async add(t,e={}){return e={timeout:this.timeout,throwOnTimeout:this.#g,...e},new Promise((n,o)=>{this.#n.enqueue(async()=>{this.#i++,this.#r++;try{e.signal?.throwIfAborted();let s=t({signal:e.signal});e.timeout&&(s=To(Promise.resolve(s),{milliseconds:e.timeout})),e.signal&&(s=Promise.race([s,this.#A(e.signal)]));let i=await s;n(i),this.emit("completed",i)}catch(s){if(s instanceof _o&&!e.throwOnTimeout){n();return}o(s),this.emit("error",s)}finally{this.#v()}},e),this.emit("add"),this.#h()})}async addAll(t,e){return Promise.all(t.map(async n=>this.add(n,e)))}start(){return this.#c?(this.#c=!1,this.#d(),this):this}pause(){this.#c=!0}clear(){this.#n=new this.#m}async onEmpty(){this.#n.size!==0&&await this.#p("empty")}async onSizeLessThan(t){this.#n.size<t||await this.#p("next",()=>this.#n.size<t)}async onIdle(){this.#i===0&&this.#n.size===0||await this.#p("idle")}async#p(t,e){return new Promise(n=>{let o=()=>{e&&!e()||(this.off(t,o),n())};this.on(t,o)})}get size(){return this.#n.size}sizeBy(t){return this.#n.filter(t).length}get pending(){return this.#i}get isPaused(){return this.#c}};function Ci(r){let t=[be.A];return r==null?t:Array.isArray(r)?r.length===0?t:r:[r]}var du=60;function Ni(r){return{Status:r.Status??0,TC:r.TC??r.flag_tc??!1,RD:r.RD??r.flag_rd??!1,RA:r.RA??r.flag_ra??!1,AD:r.AD??r.flag_ad??!1,CD:r.CD??r.flag_cd??!1,Question:(r.Question??r.questions??[]).map(t=>({name:t.name,type:be[t.type]})),Answer:(r.Answer??r.answers??[]).map(t=>({name:t.name,type:be[t.type],TTL:t.TTL??t.ttl??du,data:t.data instanceof Uint8Array?nt(t.data):t.data}))}}var sx=4;function pu(r,t={}){let e=new Ue({concurrency:t.queryConcurrency??sx});return async(n,o={})=>{let s=new URLSearchParams;s.set("name",n),Ci(o.types).forEach(a=>{s.append("type",be[a])}),o.onProgress?.(new tt("dns:query",{detail:n}));let i=await e.add(async()=>{let a=await fetch(`${r}?${s}`,{headers:{accept:"application/dns-json"},signal:o?.signal});if(a.status!==200)throw new Error(`Unexpected HTTP status: ${a.status} - ${a.statusText}`);let c=Ni(await a.json());return o.onProgress?.(new tt("dns:response",{detail:c})),c},{signal:o.signal});if(i==null)throw new Error("No DNS response received");return i}}function Bd(){return[pu("https://cloudflare-dns.com/dns-query"),pu("https://dns.google/resolve")]}var _d=Lr(Id(),1);var mu=class{lru;constructor(t){this.lru=(0,_d.default)(t)}get(t,e){let n=!0,o=[];for(let s of e){let i=this.getAnswers(t,s);if(i.length===0){n=!1;break}o.push(...i)}if(n)return Ni({answers:o})}getAnswers(t,e){let n=`${t.toLowerCase()}-${e}`,o=this.lru.get(n);if(o!=null){let s=o.filter(i=>i.expires>Date.now()).map(({expires:i,value:a})=>({...a,TTL:Math.round((i-Date.now())/1e3),type:be[a.type]}));return s.length===0&&this.lru.remove(n),s}return[]}add(t,e){let n=`${t.toLowerCase()}-${e.type}`,o=this.lru.get(n)??[];o.push({expires:Date.now()+(e.TTL??du)*1e3,value:e}),this.lru.set(n,o)}remove(t,e){let n=`${t.toLowerCase()}-${e}`;this.lru.remove(n)}clear(){this.lru.clear()}};function Td(r){return new mu(r)}var ix=1e3,Pi=class{resolvers;cache;constructor(t){this.resolvers={},this.cache=Td(t.cacheSize??ix),Object.entries(t.resolvers??{}).forEach(([e,n])=>{Array.isArray(n)||(n=[n]),e.endsWith(".")||(e=`${e}.`),this.resolvers[e]=n}),this.resolvers["."]==null&&(this.resolvers["."]=Bd())}async query(t,e={}){let n=Ci(e.types),o=e.cached!==!1?this.cache.get(t,n):void 0;if(o!=null)return e.onProgress?.(new tt("dns:cache",{detail:o})),o;let s=`${t.split(".").pop()}.`,i=(this.resolvers[s]??this.resolvers["."]).sort(()=>Math.random()>.5?-1:1),a=[];for(let c of i){if(e.signal?.aborted===!0)break;try{let u=await c(t,{...e,types:n});for(let l of u.Answer)this.cache.add(t,l);return u}catch(u){a.push(u),e.onProgress?.(new tt("dns:error",{detail:u}))}}throw a.length===1?a[0]:new AggregateError(a,`DNS lookup of ${t} ${n} failed`)}};var be;(function(r){r[r.A=1]="A",r[r.CNAME=5]="CNAME",r[r.TXT=16]="TXT",r[r.AAAA=28]="AAAA"})(be||(be={}));function Cd(r={}){return new Pi(r)}var ax=["string","number","bigint","symbol"],cx=["Function","Generator","AsyncGenerator","GeneratorFunction","AsyncGeneratorFunction","AsyncFunction","Observable","Array","Buffer","Object","RegExp","Date","Error","Map","Set","WeakMap","WeakSet","ArrayBuffer","SharedArrayBuffer","DataView","Promise","URL","HTMLElement","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","BigInt64Array","BigUint64Array"];function Nd(r){if(r===null)return"null";if(r===void 0)return"undefined";if(r===!0||r===!1)return"boolean";let t=typeof r;if(ax.includes(t))return t;if(t==="function")return"Function";if(Array.isArray(r))return"Array";if(ux(r))return"Buffer";let e=lx(r);return e||"Object"}function ux(r){return r&&r.constructor&&r.constructor.isBuffer&&r.constructor.isBuffer.call(null,r)}function lx(r){let t=Object.prototype.toString.call(r).slice(8,-1);if(cx.includes(t))return t}var p=class{constructor(t,e,n){this.major=t,this.majorEncoded=t<<5,this.name=e,this.terminal=n}toString(){return`Type[${this.major}].${this.name}`}compare(t){return this.major<t.major?-1:this.major>t.major?1:0}};p.uint=new p(0,"uint",!0);p.negint=new p(1,"negint",!0);p.bytes=new p(2,"bytes",!0);p.string=new p(3,"string",!0);p.array=new p(4,"array",!1);p.map=new p(5,"map",!1);p.tag=new p(6,"tag",!1);p.float=new p(7,"float",!0);p.false=new p(7,"false",!0);p.true=new p(7,"true",!0);p.null=new p(7,"null",!0);p.undefined=new p(7,"undefined",!0);p.break=new p(7,"break",!0);var I=class{constructor(t,e,n){this.type=t,this.value=e,this.encodedLength=n,this.encodedBytes=void 0,this.byteValue=void 0}toString(){return`Token[${this.type}].${this.value}`}};var Tn=globalThis.process&&!globalThis.process.browser&&globalThis.Buffer&&typeof globalThis.Buffer.isBuffer=="function",fx=new TextDecoder,hx=new TextEncoder;function Li(r){return Tn&&globalThis.Buffer.isBuffer(r)}function No(r){return r instanceof Uint8Array?Li(r)?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):r:Uint8Array.from(r)}var Ud=Tn?(r,t,e)=>e-t>64?globalThis.Buffer.from(r.subarray(t,e)).toString("utf8"):Ld(r,t,e):(r,t,e)=>e-t>64?fx.decode(r.subarray(t,e)):Ld(r,t,e),Ri=Tn?r=>r.length>64?globalThis.Buffer.from(r):Pd(r):r=>r.length>64?hx.encode(r):Pd(r),De=r=>Uint8Array.from(r),Cn=Tn?(r,t,e)=>Li(r)?new Uint8Array(r.subarray(t,e)):r.slice(t,e):(r,t,e)=>r.slice(t,e),Dd=Tn?(r,t)=>(r=r.map(e=>e instanceof Uint8Array?e:globalThis.Buffer.from(e)),No(globalThis.Buffer.concat(r,t))):(r,t)=>{let e=new Uint8Array(t),n=0;for(let o of r)n+o.length>e.length&&(o=o.subarray(0,e.length-n)),e.set(o,n),n+=o.length;return e},Fd=Tn?r=>globalThis.Buffer.allocUnsafe(r):r=>new Uint8Array(r);function $d(r,t){if(Li(r)&&Li(t))return r.compare(t);for(let e=0;e<r.length;e++)if(r[e]!==t[e])return r[e]<t[e]?-1:1;return 0}function Pd(r){let t=[],e=0;for(let n=0;n<r.length;n++){let o=r.charCodeAt(n);o<128?t[e++]=o:o<2048?(t[e++]=o>>6|192,t[e++]=o&63|128):(o&64512)===55296&&n+1<r.length&&(r.charCodeAt(n+1)&64512)===56320?(o=65536+((o&1023)<<10)+(r.charCodeAt(++n)&1023),t[e++]=o>>18|240,t[e++]=o>>12&63|128,t[e++]=o>>6&63|128,t[e++]=o&63|128):(t[e++]=o>>12|224,t[e++]=o>>6&63|128,t[e++]=o&63|128)}return t}function Ld(r,t,e){let n=[];for(;t<e;){let o=r[t],s=null,i=o>239?4:o>223?3:o>191?2:1;if(t+i<=e){let a,c,u,l;switch(i){case 1:o<128&&(s=o);break;case 2:a=r[t+1],(a&192)===128&&(l=(o&31)<<6|a&63,l>127&&(s=l));break;case 3:a=r[t+1],c=r[t+2],(a&192)===128&&(c&192)===128&&(l=(o&15)<<12|(a&63)<<6|c&63,l>2047&&(l<55296||l>57343)&&(s=l));break;case 4:a=r[t+1],c=r[t+2],u=r[t+3],(a&192)===128&&(c&192)===128&&(u&192)===128&&(l=(o&15)<<18|(a&63)<<12|(c&63)<<6|u&63,l>65535&&l<1114112&&(s=l))}}s===null?(s=65533,i=1):s>65535&&(s-=65536,n.push(s>>>10&1023|55296),s=56320|s&1023),n.push(s),t+=i}return gu(n)}var Rd=4096;function gu(r){let t=r.length;if(t<=Rd)return String.fromCharCode.apply(String,r);let e="",n=0;for(;n<t;)e+=String.fromCharCode.apply(String,r.slice(n,n+=Rd));return e}var dx=256,Po=class{constructor(t=dx){this.chunkSize=t,this.cursor=0,this.maxCursor=-1,this.chunks=[],this._initReuseChunk=null}reset(){this.cursor=0,this.maxCursor=-1,this.chunks.length&&(this.chunks=[]),this._initReuseChunk!==null&&(this.chunks.push(this._initReuseChunk),this.maxCursor=this._initReuseChunk.length-1)}push(t){let e=this.chunks[this.chunks.length-1];if(this.cursor+t.length<=this.maxCursor+1){let o=e.length-(this.maxCursor-this.cursor)-1;e.set(t,o)}else{if(e){let o=e.length-(this.maxCursor-this.cursor)-1;o<e.length&&(this.chunks[this.chunks.length-1]=e.subarray(0,o),this.maxCursor=this.cursor-1)}t.length<64&&t.length<this.chunkSize?(e=Fd(this.chunkSize),this.chunks.push(e),this.maxCursor+=e.length,this._initReuseChunk===null&&(this._initReuseChunk=e),e.set(t,0)):(this.chunks.push(t),this.maxCursor+=t.length)}this.cursor+=t.length}toBytes(t=!1){let e;if(this.chunks.length===1){let n=this.chunks[0];t&&this.cursor>n.length/2?(e=this.cursor===n.length?n:n.subarray(0,this.cursor),this._initReuseChunk=null,this.chunks=[]):e=Cn(n,0,this.cursor)}else e=Dd(this.chunks,this.cursor);return t&&this.reset(),e}};var M="CBOR decode error:",tr="CBOR encode error:",Lo=[];Lo[23]=1;Lo[24]=2;Lo[25]=3;Lo[26]=5;Lo[27]=9;function er(r,t,e){if(r.length-t<e)throw new Error(`${M} not enough data for type`)}var kt=[24,256,65536,4294967296,BigInt("18446744073709551616")];function ee(r,t,e){er(r,t,1);let n=r[t];if(e.strict===!0&&n<kt[0])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);return n}function re(r,t,e){er(r,t,2);let n=r[t]<<8|r[t+1];if(e.strict===!0&&n<kt[1])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);return n}function ne(r,t,e){er(r,t,4);let n=r[t]*16777216+(r[t+1]<<16)+(r[t+2]<<8)+r[t+3];if(e.strict===!0&&n<kt[2])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);return n}function oe(r,t,e){er(r,t,8);let n=r[t]*16777216+(r[t+1]<<16)+(r[t+2]<<8)+r[t+3],o=r[t+4]*16777216+(r[t+5]<<16)+(r[t+6]<<8)+r[t+7],s=(BigInt(n)<<BigInt(32))+BigInt(o);if(e.strict===!0&&s<kt[3])throw new Error(`${M} integer encoded in more bytes than necessary (strict decode)`);if(s<=Number.MAX_SAFE_INTEGER)return Number(s);if(e.allowBigInt===!0)return s;throw new Error(`${M} integers outside of the safe integer range are not supported`)}function Md(r,t,e,n){return new I(p.uint,ee(r,t+1,n),2)}function Vd(r,t,e,n){return new I(p.uint,re(r,t+1,n),3)}function Od(r,t,e,n){return new I(p.uint,ne(r,t+1,n),5)}function Hd(r,t,e,n){return new I(p.uint,oe(r,t+1,n),9)}function ae(r,t){return Pt(r,0,t.value)}function Pt(r,t,e){if(e<kt[0]){let n=Number(e);r.push([t|n])}else if(e<kt[1]){let n=Number(e);r.push([t|24,n])}else if(e<kt[2]){let n=Number(e);r.push([t|25,n>>>8,n&255])}else if(e<kt[3]){let n=Number(e);r.push([t|26,n>>>24&255,n>>>16&255,n>>>8&255,n&255])}else{let n=BigInt(e);if(n<kt[4]){let o=[t|27,0,0,0,0,0,0,0],s=Number(n&BigInt(4294967295)),i=Number(n>>BigInt(32)&BigInt(4294967295));o[8]=s&255,s=s>>8,o[7]=s&255,s=s>>8,o[6]=s&255,s=s>>8,o[5]=s&255,o[4]=i&255,i=i>>8,o[3]=i&255,i=i>>8,o[2]=i&255,i=i>>8,o[1]=i&255,r.push(o)}else throw new Error(`${M} encountered BigInt larger than allowable range`)}}ae.encodedSize=function(t){return Pt.encodedSize(t.value)};Pt.encodedSize=function(t){return t<kt[0]?1:t<kt[1]?2:t<kt[2]?3:t<kt[3]?5:9};ae.compareTokens=function(t,e){return t.value<e.value?-1:t.value>e.value?1:0};function zd(r,t,e,n){return new I(p.negint,-1-ee(r,t+1,n),2)}function Kd(r,t,e,n){return new I(p.negint,-1-re(r,t+1,n),3)}function qd(r,t,e,n){return new I(p.negint,-1-ne(r,t+1,n),5)}var yu=BigInt(-1),jd=BigInt(1);function Gd(r,t,e,n){let o=oe(r,t+1,n);if(typeof o!="bigint"){let s=-1-o;if(s>=Number.MIN_SAFE_INTEGER)return new I(p.negint,s,9)}if(n.allowBigInt!==!0)throw new Error(`${M} integers outside of the safe integer range are not supported`);return new I(p.negint,yu-BigInt(o),9)}function Ui(r,t){let e=t.value,n=typeof e=="bigint"?e*yu-jd:e*-1-1;Pt(r,t.type.majorEncoded,n)}Ui.encodedSize=function(t){let e=t.value,n=typeof e=="bigint"?e*yu-jd:e*-1-1;return n<kt[0]?1:n<kt[1]?2:n<kt[2]?3:n<kt[3]?5:9};Ui.compareTokens=function(t,e){return t.value<e.value?1:t.value>e.value?-1:0};function Ro(r,t,e,n){er(r,t,e+n);let o=Cn(r,t+e,t+e+n);return new I(p.bytes,o,e+n)}function Wd(r,t,e,n){return Ro(r,t,1,e)}function Zd(r,t,e,n){return Ro(r,t,2,ee(r,t+1,n))}function Yd(r,t,e,n){return Ro(r,t,3,re(r,t+1,n))}function Jd(r,t,e,n){return Ro(r,t,5,ne(r,t+1,n))}function Xd(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer bytes lengths not supported`);return Ro(r,t,9,o)}function Di(r){return r.encodedBytes===void 0&&(r.encodedBytes=r.type===p.string?Ri(r.value):r.value),r.encodedBytes}function Nn(r,t){let e=Di(t);Pt(r,t.type.majorEncoded,e.length),r.push(e)}Nn.encodedSize=function(t){let e=Di(t);return Pt.encodedSize(e.length)+e.length};Nn.compareTokens=function(t,e){return mx(Di(t),Di(e))};function mx(r,t){return r.length<t.length?-1:r.length>t.length?1:$d(r,t)}function Uo(r,t,e,n,o){let s=e+n;er(r,t,s);let i=new I(p.string,Ud(r,t+e,t+s),s);return o.retainStringBytes===!0&&(i.byteValue=Cn(r,t+e,t+s)),i}function Qd(r,t,e,n){return Uo(r,t,1,e,n)}function tp(r,t,e,n){return Uo(r,t,2,ee(r,t+1,n),n)}function ep(r,t,e,n){return Uo(r,t,3,re(r,t+1,n),n)}function rp(r,t,e,n){return Uo(r,t,5,ne(r,t+1,n),n)}function np(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer string lengths not supported`);return Uo(r,t,9,o,n)}var op=Nn;function Pn(r,t,e,n){return new I(p.array,n,e)}function sp(r,t,e,n){return Pn(r,t,1,e)}function ip(r,t,e,n){return Pn(r,t,2,ee(r,t+1,n))}function ap(r,t,e,n){return Pn(r,t,3,re(r,t+1,n))}function cp(r,t,e,n){return Pn(r,t,5,ne(r,t+1,n))}function up(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer array lengths not supported`);return Pn(r,t,9,o)}function lp(r,t,e,n){if(n.allowIndefinite===!1)throw new Error(`${M} indefinite length items not allowed`);return Pn(r,t,1,1/0)}function Fi(r,t){Pt(r,p.array.majorEncoded,t.value)}Fi.compareTokens=ae.compareTokens;Fi.encodedSize=function(t){return Pt.encodedSize(t.value)};function Ln(r,t,e,n){return new I(p.map,n,e)}function fp(r,t,e,n){return Ln(r,t,1,e)}function hp(r,t,e,n){return Ln(r,t,2,ee(r,t+1,n))}function dp(r,t,e,n){return Ln(r,t,3,re(r,t+1,n))}function pp(r,t,e,n){return Ln(r,t,5,ne(r,t+1,n))}function mp(r,t,e,n){let o=oe(r,t+1,n);if(typeof o=="bigint")throw new Error(`${M} 64-bit integer map lengths not supported`);return Ln(r,t,9,o)}function gp(r,t,e,n){if(n.allowIndefinite===!1)throw new Error(`${M} indefinite length items not allowed`);return Ln(r,t,1,1/0)}function $i(r,t){Pt(r,p.map.majorEncoded,t.value)}$i.compareTokens=ae.compareTokens;$i.encodedSize=function(t){return Pt.encodedSize(t.value)};function yp(r,t,e,n){return new I(p.tag,e,1)}function wp(r,t,e,n){return new I(p.tag,ee(r,t+1,n),2)}function xp(r,t,e,n){return new I(p.tag,re(r,t+1,n),3)}function bp(r,t,e,n){return new I(p.tag,ne(r,t+1,n),5)}function vp(r,t,e,n){return new I(p.tag,oe(r,t+1,n),9)}function Mi(r,t){Pt(r,p.tag.majorEncoded,t.value)}Mi.compareTokens=ae.compareTokens;Mi.encodedSize=function(t){return Pt.encodedSize(t.value)};var vx=20,Ex=21,Sx=22,Ax=23;function Ep(r,t,e,n){if(n.allowUndefined===!1)throw new Error(`${M} undefined values are not supported`);return n.coerceUndefinedToNull===!0?new I(p.null,null,1):new I(p.undefined,void 0,1)}function Sp(r,t,e,n){if(n.allowIndefinite===!1)throw new Error(`${M} indefinite length items not allowed`);return new I(p.break,void 0,1)}function wu(r,t,e){if(e){if(e.allowNaN===!1&&Number.isNaN(r))throw new Error(`${M} NaN values are not supported`);if(e.allowInfinity===!1&&(r===1/0||r===-1/0))throw new Error(`${M} Infinity values are not supported`)}return new I(p.float,r,t)}function Ap(r,t,e,n){return wu(xu(r,t+1),3,n)}function Bp(r,t,e,n){return wu(bu(r,t+1),5,n)}function kp(r,t,e,n){return wu(Cp(r,t+1),9,n)}function Vi(r,t,e){let n=t.value;if(n===!1)r.push([p.float.majorEncoded|vx]);else if(n===!0)r.push([p.float.majorEncoded|Ex]);else if(n===null)r.push([p.float.majorEncoded|Sx]);else if(n===void 0)r.push([p.float.majorEncoded|Ax]);else{let o,s=!1;(!e||e.float64!==!0)&&(_p(n),o=xu(ve,1),n===o||Number.isNaN(n)?(ve[0]=249,r.push(ve.slice(0,3)),s=!0):(Tp(n),o=bu(ve,1),n===o&&(ve[0]=250,r.push(ve.slice(0,5)),s=!0))),s||(Bx(n),o=Cp(ve,1),ve[0]=251,r.push(ve.slice(0,9)))}}Vi.encodedSize=function(t,e){let n=t.value;if(n===!1||n===!0||n===null||n===void 0)return 1;if(!e||e.float64!==!0){_p(n);let o=xu(ve,1);if(n===o||Number.isNaN(n))return 3;if(Tp(n),o=bu(ve,1),n===o)return 5}return 9};var Ip=new ArrayBuffer(9),ce=new DataView(Ip,1),ve=new Uint8Array(Ip,0);function _p(r){if(r===1/0)ce.setUint16(0,31744,!1);else if(r===-1/0)ce.setUint16(0,64512,!1);else if(Number.isNaN(r))ce.setUint16(0,32256,!1);else{ce.setFloat32(0,r);let t=ce.getUint32(0),e=(t&2139095040)>>23,n=t&8388607;if(e===255)ce.setUint16(0,31744,!1);else if(e===0)ce.setUint16(0,(r&2147483648)>>16|n>>13,!1);else{let o=e-127;o<-24?ce.setUint16(0,0):o<-14?ce.setUint16(0,(t&2147483648)>>16|1<<24+o,!1):ce.setUint16(0,(t&2147483648)>>16|o+15<<10|n>>13,!1)}}}function xu(r,t){if(r.length-t<2)throw new Error(`${M} not enough data for float16`);let e=(r[t]<<8)+r[t+1];if(e===31744)return 1/0;if(e===64512)return-1/0;if(e===32256)return NaN;let n=e>>10&31,o=e&1023,s;return n===0?s=o*2**-24:n!==31?s=(o+1024)*2**(n-25):s=o===0?1/0:NaN,e&32768?-s:s}function Tp(r){ce.setFloat32(0,r,!1)}function bu(r,t){if(r.length-t<4)throw new Error(`${M} not enough data for float32`);let e=(r.byteOffset||0)+t;return new DataView(r.buffer,e,4).getFloat32(0,!1)}function Bx(r){ce.setFloat64(0,r,!1)}function Cp(r,t){if(r.length-t<8)throw new Error(`${M} not enough data for float64`);let e=(r.byteOffset||0)+t;return new DataView(r.buffer,e,8).getFloat64(0,!1)}Vi.compareTokens=ae.compareTokens;function Q(r,t,e){throw new Error(`${M} encountered invalid minor (${e}) for major ${r[t]>>>5}`)}function Oi(r){return()=>{throw new Error(`${M} ${r}`)}}var R=[];for(let r=0;r<=23;r++)R[r]=Q;R[24]=Md;R[25]=Vd;R[26]=Od;R[27]=Hd;R[28]=Q;R[29]=Q;R[30]=Q;R[31]=Q;for(let r=32;r<=55;r++)R[r]=Q;R[56]=zd;R[57]=Kd;R[58]=qd;R[59]=Gd;R[60]=Q;R[61]=Q;R[62]=Q;R[63]=Q;for(let r=64;r<=87;r++)R[r]=Wd;R[88]=Zd;R[89]=Yd;R[90]=Jd;R[91]=Xd;R[92]=Q;R[93]=Q;R[94]=Q;R[95]=Oi("indefinite length bytes/strings are not supported");for(let r=96;r<=119;r++)R[r]=Qd;R[120]=tp;R[121]=ep;R[122]=rp;R[123]=np;R[124]=Q;R[125]=Q;R[126]=Q;R[127]=Oi("indefinite length bytes/strings are not supported");for(let r=128;r<=151;r++)R[r]=sp;R[152]=ip;R[153]=ap;R[154]=cp;R[155]=up;R[156]=Q;R[157]=Q;R[158]=Q;R[159]=lp;for(let r=160;r<=183;r++)R[r]=fp;R[184]=hp;R[185]=dp;R[186]=pp;R[187]=mp;R[188]=Q;R[189]=Q;R[190]=Q;R[191]=gp;for(let r=192;r<=215;r++)R[r]=yp;R[216]=wp;R[217]=xp;R[218]=bp;R[219]=vp;R[220]=Q;R[221]=Q;R[222]=Q;R[223]=Q;for(let r=224;r<=243;r++)R[r]=Oi("simple values are not supported");R[244]=Q;R[245]=Q;R[246]=Q;R[247]=Ep;R[248]=Oi("simple values are not supported");R[249]=Ap;R[250]=Bp;R[251]=kp;R[252]=Q;R[253]=Q;R[254]=Q;R[255]=Sp;var Ee=[];for(let r=0;r<24;r++)Ee[r]=new I(p.uint,r,1);for(let r=-1;r>=-24;r--)Ee[31-r]=new I(p.negint,r,1);Ee[64]=new I(p.bytes,new Uint8Array(0),1);Ee[96]=new I(p.string,"",1);Ee[128]=new I(p.array,0,1);Ee[160]=new I(p.map,0,1);Ee[244]=new I(p.false,!1,1);Ee[245]=new I(p.true,!0,1);Ee[246]=new I(p.null,null,1);function Np(r){switch(r.type){case p.false:return De([244]);case p.true:return De([245]);case p.null:return De([246]);case p.bytes:return r.value.length?void 0:De([64]);case p.string:return r.value===""?De([96]):void 0;case p.array:return r.value===0?De([128]):void 0;case p.map:return r.value===0?De([160]):void 0;case p.uint:return r.value<24?De([Number(r.value)]):void 0;case p.negint:if(r.value>=-24)return De([31-Number(r.value)])}}var Ix={float64:!1,mapSorter:Cx,quickEncodeToken:Np};function _x(){let r=[];return r[p.uint.major]=ae,r[p.negint.major]=Ui,r[p.bytes.major]=Nn,r[p.string.major]=op,r[p.array.major]=Fi,r[p.map.major]=$i,r[p.tag.major]=Mi,r[p.float.major]=Vi,r}var Pp=_x(),vu=new Po,zi=class r{constructor(t,e){this.obj=t,this.parent=e}includes(t){let e=this;do if(e.obj===t)return!0;while(e=e.parent);return!1}static createCheck(t,e){if(t&&t.includes(e))throw new Error(`${tr} object contains circular references`);return new r(e,t)}},Br={null:new I(p.null,null),undefined:new I(p.undefined,void 0),true:new I(p.true,!0),false:new I(p.false,!1),emptyArray:new I(p.array,0),emptyMap:new I(p.map,0)},kr={number(r,t,e,n){return!Number.isInteger(r)||!Number.isSafeInteger(r)?new I(p.float,r):r>=0?new I(p.uint,r):new I(p.negint,r)},bigint(r,t,e,n){return r>=BigInt(0)?new I(p.uint,r):new I(p.negint,r)},Uint8Array(r,t,e,n){return new I(p.bytes,r)},string(r,t,e,n){return new I(p.string,r)},boolean(r,t,e,n){return r?Br.true:Br.false},null(r,t,e,n){return Br.null},undefined(r,t,e,n){return Br.undefined},ArrayBuffer(r,t,e,n){return new I(p.bytes,new Uint8Array(r))},DataView(r,t,e,n){return new I(p.bytes,new Uint8Array(r.buffer,r.byteOffset,r.byteLength))},Array(r,t,e,n){if(!r.length)return e.addBreakTokens===!0?[Br.emptyArray,new I(p.break)]:Br.emptyArray;n=zi.createCheck(n,r);let o=[],s=0;for(let i of r)o[s++]=Hi(i,e,n);return e.addBreakTokens?[new I(p.array,r.length),o,new I(p.break)]:[new I(p.array,r.length),o]},Object(r,t,e,n){let o=t!=="Object",s=o?r.keys():Object.keys(r),i=o?r.size:s.length;if(!i)return e.addBreakTokens===!0?[Br.emptyMap,new I(p.break)]:Br.emptyMap;n=zi.createCheck(n,r);let a=[],c=0;for(let u of s)a[c++]=[Hi(u,e,n),Hi(o?r.get(u):r[u],e,n)];return Tx(a,e),e.addBreakTokens?[new I(p.map,i),a,new I(p.break)]:[new I(p.map,i),a]}};kr.Map=kr.Object;kr.Buffer=kr.Uint8Array;for(let r of"Uint8Clamped Uint16 Uint32 Int8 Int16 Int32 BigUint64 BigInt64 Float32 Float64".split(" "))kr[`${r}Array`]=kr.DataView;function Hi(r,t={},e){let n=Nd(r),o=t&&t.typeEncoders&&t.typeEncoders[n]||kr[n];if(typeof o=="function"){let i=o(r,n,t,e);if(i!=null)return i}let s=kr[n];if(!s)throw new Error(`${tr} unsupported type: ${n}`);return s(r,n,t,e)}function Tx(r,t){t.mapSorter&&r.sort(t.mapSorter)}function Cx(r,t){let e=Array.isArray(r[0])?r[0][0]:r[0],n=Array.isArray(t[0])?t[0][0]:t[0];if(e.type!==n.type)return e.type.compare(n.type);let o=e.type.major,s=Pp[o].compareTokens(e,n);return s===0&&console.warn("WARNING: complex key types used, CBOR key sorting guarantees are gone"),s}function Lp(r,t,e,n){if(Array.isArray(t))for(let o of t)Lp(r,o,e,n);else e[t.type.major](r,t,n)}function Eu(r,t,e){let n=Hi(r,e);if(!Array.isArray(n)&&e.quickEncodeToken){let o=e.quickEncodeToken(n);if(o)return o;let s=t[n.type.major];if(s.encodedSize){let i=s.encodedSize(n,e),a=new Po(i);if(s(a,n,e),a.chunks.length!==1)throw new Error(`Unexpected error: pre-calculated length for ${n} was wrong`);return No(a.chunks[0])}}return vu.reset(),Lp(vu,n,t,e),vu.toBytes(!0)}function Ir(r,t){return t=Object.assign({},Ix,t),Eu(r,Pp,t)}var Nx={strict:!1,allowIndefinite:!0,allowUndefined:!0,allowBigInt:!0},Ki=class{constructor(t,e={}){this._pos=0,this.data=t,this.options=e}pos(){return this._pos}done(){return this._pos>=this.data.length}next(){let t=this.data[this._pos],e=Ee[t];if(e===void 0){let n=R[t];if(!n)throw new Error(`${M} no decoder for major type ${t>>>5} (byte 0x${t.toString(16).padStart(2,"0")})`);let o=t&31;e=n(this.data,this._pos,o,this.options)}return this._pos+=e.encodedLength,e}},Do=Symbol.for("DONE"),qi=Symbol.for("BREAK");function Px(r,t,e){let n=[];for(let o=0;o<r.value;o++){let s=Rn(t,e);if(s===qi){if(r.value===1/0)break;throw new Error(`${M} got unexpected break to lengthed array`)}if(s===Do)throw new Error(`${M} found array but not enough entries (got ${o}, expected ${r.value})`);n[o]=s}return n}function Lx(r,t,e){let n=e.useMaps===!0,o=n?void 0:{},s=n?new Map:void 0;for(let i=0;i<r.value;i++){let a=Rn(t,e);if(a===qi){if(r.value===1/0)break;throw new Error(`${M} got unexpected break to lengthed map`)}if(a===Do)throw new Error(`${M} found map but not enough entries (got ${i} [no key], expected ${r.value})`);if(n!==!0&&typeof a!="string")throw new Error(`${M} non-string keys not supported (got ${typeof a})`);if(e.rejectDuplicateMapKeys===!0&&(n&&s.has(a)||!n&&a in o))throw new Error(`${M} found repeat map key "${a}"`);let c=Rn(t,e);if(c===Do)throw new Error(`${M} found map but not enough entries (got ${i} [no value], expected ${r.value})`);n?s.set(a,c):o[a]=c}return n?s:o}function Rn(r,t){if(r.done())return Do;let e=r.next();if(e.type===p.break)return qi;if(e.type.terminal)return e.value;if(e.type===p.array)return Px(e,r,t);if(e.type===p.map)return Lx(e,r,t);if(e.type===p.tag){if(t.tags&&typeof t.tags[e.value]=="function"){let n=Rn(r,t);return t.tags[e.value](n)}throw new Error(`${M} tag not supported (${e.value})`)}throw new Error("unsupported")}function Su(r,t){if(!(r instanceof Uint8Array))throw new Error(`${M} data to decode must be a Uint8Array`);t=Object.assign({},Nx,t);let e=t.tokenizer||new Ki(r,t),n=Rn(e,t);if(n===Do)throw new Error(`${M} did not find any content to decode`);if(n===qi)throw new Error(`${M} got unexpected break`);return[n,r.subarray(e.pos())]}function se(r,t){let[e,n]=Su(r,t);if(n.length>0)throw new Error(`${M} too many terminals, data makes no sense`);return e}var rr="/",Rp=new TextEncoder().encode(rr),ji=Rp[0],$t=class r{_buf;constructor(t,e){if(typeof t=="string")this._buf=z(t);else if(t instanceof Uint8Array)this._buf=t;else throw new Error("Invalid key, should be String of Uint8Array");if(e==null&&(e=!0),e&&this.clean(),this._buf.byteLength===0||this._buf[0]!==ji)throw new Error("Invalid key")}toString(t="utf8"){return nt(this._buf,t)}uint8Array(){return this._buf}get[Symbol.toStringTag](){return`Key(${this.toString()})`}static withNamespaces(t){return new r(t.join(rr))}static random(){return new r(Math.random().toString().substring(2))}static asKey(t){return t instanceof Uint8Array||typeof t=="string"?new r(t):typeof t.uint8Array=="function"?new r(t.uint8Array()):null}clean(){if((this._buf==null||this._buf.byteLength===0)&&(this._buf=Rp),this._buf[0]!==ji){let t=new Uint8Array(this._buf.byteLength+1);t.fill(ji,0,1),t.set(this._buf,1),this._buf=t}for(;this._buf.byteLength>1&&this._buf[this._buf.byteLength-1]===ji;)this._buf=this._buf.subarray(0,-1)}less(t){let e=this.list(),n=t.list();for(let o=0;o<e.length;o++){if(n.length<o+1)return!1;let s=e[o],i=n[o];if(s<i)return!0;if(s>i)return!1}return e.length<n.length}reverse(){return r.withNamespaces(this.list().slice().reverse())}namespaces(){return this.list()}baseNamespace(){let t=this.namespaces();return t[t.length-1]}list(){return this.toString().split(rr).slice(1)}type(){return Rx(this.baseNamespace())}name(){return Ux(this.baseNamespace())}instance(t){return new r(this.toString()+":"+t)}path(){let t=this.parent().toString();return t.endsWith(rr)||(t+=rr),t+=this.type(),new r(t)}parent(){let t=this.list();return t.length===1?new r(rr):new r(t.slice(0,-1).join(rr))}child(t){return this.toString()===rr?t:t.toString()===rr?this:new r(this.toString()+t.toString(),!1)}isAncestorOf(t){return t.toString()===this.toString()?!1:t.toString().startsWith(this.toString())}isDecendantOf(t){return t.toString()===this.toString()?!1:this.toString().startsWith(t.toString())}isTopLevel(){return this.list().length===1}concat(...t){return r.withNamespaces([...this.namespaces(),...Dx(t.map(e=>e.namespaces()))])}};function Rx(r){let t=r.split(":");return t.length<2?"":t.slice(0,-1).join(":")}function Ux(r){let t=r.split(":");return t[t.length-1]}function Dx(r){return[].concat(...r)}function Gi({enumerable:r=!0,configurable:t=!1}={}){return{enumerable:r,configurable:t,writable:!1}}function*Fx(r,t){if(t!=null&&typeof t=="object")if(Array.isArray(t))for(let[e,n]of t.entries()){let o=[...r,e],s=O.asCID(n);s!=null?yield[o.join("/"),s]:typeof n=="object"&&(yield*Bu(n,o))}else{let e=O.asCID(t);e!=null?yield[r.join("/"),e]:yield*Bu(t,r)}}function*Bu(r,t){if(r==null||r instanceof Uint8Array)return;let e=O.asCID(r);e!=null&&(yield[t.join("/"),e]);for(let[n,o]of Object.entries(r)){let s=[...t,n];yield*Fx(s,o)}}function*$x(r,t){if(Array.isArray(t))for(let[e,n]of t.entries()){let o=[...r,e];yield o.join("/"),typeof n=="object"&&O.asCID(n)==null&&(yield*ku(n,o))}else yield*ku(t,r)}function*ku(r,t){if(!(r==null||typeof r!="object"))for(let[e,n]of Object.entries(r)){let o=[...t,e];yield o.join("/"),n!=null&&!(n instanceof Uint8Array)&&typeof n=="object"&&O.asCID(n)==null&&(yield*$x(o,n))}}function Mx(r,t){let e=r;for(let[n,o]of t.entries()){if(e=e[o],e==null)throw new Error(`Object has no property at ${t.slice(0,n+1).map(i=>`[${JSON.stringify(i)}]`).join("")}`);let s=O.asCID(e);if(s!=null)return{value:s,remaining:t.slice(n+1).join("/")}}return{value:e}}var Iu=class{cid;bytes;value;asBlock;constructor({cid:t,bytes:e,value:n}){if(t==null||e==null||typeof n>"u")throw new Error("Missing required argument");this.cid=t,this.bytes=e,this.value=n,this.asBlock=this,Object.defineProperties(this,{cid:Gi(),bytes:Gi(),value:Gi(),asBlock:Gi()})}links(){return Bu(this.value,[])}tree(){return ku(this.value,[])}get(t="/"){return Mx(this.value,t.split("/").filter(Boolean))}};function Up({bytes:r,cid:t,value:e,codec:n}){let o=e!==void 0?e:n?.decode(r);if(o===void 0)throw new Error('Missing required argument, must either provide "value" or "codec"');return new Iu({cid:t,bytes:r,value:o})}var $p="/pin/",Dp="/pinned-block/",_u=_e,Fp=1;function Wi(r){return r.version===0&&(r=r.toV1()),new $t(`${$p}${r.toString(_u)}`)}var Zi=class{datastore;blockstore;getCodec;constructor(t,e,n){this.datastore=t,this.blockstore=e,this.getCodec=n}async*add(t,e={}){let n=Wi(t);if(await this.datastore.has(n))throw new Error("Already pinned");let o=Math.round(e.depth??1/0);if(o<0)throw new Error("Depth must be greater than or equal to 0");let s=new Ve({concurrency:Fp});for await(let a of this.#t(t,s,{...e,depth:o}))await this.#e(a,c=>c.pinnedBy.find(u=>st(u,t.bytes))!=null?!1:(c.pinCount++,c.pinnedBy.push(t.bytes),!0),e),yield a;let i={depth:o,metadata:e.metadata??{}};await this.datastore.put(n,Ir(i),e)}async*#t(t,e,n){if(n.depth===-1)return;let o=await this.getCodec(t.code),s=await this.blockstore.get(t,n),i=Up({bytes:s,cid:t,codec:o});yield t;for await(let[,a]of i.links())yield*await e.add(async()=>this.#t(a,e,{...n,depth:n.depth-1}))}async#e(t,e,n){let o=new $t(`${Dp}${_u.encode(t.multihash.bytes)}`),s={pinCount:0,pinnedBy:[]};try{s=se(await this.datastore.get(o,n))}catch(a){if(a.name!=="NotFoundError")throw a}if(e(s)){if(s.pinCount===0&&await this.datastore.has(o)){await this.datastore.delete(o);return}await this.datastore.put(o,Ir(s),n),n.onProgress?.(new tt("helia:pin:add",t))}}async*rm(t,e={}){let n=Wi(t),o=await this.datastore.get(n,e),s=se(o);await this.datastore.delete(n,e);let i=new Ve({concurrency:Fp});for await(let a of this.#t(t,i,{...e,depth:s.depth}))await this.#e(a,c=>(c.pinCount--,c.pinnedBy=c.pinnedBy.filter(u=>st(u,t.bytes)),!0),{...e,depth:s.depth}),yield a}async*ls(t={}){for await(let{key:e,value:n}of this.datastore.query({prefix:$p+(t.cid!=null?`${t.cid.toString(_e)}`:"")},t)){let o=O.parse(e.toString().substring(5),_e),s=se(n);yield{cid:o,...s}}}async isPinned(t,e={}){let n=new $t(`${Dp}${_u.encode(t.multihash.bytes)}`);return this.datastore.has(n,e)}async get(t,e){let n=Wi(t),o=await this.datastore.get(n,e);return se(o)}async setMetadata(t,e,n){let o=Wi(t),s=await this.datastore.get(o,n),i=se(s);i.metadata=e??{},await this.datastore.put(o,Ir(i),n)}};var Tu=1,Cu=5;var Fo=class extends Error{static name="InsufficientProvidersError";constructor(t="Insufficient providers found"){super(t),this.name="InsufficientProvidersError"}},_r=class extends Error{static name="NoRoutersAvailableError";constructor(t="No routers available"){super(t),this.name="NoRoutersAvailableError"}},$o=class extends Error{static name="UnknownHashAlgorithmError";constructor(t="Unknown hash algorithm"){super(t),this.name="UnknownHashAlgorithmError"}},Mo=class extends Error{static name="UnknownCodecError";constructor(t="Unknown codec"){super(t),this.name="UnknownCodecError"}};var Vx=5,Yi=class{log;routers;providerLookupConcurrency;constructor(t,e){this.log=t.logger.forComponent("helia:routing"),this.routers=e.routers??[],this.providerLookupConcurrency=e.providerLookupConcurrency??Vx}async start(){await ur(...this.routers)}async stop(){await lr(...this.routers)}async*findProviders(t,e={}){if(this.routers.length===0)throw new _r("No content routers available");let n=new ss({concurrency:this.providerLookupConcurrency});n.addEventListener("error",()=>{});for await(let o of Fr(n.toGenerator(),...Un(this.routers,"findProviders").map(s=>s.findProviders(t,e))))if(o!=null){if(o.multiaddrs.length===0){if(n.find(o.id)!=null)continue;n.add(async()=>{try{let s=await this.findPeer(o.id,e);return s.multiaddrs.length===0?null:s}catch(s){return this.log.error("could not load multiaddrs for peer %p",o.id,s),null}},{peerId:o.id,signal:e.signal}).catch(s=>{this.log.error("could not load multiaddrs for peer %p",o.id,s)})}yield o}}async provide(t,e={}){if(this.routers.length===0)throw new _r("No content routers available");await Promise.all(Un(this.routers,"provide").map(async n=>{await n.provide(t,e)}))}async put(t,e,n){await Promise.all(Un(this.routers,"put").map(async o=>{await o.put(t,e,n)}))}async get(t,e){return Promise.any(Un(this.routers,"get").map(async n=>n.get(t,e)))}async findPeer(t,e){if(this.routers.length===0)throw new _r("No peer routers available");let n=this,o=Fr(...Un(this.routers,"findPeer").map(s=>async function*(){try{yield await s.findPeer(t,e)}catch(i){n.log.error(i)}}()));for await(let s of o)if(s!=null)return s;throw new Lt("Could not find peer in routing")}async*getClosestPeers(t,e={}){if(this.routers.length===0)throw new _r("No peer routers available");for await(let n of Fr(...Un(this.routers,"getClosestPeers").map(o=>o.getClosestPeers(t,e))))n!=null&&(yield n)}};function Un(r,t){return r.filter(e=>e[t]!=null)}var Tr={},Dn=r=>{r.addEventListener("message",t=>{Dn.dispatchEvent("message",r,t)}),r.port!=null&&r.port.addEventListener("message",t=>{Dn.dispatchEvent("message",r,t)})};Dn.addEventListener=(r,t)=>{Tr[r]==null&&(Tr[r]=[]),Tr[r].push(t)};Dn.removeEventListener=(r,t)=>{Tr[r]!=null&&(Tr[r]=Tr[r].filter(e=>e===t))};Dn.dispatchEvent=function(r,t,e){Tr[r]!=null&&Tr[r].forEach(n=>n(t,e))};var Nu=Dn;var Pu="lock:worker:request-read",Lu="lock:worker:release-read",Ru="lock:master:grant-read",Uu="lock:worker:request-write",Du="lock:worker:release-write",Fu="lock:master:grant-write";var Mp=(r=21)=>Math.random().toString().substring(2);var Vp=(r,t,e,n,o)=>(s,i)=>{if(i.data.type!==e)return;let a={type:i.data.type,name:i.data.name,identifier:i.data.identifier};r.dispatchEvent(new MessageEvent(t,{data:{name:a.name,handler:async()=>{s.postMessage({type:o,name:a.name,identifier:a.identifier}),await new Promise(c=>{let u=l=>{if(l?.data==null)return;let f={type:l.data.type,name:l.data.name,identifier:l.data.identifier};f.type===n&&f.identifier===a.identifier&&(s.removeEventListener("message",u),c())};s.addEventListener("message",u)})}}}))},Op=(r,t,e,n)=>async()=>{let o=Mp();return globalThis.postMessage({type:t,identifier:o,name:r}),new Promise(s=>{let i=a=>{if(a?.data==null)return;let c={type:a.data.type,identifier:a.data.identifier};c.type===e&&c.identifier===o&&(globalThis.removeEventListener("message",i),s(()=>{globalThis.postMessage({type:n,identifier:o,name:r})}))};globalThis.addEventListener("message",i)})},Ox={singleProcess:!1},Hp=r=>{if(r=Object.assign({},Ox,r),!!globalThis.document||r.singleProcess){let e=new EventTarget;return Nu.addEventListener("message",Vp(e,"requestReadLock",Pu,Lu,Ru)),Nu.addEventListener("message",Vp(e,"requestWriteLock",Uu,Du,Fu)),e}return{isWorker:!0,readLock:e=>Op(e,Pu,Ru,Lu),writeLock:e=>Op(e,Uu,Fu,Du)}};var Jr={},Cr;async function $u(r,t){let e,n=new Promise(o=>{e=o});return r.add(async()=>To((async()=>{await new Promise(o=>{e(()=>{o()})})})(),{milliseconds:t.timeout})),n}var Hx=(r,t)=>{if(Cr.isWorker===!0)return{readLock:Cr.readLock(r,t),writeLock:Cr.writeLock(r,t)};let e=new Ue({concurrency:1}),n;return{async readLock(){if(n!=null)return $u(n,t);n=new Ue({concurrency:t.concurrency,autoStart:!1});let o=n,s=$u(n,t);return e.add(async()=>{o.start(),await o.onIdle().then(()=>{n===o&&(n=null)})}),s},async writeLock(){return n=null,$u(e,t)}}},zx={name:"lock",concurrency:1/0,timeout:846e5,singleProcess:!1};function Mu(r){let t=Object.assign({},zx,r);return Cr==null&&(Cr=Hp(t),Cr.isWorker!==!0&&(Cr.addEventListener("requestReadLock",e=>{Jr[e.data.name]!=null&&Jr[e.data.name].readLock().then(async n=>e.data.handler().finally(()=>{n()}))}),Cr.addEventListener("requestWriteLock",async e=>{Jr[e.data.name]!=null&&Jr[e.data.name].writeLock().then(async n=>e.data.handler().finally(()=>{n()}))}))),Jr[t.name]==null&&(Jr[t.name]=Hx(t.name,t)),Jr[t.name]}var Ji=class{lock;child;pins;started;constructor(t,e,n={}){this.child=t,this.pins=e,this.lock=Mu({singleProcess:n.holdGcLock}),this.started=!1}isStarted(){return this.started}async start(){await ur(this.child),this.started=!0}async stop(){await lr(this.child),this.started=!1}unwrap(){return this.child}async put(t,e,n={}){n?.signal?.throwIfAborted();let o=await this.lock.readLock();try{return await this.child.put(t,e,n)}finally{o()}}async*putMany(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{yield*this.child.putMany(t,e)}finally{n()}}async get(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{return await this.child.get(t,e)}finally{n()}}async*getMany(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{yield*this.child.getMany(t,e)}finally{n()}}async delete(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.writeLock();try{if(await this.pins.isPinned(t))throw new Error("CID was pinned");await this.child.delete(t,e)}finally{n()}}async*deleteMany(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.writeLock();try{let o=this;yield*this.child.deleteMany(async function*(){for await(let s of t){if(await o.pins.isPinned(s))throw new Error("CID was pinned");yield s}}(),e)}finally{n()}}async has(t,e={}){e?.signal?.throwIfAborted();let n=await this.lock.readLock();try{return await this.child.has(t,e)}finally{n()}}async*getAll(t={}){t?.signal?.throwIfAborted();let e=await this.lock.readLock();try{yield*this.child.getAll(t)}finally{e()}}createSession(t,e){return e?.signal?.throwIfAborted(),this.child.createSession(t,e)}};var Vu=new $t("/version"),zp=1;async function Kp(r){if(!await r.has(Vu)){await r.put(Vu,z(`${zp}`));return}let t=await r.get(Vu),e=nt(t);if(parseInt(e,10)!==zp)throw new Error("Unknown datastore version, a datastore migration may be required")}var zu={};gt(zu,{code:()=>Hu,decode:()=>Xx,decodeOptions:()=>Zx,encode:()=>Jx,encodeOptions:()=>Gx,name:()=>Yx,toByteView:()=>jp});var qp=42;function jp(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}function Kx(r){if(r.asCID!==r&&r["/"]!==r.bytes)return null;let t=O.asCID(r);if(!t)return null;let e=new Uint8Array(t.bytes.byteLength+1);return e.set(t.bytes,1),[new I(p.tag,qp),new I(p.bytes,e)]}function qx(){throw new Error("`undefined` is not supported by the IPLD Data Model and cannot be encoded")}function jx(r){if(Number.isNaN(r))throw new Error("`NaN` is not supported by the IPLD Data Model and cannot be encoded");if(r===1/0||r===-1/0)throw new Error("`Infinity` and `-Infinity` is not supported by the IPLD Data Model and cannot be encoded");return null}var Ou={float64:!0,typeEncoders:{Object:Kx,undefined:qx,number:jx}},Gx={...Ou,typeEncoders:{...Ou.typeEncoders}};function Wx(r){if(r[0]!==0)throw new Error("Invalid CID for CBOR tag 42; expected leading 0x00");return O.decode(r.subarray(1))}var Xi={allowIndefinite:!1,coerceUndefinedToNull:!0,allowNaN:!1,allowInfinity:!1,allowBigInt:!0,strict:!0,useMaps:!1,rejectDuplicateMapKeys:!0,tags:[]};Xi.tags[qp]=Wx;var Zx={...Xi,tags:Xi.tags.slice()},Yx="dag-cbor",Hu=113,Jx=r=>Ir(r,Ou),Xx=r=>se(jp(r),Xi);var Yu={};gt(Yu,{code:()=>Zu,decode:()=>Wp,encode:()=>Gp,format:()=>u1,name:()=>c1,parse:()=>f1,stringify:()=>u1});var Ku=class extends Array{constructor(){super(),this.inRecursive=[]}prefix(t){let e=this.inRecursive[this.inRecursive.length-1];e&&(e.type===p.array&&(e.elements++,e.elements!==1&&t.push([44])),e.type===p.map&&(e.elements++,e.elements!==1&&(e.elements%2===1?t.push([44]):t.push([58]))))}[p.uint.major](t,e){this.prefix(t);let n=String(e.value),o=[];for(let s=0;s<n.length;s++)o[s]=n.charCodeAt(s);t.push(o)}[p.negint.major](t,e){this[p.uint.major](t,e)}[p.bytes.major](t,e){throw new Error(`${tr} unsupported type: Uint8Array`)}[p.string.major](t,e){this.prefix(t);let n=Ri(JSON.stringify(e.value));t.push(n.length>32?No(n):n)}[p.array.major](t,e){this.prefix(t),this.inRecursive.push({type:p.array,elements:0}),t.push([91])}[p.map.major](t,e){this.prefix(t),this.inRecursive.push({type:p.map,elements:0}),t.push([123])}[p.tag.major](t,e){}[p.float.major](t,e){if(e.type.name==="break"){let i=this.inRecursive.pop();if(i){if(i.type===p.array)t.push([93]);else if(i.type===p.map)t.push([125]);else throw new Error("Unexpected recursive type; this should not happen!");return}throw new Error("Unexpected break; this should not happen!")}if(e.value===void 0)throw new Error(`${tr} unsupported type: undefined`);if(this.prefix(t),e.type.name==="true"){t.push([116,114,117,101]);return}else if(e.type.name==="false"){t.push([102,97,108,115,101]);return}else if(e.type.name==="null"){t.push([110,117,108,108]);return}let n=String(e.value),o=[],s=!1;for(let i=0;i<n.length;i++)o[i]=n.charCodeAt(i),!s&&(o[i]===46||o[i]===101||o[i]===69)&&(s=!0);s||(o.push(46),o.push(48)),t.push(o)}};function Qx(r,t){if(Array.isArray(r[0])||Array.isArray(t[0]))throw new Error(`${tr} complex map keys are not supported`);let e=r[0],n=t[0];if(e.type!==p.string||n.type!==p.string)throw new Error(`${tr} non-string map keys are not supported`);if(e<n)return-1;if(e>n)return 1;throw new Error(`${tr} unexpected duplicate map keys, this is not supported`)}var t1={addBreakTokens:!0,mapSorter:Qx};function qu(r,t){return t=Object.assign({},t1,t),Eu(r,new Ku,t)}var Fn=class{constructor(t,e={}){this._pos=0,this.data=t,this.options=e,this.modeStack=["value"],this.lastToken=""}pos(){return this._pos}done(){return this._pos>=this.data.length}ch(){return this.data[this._pos]}currentMode(){return this.modeStack[this.modeStack.length-1]}skipWhitespace(){let t=this.ch();for(;t===32||t===9||t===13||t===10;)t=this.data[++this._pos]}expect(t){if(this.data.length-this._pos<t.length)throw new Error(`${M} unexpected end of input at position ${this._pos}`);for(let e=0;e<t.length;e++)if(this.data[this._pos++]!==t[e])throw new Error(`${M} unexpected token at position ${this._pos}, expected to find '${String.fromCharCode(...t)}'`)}parseNumber(){let t=this._pos,e=!1,n=!1,o=a=>{for(;!this.done();){let c=this.ch();if(a.includes(c))this._pos++;else break}};if(this.ch()===45&&(e=!0,this._pos++),this.ch()===48)if(this._pos++,this.ch()===46)this._pos++,n=!0;else return new I(p.uint,0,this._pos-t);if(o([48,49,50,51,52,53,54,55,56,57]),e&&this._pos===t+1)throw new Error(`${M} unexpected token at position ${this._pos}`);if(!this.done()&&this.ch()===46){if(n)throw new Error(`${M} unexpected token at position ${this._pos}`);n=!0,this._pos++,o([48,49,50,51,52,53,54,55,56,57])}!this.done()&&(this.ch()===101||this.ch()===69)&&(n=!0,this._pos++,!this.done()&&(this.ch()===43||this.ch()===45)&&this._pos++,o([48,49,50,51,52,53,54,55,56,57]));let s=String.fromCharCode.apply(null,this.data.subarray(t,this._pos)),i=parseFloat(s);return n?new I(p.float,i,this._pos-t):this.options.allowBigInt!==!0||Number.isSafeInteger(i)?new I(i>=0?p.uint:p.negint,i,this._pos-t):new I(i>=0?p.uint:p.negint,BigInt(s),this._pos-t)}parseString(){if(this.ch()!==34)throw new Error(`${M} unexpected character at position ${this._pos}; this shouldn't happen`);this._pos++;for(let s=this._pos,i=0;s<this.data.length&&i<65536;s++,i++){let a=this.data[s];if(a===92||a<32||a>=128)break;if(a===34){let c=String.fromCharCode.apply(null,this.data.subarray(this._pos,s));return this._pos=s+1,new I(p.string,c,i)}}let t=this._pos,e=[],n=()=>{if(this._pos+4>=this.data.length)throw new Error(`${M} unexpected end of unicode escape sequence at position ${this._pos}`);let s=0;for(let i=0;i<4;i++){let a=this.ch();if(a>=48&&a<=57)a-=48;else if(a>=97&&a<=102)a=a-97+10;else if(a>=65&&a<=70)a=a-65+10;else throw new Error(`${M} unexpected unicode escape character at position ${this._pos}`);s=s*16+a,this._pos++}return s},o=()=>{let s=this.ch(),i=null,a=s>239?4:s>223?3:s>191?2:1;if(this._pos+a>this.data.length)throw new Error(`${M} unexpected unicode sequence at position ${this._pos}`);let c,u,l,f;switch(a){case 1:s<128&&(i=s);break;case 2:c=this.data[this._pos+1],(c&192)===128&&(f=(s&31)<<6|c&63,f>127&&(i=f));break;case 3:c=this.data[this._pos+1],u=this.data[this._pos+2],(c&192)===128&&(u&192)===128&&(f=(s&15)<<12|(c&63)<<6|u&63,f>2047&&(f<55296||f>57343)&&(i=f));break;case 4:c=this.data[this._pos+1],u=this.data[this._pos+2],l=this.data[this._pos+3],(c&192)===128&&(u&192)===128&&(l&192)===128&&(f=(s&15)<<18|(c&63)<<12|(u&63)<<6|l&63,f>65535&&f<1114112&&(i=f))}i===null?(i=65533,a=1):i>65535&&(i-=65536,e.push(i>>>10&1023|55296),i=56320|i&1023),e.push(i),this._pos+=a};for(;!this.done();){let s=this.ch(),i;switch(s){case 92:if(this._pos++,this.done())throw new Error(`${M} unexpected string termination at position ${this._pos}`);switch(i=this.ch(),this._pos++,i){case 34:case 39:case 92:case 47:e.push(i);break;case 98:e.push(8);break;case 116:e.push(9);break;case 110:e.push(10);break;case 102:e.push(12);break;case 114:e.push(13);break;case 117:e.push(n());break;default:throw new Error(`${M} unexpected string escape character at position ${this._pos}`)}break;case 34:return this._pos++,new I(p.string,gu(e),this._pos-t);default:if(s<32)throw new Error(`${M} invalid control character at position ${this._pos}`);s<128?(e.push(s),this._pos++):o()}}throw new Error(`${M} unexpected end of string at position ${this._pos}`)}parseValue(){switch(this.ch()){case 123:return this.modeStack.push("obj-start"),this._pos++,new I(p.map,1/0,1);case 91:return this.modeStack.push("array-start"),this._pos++,new I(p.array,1/0,1);case 34:return this.parseString();case 110:return this.expect([110,117,108,108]),new I(p.null,null,4);case 102:return this.expect([102,97,108,115,101]),new I(p.false,!1,5);case 116:return this.expect([116,114,117,101]),new I(p.true,!0,4);case 45:case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return this.parseNumber();default:throw new Error(`${M} unexpected character at position ${this._pos}`)}}next(){switch(this.skipWhitespace(),this.currentMode()){case"value":return this.modeStack.pop(),this.parseValue();case"array-value":{if(this.modeStack.pop(),this.ch()===93)return this._pos++,this.skipWhitespace(),new I(p.break,void 0,1);if(this.ch()!==44)throw new Error(`${M} unexpected character at position ${this._pos}, was expecting array delimiter but found '${String.fromCharCode(this.ch())}'`);return this._pos++,this.modeStack.push("array-value"),this.skipWhitespace(),this.parseValue()}case"array-start":return this.modeStack.pop(),this.ch()===93?(this._pos++,this.skipWhitespace(),new I(p.break,void 0,1)):(this.modeStack.push("array-value"),this.skipWhitespace(),this.parseValue());case"obj-key":if(this.ch()===125)return this.modeStack.pop(),this._pos++,this.skipWhitespace(),new I(p.break,void 0,1);if(this.ch()!==44)throw new Error(`${M} unexpected character at position ${this._pos}, was expecting object delimiter but found '${String.fromCharCode(this.ch())}'`);this._pos++,this.skipWhitespace();case"obj-start":{if(this.modeStack.pop(),this.ch()===125)return this._pos++,this.skipWhitespace(),new I(p.break,void 0,1);let t=this.parseString();if(this.skipWhitespace(),this.ch()!==58)throw new Error(`${M} unexpected character at position ${this._pos}, was expecting key/value delimiter ':' but found '${String.fromCharCode(this.ch())}'`);return this._pos++,this.modeStack.push("obj-value"),t}case"obj-value":return this.modeStack.pop(),this.modeStack.push("obj-key"),this.skipWhitespace(),this.parseValue();default:throw new Error(`${M} unexpected parse state at position ${this._pos}; this shouldn't happen`)}}};function ju(r,t){return t=Object.assign({tokenizer:new Fn(r,t)},t),se(r,t)}function r1(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}function n1(r){if(r.asCID!==r&&r["/"]!==r.bytes)return null;let t=O.asCID(r);if(!t)return null;let e=t.toString();return[new I(p.map,1/0,1),new I(p.string,"/",1),new I(p.string,e,e.length),new I(p.break,void 0,1)]}function Qi(r){let t=Te.encode(r).slice(1);return[new I(p.map,1/0,1),new I(p.string,"/",1),new I(p.map,1/0,1),new I(p.string,"bytes",5),new I(p.string,t,t.length),new I(p.break,void 0,1),new I(p.break,void 0,1)]}function Se(r){return Qi(new Uint8Array(r.buffer,r.byteOffset,r.byteLength))}function o1(r){return Qi(new Uint8Array(r))}function s1(){throw new Error("`undefined` is not supported by the IPLD Data Model and cannot be encoded")}function i1(r){if(Number.isNaN(r))throw new Error("`NaN` is not supported by the IPLD Data Model and cannot be encoded");if(r===1/0||r===-1/0)throw new Error("`Infinity` and `-Infinity` is not supported by the IPLD Data Model and cannot be encoded");return null}var a1={typeEncoders:{Object:n1,Buffer:Qi,Uint8Array:Qi,Int8Array:Se,Uint16Array:Se,Int16Array:Se,Uint32Array:Se,Int32Array:Se,Float32Array:Se,Float64Array:Se,Uint8ClampedArray:Se,BigInt64Array:Se,BigUint64Array:Se,DataView:Se,ArrayBuffer:o1,undefined:s1,number:i1}},Gu=class extends Fn{constructor(t,e){super(t,e),this.tokenBuffer=[]}done(){return this.tokenBuffer.length===0&&super.done()}_next(){return this.tokenBuffer.length>0?this.tokenBuffer.pop():super.next()}next(){let t=this._next();if(t.type===p.map){let e=this._next();if(e.type===p.string&&e.value==="/"){let n=this._next();if(n.type===p.string){if(this._next().type!==p.break)throw new Error("Invalid encoded CID form");return this.tokenBuffer.push(n),new I(p.tag,42,0)}if(n.type===p.map){let o=this._next();if(o.type===p.string&&o.value==="bytes"){let s=this._next();if(s.type===p.string){for(let a=0;a<2;a++)if(this._next().type!==p.break)throw new Error("Invalid encoded Bytes form");let i=Te.decode(`m${s.value}`);return new I(p.bytes,i,s.value.length)}this.tokenBuffer.push(s)}this.tokenBuffer.push(o)}this.tokenBuffer.push(n)}this.tokenBuffer.push(e)}return t}},Wu={allowIndefinite:!1,allowUndefined:!1,allowNaN:!1,allowInfinity:!1,allowBigInt:!0,strict:!0,useMaps:!1,rejectDuplicateMapKeys:!0,tags:[]};Wu.tags[42]=O.parse;var c1="dag-json",Zu=297,Gp=r=>qu(r,a1),Wp=r=>{let t=r1(r),e=Object.assign(Wu,{tokenizer:new Gu(t,Wu)});return ju(t,e)},u1=r=>l1.decode(Gp(r));var l1=new TextDecoder,f1=r=>Wp(h1.encode(r)),h1=new TextEncoder;var rl={};gt(rl,{code:()=>el,createLink:()=>o0,createNode:()=>n0,decode:()=>B1,encode:()=>A1,name:()=>S1,prepare:()=>Qu,validate:()=>tl});var d1=new TextDecoder;function Ju(r,t){let e=0;for(let n=0;;n+=7){if(n>=64)throw new Error("protobuf: varint overflow");if(t>=r.length)throw new Error("protobuf: unexpected end of data");let o=r[t++];if(e+=n<28?(o&127)<<n:(o&127)*2**n,o<128)break}return[e,t]}function ta(r,t){let e;[e,t]=Ju(r,t);let n=t+e;if(e<0||n<0)throw new Error("protobuf: invalid length");if(n>r.length)throw new Error("protobuf: unexpected end of data");return[r.subarray(t,n),n]}function Zp(r,t){let e;return[e,t]=Ju(r,t),[e&7,e>>3,t]}function p1(r){let t={},e=r.length,n=0;for(;n<e;){let o,s;if([o,s,n]=Zp(r,n),s===1){if(t.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(o!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${o}) for Hash`);if(t.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[t.Hash,n]=ta(r,n)}else if(s===2){if(t.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(o!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${o}) for Name`);if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let i;[i,n]=ta(r,n),t.Name=d1.decode(i)}else if(s===3){if(t.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(o!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${o}) for Tsize`);[t.Tsize,n]=Ju(r,n)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${s}`)}if(n>e)throw new Error("protobuf: (PBLink) unexpected end of data");return t}function Yp(r){let t=r.length,e=0,n,o=!1,s;for(;e<t;){let a,c;if([a,c,e]=Zp(r,e),a!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${a}`);if(c===1){if(s)throw new Error("protobuf: (PBNode) duplicate Data section");[s,e]=ta(r,e),n&&(o=!0)}else if(c===2){if(o)throw new Error("protobuf: (PBNode) duplicate Links section");n||(n=[]);let u;[u,e]=ta(r,e),n.push(p1(u))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${c}`)}if(e>t)throw new Error("protobuf: (PBNode) unexpected end of data");let i={};return s&&(i.Data=s),i.Links=n||[],i}var Xp=new TextEncoder,Jp=2**32,m1=2**31;function g1(r,t){let e=t.length;if(typeof r.Tsize=="number"){if(r.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(r.Tsize))throw new Error("Tsize too large for encoding");e=Vo(t,e,r.Tsize)-1,t[e]=24}if(typeof r.Name=="string"){let n=Xp.encode(r.Name);e-=n.length,t.set(n,e),e=Vo(t,e,n.length)-1,t[e]=18}return r.Hash&&(e-=r.Hash.length,t.set(r.Hash,e),e=Vo(t,e,r.Hash.length)-1,t[e]=10),t.length-e}function Qp(r){let t=w1(r),e=new Uint8Array(t),n=t;if(r.Data&&(n-=r.Data.length,e.set(r.Data,n),n=Vo(e,n,r.Data.length)-1,e[n]=10),r.Links)for(let o=r.Links.length-1;o>=0;o--){let s=g1(r.Links[o],e.subarray(0,n));n-=s,n=Vo(e,n,s)-1,e[n]=18}return e}function y1(r){let t=0;if(r.Hash){let e=r.Hash.length;t+=1+e+$n(e)}if(typeof r.Name=="string"){let e=Xp.encode(r.Name).length;t+=1+e+$n(e)}return typeof r.Tsize=="number"&&(t+=1+$n(r.Tsize)),t}function w1(r){let t=0;if(r.Data){let e=r.Data.length;t+=1+e+$n(e)}if(r.Links)for(let e of r.Links){let n=y1(e);t+=1+n+$n(n)}return t}function Vo(r,t,e){t-=$n(e);let n=t;for(;e>=m1;)r[t++]=e&127|128,e/=128;for(;e>=128;)r[t++]=e&127|128,e>>>=7;return r[t]=e,n}function $n(r){return r%2===0&&r++,Math.floor((x1(r)+6)/7)}function x1(r){let t=0;return r>=Jp&&(r=Math.floor(r/Jp),t=32),r>=65536&&(r>>>=16,t+=16),r>=256&&(r>>>=8,t+=8),t+b1[r]}var b1=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8];var v1=["Data","Links"],E1=["Hash","Name","Tsize"],Xu=new TextEncoder;function e0(r,t){if(r===t)return 0;let e=r.Name?Xu.encode(r.Name):[],n=t.Name?Xu.encode(t.Name):[],o=e.length,s=n.length;for(let i=0,a=Math.min(o,s);i<a;++i)if(e[i]!==n[i]){o=e[i],s=n[i];break}return o<s?-1:s<o?1:0}function t0(r,t){return!Object.keys(r).some(e=>!t.includes(e))}function r0(r){if(typeof r.asCID=="object"){let e=O.asCID(r);if(!e)throw new TypeError("Invalid DAG-PB form");return{Hash:e}}if(typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let t={};if(r.Hash){let e=O.asCID(r.Hash);try{e||(typeof r.Hash=="string"?e=O.parse(r.Hash):r.Hash instanceof Uint8Array&&(e=O.decode(r.Hash)))}catch(n){throw new TypeError(`Invalid DAG-PB form: ${n.message}`)}e&&(t.Hash=e)}if(!t.Hash)throw new TypeError("Invalid DAG-PB form");return typeof r.Name=="string"&&(t.Name=r.Name),typeof r.Tsize=="number"&&(t.Tsize=r.Tsize),t}function Qu(r){if((r instanceof Uint8Array||typeof r=="string")&&(r={Data:r}),typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let t={};if(r.Data!==void 0)if(typeof r.Data=="string")t.Data=Xu.encode(r.Data);else if(r.Data instanceof Uint8Array)t.Data=r.Data;else throw new TypeError("Invalid DAG-PB form");if(r.Links!==void 0)if(Array.isArray(r.Links))t.Links=r.Links.map(r0),t.Links.sort(e0);else throw new TypeError("Invalid DAG-PB form");else t.Links=[];return t}function tl(r){if(!r||typeof r!="object"||Array.isArray(r)||r instanceof Uint8Array||r["/"]&&r["/"]===r.bytes)throw new TypeError("Invalid DAG-PB form");if(!t0(r,v1))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(r.Data!==void 0&&!(r.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(r.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let t=0;t<r.Links.length;t++){let e=r.Links[t];if(!e||typeof e!="object"||Array.isArray(e)||e instanceof Uint8Array||e["/"]&&e["/"]===e.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!t0(e,E1))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(e.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(e.Hash==null||!e.Hash["/"]||e.Hash["/"]!==e.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(e.Name!==void 0&&typeof e.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(e.Tsize!==void 0){if(typeof e.Tsize!="number"||e.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(e.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(t>0&&e0(e,r.Links[t-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function n0(r,t=[]){return Qu({Data:r,Links:t})}function o0(r,t,e){return r0({Hash:e,Name:r,Tsize:t})}function s0(r){return r instanceof ArrayBuffer?new Uint8Array(r,0,r.byteLength):r}var S1="dag-pb",el=112;function A1(r){tl(r);let t={};return r.Links&&(t.Links=r.Links.map(e=>{let n={};return e.Hash&&(n.Hash=e.Hash.bytes),e.Name!==void 0&&(n.Name=e.Name),e.Tsize!==void 0&&(n.Tsize=e.Tsize),n})),r.Data&&(t.Data=r.Data),Qp(t)}function B1(r){let t=s0(r),e=Yp(t),n={};return e.Data&&(n.Data=e.Data),e.Links&&(n.Links=e.Links.map(o=>{let s={};try{s.Hash=O.decode(o.Hash)}catch{}if(!s.Hash)throw new Error("Invalid Hash field found in link, expected CID");return o.Name!==void 0&&(s.Name=o.Name),o.Tsize!==void 0&&(s.Tsize=o.Tsize),s})),n}function Mn(r){return r?.then!=null}function i0(r=[],t){let e={[el]:rl,[Jn]:Xn,[Hu]:zu,[Zu]:Yu,[lc]:cs};return r.forEach(n=>{e[n.code]=n}),async n=>{let o=e[n];if(o==null&&t!=null){let s=t(n);Mn(s)?o=await s:o=s,e[o.code]=o}if(o!=null)return o;throw new Mo(`Could not load codec for ${n}`)}}function a0(r=[],t){let e={[dr.code]:dr,[ls.code]:ls,[jt.code]:jt};return r.forEach(n=>{e[n.code]=n}),async n=>{let o=e[n];if(o==null&&t!=null){let s=t(n);Mn(s)?o=await s:o=s,e[o.code]=o}if(o!=null)return o;throw new $o(`No hasher configured for multihash code 0x${n.toString(16)}, please configure one. You can look up which hash this is at https://github.com/multiformats/multicodec/blob/master/table.csv`)}}var ue=class r extends Error{static name="NotFoundError";static code="ERR_NOT_FOUND";name=r.name;code=r.code;constructor(t="Not Found"){super(t)}};var nr=class{has(t,e){return Promise.reject(new Error(".has is not implemented"))}put(t,e,n){return Promise.reject(new Error(".put is not implemented"))}async*putMany(t,e){for await(let{cid:n,block:o}of t)await this.put(n,o,e),yield n}get(t,e){return Promise.reject(new Error(".get is not implemented"))}async*getMany(t,e){for await(let n of t)yield{cid:n,block:await this.get(n,e)}}delete(t,e){return Promise.reject(new Error(".delete is not implemented"))}async*deleteMany(t,e){for await(let n of t)await this.delete(n,e),yield n}async*getAll(t){throw new Error(".getAll is not implemented")}};var ea=0,ra=class extends nr{child;constructor(t){super(),this.child=t}put(t,e){return t.multihash.code===ea||this.child==null?t:this.child.put(t,e)}get(t){if(t.multihash.code===ea)return t.multihash.digest;if(this.child==null)throw new ue;return this.child.get(t)}has(t){return t.multihash.code===ea?!0:this.child==null?!1:this.child.has(t)}delete(t){if(t.code!==ea&&this.child!=null)return this.child.delete(t)}getAll(t){return this.child!=null?this.child.getAll(t):[]}};function k1(r){return r[Symbol.asyncIterator]!=null}function I1(r,t){let e=0;if(k1(r))return async function*(){for await(let c of r)await t(c,e++)&&(yield c)}();let n=an(r),{value:o,done:s}=n.next();if(s===!0)return function*(){}();let i=t(o,e++);if(typeof i.then=="function")return async function*(){await i&&(yield o);for await(let c of n)await t(c,e++)&&(yield c)}();let a=t;return function*(){i===!0&&(yield o);for(let c of n)a(c,e++)&&(yield c)}()}var Ae=I1;function _1(r){return r[Symbol.asyncIterator]!=null}function c0(r){return r?.then!=null}function T1(r,t){let e=0;if(_1(r))return async function*(){for await(let c of r){let u=t(c,e++);c0(u)&&await u,yield c}}();let n=an(r),{value:o,done:s}=n.next();if(s===!0)return function*(){}();if(typeof t(o,e++)?.then=="function")return async function*(){yield o;for await(let c of n){let u=t(c,e++);c0(u)&&await u,yield c}}();let a=t;return function*(){yield o;for(let c of n)a(c,e++),yield c}()}var nl=T1;var na=class{child;getHasher;log;logger;components;constructor(t){this.log=t.logger.forComponent("helia:networked-storage"),this.logger=t.logger,this.components=t,this.child=new ra(t.blockstore),this.getHasher=t.getHasher}async put(t,e,n={}){return await this.child.has(t,n)?(n.onProgress?.(new tt("blocks:put:duplicate",t)),t):(n.onProgress?.(new tt("blocks:put:providers:notify",t)),await Promise.all(this.components.blockBrokers.map(async o=>o.announce?.(t,e,n))),n.onProgress?.(new tt("blocks:put:blockstore:put",t)),this.child.put(t,e,n))}async*putMany(t,e={}){let n=Ae(t,async({cid:s})=>{let i=await this.child.has(s,e);return i&&e.onProgress?.(new tt("blocks:put-many:duplicate",s)),!i}),o=nl(n,async({cid:s,block:i})=>{e.onProgress?.(new tt("blocks:put-many:providers:notify",s)),await Promise.all(this.components.blockBrokers.map(async a=>a.announce?.(s,i,e)))});e.onProgress?.(new tt("blocks:put-many:blockstore:put-many")),yield*this.child.putMany(o,e)}async get(t,e={}){if(e.offline!==!0&&!await this.child.has(t,e)){let n=await this.getHasher(t.multihash.code);e.onProgress?.(new tt("blocks:get:providers:get",t));let o=await u0(t,this.components.blockBrokers,n,{...e,log:this.log});return e.onProgress?.(new tt("blocks:get:blockstore:put",t)),await this.child.put(t,o,e),e.onProgress?.(new tt("blocks:get:providers:notify",t)),await Promise.all(this.components.blockBrokers.map(async s=>s.announce?.(t,o,e))),o}return e.onProgress?.(new tt("blocks:get:blockstore:get",t)),this.child.get(t,e)}async*getMany(t,e={}){e.onProgress?.(new tt("blocks:get-many:blockstore:get-many")),yield*this.child.getMany(nl(t,async n=>{if(e.offline!==!0&&!await this.child.has(n,e)){let o=await this.getHasher(n.multihash.code);e.onProgress?.(new tt("blocks:get-many:providers:get",n));let s=await u0(n,this.components.blockBrokers,o,{...e,log:this.log});e.onProgress?.(new tt("blocks:get-many:blockstore:put",n)),await this.child.put(n,s,e),e.onProgress?.(new tt("blocks:get-many:providers:notify",n)),await Promise.all(this.components.blockBrokers.map(async i=>i.announce?.(n,s,e)))}}))}async delete(t,e={}){e.onProgress?.(new tt("blocks:delete:blockstore:delete",t)),await this.child.delete(t,e)}async*deleteMany(t,e={}){e.onProgress?.(new tt("blocks:delete-many:blockstore:delete-many")),yield*this.child.deleteMany(async function*(){for await(let n of t)yield n}(),e)}async has(t,e={}){return this.child.has(t,e)}async*getAll(t={}){t.onProgress?.(new tt("blocks:get-all:blockstore:get-many")),yield*this.child.getAll(t)}},oa=class extends na{started;constructor(t){super(t),this.started=!1}isStarted(){return this.started}async start(){await ur(this.child,...this.components.blockBrokers),this.started=!0}async stop(){await lr(this.child,...this.components.blockBrokers),this.started=!1}unwrap(){return this.child}createSession(t,e){let n=this.components.blockBrokers.map(o=>o.createSession==null?o:o.createSession(e));return new ol({blockstore:this.child,blockBrokers:n,getHasher:this.getHasher,logger:this.logger},{root:t})}},ol=class extends na{closeController;constructor(t,e){super(t),this.closeController=new AbortController,ht(1/0,this.closeController.signal),this.log=t.logger.forComponent(`helia:session-storage:${e.root}`)}close(){this.closeController.abort()}async put(t,e,n={}){let o=Ot([this.closeController.signal,n.signal]);ht(1/0,o);try{return await super.put(t,e,{...n,signal:o})}finally{o.clear()}}async*putMany(t,e={}){let n=Ot([this.closeController.signal,e.signal]);ht(1/0,n);try{yield*super.putMany(t,{...e,signal:n})}finally{n.clear()}}async get(t,e={}){let n=Ot([this.closeController.signal,e.signal]);ht(1/0,n);try{return await super.get(t,{...e,signal:n})}finally{n.clear()}}async*getMany(t,e={}){let n=Ot([this.closeController.signal,e.signal]);ht(1/0,n);try{yield*super.getMany(t,{...e,signal:n})}finally{n.clear()}}async delete(t,e={}){let n=Ot([this.closeController.signal,e.signal]);ht(1/0,n);try{await super.delete(t,{...e,signal:n})}finally{n.clear()}}async*deleteMany(t,e={}){let n=Ot([this.closeController.signal,e.signal]);ht(1/0,n);try{yield*super.deleteMany(t,{...e,signal:n})}finally{n.clear()}}async has(t,e={}){let n=Ot([this.closeController.signal,e.signal]);ht(1/0,n);try{return await super.has(t,{...e,signal:n})}finally{n.clear()}}async*getAll(t={}){let e=Ot([this.closeController.signal,t.signal]);ht(1/0,e);try{yield*super.getAll({...t,signal:e})}finally{e.clear()}}};function C1(r){return typeof r.retrieve=="function"}var N1=(r,t)=>{if(t==null)throw new St(`No hasher configured for multihash code 0x${r.multihash.code.toString(16)}, please configure one. You can look up which hash this is at https://github.com/multiformats/multicodec/blob/master/table.csv`);return async e=>{let n,o=t.digest(e);if(Mn(o)?n=await o:n=o,!st(n.digest,r.multihash.digest))throw new cr("Hash of downloaded block did not match multihash from passed CID")}};async function u0(r,t,e,n){let o=N1(r,e),s=new AbortController,i=Ot([s.signal,n.signal]);ht(1/0,s.signal,i);let a=[];for(let c of t)C1(c)&&a.push(c);try{return await Promise.any(a.map(async c=>{try{let u=!1,l=await c.retrieve(r,{...n,signal:i,validateFn:async f=>{await o(f),u=!0}});return u||await o(l),l}catch(u){throw n.log.error("could not retrieve verified block for %c",r,u),u}}))}finally{s.abort(),i.clear()}}var Oo=class extends nn{intialPeerSearchComplete;requests;name;log;logger;minProviders;maxProviders;providers;evictionFilter;constructor(t,e){super(),ht(1/0,this),this.name=e.name,this.logger=t.logger,this.log=t.logger.forComponent(this.name),this.requests=new Map,this.minProviders=e.minProviders??1,this.maxProviders=e.maxProviders??5,this.providers=[],this.evictionFilter=au(this.maxProviders)}async retrieve(t,e={}){let n=Te.encode(t.multihash.bytes),o=this.requests.get(n);if(o!=null)return this.log("join existing request for %c",t),o;let s=At();if(this.requests.set(n,s.promise),this.providers.length===0){let u=!1;this.intialPeerSearchComplete==null&&(u=!0,this.log=this.logger.forComponent(`${this.name}:${t}`),this.intialPeerSearchComplete=this.findProviders(t,this.minProviders,e)),await this.intialPeerSearchComplete,u&&this.log("found initial session peers for %c",t)}let i=!1,a=new Ve({concurrency:this.maxProviders});a.addEventListener("error",()=>{}),a.addEventListener("failure",u=>{this.log.error("error querying provider %o, evicting from session",u.detail.job.options.provider,u.detail.error),this.evict(u.detail.job.options.provider)}),a.addEventListener("success",u=>{i=!0,s.resolve(u.detail.result)}),a.addEventListener("idle",()=>{i||e.signal?.aborted===!0||Promise.resolve().then(async()=>{this.log("no session peers had block for for %c, finding new providers",t);for(let u=0;u<this.minProviders&&this.providers.length!==0;u++){let l=this.providers[Math.floor(Math.random()*this.providers.length)];this.evict(l)}await this.findProviders(t,this.minProviders,e),this.log("found new providers re-retrieving %c",t),this.requests.delete(n),s.resolve(await this.retrieve(t,e))}).catch(u=>{this.log.error("could not find new providers for %c",t,u),s.reject(u)})});let c=u=>{a.add(async()=>this.queryProvider(t,u.detail,e),{provider:u.detail}).catch(l=>{e.signal?.aborted!==!0&&this.log.error("error retrieving session block for %c",t,l)})};this.addEventListener("provider",c),Promise.all([...this.providers].map(async u=>a.add(async()=>this.queryProvider(t,u,e),{provider:u}))).catch(u=>{e.signal?.aborted!==!0&&this.log.error("error retrieving session block for %c",t,u)});try{return await s.promise}finally{this.removeEventListener("provider",c),a.clear(),this.requests.delete(n)}}evict(t){this.evictionFilter.add(this.toEvictionKey(t));let e=this.providers.findIndex(n=>this.equals(n,t));e!==-1&&this.providers.splice(e,1)}isEvicted(t){return this.evictionFilter.has(this.toEvictionKey(t))}hasProvider(t){return!!(this.providers.find(e=>this.equals(e,t))!=null||this.isEvicted(t))}async findProviders(t,e,n){let o=At(),s=0;return Promise.resolve().then(async()=>{this.log("finding %d-%d new provider(s) for %c",e,this.maxProviders,t);for await(let i of this.findNewProviders(t,n)){if(s===this.maxProviders||n.signal?.aborted===!0)break;if(!this.hasProvider(i)&&(this.log("found %d/%d new providers",s,this.maxProviders),this.providers.push(i),this.safeDispatchEvent("provider",{detail:i}),s++,s===e&&(this.log("session is ready"),o.resolve()),this.providers.length===this.maxProviders)){this.log("found max session peers",s);break}}if(this.log("found %d/%d new session peers",s,this.maxProviders),s<e)throw new Fo(`Found ${s} of ${e} ${this.name} providers for ${t}`)}).catch(i=>{this.log.error("error searching routing for potential session peers for %c",t,i.errors??i),o.reject(i)}),o.promise}};var sa=class{blockstore;datastore;pins;logger;routing;getCodec;getHasher;dns;metrics;log;constructor(t){this.logger=t.logger??bd(),this.log=this.logger.forComponent("helia"),this.getHasher=a0(t.hashers,t.loadHasher),this.getCodec=i0(t.codecs,t.loadCodec),this.dns=t.dns??Cd(),this.metrics=t.metrics;let e={blockstore:t.blockstore,datastore:t.datastore,logger:this.logger,blockBrokers:[],getHasher:this.getHasher,getCodec:this.getCodec,dns:this.dns,metrics:this.metrics,...t.components??{}};this.routing=e.routing=new Yi(e,{routers:(t.routers??[]).flatMap(o=>{let s=[o];return o[Zn]!=null&&s.push(o[Zn]),o[Yn]!=null&&s.push(o[Yn]),s}),providerLookupConcurrency:t.providerLookupConcurrency});let n=new oa(e);this.pins=new Zi(t.datastore,n,this.getCodec),this.blockstore=new Ji(n,this.pins,{holdGcLock:t.holdGcLock??!0}),this.datastore=t.datastore,e.blockBrokers=t.blockBrokers.map(o=>o(e))}async start(){await Kp(this.datastore),await ur(this.blockstore,this.datastore,this.routing)}async stop(){await lr(this.blockstore,this.datastore,this.routing)}async gc(t={}){let e=await this.blockstore.lock.writeLock();try{let n=this,o=this.blockstore.unwrap();this.log("gc start"),await Ur(o.deleteMany(async function*(){for await(let{cid:s}of o.getAll())try{if(await n.pins.isPinned(s,t))continue;yield s,t.onProgress?.(new tt("helia:gc:deleted",s))}catch(i){n.log.error("Error during gc",i),t.onProgress?.(new tt("helia:gc:error",i))}}()))}finally{e()}this.log("gc finished")}};var ia=class{index=0;input="";new(t){return this.index=0,this.input=t,this}readAtomically(t){let e=this.index,n=t();return n===void 0&&(this.index=e),n}parseWith(t){let e=t();if(this.index===this.input.length)return e}peekChar(){if(!(this.index>=this.input.length))return this.input[this.index]}readChar(){if(!(this.index>=this.input.length))return this.input[this.index++]}readGivenChar(t){return this.readAtomically(()=>{let e=this.readChar();if(e===t)return e})}readSeparator(t,e,n){return this.readAtomically(()=>{if(!(e>0&&this.readGivenChar(t)===void 0))return n()})}readNumber(t,e,n,o){return this.readAtomically(()=>{let s=0,i=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",u=2**(8*o)-1;for(;;){let l=this.readAtomically(()=>{let f=this.readChar();if(f===void 0)return;let d=Number.parseInt(f,t);if(!Number.isNaN(d))return d});if(l===void 0)break;if(s*=t,s+=l,s>u||(i+=1,e!==void 0&&i>e))return}if(i!==0)return!n&&c&&i>1?void 0:s})}readIPv4Addr(){return this.readAtomically(()=>{let t=new Uint8Array(4);for(let e=0;e<t.length;e++){let n=this.readSeparator(".",e,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;t[e]=n}return t})}readIPv6Addr(){let t=e=>{for(let n=0;n<e.length/2;n++){let o=n*2;if(n<e.length-3){let i=this.readSeparator(":",n,()=>this.readIPv4Addr());if(i!==void 0)return e[o]=i[0],e[o+1]=i[1],e[o+2]=i[2],e[o+3]=i[3],[o+4,!0]}let s=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(s===void 0)return[o,!1];e[o]=s>>8,e[o+1]=s&255}return[e.length,!1]};return this.readAtomically(()=>{let e=new Uint8Array(16),[n,o]=t(e);if(n===16)return e;if(o||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let s=new Uint8Array(14),i=16-(n+2),[a]=t(s.subarray(0,i));return e.set(s.subarray(0,a),16-a),e})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var l0=45,P1=15,Vn=new ia;function sl(r){if(!(r.length>P1))return Vn.new(r).parseWith(()=>Vn.readIPv4Addr())}function il(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>l0))return Vn.new(r).parseWith(()=>Vn.readIPv6Addr())}function aa(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>l0))return Vn.new(r).parseWith(()=>Vn.readIPAddr())}function On(r){return!!sl(r)}function Hn(r){return!!il(r)}function ca(r){return!!aa(r)}var h0=Lr(f0(),1),L1=["0.0.0.0/8","10.0.0.0/8","100.64.0.0/10","127.0.0.0/8","169.254.0.0/16","172.16.0.0/12","192.0.0.0/24","192.0.0.0/29","192.0.0.8/32","192.0.0.9/32","192.0.0.10/32","192.0.0.170/32","192.0.0.171/32","192.0.2.0/24","192.31.196.0/24","192.52.193.0/24","192.88.99.0/24","192.168.0.0/16","192.175.48.0/24","198.18.0.0/15","198.51.100.0/24","203.0.113.0/24","240.0.0.0/4","255.255.255.255/32"],R1=L1.map(r=>new h0.Netmask(r));function al(r){for(let t of R1)if(t.contains(r))return!0;return!1}function U1(r){return/^::ffff:([0-9a-fA-F]{1,4}):([0-9a-fA-F]{1,4})$/.test(r)}function D1(r){let t=r.split(":");if(t.length<2)return!1;let e=t[t.length-1].padStart(4,"0"),n=t[t.length-2].padStart(4,"0"),o=`${parseInt(n.substring(0,2),16)}.${parseInt(n.substring(2),16)}.${parseInt(e.substring(0,2),16)}.${parseInt(e.substring(2),16)}`;return al(o)}function F1(r){return/^::ffff:([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/.test(r)}function $1(r){let t=r.split(":"),e=t[t.length-1];return al(e)}function M1(r){return/^::$/.test(r)||/^::1$/.test(r)||/^64:ff9b::([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/.test(r)||/^100::([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2001::([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2001:2[0-9a-fA-F]:([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2001:db8:([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^2002:([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4}):?([0-9a-fA-F]{0,4})$/.test(r)||/^f[c-d]([0-9a-fA-F]{2,2}):/i.test(r)||/^fe[8-9a-bA-B][0-9a-fA-F]:/i.test(r)||/^ff([0-9a-fA-F]{2,2}):/i.test(r)}function d0(r){return On(r)?al(r):U1(r)?D1(r):F1(r)?$1(r):Hn(r)?M1(r):void 0}var V1=r=>r.toString().split("/").slice(1),zn=r=>({match:t=>t.length<1?!1:r(t[0])?t.slice(1):!1,pattern:"fn"}),J=r=>({match:t=>zn(e=>e===r).match(t),pattern:r}),Xr=()=>({match:r=>zn(t=>typeof t=="string").match(r),pattern:"{string}"}),zo=()=>({match:r=>zn(t=>!isNaN(parseInt(t))).match(r),pattern:"{number}"}),ct=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{it.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),Ko=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{ic.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),et=r=>({match:t=>{let e=r.match(t);return e===!1?t:e},pattern:`optional(${r.pattern})`}),Mt=(...r)=>({match:t=>{let e;for(let n of r){let o=n.match(t);o!==!1&&(e==null||o.length<e.length)&&(e=o)}return e??!1},pattern:`or(${r.map(t=>t.pattern).join(", ")})`}),X=(...r)=>({match:t=>{for(let e of r){let n=e.match(t);if(n===!1)return!1;t=n}return t},pattern:`and(${r.map(t=>t.pattern).join(", ")})`});function dt(...r){function t(o){let s=V1(o);for(let i of r){let a=i.match(s);if(a===!1)return!1;s=a}return s}function e(o){return t(o)!==!1}function n(o){let s=t(o);return s===!1?!1:s.length===0}return{matchers:r,matches:e,exactMatch:n}}var la=X(J("dns4"),Xr()),fa=X(J("dns6"),Xr()),ha=X(J("dnsaddr"),Xr()),ul=X(J("dns"),Xr()),D3=dt(la,et(ct())),F3=dt(fa,et(ct())),$3=dt(ha,et(ct())),p0=dt(Mt(ul,ha,la,fa),et(ct())),m0=X(J("ip4"),zn(On)),g0=X(J("ip6"),zn(Hn)),ll=Mt(m0,g0),or=Mt(ll,ul,la,fa,ha),M3=dt(Mt(ll,X(Mt(ul,ha,la,fa),et(ct())))),V3=dt(m0),O3=dt(g0),H3=dt(ll),fl=X(or,J("tcp"),zo()),qo=X(or,J("udp"),zo()),z3=dt(X(fl,et(ct()))),K3=dt(qo),hl=X(qo,J("quic"),et(ct())),da=X(qo,J("quic-v1"),et(ct())),O1=Mt(hl,da),q3=dt(hl),j3=dt(da),cl=Mt(or,fl,qo,hl,da),y0=Mt(X(cl,J("ws"),et(ct()))),G3=dt(y0),w0=Mt(X(cl,J("wss"),et(ct())),X(cl,J("tls"),et(X(J("sni"),Xr())),J("ws"),et(ct()))),W3=dt(w0),x0=X(qo,J("webrtc-direct"),et(Ko()),et(Ko()),et(ct())),Z3=dt(x0),b0=X(da,J("webtransport"),et(Ko()),et(Ko()),et(ct())),Y3=dt(b0),ua=Mt(y0,w0,X(fl,et(ct())),X(O1,et(ct())),X(or,et(ct())),x0,b0,ct()),J3=dt(ua),H1=X(ua,J("p2p-circuit"),ct()),X3=dt(H1),z1=Mt(X(ua,J("p2p-circuit"),J("webrtc"),et(ct())),X(ua,J("webrtc"),et(ct())),X(J("webrtc"),et(ct()))),Q3=dt(z1),K1=Mt(X(or,J("tcp"),zo(),J("http"),et(ct())),X(or,J("http"),et(ct()))),v0=dt(K1),q1=Mt(X(or,J("tcp"),Mt(X(J("443"),J("http")),X(zo(),J("https"))),et(ct())),X(or,J("tls"),J("http"),et(ct())),X(or,J("https"),et(ct()))),E0=dt(q1),j1=Mt(X(J("memory"),Xr(),et(ct()))),tk=dt(j1);var ck=parseInt("0xFFFF",16),uk=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);var B0=On,J1=Hn,dl=function(r){let t=0;if(r=r.toString().trim(),B0(r)){let e=new Uint8Array(t+4);return r.split(/\./g).forEach(n=>{e[t++]=parseInt(n,10)&255}),e}if(J1(r)){let e=r.split(":",8),n;for(n=0;n<e.length;n++){let s=B0(e[n]),i;s&&(i=dl(e[n]),e[n]=nt(i.slice(0,2),"base16")),i!=null&&++n<8&&e.splice(n,0,nt(i.slice(2,4),"base16"))}if(e[0]==="")for(;e.length<8;)e.unshift("0");else if(e[e.length-1]==="")for(;e.length<8;)e.push("0");else if(e.length<8){for(n=0;n<e.length&&e[n]!=="";n++);let s=[n,1];for(n=9-e.length;n>0;n--)s.push("0");e.splice.apply(e,s)}let o=new Uint8Array(t+16);for(n=0;n<e.length;n++){let s=parseInt(e[n],16);o[t++]=s>>8&255,o[t++]=s&255}return o}throw new Error("invalid ip address")},k0=function(r,t=0,e){t=~~t,e=e??r.length-t;let n=new DataView(r.buffer);if(e===4){let o=[];for(let s=0;s<e;s++)o.push(r[t+s]);return o.join(".")}if(e===16){let o=[];for(let s=0;s<e;s+=2)o.push(n.getUint16(t+s).toString(16));return o.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var Kn={},pl={},Q1=[[4,32,"ip4"],[6,16,"tcp"],[33,16,"dccp"],[41,128,"ip6"],[42,-1,"ip6zone"],[43,8,"ipcidr"],[53,-1,"dns",!0],[54,-1,"dns4",!0],[55,-1,"dns6",!0],[56,-1,"dnsaddr",!0],[132,16,"sctp"],[273,16,"udp"],[275,0,"p2p-webrtc-star"],[276,0,"p2p-webrtc-direct"],[277,0,"p2p-stardust"],[280,0,"webrtc-direct"],[281,0,"webrtc"],[290,0,"p2p-circuit"],[301,0,"udt"],[302,0,"utp"],[400,-1,"unix",!1,!0],[421,-1,"ipfs"],[421,-1,"p2p"],[443,0,"https"],[444,96,"onion"],[445,296,"onion3"],[446,-1,"garlic64"],[448,0,"tls"],[449,-1,"sni"],[460,0,"quic"],[461,0,"quic-v1"],[465,0,"webtransport"],[466,-1,"certhash"],[477,0,"ws"],[478,0,"wss"],[479,0,"p2p-websocket-star"],[480,0,"http"],[481,-1,"http-path"],[777,-1,"memory"]];Q1.forEach(r=>{let t=tb(...r);pl[t.code]=t,Kn[t.name]=t});function tb(r,t,e,n,o){return{code:r,size:t,name:e,resolvable:!!n,path:!!o}}function j(r){if(typeof r=="number"){if(pl[r]!=null)return pl[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(Kn[r]!=null)return Kn[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var Kk=j("ip4"),qk=j("ip6"),jk=j("ipcidr");function wl(r,t){switch(j(r).code){case 4:case 41:return rb(t);case 42:return yl(t);case 6:case 273:case 33:case 132:return T0(t).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return yl(t);case 421:return ib(t);case 444:return _0(t);case 445:return _0(t);case 466:return sb(t);case 481:return globalThis.encodeURIComponent(yl(t));default:return nt(t,"base16")}}function xl(r,t){switch(j(r).code){case 4:return I0(t);case 41:return I0(t);case 42:return gl(t);case 6:case 273:case 33:case 132:return bl(parseInt(t,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return gl(t);case 421:return nb(t);case 444:return ab(t);case 445:return cb(t);case 466:return ob(t);case 481:return gl(globalThis.decodeURIComponent(t));default:return z(t,"base16")}}var ml=Object.values(ro).map(r=>r.decoder),eb=function(){let r=ml[0].or(ml[1]);return ml.slice(2).forEach(t=>r=r.or(t)),r}();function I0(r){if(!ca(r))throw new Error("invalid ip address");return dl(r)}function rb(r){let t=k0(r,0,r.length);if(t==null)throw new Error("ipBuff is required");if(!ca(t))throw new Error("invalid ip address");return t}function bl(r){let t=new ArrayBuffer(2);return new DataView(t).setUint16(0,r),new Uint8Array(t)}function T0(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function gl(r){let t=z(r),e=Uint8Array.from(sn(t.length));return Xt([e,t],e.length+t.length)}function yl(r){let t=Dr(r);if(r=r.slice(qt(t)),r.length!==t)throw new Error("inconsistent lengths");return nt(r)}function nb(r){let t;r[0]==="Q"||r[0]==="1"?t=pe(it.decode(`z${r}`)).bytes:t=O.parse(r).multihash.bytes;let e=Uint8Array.from(sn(t.length));return Xt([e,t],e.length+t.length)}function ob(r){let t=eb.decode(r),e=Uint8Array.from(sn(t.length));return Xt([e,t],e.length+t.length)}function sb(r){let t=Dr(r),e=r.slice(qt(t));if(e.length!==t)throw new Error("inconsistent lengths");return"u"+nt(e,"base64url")}function ib(r){let t=Dr(r),e=r.slice(qt(t));if(e.length!==t)throw new Error("inconsistent lengths");return nt(e,"base58btc")}function ab(r){let t=r.split(":");if(t.length!==2)throw new Error(`failed to parse onion addr: ["'${t.join('", "')}'"]' does not contain a port number`);if(t[0].length!==16)throw new Error(`failed to parse onion addr: ${t[0]} not a Tor onion address.`);let e=Tt.decode("b"+t[0]),n=parseInt(t[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let o=bl(n);return Xt([e,o],e.length+o.length)}function cb(r){let t=r.split(":");if(t.length!==2)throw new Error(`failed to parse onion addr: ["'${t.join('", "')}'"]' does not contain a port number`);if(t[0].length!==56)throw new Error(`failed to parse onion addr: ${t[0]} not a Tor onion3 address.`);let e=Tt.decode(`b${t[0]}`),n=parseInt(t[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let o=bl(n);return Xt([e,o],e.length+o.length)}function _0(r){let t=r.slice(0,r.length-2),e=r.slice(r.length-2),n=nt(t,"base32"),o=T0(e);return`${n}:${o}`}function C0(r){r=vl(r);let t=[],e=[],n=null,o=r.split("/").slice(1);if(o.length===1&&o[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let s=0;s<o.length;s++){let i=o[s],a=j(i);if(a.size===0){t.push([a.code]),e.push([a.code]);continue}if(s++,s>=o.length)throw P0("invalid address: "+r);if(a.path===!0){n=vl(o.slice(s).join("/")),t.push([a.code,xl(a.code,n)]),e.push([a.code,n]);break}let c=xl(a.code,o[s]);t.push([a.code,c]),e.push([a.code,wl(a.code,c)])}return{string:N0(e),bytes:Sl(t),tuples:t,stringTuples:e,path:n}}function El(r){let t=[],e=[],n=null,o=0;for(;o<r.length;){let s=Dr(r,o),i=qt(s),a=j(s),c=ub(a,r.slice(o+i));if(c===0){t.push([s]),e.push([s]),o+=i;continue}let u=r.slice(o+i,o+i+c);if(o+=c+i,o>r.length)throw P0("Invalid address Uint8Array: "+nt(r,"base16"));t.push([s,u]);let l=wl(s,u);if(e.push([s,l]),a.path===!0){n=l;break}}return{bytes:Uint8Array.from(r),string:N0(e),tuples:t,stringTuples:e,path:n}}function N0(r){let t=[];return r.map(e=>{let n=j(e[0]);return t.push(n.name),e.length>1&&e[1]!=null&&t.push(e[1]),null}),vl(t.join("/"))}function Sl(r){return Xt(r.map(t=>{let e=j(t[0]),n=Uint8Array.from(sn(e.code));return t.length>1&&t[1]!=null&&(n=Xt([n,t[1]])),n}))}function ub(r,t){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let e=Dr(t instanceof Uint8Array?t:Uint8Array.from(t));return e+qt(e)}}function vl(r){return"/"+r.trim().split("/").filter(t=>t).join("/")}function P0(r){return new Error("Error parsing address: "+r)}var lb=Symbol.for("nodejs.util.inspect.custom"),Bl=Symbol.for("@multiformats/js-multiaddr/multiaddr"),fb=[j("dns").code,j("dns4").code,j("dns6").code,j("dnsaddr").code],Al=class extends Error{constructor(t="No available resolver"){super(t),this.name="NoAvailableResolverError"}},pa=class r{bytes;#t;#e;#r;#o;[Bl]=!0;constructor(t){t==null&&(t="");let e;if(t instanceof Uint8Array)e=El(t);else if(typeof t=="string"){if(t.length>0&&t.charAt(0)!=="/")throw new Error(`multiaddr "${t}" must start with a "/"`);e=C0(t)}else if(R0(t))e=El(t.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=e.bytes,this.#t=e.string,this.#e=e.tuples,this.#r=e.stringTuples,this.#o=e.path}toString(){return this.#t}toJSON(){return this.toString()}toOptions(){let t,e,n,o,s="",i=j("tcp"),a=j("udp"),c=j("ip4"),u=j("ip6"),l=j("dns6"),f=j("ip6zone");for(let[h,w]of this.stringTuples())h===f.code&&(s=`%${w??""}`),fb.includes(h)&&(e=i.name,o=443,n=`${w??""}${s}`,t=h===l.code?6:4),(h===i.code||h===a.code)&&(e=j(h).name,o=parseInt(w??"")),(h===c.code||h===u.code)&&(e=j(h).name,n=`${w??""}${s}`,t=h===u.code?6:4);if(t==null||e==null||n==null||o==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:t,host:n,transport:e,port:o}}protos(){return this.#e.map(([t])=>Object.assign({},j(t)))}protoCodes(){return this.#e.map(([t])=>t)}protoNames(){return this.#e.map(([t])=>j(t).name)}tuples(){return this.#e}stringTuples(){return this.#r}encapsulate(t){return t=new r(t),new r(this.toString()+t.toString())}decapsulate(t){let e=t.toString(),n=this.toString(),o=n.lastIndexOf(e);if(o<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${t.toString()}`);return new r(n.slice(0,o))}decapsulateCode(t){let e=this.tuples();for(let n=e.length-1;n>=0;n--)if(e[n][0]===t)return new r(Sl(e.slice(0,n)));return this}getPeerId(){try{let t=[];this.stringTuples().forEach(([n,o])=>{n===Kn.p2p.code&&t.push([n,o]),n===Kn["p2p-circuit"].code&&(t=[])});let e=t.pop();if(e?.[1]!=null){let n=e[1];return n[0]==="Q"||n[0]==="1"?nt(it.decode(`z${n}`),"base58btc"):nt(O.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#o}equals(t){return st(this.bytes,t.bytes)}async resolve(t){let e=this.protos().find(s=>s.resolvable);if(e==null)return[this];let n=L0.get(e.name);if(n==null)throw new Al(`no available resolver for ${e.name}`);return(await n(this,t)).map(s=>sr(s))}nodeAddress(){let t=this.toOptions();if(t.transport!=="tcp"&&t.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${t.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:t.family,address:t.host,port:t.port}}isThinWaistAddress(t){let e=(t??this).protos();return!(e.length!==2||e[0].code!==4&&e[0].code!==41||e[1].code!==6&&e[1].code!==273)}[lb](){return`Multiaddr(${this.#t})`}};var L0=new Map;function R0(r){return!!r?.[Bl]}function sr(r){return new pa(r)}var hb=[j("tcp").code,j("dns").code,j("dnsaddr").code,j("dns4").code,j("dns6").code];function U0(r){return $0("sni",r)?.[1]}function D0(r){let t=$0("tcp",r)?.[1];return t==null?"":`:${t}`}function $0(r,t){let e;try{e=j(r).code}catch{return}for(let[n,o]of t)if(n===e&&o!=null)return[n,o]}function F0(r){return r.some(([t,e])=>t===j("tls").code)}function Jt(r,t,e){let n=M0[j(r).name];if(n==null)throw new Error(`Can't interpret protocol ${j(r).name}`);let o=n(t,e);return r===j("ip6").code?`[${o}]`:o}var M0={ip4:(r,t)=>r,ip6:(r,t)=>t.length===0?r:`[${r}]`,tcp:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`tcp://${Jt(e[0],e[1]??"",t)}:${r}`},udp:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`udp://${Jt(e[0],e[1]??"",t)}:${r}`},dnsaddr:(r,t)=>r,dns4:(r,t)=>r,dns6:(r,t)=>r,dns:(r,t)=>r,ipfs:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/ipfs/${r}`},p2p:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p/${r}`},http:(r,t)=>{let e=F0(t),n=U0(t),o=D0(t);if(e&&n!=null)return`https://${n}${o}`;let s=e?"https://":"http://",i=t.pop();if(i==null)throw new Error("Unexpected end of multiaddr");let a=Jt(i[0],i[1]??"",t);return a=a.replace("tcp://",""),`${s}${a}`},"http-path":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");let n=Jt(e[0],e[1]??"",t),o=decodeURIComponent(r);return`${n}/${o}`},tls:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return Jt(e[0],e[1]??"",t)},sni:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return Jt(e[0],e[1]??"",t)},https:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");let n=Jt(e[0],e[1]??"",t);return n=n.replace("tcp://",""),`https://${n}`},ws:(r,t)=>{let e=F0(t),n=U0(t),o=D0(t);if(e&&n!=null)return`wss://${n}${o}`;let s=e?"wss://":"ws://",i=t.pop();if(i==null)throw new Error("Unexpected end of multiaddr");let a=Jt(i[0],i[1]??"",t);return a=a.replace("tcp://",""),`${s}${a}`},wss:(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");let n=Jt(e[0],e[1]??"",t);return n=n.replace("tcp://",""),`wss://${n}`},"p2p-websocket-star":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p-websocket-star`},"p2p-webrtc-star":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p-webrtc-star`},"p2p-webrtc-direct":(r,t)=>{let e=t.pop();if(e==null)throw new Error("Unexpected end of multiaddr");return`${Jt(e[0],e[1]??"",t)}/p2p-webrtc-direct`}};function V0(r,t){let n=sr(r).stringTuples(),o=n.pop();if(o==null)throw new Error("Unexpected end of multiaddr");let s=j(o[0]),i=M0[s.name];if(i==null)throw new Error(`No interpreter found for ${s.name}`);let a=i(o[1]??"",n);return t?.assumeHttp!==!1&&hb.includes(o[0])&&(a=a.replace(/^.*:\/\//,""),o[1]==="443"?a=`https://${a}`:a=`http://${a}`),(a.startsWith("http://")||a.startsWith("https://")||a.startsWith("ws://")||a.startsWith("wss://"))&&(a=new URL(a).toString(),a.endsWith("/")&&(a=a.substring(0,a.length-1))),a}var ma=class{url;#t=0;#e=0;#r=0;#o=0;#a=new Map;log;constructor(t,e){this.url=t instanceof URL?t:new URL(t),this.log=e.forComponent(`helia:trustless-gateway-block-broker:${this.url.hostname}`)}#u(t){let e=t.multihash.bytes;return Te.encode(e)}async getRawBlock(t,e){let n=new URL(this.url.toString());if(n.pathname=`/ipfs/${t.toString()}`,n.search="?format=raw",e?.aborted===!0)throw new Error(`Signal to fetch raw block for CID ${t} from gateway ${this.url} was aborted prior to fetch`);let o=this.#u(t),s=new AbortController,i=()=>{s.abort()};e?.addEventListener("abort",i);try{let a=this.#a.get(o);return a==null&&(this.#t++,a=fetch(n.toString(),{signal:s.signal,headers:{Accept:"application/vnd.ipld.raw"},cache:"force-cache"}).then(async c=>{if(this.log("GET %s %d",n,c.status),!c.ok)throw this.#e++,new Error(`unable to fetch raw block for CID ${t} from gateway ${this.url}`);return this.#o++,new Uint8Array(await c.arrayBuffer())}),this.#a.set(o,a)),await a}catch{throw e?.aborted===!0?new Error(`fetching raw block for CID ${t} from gateway ${this.url} was aborted`):(this.#e++,new Error(`unable to fetch raw block for CID ${t}`))}finally{e?.removeEventListener("abort",i),this.#a.delete(o)}}reliability(){return this.#t===0?1:this.#r>0?-1/0:this.#o/(this.#t+this.#e*3)}incrementInvalidBlocks(){this.#r++}getStats(){return{attempts:this.#t,errors:this.#e,invalidBlocks:this.#r,successes:this.#o,pendingResponses:this.#a.size}}};function db(r,t,e){return r.filter(n=>{if(E0.matches(n)||t&&v0.matches(n))return e||p0.matches(n)?!0:d0(n.toOptions().host)===!1;if(!t&&e){let{host:o}=n.toOptions();if(o==="127.0.0.1"||o==="localhost"||o.endsWith(".localhost"))return!0}return!1})}async function*ga(r,t,e,n,o,s){for await(let i of t.findProviders(r,s)){let a=db(i.multiaddrs,n,o);if(a.length===0)continue;let c=V0(a[0]);yield new ma(c,e)}}var kl=class extends Oo{routing;allowInsecure;allowLocal;constructor(t,e){super(t,{...e,name:"helia:trustless-gateway:session"}),this.routing=t.routing,this.allowInsecure=e.allowInsecure??ya,this.allowLocal=e.allowLocal??wa}async queryProvider(t,e,n){this.log("fetching BLOCK for %c from %s",t,e.url);let o=await e.getRawBlock(t,n.signal);return this.log.trace("got block for %c from %s",t,e.url),await n.validateFn?.(o),o}async*findNewProviders(t,e={}){yield*ga(t,this.routing,this.logger,this.allowInsecure,this.allowLocal,e)}toEvictionKey(t){return t.url.toString()}equals(t,e){return t.url.toString()===e.url.toString()}};function O0(r,t){return new kl(r,t)}var xa=class{allowInsecure;allowLocal;routing;log;logger;constructor(t,e={}){this.log=t.logger.forComponent("helia:trustless-gateway-block-broker"),this.logger=t.logger,this.routing=t.routing,this.allowInsecure=e.allowInsecure??ya,this.allowLocal=e.allowLocal??wa}async retrieve(t,e={}){let n=[];for await(let o of ga(t,this.routing,this.logger,this.allowInsecure,this.allowLocal,e)){this.log("getting block for %c from %s",t,o.url);try{let s=await o.getRawBlock(t,e.signal);this.log.trace("got block for %c from %s",t,o.url);try{await e.validateFn?.(s)}catch(i){this.log.error("failed to validate block for %c from %s",t,o.url,i);continue}return s}catch(s){if(this.log.error("failed to get block for %c from %s",t,o.url,s),s instanceof Error?n.push(s):n.push(new Error(`Unable to fetch raw block for CID ${t} from gateway ${o.url}`)),e.signal?.aborted===!0){this.log.trace("request aborted while fetching raw block for CID %c from gateway %s",t,o.url);break}}}throw n.length>0?new AggregateError(n,`Unable to fetch raw block for CID ${t} from any gateway`):new Error(`Unable to fetch raw block for CID ${t} from any gateway`)}createSession(t={}){return O0({logger:this.logger,routing:this.routing},{...t,allowLocal:this.allowLocal,allowInsecure:this.allowInsecure})}};var ya=!1,wa=!1;function Il(r={}){return t=>new xa(t,r)}async function*ba(r,t={}){let e=r.getReader();try{for(;;){let n=await e.read();if(n.done)return;yield n.value}}finally{t.preventCancel!==!0&&await e.cancel(),e.releaseLock()}}var xb=Lr(Tl(),1);var Be=class extends Error{static name="SignatureVerificationError";constructor(t="Record signature verification failed"){super(t),this.name="SignatureVerificationError"}},va=class extends Error{static name="RecordExpiredError";constructor(t="Record has expired"){super(t),this.name="RecordExpiredError"}},qn=class extends Error{static name="UnsupportedValidityError";constructor(t="The validity type is unsupported"){super(t),this.name="UnsupportedValidityError"}},Ea=class extends Error{static name="RecordTooLargeError";constructor(t="The record is too large"){super(t),this.name="RecordTooLargeError"}},Sa=class extends Error{static name="InvalidValueError";constructor(t="Value must be a valid content path starting with /"){super(t),this.name="InvalidValueError"}},Aa=class extends Error{static name="InvalidRecordDataError";constructor(t="Invalid record data"){super(t),this.name="InvalidRecordDataError"}},jo=class extends Error{static name="InvalidEmbeddedPublicKeyError";constructor(t="Invalid embedded public key"){super(t),this.name="InvalidEmbeddedPublicKeyError"}};var ke;(function(r){let t;(function(o){o.EOL="EOL"})(t=r.ValidityType||(r.ValidityType={}));let e;(function(o){o[o.EOL=0]="EOL"})(e||(e={})),function(o){o.codec=()=>so(e)}(t=r.ValidityType||(r.ValidityType={}));let n;r.codec=()=>(n==null&&(n=gn((o,s,i={})=>{i.lengthDelimited!==!1&&s.fork(),o.value!=null&&(s.uint32(10),s.bytes(o.value)),o.signatureV1!=null&&(s.uint32(18),s.bytes(o.signatureV1)),o.validityType!=null&&(s.uint32(24),r.ValidityType.codec().encode(o.validityType,s)),o.validity!=null&&(s.uint32(34),s.bytes(o.validity)),o.sequence!=null&&(s.uint32(40),s.uint64(o.sequence)),o.ttl!=null&&(s.uint32(48),s.uint64(o.ttl)),o.pubKey!=null&&(s.uint32(58),s.bytes(o.pubKey)),o.signatureV2!=null&&(s.uint32(66),s.bytes(o.signatureV2)),o.data!=null&&(s.uint32(74),s.bytes(o.data)),i.lengthDelimited!==!1&&s.ldelim()},(o,s,i={})=>{let a={},c=s==null?o.len:o.pos+s;for(;o.pos<c;){let u=o.uint32();switch(u>>>3){case 1:{a.value=o.bytes();break}case 2:{a.signatureV1=o.bytes();break}case 3:{a.validityType=r.ValidityType.codec().decode(o);break}case 4:{a.validity=o.bytes();break}case 5:{a.sequence=o.uint64();break}case 6:{a.ttl=o.uint64();break}case 7:{a.pubKey=o.bytes();break}case 8:{a.signatureV2=o.bytes();break}case 9:{a.data=o.bytes();break}default:{o.skipType(u&7);break}}}return a})),n),r.encode=o=>pn(o,r.codec()),r.decode=(o,s)=>un(o,r.codec(),s)})(ke||(ke={}));var pb=te("ipns:utils"),H0=z("/ipns/");var mb=0,gb=18;function z0(r){let t;if(r.pubKey!=null)try{t=id(r.pubKey)}catch(e){throw pb.error(e),e}if(t!=null)return t}function K0(r){let t=z("ipns-signature:");return Xt([t,r])}function Qr(r){return"signatureV1"in r?ke.encode({value:z(r.value),signatureV1:r.signatureV1,validityType:r.validityType,validity:z(r.validity),sequence:r.sequence,ttl:r.ttl,pubKey:r.pubKey,signatureV2:r.signatureV2,data:r.data}):ke.encode({pubKey:r.pubKey,signatureV2:r.signatureV2,data:r.data})}function Fe(r){let t=ke.decode(r);if(t.sequence!=null&&(t.sequence=BigInt(t.sequence)),t.ttl!=null&&(t.ttl=BigInt(t.ttl)),t.signatureV2==null||t.data==null)throw new Be("Missing data or signatureV2");let e=q0(t.data),n=yb(e.Value),o=nt(e.Validity);if(t.value!=null&&t.signatureV1!=null)return wb(t),{value:n,validityType:ke.ValidityType.EOL,validity:o,sequence:e.Sequence,ttl:e.TTL,pubKey:t.pubKey,signatureV1:t.signatureV1,signatureV2:t.signatureV2,data:t.data};if(t.signatureV2!=null)return{value:n,validityType:ke.ValidityType.EOL,validity:o,sequence:e.Sequence,ttl:e.TTL,pubKey:t.pubKey,signatureV2:t.signatureV2,data:t.data};throw new Error("invalid record: does not include signatureV1 or signatureV2")}function Go(r){return Xt([H0,r.bytes])}function ir(r){let t=pe(r.slice(H0.length));if(!Ba(t,mb)&&!Ba(t,gb))throw new cr("Multihash in IPNS key was not identity or sha2-256");return t}function q0(r){let t=se(r);if(t.ValidityType===0)t.ValidityType=ke.ValidityType.EOL;else throw new qn("The validity type is unsupported");return Number.isInteger(t.Sequence)&&(t.Sequence=BigInt(t.Sequence)),Number.isInteger(t.TTL)&&(t.TTL=BigInt(t.TTL)),t}function yb(r){let t=nt(r).trim();if(t.startsWith("/"))return t;try{return`/ipfs/${O.decode(r).toV1().toString()}`}catch{}try{return`/ipfs/${O.parse(t).toV1().toString()}`}catch{}throw new Sa("Value must be a valid content path starting with /")}function wb(r){if(r.data==null)throw new Aa("Record data is missing");let t=q0(r.data);if(!st(t.Value,r.value??new Uint8Array(0)))throw new Be('Field "value" did not match between protobuf and CBOR');if(!st(t.Validity,r.validity??new Uint8Array(0)))throw new Be('Field "validity" did not match between protobuf and CBOR');if(t.ValidityType!==r.validityType)throw new Be('Field "validityType" did not match between protobuf and CBOR');if(t.Sequence!==r.sequence)throw new Be('Field "sequence" did not match between protobuf and CBOR');if(t.TTL!==r.ttl)throw new Be('Field "ttl" did not match between protobuf and CBOR')}function Ba(r,t){return r.code===t}var i_=te("ipns"),a_=60*60*1e9,bb="/ipns/",c_=bb.length;var j0=Lr(Tl(),1);var ka=te("ipns:validator"),vb=1024*10,Eb=async(r,t)=>{let e=Fe(t),n;try{let o=K0(e.data);n=await r.verify(o,e.signatureV2)}catch{n=!1}if(!n)throw ka.error("record signature verification failed"),new Be("Record signature verification failed");if(e.validityType===ke.ValidityType.EOL){if(j0.default.fromString(e.validity).toDate().getTime()<Date.now())throw ka.error("record has expired"),new va("record has expired")}else if(e.validityType!=null)throw ka.error("the validity type is unsupported"),new qn("The validity type is unsupported");ka("ipns record for %s is valid",e.value)};async function G0(r,t){if(t.byteLength>vb)throw new Ea("The record is too large");let e=ir(r),n;Ba(e,0)&&(n=bi(e));let o=Fe(t),s=z0(o)??n;if(s==null)throw new jo("Could not extract public key from IPNS record or routing key");let i=Go(s.toMultihash());if(!st(r,i))throw new jo("Embedded public key did not match routing key");await Eb(s,t)}async function*Wo(r){let t=/\r?\n/,e=new TextDecoder("utf8"),n="";for await(let o of r){typeof o=="string"&&(o=new TextEncoder().encode(o)),n+=e.decode(o,{stream:!0});let s=n.split(t);n=s.pop()??"";for(let i=0;i<s.length;i++)yield JSON.parse(s[i])}n+=e.decode(),n!==""&&(yield JSON.parse(n))}var jn=class extends Error{static name="InvalidRequestError";constructor(t="Invalid request"){super(t),this.name="InvalidRequestError"}},tn=class extends Error{static name="BadResponseError";constructor(t="Bad response"){super(t),this.name="BadResponseError"}};function Sb(r){return r[Symbol.asyncIterator]!=null}function Ab(r){if(Sb(r))return(async()=>{for await(let t of r)return t})();for(let t of r)return t}var Ia=Ab;var W0=z("/ipns/");function Z0(r){return st(r.subarray(0,W0.byteLength),W0)}var _a=class{client;constructor(t){this.client=t}async*findProviders(t,e={}){yield*cn(this.client.getProviders(t,e),n=>({id:n.ID,multiaddrs:n.Addrs??[]}))}async provide(){}async cancelReprovide(){}async put(t,e,n){if(!Z0(t))return;let o=ir(t),s=O.createV1(114,o),i=Fe(e);await this.client.putIPNS(s,i,n)}async get(t,e){if(!Z0(t))throw new Lt("Not found");let n=ir(t),o=O.createV1(114,n);try{let s=await this.client.getIPNS(o,e);return Qr(s)}catch(s){throw s.name==="BadResponseError"?new Lt("Not found"):s}}},Ta=class{client;constructor(t){this.client=t}async findPeer(t,e={}){let n=await Ia(this.client.getPeers(t,e));if(n!=null)return{id:n.ID,multiaddrs:n.Addrs??[]};throw new Lt("Not found")}async*getClosestPeers(t,e={}){}};var It=te("delegated-routing-v1-http-api-client"),Cl={concurrentRequests:4,timeout:3e4,cacheTTL:5*60*1e3},Ca=class{started;httpQueue;shutDownController;clientUrl;timeout;contentRouting;peerRouting;filterAddrs;filterProtocols;inFlightRequests;cache;cacheTTL;constructor(t,e={}){this.started=!1,this.shutDownController=new AbortController,ht(1/0,this.shutDownController.signal),this.httpQueue=new Ue({concurrency:e.concurrentRequests??Cl.concurrentRequests}),this.inFlightRequests=new Map,this.clientUrl=t instanceof URL?t:new URL(t),this.timeout=e.timeout??Cl.timeout,this.filterAddrs=e.filterAddrs,this.filterProtocols=e.filterProtocols,this.contentRouting=new _a(this),this.peerRouting=new Ta(this),this.cacheTTL=e.cacheTTL??Cl.cacheTTL,typeof globalThis.caches<"u"&&this.cacheTTL>0&&(It("cache enabled with ttl %d",this.cacheTTL),globalThis.caches.open("delegated-routing-v1-cache").then(o=>{this.cache=o}).catch(()=>{this.cache=void 0}))}get[Zn](){return this.contentRouting}get[Yn](){return this.peerRouting}isStarted(){return this.started}start(){this.started=!0}stop(){this.httpQueue.clear(),this.shutDownController.abort(),this.started=!1,this.cache!=null&&this.cache.delete("delegated-routing-v1-cache")}async*getProviders(t,e={}){It("getProviders starts: %c",t);let n=AbortSignal.timeout(this.timeout),o=Ot([this.shutDownController.signal,n,e.signal]);ht(1/0,n,o);let s=At(),i=At();this.httpQueue.add(async()=>(s.resolve(),i.promise));try{await s.promise;let a=new URL(`${this.clientUrl}routing/v1/providers/${t.toString()}`);this.#e(a,e.filterAddrs,e.filterProtocols);let c={headers:{Accept:"application/x-ndjson"},signal:o},u=await this.#r(a.toString(),c);if(u.status===404)throw new Lt("No matching records found");if(u.status===422)throw new jn("Request does not conform to schema or semantic constraints");if(u.body==null)throw new tn("Routing response had no body");if(u.headers.get("Content-Type")==="application/json"){let f=await u.json();for(let d of f.Providers){let h=this.#t(d);h!=null&&(yield h)}}else for await(let f of Wo(ba(u.body))){let d=this.#t(f);d!=null&&(yield d)}}catch(a){It.error("getProviders errored:",a)}finally{o.clear(),i.resolve(),It("getProviders finished: %c",t)}}async*getPeers(t,e={}){It("getPeers starts: %c",t);let n=AbortSignal.timeout(this.timeout),o=Ot([this.shutDownController.signal,n,e.signal]);ht(1/0,n,o);let s=At(),i=At();this.httpQueue.add(async()=>(s.resolve(),i.promise));try{await s.promise;let a=new URL(`${this.clientUrl}routing/v1/peers/${t.toCID().toString()}`);this.#e(a,e.filterAddrs,e.filterProtocols);let c={headers:{Accept:"application/x-ndjson"},signal:o},u=await this.#r(a.toString(),c);if(u.status===404)throw new Lt("No matching records found");if(u.status===422)throw new jn("Request does not conform to schema or semantic constraints");if(u.body==null)throw new tn("Routing response had no body");if(u.headers.get("Content-Type")==="application/json"){let f=await u.json();for(let d of f.Peers){let h=this.#t(d);h!=null&&(yield h)}}else for await(let f of Wo(ba(u.body))){let d=this.#t(f);d!=null&&(yield d)}}catch(a){It.error("getPeers errored:",a)}finally{o.clear(),i.resolve(),It("getPeers finished: %c",t)}}async getIPNS(t,e={}){It("getIPNS starts: %s",t);let n=AbortSignal.timeout(this.timeout),o=Ot([this.shutDownController.signal,n,e.signal]);ht(1/0,n,o);let s=At(),i=At();this.httpQueue.add(async()=>(s.resolve(),i.promise));let a=`${this.clientUrl}routing/v1/ipns/${t}`;try{await s.promise;let c={headers:{Accept:"application/vnd.ipfs.ipns-record"},signal:o},u=await this.#r(a,c);if(It("getIPNS GET %s %d",a,u.status),u.status===404)throw new Lt("No matching records found");if(u.status===422)throw new jn("Request does not conform to schema or semantic constraints");if(u.body==null)throw new tn("GET ipns response had no body");let l=await u.arrayBuffer(),f=new Uint8Array(l,0,l.byteLength);return e.validate!==!1&&await G0(Go(t.multihash),f),Fe(f)}catch(c){throw It.error("getIPNS GET %s error:",a,c),c}finally{o.clear(),i.resolve(),It("getIPNS finished: %s",t)}}async putIPNS(t,e,n={}){It("putIPNS starts: %c",t);let o=AbortSignal.timeout(this.timeout),s=Ot([this.shutDownController.signal,o,n.signal]);ht(1/0,o,s);let i=At(),a=At();this.httpQueue.add(async()=>(i.resolve(),a.promise));let c=`${this.clientUrl}routing/v1/ipns/${t}`;try{await i.promise;let u=Qr(e),l={method:"PUT",headers:{"Content-Type":"application/vnd.ipfs.ipns-record"},body:u,signal:s},f=await this.#r(c,l);if(It("putIPNS PUT %s %d",c,f.status),f.status!==200)throw new tn("PUT ipns response had status other than 200")}catch(u){throw It.error("putIPNS PUT %s error:",c,u.stack),u}finally{s.clear(),a.resolve(),It("putIPNS finished: %c",t)}}#t(t){try{let e=[],n=t.Addrs?.map(sr)??[];return t.Protocols!=null&&e.push(...t.Protocols),t.Protocol!=null&&(e.push(t.Protocol),delete t.Protocol),{...t,Schema:"peer",ID:ud(t.ID),Addrs:n,Protocols:e}}catch(e){It.error("could not conform record to peer schema",e)}}#e(t,e,n){if(e!=null||this.filterAddrs!=null){let o=e?.join(",")??this.filterAddrs?.join(",")??"";o!==""&&t.searchParams.set("filter-addrs",o)}if(n!=null||this.filterProtocols!=null){let o=n?.join(",")??this.filterProtocols?.join(",")??"";o!==""&&t.searchParams.set("filter-protocols",o)}}async#r(t,e){let n=e.method??"GET",o=`${n}-${t}`;if(n==="GET"){let c=await this.cache?.match(t);if(c!=null){if(parseInt(c.headers.get("x-cache-expires")??"0",10)>Date.now())return It("returning cached response for %s",o),c;await this.cache?.delete(t)}}let s=this.inFlightRequests.get(o);if(s!=null){let c=await s;return It("deduplicating outgoing request for %s",o),c.clone()}let i=fetch(t,e).then(async c=>{if(this.cache!=null&&c.ok&&n==="GET"){let u=Date.now()+this.cacheTTL,l=new Headers(c.headers);l.set("x-cache-expires",u.toString());let f=new Response(c.clone().body,{status:c.status,statusText:c.statusText,headers:l});await this.cache.put(t,f)}return c}).finally(()=>{this.inFlightRequests.delete(o)});return this.inFlightRequests.set(o,i),await i}};function Y0(r,t={}){return new Ca(new URL(r),t)}function J0(){return{filterProtocols:["unknown","transport-bitswap","transport-ipfs-gateway-http"],filterAddrs:["https","webtransport","webrtc","webrtc-direct","wss","tls"]}}var X0=z("/ipns/");function Q0(r){return st(r.subarray(0,X0.byteLength),X0)}var Nl=class{client;constructor(t,e={}){this.client=Y0(t,e)}async provide(t,e){}async*findProviders(t,e){yield*cn(this.client.getProviders(t,e),n=>({id:n.ID,multiaddrs:n.Addrs,protocols:n.Protocols}))}async put(t,e,n){if(!Q0(t))return;let o=ir(t),s=O.createV1(114,o),i=Fe(e);await this.client.putIPNS(s,i,n)}async get(t,e){if(!Q0(t))throw new Lt("Not found");let n=ir(t),o=O.createV1(114,n);try{let s=await this.client.getIPNS(o,e);return Qr(s)}catch(s){throw s.name==="BadResponseError"?new Lt("Not found"):s}}async findPeer(t,e){let n=await Ia(this.client.getPeers(t,e));if(n!=null)return{id:n.ID,multiaddrs:n.Addrs??[]};throw new Lt("Not found")}async*getClosestPeers(t,e){}};function Pl(r,t){let e=t??J0();return new Nl(new URL(r),e)}var tm="[a-fA-F\\d:]",Nr=r=>r&&r.includeBoundaries?`(?:(?<=\\s|^)(?=${tm})|(?<=${tm})(?=\\s|$))`:"",Ie="(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}",yt="[a-fA-F\\d]{1,4}",Na=`
|
|
8
8
|
(?:
|
|
9
9
|
(?:${yt}:){7}(?:${yt}|:)| // 1:2:3:4:5:6:7:: 1:2:3:4:5:6:7:8
|
|
10
10
|
(?:${yt}:){6}(?:${Ie}|:${yt}|:)| // 1:2:3:4:5:6:: 1:2:3:4:5:6::8 1:2:3:4:5:6::8 1:2:3:4:5:6::1.2.3.4
|
|
@@ -15,7 +15,7 @@ ${t.join(`
|
|
|
15
15
|
(?:${yt}:){1}(?:(?::${yt}){0,4}:${Ie}|(?::${yt}){1,6}|:)| // 1:: 1::3:4:5:6:7:8 1::8 1::3:4:5:6:7:1.2.3.4
|
|
16
16
|
(?::(?:(?::${yt}){0,5}:${Ie}|(?::${yt}){1,7}|:)) // ::2:3:4:5:6:7:8 ::2:3:4:5:6:7:8 ::8 ::1.2.3.4
|
|
17
17
|
)(?:%[0-9a-zA-Z]{1,})? // %eth0 %1
|
|
18
|
-
`.replace(/\s*\/\/.*$/gm,"").replace(/\n/g,"").trim(),
|
|
18
|
+
`.replace(/\s*\/\/.*$/gm,"").replace(/\n/g,"").trim(),Bb=new RegExp(`(?:^${Ie}$)|(?:^${Na}$)`),kb=new RegExp(`^${Ie}$`),Ib=new RegExp(`^${Na}$`),Ll=r=>r&&r.exact?Bb:new RegExp(`(?:${Nr(r)}${Ie}${Nr(r)})|(?:${Nr(r)}${Na}${Nr(r)})`,"g");Ll.v4=r=>r&&r.exact?kb:new RegExp(`${Nr(r)}${Ie}${Nr(r)}`,"g");Ll.v6=r=>r&&r.exact?Ib:new RegExp(`${Nr(r)}${Na}${Nr(r)}`,"g");var Rl=Ll;function Ul(r){let t=(...e)=>r(...e);return Object.defineProperty(t,"name",{value:`functionTimeout(${r.name||"<anonymous>"})`,configurable:!0}),t}function em(){return!1}var{toString:_b}=Object.prototype;function Dl(r){return _b.call(r)==="[object RegExp]"}var rm={global:"g",ignoreCase:"i",multiline:"m",dotAll:"s",sticky:"y",unicode:"u"};function Fl(r,t={}){if(!Dl(r))throw new TypeError("Expected a RegExp instance");let e=Object.keys(rm).map(o=>(typeof t[o]=="boolean"?t[o]:r[o])?rm[o]:"").join(""),n=new RegExp(t.source||r.source,e);return n.lastIndex=typeof t.lastIndex=="number"?t.lastIndex:r.lastIndex,n}function $l(r,t,{timeout:e}={}){try{return Ul(()=>Fl(r).test(t),{timeout:e})()}catch(n){if(em(n))return!1;throw n}}var Tb=15,Cb=45,nm={timeout:400};function Ml(r){return r.length>Cb?!1:$l(Rl.v6({exact:!0}),r,nm)}function om(r){return r.length>Tb?!1:$l(Rl.v4({exact:!0}),r,nm)}var sm={http:"80",https:"443",ws:"80",wss:"443"},Nb=["http","https","ws","wss"];function im(r,t){t=t??{};let e=t.defaultDnsType??"dns4",{scheme:n,hostname:o,port:s}=Pb(r),a="/"+[Lb(o,e),Rb(s,n),Ub(n)].filter(c=>!!c).reduce((c,u)=>c.concat(u),[]).join("/");return sr(a)}function Pb(r){let[t]=r.split(":");Nb.includes(t)||(r="http"+r.substring(t.length));let{protocol:e,hostname:n,port:o}=new URL(r);if(o==null||o===""){let s=Db(t);s!=null&&(o=s),s==null&&e==="http:"&&(o="80")}return{scheme:t,hostname:n,port:o}}function Lb(r,t){if(!(r==null||r==="")){if(om(r))return["ip4",r];if(Ml(r))return["ip6",r];if(r[0]==="["){let e=r.substring(1,r.length-1);if(Ml(e))return["ip6",e]}return[t,r]}}function Rb(r,t){if(!(r==null||r===""))return t==="udp"?["udp",r]:["tcp",r]}function Ub(r){if(r.match(/^tcp$|^udp$/)==null)return[r]}function Db(r){if(!(r==null||r===""||sm[r]==null))return sm[r]}var Fb=["https://trustless-gateway.link","https://4everland.io"],$b=2336;function Mb(r){return r=r.toString(),{id:fd(O.createV1($b,jt.digest(z(r)))),multiaddrs:[im(r)]}}var Vl=class{gateways;constructor(t={}){this.gateways=(t.gateways??Fb).map(e=>Mb(e))}async*findProviders(t,e){yield*this.gateways.toSorted(()=>Math.random()>.5?1:-1).map(n=>({...n,protocols:["transport-ipfs-gateway-http"]}))}};function Ol(r={}){return new Vl(r)}var Zo=class extends nr{data;constructor(){super(),this.data=new Map}put(t,e){return this.data.set(Tt.encode(t.multihash.bytes),e),t}get(t){let e=this.data.get(Tt.encode(t.multihash.bytes));if(e==null)throw new ue;return e}has(t){return this.data.has(Tt.encode(t.multihash.bytes))}async delete(t){this.data.delete(Tt.encode(t.multihash.bytes))}async*getAll(){for(let[t,e]of this.data.entries())yield{cid:O.createV1(Jn,pe(Tt.decode(t))),block:e}}};var J5=te("blockstore:core:tiered");var um="SHARDING";function Ob(r){return r[Symbol.asyncIterator]!=null}function Hb(r){if(Ob(r))return(async()=>{let e=[];for await(let n of r)e.push(n);return e})();let t=[];for(let e of r)t.push(e);return t}var Hl=Hb;function zb(r){return r[Symbol.asyncIterator]!=null}function Kb(r,t){return zb(r)?async function*(){yield*(await Hl(r)).sort(t)}():function*(){yield*Hl(r).sort(t)}()}var Pa=Kb;var ar=class{put(t,e,n){return Promise.reject(new Error(".put is not implemented"))}get(t,e){return Promise.reject(new Error(".get is not implemented"))}has(t,e){return Promise.reject(new Error(".has is not implemented"))}delete(t,e){return Promise.reject(new Error(".delete is not implemented"))}async*putMany(t,e={}){for await(let{key:n,value:o}of t)await this.put(n,o,e),yield n}async*getMany(t,e={}){for await(let n of t)yield{key:n,value:await this.get(n,e)}}async*deleteMany(t,e={}){for await(let n of t)await this.delete(n,e),yield n}batch(){let t=[],e=[];return{put(n,o){t.push({key:n,value:o})},delete(n){e.push(n)},commit:async n=>{await Ur(this.putMany(t,n)),t=[],await Ur(this.deleteMany(e,n)),e=[]}}}async*_all(t,e){throw new Error("._all is not implemented")}async*_allKeys(t,e){throw new Error("._allKeys is not implemented")}query(t,e){let n=this._all(t,e);if(t.prefix!=null){let o=t.prefix;n=Ae(n,s=>s.key.toString().startsWith(o))}if(Array.isArray(t.filters)&&(n=t.filters.reduce((o,s)=>Ae(o,s),n)),Array.isArray(t.orders)&&(n=t.orders.reduce((o,s)=>Pa(o,s),n)),t.offset!=null){let o=0,s=t.offset;n=Ae(n,()=>o++>=s)}return t.limit!=null&&(n=is(n,t.limit)),n}queryKeys(t,e){let n=this._allKeys(t,e);if(t.prefix!=null){let o=t.prefix;n=Ae(n,s=>s.toString().startsWith(o))}if(Array.isArray(t.filters)&&(n=t.filters.reduce((o,s)=>Ae(o,s),n)),Array.isArray(t.orders)&&(n=t.orders.reduce((o,s)=>Pa(o,s),n)),t.offset!=null){let o=t.offset,s=0;n=Ae(n,()=>s++>=o)}return t.limit!=null&&(n=is(n,t.limit)),n}};var Yo=class extends ar{data;constructor(){super(),this.data=new Map}put(t,e){return this.data.set(t.toString(),e),t}get(t){let e=this.data.get(t.toString());if(e==null)throw new ue;return e}has(t){return this.data.has(t.toString())}delete(t){this.data.delete(t.toString())}*_all(){for(let[t,e]of this.data.entries())yield{key:new $t(t),value:e}}*_allKeys(){for(let t of this.data.keys())yield new $t(t)}};var NT=new $t(um);var qT=te("datastore:core:tiered");async function qb(r={}){let t=r.datastore??new Yo,e=r.blockstore??new Zo,n=new sa({...r,datastore:t,blockstore:e,blockBrokers:r.blockBrokers??[Il()],routers:r.routers??[Pl("https://delegated-ipfs.dev"),Ol()]});return r.start!==!1&&await n.start(),n}return Am(jb);})();
|
|
19
19
|
/*! Bundled license information:
|
|
20
20
|
|
|
21
21
|
pvtsutils/build/index.js:
|