@libp2p/circuit-relay-v2 3.1.7-06fc82da8 → 3.1.7-15a70af5f

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/index.min.js +3 -3
  2. package/package.json +10 -10
package/dist/index.min.js CHANGED
@@ -1,9 +1,9 @@
1
1
  (function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.Libp2PCircuitRelayV2 = factory()}(typeof self !== 'undefined' ? self : this, function () {
2
- "use strict";var Libp2PCircuitRelayV2=(()=>{var Mf=Object.create;var Bn=Object.defineProperty;var Pf=Object.getOwnPropertyDescriptor;var Vf=Object.getOwnPropertyNames;var Hf=Object.getPrototypeOf,Ff=Object.prototype.hasOwnProperty;var Mi=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),ke=(r,e)=>{for(var t in e)Bn(r,t,{get:e[t],enumerable:!0})},sc=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of Vf(e))!Ff.call(r,s)&&s!==t&&Bn(r,s,{get:()=>e[s],enumerable:!(n=Pf(e,s))||n.enumerable});return r};var ic=(r,e,t)=>(t=r!=null?Mf(Hf(r)):{},sc(e||!r||!r.__esModule?Bn(t,"default",{value:r,enumerable:!0}):t,r)),Kf=r=>sc(Bn({},"__esModule",{value:!0}),r);var hl=Mi(Er=>{"use strict";var hp="[object ArrayBuffer]",xt=class r{static isArrayBuffer(e){return Object.prototype.toString.call(e)===hp}static toArrayBuffer(e){return this.isArrayBuffer(e)?e:e.byteLength===e.buffer.byteLength||e.byteOffset===0&&e.byteLength===e.buffer.byteLength?e.buffer:this.toUint8Array(e.buffer).slice(e.byteOffset,e.byteOffset+e.byteLength).buffer}static toUint8Array(e){return this.toView(e,Uint8Array)}static toView(e,t){if(e.constructor===t)return e;if(this.isArrayBuffer(e))return new t(e);if(this.isArrayBufferView(e))return new t(e.buffer,e.byteOffset,e.byteLength);throw new TypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView)'")}static isBufferSource(e){return this.isArrayBufferView(e)||this.isArrayBuffer(e)}static isArrayBufferView(e){return ArrayBuffer.isView(e)||e&&this.isArrayBuffer(e.buffer)}static isEqual(e,t){let n=r.toUint8Array(e),s=r.toUint8Array(t);if(n.length!==s.byteLength)return!1;for(let i=0;i<n.length;i++)if(n[i]!==s[i])return!1;return!0}static concat(...e){let t;Array.isArray(e[0])&&!(e[1]instanceof Function)||Array.isArray(e[0])&&e[1]instanceof Function?t=e[0]:e[e.length-1]instanceof Function?t=e.slice(0,e.length-1):t=e;let n=0;for(let o of t)n+=o.byteLength;let s=new Uint8Array(n),i=0;for(let o of t){let a=this.toUint8Array(o);s.set(a,i),i+=a.length}return e[e.length-1]instanceof Function?this.toView(s,e[e.length-1]):s.buffer}},Zo="string",dp=/^[0-9a-f\s]+$/i,pp=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,mp=/^[a-zA-Z0-9-_]+$/,Zn=class{static fromString(e){let t=unescape(encodeURIComponent(e)),n=new Uint8Array(t.length);for(let s=0;s<t.length;s++)n[s]=t.charCodeAt(s);return n.buffer}static toString(e){let t=xt.toUint8Array(e),n="";for(let i=0;i<t.length;i++)n+=String.fromCharCode(t[i]);return decodeURIComponent(escape(n))}},Ge=class{static toString(e,t=!1){let n=xt.toArrayBuffer(e),s=new DataView(n),i="";for(let o=0;o<n.byteLength;o+=2){let a=s.getUint16(o,t);i+=String.fromCharCode(a)}return i}static fromString(e,t=!1){let n=new ArrayBuffer(e.length*2),s=new DataView(n);for(let i=0;i<e.length;i++)s.setUint16(i*2,e.charCodeAt(i),t);return n}},jn=class r{static isHex(e){return typeof e===Zo&&dp.test(e)}static isBase64(e){return typeof e===Zo&&pp.test(e)}static isBase64Url(e){return typeof e===Zo&&mp.test(e)}static ToString(e,t="utf8"){let n=xt.toUint8Array(e);switch(t.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 Ge.toString(n,!0);case"utf16":case"utf16be":return Ge.toString(n);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromString(e,t="utf8"){if(!e)return new ArrayBuffer(0);switch(t.toLowerCase()){case"utf8":return this.FromUtf8String(e);case"binary":return this.FromBinary(e);case"hex":return this.FromHex(e);case"base64":return this.FromBase64(e);case"base64url":return this.FromBase64Url(e);case"utf16le":return Ge.fromString(e,!0);case"utf16":case"utf16be":return Ge.fromString(e);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToBase64(e){let t=xt.toUint8Array(e);if(typeof btoa<"u"){let n=this.ToString(t,"binary");return btoa(n)}else return Buffer.from(t).toString("base64")}static FromBase64(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64(t))throw new TypeError("Argument 'base64Text' is not Base64 encoded");return typeof atob<"u"?this.FromBinary(atob(t)):new Uint8Array(Buffer.from(t,"base64")).buffer}static FromBase64Url(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64Url(t))throw new TypeError("Argument 'base64url' is not Base64Url encoded");return this.FromBase64(this.Base64Padding(t.replace(/\-/g,"+").replace(/\_/g,"/")))}static ToBase64Url(e){return this.ToBase64(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/\=/g,"")}static FromUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.FromBinary(e);case"utf8":return Zn.fromString(e);case"utf16":case"utf16be":return Ge.fromString(e);case"utf16le":case"usc2":return Ge.fromString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.ToBinary(e);case"utf8":return Zn.toString(e);case"utf16":case"utf16be":return Ge.toString(e);case"utf16le":case"usc2":return Ge.toString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromBinary(e){let t=e.length,n=new Uint8Array(t);for(let s=0;s<t;s++)n[s]=e.charCodeAt(s);return n.buffer}static ToBinary(e){let t=xt.toUint8Array(e),n="";for(let s=0;s<t.length;s++)n+=String.fromCharCode(t[s]);return n}static ToHex(e){let t=xt.toUint8Array(e),n="",s=t.length;for(let i=0;i<s;i++){let o=t[i];o<16&&(n+="0"),n+=o.toString(16)}return n}static FromHex(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isHex(t))throw new TypeError("Argument 'hexString' is not HEX encoded");t.length%2&&(t=`0${t}`);let n=new Uint8Array(t.length/2);for(let s=0;s<t.length;s=s+2){let i=t.slice(s,s+2);n[s/2]=parseInt(i,16)}return n.buffer}static ToUtf16String(e,t=!1){return Ge.toString(e,t)}static FromUtf16String(e,t=!1){return Ge.fromString(e,t)}static Base64Padding(e){let t=4-e.length%4;if(t<4)for(let n=0;n<t;n++)e+="=";return e}static formatString(e){return e?.replace(/[\n\r\t ]/g,"")||""}};jn.DEFAULT_UTF8_ENCODING="utf8";function gp(r,...e){let t=arguments[0];for(let n=1;n<arguments.length;n++){let s=arguments[n];for(let i in s)t[i]=s[i]}return t}function yp(...r){let e=r.map(s=>s.byteLength).reduce((s,i)=>s+i),t=new Uint8Array(e),n=0;return r.map(s=>new Uint8Array(s)).forEach(s=>{for(let i of s)t[n++]=i}),t.buffer}function bp(r,e){if(!(r&&e)||r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let s=0;s<r.byteLength;s++)if(t[s]!==n[s])return!1;return!0}Er.BufferSourceConverter=xt;Er.Convert=jn;Er.assign=gp;Er.combine=yp;Er.isEqual=bp});var cf=Mi((En,Ei)=>{(function(r,e){"use strict";var t={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(l){if(!Array.isArray(l)&&!ArrayBuffer.isView(l))return!1;for(var d=0;d<l.length;d++)if(!Number.isInteger(l[d])||l[d]<0||l[d]>255)return!1;return!0}function s(l,d){return(l&65535)*d+(((l>>>16)*d&65535)<<16)}function i(l,d){return l<<d|l>>>32-d}function o(l){return l^=l>>>16,l=s(l,2246822507),l^=l>>>13,l=s(l,3266489909),l^=l>>>16,l}function a(l,d){l=[l[0]>>>16,l[0]&65535,l[1]>>>16,l[1]&65535],d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535];var m=[0,0,0,0];return m[3]+=l[3]+d[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=l[2]+d[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=l[1]+d[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=l[0]+d[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function c(l,d){l=[l[0]>>>16,l[0]&65535,l[1]>>>16,l[1]&65535],d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535];var m=[0,0,0,0];return m[3]+=l[3]*d[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=l[2]*d[3],m[1]+=m[2]>>>16,m[2]&=65535,m[2]+=l[3]*d[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=l[1]*d[3],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=l[2]*d[2],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=l[3]*d[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=l[0]*d[3]+l[1]*d[2]+l[2]*d[1]+l[3]*d[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function h(l,d){return d%=64,d===32?[l[1],l[0]]:d<32?[l[0]<<d|l[1]>>>32-d,l[1]<<d|l[0]>>>32-d]:(d-=32,[l[1]<<d|l[0]>>>32-d,l[0]<<d|l[1]>>>32-d])}function f(l,d){return d%=64,d===0?l:d<32?[l[0]<<d|l[1]>>>32-d,l[1]<<d]:[l[1]<<d-32,0]}function u(l,d){return[l[0]^d[0],l[1]^d[1]]}function g(l){return l=u(l,[0,l[0]>>>1]),l=c(l,[4283543511,3981806797]),l=u(l,[0,l[0]>>>1]),l=c(l,[3301882366,444984403]),l=u(l,[0,l[0]>>>1]),l}t.x86.hash32=function(l,d){if(t.inputValidation&&!n(l))return e;d=d||0;for(var m=l.length%4,y=l.length-m,b=d,w=0,p=3432918353,E=461845907,A=0;A<y;A=A+4)w=l[A]|l[A+1]<<8|l[A+2]<<16|l[A+3]<<24,w=s(w,p),w=i(w,15),w=s(w,E),b^=w,b=i(b,13),b=s(b,5)+3864292196;switch(w=0,m){case 3:w^=l[A+2]<<16;case 2:w^=l[A+1]<<8;case 1:w^=l[A],w=s(w,p),w=i(w,15),w=s(w,E),b^=w}return b^=l.length,b=o(b),b>>>0},t.x86.hash128=function(l,d){if(t.inputValidation&&!n(l))return e;d=d||0;for(var m=l.length%16,y=l.length-m,b=d,w=d,p=d,E=d,A=0,_=0,x=0,I=0,C=597399067,j=2869860233,V=951274213,P=2716044179,L=0;L<y;L=L+16)A=l[L]|l[L+1]<<8|l[L+2]<<16|l[L+3]<<24,_=l[L+4]|l[L+5]<<8|l[L+6]<<16|l[L+7]<<24,x=l[L+8]|l[L+9]<<8|l[L+10]<<16|l[L+11]<<24,I=l[L+12]|l[L+13]<<8|l[L+14]<<16|l[L+15]<<24,A=s(A,C),A=i(A,15),A=s(A,j),b^=A,b=i(b,19),b+=w,b=s(b,5)+1444728091,_=s(_,j),_=i(_,16),_=s(_,V),w^=_,w=i(w,17),w+=p,w=s(w,5)+197830471,x=s(x,V),x=i(x,17),x=s(x,P),p^=x,p=i(p,15),p+=E,p=s(p,5)+2530024501,I=s(I,P),I=i(I,18),I=s(I,C),E^=I,E=i(E,13),E+=b,E=s(E,5)+850148119;switch(A=0,_=0,x=0,I=0,m){case 15:I^=l[L+14]<<16;case 14:I^=l[L+13]<<8;case 13:I^=l[L+12],I=s(I,P),I=i(I,18),I=s(I,C),E^=I;case 12:x^=l[L+11]<<24;case 11:x^=l[L+10]<<16;case 10:x^=l[L+9]<<8;case 9:x^=l[L+8],x=s(x,V),x=i(x,17),x=s(x,P),p^=x;case 8:_^=l[L+7]<<24;case 7:_^=l[L+6]<<16;case 6:_^=l[L+5]<<8;case 5:_^=l[L+4],_=s(_,j),_=i(_,16),_=s(_,V),w^=_;case 4:A^=l[L+3]<<24;case 3:A^=l[L+2]<<16;case 2:A^=l[L+1]<<8;case 1:A^=l[L],A=s(A,C),A=i(A,15),A=s(A,j),b^=A}return b^=l.length,w^=l.length,p^=l.length,E^=l.length,b+=w,b+=p,b+=E,w+=b,p+=b,E+=b,b=o(b),w=o(w),p=o(p),E=o(E),b+=w,b+=p,b+=E,w+=b,p+=b,E+=b,("00000000"+(b>>>0).toString(16)).slice(-8)+("00000000"+(w>>>0).toString(16)).slice(-8)+("00000000"+(p>>>0).toString(16)).slice(-8)+("00000000"+(E>>>0).toString(16)).slice(-8)},t.x64.hash128=function(l,d){if(t.inputValidation&&!n(l))return e;d=d||0;for(var m=l.length%16,y=l.length-m,b=[0,d],w=[0,d],p=[0,0],E=[0,0],A=[2277735313,289559509],_=[1291169091,658871167],x=0;x<y;x=x+16)p=[l[x+4]|l[x+5]<<8|l[x+6]<<16|l[x+7]<<24,l[x]|l[x+1]<<8|l[x+2]<<16|l[x+3]<<24],E=[l[x+12]|l[x+13]<<8|l[x+14]<<16|l[x+15]<<24,l[x+8]|l[x+9]<<8|l[x+10]<<16|l[x+11]<<24],p=c(p,A),p=h(p,31),p=c(p,_),b=u(b,p),b=h(b,27),b=a(b,w),b=a(c(b,[0,5]),[0,1390208809]),E=c(E,_),E=h(E,33),E=c(E,A),w=u(w,E),w=h(w,31),w=a(w,b),w=a(c(w,[0,5]),[0,944331445]);switch(p=[0,0],E=[0,0],m){case 15:E=u(E,f([0,l[x+14]],48));case 14:E=u(E,f([0,l[x+13]],40));case 13:E=u(E,f([0,l[x+12]],32));case 12:E=u(E,f([0,l[x+11]],24));case 11:E=u(E,f([0,l[x+10]],16));case 10:E=u(E,f([0,l[x+9]],8));case 9:E=u(E,[0,l[x+8]]),E=c(E,_),E=h(E,33),E=c(E,A),w=u(w,E);case 8:p=u(p,f([0,l[x+7]],56));case 7:p=u(p,f([0,l[x+6]],48));case 6:p=u(p,f([0,l[x+5]],40));case 5:p=u(p,f([0,l[x+4]],32));case 4:p=u(p,f([0,l[x+3]],24));case 3:p=u(p,f([0,l[x+2]],16));case 2:p=u(p,f([0,l[x+1]],8));case 1:p=u(p,[0,l[x]]),p=c(p,A),p=h(p,31),p=c(p,_),b=u(b,p)}return b=u(b,[0,l.length]),w=u(w,[0,l.length]),b=a(b,w),w=a(w,b),b=g(b),w=g(w),b=a(b,w),w=a(w,b),("00000000"+(b[0]>>>0).toString(16)).slice(-8)+("00000000"+(b[1]>>>0).toString(16)).slice(-8)+("00000000"+(w[0]>>>0).toString(16)).slice(-8)+("00000000"+(w[1]>>>0).toString(16)).slice(-8)},typeof En<"u"?(typeof Ei<"u"&&Ei.exports&&(En=Ei.exports=t),En.murmurHash3=t):typeof define=="function"&&define.amd?define([],function(){return t}):(t._murmurHash3=r.murmurHash3,t.noConflict=function(){return r.murmurHash3=t._murmurHash3,t._murmurHash3=e,t.noConflict=e,t},r.murmurHash3=t)})(En)});var uf=Mi((wv,lf)=>{lf.exports=cf()});var L0={};ke(L0,{RELAY_V2_HOP_CODEC:()=>We,RELAY_V2_STOP_CODEC:()=>sr,circuitRelayServer:()=>gf,circuitRelayTransport:()=>Tf});var Pi=Symbol.for("@libp2p/peer-id");var Vi="keep-alive";var ac=Symbol.for("@libp2p/transport");var oc;(function(r){r[r.FATAL_ALL=0]="FATAL_ALL",r[r.NO_FATAL=1]="NO_FATAL"})(oc||(oc={}));var ft=class extends Error{static name="AbortError";constructor(e="The operation was aborted"){super(e),this.name="AbortError"}};var ve=class extends Error{static name="InvalidParametersError";constructor(e="Invalid parameters"){super(e),this.name="InvalidParametersError"}},cr=class extends Error{static name="InvalidPublicKeyError";constructor(e="Invalid public key"){super(e),this.name="InvalidPublicKeyError"}};var _n=class extends Error{static name="InvalidMultihashError";constructor(e="Invalid Multihash"){super(e),this.name="InvalidMultihashError"}};var In=class extends Error{static name="InvalidMessageError";constructor(e="Invalid message"){super(e),this.name="InvalidMessageError"}};var Vr=class extends Error{static name="DialError";constructor(e="Dial error"){super(e),this.name="DialError"}},Gt=class extends Error{static name="ListenError";constructor(e="Listen error"){super(e),this.name="ListenError"}};var lr=class extends Error{static name="UnsupportedKeyTypeError";constructor(e="Unsupported key type"){super(e),this.name="UnsupportedKeyTypeError"}};var Re=(r,...e)=>{try{[...e]}catch{}};var qe=class extends EventTarget{#e=new Map;constructor(){super(),Re(1/0,this)}listenerCount(e){let t=this.#e.get(e);return t==null?0:t.length}addEventListener(e,t,n){super.addEventListener(e,t,n);let s=this.#e.get(e);s==null&&(s=[],this.#e.set(e,s)),s.push({callback:t,once:(n!==!0&&n!==!1&&n?.once)??!1})}removeEventListener(e,t,n){super.removeEventListener(e.toString(),t??null,n);let s=this.#e.get(e);s!=null&&(s=s.filter(({callback:i})=>i!==t),this.#e.set(e,s))}dispatchEvent(e){let t=super.dispatchEvent(e),n=this.#e.get(e.type);return n==null||(n=n.filter(({once:s})=>!s),this.#e.set(e.type,n)),t}safeDispatchEvent(e,t={}){return this.dispatchEvent(new CustomEvent(e,t))}};function cc(r){return r!=null&&typeof r.start=="function"&&typeof r.stop=="function"}async function lc(...r){let e=[];for(let t of r)cc(t)&&e.push(t);await Promise.all(e.map(async t=>{t.beforeStart!=null&&await t.beforeStart()})),await Promise.all(e.map(async t=>{await t.start()})),await Promise.all(e.map(async t=>{t.afterStart!=null&&await t.afterStart()}))}async function uc(...r){let e=[];for(let t of r)cc(t)&&e.push(t);await Promise.all(e.map(async t=>{t.beforeStop!=null&&await t.beforeStop()})),await Promise.all(e.map(async t=>{await t.stop()})),await Promise.all(e.map(async t=>{t.afterStop!=null&&await t.afterStop()}))}var fc=Symbol.for("@libp2p/service-capabilities"),hc=Symbol.for("@libp2p/service-dependencies");var zi={};ke(zi,{base58btc:()=>ee,base58flickr:()=>Zf});var hm=new Uint8Array(0);function dc(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function ht(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 pc(r){return new TextEncoder().encode(r)}function mc(r){return new TextDecoder().decode(r)}function qf(r,e){if(r.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),n=0;n<t.length;n++)t[n]=255;for(var s=0;s<r.length;s++){var i=r.charAt(s),o=i.charCodeAt(0);if(t[o]!==255)throw new TypeError(i+" is ambiguous");t[o]=s}var a=r.length,c=r.charAt(0),h=Math.log(a)/Math.log(256),f=Math.log(256)/Math.log(a);function u(d){if(d instanceof Uint8Array||(ArrayBuffer.isView(d)?d=new Uint8Array(d.buffer,d.byteOffset,d.byteLength):Array.isArray(d)&&(d=Uint8Array.from(d))),!(d instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(d.length===0)return"";for(var m=0,y=0,b=0,w=d.length;b!==w&&d[b]===0;)b++,m++;for(var p=(w-b)*f+1>>>0,E=new Uint8Array(p);b!==w;){for(var A=d[b],_=0,x=p-1;(A!==0||_<y)&&x!==-1;x--,_++)A+=256*E[x]>>>0,E[x]=A%a>>>0,A=A/a>>>0;if(A!==0)throw new Error("Non-zero carry");y=_,b++}for(var I=p-y;I!==p&&E[I]===0;)I++;for(var C=c.repeat(m);I<p;++I)C+=r.charAt(E[I]);return C}function g(d){if(typeof d!="string")throw new TypeError("Expected String");if(d.length===0)return new Uint8Array;var m=0;if(d[m]!==" "){for(var y=0,b=0;d[m]===c;)y++,m++;for(var w=(d.length-m)*h+1>>>0,p=new Uint8Array(w);d[m];){var E=t[d.charCodeAt(m)];if(E===255)return;for(var A=0,_=w-1;(E!==0||A<b)&&_!==-1;_--,A++)E+=a*p[_]>>>0,p[_]=E%256>>>0,E=E/256>>>0;if(E!==0)throw new Error("Non-zero carry");b=A,m++}if(d[m]!==" "){for(var x=w-b;x!==w&&p[x]===0;)x++;for(var I=new Uint8Array(y+(w-x)),C=y;x!==w;)I[C++]=p[x++];return I}}}function l(d){var m=g(d);if(m)return m;throw new Error(`Non-${e} character`)}return{encode:u,decodeUnsafe:g,decode:l}}var zf=qf,$f=zf,yc=$f;var Hi=class{name;prefix;baseEncode;constructor(e,t,n){this.name=e,this.prefix=t,this.baseEncode=n}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},Fi=class{name;prefix;baseDecode;prefixCodePoint;constructor(e,t,n){this.name=e,this.prefix=t;let s=t.codePointAt(0);if(s===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=s,this.baseDecode=n}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return bc(this,e)}},Ki=class{decoders;constructor(e){this.decoders=e}or(e){return bc(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n!=null)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function bc(r,e){return new Ki({...r.decoders??{[r.prefix]:r},...e.decoders??{[e.prefix]:e}})}var qi=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(e,t,n,s){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=s,this.encoder=new Hi(e,t,n),this.decoder=new Fi(e,t,s)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}};function ur({name:r,prefix:e,encode:t,decode:n}){return new qi(r,e,t,n)}function kt({name:r,prefix:e,alphabet:t}){let{encode:n,decode:s}=yc(t,r);return ur({prefix:e,name:r,encode:n,decode:i=>ht(s(i))})}function Gf(r,e,t,n){let s={};for(let f=0;f<e.length;++f)s[e[f]]=f;let i=r.length;for(;r[i-1]==="=";)--i;let o=new Uint8Array(i*t/8|0),a=0,c=0,h=0;for(let f=0;f<i;++f){let u=s[r[f]];if(u===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<t|u,a+=t,a>=8&&(a-=8,o[h++]=255&c>>a)}if(a>=t||255&c<<8-a)throw new SyntaxError("Unexpected end of data");return o}function Wf(r,e,t){let n=e[e.length-1]==="=",s=(1<<t)-1,i="",o=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],o+=8;o>t;)o-=t,i+=e[s&a>>o];if(o!==0&&(i+=e[s&a<<t-o]),n)for(;i.length*t&7;)i+="=";return i}function le({name:r,prefix:e,bitsPerChar:t,alphabet:n}){return ur({prefix:e,name:r,encode(s){return Wf(s,n,t)},decode(s){return Gf(s,n,t,r)}})}var ee=kt({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),Zf=kt({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var $i={};ke($i,{base32:()=>dt,base32hex:()=>Jf,base32hexpad:()=>eh,base32hexpadupper:()=>th,base32hexupper:()=>Qf,base32pad:()=>Yf,base32padupper:()=>Xf,base32upper:()=>jf,base32z:()=>rh});var dt=le({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),jf=le({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Yf=le({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Xf=le({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),Jf=le({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Qf=le({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),eh=le({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),th=le({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),rh=le({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var Gi={};ke(Gi,{base36:()=>Hr,base36upper:()=>nh});var Hr=kt({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),nh=kt({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var sh=vc,wc=128,ih=127,oh=~ih,ah=Math.pow(2,31);function vc(r,e,t){e=e||[],t=t||0;for(var n=t;r>=ah;)e[t++]=r&255|wc,r/=128;for(;r&oh;)e[t++]=r&255|wc,r>>>=7;return e[t]=r|0,vc.bytes=t-n+1,e}var ch=Wi,lh=128,xc=127;function Wi(r,n){var t=0,n=n||0,s=0,i=n,o,a=r.length;do{if(i>=a)throw Wi.bytes=0,new RangeError("Could not decode varint");o=r[i++],t+=s<28?(o&xc)<<s:(o&xc)*Math.pow(2,s),s+=7}while(o>=lh);return Wi.bytes=i-n,t}var uh=Math.pow(2,7),fh=Math.pow(2,14),hh=Math.pow(2,21),dh=Math.pow(2,28),ph=Math.pow(2,35),mh=Math.pow(2,42),gh=Math.pow(2,49),yh=Math.pow(2,56),bh=Math.pow(2,63),wh=function(r){return r<uh?1:r<fh?2:r<hh?3:r<dh?4:r<ph?5:r<mh?6:r<gh?7:r<yh?8:r<bh?9:10},xh={encode:sh,decode:ch,encodingLength:wh},vh=xh,Fr=vh;function Kr(r,e=0){return[Fr.decode(r,e),Fr.decode.bytes]}function fr(r,e,t=0){return Fr.encode(r,e,t),e}function hr(r){return Fr.encodingLength(r)}function Ze(r,e){let t=e.byteLength,n=hr(r),s=n+hr(t),i=new Uint8Array(s+t);return fr(r,i,0),fr(t,i,n),i.set(e,s),new dr(r,t,e,i)}function ze(r){let e=ht(r),[t,n]=Kr(e),[s,i]=Kr(e.subarray(n)),o=e.subarray(n+i);if(o.byteLength!==s)throw new Error("Incorrect length");return new dr(t,s,o,e)}function Ec(r,e){if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&dc(r.bytes,t.bytes)}}var dr=class{code;size;digest;bytes;constructor(e,t,n,s){this.code=e,this.size=t,this.digest=n,this.bytes=s}};function Sc(r,e){let{bytes:t,version:n}=r;switch(n){case 0:return Sh(t,Zi(r),e??ee.encoder);default:return Ah(t,Zi(r),e??dt.encoder)}}var Ac=new WeakMap;function Zi(r){let e=Ac.get(r);if(e==null){let t=new Map;return Ac.set(r,t),t}return e}var pe=class r{code;version;multihash;bytes;"/";constructor(e,t,n,s){this.code=t,this.version=e,this.multihash=n,this.bytes=s,this["/"]=s}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:e,multihash:t}=this;if(e!==qr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==Bh)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(t)}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:e,digest:t}=this.multihash,n=Ze(e,t);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(e){return r.equals(this,e)}static equals(e,t){let n=t;return n!=null&&e.code===n.code&&e.version===n.version&&Ec(e.multihash,n.multihash)}toString(e){return Sc(this,e)}toJSON(){return{"/":Sc(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof r)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:s,multihash:i,bytes:o}=t;return new r(n,s,i,o??Bc(n,s,i.bytes))}else if(t[_h]===!0){let{version:n,multihash:s,code:i}=t,o=ze(s);return r.create(n,i,o)}else return null}static create(e,t,n){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==qr)throw new Error(`Version 0 CID must use dag-pb (code: ${qr}) block encoding`);return new r(e,t,n,n.bytes)}case 1:{let s=Bc(e,t,n.bytes);return new r(e,t,n,s)}default:throw new Error("Invalid version")}}static createV0(e){return r.create(0,qr,e)}static createV1(e,t){return r.create(1,e,t)}static decode(e){let[t,n]=r.decodeFirst(e);if(n.length!==0)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=r.inspectBytes(e),n=t.size-t.multihashSize,s=ht(e.subarray(n,n+t.multihashSize));if(s.byteLength!==t.multihashSize)throw new Error("Incorrect length");let i=s.subarray(t.multihashSize-t.digestSize),o=new dr(t.multihashCode,t.digestSize,i,s);return[t.version===0?r.createV0(o):r.createV1(t.codec,o),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[u,g]=Kr(e.subarray(t));return t+=g,u},s=n(),i=qr;if(s===18?(s=0,t=0):i=n(),s!==0&&s!==1)throw new RangeError(`Invalid CID version ${s}`);let o=t,a=n(),c=n(),h=t+c,f=h-o;return{version:s,codec:i,multihashCode:a,digestSize:c,multihashSize:f,size:h}}static parse(e,t){let[n,s]=Eh(e,t),i=r.decode(s);if(i.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return Zi(i).set(n,e),i}};function Eh(r,e){switch(r[0]){case"Q":{let t=e??ee;return[ee.prefix,t.decode(`${ee.prefix}${r}`)]}case ee.prefix:{let t=e??ee;return[ee.prefix,t.decode(r)]}case dt.prefix:{let t=e??dt;return[dt.prefix,t.decode(r)]}case Hr.prefix:{let t=e??Hr;return[Hr.prefix,t.decode(r)]}default:{if(e==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[r[0],e.decode(r)]}}}function Sh(r,e,t){let{prefix:n}=t;if(n!==ee.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let s=e.get(n);if(s==null){let i=t.encode(r).slice(1);return e.set(n,i),i}else return s}function Ah(r,e,t){let{prefix:n}=t,s=e.get(n);if(s==null){let i=t.encode(r);return e.set(n,i),i}else return s}var qr=112,Bh=18;function Bc(r,e,t){let n=hr(r),s=n+hr(e),i=new Uint8Array(s+t.byteLength);return fr(r,i,0),fr(e,i,n),i.set(t,s),i}var _h=Symbol.for("@ipld/js-cid/CID");var ji={};ke(ji,{identity:()=>pt});var _c=0,Ih="identity",Ic=ht;function Th(r){return Ze(_c,Ic(r))}var pt={code:_c,name:Ih,encode:Ic,digest:Th};function me(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function Tc(r){if(!Number.isSafeInteger(r)||r<0)throw new Error("positive integer expected, got "+r)}function kh(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function pr(r,...e){if(!kh(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error("Uint8Array expected of length "+e+", got length="+r.length)}function kc(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");Tc(r.outputLen),Tc(r.blockLen)}function mr(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function Cc(r,e){pr(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var Wt=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;var kn=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),je=(r,e)=>r<<32-e|r>>>e;function Nc(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function zr(r){return typeof r=="string"&&(r=Nc(r)),pr(r),r}function Yi(...r){let e=0;for(let n=0;n<r.length;n++){let s=r[n];pr(s),e+=s.length}let t=new Uint8Array(e);for(let n=0,s=0;n<r.length;n++){let i=r[n];t.set(i,s),s+=i.length}return t}var gr=class{clone(){return this._cloneInto()}};function Cn(r){let e=n=>r().update(zr(n)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function Nn(r=32){if(Wt&&typeof Wt.getRandomValues=="function")return Wt.getRandomValues(new Uint8Array(r));if(Wt&&typeof Wt.randomBytes=="function")return Wt.randomBytes(r);throw new Error("crypto.getRandomValues must be defined")}function Ch(r,e,t,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,n);let s=BigInt(32),i=BigInt(4294967295),o=Number(t>>s&i),a=Number(t&i),c=n?4:0,h=n?0:4;r.setUint32(e+c,o,n),r.setUint32(e+h,a,n)}var Rc=(r,e,t)=>r&e^~r&t,Lc=(r,e,t)=>r&e^r&t^e&t,yr=class extends gr{constructor(e,t,n,s){super(),this.blockLen=e,this.outputLen=t,this.padOffset=n,this.isLE=s,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=kn(this.buffer)}update(e){mr(this);let{view:t,buffer:n,blockLen:s}=this;e=zr(e);let i=e.length;for(let o=0;o<i;){let a=Math.min(s-this.pos,i-o);if(a===s){let c=kn(e);for(;s<=i-o;o+=s)this.process(c,o);continue}n.set(e.subarray(o,o+a),this.pos),this.pos+=a,o+=a,this.pos===s&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){mr(this),Cc(e,this),this.finished=!0;let{buffer:t,view:n,blockLen:s,isLE:i}=this,{pos:o}=this;t[o++]=128,this.buffer.subarray(o).fill(0),this.padOffset>s-o&&(this.process(n,0),o=0);for(let u=o;u<s;u++)t[u]=0;Ch(n,s-8,BigInt(this.length*8),i),this.process(n,0);let a=kn(e),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let h=c/4,f=this.get();if(h>f.length)throw new Error("_sha2: outputLen bigger than state");for(let u=0;u<h;u++)a.setUint32(4*u,f[u],i)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let n=e.slice(0,t);return this.destroy(),n}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:n,length:s,finished:i,destroyed:o,pos:a}=this;return e.length=s,e.pos=a,e.finished=i,e.destroyed=o,s%t&&e.buffer.set(n),e}};var Rn=BigInt(4294967295),Xi=BigInt(32);function Uc(r,e=!1){return e?{h:Number(r&Rn),l:Number(r>>Xi&Rn)}:{h:Number(r>>Xi&Rn)|0,l:Number(r&Rn)|0}}function Nh(r,e=!1){let t=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let s=0;s<r.length;s++){let{h:i,l:o}=Uc(r[s],e);[t[s],n[s]]=[i,o]}return[t,n]}var Rh=(r,e)=>BigInt(r>>>0)<<Xi|BigInt(e>>>0),Lh=(r,e,t)=>r>>>t,Uh=(r,e,t)=>r<<32-t|e>>>t,Dh=(r,e,t)=>r>>>t|e<<32-t,Oh=(r,e,t)=>r<<32-t|e>>>t,Mh=(r,e,t)=>r<<64-t|e>>>t-32,Ph=(r,e,t)=>r>>>t-32|e<<64-t,Vh=(r,e)=>e,Hh=(r,e)=>r,Fh=(r,e,t)=>r<<t|e>>>32-t,Kh=(r,e,t)=>e<<t|r>>>32-t,qh=(r,e,t)=>e<<t-32|r>>>64-t,zh=(r,e,t)=>r<<t-32|e>>>64-t;function $h(r,e,t,n){let s=(e>>>0)+(n>>>0);return{h:r+t+(s/2**32|0)|0,l:s|0}}var Gh=(r,e,t)=>(r>>>0)+(e>>>0)+(t>>>0),Wh=(r,e,t,n)=>e+t+n+(r/2**32|0)|0,Zh=(r,e,t,n)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0),jh=(r,e,t,n,s)=>e+t+n+s+(r/2**32|0)|0,Yh=(r,e,t,n,s)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0)+(s>>>0),Xh=(r,e,t,n,s,i)=>e+t+n+s+i+(r/2**32|0)|0;var Jh={fromBig:Uc,split:Nh,toBig:Rh,shrSH:Lh,shrSL:Uh,rotrSH:Dh,rotrSL:Oh,rotrBH:Mh,rotrBL:Ph,rotr32H:Vh,rotr32L:Hh,rotlSH:Fh,rotlSL:Kh,rotlBH:qh,rotlBL:zh,add:$h,add3L:Gh,add3H:Wh,add4L:Zh,add4H:jh,add5H:Xh,add5L:Yh},M=Jh;var[Qh,ed]=M.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))),Ct=new Uint32Array(80),Nt=new Uint32Array(80),Ji=class extends yr{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:e,Al:t,Bh:n,Bl:s,Ch:i,Cl:o,Dh:a,Dl:c,Eh:h,El:f,Fh:u,Fl:g,Gh:l,Gl:d,Hh:m,Hl:y}=this;return[e,t,n,s,i,o,a,c,h,f,u,g,l,d,m,y]}set(e,t,n,s,i,o,a,c,h,f,u,g,l,d,m,y){this.Ah=e|0,this.Al=t|0,this.Bh=n|0,this.Bl=s|0,this.Ch=i|0,this.Cl=o|0,this.Dh=a|0,this.Dl=c|0,this.Eh=h|0,this.El=f|0,this.Fh=u|0,this.Fl=g|0,this.Gh=l|0,this.Gl=d|0,this.Hh=m|0,this.Hl=y|0}process(e,t){for(let p=0;p<16;p++,t+=4)Ct[p]=e.getUint32(t),Nt[p]=e.getUint32(t+=4);for(let p=16;p<80;p++){let E=Ct[p-15]|0,A=Nt[p-15]|0,_=M.rotrSH(E,A,1)^M.rotrSH(E,A,8)^M.shrSH(E,A,7),x=M.rotrSL(E,A,1)^M.rotrSL(E,A,8)^M.shrSL(E,A,7),I=Ct[p-2]|0,C=Nt[p-2]|0,j=M.rotrSH(I,C,19)^M.rotrBH(I,C,61)^M.shrSH(I,C,6),V=M.rotrSL(I,C,19)^M.rotrBL(I,C,61)^M.shrSL(I,C,6),P=M.add4L(x,V,Nt[p-7],Nt[p-16]),L=M.add4H(P,_,j,Ct[p-7],Ct[p-16]);Ct[p]=L|0,Nt[p]=P|0}let{Ah:n,Al:s,Bh:i,Bl:o,Ch:a,Cl:c,Dh:h,Dl:f,Eh:u,El:g,Fh:l,Fl:d,Gh:m,Gl:y,Hh:b,Hl:w}=this;for(let p=0;p<80;p++){let E=M.rotrSH(u,g,14)^M.rotrSH(u,g,18)^M.rotrBH(u,g,41),A=M.rotrSL(u,g,14)^M.rotrSL(u,g,18)^M.rotrBL(u,g,41),_=u&l^~u&m,x=g&d^~g&y,I=M.add5L(w,A,x,ed[p],Nt[p]),C=M.add5H(I,b,E,_,Qh[p],Ct[p]),j=I|0,V=M.rotrSH(n,s,28)^M.rotrBH(n,s,34)^M.rotrBH(n,s,39),P=M.rotrSL(n,s,28)^M.rotrBL(n,s,34)^M.rotrBL(n,s,39),L=n&i^n&a^i&a,T=s&o^s&c^o&c;b=m|0,w=y|0,m=l|0,y=d|0,l=u|0,d=g|0,{h:u,l:g}=M.add(h|0,f|0,C|0,j|0),h=a|0,f=c|0,a=i|0,c=o|0,i=n|0,o=s|0;let R=M.add3L(j,P,T);n=M.add3H(R,C,V,L),s=R|0}({h:n,l:s}=M.add(this.Ah|0,this.Al|0,n|0,s|0)),{h:i,l:o}=M.add(this.Bh|0,this.Bl|0,i|0,o|0),{h:a,l:c}=M.add(this.Ch|0,this.Cl|0,a|0,c|0),{h,l:f}=M.add(this.Dh|0,this.Dl|0,h|0,f|0),{h:u,l:g}=M.add(this.Eh|0,this.El|0,u|0,g|0),{h:l,l:d}=M.add(this.Fh|0,this.Fl|0,l|0,d|0),{h:m,l:y}=M.add(this.Gh|0,this.Gl|0,m|0,y|0),{h:b,l:w}=M.add(this.Hh|0,this.Hl|0,b|0,w|0),this.set(n,s,i,o,a,c,h,f,u,g,l,d,m,y,b,w)}roundClean(){Ct.fill(0),Nt.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 Dc=Cn(()=>new Ji);var Dn={};ke(Dn,{aInRange:()=>Le,abool:()=>Ye,abytes:()=>br,bitGet:()=>od,bitLen:()=>ro,bitMask:()=>Gr,bitSet:()=>ad,bytesToHex:()=>gt,bytesToNumberBE:()=>yt,bytesToNumberLE:()=>Lt,concatBytes:()=>bt,createHmacDrbg:()=>no,ensureBytes:()=>oe,equalBytes:()=>sd,hexToBytes:()=>jt,hexToNumber:()=>to,inRange:()=>$r,isBytes:()=>Rt,memoized:()=>Xt,notImplemented:()=>ld,numberToBytesBE:()=>Ut,numberToBytesLE:()=>Yt,numberToHexUnpadded:()=>Zt,numberToVarBytesBE:()=>nd,utf8ToBytes:()=>id,validateObject:()=>it});var Ln=BigInt(0),Un=BigInt(1),td=BigInt(2);function Rt(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function br(r){if(!Rt(r))throw new Error("Uint8Array expected")}function Ye(r,e){if(typeof e!="boolean")throw new Error(r+" boolean expected, got "+e)}var rd=Array.from({length:256},(r,e)=>e.toString(16).padStart(2,"0"));function gt(r){br(r);let e="";for(let t=0;t<r.length;t++)e+=rd[r[t]];return e}function Zt(r){let e=r.toString(16);return e.length&1?"0"+e:e}function to(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return r===""?Ln:BigInt("0x"+r)}var mt={_0:48,_9:57,A:65,F:70,a:97,f:102};function Oc(r){if(r>=mt._0&&r<=mt._9)return r-mt._0;if(r>=mt.A&&r<=mt.F)return r-(mt.A-10);if(r>=mt.a&&r<=mt.f)return r-(mt.a-10)}function jt(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let e=r.length,t=e/2;if(e%2)throw new Error("hex string expected, got unpadded hex of length "+e);let n=new Uint8Array(t);for(let s=0,i=0;s<t;s++,i+=2){let o=Oc(r.charCodeAt(i)),a=Oc(r.charCodeAt(i+1));if(o===void 0||a===void 0){let c=r[i]+r[i+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+i)}n[s]=o*16+a}return n}function yt(r){return to(gt(r))}function Lt(r){return br(r),to(gt(Uint8Array.from(r).reverse()))}function Ut(r,e){return jt(r.toString(16).padStart(e*2,"0"))}function Yt(r,e){return Ut(r,e).reverse()}function nd(r){return jt(Zt(r))}function oe(r,e,t){let n;if(typeof e=="string")try{n=jt(e)}catch(i){throw new Error(r+" must be hex string or Uint8Array, cause: "+i)}else if(Rt(e))n=Uint8Array.from(e);else throw new Error(r+" must be hex string or Uint8Array");let s=n.length;if(typeof t=="number"&&s!==t)throw new Error(r+" of length "+t+" expected, got "+s);return n}function bt(...r){let e=0;for(let n=0;n<r.length;n++){let s=r[n];br(s),e+=s.length}let t=new Uint8Array(e);for(let n=0,s=0;n<r.length;n++){let i=r[n];t.set(i,s),s+=i.length}return t}function sd(r,e){if(r.length!==e.length)return!1;let t=0;for(let n=0;n<r.length;n++)t|=r[n]^e[n];return t===0}function id(r){if(typeof r!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(r))}var Qi=r=>typeof r=="bigint"&&Ln<=r;function $r(r,e,t){return Qi(r)&&Qi(e)&&Qi(t)&&e<=r&&r<t}function Le(r,e,t,n){if(!$r(e,t,n))throw new Error("expected valid "+r+": "+t+" <= n < "+n+", got "+e)}function ro(r){let e;for(e=0;r>Ln;r>>=Un,e+=1);return e}function od(r,e){return r>>BigInt(e)&Un}function ad(r,e,t){return r|(t?Un:Ln)<<BigInt(e)}var Gr=r=>(td<<BigInt(r-1))-Un,eo=r=>new Uint8Array(r),Mc=r=>Uint8Array.from(r);function no(r,e,t){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof e!="number"||e<2)throw new Error("qByteLen must be a number");if(typeof t!="function")throw new Error("hmacFn must be a function");let n=eo(r),s=eo(r),i=0,o=()=>{n.fill(1),s.fill(0),i=0},a=(...u)=>t(s,n,...u),c=(u=eo())=>{s=a(Mc([0]),u),n=a(),u.length!==0&&(s=a(Mc([1]),u),n=a())},h=()=>{if(i++>=1e3)throw new Error("drbg: tried 1000 values");let u=0,g=[];for(;u<e;){n=a();let l=n.slice();g.push(l),u+=n.length}return bt(...g)};return(u,g)=>{o(),c(u);let l;for(;!(l=g(h()));)c();return o(),l}}var cd={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"||Rt(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,e)=>e.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function it(r,e,t={}){let n=(s,i,o)=>{let a=cd[i];if(typeof a!="function")throw new Error("invalid validator function");let c=r[s];if(!(o&&c===void 0)&&!a(c,r))throw new Error("param "+String(s)+" is invalid. Expected "+i+", got "+c)};for(let[s,i]of Object.entries(e))n(s,i,!1);for(let[s,i]of Object.entries(t))n(s,i,!0);return r}var ld=()=>{throw new Error("not implemented")};function Xt(r){let e=new WeakMap;return(t,...n)=>{let s=e.get(t);if(s!==void 0)return s;let i=r(t,...n);return e.set(t,i),i}}var ue=BigInt(0),se=BigInt(1),Jt=BigInt(2),ud=BigInt(3),so=BigInt(4),Pc=BigInt(5),Vc=BigInt(8),fd=BigInt(9),hd=BigInt(16);function J(r,e){let t=r%e;return t>=ue?t:e+t}function dd(r,e,t){if(e<ue)throw new Error("invalid exponent, negatives unsupported");if(t<=ue)throw new Error("invalid modulus");if(t===se)return ue;let n=se;for(;e>ue;)e&se&&(n=n*r%t),r=r*r%t,e>>=se;return n}function ie(r,e,t){let n=r;for(;e-- >ue;)n*=n,n%=t;return n}function On(r,e){if(r===ue)throw new Error("invert: expected non-zero number");if(e<=ue)throw new Error("invert: expected positive modulus, got "+e);let t=J(r,e),n=e,s=ue,i=se,o=se,a=ue;for(;t!==ue;){let h=n/t,f=n%t,u=s-o*h,g=i-a*h;n=t,t=f,s=o,i=a,o=u,a=g}if(n!==se)throw new Error("invert: does not exist");return J(s,e)}function pd(r){let e=(r-se)/Jt,t,n,s;for(t=r-se,n=0;t%Jt===ue;t/=Jt,n++);for(s=Jt;s<r&&dd(s,e,r)!==r-se;s++)if(s>1e3)throw new Error("Cannot find square root: likely non-prime P");if(n===1){let o=(r+se)/so;return function(c,h){let f=c.pow(h,o);if(!c.eql(c.sqr(f),h))throw new Error("Cannot find square root");return f}}let i=(t+se)/Jt;return function(a,c){if(a.pow(c,e)===a.neg(a.ONE))throw new Error("Cannot find square root");let h=n,f=a.pow(a.mul(a.ONE,s),t),u=a.pow(c,i),g=a.pow(c,t);for(;!a.eql(g,a.ONE);){if(a.eql(g,a.ZERO))return a.ZERO;let l=1;for(let m=a.sqr(g);l<h&&!a.eql(m,a.ONE);l++)m=a.sqr(m);let d=a.pow(f,se<<BigInt(h-l-1));f=a.sqr(d),u=a.mul(u,d),g=a.mul(g,f),h=l}return u}}function md(r){if(r%so===ud){let e=(r+se)/so;return function(n,s){let i=n.pow(s,e);if(!n.eql(n.sqr(i),s))throw new Error("Cannot find square root");return i}}if(r%Vc===Pc){let e=(r-Pc)/Vc;return function(n,s){let i=n.mul(s,Jt),o=n.pow(i,e),a=n.mul(s,o),c=n.mul(n.mul(a,Jt),o),h=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(h),s))throw new Error("Cannot find square root");return h}}return r%hd,pd(r)}var Hc=(r,e)=>(J(r,e)&se)===se,gd=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function io(r){let e={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},t=gd.reduce((n,s)=>(n[s]="function",n),e);return it(r,t)}function yd(r,e,t){if(t<ue)throw new Error("invalid exponent, negatives unsupported");if(t===ue)return r.ONE;if(t===se)return e;let n=r.ONE,s=e;for(;t>ue;)t&se&&(n=r.mul(n,s)),s=r.sqr(s),t>>=se;return n}function bd(r,e){let t=new Array(e.length),n=e.reduce((i,o,a)=>r.is0(o)?i:(t[a]=i,r.mul(i,o)),r.ONE),s=r.inv(n);return e.reduceRight((i,o,a)=>r.is0(o)?i:(t[a]=r.mul(i,t[a]),r.mul(i,o)),s),t}function oo(r,e){let t=e!==void 0?e:r.toString(2).length,n=Math.ceil(t/8);return{nBitLength:t,nByteLength:n}}function Dt(r,e,t=!1,n={}){if(r<=ue)throw new Error("invalid field: expected ORDER > 0, got "+r);let{nBitLength:s,nByteLength:i}=oo(r,e);if(i>2048)throw new Error("invalid field: expected ORDER of <= 2048 bytes");let o,a=Object.freeze({ORDER:r,isLE:t,BITS:s,BYTES:i,MASK:Gr(s),ZERO:ue,ONE:se,create:c=>J(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error("invalid field element: expected bigint, got "+typeof c);return ue<=c&&c<r},is0:c=>c===ue,isOdd:c=>(c&se)===se,neg:c=>J(-c,r),eql:(c,h)=>c===h,sqr:c=>J(c*c,r),add:(c,h)=>J(c+h,r),sub:(c,h)=>J(c-h,r),mul:(c,h)=>J(c*h,r),pow:(c,h)=>yd(a,c,h),div:(c,h)=>J(c*On(h,r),r),sqrN:c=>c*c,addN:(c,h)=>c+h,subN:(c,h)=>c-h,mulN:(c,h)=>c*h,inv:c=>On(c,r),sqrt:n.sqrt||(c=>(o||(o=md(r)),o(a,c))),invertBatch:c=>bd(a,c),cmov:(c,h,f)=>f?h:c,toBytes:c=>t?Yt(c,i):Ut(c,i),fromBytes:c=>{if(c.length!==i)throw new Error("Field.fromBytes: expected "+i+" bytes, got "+c.length);return t?Lt(c):yt(c)}});return Object.freeze(a)}function Fc(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let e=r.toString(2).length;return Math.ceil(e/8)}function ao(r){let e=Fc(r);return e+Math.ceil(e/2)}function Kc(r,e,t=!1){let n=r.length,s=Fc(e),i=ao(e);if(n<16||n<i||n>1024)throw new Error("expected "+i+"-1024 bytes of input, got "+n);let o=t?Lt(r):yt(r),a=J(o,e-se)+se;return t?Yt(a,s):Ut(a,s)}var qc=BigInt(0),Mn=BigInt(1);function co(r,e){let t=e.negate();return r?t:e}function zc(r,e){if(!Number.isSafeInteger(r)||r<=0||r>e)throw new Error("invalid window size, expected [1.."+e+"], got W="+r)}function lo(r,e){zc(r,e);let t=Math.ceil(e/r)+1,n=2**(r-1);return{windows:t,windowSize:n}}function xd(r,e){if(!Array.isArray(r))throw new Error("array expected");r.forEach((t,n)=>{if(!(t instanceof e))throw new Error("invalid point at index "+n)})}function vd(r,e){if(!Array.isArray(r))throw new Error("array of scalars expected");r.forEach((t,n)=>{if(!e.isValid(t))throw new Error("invalid scalar at index "+n)})}var uo=new WeakMap,$c=new WeakMap;function fo(r){return $c.get(r)||1}function Pn(r,e){return{constTimeNegate:co,hasPrecomputes(t){return fo(t)!==1},unsafeLadder(t,n,s=r.ZERO){let i=t;for(;n>qc;)n&Mn&&(s=s.add(i)),i=i.double(),n>>=Mn;return s},precomputeWindow(t,n){let{windows:s,windowSize:i}=lo(n,e),o=[],a=t,c=a;for(let h=0;h<s;h++){c=a,o.push(c);for(let f=1;f<i;f++)c=c.add(a),o.push(c);a=c.double()}return o},wNAF(t,n,s){let{windows:i,windowSize:o}=lo(t,e),a=r.ZERO,c=r.BASE,h=BigInt(2**t-1),f=2**t,u=BigInt(t);for(let g=0;g<i;g++){let l=g*o,d=Number(s&h);s>>=u,d>o&&(d-=f,s+=Mn);let m=l,y=l+Math.abs(d)-1,b=g%2!==0,w=d<0;d===0?c=c.add(co(b,n[m])):a=a.add(co(w,n[y]))}return{p:a,f:c}},wNAFUnsafe(t,n,s,i=r.ZERO){let{windows:o,windowSize:a}=lo(t,e),c=BigInt(2**t-1),h=2**t,f=BigInt(t);for(let u=0;u<o;u++){let g=u*a;if(s===qc)break;let l=Number(s&c);if(s>>=f,l>a&&(l-=h,s+=Mn),l===0)continue;let d=n[g+Math.abs(l)-1];l<0&&(d=d.negate()),i=i.add(d)}return i},getPrecomputes(t,n,s){let i=uo.get(n);return i||(i=this.precomputeWindow(n,t),t!==1&&uo.set(n,s(i))),i},wNAFCached(t,n,s){let i=fo(t);return this.wNAF(i,this.getPrecomputes(i,t,s),n)},wNAFCachedUnsafe(t,n,s,i){let o=fo(t);return o===1?this.unsafeLadder(t,n,i):this.wNAFUnsafe(o,this.getPrecomputes(o,t,s),n,i)},setWindowSize(t,n){zc(n,e),$c.set(t,n),uo.delete(t)}}}function Vn(r,e,t,n){if(xd(t,r),vd(n,e),t.length!==n.length)throw new Error("arrays of points and scalars must have equal length");let s=r.ZERO,i=ro(BigInt(t.length)),o=i>12?i-3:i>4?i-2:i?2:1,a=(1<<o)-1,c=new Array(a+1).fill(s),h=Math.floor((e.BITS-1)/o)*o,f=s;for(let u=h;u>=0;u-=o){c.fill(s);for(let l=0;l<n.length;l++){let d=n[l],m=Number(d>>BigInt(u)&BigInt(a));c[m]=c[m].add(t[l])}let g=s;for(let l=c.length-1,d=s;l>0;l--)d=d.add(c[l]),g=g.add(d);if(f=f.add(g),u!==0)for(let l=0;l<o;l++)f=f.double()}return f}function Wr(r){return io(r.Fp),it(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...oo(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var Xe=BigInt(0),Ue=BigInt(1),Hn=BigInt(2),Ed=BigInt(8),Sd={zip215:!0};function Ad(r){let e=Wr(r);return it(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...e})}function Gc(r){let e=Ad(r),{Fp:t,n,prehash:s,hash:i,randomBytes:o,nByteLength:a,h:c}=e,h=Hn<<BigInt(a*8)-Ue,f=t.create,u=Dt(e.n,e.nBitLength),g=e.uvRatio||((S,v)=>{try{return{isValid:!0,value:t.sqrt(S*t.inv(v))}}catch{return{isValid:!1,value:Xe}}}),l=e.adjustScalarBytes||(S=>S),d=e.domain||((S,v,B)=>{if(Ye("phflag",B),v.length||B)throw new Error("Contexts/pre-hash are not supported");return S});function m(S,v){Le("coordinate "+S,v,Xe,h)}function y(S){if(!(S instanceof p))throw new Error("ExtendedPoint expected")}let b=Xt((S,v)=>{let{ex:B,ey:N,ez:U}=S,D=S.is0();v==null&&(v=D?Ed:t.inv(U));let H=f(B*v),$=f(N*v),O=f(U*v);if(D)return{x:Xe,y:Ue};if(O!==Ue)throw new Error("invZ was invalid");return{x:H,y:$}}),w=Xt(S=>{let{a:v,d:B}=e;if(S.is0())throw new Error("bad point: ZERO");let{ex:N,ey:U,ez:D,et:H}=S,$=f(N*N),O=f(U*U),Y=f(D*D),re=f(Y*Y),he=f($*v),de=f(Y*f(he+O)),ye=f(re+f(B*f($*O)));if(de!==ye)throw new Error("bad point: equation left != right (1)");let xe=f(N*U),Ne=f(D*H);if(xe!==Ne)throw new Error("bad point: equation left != right (2)");return!0});class p{constructor(v,B,N,U){this.ex=v,this.ey=B,this.ez=N,this.et=U,m("x",v),m("y",B),m("z",N),m("t",U),Object.freeze(this)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(v){if(v instanceof p)throw new Error("extended point not allowed");let{x:B,y:N}=v||{};return m("x",B),m("y",N),new p(B,N,Ue,f(B*N))}static normalizeZ(v){let B=t.invertBatch(v.map(N=>N.ez));return v.map((N,U)=>N.toAffine(B[U])).map(p.fromAffine)}static msm(v,B){return Vn(p,u,v,B)}_setWindowSize(v){_.setWindowSize(this,v)}assertValidity(){w(this)}equals(v){y(v);let{ex:B,ey:N,ez:U}=this,{ex:D,ey:H,ez:$}=v,O=f(B*$),Y=f(D*U),re=f(N*$),he=f(H*U);return O===Y&&re===he}is0(){return this.equals(p.ZERO)}negate(){return new p(f(-this.ex),this.ey,this.ez,f(-this.et))}double(){let{a:v}=e,{ex:B,ey:N,ez:U}=this,D=f(B*B),H=f(N*N),$=f(Hn*f(U*U)),O=f(v*D),Y=B+N,re=f(f(Y*Y)-D-H),he=O+H,de=he-$,ye=O-H,xe=f(re*de),Ne=f(he*ye),Te=f(re*ye),nt=f(de*he);return new p(xe,Ne,nt,Te)}add(v){y(v);let{a:B,d:N}=e,{ex:U,ey:D,ez:H,et:$}=this,{ex:O,ey:Y,ez:re,et:he}=v;if(B===BigInt(-1)){let Xa=f((D-U)*(Y+O)),Ja=f((D+U)*(Y-O)),Oi=f(Ja-Xa);if(Oi===Xe)return this.double();let Qa=f(H*Hn*he),ec=f($*Hn*re),tc=ec+Qa,rc=Ja+Xa,nc=ec-Qa,Lf=f(tc*Oi),Uf=f(rc*nc),Df=f(tc*nc),Of=f(Oi*rc);return new p(Lf,Uf,Of,Df)}let de=f(U*O),ye=f(D*Y),xe=f($*N*he),Ne=f(H*re),Te=f((U+D)*(O+Y)-de-ye),nt=Ne-xe,ut=Ne+xe,Pr=f(ye-B*de),kf=f(Te*nt),Cf=f(ut*Pr),Nf=f(Te*Pr),Rf=f(nt*ut);return new p(kf,Cf,Rf,Nf)}subtract(v){return this.add(v.negate())}wNAF(v){return _.wNAFCached(this,v,p.normalizeZ)}multiply(v){let B=v;Le("scalar",B,Ue,n);let{p:N,f:U}=this.wNAF(B);return p.normalizeZ([N,U])[0]}multiplyUnsafe(v,B=p.ZERO){let N=v;return Le("scalar",N,Xe,n),N===Xe?A:this.is0()||N===Ue?this:_.wNAFCachedUnsafe(this,N,p.normalizeZ,B)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return _.unsafeLadder(this,n).is0()}toAffine(v){return b(this,v)}clearCofactor(){let{h:v}=e;return v===Ue?this:this.multiplyUnsafe(v)}static fromHex(v,B=!1){let{d:N,a:U}=e,D=t.BYTES;v=oe("pointHex",v,D),Ye("zip215",B);let H=v.slice(),$=v[D-1];H[D-1]=$&-129;let O=Lt(H),Y=B?h:t.ORDER;Le("pointHex.y",O,Xe,Y);let re=f(O*O),he=f(re-Ue),de=f(N*re-U),{isValid:ye,value:xe}=g(he,de);if(!ye)throw new Error("Point.fromHex: invalid y coordinate");let Ne=(xe&Ue)===Ue,Te=($&128)!==0;if(!B&&xe===Xe&&Te)throw new Error("Point.fromHex: x=0 and x_0=1");return Te!==Ne&&(xe=f(-xe)),p.fromAffine({x:xe,y:O})}static fromPrivateKey(v){return C(v).point}toRawBytes(){let{x:v,y:B}=this.toAffine(),N=Yt(B,t.BYTES);return N[N.length-1]|=v&Ue?128:0,N}toHex(){return gt(this.toRawBytes())}}p.BASE=new p(e.Gx,e.Gy,Ue,f(e.Gx*e.Gy)),p.ZERO=new p(Xe,Ue,Ue,Xe);let{BASE:E,ZERO:A}=p,_=Pn(p,a*8);function x(S){return J(S,n)}function I(S){return x(Lt(S))}function C(S){let v=t.BYTES;S=oe("private key",S,v);let B=oe("hashed private key",i(S),2*v),N=l(B.slice(0,v)),U=B.slice(v,2*v),D=I(N),H=E.multiply(D),$=H.toRawBytes();return{head:N,prefix:U,scalar:D,point:H,pointBytes:$}}function j(S){return C(S).pointBytes}function V(S=new Uint8Array,...v){let B=bt(...v);return I(i(d(B,oe("context",S),!!s)))}function P(S,v,B={}){S=oe("message",S),s&&(S=s(S));let{prefix:N,scalar:U,pointBytes:D}=C(v),H=V(B.context,N,S),$=E.multiply(H).toRawBytes(),O=V(B.context,$,D,S),Y=x(H+O*U);Le("signature.s",Y,Xe,n);let re=bt($,Yt(Y,t.BYTES));return oe("result",re,t.BYTES*2)}let L=Sd;function T(S,v,B,N=L){let{context:U,zip215:D}=N,H=t.BYTES;S=oe("signature",S,2*H),v=oe("message",v),B=oe("publicKey",B,H),D!==void 0&&Ye("zip215",D),s&&(v=s(v));let $=Lt(S.slice(H,2*H)),O,Y,re;try{O=p.fromHex(B,D),Y=p.fromHex(S.slice(0,H),D),re=E.multiplyUnsafe($)}catch{return!1}if(!D&&O.isSmallOrder())return!1;let he=V(U,Y.toRawBytes(),O.toRawBytes(),v);return Y.add(O.multiplyUnsafe(he)).subtract(re).clearCofactor().equals(p.ZERO)}return E._setWindowSize(8),{CURVE:e,getPublicKey:j,sign:P,verify:T,ExtendedPoint:p,utils:{getExtendedPublicKey:C,randomPrivateKey:()=>o(t.BYTES),precompute(S=8,v=p.BASE){return v._setWindowSize(S),v.multiply(BigInt(3)),v}}}}var ho=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),Wc=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),ng=BigInt(0),Bd=BigInt(1),Zc=BigInt(2),sg=BigInt(3),_d=BigInt(5),Id=BigInt(8);function Td(r){let e=BigInt(10),t=BigInt(20),n=BigInt(40),s=BigInt(80),i=ho,a=r*r%i*r%i,c=ie(a,Zc,i)*a%i,h=ie(c,Bd,i)*r%i,f=ie(h,_d,i)*h%i,u=ie(f,e,i)*f%i,g=ie(u,t,i)*u%i,l=ie(g,n,i)*g%i,d=ie(l,s,i)*l%i,m=ie(d,s,i)*l%i,y=ie(m,e,i)*f%i;return{pow_p_5_8:ie(y,Zc,i)*r%i,b2:a}}function kd(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function Cd(r,e){let t=ho,n=J(e*e*e,t),s=J(n*n*e,t),i=Td(r*s).pow_p_5_8,o=J(r*n*i,t),a=J(e*o*o,t),c=o,h=J(o*Wc,t),f=a===r,u=a===J(-r,t),g=a===J(-r*Wc,t);return f&&(o=c),(u||g)&&(o=h),Hc(o,t)&&(o=J(-o,t)),{isValid:f||u,value:o}}var Nd=Dt(ho,void 0,!0),Rd={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:Nd,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:Id,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Dc,randomBytes:Nn,adjustScalarBytes:kd,uvRatio:Cd},jc=Gc(Rd);var Fn=32;function Yc(r,e,t){return jc.verify(e,t instanceof Uint8Array?t:t.subarray(),r)}var Kn=class{type="Ed25519";raw;constructor(e){this.raw=po(e,Fn)}toMultihash(){return pt.digest(Ot(this))}toCID(){return pe.createV1(114,this.toMultihash())}toString(){return ee.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}verify(e,t){return Yc(this.raw,t,e)}};function mo(r){return r=po(r,Fn),new Kn(r)}function po(r,e){if(r=Uint8Array.from(r??[]),r.length!==e)throw new ve(`Key must be a Uint8Array of length ${e}, got ${r.length}`);return r}function ae(r=0){return new Uint8Array(r)}function De(r=0){return new Uint8Array(r)}var Ud=Math.pow(2,7),Dd=Math.pow(2,14),Od=Math.pow(2,21),go=Math.pow(2,28),yo=Math.pow(2,35),bo=Math.pow(2,42),wo=Math.pow(2,49),Z=128,Ee=127;function Se(r){if(r<Ud)return 1;if(r<Dd)return 2;if(r<Od)return 3;if(r<go)return 4;if(r<yo)return 5;if(r<bo)return 6;if(r<wo)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function xo(r,e,t=0){switch(Se(r)){case 8:e[t++]=r&255|Z,r/=128;case 7:e[t++]=r&255|Z,r/=128;case 6:e[t++]=r&255|Z,r/=128;case 5:e[t++]=r&255|Z,r/=128;case 4:e[t++]=r&255|Z,r>>>=7;case 3:e[t++]=r&255|Z,r>>>=7;case 2:e[t++]=r&255|Z,r>>>=7;case 1:{e[t++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return e}function Md(r,e,t=0){switch(Se(r)){case 8:e.set(t++,r&255|Z),r/=128;case 7:e.set(t++,r&255|Z),r/=128;case 6:e.set(t++,r&255|Z),r/=128;case 5:e.set(t++,r&255|Z),r/=128;case 4:e.set(t++,r&255|Z),r>>>=7;case 3:e.set(t++,r&255|Z),r>>>=7;case 2:e.set(t++,r&255|Z),r>>>=7;case 1:{e.set(t++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return e}function vo(r,e){let t=r[e],n=0;if(n+=t&Ee,t<Z||(t=r[e+1],n+=(t&Ee)<<7,t<Z)||(t=r[e+2],n+=(t&Ee)<<14,t<Z)||(t=r[e+3],n+=(t&Ee)<<21,t<Z)||(t=r[e+4],n+=(t&Ee)*go,t<Z)||(t=r[e+5],n+=(t&Ee)*yo,t<Z)||(t=r[e+6],n+=(t&Ee)*bo,t<Z)||(t=r[e+7],n+=(t&Ee)*wo,t<Z))return n;throw new RangeError("Could not decode varint")}function Pd(r,e){let t=r.get(e),n=0;if(n+=t&Ee,t<Z||(t=r.get(e+1),n+=(t&Ee)<<7,t<Z)||(t=r.get(e+2),n+=(t&Ee)<<14,t<Z)||(t=r.get(e+3),n+=(t&Ee)<<21,t<Z)||(t=r.get(e+4),n+=(t&Ee)*go,t<Z)||(t=r.get(e+5),n+=(t&Ee)*yo,t<Z)||(t=r.get(e+6),n+=(t&Ee)*bo,t<Z)||(t=r.get(e+7),n+=(t&Ee)*wo,t<Z))return n;throw new RangeError("Could not decode varint")}function $e(r,e,t=0){return e==null&&(e=De(Se(r))),e instanceof Uint8Array?xo(r,e,t):Md(r,e,t)}function wt(r,e=0){return r instanceof Uint8Array?vo(r,e):Pd(r,e)}var Eo=new Float32Array([-0]),Mt=new Uint8Array(Eo.buffer);function Jc(r,e,t){Eo[0]=r,e[t]=Mt[0],e[t+1]=Mt[1],e[t+2]=Mt[2],e[t+3]=Mt[3]}function Qc(r,e){return Mt[0]=r[e],Mt[1]=r[e+1],Mt[2]=r[e+2],Mt[3]=r[e+3],Eo[0]}var So=new Float64Array([-0]),Ae=new Uint8Array(So.buffer);function el(r,e,t){So[0]=r,e[t]=Ae[0],e[t+1]=Ae[1],e[t+2]=Ae[2],e[t+3]=Ae[3],e[t+4]=Ae[4],e[t+5]=Ae[5],e[t+6]=Ae[6],e[t+7]=Ae[7]}function tl(r,e){return Ae[0]=r[e],Ae[1]=r[e+1],Ae[2]=r[e+2],Ae[3]=r[e+3],Ae[4]=r[e+4],Ae[5]=r[e+5],Ae[6]=r[e+6],Ae[7]=r[e+7],So[0]}var Vd=BigInt(Number.MAX_SAFE_INTEGER),Hd=BigInt(Number.MIN_SAFE_INTEGER),He=class r{lo;hi;constructor(e,t){this.lo=e|0,this.hi=t|0}toNumber(e=!1){if(!e&&this.hi>>>31>0){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(e=!1){if(e)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(BigInt(t)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(e=!1){return this.toBigInt(e).toString()}zzEncode(){let e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this}zzDecode(){let e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this}length(){let e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:n<128?9:10}static fromBigInt(e){if(e===0n)return Qt;if(e<Vd&&e>Hd)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let n=e>>32n,s=e-(n<<32n);return t&&(n=~n|0n,s=~s|0n,++s>rl&&(s=0n,++n>rl&&(n=0n))),new r(Number(s),Number(n))}static fromNumber(e){if(e===0)return Qt;let t=e<0;t&&(e=-e);let n=e>>>0,s=(e-n)/4294967296>>>0;return t&&(s=~s>>>0,n=~n>>>0,++n>4294967295&&(n=0,++s>4294967295&&(s=0))),new r(n,s)}static from(e){return typeof e=="number"?r.fromNumber(e):typeof e=="bigint"?r.fromBigInt(e):typeof e=="string"?r.fromBigInt(BigInt(e)):e.low!=null||e.high!=null?new r(e.low>>>0,e.high>>>0):Qt}},Qt=new He(0,0);Qt.toBigInt=function(){return 0n};Qt.zzEncode=Qt.zzDecode=function(){return this};Qt.length=function(){return 1};var rl=4294967296n;function nl(r){let e=0,t=0;for(let n=0;n<r.length;++n)t=r.charCodeAt(n),t<128?e+=1:t<2048?e+=2:(t&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,e+=4):e+=3;return e}function sl(r,e,t){if(t-e<1)return"";let s,i=[],o=0,a;for(;e<t;)a=r[e++],a<128?i[o++]=a:a>191&&a<224?i[o++]=(a&31)<<6|r[e++]&63:a>239&&a<365?(a=((a&7)<<18|(r[e++]&63)<<12|(r[e++]&63)<<6|r[e++]&63)-65536,i[o++]=55296+(a>>10),i[o++]=56320+(a&1023)):i[o++]=(a&15)<<12|(r[e++]&63)<<6|r[e++]&63,o>8191&&((s??(s=[])).push(String.fromCharCode.apply(String,i)),o=0);return s!=null?(o>0&&s.push(String.fromCharCode.apply(String,i.slice(0,o))),s.join("")):String.fromCharCode.apply(String,i.slice(0,o))}function Ao(r,e,t){let n=t,s,i;for(let o=0;o<r.length;++o)s=r.charCodeAt(o),s<128?e[t++]=s:s<2048?(e[t++]=s>>6|192,e[t++]=s&63|128):(s&64512)===55296&&((i=r.charCodeAt(o+1))&64512)===56320?(s=65536+((s&1023)<<10)+(i&1023),++o,e[t++]=s>>18|240,e[t++]=s>>12&63|128,e[t++]=s>>6&63|128,e[t++]=s&63|128):(e[t++]=s>>12|224,e[t++]=s>>6&63|128,e[t++]=s&63|128);return t-n}function Je(r,e){return RangeError(`index out of range: ${r.pos} + ${e??1} > ${r.len}`)}function zn(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}var Bo=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(e){this.buf=e,this.pos=0,this.len=e.length}uint32(){let e=4294967295;if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,Je(this,10);return e}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw Je(this,4);return zn(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw Je(this,4);return zn(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw Je(this,4);let e=Qc(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw Je(this,4);let e=tl(this.buf,this.pos);return this.pos+=8,e}bytes(){let e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw Je(this,e);return this.pos+=e,t===n?new Uint8Array(0):this.buf.subarray(t,n)}string(){let e=this.bytes();return sl(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw Je(this,e);this.pos+=e}else do if(this.pos>=this.len)throw Je(this);while(this.buf[this.pos++]&128);return this}skipType(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(e=this.uint32()&7)!==4;)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${e} at offset ${this.pos}`)}return this}readLongVarint(){let e=new He(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(this.buf[this.pos]&127)<<28)>>>0,e.hi=(e.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return e;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw Je(this);if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,e}if(this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw Je(this);if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw Je(this,8);let e=zn(this.buf,this.pos+=4),t=zn(this.buf,this.pos+=4);return new He(e,t)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let e=vo(this.buf,this.pos);return this.pos+=Se(e),e}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 _o(r){return new Bo(r instanceof Uint8Array?r:r.subarray())}function Oe(r,e,t){let n=_o(r);return e.decode(n,void 0,t)}var Io={};ke(Io,{base10:()=>Fd});var Fd=kt({prefix:"9",name:"base10",alphabet:"0123456789"});var To={};ke(To,{base16:()=>Kd,base16upper:()=>qd});var Kd=le({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),qd=le({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var ko={};ke(ko,{base2:()=>zd});var zd=le({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var Co={};ke(Co,{base256emoji:()=>jd});var ol=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}"),$d=ol.reduce((r,e,t)=>(r[t]=e,r),[]),Gd=ol.reduce((r,e,t)=>{let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);return r[n]=t,r},[]);function Wd(r){return r.reduce((e,t)=>(e+=$d[t],e),"")}function Zd(r){let e=[];for(let t of r){let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);let s=Gd[n];if(s==null)throw new Error(`Non-base256emoji character: ${t}`);e.push(s)}return new Uint8Array(e)}var jd=ur({prefix:"\u{1F680}",name:"base256emoji",encode:Wd,decode:Zd});var Ro={};ke(Ro,{base64:()=>Yd,base64pad:()=>Xd,base64url:()=>No,base64urlpad:()=>Jd});var Yd=le({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),Xd=le({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),No=le({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),Jd=le({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var Lo={};ke(Lo,{base8:()=>Qd});var Qd=le({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var Uo={};ke(Uo,{identity:()=>ep});var ep=ur({prefix:"\0",name:"identity",encode:r=>mc(r),decode:r=>pc(r)});var Hg=new TextEncoder,Fg=new TextDecoder;var Mo={};ke(Mo,{sha256:()=>wr,sha512:()=>np});function Oo({name:r,code:e,encode:t}){return new Do(r,e,t)}var Do=class{name;code;encode;constructor(e,t,n){this.name=e,this.code=t,this.encode=n}digest(e){if(e instanceof Uint8Array){let t=this.encode(e);return t instanceof Uint8Array?Ze(this.code,t):t.then(n=>Ze(this.code,n))}else throw Error("Unknown type, must be binary type")}};function cl(r){return async e=>new Uint8Array(await crypto.subtle.digest(r,e))}var wr=Oo({name:"sha2-256",code:18,encode:cl("SHA-256")}),np=Oo({name:"sha2-512",code:19,encode:cl("SHA-512")});var Zr={...Uo,...ko,...Lo,...Io,...To,...$i,...Gi,...zi,...Ro,...Co},Qg={...Mo,...ji};function ul(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var ll=ul("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),Po=ul("ascii","a",r=>{let e="a";for(let t=0;t<r.length;t++)e+=String.fromCharCode(r[t]);return e},r=>{r=r.substring(1);let e=De(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),sp={utf8:ll,"utf-8":ll,hex:Zr.base16,latin1:Po,ascii:Po,binary:Po,...Zr},$n=sp;function G(r,e="utf8"){let t=$n[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${r}`)}function Vo(r){let e=r??8192,t=e>>>1,n,s=e;return function(o){if(o<1||o>t)return De(o);s+o>e&&(n=De(e),s=0);let a=n.subarray(s,s+=o);return s&7&&(s=(s|7)+1),a}}var er=class{fn;len;next;val;constructor(e,t,n){this.fn=e,this.len=t,this.next=void 0,this.val=n}};function Ho(){}var Ko=class{head;tail;len;next;constructor(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},ip=Vo();function op(r){return globalThis.Buffer!=null?De(r):ip(r)}var Yr=class{len;head;tail;states;constructor(){this.len=0,this.head=new er(Ho,0,0),this.tail=this.head,this.states=null}_push(e,t,n){return this.tail=this.tail.next=new er(e,t,n),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new qo((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this}int32(e){return e<0?this._push(Gn,10,He.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=He.fromBigInt(e);return this._push(Gn,t.length(),t)}uint64Number(e){return this._push(xo,Se(e),e)}uint64String(e){return this.uint64(BigInt(e))}int64(e){return this.uint64(e)}int64Number(e){return this.uint64Number(e)}int64String(e){return this.uint64String(e)}sint64(e){let t=He.fromBigInt(e).zzEncode();return this._push(Gn,t.length(),t)}sint64Number(e){let t=He.fromNumber(e).zzEncode();return this._push(Gn,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(Fo,1,e?1:0)}fixed32(e){return this._push(jr,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=He.fromBigInt(e);return this._push(jr,4,t.lo)._push(jr,4,t.hi)}fixed64Number(e){let t=He.fromNumber(e);return this._push(jr,4,t.lo)._push(jr,4,t.hi)}fixed64String(e){return this.fixed64(BigInt(e))}sfixed64(e){return this.fixed64(e)}sfixed64Number(e){return this.fixed64Number(e)}sfixed64String(e){return this.fixed64String(e)}float(e){return this._push(Jc,4,e)}double(e){return this._push(el,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(Fo,1,0):this.uint32(t)._push(cp,t,e)}string(e){let t=nl(e);return t!==0?this.uint32(t)._push(Ao,t,e):this._push(Fo,1,0)}fork(){return this.states=new Ko(this),this.head=this.tail=new er(Ho,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 er(Ho,0,0),this.len=0),this}ldelim(){let e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=e.next,this.tail=t,this.len+=n),this}finish(){let e=this.head.next,t=op(this.len),n=0;for(;e!=null;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t}};function Fo(r,e,t){e[t]=r&255}function ap(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}var qo=class extends er{next;constructor(e,t){super(ap,e,t),this.next=void 0}};function Gn(r,e,t){for(;r.hi!==0;)e[t++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)e[t++]=r.lo&127|128,r.lo=r.lo>>>7;e[t++]=r.lo}function jr(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}function cp(r,e,t){e.set(r,t)}globalThis.Buffer!=null&&(Yr.prototype.bytes=function(r){let e=r.length>>>0;return this.uint32(e),e>0&&this._push(lp,e,r),this},Yr.prototype.string=function(r){let e=globalThis.Buffer.byteLength(r);return this.uint32(e),e>0&&this._push(up,e,r),this});function lp(r,e,t){e.set(r,t)}function up(r,e,t){r.length<40?Ao(r,e,t):e.utf8Write!=null?e.utf8Write(r,t):e.set(G(r),t)}function zo(){return new Yr}function Me(r,e){let t=zo();return e.encode(r,t,{lengthDelimited:!1}),t.finish()}var xr;(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"})(xr||(xr={}));function Wn(r,e,t,n){return{name:r,type:e,encode:t,decode:n}}function tr(r){function e(s){if(r[s.toString()]==null)throw new Error("Invalid enum value");return r[s]}let t=function(i,o){let a=e(i);o.int32(a)},n=function(i){let o=i.int32();return e(o)};return Wn("enum",xr.VARINT,t,n)}function Pe(r,e){return Wn("message",xr.LENGTH_DELIMITED,r,e)}var Xr=class extends Error{code="ERR_MAX_LENGTH";name="MaxLengthError"};var fe;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.secp256k1="secp256k1"})(fe||(fe={}));var $o;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.secp256k1=2]="secp256k1"})($o||($o={}));(function(r){r.codec=()=>tr($o)})(fe||(fe={}));var ot;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),fe.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.Type=fe.codec().decode(t);break}case 2:{i.Data=t.bytes();break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(ot||(ot={}));var Go;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),fe.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.Type=fe.codec().decode(t);break}case 2:{i.Data=t.bytes();break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Go||(Go={}));var cn={};ke(cn,{MAX_RSA_KEY_SIZE:()=>Ps,generateRSAKeyPair:()=>au,jwkToJWKKeyPair:()=>cu,jwkToPkcs1:()=>_p,jwkToPkix:()=>ta,jwkToRSAPrivateKey:()=>ou,pkcs1ToJwk:()=>nu,pkcs1ToRSAPrivateKey:()=>iu,pkixToJwk:()=>su,pkixToRSAPublicKey:()=>ra});var fp=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]),Pt=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),Vt=new Uint32Array(64),Wo=class extends yr{constructor(){super(64,32,8,!1),this.A=Pt[0]|0,this.B=Pt[1]|0,this.C=Pt[2]|0,this.D=Pt[3]|0,this.E=Pt[4]|0,this.F=Pt[5]|0,this.G=Pt[6]|0,this.H=Pt[7]|0}get(){let{A:e,B:t,C:n,D:s,E:i,F:o,G:a,H:c}=this;return[e,t,n,s,i,o,a,c]}set(e,t,n,s,i,o,a,c){this.A=e|0,this.B=t|0,this.C=n|0,this.D=s|0,this.E=i|0,this.F=o|0,this.G=a|0,this.H=c|0}process(e,t){for(let u=0;u<16;u++,t+=4)Vt[u]=e.getUint32(t,!1);for(let u=16;u<64;u++){let g=Vt[u-15],l=Vt[u-2],d=je(g,7)^je(g,18)^g>>>3,m=je(l,17)^je(l,19)^l>>>10;Vt[u]=m+Vt[u-7]+d+Vt[u-16]|0}let{A:n,B:s,C:i,D:o,E:a,F:c,G:h,H:f}=this;for(let u=0;u<64;u++){let g=je(a,6)^je(a,11)^je(a,25),l=f+g+Rc(a,c,h)+fp[u]+Vt[u]|0,m=(je(n,2)^je(n,13)^je(n,22))+Lc(n,s,i)|0;f=h,h=c,c=a,a=o+l|0,o=i,i=s,s=n,n=l+m|0}n=n+this.A|0,s=s+this.B|0,i=i+this.C|0,o=o+this.D|0,a=a+this.E|0,c=c+this.F|0,h=h+this.G|0,f=f+this.H|0,this.set(n,s,i,o,a,c,h,f)}roundClean(){Vt.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var vr=Cn(()=>new Wo);var z=ic(hl());function rr(r,e){let t=0;if(r.length===1)return r[0];for(let n=r.length-1;n>=0;n--)t+=r[r.length-1-n]*Math.pow(2,e*n);return t}function Ht(r,e,t=-1){let n=t,s=r,i=0,o=Math.pow(2,e);for(let a=1;a<8;a++){if(r<o){let c;if(n<0)c=new ArrayBuffer(a),i=a;else{if(n<a)return new ArrayBuffer(0);c=new ArrayBuffer(n),i=n}let h=new Uint8Array(c);for(let f=a-1;f>=0;f--){let u=Math.pow(2,f*e);h[i-f-1]=Math.floor(s/u),s-=h[i-f-1]*u}return c}o*=Math.pow(2,e)}return new ArrayBuffer(0)}function Yn(...r){let e=0,t=0;for(let i of r)e+=i.length;let n=new ArrayBuffer(e),s=new Uint8Array(n);for(let i of r)s.set(i,t),t+=i.length;return s}function jo(){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 e=new ArrayBuffer(this.valueHex.byteLength),t=new Uint8Array(e);for(let a=0;a<this.valueHex.byteLength;a++)t[a]=0;t[0]=r[0]&128;let n=rr(t,8),s=new ArrayBuffer(this.valueHex.byteLength),i=new Uint8Array(s);for(let a=0;a<this.valueHex.byteLength;a++)i[a]=r[a];return i[0]&=127,rr(i,8)-n}function dl(r){let e=r<0?r*-1:r,t=128;for(let n=1;n<8;n++){if(e<=t){if(r<0){let o=t-e,a=Ht(o,8,n),c=new Uint8Array(a);return c[0]|=128,a}let s=Ht(e,8,n),i=new Uint8Array(s);if(i[0]&128){let o=s.slice(0),a=new Uint8Array(o);s=new ArrayBuffer(s.byteLength+1),i=new Uint8Array(s);for(let c=0;c<o.byteLength;c++)i[c+1]=a[c];i[0]=0}return s}t*=Math.pow(2,8)}return new ArrayBuffer(0)}function pl(r,e){if(r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let s=0;s<t.length;s++)if(t[s]!==n[s])return!1;return!0}function Ve(r,e){let t=r.toString(10);if(e<t.length)return"";let n=e-t.length,s=new Array(n);for(let o=0;o<n;o++)s[o]="0";return s.join("").concat(t)}var Uy=Math.log(2);function Xn(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function Yo(r){let e=0,t=0;for(let s=0;s<r.length;s++){let i=r[s];e+=i.byteLength}let n=new Uint8Array(e);for(let s=0;s<r.length;s++){let i=r[s];n.set(new Uint8Array(i),t),t+=i.byteLength}return n.buffer}function At(r,e,t,n){return e instanceof Uint8Array?e.byteLength?t<0?(r.error="Wrong parameter: inputOffset less than zero",!1):n<0?(r.error="Wrong parameter: inputLength less than zero",!1):e.byteLength-t-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 Qr=class{constructor(){this.items=[]}write(e){this.items.push(e)}final(){return Yo(this.items)}},Jr=[new Uint8Array([1])],ml="0123456789";var _r="",Qe=new ArrayBuffer(0),Xo=new Uint8Array(0),en="EndOfContent",yl="OCTET STRING",bl="BIT STRING";function Bt(r){var e;return e=class extends r{constructor(...n){var s;super(...n);let i=n[0]||{};this.isHexOnly=(s=i.isHexOnly)!==null&&s!==void 0?s:!1,this.valueHexView=i.valueHex?z.BufferSourceConverter.toUint8Array(i.valueHex):Xo}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,s,i){let o=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!At(this,o,s,i))return-1;let a=s+i;return this.valueHexView=o.subarray(s,a),this.valueHexView.length?(this.blockLength=i,a):(this.warnings.push("Zero buffer length"),s)}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",Qe)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:z.Convert.ToHex(this.valueHexView)}}},e.NAME="hexBlock",e}var vt=class{constructor({blockLength:e=0,error:t=_r,warnings:n=[],valueBeforeDecode:s=Xo}={}){this.blockLength=e,this.error=t,this.warnings=n,this.valueBeforeDecodeView=z.BufferSourceConverter.toUint8Array(s)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(e){this.valueBeforeDecodeView=new Uint8Array(e)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:z.Convert.ToHex(this.valueBeforeDecodeView)}}};vt.NAME="baseBlock";var Be=class extends vt{fromBER(e,t,n){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(e,t){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}};Be.NAME="valueBlock";var Jn=class extends Bt(vt){constructor({idBlock:e={}}={}){var t,n,s,i;super(),e?(this.isHexOnly=(t=e.isHexOnly)!==null&&t!==void 0?t:!1,this.valueHexView=e.valueHex?z.BufferSourceConverter.toUint8Array(e.valueHex):Xo,this.tagClass=(n=e.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(s=e.tagNumber)!==null&&s!==void 0?s:-1,this.isConstructed=(i=e.isConstructed)!==null&&i!==void 0?i:!1):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(e=!1){let t=0;switch(this.tagClass){case 1:t|=0;break;case 2:t|=64;break;case 3:t|=128;break;case 4:t|=192;break;default:return this.error="Unknown tag class",Qe}if(this.isConstructed&&(t|=32),this.tagNumber<31&&!this.isHexOnly){let s=new Uint8Array(1);if(!e){let i=this.tagNumber;i&=31,t|=i,s[0]=t}return s.buffer}if(!this.isHexOnly){let s=Ht(this.tagNumber,7),i=new Uint8Array(s),o=s.byteLength,a=new Uint8Array(o+1);if(a[0]=t|31,!e){for(let c=0;c<o-1;c++)a[c+1]=i[c]|128;a[o]=i[o-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=t|31,!e){let s=this.valueHexView;for(let i=0;i<s.length-1;i++)n[i+1]=s[i]|128;n[this.valueHexView.byteLength]=s[s.length-1]}return n.buffer}fromBER(e,t,n){let s=z.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let i=s.subarray(t,t+n);if(i.length===0)return this.error="Zero buffer length",-1;switch(i[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=(i[0]&32)===32,this.isHexOnly=!1;let a=i[0]&31;if(a!==31)this.tagNumber=a,this.blockLength=1;else{let c=1,h=this.valueHexView=new Uint8Array(255),f=255;for(;i[c]&128;){if(h[c-1]=i[c]&127,c++,c>=i.length)return this.error="End of input reached before message was fully decoded",-1;if(c===f){f+=255;let g=new Uint8Array(f);for(let l=0;l<h.length;l++)g[l]=h[l];h=this.valueHexView=new Uint8Array(f)}}this.blockLength=c+1,h[c-1]=i[c]&127;let u=new Uint8Array(c);for(let g=0;g<c;g++)u[g]=h[g];h=this.valueHexView=new Uint8Array(c),h.set(u),this.blockLength<=9?this.tagNumber=rr(h,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 t+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}};Jn.NAME="identificationBlock";var Qn=class extends vt{constructor({lenBlock:e={}}={}){var t,n,s;super(),this.isIndefiniteForm=(t=e.isIndefiniteForm)!==null&&t!==void 0?t:!1,this.longFormUsed=(n=e.longFormUsed)!==null&&n!==void 0?n:!1,this.length=(s=e.length)!==null&&s!==void 0?s:0}fromBER(e,t,n){let s=z.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let i=s.subarray(t,t+n);if(i.length===0)return this.error="Zero buffer length",-1;if(i[0]===255)return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=i[0]===128,this.isIndefiniteForm)return this.blockLength=1,t+this.blockLength;if(this.longFormUsed=!!(i[0]&128),this.longFormUsed===!1)return this.length=i[0],this.blockLength=1,t+this.blockLength;let o=i[0]&127;if(o>8)return this.error="Too big integer",-1;if(o+1>i.length)return this.error="End of input reached before message was fully decoded",-1;let a=t+1,c=s.subarray(a,a+o);return c[o-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=rr(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=o+1,t+this.blockLength}toBER(e=!1){let t,n;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=128),t;if(this.longFormUsed){let s=Ht(this.length,8);if(s.byteLength>127)return this.error="Too big length",Qe;if(t=new ArrayBuffer(s.byteLength+1),e)return t;let i=new Uint8Array(s);n=new Uint8Array(t),n[0]=s.byteLength|128;for(let o=0;o<s.byteLength;o++)n[o+1]=i[o];return t}return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=this.length),t}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}};Qn.NAME="lengthBlock";var k={},be=class extends vt{constructor({name:e=_r,optional:t=!1,primitiveSchema:n,...s}={},i){super(s),this.name=e,this.optional=t,n&&(this.primitiveSchema=n),this.idBlock=new Jn(s),this.lenBlock=new Qn(s),this.valueBlock=i?new i(s):new Be(s)}fromBER(e,t,n){let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(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),s)}toBER(e,t){let n=t||new Qr;t||wl(this);let s=this.idBlock.toBER(e);if(n.write(s),this.lenBlock.isIndefiniteForm)n.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(e,n),n.write(new ArrayBuffer(2));else{let i=this.valueBlock.toBER(e);this.lenBlock.length=i.byteLength;let o=this.lenBlock.toBER(e);n.write(o),n.write(i)}return t?Qe:n.final()}toJSON(){let e={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(e.primitiveSchema=this.primitiveSchema.toJSON()),e}toString(e="ascii"){return e==="ascii"?this.onAsciiEncoding():z.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${z.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(e){if(this===e)return!0;if(!(e instanceof this.constructor))return!1;let t=this.toBER(),n=e.toBER();return pl(t,n)}};be.NAME="BaseBlock";function wl(r){if(r instanceof k.Constructed)for(let e of r.valueBlock.value)wl(e)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var es=class extends be{constructor({value:e=_r,...t}={},n){super(t,n),e&&this.fromString(e)}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}fromBER(e,t,n){let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(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),s)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};es.NAME="BaseStringBlock";var ts=class extends Bt(Be){constructor({isHexOnly:e=!0,...t}={}){super(t),this.isHexOnly=e}};ts.NAME="PrimitiveValueBlock";var xl,rs=class extends be{constructor(e={}){super(e,ts),this.idBlock.isConstructed=!1}};xl=rs;k.Primitive=xl;rs.NAME="PRIMITIVE";function xp(r,e){if(r instanceof e)return r;let t=new e;return t.idBlock=r.idBlock,t.lenBlock=r.lenBlock,t.warnings=r.warnings,t.valueBeforeDecodeView=r.valueBeforeDecodeView,t}function Os(r,e=0,t=r.length){let n=e,s=new be({},Be),i=new vt;if(!At(i,r,e,t))return s.error=i.error,{offset:-1,result:s};if(!r.subarray(e,e+t).length)return s.error="Zero buffer length",{offset:-1,result:s};let a=s.idBlock.fromBER(r,e,t);if(s.idBlock.warnings.length&&s.warnings.concat(s.idBlock.warnings),a===-1)return s.error=s.idBlock.error,{offset:-1,result:s};if(e=a,t-=s.idBlock.blockLength,a=s.lenBlock.fromBER(r,e,t),s.lenBlock.warnings.length&&s.warnings.concat(s.lenBlock.warnings),a===-1)return s.error=s.lenBlock.error,{offset:-1,result:s};if(e=a,t-=s.lenBlock.blockLength,!s.idBlock.isConstructed&&s.lenBlock.isIndefiniteForm)return s.error="Indefinite length form used for primitive encoding form",{offset:-1,result:s};let c=be;switch(s.idBlock.tagClass){case 1:if(s.idBlock.tagNumber>=37&&s.idBlock.isHexOnly===!1)return s.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:s};switch(s.idBlock.tagNumber){case 0:if(s.idBlock.isConstructed&&s.lenBlock.length>0)return s.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:s};c=k.EndOfContent;break;case 1:c=k.Boolean;break;case 2:c=k.Integer;break;case 3:c=k.BitString;break;case 4:c=k.OctetString;break;case 5:c=k.Null;break;case 6:c=k.ObjectIdentifier;break;case 10:c=k.Enumerated;break;case 12:c=k.Utf8String;break;case 13:c=k.RelativeObjectIdentifier;break;case 14:c=k.TIME;break;case 15:return s.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:s};case 16:c=k.Sequence;break;case 17:c=k.Set;break;case 18:c=k.NumericString;break;case 19:c=k.PrintableString;break;case 20:c=k.TeletexString;break;case 21:c=k.VideotexString;break;case 22:c=k.IA5String;break;case 23:c=k.UTCTime;break;case 24:c=k.GeneralizedTime;break;case 25:c=k.GraphicString;break;case 26:c=k.VisibleString;break;case 27:c=k.GeneralString;break;case 28:c=k.UniversalString;break;case 29:c=k.CharacterString;break;case 30:c=k.BmpString;break;case 31:c=k.DATE;break;case 32:c=k.TimeOfDay;break;case 33:c=k.DateTime;break;case 34:c=k.Duration;break;default:{let h=s.idBlock.isConstructed?new k.Constructed:new k.Primitive;h.idBlock=s.idBlock,h.lenBlock=s.lenBlock,h.warnings=s.warnings,s=h}}break;case 2:case 3:case 4:default:c=s.idBlock.isConstructed?k.Constructed:k.Primitive}return s=xp(s,c),a=s.fromBER(r,e,s.lenBlock.isIndefiniteForm?t:s.lenBlock.length),s.valueBeforeDecodeView=r.subarray(n,n+s.blockLength),{offset:a,result:s}}function Jo(r){if(!r.byteLength){let e=new be({},Be);return e.error="Input buffer has zero length",{offset:-1,result:e}}return Os(z.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function vp(r,e){return r?1:e}var at=class extends Be{constructor({value:e=[],isIndefiniteForm:t=!1,...n}={}){super(n),this.value=e,this.isIndefiniteForm=t}fromBER(e,t,n){let s=z.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;if(this.valueBeforeDecodeView=s.subarray(t,t+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),t;let i=t;for(;vp(this.isIndefiniteForm,n)>0;){let o=Os(s,i,n);if(o.offset===-1)return this.error=o.result.error,this.warnings.concat(o.result.warnings),-1;if(i=o.offset,this.blockLength+=o.result.blockLength,n-=o.result.blockLength,this.value.push(o.result),this.isIndefiniteForm&&o.result.constructor.NAME===en)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===en?this.value.pop():this.warnings.push("No EndOfContent block encoded")),i}toBER(e,t){let n=t||new Qr;for(let s=0;s<this.value.length;s++)this.value[s].toBER(e,n);return t?Qe:n.final()}toJSON(){let e={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let t of this.value)e.value.push(t.toJSON());return e}};at.NAME="ConstructedValueBlock";var vl,Ft=class extends be{constructor(e={}){super(e,at),this.idBlock.isConstructed=!0}fromBER(e,t,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(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),s)}onAsciiEncoding(){let e=[];for(let n of this.valueBlock.value)e.push(n.toString("ascii").split(`
3
- `).map(s=>` ${s}`).join(`
2
+ "use strict";var Libp2PCircuitRelayV2=(()=>{var Mf=Object.create;var Bn=Object.defineProperty;var Pf=Object.getOwnPropertyDescriptor;var Vf=Object.getOwnPropertyNames;var Hf=Object.getPrototypeOf,Ff=Object.prototype.hasOwnProperty;var Ms=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),ke=(r,e)=>{for(var t in e)Bn(r,t,{get:e[t],enumerable:!0})},ic=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Vf(e))!Ff.call(r,i)&&i!==t&&Bn(r,i,{get:()=>e[i],enumerable:!(n=Pf(e,i))||n.enumerable});return r};var sc=(r,e,t)=>(t=r!=null?Mf(Hf(r)):{},ic(e||!r||!r.__esModule?Bn(t,"default",{value:r,enumerable:!0}):t,r)),Kf=r=>ic(Bn({},"__esModule",{value:!0}),r);var hl=Ms(Er=>{"use strict";var fp="[object ArrayBuffer]",xt=class r{static isArrayBuffer(e){return Object.prototype.toString.call(e)===fp}static toArrayBuffer(e){return this.isArrayBuffer(e)?e:e.byteLength===e.buffer.byteLength||e.byteOffset===0&&e.byteLength===e.buffer.byteLength?e.buffer:this.toUint8Array(e.buffer).slice(e.byteOffset,e.byteOffset+e.byteLength).buffer}static toUint8Array(e){return this.toView(e,Uint8Array)}static toView(e,t){if(e.constructor===t)return e;if(this.isArrayBuffer(e))return new t(e);if(this.isArrayBufferView(e))return new t(e.buffer,e.byteOffset,e.byteLength);throw new TypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView)'")}static isBufferSource(e){return this.isArrayBufferView(e)||this.isArrayBuffer(e)}static isArrayBufferView(e){return ArrayBuffer.isView(e)||e&&this.isArrayBuffer(e.buffer)}static isEqual(e,t){let n=r.toUint8Array(e),i=r.toUint8Array(t);if(n.length!==i.byteLength)return!1;for(let s=0;s<n.length;s++)if(n[s]!==i[s])return!1;return!0}static concat(...e){let t;Array.isArray(e[0])&&!(e[1]instanceof Function)||Array.isArray(e[0])&&e[1]instanceof Function?t=e[0]:e[e.length-1]instanceof Function?t=e.slice(0,e.length-1):t=e;let n=0;for(let o of t)n+=o.byteLength;let i=new Uint8Array(n),s=0;for(let o of t){let a=this.toUint8Array(o);i.set(a,s),s+=a.length}return e[e.length-1]instanceof Function?this.toView(i,e[e.length-1]):i.buffer}},Zo="string",hp=/^[0-9a-f\s]+$/i,dp=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,pp=/^[a-zA-Z0-9-_]+$/,Zn=class{static fromString(e){let t=unescape(encodeURIComponent(e)),n=new Uint8Array(t.length);for(let i=0;i<t.length;i++)n[i]=t.charCodeAt(i);return n.buffer}static toString(e){let t=xt.toUint8Array(e),n="";for(let s=0;s<t.length;s++)n+=String.fromCharCode(t[s]);return decodeURIComponent(escape(n))}},Ge=class{static toString(e,t=!1){let n=xt.toArrayBuffer(e),i=new DataView(n),s="";for(let o=0;o<n.byteLength;o+=2){let a=i.getUint16(o,t);s+=String.fromCharCode(a)}return s}static fromString(e,t=!1){let n=new ArrayBuffer(e.length*2),i=new DataView(n);for(let s=0;s<e.length;s++)i.setUint16(s*2,e.charCodeAt(s),t);return n}},jn=class r{static isHex(e){return typeof e===Zo&&hp.test(e)}static isBase64(e){return typeof e===Zo&&dp.test(e)}static isBase64Url(e){return typeof e===Zo&&pp.test(e)}static ToString(e,t="utf8"){let n=xt.toUint8Array(e);switch(t.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 Ge.toString(n,!0);case"utf16":case"utf16be":return Ge.toString(n);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromString(e,t="utf8"){if(!e)return new ArrayBuffer(0);switch(t.toLowerCase()){case"utf8":return this.FromUtf8String(e);case"binary":return this.FromBinary(e);case"hex":return this.FromHex(e);case"base64":return this.FromBase64(e);case"base64url":return this.FromBase64Url(e);case"utf16le":return Ge.fromString(e,!0);case"utf16":case"utf16be":return Ge.fromString(e);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToBase64(e){let t=xt.toUint8Array(e);if(typeof btoa<"u"){let n=this.ToString(t,"binary");return btoa(n)}else return Buffer.from(t).toString("base64")}static FromBase64(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64(t))throw new TypeError("Argument 'base64Text' is not Base64 encoded");return typeof atob<"u"?this.FromBinary(atob(t)):new Uint8Array(Buffer.from(t,"base64")).buffer}static FromBase64Url(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64Url(t))throw new TypeError("Argument 'base64url' is not Base64Url encoded");return this.FromBase64(this.Base64Padding(t.replace(/\-/g,"+").replace(/\_/g,"/")))}static ToBase64Url(e){return this.ToBase64(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/\=/g,"")}static FromUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.FromBinary(e);case"utf8":return Zn.fromString(e);case"utf16":case"utf16be":return Ge.fromString(e);case"utf16le":case"usc2":return Ge.fromString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.ToBinary(e);case"utf8":return Zn.toString(e);case"utf16":case"utf16be":return Ge.toString(e);case"utf16le":case"usc2":return Ge.toString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromBinary(e){let t=e.length,n=new Uint8Array(t);for(let i=0;i<t;i++)n[i]=e.charCodeAt(i);return n.buffer}static ToBinary(e){let t=xt.toUint8Array(e),n="";for(let i=0;i<t.length;i++)n+=String.fromCharCode(t[i]);return n}static ToHex(e){let t=xt.toUint8Array(e),n="",i=t.length;for(let s=0;s<i;s++){let o=t[s];o<16&&(n+="0"),n+=o.toString(16)}return n}static FromHex(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isHex(t))throw new TypeError("Argument 'hexString' is not HEX encoded");t.length%2&&(t=`0${t}`);let n=new Uint8Array(t.length/2);for(let i=0;i<t.length;i=i+2){let s=t.slice(i,i+2);n[i/2]=parseInt(s,16)}return n.buffer}static ToUtf16String(e,t=!1){return Ge.toString(e,t)}static FromUtf16String(e,t=!1){return Ge.fromString(e,t)}static Base64Padding(e){let t=4-e.length%4;if(t<4)for(let n=0;n<t;n++)e+="=";return e}static formatString(e){return e?.replace(/[\n\r\t ]/g,"")||""}};jn.DEFAULT_UTF8_ENCODING="utf8";function mp(r,...e){let t=arguments[0];for(let n=1;n<arguments.length;n++){let i=arguments[n];for(let s in i)t[s]=i[s]}return t}function gp(...r){let e=r.map(i=>i.byteLength).reduce((i,s)=>i+s),t=new Uint8Array(e),n=0;return r.map(i=>new Uint8Array(i)).forEach(i=>{for(let s of i)t[n++]=s}),t.buffer}function yp(r,e){if(!(r&&e)||r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let i=0;i<r.byteLength;i++)if(t[i]!==n[i])return!1;return!0}Er.BufferSourceConverter=xt;Er.Convert=jn;Er.assign=mp;Er.combine=gp;Er.isEqual=yp});var cf=Ms((En,Es)=>{(function(r,e){"use strict";var t={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(l){if(!Array.isArray(l)&&!ArrayBuffer.isView(l))return!1;for(var d=0;d<l.length;d++)if(!Number.isInteger(l[d])||l[d]<0||l[d]>255)return!1;return!0}function i(l,d){return(l&65535)*d+(((l>>>16)*d&65535)<<16)}function s(l,d){return l<<d|l>>>32-d}function o(l){return l^=l>>>16,l=i(l,2246822507),l^=l>>>13,l=i(l,3266489909),l^=l>>>16,l}function a(l,d){l=[l[0]>>>16,l[0]&65535,l[1]>>>16,l[1]&65535],d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535];var m=[0,0,0,0];return m[3]+=l[3]+d[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=l[2]+d[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=l[1]+d[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=l[0]+d[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function c(l,d){l=[l[0]>>>16,l[0]&65535,l[1]>>>16,l[1]&65535],d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535];var m=[0,0,0,0];return m[3]+=l[3]*d[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=l[2]*d[3],m[1]+=m[2]>>>16,m[2]&=65535,m[2]+=l[3]*d[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=l[1]*d[3],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=l[2]*d[2],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=l[3]*d[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=l[0]*d[3]+l[1]*d[2]+l[2]*d[1]+l[3]*d[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function h(l,d){return d%=64,d===32?[l[1],l[0]]:d<32?[l[0]<<d|l[1]>>>32-d,l[1]<<d|l[0]>>>32-d]:(d-=32,[l[1]<<d|l[0]>>>32-d,l[0]<<d|l[1]>>>32-d])}function f(l,d){return d%=64,d===0?l:d<32?[l[0]<<d|l[1]>>>32-d,l[1]<<d]:[l[1]<<d-32,0]}function u(l,d){return[l[0]^d[0],l[1]^d[1]]}function g(l){return l=u(l,[0,l[0]>>>1]),l=c(l,[4283543511,3981806797]),l=u(l,[0,l[0]>>>1]),l=c(l,[3301882366,444984403]),l=u(l,[0,l[0]>>>1]),l}t.x86.hash32=function(l,d){if(t.inputValidation&&!n(l))return e;d=d||0;for(var m=l.length%4,y=l.length-m,b=d,w=0,p=3432918353,E=461845907,A=0;A<y;A=A+4)w=l[A]|l[A+1]<<8|l[A+2]<<16|l[A+3]<<24,w=i(w,p),w=s(w,15),w=i(w,E),b^=w,b=s(b,13),b=i(b,5)+3864292196;switch(w=0,m){case 3:w^=l[A+2]<<16;case 2:w^=l[A+1]<<8;case 1:w^=l[A],w=i(w,p),w=s(w,15),w=i(w,E),b^=w}return b^=l.length,b=o(b),b>>>0},t.x86.hash128=function(l,d){if(t.inputValidation&&!n(l))return e;d=d||0;for(var m=l.length%16,y=l.length-m,b=d,w=d,p=d,E=d,A=0,_=0,x=0,I=0,C=597399067,j=2869860233,V=951274213,P=2716044179,L=0;L<y;L=L+16)A=l[L]|l[L+1]<<8|l[L+2]<<16|l[L+3]<<24,_=l[L+4]|l[L+5]<<8|l[L+6]<<16|l[L+7]<<24,x=l[L+8]|l[L+9]<<8|l[L+10]<<16|l[L+11]<<24,I=l[L+12]|l[L+13]<<8|l[L+14]<<16|l[L+15]<<24,A=i(A,C),A=s(A,15),A=i(A,j),b^=A,b=s(b,19),b+=w,b=i(b,5)+1444728091,_=i(_,j),_=s(_,16),_=i(_,V),w^=_,w=s(w,17),w+=p,w=i(w,5)+197830471,x=i(x,V),x=s(x,17),x=i(x,P),p^=x,p=s(p,15),p+=E,p=i(p,5)+2530024501,I=i(I,P),I=s(I,18),I=i(I,C),E^=I,E=s(E,13),E+=b,E=i(E,5)+850148119;switch(A=0,_=0,x=0,I=0,m){case 15:I^=l[L+14]<<16;case 14:I^=l[L+13]<<8;case 13:I^=l[L+12],I=i(I,P),I=s(I,18),I=i(I,C),E^=I;case 12:x^=l[L+11]<<24;case 11:x^=l[L+10]<<16;case 10:x^=l[L+9]<<8;case 9:x^=l[L+8],x=i(x,V),x=s(x,17),x=i(x,P),p^=x;case 8:_^=l[L+7]<<24;case 7:_^=l[L+6]<<16;case 6:_^=l[L+5]<<8;case 5:_^=l[L+4],_=i(_,j),_=s(_,16),_=i(_,V),w^=_;case 4:A^=l[L+3]<<24;case 3:A^=l[L+2]<<16;case 2:A^=l[L+1]<<8;case 1:A^=l[L],A=i(A,C),A=s(A,15),A=i(A,j),b^=A}return b^=l.length,w^=l.length,p^=l.length,E^=l.length,b+=w,b+=p,b+=E,w+=b,p+=b,E+=b,b=o(b),w=o(w),p=o(p),E=o(E),b+=w,b+=p,b+=E,w+=b,p+=b,E+=b,("00000000"+(b>>>0).toString(16)).slice(-8)+("00000000"+(w>>>0).toString(16)).slice(-8)+("00000000"+(p>>>0).toString(16)).slice(-8)+("00000000"+(E>>>0).toString(16)).slice(-8)},t.x64.hash128=function(l,d){if(t.inputValidation&&!n(l))return e;d=d||0;for(var m=l.length%16,y=l.length-m,b=[0,d],w=[0,d],p=[0,0],E=[0,0],A=[2277735313,289559509],_=[1291169091,658871167],x=0;x<y;x=x+16)p=[l[x+4]|l[x+5]<<8|l[x+6]<<16|l[x+7]<<24,l[x]|l[x+1]<<8|l[x+2]<<16|l[x+3]<<24],E=[l[x+12]|l[x+13]<<8|l[x+14]<<16|l[x+15]<<24,l[x+8]|l[x+9]<<8|l[x+10]<<16|l[x+11]<<24],p=c(p,A),p=h(p,31),p=c(p,_),b=u(b,p),b=h(b,27),b=a(b,w),b=a(c(b,[0,5]),[0,1390208809]),E=c(E,_),E=h(E,33),E=c(E,A),w=u(w,E),w=h(w,31),w=a(w,b),w=a(c(w,[0,5]),[0,944331445]);switch(p=[0,0],E=[0,0],m){case 15:E=u(E,f([0,l[x+14]],48));case 14:E=u(E,f([0,l[x+13]],40));case 13:E=u(E,f([0,l[x+12]],32));case 12:E=u(E,f([0,l[x+11]],24));case 11:E=u(E,f([0,l[x+10]],16));case 10:E=u(E,f([0,l[x+9]],8));case 9:E=u(E,[0,l[x+8]]),E=c(E,_),E=h(E,33),E=c(E,A),w=u(w,E);case 8:p=u(p,f([0,l[x+7]],56));case 7:p=u(p,f([0,l[x+6]],48));case 6:p=u(p,f([0,l[x+5]],40));case 5:p=u(p,f([0,l[x+4]],32));case 4:p=u(p,f([0,l[x+3]],24));case 3:p=u(p,f([0,l[x+2]],16));case 2:p=u(p,f([0,l[x+1]],8));case 1:p=u(p,[0,l[x]]),p=c(p,A),p=h(p,31),p=c(p,_),b=u(b,p)}return b=u(b,[0,l.length]),w=u(w,[0,l.length]),b=a(b,w),w=a(w,b),b=g(b),w=g(w),b=a(b,w),w=a(w,b),("00000000"+(b[0]>>>0).toString(16)).slice(-8)+("00000000"+(b[1]>>>0).toString(16)).slice(-8)+("00000000"+(w[0]>>>0).toString(16)).slice(-8)+("00000000"+(w[1]>>>0).toString(16)).slice(-8)},typeof En<"u"?(typeof Es<"u"&&Es.exports&&(En=Es.exports=t),En.murmurHash3=t):typeof define=="function"&&define.amd?define([],function(){return t}):(t._murmurHash3=r.murmurHash3,t.noConflict=function(){return r.murmurHash3=t._murmurHash3,t._murmurHash3=e,t.noConflict=e,t},r.murmurHash3=t)})(En)});var uf=Ms((xv,lf)=>{lf.exports=cf()});var R0={};ke(R0,{RELAY_V2_HOP_CODEC:()=>We,RELAY_V2_STOP_CODEC:()=>ir,circuitRelayServer:()=>gf,circuitRelayTransport:()=>Tf});var Ps=Symbol.for("@libp2p/peer-id");var Vs="keep-alive";var ac=Symbol.for("@libp2p/transport");var oc;(function(r){r[r.FATAL_ALL=0]="FATAL_ALL",r[r.NO_FATAL=1]="NO_FATAL"})(oc||(oc={}));var ft=class extends Error{static name="AbortError";constructor(e="The operation was aborted"){super(e),this.name="AbortError"}};var ve=class extends Error{static name="InvalidParametersError";constructor(e="Invalid parameters"){super(e),this.name="InvalidParametersError"}},cr=class extends Error{static name="InvalidPublicKeyError";constructor(e="Invalid public key"){super(e),this.name="InvalidPublicKeyError"}};var _n=class extends Error{static name="InvalidMultihashError";constructor(e="Invalid Multihash"){super(e),this.name="InvalidMultihashError"}};var In=class extends Error{static name="InvalidMessageError";constructor(e="Invalid message"){super(e),this.name="InvalidMessageError"}};var Vr=class extends Error{static name="DialError";constructor(e="Dial error"){super(e),this.name="DialError"}},Gt=class extends Error{static name="ListenError";constructor(e="Listen error"){super(e),this.name="ListenError"}};var lr=class extends Error{static name="UnsupportedKeyTypeError";constructor(e="Unsupported key type"){super(e),this.name="UnsupportedKeyTypeError"}};var Re=(r,...e)=>{try{[...e]}catch{}};var qe=class extends EventTarget{#e=new Map;constructor(){super(),Re(1/0,this)}listenerCount(e){let t=this.#e.get(e);return t==null?0:t.length}addEventListener(e,t,n){super.addEventListener(e,t,n);let i=this.#e.get(e);i==null&&(i=[],this.#e.set(e,i)),i.push({callback:t,once:(n!==!0&&n!==!1&&n?.once)??!1})}removeEventListener(e,t,n){super.removeEventListener(e.toString(),t??null,n);let i=this.#e.get(e);i!=null&&(i=i.filter(({callback:s})=>s!==t),this.#e.set(e,i))}dispatchEvent(e){let t=super.dispatchEvent(e),n=this.#e.get(e.type);return n==null||(n=n.filter(({once:i})=>!i),this.#e.set(e.type,n)),t}safeDispatchEvent(e,t={}){return this.dispatchEvent(new CustomEvent(e,t))}};function cc(r){return r!=null&&typeof r.start=="function"&&typeof r.stop=="function"}async function lc(...r){let e=[];for(let t of r)cc(t)&&e.push(t);await Promise.all(e.map(async t=>{t.beforeStart!=null&&await t.beforeStart()})),await Promise.all(e.map(async t=>{await t.start()})),await Promise.all(e.map(async t=>{t.afterStart!=null&&await t.afterStart()}))}async function uc(...r){let e=[];for(let t of r)cc(t)&&e.push(t);await Promise.all(e.map(async t=>{t.beforeStop!=null&&await t.beforeStop()})),await Promise.all(e.map(async t=>{await t.stop()})),await Promise.all(e.map(async t=>{t.afterStop!=null&&await t.afterStop()}))}var fc=Symbol.for("@libp2p/service-capabilities"),hc=Symbol.for("@libp2p/service-dependencies");var zs={};ke(zs,{base58btc:()=>ee,base58flickr:()=>Zf});var fm=new Uint8Array(0);function dc(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function ht(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 pc(r){return new TextEncoder().encode(r)}function mc(r){return new TextDecoder().decode(r)}function qf(r,e){if(r.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),n=0;n<t.length;n++)t[n]=255;for(var i=0;i<r.length;i++){var s=r.charAt(i),o=s.charCodeAt(0);if(t[o]!==255)throw new TypeError(s+" is ambiguous");t[o]=i}var a=r.length,c=r.charAt(0),h=Math.log(a)/Math.log(256),f=Math.log(256)/Math.log(a);function u(d){if(d instanceof Uint8Array||(ArrayBuffer.isView(d)?d=new Uint8Array(d.buffer,d.byteOffset,d.byteLength):Array.isArray(d)&&(d=Uint8Array.from(d))),!(d instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(d.length===0)return"";for(var m=0,y=0,b=0,w=d.length;b!==w&&d[b]===0;)b++,m++;for(var p=(w-b)*f+1>>>0,E=new Uint8Array(p);b!==w;){for(var A=d[b],_=0,x=p-1;(A!==0||_<y)&&x!==-1;x--,_++)A+=256*E[x]>>>0,E[x]=A%a>>>0,A=A/a>>>0;if(A!==0)throw new Error("Non-zero carry");y=_,b++}for(var I=p-y;I!==p&&E[I]===0;)I++;for(var C=c.repeat(m);I<p;++I)C+=r.charAt(E[I]);return C}function g(d){if(typeof d!="string")throw new TypeError("Expected String");if(d.length===0)return new Uint8Array;var m=0;if(d[m]!==" "){for(var y=0,b=0;d[m]===c;)y++,m++;for(var w=(d.length-m)*h+1>>>0,p=new Uint8Array(w);d[m];){var E=t[d.charCodeAt(m)];if(E===255)return;for(var A=0,_=w-1;(E!==0||A<b)&&_!==-1;_--,A++)E+=a*p[_]>>>0,p[_]=E%256>>>0,E=E/256>>>0;if(E!==0)throw new Error("Non-zero carry");b=A,m++}if(d[m]!==" "){for(var x=w-b;x!==w&&p[x]===0;)x++;for(var I=new Uint8Array(y+(w-x)),C=y;x!==w;)I[C++]=p[x++];return I}}}function l(d){var m=g(d);if(m)return m;throw new Error(`Non-${e} character`)}return{encode:u,decodeUnsafe:g,decode:l}}var zf=qf,$f=zf,yc=$f;var Hs=class{name;prefix;baseEncode;constructor(e,t,n){this.name=e,this.prefix=t,this.baseEncode=n}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},Fs=class{name;prefix;baseDecode;prefixCodePoint;constructor(e,t,n){this.name=e,this.prefix=t;let i=t.codePointAt(0);if(i===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=i,this.baseDecode=n}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return bc(this,e)}},Ks=class{decoders;constructor(e){this.decoders=e}or(e){return bc(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n!=null)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function bc(r,e){return new Ks({...r.decoders??{[r.prefix]:r},...e.decoders??{[e.prefix]:e}})}var qs=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(e,t,n,i){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=i,this.encoder=new Hs(e,t,n),this.decoder=new Fs(e,t,i)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}};function ur({name:r,prefix:e,encode:t,decode:n}){return new qs(r,e,t,n)}function kt({name:r,prefix:e,alphabet:t}){let{encode:n,decode:i}=yc(t,r);return ur({prefix:e,name:r,encode:n,decode:s=>ht(i(s))})}function Gf(r,e,t,n){let i={};for(let f=0;f<e.length;++f)i[e[f]]=f;let s=r.length;for(;r[s-1]==="=";)--s;let o=new Uint8Array(s*t/8|0),a=0,c=0,h=0;for(let f=0;f<s;++f){let u=i[r[f]];if(u===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<t|u,a+=t,a>=8&&(a-=8,o[h++]=255&c>>a)}if(a>=t||255&c<<8-a)throw new SyntaxError("Unexpected end of data");return o}function Wf(r,e,t){let n=e[e.length-1]==="=",i=(1<<t)-1,s="",o=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],o+=8;o>t;)o-=t,s+=e[i&a>>o];if(o!==0&&(s+=e[i&a<<t-o]),n)for(;s.length*t&7;)s+="=";return s}function le({name:r,prefix:e,bitsPerChar:t,alphabet:n}){return ur({prefix:e,name:r,encode(i){return Wf(i,n,t)},decode(i){return Gf(i,n,t,r)}})}var ee=kt({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),Zf=kt({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var $s={};ke($s,{base32:()=>dt,base32hex:()=>Jf,base32hexpad:()=>eh,base32hexpadupper:()=>th,base32hexupper:()=>Qf,base32pad:()=>Yf,base32padupper:()=>Xf,base32upper:()=>jf,base32z:()=>rh});var dt=le({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),jf=le({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Yf=le({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Xf=le({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),Jf=le({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Qf=le({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),eh=le({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),th=le({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),rh=le({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var Gs={};ke(Gs,{base36:()=>Hr,base36upper:()=>nh});var Hr=kt({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),nh=kt({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var ih=vc,wc=128,sh=127,oh=~sh,ah=Math.pow(2,31);function vc(r,e,t){e=e||[],t=t||0;for(var n=t;r>=ah;)e[t++]=r&255|wc,r/=128;for(;r&oh;)e[t++]=r&255|wc,r>>>=7;return e[t]=r|0,vc.bytes=t-n+1,e}var ch=Ws,lh=128,xc=127;function Ws(r,n){var t=0,n=n||0,i=0,s=n,o,a=r.length;do{if(s>=a)throw Ws.bytes=0,new RangeError("Could not decode varint");o=r[s++],t+=i<28?(o&xc)<<i:(o&xc)*Math.pow(2,i),i+=7}while(o>=lh);return Ws.bytes=s-n,t}var uh=Math.pow(2,7),fh=Math.pow(2,14),hh=Math.pow(2,21),dh=Math.pow(2,28),ph=Math.pow(2,35),mh=Math.pow(2,42),gh=Math.pow(2,49),yh=Math.pow(2,56),bh=Math.pow(2,63),wh=function(r){return r<uh?1:r<fh?2:r<hh?3:r<dh?4:r<ph?5:r<mh?6:r<gh?7:r<yh?8:r<bh?9:10},xh={encode:ih,decode:ch,encodingLength:wh},vh=xh,Fr=vh;function Kr(r,e=0){return[Fr.decode(r,e),Fr.decode.bytes]}function fr(r,e,t=0){return Fr.encode(r,e,t),e}function hr(r){return Fr.encodingLength(r)}function Ze(r,e){let t=e.byteLength,n=hr(r),i=n+hr(t),s=new Uint8Array(i+t);return fr(r,s,0),fr(t,s,n),s.set(e,i),new dr(r,t,e,s)}function ze(r){let e=ht(r),[t,n]=Kr(e),[i,s]=Kr(e.subarray(n)),o=e.subarray(n+s);if(o.byteLength!==i)throw new Error("Incorrect length");return new dr(t,i,o,e)}function Ec(r,e){if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&dc(r.bytes,t.bytes)}}var dr=class{code;size;digest;bytes;constructor(e,t,n,i){this.code=e,this.size=t,this.digest=n,this.bytes=i}};function Sc(r,e){let{bytes:t,version:n}=r;switch(n){case 0:return Sh(t,Zs(r),e??ee.encoder);default:return Ah(t,Zs(r),e??dt.encoder)}}var Ac=new WeakMap;function Zs(r){let e=Ac.get(r);if(e==null){let t=new Map;return Ac.set(r,t),t}return e}var pe=class r{code;version;multihash;bytes;"/";constructor(e,t,n,i){this.code=t,this.version=e,this.multihash=n,this.bytes=i,this["/"]=i}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:e,multihash:t}=this;if(e!==qr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==Bh)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(t)}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:e,digest:t}=this.multihash,n=Ze(e,t);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(e){return r.equals(this,e)}static equals(e,t){let n=t;return n!=null&&e.code===n.code&&e.version===n.version&&Ec(e.multihash,n.multihash)}toString(e){return Sc(this,e)}toJSON(){return{"/":Sc(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof r)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:i,multihash:s,bytes:o}=t;return new r(n,i,s,o??Bc(n,i,s.bytes))}else if(t[_h]===!0){let{version:n,multihash:i,code:s}=t,o=ze(i);return r.create(n,s,o)}else return null}static create(e,t,n){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==qr)throw new Error(`Version 0 CID must use dag-pb (code: ${qr}) block encoding`);return new r(e,t,n,n.bytes)}case 1:{let i=Bc(e,t,n.bytes);return new r(e,t,n,i)}default:throw new Error("Invalid version")}}static createV0(e){return r.create(0,qr,e)}static createV1(e,t){return r.create(1,e,t)}static decode(e){let[t,n]=r.decodeFirst(e);if(n.length!==0)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=r.inspectBytes(e),n=t.size-t.multihashSize,i=ht(e.subarray(n,n+t.multihashSize));if(i.byteLength!==t.multihashSize)throw new Error("Incorrect length");let s=i.subarray(t.multihashSize-t.digestSize),o=new dr(t.multihashCode,t.digestSize,s,i);return[t.version===0?r.createV0(o):r.createV1(t.codec,o),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[u,g]=Kr(e.subarray(t));return t+=g,u},i=n(),s=qr;if(i===18?(i=0,t=0):s=n(),i!==0&&i!==1)throw new RangeError(`Invalid CID version ${i}`);let o=t,a=n(),c=n(),h=t+c,f=h-o;return{version:i,codec:s,multihashCode:a,digestSize:c,multihashSize:f,size:h}}static parse(e,t){let[n,i]=Eh(e,t),s=r.decode(i);if(s.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return Zs(s).set(n,e),s}};function Eh(r,e){switch(r[0]){case"Q":{let t=e??ee;return[ee.prefix,t.decode(`${ee.prefix}${r}`)]}case ee.prefix:{let t=e??ee;return[ee.prefix,t.decode(r)]}case dt.prefix:{let t=e??dt;return[dt.prefix,t.decode(r)]}case Hr.prefix:{let t=e??Hr;return[Hr.prefix,t.decode(r)]}default:{if(e==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[r[0],e.decode(r)]}}}function Sh(r,e,t){let{prefix:n}=t;if(n!==ee.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let i=e.get(n);if(i==null){let s=t.encode(r).slice(1);return e.set(n,s),s}else return i}function Ah(r,e,t){let{prefix:n}=t,i=e.get(n);if(i==null){let s=t.encode(r);return e.set(n,s),s}else return i}var qr=112,Bh=18;function Bc(r,e,t){let n=hr(r),i=n+hr(e),s=new Uint8Array(i+t.byteLength);return fr(r,s,0),fr(e,s,n),s.set(t,i),s}var _h=Symbol.for("@ipld/js-cid/CID");var js={};ke(js,{identity:()=>pt});var _c=0,Ih="identity",Ic=ht;function Th(r){return Ze(_c,Ic(r))}var pt={code:_c,name:Ih,encode:Ic,digest:Th};function me(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function Tc(r){if(!Number.isSafeInteger(r)||r<0)throw new Error("positive integer expected, got "+r)}function kh(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function pr(r,...e){if(!kh(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error("Uint8Array expected of length "+e+", got length="+r.length)}function kc(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");Tc(r.outputLen),Tc(r.blockLen)}function mr(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function Cc(r,e){pr(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var Wt=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;function kn(r){return new DataView(r.buffer,r.byteOffset,r.byteLength)}function je(r,e){return r<<32-e|r>>>e}function Nc(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function zr(r){return typeof r=="string"&&(r=Nc(r)),pr(r),r}function Ys(...r){let e=0;for(let n=0;n<r.length;n++){let i=r[n];pr(i),e+=i.length}let t=new Uint8Array(e);for(let n=0,i=0;n<r.length;n++){let s=r[n];t.set(s,i),i+=s.length}return t}var gr=class{clone(){return this._cloneInto()}};function Cn(r){let e=n=>r().update(zr(n)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function Nn(r=32){if(Wt&&typeof Wt.getRandomValues=="function")return Wt.getRandomValues(new Uint8Array(r));if(Wt&&typeof Wt.randomBytes=="function")return Wt.randomBytes(r);throw new Error("crypto.getRandomValues must be defined")}function Ch(r,e,t,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,n);let i=BigInt(32),s=BigInt(4294967295),o=Number(t>>i&s),a=Number(t&s),c=n?4:0,h=n?0:4;r.setUint32(e+c,o,n),r.setUint32(e+h,a,n)}function Rc(r,e,t){return r&e^~r&t}function Lc(r,e,t){return r&e^r&t^e&t}var yr=class extends gr{constructor(e,t,n,i){super(),this.blockLen=e,this.outputLen=t,this.padOffset=n,this.isLE=i,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=kn(this.buffer)}update(e){mr(this);let{view:t,buffer:n,blockLen:i}=this;e=zr(e);let s=e.length;for(let o=0;o<s;){let a=Math.min(i-this.pos,s-o);if(a===i){let c=kn(e);for(;i<=s-o;o+=i)this.process(c,o);continue}n.set(e.subarray(o,o+a),this.pos),this.pos+=a,o+=a,this.pos===i&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){mr(this),Cc(e,this),this.finished=!0;let{buffer:t,view:n,blockLen:i,isLE:s}=this,{pos:o}=this;t[o++]=128,this.buffer.subarray(o).fill(0),this.padOffset>i-o&&(this.process(n,0),o=0);for(let u=o;u<i;u++)t[u]=0;Ch(n,i-8,BigInt(this.length*8),s),this.process(n,0);let a=kn(e),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let h=c/4,f=this.get();if(h>f.length)throw new Error("_sha2: outputLen bigger than state");for(let u=0;u<h;u++)a.setUint32(4*u,f[u],s)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let n=e.slice(0,t);return this.destroy(),n}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:n,length:i,finished:s,destroyed:o,pos:a}=this;return e.length=i,e.pos=a,e.finished=s,e.destroyed=o,i%t&&e.buffer.set(n),e}};var Rn=BigInt(4294967295),Xs=BigInt(32);function Uc(r,e=!1){return e?{h:Number(r&Rn),l:Number(r>>Xs&Rn)}:{h:Number(r>>Xs&Rn)|0,l:Number(r&Rn)|0}}function Nh(r,e=!1){let t=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let i=0;i<r.length;i++){let{h:s,l:o}=Uc(r[i],e);[t[i],n[i]]=[s,o]}return[t,n]}var Rh=(r,e)=>BigInt(r>>>0)<<Xs|BigInt(e>>>0),Lh=(r,e,t)=>r>>>t,Uh=(r,e,t)=>r<<32-t|e>>>t,Dh=(r,e,t)=>r>>>t|e<<32-t,Oh=(r,e,t)=>r<<32-t|e>>>t,Mh=(r,e,t)=>r<<64-t|e>>>t-32,Ph=(r,e,t)=>r>>>t-32|e<<64-t,Vh=(r,e)=>e,Hh=(r,e)=>r,Fh=(r,e,t)=>r<<t|e>>>32-t,Kh=(r,e,t)=>e<<t|r>>>32-t,qh=(r,e,t)=>e<<t-32|r>>>64-t,zh=(r,e,t)=>r<<t-32|e>>>64-t;function $h(r,e,t,n){let i=(e>>>0)+(n>>>0);return{h:r+t+(i/2**32|0)|0,l:i|0}}var Gh=(r,e,t)=>(r>>>0)+(e>>>0)+(t>>>0),Wh=(r,e,t,n)=>e+t+n+(r/2**32|0)|0,Zh=(r,e,t,n)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0),jh=(r,e,t,n,i)=>e+t+n+i+(r/2**32|0)|0,Yh=(r,e,t,n,i)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0)+(i>>>0),Xh=(r,e,t,n,i,s)=>e+t+n+i+s+(r/2**32|0)|0;var Jh={fromBig:Uc,split:Nh,toBig:Rh,shrSH:Lh,shrSL:Uh,rotrSH:Dh,rotrSL:Oh,rotrBH:Mh,rotrBL:Ph,rotr32H:Vh,rotr32L:Hh,rotlSH:Fh,rotlSL:Kh,rotlBH:qh,rotlBL:zh,add:$h,add3L:Gh,add3H:Wh,add4L:Zh,add4H:jh,add5H:Xh,add5L:Yh},M=Jh;var[Qh,ed]=M.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))),Ct=new Uint32Array(80),Nt=new Uint32Array(80),Js=class extends yr{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:e,Al:t,Bh:n,Bl:i,Ch:s,Cl:o,Dh:a,Dl:c,Eh:h,El:f,Fh:u,Fl:g,Gh:l,Gl:d,Hh:m,Hl:y}=this;return[e,t,n,i,s,o,a,c,h,f,u,g,l,d,m,y]}set(e,t,n,i,s,o,a,c,h,f,u,g,l,d,m,y){this.Ah=e|0,this.Al=t|0,this.Bh=n|0,this.Bl=i|0,this.Ch=s|0,this.Cl=o|0,this.Dh=a|0,this.Dl=c|0,this.Eh=h|0,this.El=f|0,this.Fh=u|0,this.Fl=g|0,this.Gh=l|0,this.Gl=d|0,this.Hh=m|0,this.Hl=y|0}process(e,t){for(let p=0;p<16;p++,t+=4)Ct[p]=e.getUint32(t),Nt[p]=e.getUint32(t+=4);for(let p=16;p<80;p++){let E=Ct[p-15]|0,A=Nt[p-15]|0,_=M.rotrSH(E,A,1)^M.rotrSH(E,A,8)^M.shrSH(E,A,7),x=M.rotrSL(E,A,1)^M.rotrSL(E,A,8)^M.shrSL(E,A,7),I=Ct[p-2]|0,C=Nt[p-2]|0,j=M.rotrSH(I,C,19)^M.rotrBH(I,C,61)^M.shrSH(I,C,6),V=M.rotrSL(I,C,19)^M.rotrBL(I,C,61)^M.shrSL(I,C,6),P=M.add4L(x,V,Nt[p-7],Nt[p-16]),L=M.add4H(P,_,j,Ct[p-7],Ct[p-16]);Ct[p]=L|0,Nt[p]=P|0}let{Ah:n,Al:i,Bh:s,Bl:o,Ch:a,Cl:c,Dh:h,Dl:f,Eh:u,El:g,Fh:l,Fl:d,Gh:m,Gl:y,Hh:b,Hl:w}=this;for(let p=0;p<80;p++){let E=M.rotrSH(u,g,14)^M.rotrSH(u,g,18)^M.rotrBH(u,g,41),A=M.rotrSL(u,g,14)^M.rotrSL(u,g,18)^M.rotrBL(u,g,41),_=u&l^~u&m,x=g&d^~g&y,I=M.add5L(w,A,x,ed[p],Nt[p]),C=M.add5H(I,b,E,_,Qh[p],Ct[p]),j=I|0,V=M.rotrSH(n,i,28)^M.rotrBH(n,i,34)^M.rotrBH(n,i,39),P=M.rotrSL(n,i,28)^M.rotrBL(n,i,34)^M.rotrBL(n,i,39),L=n&s^n&a^s&a,T=i&o^i&c^o&c;b=m|0,w=y|0,m=l|0,y=d|0,l=u|0,d=g|0,{h:u,l:g}=M.add(h|0,f|0,C|0,j|0),h=a|0,f=c|0,a=s|0,c=o|0,s=n|0,o=i|0;let R=M.add3L(j,P,T);n=M.add3H(R,C,V,L),i=R|0}({h:n,l:i}=M.add(this.Ah|0,this.Al|0,n|0,i|0)),{h:s,l:o}=M.add(this.Bh|0,this.Bl|0,s|0,o|0),{h:a,l:c}=M.add(this.Ch|0,this.Cl|0,a|0,c|0),{h,l:f}=M.add(this.Dh|0,this.Dl|0,h|0,f|0),{h:u,l:g}=M.add(this.Eh|0,this.El|0,u|0,g|0),{h:l,l:d}=M.add(this.Fh|0,this.Fl|0,l|0,d|0),{h:m,l:y}=M.add(this.Gh|0,this.Gl|0,m|0,y|0),{h:b,l:w}=M.add(this.Hh|0,this.Hl|0,b|0,w|0),this.set(n,i,s,o,a,c,h,f,u,g,l,d,m,y,b,w)}roundClean(){Ct.fill(0),Nt.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 Dc=Cn(()=>new Js);var Dn={};ke(Dn,{aInRange:()=>Le,abool:()=>Ye,abytes:()=>br,bitGet:()=>od,bitLen:()=>ro,bitMask:()=>Gr,bitSet:()=>ad,bytesToHex:()=>gt,bytesToNumberBE:()=>yt,bytesToNumberLE:()=>Lt,concatBytes:()=>bt,createHmacDrbg:()=>no,ensureBytes:()=>oe,equalBytes:()=>id,hexToBytes:()=>jt,hexToNumber:()=>to,inRange:()=>$r,isBytes:()=>Rt,memoized:()=>Xt,notImplemented:()=>ld,numberToBytesBE:()=>Ut,numberToBytesLE:()=>Yt,numberToHexUnpadded:()=>Zt,numberToVarBytesBE:()=>nd,utf8ToBytes:()=>sd,validateObject:()=>st});var Ln=BigInt(0),Un=BigInt(1),td=BigInt(2);function Rt(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function br(r){if(!Rt(r))throw new Error("Uint8Array expected")}function Ye(r,e){if(typeof e!="boolean")throw new Error(r+" boolean expected, got "+e)}var rd=Array.from({length:256},(r,e)=>e.toString(16).padStart(2,"0"));function gt(r){br(r);let e="";for(let t=0;t<r.length;t++)e+=rd[r[t]];return e}function Zt(r){let e=r.toString(16);return e.length&1?"0"+e:e}function to(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return r===""?Ln:BigInt("0x"+r)}var mt={_0:48,_9:57,A:65,F:70,a:97,f:102};function Oc(r){if(r>=mt._0&&r<=mt._9)return r-mt._0;if(r>=mt.A&&r<=mt.F)return r-(mt.A-10);if(r>=mt.a&&r<=mt.f)return r-(mt.a-10)}function jt(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let e=r.length,t=e/2;if(e%2)throw new Error("hex string expected, got unpadded hex of length "+e);let n=new Uint8Array(t);for(let i=0,s=0;i<t;i++,s+=2){let o=Oc(r.charCodeAt(s)),a=Oc(r.charCodeAt(s+1));if(o===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[i]=o*16+a}return n}function yt(r){return to(gt(r))}function Lt(r){return br(r),to(gt(Uint8Array.from(r).reverse()))}function Ut(r,e){return jt(r.toString(16).padStart(e*2,"0"))}function Yt(r,e){return Ut(r,e).reverse()}function nd(r){return jt(Zt(r))}function oe(r,e,t){let n;if(typeof e=="string")try{n=jt(e)}catch(s){throw new Error(r+" must be hex string or Uint8Array, cause: "+s)}else if(Rt(e))n=Uint8Array.from(e);else throw new Error(r+" must be hex string or Uint8Array");let i=n.length;if(typeof t=="number"&&i!==t)throw new Error(r+" of length "+t+" expected, got "+i);return n}function bt(...r){let e=0;for(let n=0;n<r.length;n++){let i=r[n];br(i),e+=i.length}let t=new Uint8Array(e);for(let n=0,i=0;n<r.length;n++){let s=r[n];t.set(s,i),i+=s.length}return t}function id(r,e){if(r.length!==e.length)return!1;let t=0;for(let n=0;n<r.length;n++)t|=r[n]^e[n];return t===0}function sd(r){if(typeof r!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(r))}var Qs=r=>typeof r=="bigint"&&Ln<=r;function $r(r,e,t){return Qs(r)&&Qs(e)&&Qs(t)&&e<=r&&r<t}function Le(r,e,t,n){if(!$r(e,t,n))throw new Error("expected valid "+r+": "+t+" <= n < "+n+", got "+e)}function ro(r){let e;for(e=0;r>Ln;r>>=Un,e+=1);return e}function od(r,e){return r>>BigInt(e)&Un}function ad(r,e,t){return r|(t?Un:Ln)<<BigInt(e)}var Gr=r=>(td<<BigInt(r-1))-Un,eo=r=>new Uint8Array(r),Mc=r=>Uint8Array.from(r);function no(r,e,t){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof e!="number"||e<2)throw new Error("qByteLen must be a number");if(typeof t!="function")throw new Error("hmacFn must be a function");let n=eo(r),i=eo(r),s=0,o=()=>{n.fill(1),i.fill(0),s=0},a=(...u)=>t(i,n,...u),c=(u=eo())=>{i=a(Mc([0]),u),n=a(),u.length!==0&&(i=a(Mc([1]),u),n=a())},h=()=>{if(s++>=1e3)throw new Error("drbg: tried 1000 values");let u=0,g=[];for(;u<e;){n=a();let l=n.slice();g.push(l),u+=n.length}return bt(...g)};return(u,g)=>{o(),c(u);let l;for(;!(l=g(h()));)c();return o(),l}}var cd={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"||Rt(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,e)=>e.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function st(r,e,t={}){let n=(i,s,o)=>{let a=cd[s];if(typeof a!="function")throw new Error("invalid validator function");let c=r[i];if(!(o&&c===void 0)&&!a(c,r))throw new Error("param "+String(i)+" is invalid. Expected "+s+", got "+c)};for(let[i,s]of Object.entries(e))n(i,s,!1);for(let[i,s]of Object.entries(t))n(i,s,!0);return r}var ld=()=>{throw new Error("not implemented")};function Xt(r){let e=new WeakMap;return(t,...n)=>{let i=e.get(t);if(i!==void 0)return i;let s=r(t,...n);return e.set(t,s),s}}var ue=BigInt(0),ie=BigInt(1),Jt=BigInt(2),ud=BigInt(3),io=BigInt(4),Pc=BigInt(5),Vc=BigInt(8),fd=BigInt(9),hd=BigInt(16);function J(r,e){let t=r%e;return t>=ue?t:e+t}function dd(r,e,t){if(e<ue)throw new Error("invalid exponent, negatives unsupported");if(t<=ue)throw new Error("invalid modulus");if(t===ie)return ue;let n=ie;for(;e>ue;)e&ie&&(n=n*r%t),r=r*r%t,e>>=ie;return n}function se(r,e,t){let n=r;for(;e-- >ue;)n*=n,n%=t;return n}function On(r,e){if(r===ue)throw new Error("invert: expected non-zero number");if(e<=ue)throw new Error("invert: expected positive modulus, got "+e);let t=J(r,e),n=e,i=ue,s=ie,o=ie,a=ue;for(;t!==ue;){let h=n/t,f=n%t,u=i-o*h,g=s-a*h;n=t,t=f,i=o,s=a,o=u,a=g}if(n!==ie)throw new Error("invert: does not exist");return J(i,e)}function pd(r){let e=(r-ie)/Jt,t,n,i;for(t=r-ie,n=0;t%Jt===ue;t/=Jt,n++);for(i=Jt;i<r&&dd(i,e,r)!==r-ie;i++)if(i>1e3)throw new Error("Cannot find square root: likely non-prime P");if(n===1){let o=(r+ie)/io;return function(c,h){let f=c.pow(h,o);if(!c.eql(c.sqr(f),h))throw new Error("Cannot find square root");return f}}let s=(t+ie)/Jt;return function(a,c){if(a.pow(c,e)===a.neg(a.ONE))throw new Error("Cannot find square root");let h=n,f=a.pow(a.mul(a.ONE,i),t),u=a.pow(c,s),g=a.pow(c,t);for(;!a.eql(g,a.ONE);){if(a.eql(g,a.ZERO))return a.ZERO;let l=1;for(let m=a.sqr(g);l<h&&!a.eql(m,a.ONE);l++)m=a.sqr(m);let d=a.pow(f,ie<<BigInt(h-l-1));f=a.sqr(d),u=a.mul(u,d),g=a.mul(g,f),h=l}return u}}function md(r){if(r%io===ud){let e=(r+ie)/io;return function(n,i){let s=n.pow(i,e);if(!n.eql(n.sqr(s),i))throw new Error("Cannot find square root");return s}}if(r%Vc===Pc){let e=(r-Pc)/Vc;return function(n,i){let s=n.mul(i,Jt),o=n.pow(s,e),a=n.mul(i,o),c=n.mul(n.mul(a,Jt),o),h=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(h),i))throw new Error("Cannot find square root");return h}}return r%hd,pd(r)}var Hc=(r,e)=>(J(r,e)&ie)===ie,gd=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function so(r){let e={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},t=gd.reduce((n,i)=>(n[i]="function",n),e);return st(r,t)}function yd(r,e,t){if(t<ue)throw new Error("invalid exponent, negatives unsupported");if(t===ue)return r.ONE;if(t===ie)return e;let n=r.ONE,i=e;for(;t>ue;)t&ie&&(n=r.mul(n,i)),i=r.sqr(i),t>>=ie;return n}function bd(r,e){let t=new Array(e.length),n=e.reduce((s,o,a)=>r.is0(o)?s:(t[a]=s,r.mul(s,o)),r.ONE),i=r.inv(n);return e.reduceRight((s,o,a)=>r.is0(o)?s:(t[a]=r.mul(s,t[a]),r.mul(s,o)),i),t}function oo(r,e){let t=e!==void 0?e:r.toString(2).length,n=Math.ceil(t/8);return{nBitLength:t,nByteLength:n}}function Dt(r,e,t=!1,n={}){if(r<=ue)throw new Error("invalid field: expected ORDER > 0, got "+r);let{nBitLength:i,nByteLength:s}=oo(r,e);if(s>2048)throw new Error("invalid field: expected ORDER of <= 2048 bytes");let o,a=Object.freeze({ORDER:r,isLE:t,BITS:i,BYTES:s,MASK:Gr(i),ZERO:ue,ONE:ie,create:c=>J(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error("invalid field element: expected bigint, got "+typeof c);return ue<=c&&c<r},is0:c=>c===ue,isOdd:c=>(c&ie)===ie,neg:c=>J(-c,r),eql:(c,h)=>c===h,sqr:c=>J(c*c,r),add:(c,h)=>J(c+h,r),sub:(c,h)=>J(c-h,r),mul:(c,h)=>J(c*h,r),pow:(c,h)=>yd(a,c,h),div:(c,h)=>J(c*On(h,r),r),sqrN:c=>c*c,addN:(c,h)=>c+h,subN:(c,h)=>c-h,mulN:(c,h)=>c*h,inv:c=>On(c,r),sqrt:n.sqrt||(c=>(o||(o=md(r)),o(a,c))),invertBatch:c=>bd(a,c),cmov:(c,h,f)=>f?h:c,toBytes:c=>t?Yt(c,s):Ut(c,s),fromBytes:c=>{if(c.length!==s)throw new Error("Field.fromBytes: expected "+s+" bytes, got "+c.length);return t?Lt(c):yt(c)}});return Object.freeze(a)}function Fc(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let e=r.toString(2).length;return Math.ceil(e/8)}function ao(r){let e=Fc(r);return e+Math.ceil(e/2)}function Kc(r,e,t=!1){let n=r.length,i=Fc(e),s=ao(e);if(n<16||n<s||n>1024)throw new Error("expected "+s+"-1024 bytes of input, got "+n);let o=t?Lt(r):yt(r),a=J(o,e-ie)+ie;return t?Yt(a,i):Ut(a,i)}var qc=BigInt(0),Mn=BigInt(1);function co(r,e){let t=e.negate();return r?t:e}function zc(r,e){if(!Number.isSafeInteger(r)||r<=0||r>e)throw new Error("invalid window size, expected [1.."+e+"], got W="+r)}function lo(r,e){zc(r,e);let t=Math.ceil(e/r)+1,n=2**(r-1);return{windows:t,windowSize:n}}function wd(r,e){if(!Array.isArray(r))throw new Error("array expected");r.forEach((t,n)=>{if(!(t instanceof e))throw new Error("invalid point at index "+n)})}function xd(r,e){if(!Array.isArray(r))throw new Error("array of scalars expected");r.forEach((t,n)=>{if(!e.isValid(t))throw new Error("invalid scalar at index "+n)})}var uo=new WeakMap,$c=new WeakMap;function fo(r){return $c.get(r)||1}function Pn(r,e){return{constTimeNegate:co,hasPrecomputes(t){return fo(t)!==1},unsafeLadder(t,n,i=r.ZERO){let s=t;for(;n>qc;)n&Mn&&(i=i.add(s)),s=s.double(),n>>=Mn;return i},precomputeWindow(t,n){let{windows:i,windowSize:s}=lo(n,e),o=[],a=t,c=a;for(let h=0;h<i;h++){c=a,o.push(c);for(let f=1;f<s;f++)c=c.add(a),o.push(c);a=c.double()}return o},wNAF(t,n,i){let{windows:s,windowSize:o}=lo(t,e),a=r.ZERO,c=r.BASE,h=BigInt(2**t-1),f=2**t,u=BigInt(t);for(let g=0;g<s;g++){let l=g*o,d=Number(i&h);i>>=u,d>o&&(d-=f,i+=Mn);let m=l,y=l+Math.abs(d)-1,b=g%2!==0,w=d<0;d===0?c=c.add(co(b,n[m])):a=a.add(co(w,n[y]))}return{p:a,f:c}},wNAFUnsafe(t,n,i,s=r.ZERO){let{windows:o,windowSize:a}=lo(t,e),c=BigInt(2**t-1),h=2**t,f=BigInt(t);for(let u=0;u<o;u++){let g=u*a;if(i===qc)break;let l=Number(i&c);if(i>>=f,l>a&&(l-=h,i+=Mn),l===0)continue;let d=n[g+Math.abs(l)-1];l<0&&(d=d.negate()),s=s.add(d)}return s},getPrecomputes(t,n,i){let s=uo.get(n);return s||(s=this.precomputeWindow(n,t),t!==1&&uo.set(n,i(s))),s},wNAFCached(t,n,i){let s=fo(t);return this.wNAF(s,this.getPrecomputes(s,t,i),n)},wNAFCachedUnsafe(t,n,i,s){let o=fo(t);return o===1?this.unsafeLadder(t,n,s):this.wNAFUnsafe(o,this.getPrecomputes(o,t,i),n,s)},setWindowSize(t,n){zc(n,e),$c.set(t,n),uo.delete(t)}}}function Vn(r,e,t,n){if(wd(t,r),xd(n,e),t.length!==n.length)throw new Error("arrays of points and scalars must have equal length");let i=r.ZERO,s=ro(BigInt(t.length)),o=s>12?s-3:s>4?s-2:s?2:1,a=(1<<o)-1,c=new Array(a+1).fill(i),h=Math.floor((e.BITS-1)/o)*o,f=i;for(let u=h;u>=0;u-=o){c.fill(i);for(let l=0;l<n.length;l++){let d=n[l],m=Number(d>>BigInt(u)&BigInt(a));c[m]=c[m].add(t[l])}let g=i;for(let l=c.length-1,d=i;l>0;l--)d=d.add(c[l]),g=g.add(d);if(f=f.add(g),u!==0)for(let l=0;l<o;l++)f=f.double()}return f}function Wr(r){return so(r.Fp),st(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...oo(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var Xe=BigInt(0),Ue=BigInt(1),Hn=BigInt(2),vd=BigInt(8),Ed={zip215:!0};function Sd(r){let e=Wr(r);return st(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...e})}function Gc(r){let e=Sd(r),{Fp:t,n,prehash:i,hash:s,randomBytes:o,nByteLength:a,h:c}=e,h=Hn<<BigInt(a*8)-Ue,f=t.create,u=Dt(e.n,e.nBitLength),g=e.uvRatio||((S,v)=>{try{return{isValid:!0,value:t.sqrt(S*t.inv(v))}}catch{return{isValid:!1,value:Xe}}}),l=e.adjustScalarBytes||(S=>S),d=e.domain||((S,v,B)=>{if(Ye("phflag",B),v.length||B)throw new Error("Contexts/pre-hash are not supported");return S});function m(S,v){Le("coordinate "+S,v,Xe,h)}function y(S){if(!(S instanceof p))throw new Error("ExtendedPoint expected")}let b=Xt((S,v)=>{let{ex:B,ey:N,ez:U}=S,D=S.is0();v==null&&(v=D?vd:t.inv(U));let H=f(B*v),$=f(N*v),O=f(U*v);if(D)return{x:Xe,y:Ue};if(O!==Ue)throw new Error("invZ was invalid");return{x:H,y:$}}),w=Xt(S=>{let{a:v,d:B}=e;if(S.is0())throw new Error("bad point: ZERO");let{ex:N,ey:U,ez:D,et:H}=S,$=f(N*N),O=f(U*U),Y=f(D*D),re=f(Y*Y),he=f($*v),de=f(Y*f(he+O)),ye=f(re+f(B*f($*O)));if(de!==ye)throw new Error("bad point: equation left != right (1)");let xe=f(N*U),Ne=f(D*H);if(xe!==Ne)throw new Error("bad point: equation left != right (2)");return!0});class p{constructor(v,B,N,U){this.ex=v,this.ey=B,this.ez=N,this.et=U,m("x",v),m("y",B),m("z",N),m("t",U),Object.freeze(this)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(v){if(v instanceof p)throw new Error("extended point not allowed");let{x:B,y:N}=v||{};return m("x",B),m("y",N),new p(B,N,Ue,f(B*N))}static normalizeZ(v){let B=t.invertBatch(v.map(N=>N.ez));return v.map((N,U)=>N.toAffine(B[U])).map(p.fromAffine)}static msm(v,B){return Vn(p,u,v,B)}_setWindowSize(v){_.setWindowSize(this,v)}assertValidity(){w(this)}equals(v){y(v);let{ex:B,ey:N,ez:U}=this,{ex:D,ey:H,ez:$}=v,O=f(B*$),Y=f(D*U),re=f(N*$),he=f(H*U);return O===Y&&re===he}is0(){return this.equals(p.ZERO)}negate(){return new p(f(-this.ex),this.ey,this.ez,f(-this.et))}double(){let{a:v}=e,{ex:B,ey:N,ez:U}=this,D=f(B*B),H=f(N*N),$=f(Hn*f(U*U)),O=f(v*D),Y=B+N,re=f(f(Y*Y)-D-H),he=O+H,de=he-$,ye=O-H,xe=f(re*de),Ne=f(he*ye),Te=f(re*ye),nt=f(de*he);return new p(xe,Ne,nt,Te)}add(v){y(v);let{a:B,d:N}=e,{ex:U,ey:D,ez:H,et:$}=this,{ex:O,ey:Y,ez:re,et:he}=v;if(B===BigInt(-1)){let Xa=f((D-U)*(Y+O)),Ja=f((D+U)*(Y-O)),Os=f(Ja-Xa);if(Os===Xe)return this.double();let Qa=f(H*Hn*he),ec=f($*Hn*re),tc=ec+Qa,rc=Ja+Xa,nc=ec-Qa,Lf=f(tc*Os),Uf=f(rc*nc),Df=f(tc*nc),Of=f(Os*rc);return new p(Lf,Uf,Of,Df)}let de=f(U*O),ye=f(D*Y),xe=f($*N*he),Ne=f(H*re),Te=f((U+D)*(O+Y)-de-ye),nt=Ne-xe,ut=Ne+xe,Pr=f(ye-B*de),kf=f(Te*nt),Cf=f(ut*Pr),Nf=f(Te*Pr),Rf=f(nt*ut);return new p(kf,Cf,Rf,Nf)}subtract(v){return this.add(v.negate())}wNAF(v){return _.wNAFCached(this,v,p.normalizeZ)}multiply(v){let B=v;Le("scalar",B,Ue,n);let{p:N,f:U}=this.wNAF(B);return p.normalizeZ([N,U])[0]}multiplyUnsafe(v,B=p.ZERO){let N=v;return Le("scalar",N,Xe,n),N===Xe?A:this.is0()||N===Ue?this:_.wNAFCachedUnsafe(this,N,p.normalizeZ,B)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return _.unsafeLadder(this,n).is0()}toAffine(v){return b(this,v)}clearCofactor(){let{h:v}=e;return v===Ue?this:this.multiplyUnsafe(v)}static fromHex(v,B=!1){let{d:N,a:U}=e,D=t.BYTES;v=oe("pointHex",v,D),Ye("zip215",B);let H=v.slice(),$=v[D-1];H[D-1]=$&-129;let O=Lt(H),Y=B?h:t.ORDER;Le("pointHex.y",O,Xe,Y);let re=f(O*O),he=f(re-Ue),de=f(N*re-U),{isValid:ye,value:xe}=g(he,de);if(!ye)throw new Error("Point.fromHex: invalid y coordinate");let Ne=(xe&Ue)===Ue,Te=($&128)!==0;if(!B&&xe===Xe&&Te)throw new Error("Point.fromHex: x=0 and x_0=1");return Te!==Ne&&(xe=f(-xe)),p.fromAffine({x:xe,y:O})}static fromPrivateKey(v){return C(v).point}toRawBytes(){let{x:v,y:B}=this.toAffine(),N=Yt(B,t.BYTES);return N[N.length-1]|=v&Ue?128:0,N}toHex(){return gt(this.toRawBytes())}}p.BASE=new p(e.Gx,e.Gy,Ue,f(e.Gx*e.Gy)),p.ZERO=new p(Xe,Ue,Ue,Xe);let{BASE:E,ZERO:A}=p,_=Pn(p,a*8);function x(S){return J(S,n)}function I(S){return x(Lt(S))}function C(S){let v=t.BYTES;S=oe("private key",S,v);let B=oe("hashed private key",s(S),2*v),N=l(B.slice(0,v)),U=B.slice(v,2*v),D=I(N),H=E.multiply(D),$=H.toRawBytes();return{head:N,prefix:U,scalar:D,point:H,pointBytes:$}}function j(S){return C(S).pointBytes}function V(S=new Uint8Array,...v){let B=bt(...v);return I(s(d(B,oe("context",S),!!i)))}function P(S,v,B={}){S=oe("message",S),i&&(S=i(S));let{prefix:N,scalar:U,pointBytes:D}=C(v),H=V(B.context,N,S),$=E.multiply(H).toRawBytes(),O=V(B.context,$,D,S),Y=x(H+O*U);Le("signature.s",Y,Xe,n);let re=bt($,Yt(Y,t.BYTES));return oe("result",re,t.BYTES*2)}let L=Ed;function T(S,v,B,N=L){let{context:U,zip215:D}=N,H=t.BYTES;S=oe("signature",S,2*H),v=oe("message",v),B=oe("publicKey",B,H),D!==void 0&&Ye("zip215",D),i&&(v=i(v));let $=Lt(S.slice(H,2*H)),O,Y,re;try{O=p.fromHex(B,D),Y=p.fromHex(S.slice(0,H),D),re=E.multiplyUnsafe($)}catch{return!1}if(!D&&O.isSmallOrder())return!1;let he=V(U,Y.toRawBytes(),O.toRawBytes(),v);return Y.add(O.multiplyUnsafe(he)).subtract(re).clearCofactor().equals(p.ZERO)}return E._setWindowSize(8),{CURVE:e,getPublicKey:j,sign:P,verify:T,ExtendedPoint:p,utils:{getExtendedPublicKey:C,randomPrivateKey:()=>o(t.BYTES),precompute(S=8,v=p.BASE){return v._setWindowSize(S),v.multiply(BigInt(3)),v}}}}var ho=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),Wc=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),ng=BigInt(0),Ad=BigInt(1),Zc=BigInt(2),ig=BigInt(3),Bd=BigInt(5),_d=BigInt(8);function Id(r){let e=BigInt(10),t=BigInt(20),n=BigInt(40),i=BigInt(80),s=ho,a=r*r%s*r%s,c=se(a,Zc,s)*a%s,h=se(c,Ad,s)*r%s,f=se(h,Bd,s)*h%s,u=se(f,e,s)*f%s,g=se(u,t,s)*u%s,l=se(g,n,s)*g%s,d=se(l,i,s)*l%s,m=se(d,i,s)*l%s,y=se(m,e,s)*f%s;return{pow_p_5_8:se(y,Zc,s)*r%s,b2:a}}function Td(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function kd(r,e){let t=ho,n=J(e*e*e,t),i=J(n*n*e,t),s=Id(r*i).pow_p_5_8,o=J(r*n*s,t),a=J(e*o*o,t),c=o,h=J(o*Wc,t),f=a===r,u=a===J(-r,t),g=a===J(-r*Wc,t);return f&&(o=c),(u||g)&&(o=h),Hc(o,t)&&(o=J(-o,t)),{isValid:f||u,value:o}}var Cd=Dt(ho,void 0,!0),Nd={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:Cd,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:_d,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Dc,randomBytes:Nn,adjustScalarBytes:Td,uvRatio:kd},jc=Gc(Nd);var Fn=32;function Yc(r,e,t){return jc.verify(e,t instanceof Uint8Array?t:t.subarray(),r)}var Kn=class{type="Ed25519";raw;constructor(e){this.raw=po(e,Fn)}toMultihash(){return pt.digest(Ot(this))}toCID(){return pe.createV1(114,this.toMultihash())}toString(){return ee.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}verify(e,t){return Yc(this.raw,t,e)}};function mo(r){return r=po(r,Fn),new Kn(r)}function po(r,e){if(r=Uint8Array.from(r??[]),r.length!==e)throw new ve(`Key must be a Uint8Array of length ${e}, got ${r.length}`);return r}function ae(r=0){return new Uint8Array(r)}function De(r=0){return new Uint8Array(r)}var Ld=Math.pow(2,7),Ud=Math.pow(2,14),Dd=Math.pow(2,21),go=Math.pow(2,28),yo=Math.pow(2,35),bo=Math.pow(2,42),wo=Math.pow(2,49),Z=128,Ee=127;function Se(r){if(r<Ld)return 1;if(r<Ud)return 2;if(r<Dd)return 3;if(r<go)return 4;if(r<yo)return 5;if(r<bo)return 6;if(r<wo)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function xo(r,e,t=0){switch(Se(r)){case 8:e[t++]=r&255|Z,r/=128;case 7:e[t++]=r&255|Z,r/=128;case 6:e[t++]=r&255|Z,r/=128;case 5:e[t++]=r&255|Z,r/=128;case 4:e[t++]=r&255|Z,r>>>=7;case 3:e[t++]=r&255|Z,r>>>=7;case 2:e[t++]=r&255|Z,r>>>=7;case 1:{e[t++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return e}function Od(r,e,t=0){switch(Se(r)){case 8:e.set(t++,r&255|Z),r/=128;case 7:e.set(t++,r&255|Z),r/=128;case 6:e.set(t++,r&255|Z),r/=128;case 5:e.set(t++,r&255|Z),r/=128;case 4:e.set(t++,r&255|Z),r>>>=7;case 3:e.set(t++,r&255|Z),r>>>=7;case 2:e.set(t++,r&255|Z),r>>>=7;case 1:{e.set(t++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return e}function vo(r,e){let t=r[e],n=0;if(n+=t&Ee,t<Z||(t=r[e+1],n+=(t&Ee)<<7,t<Z)||(t=r[e+2],n+=(t&Ee)<<14,t<Z)||(t=r[e+3],n+=(t&Ee)<<21,t<Z)||(t=r[e+4],n+=(t&Ee)*go,t<Z)||(t=r[e+5],n+=(t&Ee)*yo,t<Z)||(t=r[e+6],n+=(t&Ee)*bo,t<Z)||(t=r[e+7],n+=(t&Ee)*wo,t<Z))return n;throw new RangeError("Could not decode varint")}function Md(r,e){let t=r.get(e),n=0;if(n+=t&Ee,t<Z||(t=r.get(e+1),n+=(t&Ee)<<7,t<Z)||(t=r.get(e+2),n+=(t&Ee)<<14,t<Z)||(t=r.get(e+3),n+=(t&Ee)<<21,t<Z)||(t=r.get(e+4),n+=(t&Ee)*go,t<Z)||(t=r.get(e+5),n+=(t&Ee)*yo,t<Z)||(t=r.get(e+6),n+=(t&Ee)*bo,t<Z)||(t=r.get(e+7),n+=(t&Ee)*wo,t<Z))return n;throw new RangeError("Could not decode varint")}function $e(r,e,t=0){return e==null&&(e=De(Se(r))),e instanceof Uint8Array?xo(r,e,t):Od(r,e,t)}function wt(r,e=0){return r instanceof Uint8Array?vo(r,e):Md(r,e)}var Eo=new Float32Array([-0]),Mt=new Uint8Array(Eo.buffer);function Jc(r,e,t){Eo[0]=r,e[t]=Mt[0],e[t+1]=Mt[1],e[t+2]=Mt[2],e[t+3]=Mt[3]}function Qc(r,e){return Mt[0]=r[e],Mt[1]=r[e+1],Mt[2]=r[e+2],Mt[3]=r[e+3],Eo[0]}var So=new Float64Array([-0]),Ae=new Uint8Array(So.buffer);function el(r,e,t){So[0]=r,e[t]=Ae[0],e[t+1]=Ae[1],e[t+2]=Ae[2],e[t+3]=Ae[3],e[t+4]=Ae[4],e[t+5]=Ae[5],e[t+6]=Ae[6],e[t+7]=Ae[7]}function tl(r,e){return Ae[0]=r[e],Ae[1]=r[e+1],Ae[2]=r[e+2],Ae[3]=r[e+3],Ae[4]=r[e+4],Ae[5]=r[e+5],Ae[6]=r[e+6],Ae[7]=r[e+7],So[0]}var Pd=BigInt(Number.MAX_SAFE_INTEGER),Vd=BigInt(Number.MIN_SAFE_INTEGER),He=class r{lo;hi;constructor(e,t){this.lo=e|0,this.hi=t|0}toNumber(e=!1){if(!e&&this.hi>>>31>0){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(e=!1){if(e)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(BigInt(t)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(e=!1){return this.toBigInt(e).toString()}zzEncode(){let e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this}zzDecode(){let e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this}length(){let e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:n<128?9:10}static fromBigInt(e){if(e===0n)return Qt;if(e<Pd&&e>Vd)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let n=e>>32n,i=e-(n<<32n);return t&&(n=~n|0n,i=~i|0n,++i>rl&&(i=0n,++n>rl&&(n=0n))),new r(Number(i),Number(n))}static fromNumber(e){if(e===0)return Qt;let t=e<0;t&&(e=-e);let n=e>>>0,i=(e-n)/4294967296>>>0;return t&&(i=~i>>>0,n=~n>>>0,++n>4294967295&&(n=0,++i>4294967295&&(i=0))),new r(n,i)}static from(e){return typeof e=="number"?r.fromNumber(e):typeof e=="bigint"?r.fromBigInt(e):typeof e=="string"?r.fromBigInt(BigInt(e)):e.low!=null||e.high!=null?new r(e.low>>>0,e.high>>>0):Qt}},Qt=new He(0,0);Qt.toBigInt=function(){return 0n};Qt.zzEncode=Qt.zzDecode=function(){return this};Qt.length=function(){return 1};var rl=4294967296n;function nl(r){let e=0,t=0;for(let n=0;n<r.length;++n)t=r.charCodeAt(n),t<128?e+=1:t<2048?e+=2:(t&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,e+=4):e+=3;return e}function il(r,e,t){if(t-e<1)return"";let i,s=[],o=0,a;for(;e<t;)a=r[e++],a<128?s[o++]=a:a>191&&a<224?s[o++]=(a&31)<<6|r[e++]&63:a>239&&a<365?(a=((a&7)<<18|(r[e++]&63)<<12|(r[e++]&63)<<6|r[e++]&63)-65536,s[o++]=55296+(a>>10),s[o++]=56320+(a&1023)):s[o++]=(a&15)<<12|(r[e++]&63)<<6|r[e++]&63,o>8191&&((i??(i=[])).push(String.fromCharCode.apply(String,s)),o=0);return i!=null?(o>0&&i.push(String.fromCharCode.apply(String,s.slice(0,o))),i.join("")):String.fromCharCode.apply(String,s.slice(0,o))}function Ao(r,e,t){let n=t,i,s;for(let o=0;o<r.length;++o)i=r.charCodeAt(o),i<128?e[t++]=i:i<2048?(e[t++]=i>>6|192,e[t++]=i&63|128):(i&64512)===55296&&((s=r.charCodeAt(o+1))&64512)===56320?(i=65536+((i&1023)<<10)+(s&1023),++o,e[t++]=i>>18|240,e[t++]=i>>12&63|128,e[t++]=i>>6&63|128,e[t++]=i&63|128):(e[t++]=i>>12|224,e[t++]=i>>6&63|128,e[t++]=i&63|128);return t-n}function Je(r,e){return RangeError(`index out of range: ${r.pos} + ${e??1} > ${r.len}`)}function zn(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}var Bo=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(e){this.buf=e,this.pos=0,this.len=e.length}uint32(){let e=4294967295;if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,Je(this,10);return e}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw Je(this,4);return zn(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw Je(this,4);return zn(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw Je(this,4);let e=Qc(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw Je(this,4);let e=tl(this.buf,this.pos);return this.pos+=8,e}bytes(){let e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw Je(this,e);return this.pos+=e,t===n?new Uint8Array(0):this.buf.subarray(t,n)}string(){let e=this.bytes();return il(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw Je(this,e);this.pos+=e}else do if(this.pos>=this.len)throw Je(this);while(this.buf[this.pos++]&128);return this}skipType(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(e=this.uint32()&7)!==4;)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${e} at offset ${this.pos}`)}return this}readLongVarint(){let e=new He(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(this.buf[this.pos]&127)<<28)>>>0,e.hi=(e.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return e;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw Je(this);if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,e}if(this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw Je(this);if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw Je(this,8);let e=zn(this.buf,this.pos+=4),t=zn(this.buf,this.pos+=4);return new He(e,t)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let e=vo(this.buf,this.pos);return this.pos+=Se(e),e}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 _o(r){return new Bo(r instanceof Uint8Array?r:r.subarray())}function Oe(r,e,t){let n=_o(r);return e.decode(n,void 0,t)}var Io={};ke(Io,{base10:()=>Hd});var Hd=kt({prefix:"9",name:"base10",alphabet:"0123456789"});var To={};ke(To,{base16:()=>Fd,base16upper:()=>Kd});var Fd=le({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Kd=le({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var ko={};ke(ko,{base2:()=>qd});var qd=le({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var Co={};ke(Co,{base256emoji:()=>Zd});var ol=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}"),zd=ol.reduce((r,e,t)=>(r[t]=e,r),[]),$d=ol.reduce((r,e,t)=>{let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);return r[n]=t,r},[]);function Gd(r){return r.reduce((e,t)=>(e+=zd[t],e),"")}function Wd(r){let e=[];for(let t of r){let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);let i=$d[n];if(i==null)throw new Error(`Non-base256emoji character: ${t}`);e.push(i)}return new Uint8Array(e)}var Zd=ur({prefix:"\u{1F680}",name:"base256emoji",encode:Gd,decode:Wd});var Ro={};ke(Ro,{base64:()=>jd,base64pad:()=>Yd,base64url:()=>No,base64urlpad:()=>Xd});var jd=le({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),Yd=le({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),No=le({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),Xd=le({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var Lo={};ke(Lo,{base8:()=>Jd});var Jd=le({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var Uo={};ke(Uo,{identity:()=>Qd});var Qd=ur({prefix:"\0",name:"identity",encode:r=>mc(r),decode:r=>pc(r)});var Hg=new TextEncoder,Fg=new TextDecoder;var Mo={};ke(Mo,{sha256:()=>wr,sha512:()=>rp});function Oo({name:r,code:e,encode:t}){return new Do(r,e,t)}var Do=class{name;code;encode;constructor(e,t,n){this.name=e,this.code=t,this.encode=n}digest(e){if(e instanceof Uint8Array){let t=this.encode(e);return t instanceof Uint8Array?Ze(this.code,t):t.then(n=>Ze(this.code,n))}else throw Error("Unknown type, must be binary type")}};function cl(r){return async e=>new Uint8Array(await crypto.subtle.digest(r,e))}var wr=Oo({name:"sha2-256",code:18,encode:cl("SHA-256")}),rp=Oo({name:"sha2-512",code:19,encode:cl("SHA-512")});var Zr={...Uo,...ko,...Lo,...Io,...To,...$s,...Gs,...zs,...Ro,...Co},Qg={...Mo,...js};function ul(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var ll=ul("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),Po=ul("ascii","a",r=>{let e="a";for(let t=0;t<r.length;t++)e+=String.fromCharCode(r[t]);return e},r=>{r=r.substring(1);let e=De(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),np={utf8:ll,"utf-8":ll,hex:Zr.base16,latin1:Po,ascii:Po,binary:Po,...Zr},$n=np;function G(r,e="utf8"){let t=$n[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${r}`)}function Vo(r){let e=r??8192,t=e>>>1,n,i=e;return function(o){if(o<1||o>t)return De(o);i+o>e&&(n=De(e),i=0);let a=n.subarray(i,i+=o);return i&7&&(i=(i|7)+1),a}}var er=class{fn;len;next;val;constructor(e,t,n){this.fn=e,this.len=t,this.next=void 0,this.val=n}};function Ho(){}var Ko=class{head;tail;len;next;constructor(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},ip=Vo();function sp(r){return globalThis.Buffer!=null?De(r):ip(r)}var Yr=class{len;head;tail;states;constructor(){this.len=0,this.head=new er(Ho,0,0),this.tail=this.head,this.states=null}_push(e,t,n){return this.tail=this.tail.next=new er(e,t,n),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new qo((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this}int32(e){return e<0?this._push(Gn,10,He.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=He.fromBigInt(e);return this._push(Gn,t.length(),t)}uint64Number(e){return this._push(xo,Se(e),e)}uint64String(e){return this.uint64(BigInt(e))}int64(e){return this.uint64(e)}int64Number(e){return this.uint64Number(e)}int64String(e){return this.uint64String(e)}sint64(e){let t=He.fromBigInt(e).zzEncode();return this._push(Gn,t.length(),t)}sint64Number(e){let t=He.fromNumber(e).zzEncode();return this._push(Gn,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(Fo,1,e?1:0)}fixed32(e){return this._push(jr,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=He.fromBigInt(e);return this._push(jr,4,t.lo)._push(jr,4,t.hi)}fixed64Number(e){let t=He.fromNumber(e);return this._push(jr,4,t.lo)._push(jr,4,t.hi)}fixed64String(e){return this.fixed64(BigInt(e))}sfixed64(e){return this.fixed64(e)}sfixed64Number(e){return this.fixed64Number(e)}sfixed64String(e){return this.fixed64String(e)}float(e){return this._push(Jc,4,e)}double(e){return this._push(el,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(Fo,1,0):this.uint32(t)._push(ap,t,e)}string(e){let t=nl(e);return t!==0?this.uint32(t)._push(Ao,t,e):this._push(Fo,1,0)}fork(){return this.states=new Ko(this),this.head=this.tail=new er(Ho,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 er(Ho,0,0),this.len=0),this}ldelim(){let e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=e.next,this.tail=t,this.len+=n),this}finish(){let e=this.head.next,t=sp(this.len),n=0;for(;e!=null;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t}};function Fo(r,e,t){e[t]=r&255}function op(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}var qo=class extends er{next;constructor(e,t){super(op,e,t),this.next=void 0}};function Gn(r,e,t){for(;r.hi!==0;)e[t++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)e[t++]=r.lo&127|128,r.lo=r.lo>>>7;e[t++]=r.lo}function jr(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}function ap(r,e,t){e.set(r,t)}globalThis.Buffer!=null&&(Yr.prototype.bytes=function(r){let e=r.length>>>0;return this.uint32(e),e>0&&this._push(cp,e,r),this},Yr.prototype.string=function(r){let e=globalThis.Buffer.byteLength(r);return this.uint32(e),e>0&&this._push(lp,e,r),this});function cp(r,e,t){e.set(r,t)}function lp(r,e,t){r.length<40?Ao(r,e,t):e.utf8Write!=null?e.utf8Write(r,t):e.set(G(r),t)}function zo(){return new Yr}function Me(r,e){let t=zo();return e.encode(r,t,{lengthDelimited:!1}),t.finish()}var xr;(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"})(xr||(xr={}));function Wn(r,e,t,n){return{name:r,type:e,encode:t,decode:n}}function tr(r){function e(i){if(r[i.toString()]==null)throw new Error("Invalid enum value");return r[i]}let t=function(s,o){let a=e(s);o.int32(a)},n=function(s){let o=s.int32();return e(o)};return Wn("enum",xr.VARINT,t,n)}function Pe(r,e){return Wn("message",xr.LENGTH_DELIMITED,r,e)}var Xr=class extends Error{code="ERR_MAX_LENGTH";name="MaxLengthError"};var fe;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.secp256k1="secp256k1"})(fe||(fe={}));var $o;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.secp256k1=2]="secp256k1"})($o||($o={}));(function(r){r.codec=()=>tr($o)})(fe||(fe={}));var ot;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),fe.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.Type=fe.codec().decode(t);break}case 2:{s.Data=t.bytes();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(ot||(ot={}));var Go;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),fe.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.Type=fe.codec().decode(t);break}case 2:{s.Data=t.bytes();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Go||(Go={}));var cn={};ke(cn,{MAX_RSA_KEY_SIZE:()=>Pi,generateRSAKeyPair:()=>au,jwkToJWKKeyPair:()=>cu,jwkToPkcs1:()=>Bp,jwkToPkix:()=>ta,jwkToRSAPrivateKey:()=>ou,pkcs1ToJwk:()=>nu,pkcs1ToRSAPrivateKey:()=>su,pkixToJwk:()=>iu,pkixToRSAPublicKey:()=>ra});var up=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]),Pt=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),Vt=new Uint32Array(64),Wo=class extends yr{constructor(){super(64,32,8,!1),this.A=Pt[0]|0,this.B=Pt[1]|0,this.C=Pt[2]|0,this.D=Pt[3]|0,this.E=Pt[4]|0,this.F=Pt[5]|0,this.G=Pt[6]|0,this.H=Pt[7]|0}get(){let{A:e,B:t,C:n,D:i,E:s,F:o,G:a,H:c}=this;return[e,t,n,i,s,o,a,c]}set(e,t,n,i,s,o,a,c){this.A=e|0,this.B=t|0,this.C=n|0,this.D=i|0,this.E=s|0,this.F=o|0,this.G=a|0,this.H=c|0}process(e,t){for(let u=0;u<16;u++,t+=4)Vt[u]=e.getUint32(t,!1);for(let u=16;u<64;u++){let g=Vt[u-15],l=Vt[u-2],d=je(g,7)^je(g,18)^g>>>3,m=je(l,17)^je(l,19)^l>>>10;Vt[u]=m+Vt[u-7]+d+Vt[u-16]|0}let{A:n,B:i,C:s,D:o,E:a,F:c,G:h,H:f}=this;for(let u=0;u<64;u++){let g=je(a,6)^je(a,11)^je(a,25),l=f+g+Rc(a,c,h)+up[u]+Vt[u]|0,m=(je(n,2)^je(n,13)^je(n,22))+Lc(n,i,s)|0;f=h,h=c,c=a,a=o+l|0,o=s,s=i,i=n,n=l+m|0}n=n+this.A|0,i=i+this.B|0,s=s+this.C|0,o=o+this.D|0,a=a+this.E|0,c=c+this.F|0,h=h+this.G|0,f=f+this.H|0,this.set(n,i,s,o,a,c,h,f)}roundClean(){Vt.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var vr=Cn(()=>new Wo);var z=sc(hl());function rr(r,e){let t=0;if(r.length===1)return r[0];for(let n=r.length-1;n>=0;n--)t+=r[r.length-1-n]*Math.pow(2,e*n);return t}function Ht(r,e,t=-1){let n=t,i=r,s=0,o=Math.pow(2,e);for(let a=1;a<8;a++){if(r<o){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 h=new Uint8Array(c);for(let f=a-1;f>=0;f--){let u=Math.pow(2,f*e);h[s-f-1]=Math.floor(i/u),i-=h[s-f-1]*u}return c}o*=Math.pow(2,e)}return new ArrayBuffer(0)}function Yn(...r){let e=0,t=0;for(let s of r)e+=s.length;let n=new ArrayBuffer(e),i=new Uint8Array(n);for(let s of r)i.set(s,t),t+=s.length;return i}function jo(){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 e=new ArrayBuffer(this.valueHex.byteLength),t=new Uint8Array(e);for(let a=0;a<this.valueHex.byteLength;a++)t[a]=0;t[0]=r[0]&128;let n=rr(t,8),i=new ArrayBuffer(this.valueHex.byteLength),s=new Uint8Array(i);for(let a=0;a<this.valueHex.byteLength;a++)s[a]=r[a];return s[0]&=127,rr(s,8)-n}function dl(r){let e=r<0?r*-1:r,t=128;for(let n=1;n<8;n++){if(e<=t){if(r<0){let o=t-e,a=Ht(o,8,n),c=new Uint8Array(a);return c[0]|=128,a}let i=Ht(e,8,n),s=new Uint8Array(i);if(s[0]&128){let o=i.slice(0),a=new Uint8Array(o);i=new ArrayBuffer(i.byteLength+1),s=new Uint8Array(i);for(let c=0;c<o.byteLength;c++)s[c+1]=a[c];s[0]=0}return i}t*=Math.pow(2,8)}return new ArrayBuffer(0)}function pl(r,e){if(r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let i=0;i<t.length;i++)if(t[i]!==n[i])return!1;return!0}function Ve(r,e){let t=r.toString(10);if(e<t.length)return"";let n=e-t.length,i=new Array(n);for(let o=0;o<n;o++)i[o]="0";return i.join("").concat(t)}var Uy=Math.log(2);function Xn(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function Yo(r){let e=0,t=0;for(let i=0;i<r.length;i++){let s=r[i];e+=s.byteLength}let n=new Uint8Array(e);for(let i=0;i<r.length;i++){let s=r[i];n.set(new Uint8Array(s),t),t+=s.byteLength}return n.buffer}function At(r,e,t,n){return e instanceof Uint8Array?e.byteLength?t<0?(r.error="Wrong parameter: inputOffset less than zero",!1):n<0?(r.error="Wrong parameter: inputLength less than zero",!1):e.byteLength-t-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 Qr=class{constructor(){this.items=[]}write(e){this.items.push(e)}final(){return Yo(this.items)}},Jr=[new Uint8Array([1])],ml="0123456789";var _r="",Qe=new ArrayBuffer(0),Xo=new Uint8Array(0),en="EndOfContent",yl="OCTET STRING",bl="BIT STRING";function Bt(r){var e;return e=class extends r{constructor(...n){var i;super(...n);let s=n[0]||{};this.isHexOnly=(i=s.isHexOnly)!==null&&i!==void 0?i:!1,this.valueHexView=s.valueHex?z.BufferSourceConverter.toUint8Array(s.valueHex):Xo}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,i,s){let o=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!At(this,o,i,s))return-1;let a=i+s;return this.valueHexView=o.subarray(i,a),this.valueHexView.length?(this.blockLength=s,a):(this.warnings.push("Zero buffer length"),i)}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",Qe)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:z.Convert.ToHex(this.valueHexView)}}},e.NAME="hexBlock",e}var vt=class{constructor({blockLength:e=0,error:t=_r,warnings:n=[],valueBeforeDecode:i=Xo}={}){this.blockLength=e,this.error=t,this.warnings=n,this.valueBeforeDecodeView=z.BufferSourceConverter.toUint8Array(i)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(e){this.valueBeforeDecodeView=new Uint8Array(e)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:z.Convert.ToHex(this.valueBeforeDecodeView)}}};vt.NAME="baseBlock";var Be=class extends vt{fromBER(e,t,n){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(e,t){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}};Be.NAME="valueBlock";var Jn=class extends Bt(vt){constructor({idBlock:e={}}={}){var t,n,i,s;super(),e?(this.isHexOnly=(t=e.isHexOnly)!==null&&t!==void 0?t:!1,this.valueHexView=e.valueHex?z.BufferSourceConverter.toUint8Array(e.valueHex):Xo,this.tagClass=(n=e.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(i=e.tagNumber)!==null&&i!==void 0?i:-1,this.isConstructed=(s=e.isConstructed)!==null&&s!==void 0?s:!1):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(e=!1){let t=0;switch(this.tagClass){case 1:t|=0;break;case 2:t|=64;break;case 3:t|=128;break;case 4:t|=192;break;default:return this.error="Unknown tag class",Qe}if(this.isConstructed&&(t|=32),this.tagNumber<31&&!this.isHexOnly){let i=new Uint8Array(1);if(!e){let s=this.tagNumber;s&=31,t|=s,i[0]=t}return i.buffer}if(!this.isHexOnly){let i=Ht(this.tagNumber,7),s=new Uint8Array(i),o=i.byteLength,a=new Uint8Array(o+1);if(a[0]=t|31,!e){for(let c=0;c<o-1;c++)a[c+1]=s[c]|128;a[o]=s[o-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=t|31,!e){let i=this.valueHexView;for(let s=0;s<i.length-1;s++)n[s+1]=i[s]|128;n[this.valueHexView.byteLength]=i[i.length-1]}return n.buffer}fromBER(e,t,n){let i=z.BufferSourceConverter.toUint8Array(e);if(!At(this,i,t,n))return-1;let s=i.subarray(t,t+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,h=this.valueHexView=new Uint8Array(255),f=255;for(;s[c]&128;){if(h[c-1]=s[c]&127,c++,c>=s.length)return this.error="End of input reached before message was fully decoded",-1;if(c===f){f+=255;let g=new Uint8Array(f);for(let l=0;l<h.length;l++)g[l]=h[l];h=this.valueHexView=new Uint8Array(f)}}this.blockLength=c+1,h[c-1]=s[c]&127;let u=new Uint8Array(c);for(let g=0;g<c;g++)u[g]=h[g];h=this.valueHexView=new Uint8Array(c),h.set(u),this.blockLength<=9?this.tagNumber=rr(h,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 t+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}};Jn.NAME="identificationBlock";var Qn=class extends vt{constructor({lenBlock:e={}}={}){var t,n,i;super(),this.isIndefiniteForm=(t=e.isIndefiniteForm)!==null&&t!==void 0?t:!1,this.longFormUsed=(n=e.longFormUsed)!==null&&n!==void 0?n:!1,this.length=(i=e.length)!==null&&i!==void 0?i:0}fromBER(e,t,n){let i=z.BufferSourceConverter.toUint8Array(e);if(!At(this,i,t,n))return-1;let s=i.subarray(t,t+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,t+this.blockLength;if(this.longFormUsed=!!(s[0]&128),this.longFormUsed===!1)return this.length=s[0],this.blockLength=1,t+this.blockLength;let o=s[0]&127;if(o>8)return this.error="Too big integer",-1;if(o+1>s.length)return this.error="End of input reached before message was fully decoded",-1;let a=t+1,c=i.subarray(a,a+o);return c[o-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=rr(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=o+1,t+this.blockLength}toBER(e=!1){let t,n;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=128),t;if(this.longFormUsed){let i=Ht(this.length,8);if(i.byteLength>127)return this.error="Too big length",Qe;if(t=new ArrayBuffer(i.byteLength+1),e)return t;let s=new Uint8Array(i);n=new Uint8Array(t),n[0]=i.byteLength|128;for(let o=0;o<i.byteLength;o++)n[o+1]=s[o];return t}return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=this.length),t}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}};Qn.NAME="lengthBlock";var k={},be=class extends vt{constructor({name:e=_r,optional:t=!1,primitiveSchema:n,...i}={},s){super(i),this.name=e,this.optional=t,n&&(this.primitiveSchema=n),this.idBlock=new Jn(i),this.lenBlock=new Qn(i),this.valueBlock=s?new s(i):new Be(i)}fromBER(e,t,n){let i=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return i===-1?(this.error=this.valueBlock.error,i):(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),i)}toBER(e,t){let n=t||new Qr;t||wl(this);let i=this.idBlock.toBER(e);if(n.write(i),this.lenBlock.isIndefiniteForm)n.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(e,n),n.write(new ArrayBuffer(2));else{let s=this.valueBlock.toBER(e);this.lenBlock.length=s.byteLength;let o=this.lenBlock.toBER(e);n.write(o),n.write(s)}return t?Qe:n.final()}toJSON(){let e={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(e.primitiveSchema=this.primitiveSchema.toJSON()),e}toString(e="ascii"){return e==="ascii"?this.onAsciiEncoding():z.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${z.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(e){if(this===e)return!0;if(!(e instanceof this.constructor))return!1;let t=this.toBER(),n=e.toBER();return pl(t,n)}};be.NAME="BaseBlock";function wl(r){if(r instanceof k.Constructed)for(let e of r.valueBlock.value)wl(e)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var ei=class extends be{constructor({value:e=_r,...t}={},n){super(t,n),e&&this.fromString(e)}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}fromBER(e,t,n){let i=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return i===-1?(this.error=this.valueBlock.error,i):(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),i)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};ei.NAME="BaseStringBlock";var ti=class extends Bt(Be){constructor({isHexOnly:e=!0,...t}={}){super(t),this.isHexOnly=e}};ti.NAME="PrimitiveValueBlock";var xl,ri=class extends be{constructor(e={}){super(e,ti),this.idBlock.isConstructed=!1}};xl=ri;k.Primitive=xl;ri.NAME="PRIMITIVE";function wp(r,e){if(r instanceof e)return r;let t=new e;return t.idBlock=r.idBlock,t.lenBlock=r.lenBlock,t.warnings=r.warnings,t.valueBeforeDecodeView=r.valueBeforeDecodeView,t}function Oi(r,e=0,t=r.length){let n=e,i=new be({},Be),s=new vt;if(!At(s,r,e,t))return i.error=s.error,{offset:-1,result:i};if(!r.subarray(e,e+t).length)return i.error="Zero buffer length",{offset:-1,result:i};let a=i.idBlock.fromBER(r,e,t);if(i.idBlock.warnings.length&&i.warnings.concat(i.idBlock.warnings),a===-1)return i.error=i.idBlock.error,{offset:-1,result:i};if(e=a,t-=i.idBlock.blockLength,a=i.lenBlock.fromBER(r,e,t),i.lenBlock.warnings.length&&i.warnings.concat(i.lenBlock.warnings),a===-1)return i.error=i.lenBlock.error,{offset:-1,result:i};if(e=a,t-=i.lenBlock.blockLength,!i.idBlock.isConstructed&&i.lenBlock.isIndefiniteForm)return i.error="Indefinite length form used for primitive encoding form",{offset:-1,result:i};let c=be;switch(i.idBlock.tagClass){case 1:if(i.idBlock.tagNumber>=37&&i.idBlock.isHexOnly===!1)return i.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:i};switch(i.idBlock.tagNumber){case 0:if(i.idBlock.isConstructed&&i.lenBlock.length>0)return i.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:i};c=k.EndOfContent;break;case 1:c=k.Boolean;break;case 2:c=k.Integer;break;case 3:c=k.BitString;break;case 4:c=k.OctetString;break;case 5:c=k.Null;break;case 6:c=k.ObjectIdentifier;break;case 10:c=k.Enumerated;break;case 12:c=k.Utf8String;break;case 13:c=k.RelativeObjectIdentifier;break;case 14:c=k.TIME;break;case 15:return i.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:i};case 16:c=k.Sequence;break;case 17:c=k.Set;break;case 18:c=k.NumericString;break;case 19:c=k.PrintableString;break;case 20:c=k.TeletexString;break;case 21:c=k.VideotexString;break;case 22:c=k.IA5String;break;case 23:c=k.UTCTime;break;case 24:c=k.GeneralizedTime;break;case 25:c=k.GraphicString;break;case 26:c=k.VisibleString;break;case 27:c=k.GeneralString;break;case 28:c=k.UniversalString;break;case 29:c=k.CharacterString;break;case 30:c=k.BmpString;break;case 31:c=k.DATE;break;case 32:c=k.TimeOfDay;break;case 33:c=k.DateTime;break;case 34:c=k.Duration;break;default:{let h=i.idBlock.isConstructed?new k.Constructed:new k.Primitive;h.idBlock=i.idBlock,h.lenBlock=i.lenBlock,h.warnings=i.warnings,i=h}}break;case 2:case 3:case 4:default:c=i.idBlock.isConstructed?k.Constructed:k.Primitive}return i=wp(i,c),a=i.fromBER(r,e,i.lenBlock.isIndefiniteForm?t:i.lenBlock.length),i.valueBeforeDecodeView=r.subarray(n,n+i.blockLength),{offset:a,result:i}}function Jo(r){if(!r.byteLength){let e=new be({},Be);return e.error="Input buffer has zero length",{offset:-1,result:e}}return Oi(z.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function xp(r,e){return r?1:e}var at=class extends Be{constructor({value:e=[],isIndefiniteForm:t=!1,...n}={}){super(n),this.value=e,this.isIndefiniteForm=t}fromBER(e,t,n){let i=z.BufferSourceConverter.toUint8Array(e);if(!At(this,i,t,n))return-1;if(this.valueBeforeDecodeView=i.subarray(t,t+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),t;let s=t;for(;xp(this.isIndefiniteForm,n)>0;){let o=Oi(i,s,n);if(o.offset===-1)return this.error=o.result.error,this.warnings.concat(o.result.warnings),-1;if(s=o.offset,this.blockLength+=o.result.blockLength,n-=o.result.blockLength,this.value.push(o.result),this.isIndefiniteForm&&o.result.constructor.NAME===en)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===en?this.value.pop():this.warnings.push("No EndOfContent block encoded")),s}toBER(e,t){let n=t||new Qr;for(let i=0;i<this.value.length;i++)this.value[i].toBER(e,n);return t?Qe:n.final()}toJSON(){let e={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let t of this.value)e.value.push(t.toJSON());return e}};at.NAME="ConstructedValueBlock";var vl,Ft=class extends be{constructor(e={}){super(e,at),this.idBlock.isConstructed=!0}fromBER(e,t,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let i=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return i===-1?(this.error=this.valueBlock.error,i):(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),i)}onAsciiEncoding(){let e=[];for(let n of this.valueBlock.value)e.push(n.toString("ascii").split(`
3
+ `).map(i=>` ${i}`).join(`
4
4
  `));let t=this.idBlock.tagClass===3?`[${this.idBlock.tagNumber}]`:this.constructor.NAME;return e.length?`${t} :
5
5
  ${e.join(`
6
- `)}`:`${t} :`}};vl=Ft;k.Constructed=vl;Ft.NAME="CONSTRUCTED";var ns=class extends Be{fromBER(e,t,n){return t}toBER(e){return Qe}};ns.override="EndOfContentValueBlock";var El,ss=class extends be{constructor(e={}){super(e,ns),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};El=ss;k.EndOfContent=El;ss.NAME=en;var Sl,Sr=class extends be{constructor(e={}){super(e,Be),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(e,t,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,t+n>e.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):t+n}toBER(e,t){let n=new ArrayBuffer(2);if(!e){let s=new Uint8Array(n);s[0]=5,s[1]=0}return t&&t.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};Sl=Sr;k.Null=Sl;Sr.NAME="NULL";var is=class extends Bt(Be){constructor({value:e,...t}={}){super(t),t.valueHex?this.valueHexView=z.BufferSourceConverter.toUint8Array(t.valueHex):this.valueHexView=new Uint8Array(1),e&&(this.value=e)}get value(){for(let e of this.valueHexView)if(e>0)return!0;return!1}set value(e){this.valueHexView[0]=e?255:0}fromBER(e,t,n){let s=z.BufferSourceConverter.toUint8Array(e);return At(this,s,t,n)?(this.valueHexView=s.subarray(t,t+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,jo.call(this),this.blockLength=n,t+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};is.NAME="BooleanValueBlock";var Al,os=class extends be{constructor(e={}){super(e,is),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}};Al=os;k.Boolean=Al;os.NAME="BOOLEAN";var as=class extends Bt(at){constructor({isConstructed:e=!1,...t}={}){super(t),this.isConstructed=e}fromBER(e,t,n){let s=0;if(this.isConstructed){if(this.isHexOnly=!1,s=at.prototype.fromBER.call(this,e,t,n),s===-1)return s;for(let i=0;i<this.value.length;i++){let o=this.value[i].constructor.NAME;if(o===en){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(o!==yl)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,s=super.fromBER(e,t,n),this.blockLength=n;return s}toBER(e,t){return this.isConstructed?at.prototype.toBER.call(this,e,t):e?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};as.NAME="OctetStringValueBlock";var Bl,cs=class r extends be{constructor({idBlock:e={},lenBlock:t={},...n}={}){var s,i;(s=n.isConstructed)!==null&&s!==void 0||(n.isConstructed=!!(!((i=n.value)===null||i===void 0)&&i.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},as),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(e,t,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),t;if(!this.valueBlock.isConstructed){let i=(e instanceof ArrayBuffer?new Uint8Array(e):e).subarray(t,t+n);try{if(i.byteLength){let o=Os(i,0,i.byteLength);o.offset!==-1&&o.offset===n&&(this.valueBlock.value=[o.result])}}catch{}}return super.fromBER(e,t,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?Ft.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 e=[];for(let t of this.valueBlock.value)t instanceof r&&e.push(t.valueBlock.valueHexView);return z.BufferSourceConverter.concat(e)}};Bl=cs;k.OctetString=Bl;cs.NAME=yl;var ls=class extends Bt(at){constructor({unusedBits:e=0,isConstructed:t=!1,...n}={}){super(n),this.unusedBits=e,this.isConstructed=t,this.blockLength=this.valueHexView.byteLength}fromBER(e,t,n){if(!n)return t;let s=-1;if(this.isConstructed){if(s=at.prototype.fromBER.call(this,e,t,n),s===-1)return s;for(let a of this.value){let c=a.constructor.NAME;if(c===en){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==bl)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let h=a.valueBlock;if(this.unusedBits>0&&h.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=h.unusedBits}return s}let i=z.BufferSourceConverter.toUint8Array(e);if(!At(this,i,t,n))return-1;let o=i.subarray(t,t+n);if(this.unusedBits=o[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=o.subarray(1);try{if(a.byteLength){let c=Os(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=o.subarray(1),this.blockLength=o.length,t+n}toBER(e,t){if(this.isConstructed)return at.prototype.toBER.call(this,e,t);if(e)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return Qe;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}}};ls.NAME="BitStringValueBlock";var _l,Ar=class extends be{constructor({idBlock:e={},lenBlock:t={},...n}={}){var s,i;(s=n.isConstructed)!==null&&s!==void 0||(n.isConstructed=!!(!((i=n.value)===null||i===void 0)&&i.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},ls),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(e,t,n){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(e,t,n)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return Ft.prototype.onAsciiEncoding.call(this);{let e=[],t=this.valueBlock.valueHexView;for(let s of t)e.push(s.toString(2).padStart(8,"0"));let n=e.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};_l=Ar;k.BitString=_l;Ar.NAME=bl;var Il;function Ep(r,e){let t=new Uint8Array([0]),n=new Uint8Array(r),s=new Uint8Array(e),i=n.slice(0),o=i.length-1,a=s.slice(0),c=a.length-1,h=0,f=c<o?o:c,u=0;for(let g=f;g>=0;g--,u++){switch(!0){case u<a.length:h=i[o-u]+a[c-u]+t[0];break;default:h=i[o-u]+t[0]}switch(t[0]=h/10,!0){case u>=i.length:i=Yn(new Uint8Array([h%10]),i);break;default:i[o-u]=h%10}}return t[0]>0&&(i=Yn(t,i)),i}function gl(r){if(r>=Jr.length)for(let e=Jr.length;e<=r;e++){let t=new Uint8Array([0]),n=Jr[e-1].slice(0);for(let s=n.length-1;s>=0;s--){let i=new Uint8Array([(n[s]<<1)+t[0]]);t[0]=i[0]/10,n[s]=i[0]%10}t[0]>0&&(n=Yn(t,n)),Jr.push(n)}return Jr[r]}function Sp(r,e){let t=0,n=new Uint8Array(r),s=new Uint8Array(e),i=n.slice(0),o=i.length-1,a=s.slice(0),c=a.length-1,h,f=0;for(let u=c;u>=0;u--,f++)switch(h=i[o-f]-a[c-f]-t,!0){case h<0:t=1,i[o-f]=h+10;break;default:t=0,i[o-f]=h}if(t>0)for(let u=o-c+1;u>=0;u--,f++)if(h=i[o-f]-t,h<0)t=1,i[o-f]=h+10;else{t=0,i[o-f]=h;break}return i.slice()}var tn=class extends Bt(Be){constructor({value:e,...t}={}){super(t),this._valueDec=0,t.valueHex&&this.setValueHex(),e!==void 0&&(this.valueDec=e)}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=jo.call(this)))}set valueDec(e){this._valueDec=e,this.isHexOnly=!1,this.valueHexView=new Uint8Array(dl(e))}get valueDec(){return this._valueDec}fromDER(e,t,n,s=0){let i=this.fromBER(e,t,n);if(i===-1)return i;let o=this.valueHexView;return o[0]===0&&o[1]&128?this.valueHexView=o.subarray(1):s!==0&&o.length<s&&(s-o.length>1&&(s=o.length+1),this.valueHexView=o.subarray(s-o.length)),i}toDER(e=!1){let t=this.valueHexView;switch(!0){case(t[0]&128)!==0:{let n=new Uint8Array(this.valueHexView.length+1);n[0]=0,n.set(t,1),this.valueHexView=n}break;case(t[0]===0&&(t[1]&128)===0):this.valueHexView=this.valueHexView.subarray(1);break}return this.toBER(e)}fromBER(e,t,n){let s=super.fromBER(e,t,n);return s===-1||this.setValueHex(),s}toBER(e){return e?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){let e=this.valueHexView.length*8-1,t=new Uint8Array(this.valueHexView.length*8/3),n=0,s,i=this.valueHexView,o="",a=!1;for(let c=i.byteLength-1;c>=0;c--){s=i[c];for(let h=0;h<8;h++){if((s&1)===1)switch(n){case e:t=Sp(gl(n),t),o="-";break;default:t=Ep(t,gl(n))}n++,s>>=1}}for(let c=0;c<t.length;c++)t[c]&&(a=!0),a&&(o+=ml.charAt(t[c]));return a===!1&&(o+=ml.charAt(0)),o}};Il=tn;tn.NAME="IntegerValueBlock";Object.defineProperty(Il.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var Tl,we=class r extends be{constructor(e={}){super(e,tn),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return Xn(),BigInt(this.valueBlock.toString())}static fromBigInt(e){Xn();let t=BigInt(e),n=new Qr,s=t.toString(16).replace(/^-/,""),i=new Uint8Array(z.Convert.FromHex(s));if(t<0){let a=new Uint8Array(i.length+(i[0]&128?1:0));a[0]|=128;let h=BigInt(`0x${z.Convert.ToHex(a)}`)+t,f=z.BufferSourceConverter.toUint8Array(z.Convert.FromHex(h.toString(16)));f[0]|=128,n.write(f)}else i[0]&128&&n.write(new Uint8Array([0])),n.write(i);return new r({valueHex:n.final()})}convertToDER(){let e=new r({valueHex:this.valueBlock.valueHexView});return e.valueBlock.toDER(),e}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()}`}};Tl=we;k.Integer=Tl;we.NAME="INTEGER";var kl,us=class extends we{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};kl=us;k.Enumerated=kl;us.NAME="ENUMERATED";var rn=class extends Bt(Be){constructor({valueDec:e=-1,isFirstSid:t=!1,...n}={}){super(n),this.valueDec=e,this.isFirstSid=t}fromBER(e,t,n){if(!n)return t;let s=z.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let i=s.subarray(t,t+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=i[a]&127,this.blockLength++,!!(i[a]&128));a++);let o=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)o[a]=this.valueHexView[a];return this.valueHexView=o,i[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=rr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}set valueBigInt(e){Xn();let t=BigInt(e).toString(2);for(;t.length%7;)t="0"+t;let n=new Uint8Array(t.length/7);for(let s=0;s<n.length;s++)n[s]=parseInt(t.slice(s*7,s*7+7),2)+(s+1<n.length?128:0);this.fromBER(n.buffer,0,n.length)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let s=this.valueHexView,i=new Uint8Array(this.blockLength);for(let o=0;o<this.blockLength-1;o++)i[o]=s[o]|128;return i[this.blockLength-1]=s[this.blockLength-1],i.buffer}let t=Ht(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",Qe;let n=new Uint8Array(t.byteLength);if(!e){let s=new Uint8Array(t),i=t.byteLength-1;for(let o=0;o<i;o++)n[o]=s[o]|128;n[i]=s[i]}return n}toString(){let e="";if(this.isHexOnly)e=z.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let t=this.valueDec;this.valueDec<=39?e="0.":this.valueDec<=79?(e="1.",t-=40):(e="2.",t-=80),e+=t.toString()}else e=this.valueDec.toString();return e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}};rn.NAME="sidBlock";var fs=class extends Be{constructor({value:e=_r,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let s=t;for(;n>0;){let i=new rn;if(s=i.fromBER(e,s,n),s===-1)return this.blockLength=0,this.error=i.error,s;this.value.length===0&&(i.isFirstSid=!0),this.blockLength+=i.blockLength,n-=i.blockLength,this.value.push(i)}return s}toBER(e){let t=[];for(let n=0;n<this.value.length;n++){let s=this.value[n].toBER(e);if(s.byteLength===0)return this.error=this.value[n].error,Qe;t.push(s)}return Yo(t)}fromString(e){this.value=[];let t=0,n=0,s="",i=!1;do if(n=e.indexOf(".",t),n===-1?s=e.substring(t):s=e.substring(t,n),t=n+1,i){let o=this.value[0],a=0;switch(o.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(s,10);if(isNaN(c))return;o.valueDec=c+a,i=!1}else{let o=new rn;if(s>Number.MAX_SAFE_INTEGER){Xn();let a=BigInt(s);o.valueBigInt=a}else if(o.valueDec=parseInt(s,10),isNaN(o.valueDec))return;this.value.length||(o.isFirstSid=!0,i=!0),this.value.push(o)}while(n!==-1)}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let s=this.value[n].toString();n!==0&&(e=`${e}.`),t?(s=`{${s}}`,this.value[n].isFirstSid?e=`2.{${s} - 80}`:e+=s):e+=s}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};fs.NAME="ObjectIdentifierValueBlock";var Cl,Br=class extends be{constructor(e={}){super(e,fs),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};Cl=Br;k.ObjectIdentifier=Cl;Br.NAME="OBJECT IDENTIFIER";var nn=class extends Bt(vt){constructor({valueDec:e=0,...t}={}){super(t),this.valueDec=e}fromBER(e,t,n){if(n===0)return t;let s=z.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let i=s.subarray(t,t+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=i[a]&127,this.blockLength++,!!(i[a]&128));a++);let o=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)o[a]=this.valueHexView[a];return this.valueHexView=o,i[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=rr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let s=this.valueHexView,i=new Uint8Array(this.blockLength);for(let o=0;o<this.blockLength-1;o++)i[o]=s[o]|128;return i[this.blockLength-1]=s[this.blockLength-1],i.buffer}let t=Ht(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",Qe;let n=new Uint8Array(t.byteLength);if(!e){let s=new Uint8Array(t),i=t.byteLength-1;for(let o=0;o<i;o++)n[o]=s[o]|128;n[i]=s[i]}return n.buffer}toString(){let e="";return this.isHexOnly?e=z.Convert.ToHex(this.valueHexView):e=this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};nn.NAME="relativeSidBlock";var hs=class extends Be{constructor({value:e=_r,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let s=t;for(;n>0;){let i=new nn;if(s=i.fromBER(e,s,n),s===-1)return this.blockLength=0,this.error=i.error,s;this.blockLength+=i.blockLength,n-=i.blockLength,this.value.push(i)}return s}toBER(e,t){let n=[];for(let s=0;s<this.value.length;s++){let i=this.value[s].toBER(e);if(i.byteLength===0)return this.error=this.value[s].error,Qe;n.push(i)}return Yo(n)}fromString(e){this.value=[];let t=0,n=0,s="";do{n=e.indexOf(".",t),n===-1?s=e.substring(t):s=e.substring(t,n),t=n+1;let i=new nn;if(i.valueDec=parseInt(s,10),isNaN(i.valueDec))return!0;this.value.push(i)}while(n!==-1);return!0}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let s=this.value[n].toString();n!==0&&(e=`${e}.`),t&&(s=`{${s}}`),e+=s}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};hs.NAME="RelativeObjectIdentifierValueBlock";var Nl,ds=class extends be{constructor(e={}){super(e,hs),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};Nl=ds;k.RelativeObjectIdentifier=Nl;ds.NAME="RelativeObjectIdentifier";var Rl,Et=class extends Ft{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};Rl=Et;k.Sequence=Rl;Et.NAME="SEQUENCE";var Ll,ps=class extends Ft{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};Ll=ps;k.Set=Ll;ps.NAME="SET";var ms=class extends Bt(Be){constructor({...e}={}){super(e),this.isHexOnly=!0,this.value=_r}toJSON(){return{...super.toJSON(),value:this.value}}};ms.NAME="StringValueBlock";var gs=class extends ms{};gs.NAME="SimpleStringValueBlock";var Ce=class extends es{constructor({...e}={}){super(e,gs)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,z.BufferSourceConverter.toUint8Array(e))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t);for(let s=0;s<t;s++)n[s]=e.charCodeAt(s);this.valueBlock.value=e}};Ce.NAME="SIMPLE STRING";var ys=class extends Ce{fromBuffer(e){this.valueBlock.valueHexView=z.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=z.Convert.ToUtf8String(e)}catch(t){this.warnings.push(`Error during "decodeURIComponent": ${t}, using raw string`),this.valueBlock.value=z.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(z.Convert.FromUtf8String(e)),this.valueBlock.value=e}};ys.NAME="Utf8StringValueBlock";var Ul,St=class extends ys{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};Ul=St;k.Utf8String=Ul;St.NAME="UTF8String";var bs=class extends Ce{fromBuffer(e){this.valueBlock.value=z.Convert.ToUtf16String(e),this.valueBlock.valueHexView=z.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(z.Convert.FromUtf16String(e))}};bs.NAME="BmpStringValueBlock";var Dl,ws=class extends bs{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};Dl=ws;k.BmpString=Dl;ws.NAME="BMPString";var xs=class extends Ce{fromBuffer(e){let t=ArrayBuffer.isView(e)?e.slice().buffer:e.slice(0),n=new Uint8Array(t);for(let s=0;s<n.length;s+=4)n[s]=n[s+3],n[s+1]=n[s+2],n[s+2]=0,n[s+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(t))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t*4);for(let s=0;s<t;s++){let i=Ht(e.charCodeAt(s),8),o=new Uint8Array(i);if(o.length>4)continue;let a=4-o.length;for(let c=o.length-1;c>=0;c--)n[s*4+c+a]=o[c]}this.valueBlock.value=e}};xs.NAME="UniversalStringValueBlock";var Ol,vs=class extends xs{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};Ol=vs;k.UniversalString=Ol;vs.NAME="UniversalString";var Ml,Es=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};Ml=Es;k.NumericString=Ml;Es.NAME="NumericString";var Pl,Ss=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};Pl=Ss;k.PrintableString=Pl;Ss.NAME="PrintableString";var Vl,As=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};Vl=As;k.TeletexString=Vl;As.NAME="TeletexString";var Hl,Bs=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};Hl=Bs;k.VideotexString=Hl;Bs.NAME="VideotexString";var Fl,_s=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};Fl=_s;k.IA5String=Fl;_s.NAME="IA5String";var Kl,Is=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};Kl=Is;k.GraphicString=Kl;Is.NAME="GraphicString";var ql,sn=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};ql=sn;k.VisibleString=ql;sn.NAME="VisibleString";var zl,Ts=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};zl=Ts;k.GeneralString=zl;Ts.NAME="GeneralString";var $l,ks=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};$l=ks;k.CharacterString=$l;ks.NAME="CharacterString";var Gl,on=class extends sn{constructor({value:e,valueDate:t,...n}={}){if(super(n),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,e){this.fromString(e),this.valueBlock.valueHexView=new Uint8Array(e.length);for(let s=0;s<e.length;s++)this.valueBlock.valueHexView[s]=e.charCodeAt(s)}t&&(this.fromDate(t),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(e){this.fromString(String.fromCharCode.apply(null,z.BufferSourceConverter.toUint8Array(e)))}toBuffer(){let e=this.toString(),t=new ArrayBuffer(e.length),n=new Uint8Array(t);for(let s=0;s<e.length;s++)n[s]=e.charCodeAt(s);return t}fromDate(e){this.year=e.getUTCFullYear(),this.month=e.getUTCMonth()+1,this.day=e.getUTCDate(),this.hour=e.getUTCHours(),this.minute=e.getUTCMinutes(),this.second=e.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(e){let n=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/ig.exec(e);if(n===null){this.error="Wrong input string for conversion";return}let s=parseInt(n[1],10);s>=50?this.year=1900+s:this.year=2e3+s,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(e="iso"){if(e==="iso"){let t=new Array(7);return t[0]=Ve(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=Ve(this.month,2),t[2]=Ve(this.day,2),t[3]=Ve(this.hour,2),t[4]=Ve(this.minute,2),t[5]=Ve(this.second,2),t[6]="Z",t.join("")}return super.toString(e)}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}}};Gl=on;k.UTCTime=Gl;on.NAME="UTCTime";var Wl,Cs=class extends on{constructor(e={}){var t;super(e),(t=this.millisecond)!==null&&t!==void 0||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(e){super.fromDate(e),this.millisecond=e.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(e){let t=!1,n="",s="",i=0,o,a=0,c=0;if(e[e.length-1]==="Z")n=e.substring(0,e.length-1),t=!0;else{let u=new Number(e[e.length-1]);if(isNaN(u.valueOf()))throw new Error("Wrong input string for conversion");n=e}if(t){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 u=1,g=n.indexOf("+"),l="";if(g===-1&&(g=n.indexOf("-"),u=-1),g!==-1){if(l=n.substring(g+1),n=n.substring(0,g),l.length!==2&&l.length!==4)throw new Error("Wrong input string for conversion");let d=parseInt(l.substring(0,2),10);if(isNaN(d.valueOf()))throw new Error("Wrong input string for conversion");if(a=u*d,l.length===4){if(d=parseInt(l.substring(2,4),10),isNaN(d.valueOf()))throw new Error("Wrong input string for conversion");c=u*d}}}let h=n.indexOf(".");if(h===-1&&(h=n.indexOf(",")),h!==-1){let u=new Number(`0${n.substring(h)}`);if(isNaN(u.valueOf()))throw new Error("Wrong input string for conversion");i=u.valueOf(),s=n.substring(0,h)}else s=n;switch(!0){case s.length===8:if(o=/(\d{4})(\d{2})(\d{2})/ig,h!==-1)throw new Error("Wrong input string for conversion");break;case s.length===10:if(o=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,h!==-1){let u=60*i;this.minute=Math.floor(u),u=60*(u-this.minute),this.second=Math.floor(u),u=1e3*(u-this.second),this.millisecond=Math.floor(u)}break;case s.length===12:if(o=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,h!==-1){let u=60*i;this.second=Math.floor(u),u=1e3*(u-this.second),this.millisecond=Math.floor(u)}break;case s.length===14:if(o=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,h!==-1){let u=1e3*i;this.millisecond=Math.floor(u)}break;default:throw new Error("Wrong input string for conversion")}let f=o.exec(s);if(f===null)throw new Error("Wrong input string for conversion");for(let u=1;u<f.length;u++)switch(u){case 1:this.year=parseInt(f[u],10);break;case 2:this.month=parseInt(f[u],10);break;case 3:this.day=parseInt(f[u],10);break;case 4:this.hour=parseInt(f[u],10)+a;break;case 5:this.minute=parseInt(f[u],10)+c;break;case 6:this.second=parseInt(f[u],10);break;default:throw new Error("Wrong input string for conversion")}if(t===!1){let u=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=u.getUTCFullYear(),this.month=u.getUTCMonth(),this.day=u.getUTCDay(),this.hour=u.getUTCHours(),this.minute=u.getUTCMinutes(),this.second=u.getUTCSeconds(),this.millisecond=u.getUTCMilliseconds()}}toString(e="iso"){if(e==="iso"){let t=[];return t.push(Ve(this.year,4)),t.push(Ve(this.month,2)),t.push(Ve(this.day,2)),t.push(Ve(this.hour,2)),t.push(Ve(this.minute,2)),t.push(Ve(this.second,2)),this.millisecond!==0&&(t.push("."),t.push(Ve(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(e)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};Wl=Cs;k.GeneralizedTime=Wl;Cs.NAME="GeneralizedTime";var Zl,Ns=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};Zl=Ns;k.DATE=Zl;Ns.NAME="DATE";var jl,Rs=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};jl=Rs;k.TimeOfDay=jl;Rs.NAME="TimeOfDay";var Yl,Ls=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};Yl=Ls;k.DateTime=Yl;Ls.NAME="DateTime";var Xl,Us=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Xl=Us;k.Duration=Xl;Us.NAME="Duration";var Jl,Ds=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};Jl=Ds;k.TIME=Jl;Ds.NAME="TIME";function ce(r,e="utf8"){let t=$n[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.encoder.encode(r).substring(1)}var an=class extends Error{constructor(e="An error occurred while verifying a message"){super(e),this.name="VerificationError"}},Ms=class extends Error{constructor(e="Missing Web Crypto API"){super(e),this.name="WebCryptoMissingError"}};var Ql={get(r=globalThis){let e=r.crypto;if(e?.subtle==null)throw new Ms("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 e}};var Kt=Ql;async function eu(r){let e=await Kt.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),t=await Bp(e);return{privateKey:t[0],publicKey:t[1]}}async function tu(r,e){let t=await Kt.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await Kt.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},t,e instanceof Uint8Array?e:e.subarray());return new Uint8Array(n,0,n.byteLength)}async function ru(r,e,t){let n=await Kt.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return Kt.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,e,t instanceof Uint8Array?t:t.subarray())}async function Bp(r){if(r.privateKey==null||r.publicKey==null)throw new ve("Private and public key are required");return Promise.all([Kt.get().subtle.exportKey("jwk",r.privateKey),Kt.get().subtle.exportKey("jwk",r.publicKey)])}function Qo(r){if(r.kty!=="RSA")throw new ve("invalid key type");if(r.n==null)throw new ve("invalid key modulus");return G(r.n,"base64url").length*8}var Ir=class{type="RSA";_key;_raw;_multihash;constructor(e,t){this._key=e,this._multihash=t}get raw(){return this._raw==null&&(this._raw=cn.jwkToPkix(this._key)),this._raw}toMultihash(){return this._multihash}toCID(){return pe.createV1(114,this._multihash)}toString(){return ee.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}verify(e,t){return ru(this._key,t,e)}},ln=class{type="RSA";_key;_raw;publicKey;constructor(e,t){this._key=e,this.publicKey=t}get raw(){return this._raw==null&&(this._raw=cn.jwkToPkcs1(this._key)),this._raw}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}sign(e){return tu(this._key,e)}};var Ps=8192,ea=18;function nu(r){let{result:e}=Jo(r),t=e.valueBlock.value;return{n:ct(t[1]),e:ct(t[2]),d:ct(t[3]),p:ct(t[4]),q:ct(t[5]),dp:ct(t[6]),dq:ct(t[7]),qi:ct(t[8]),kty:"RSA",alg:"RS256"}}function _p(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 ve("JWK was missing components");let t=new Et({value:[new we({value:0}),we.fromBigInt(lt(G(r.n,"base64url"))),we.fromBigInt(lt(G(r.e,"base64url"))),we.fromBigInt(lt(G(r.d,"base64url"))),we.fromBigInt(lt(G(r.p,"base64url"))),we.fromBigInt(lt(G(r.q,"base64url"))),we.fromBigInt(lt(G(r.dp,"base64url"))),we.fromBigInt(lt(G(r.dq,"base64url"))),we.fromBigInt(lt(G(r.qi,"base64url")))]}).toBER();return new Uint8Array(t,0,t.byteLength)}function su(r){let{result:e}=Jo(r),t=e.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:ct(t[0]),e:ct(t[1])}}function ta(r){if(r.n==null||r.e==null)throw new ve("JWK was missing components");let t=new Et({value:[new Et({value:[new Br({value:"1.2.840.113549.1.1.1"}),new Sr]}),new Ar({valueHex:new Et({value:[we.fromBigInt(lt(G(r.n,"base64url"))),we.fromBigInt(lt(G(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(t,0,t.byteLength)}function ct(r){let e=r.valueBlock.valueHexView;for(;e[0]===0;)e=e.subarray(1);return ce(e,"base64url")}function lt(r){let e=[];return r.forEach(function(t){let n=t.toString(16);n.length%2>0&&(n=`0${n}`),e.push(n)}),BigInt("0x"+e.join(""))}function iu(r){let e=nu(r);return ou(e)}function ra(r){let e=su(r);if(Qo(e)>Ps)throw new cr("Key size is too large");let t=vr(ot.encode({Type:fe.RSA,Data:r})),n=Ze(ea,t);return new Ir(e,n)}function ou(r){if(Qo(r)>Ps)throw new ve("Key size is too large");let e=cu(r),t=vr(ot.encode({Type:fe.RSA,Data:ta(e.publicKey)})),n=Ze(ea,t);return new ln(e.privateKey,new Ir(e.publicKey,n))}async function au(r){if(r>Ps)throw new ve("Key size is too large");let e=await eu(r),t=vr(ot.encode({Type:fe.RSA,Data:ta(e.publicKey)})),n=Ze(ea,t);return new ln(e.privateKey,new Ir(e.publicKey,n))}function cu(r){if(r==null)throw new ve("Missing key parameter");return{privateKey:r,publicKey:{kty:r.kty,n:r.n,e:r.e}}}var Vs=class extends gr{constructor(e,t){super(),this.finished=!1,this.destroyed=!1,kc(e);let n=zr(t);if(this.iHash=e.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 s=this.blockLen,i=new Uint8Array(s);i.set(n.length>s?e.create().update(n).digest():n);for(let o=0;o<i.length;o++)i[o]^=54;this.iHash.update(i),this.oHash=e.create();for(let o=0;o<i.length;o++)i[o]^=106;this.oHash.update(i),i.fill(0)}update(e){return mr(this),this.iHash.update(e),this}digestInto(e){mr(this),pr(e,this.outputLen),this.finished=!0,this.iHash.digestInto(e),this.oHash.update(e),this.oHash.digestInto(e),this.destroy()}digest(){let e=new Uint8Array(this.oHash.outputLen);return this.digestInto(e),e}_cloneInto(e){e||(e=Object.create(Object.getPrototypeOf(this),{}));let{oHash:t,iHash:n,finished:s,destroyed:i,blockLen:o,outputLen:a}=this;return e=e,e.finished=s,e.destroyed=i,e.blockLen=o,e.outputLen=a,e.oHash=t._cloneInto(e.oHash),e.iHash=n._cloneInto(e.iHash),e}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},na=(r,e,t)=>new Vs(r,e).update(t).digest();na.create=(r,e)=>new Vs(r,e);function lu(r){r.lowS!==void 0&&Ye("lowS",r.lowS),r.prehash!==void 0&&Ye("prehash",r.prehash)}function Ip(r){let e=Wr(r);it(e,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:t,Fp:n,a:s}=e;if(t){if(!n.eql(s,n.ZERO))throw new Error("invalid endomorphism, can only be defined for Koblitz curves that have a=0");if(typeof t!="object"||typeof t.beta!="bigint"||typeof t.splitScalar!="function")throw new Error("invalid endomorphism, expected beta: bigint and splitScalar: function")}return Object.freeze({...e})}var{bytesToNumberBE:Tp,hexToBytes:kp}=Dn,sa=class extends Error{constructor(e=""){super(e)}},_t={Err:sa,_tlv:{encode:(r,e)=>{let{Err:t}=_t;if(r<0||r>256)throw new t("tlv.encode: wrong tag");if(e.length&1)throw new t("tlv.encode: unpadded data");let n=e.length/2,s=Zt(n);if(s.length/2&128)throw new t("tlv.encode: long form length too big");let i=n>127?Zt(s.length/2|128):"";return Zt(r)+i+s+e},decode(r,e){let{Err:t}=_t,n=0;if(r<0||r>256)throw new t("tlv.encode: wrong tag");if(e.length<2||e[n++]!==r)throw new t("tlv.decode: wrong tlv");let s=e[n++],i=!!(s&128),o=0;if(!i)o=s;else{let c=s&127;if(!c)throw new t("tlv.decode(long): indefinite length not supported");if(c>4)throw new t("tlv.decode(long): byte length is too big");let h=e.subarray(n,n+c);if(h.length!==c)throw new t("tlv.decode: length bytes not complete");if(h[0]===0)throw new t("tlv.decode(long): zero leftmost byte");for(let f of h)o=o<<8|f;if(n+=c,o<128)throw new t("tlv.decode(long): not minimal encoding")}let a=e.subarray(n,n+o);if(a.length!==o)throw new t("tlv.decode: wrong value length");return{v:a,l:e.subarray(n+o)}}},_int:{encode(r){let{Err:e}=_t;if(r<It)throw new e("integer: negative integers are not allowed");let t=Zt(r);if(Number.parseInt(t[0],16)&8&&(t="00"+t),t.length&1)throw new e("unexpected DER parsing assertion: unpadded hex");return t},decode(r){let{Err:e}=_t;if(r[0]&128)throw new e("invalid signature integer: negative");if(r[0]===0&&!(r[1]&128))throw new e("invalid signature integer: unnecessary leading zero");return Tp(r)}},toSig(r){let{Err:e,_int:t,_tlv:n}=_t,s=typeof r=="string"?kp(r):r;br(s);let{v:i,l:o}=n.decode(48,s);if(o.length)throw new e("invalid signature: left bytes after parsing");let{v:a,l:c}=n.decode(2,i),{v:h,l:f}=n.decode(2,c);if(f.length)throw new e("invalid signature: left bytes after parsing");return{r:t.decode(a),s:t.decode(h)}},hexFromSig(r){let{_tlv:e,_int:t}=_t,n=e.encode(2,t.encode(r.r)),s=e.encode(2,t.encode(r.s)),i=n+s;return e.encode(48,i)}},It=BigInt(0),ge=BigInt(1),fb=BigInt(2),uu=BigInt(3),hb=BigInt(4);function Cp(r){let e=Ip(r),{Fp:t}=e,n=Dt(e.n,e.nBitLength),s=e.toBytes||((m,y,b)=>{let w=y.toAffine();return bt(Uint8Array.from([4]),t.toBytes(w.x),t.toBytes(w.y))}),i=e.fromBytes||(m=>{let y=m.subarray(1),b=t.fromBytes(y.subarray(0,t.BYTES)),w=t.fromBytes(y.subarray(t.BYTES,2*t.BYTES));return{x:b,y:w}});function o(m){let{a:y,b}=e,w=t.sqr(m),p=t.mul(w,m);return t.add(t.add(p,t.mul(m,y)),b)}if(!t.eql(t.sqr(e.Gy),o(e.Gx)))throw new Error("bad generator point: equation left != right");function a(m){return $r(m,ge,e.n)}function c(m){let{allowedPrivateKeyLengths:y,nByteLength:b,wrapPrivateKey:w,n:p}=e;if(y&&typeof m!="bigint"){if(Rt(m)&&(m=gt(m)),typeof m!="string"||!y.includes(m.length))throw new Error("invalid private key");m=m.padStart(b*2,"0")}let E;try{E=typeof m=="bigint"?m:yt(oe("private key",m,b))}catch{throw new Error("invalid private key, expected hex or "+b+" bytes, got "+typeof m)}return w&&(E=J(E,p)),Le("private key",E,ge,p),E}function h(m){if(!(m instanceof g))throw new Error("ProjectivePoint expected")}let f=Xt((m,y)=>{let{px:b,py:w,pz:p}=m;if(t.eql(p,t.ONE))return{x:b,y:w};let E=m.is0();y==null&&(y=E?t.ONE:t.inv(p));let A=t.mul(b,y),_=t.mul(w,y),x=t.mul(p,y);if(E)return{x:t.ZERO,y:t.ZERO};if(!t.eql(x,t.ONE))throw new Error("invZ was invalid");return{x:A,y:_}}),u=Xt(m=>{if(m.is0()){if(e.allowInfinityPoint&&!t.is0(m.py))return;throw new Error("bad point: ZERO")}let{x:y,y:b}=m.toAffine();if(!t.isValid(y)||!t.isValid(b))throw new Error("bad point: x or y not FE");let w=t.sqr(b),p=o(y);if(!t.eql(w,p))throw new Error("bad point: equation left != right");if(!m.isTorsionFree())throw new Error("bad point: not in prime-order subgroup");return!0});class g{constructor(y,b,w){if(this.px=y,this.py=b,this.pz=w,y==null||!t.isValid(y))throw new Error("x required");if(b==null||!t.isValid(b))throw new Error("y required");if(w==null||!t.isValid(w))throw new Error("z required");Object.freeze(this)}static fromAffine(y){let{x:b,y:w}=y||{};if(!y||!t.isValid(b)||!t.isValid(w))throw new Error("invalid affine point");if(y instanceof g)throw new Error("projective point not allowed");let p=E=>t.eql(E,t.ZERO);return p(b)&&p(w)?g.ZERO:new g(b,w,t.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(y){let b=t.invertBatch(y.map(w=>w.pz));return y.map((w,p)=>w.toAffine(b[p])).map(g.fromAffine)}static fromHex(y){let b=g.fromAffine(i(oe("pointHex",y)));return b.assertValidity(),b}static fromPrivateKey(y){return g.BASE.multiply(c(y))}static msm(y,b){return Vn(g,n,y,b)}_setWindowSize(y){d.setWindowSize(this,y)}assertValidity(){u(this)}hasEvenY(){let{y}=this.toAffine();if(t.isOdd)return!t.isOdd(y);throw new Error("Field doesn't support isOdd")}equals(y){h(y);let{px:b,py:w,pz:p}=this,{px:E,py:A,pz:_}=y,x=t.eql(t.mul(b,_),t.mul(E,p)),I=t.eql(t.mul(w,_),t.mul(A,p));return x&&I}negate(){return new g(this.px,t.neg(this.py),this.pz)}double(){let{a:y,b}=e,w=t.mul(b,uu),{px:p,py:E,pz:A}=this,_=t.ZERO,x=t.ZERO,I=t.ZERO,C=t.mul(p,p),j=t.mul(E,E),V=t.mul(A,A),P=t.mul(p,E);return P=t.add(P,P),I=t.mul(p,A),I=t.add(I,I),_=t.mul(y,I),x=t.mul(w,V),x=t.add(_,x),_=t.sub(j,x),x=t.add(j,x),x=t.mul(_,x),_=t.mul(P,_),I=t.mul(w,I),V=t.mul(y,V),P=t.sub(C,V),P=t.mul(y,P),P=t.add(P,I),I=t.add(C,C),C=t.add(I,C),C=t.add(C,V),C=t.mul(C,P),x=t.add(x,C),V=t.mul(E,A),V=t.add(V,V),C=t.mul(V,P),_=t.sub(_,C),I=t.mul(V,j),I=t.add(I,I),I=t.add(I,I),new g(_,x,I)}add(y){h(y);let{px:b,py:w,pz:p}=this,{px:E,py:A,pz:_}=y,x=t.ZERO,I=t.ZERO,C=t.ZERO,j=e.a,V=t.mul(e.b,uu),P=t.mul(b,E),L=t.mul(w,A),T=t.mul(p,_),R=t.add(b,w),S=t.add(E,A);R=t.mul(R,S),S=t.add(P,L),R=t.sub(R,S),S=t.add(b,p);let v=t.add(E,_);return S=t.mul(S,v),v=t.add(P,T),S=t.sub(S,v),v=t.add(w,p),x=t.add(A,_),v=t.mul(v,x),x=t.add(L,T),v=t.sub(v,x),C=t.mul(j,S),x=t.mul(V,T),C=t.add(x,C),x=t.sub(L,C),C=t.add(L,C),I=t.mul(x,C),L=t.add(P,P),L=t.add(L,P),T=t.mul(j,T),S=t.mul(V,S),L=t.add(L,T),T=t.sub(P,T),T=t.mul(j,T),S=t.add(S,T),P=t.mul(L,S),I=t.add(I,P),P=t.mul(v,S),x=t.mul(R,x),x=t.sub(x,P),P=t.mul(R,L),C=t.mul(v,C),C=t.add(C,P),new g(x,I,C)}subtract(y){return this.add(y.negate())}is0(){return this.equals(g.ZERO)}wNAF(y){return d.wNAFCached(this,y,g.normalizeZ)}multiplyUnsafe(y){let{endo:b,n:w}=e;Le("scalar",y,It,w);let p=g.ZERO;if(y===It)return p;if(this.is0()||y===ge)return this;if(!b||d.hasPrecomputes(this))return d.wNAFCachedUnsafe(this,y,g.normalizeZ);let{k1neg:E,k1:A,k2neg:_,k2:x}=b.splitScalar(y),I=p,C=p,j=this;for(;A>It||x>It;)A&ge&&(I=I.add(j)),x&ge&&(C=C.add(j)),j=j.double(),A>>=ge,x>>=ge;return E&&(I=I.negate()),_&&(C=C.negate()),C=new g(t.mul(C.px,b.beta),C.py,C.pz),I.add(C)}multiply(y){let{endo:b,n:w}=e;Le("scalar",y,ge,w);let p,E;if(b){let{k1neg:A,k1:_,k2neg:x,k2:I}=b.splitScalar(y),{p:C,f:j}=this.wNAF(_),{p:V,f:P}=this.wNAF(I);C=d.constTimeNegate(A,C),V=d.constTimeNegate(x,V),V=new g(t.mul(V.px,b.beta),V.py,V.pz),p=C.add(V),E=j.add(P)}else{let{p:A,f:_}=this.wNAF(y);p=A,E=_}return g.normalizeZ([p,E])[0]}multiplyAndAddUnsafe(y,b,w){let p=g.BASE,E=(_,x)=>x===It||x===ge||!_.equals(p)?_.multiplyUnsafe(x):_.multiply(x),A=E(this,b).add(E(y,w));return A.is0()?void 0:A}toAffine(y){return f(this,y)}isTorsionFree(){let{h:y,isTorsionFree:b}=e;if(y===ge)return!0;if(b)return b(g,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h:y,clearCofactor:b}=e;return y===ge?this:b?b(g,this):this.multiplyUnsafe(e.h)}toRawBytes(y=!0){return Ye("isCompressed",y),this.assertValidity(),s(g,this,y)}toHex(y=!0){return Ye("isCompressed",y),gt(this.toRawBytes(y))}}g.BASE=new g(e.Gx,e.Gy,t.ONE),g.ZERO=new g(t.ZERO,t.ONE,t.ZERO);let l=e.nBitLength,d=Pn(g,e.endo?Math.ceil(l/2):l);return{CURVE:e,ProjectivePoint:g,normPrivateKeyToScalar:c,weierstrassEquation:o,isWithinCurveOrder:a}}function Np(r){let e=Wr(r);return it(e,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...e})}function fu(r){let e=Np(r),{Fp:t,n}=e,s=t.BYTES+1,i=2*t.BYTES+1;function o(T){return J(T,n)}function a(T){return On(T,n)}let{ProjectivePoint:c,normPrivateKeyToScalar:h,weierstrassEquation:f,isWithinCurveOrder:u}=Cp({...e,toBytes(T,R,S){let v=R.toAffine(),B=t.toBytes(v.x),N=bt;return Ye("isCompressed",S),S?N(Uint8Array.from([R.hasEvenY()?2:3]),B):N(Uint8Array.from([4]),B,t.toBytes(v.y))},fromBytes(T){let R=T.length,S=T[0],v=T.subarray(1);if(R===s&&(S===2||S===3)){let B=yt(v);if(!$r(B,ge,t.ORDER))throw new Error("Point is not on curve");let N=f(B),U;try{U=t.sqrt(N)}catch($){let O=$ instanceof Error?": "+$.message:"";throw new Error("Point is not on curve"+O)}let D=(U&ge)===ge;return(S&1)===1!==D&&(U=t.neg(U)),{x:B,y:U}}else if(R===i&&S===4){let B=t.fromBytes(v.subarray(0,t.BYTES)),N=t.fromBytes(v.subarray(t.BYTES,2*t.BYTES));return{x:B,y:N}}else{let B=s,N=i;throw new Error("invalid Point, expected length of "+B+", or uncompressed "+N+", got "+R)}}}),g=T=>gt(Ut(T,e.nByteLength));function l(T){let R=n>>ge;return T>R}function d(T){return l(T)?o(-T):T}let m=(T,R,S)=>yt(T.slice(R,S));class y{constructor(R,S,v){this.r=R,this.s=S,this.recovery=v,this.assertValidity()}static fromCompact(R){let S=e.nByteLength;return R=oe("compactSignature",R,S*2),new y(m(R,0,S),m(R,S,2*S))}static fromDER(R){let{r:S,s:v}=_t.toSig(oe("DER",R));return new y(S,v)}assertValidity(){Le("r",this.r,ge,n),Le("s",this.s,ge,n)}addRecoveryBit(R){return new y(this.r,this.s,R)}recoverPublicKey(R){let{r:S,s:v,recovery:B}=this,N=_(oe("msgHash",R));if(B==null||![0,1,2,3].includes(B))throw new Error("recovery id invalid");let U=B===2||B===3?S+e.n:S;if(U>=t.ORDER)throw new Error("recovery id 2 or 3 invalid");let D=B&1?"03":"02",H=c.fromHex(D+g(U)),$=a(U),O=o(-N*$),Y=o(v*$),re=c.BASE.multiplyAndAddUnsafe(H,O,Y);if(!re)throw new Error("point at infinify");return re.assertValidity(),re}hasHighS(){return l(this.s)}normalizeS(){return this.hasHighS()?new y(this.r,o(-this.s),this.recovery):this}toDERRawBytes(){return jt(this.toDERHex())}toDERHex(){return _t.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return jt(this.toCompactHex())}toCompactHex(){return g(this.r)+g(this.s)}}let b={isValidPrivateKey(T){try{return h(T),!0}catch{return!1}},normPrivateKeyToScalar:h,randomPrivateKey:()=>{let T=ao(e.n);return Kc(e.randomBytes(T),e.n)},precompute(T=8,R=c.BASE){return R._setWindowSize(T),R.multiply(BigInt(3)),R}};function w(T,R=!0){return c.fromPrivateKey(T).toRawBytes(R)}function p(T){let R=Rt(T),S=typeof T=="string",v=(R||S)&&T.length;return R?v===s||v===i:S?v===2*s||v===2*i:T instanceof c}function E(T,R,S=!0){if(p(T))throw new Error("first arg must be private key");if(!p(R))throw new Error("second arg must be public key");return c.fromHex(R).multiply(h(T)).toRawBytes(S)}let A=e.bits2int||function(T){if(T.length>8192)throw new Error("input is too large");let R=yt(T),S=T.length*8-e.nBitLength;return S>0?R>>BigInt(S):R},_=e.bits2int_modN||function(T){return o(A(T))},x=Gr(e.nBitLength);function I(T){return Le("num < 2^"+e.nBitLength,T,It,x),Ut(T,e.nByteLength)}function C(T,R,S=j){if(["recovered","canonical"].some(de=>de in S))throw new Error("sign() legacy options not supported");let{hash:v,randomBytes:B}=e,{lowS:N,prehash:U,extraEntropy:D}=S;N==null&&(N=!0),T=oe("msgHash",T),lu(S),U&&(T=oe("prehashed msgHash",v(T)));let H=_(T),$=h(R),O=[I($),I(H)];if(D!=null&&D!==!1){let de=D===!0?B(t.BYTES):D;O.push(oe("extraEntropy",de))}let Y=bt(...O),re=H;function he(de){let ye=A(de);if(!u(ye))return;let xe=a(ye),Ne=c.BASE.multiply(ye).toAffine(),Te=o(Ne.x);if(Te===It)return;let nt=o(xe*o(re+Te*$));if(nt===It)return;let ut=(Ne.x===Te?0:2)|Number(Ne.y&ge),Pr=nt;return N&&l(nt)&&(Pr=d(nt),ut^=1),new y(Te,Pr,ut)}return{seed:Y,k2sig:he}}let j={lowS:e.lowS,prehash:!1},V={lowS:e.lowS,prehash:!1};function P(T,R,S=j){let{seed:v,k2sig:B}=C(T,R,S),N=e;return no(N.hash.outputLen,N.nByteLength,N.hmac)(v,B)}c.BASE._setWindowSize(8);function L(T,R,S,v=V){let B=T;R=oe("msgHash",R),S=oe("publicKey",S);let{lowS:N,prehash:U,format:D}=v;if(lu(v),"strict"in v)throw new Error("options.strict was renamed to lowS");if(D!==void 0&&D!=="compact"&&D!=="der")throw new Error("format must be compact or der");let H=typeof B=="string"||Rt(B),$=!H&&!D&&typeof B=="object"&&B!==null&&typeof B.r=="bigint"&&typeof B.s=="bigint";if(!H&&!$)throw new Error("invalid signature, expected Uint8Array, hex string or Signature instance");let O,Y;try{if($&&(O=new y(B.r,B.s)),H){try{D!=="compact"&&(O=y.fromDER(B))}catch(ut){if(!(ut instanceof _t.Err))throw ut}!O&&D!=="der"&&(O=y.fromCompact(B))}Y=c.fromHex(S)}catch{return!1}if(!O||N&&O.hasHighS())return!1;U&&(R=e.hash(R));let{r:re,s:he}=O,de=_(R),ye=a(he),xe=o(de*ye),Ne=o(re*ye),Te=c.BASE.multiplyAndAddUnsafe(Y,xe,Ne)?.toAffine();return Te?o(Te.x)===re:!1}return{CURVE:e,getPublicKey:w,getSharedSecret:E,sign:P,verify:L,ProjectivePoint:c,Signature:y,utils:b}}function Rp(r){return{hash:r,hmac:(e,...t)=>na(r,e,Yi(...t)),randomBytes:Nn}}function hu(r,e){let t=n=>fu({...r,...Rp(n)});return{...t(e),create:t}}var mu=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),du=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),Lp=BigInt(1),ia=BigInt(2),pu=(r,e)=>(r+e/ia)/e;function Up(r){let e=mu,t=BigInt(3),n=BigInt(6),s=BigInt(11),i=BigInt(22),o=BigInt(23),a=BigInt(44),c=BigInt(88),h=r*r*r%e,f=h*h*r%e,u=ie(f,t,e)*f%e,g=ie(u,t,e)*f%e,l=ie(g,ia,e)*h%e,d=ie(l,s,e)*l%e,m=ie(d,i,e)*d%e,y=ie(m,a,e)*m%e,b=ie(y,c,e)*y%e,w=ie(b,a,e)*m%e,p=ie(w,t,e)*f%e,E=ie(p,o,e)*d%e,A=ie(E,n,e)*h%e,_=ie(A,ia,e);if(!oa.eql(oa.sqr(_),r))throw new Error("Cannot find square root");return _}var oa=Dt(mu,void 0,void 0,{sqrt:Up}),nr=hu({a:BigInt(0),b:BigInt(7),Fp:oa,n:du,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let e=du,t=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-Lp*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),s=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),i=t,o=BigInt("0x100000000000000000000000000000000"),a=pu(i*r,e),c=pu(-n*r,e),h=J(r-a*t-c*s,e),f=J(-a*n-c*i,e),u=h>o,g=f>o;if(u&&(h=e-h),g&&(f=e-f),h>o||f>o)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:u,k1:h,k2neg:g,k2:f}}}},vr),vb=BigInt(0);var Eb=nr.ProjectivePoint;function Fe(r,e){e==null&&(e=r.reduce((s,i)=>s+i.length,0));let t=De(e),n=0;for(let s of r)t.set(s,n),n+=s.length;return t}function gu(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function yu(r,e,t){let n=wr.digest(t instanceof Uint8Array?t:t.subarray());if(gu(n))return n.then(({digest:s})=>nr.verify(e,s,r)).catch(s=>{throw new an(String(s))});try{return nr.verify(e,n.digest,r)}catch(s){throw new an(String(s))}}var Hs=class{type="secp256k1";raw;_key;constructor(e){this._key=wu(e),this.raw=bu(this._key)}toMultihash(){return pt.digest(Ot(this))}toCID(){return pe.createV1(114,this.toMultihash())}toString(){return ee.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}verify(e,t){return yu(this._key,t,e)}};function aa(r){return new Hs(r)}function bu(r){return nr.ProjectivePoint.fromHex(r).toRawBytes(!0)}function wu(r){try{return nr.ProjectivePoint.fromHex(r),r}catch(e){throw new cr(String(e))}}function xu(r){let{Type:e,Data:t}=ot.decode(r),n=t??new Uint8Array;switch(e){case fe.RSA:return ra(n);case fe.Ed25519:return mo(n);case fe.secp256k1:return aa(n);default:throw new lr}}function vu(r){let{Type:e,Data:t}=ot.decode(r.digest),n=t??new Uint8Array;switch(e){case fe.Ed25519:return mo(n);case fe.secp256k1:return aa(n);default:throw new lr}}function Ot(r){return ot.encode({Type:fe[r.type],Data:r.raw})}var Eu=Symbol.for("nodejs.util.inspect.custom"),Dp=114,un=class{type;multihash;publicKey;string;constructor(e){this.type=e.type,this.multihash=e.multihash,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Pi]=!0;toString(){return this.string==null&&(this.string=ee.encode(this.multihash.bytes).slice(1)),this.string}toMultihash(){return this.multihash}toCID(){return pe.createV1(Dp,this.multihash)}toJSON(){return this.toString()}equals(e){if(e==null)return!1;if(e instanceof Uint8Array)return me(this.multihash.bytes,e);if(typeof e=="string")return this.toString()===e;if(e?.toMultihash()?.bytes!=null)return me(this.multihash.bytes,e.toMultihash().bytes);throw new Error("not valid Id")}[Eu](){return`PeerId(${this.toString()})`}},Fs=class extends un{type="RSA";publicKey;constructor(e){super({...e,type:"RSA"}),this.publicKey=e.publicKey}},Ks=class extends un{type="Ed25519";publicKey;constructor(e){super({...e,type:"Ed25519"}),this.publicKey=e.publicKey}},qs=class extends un{type="secp256k1";publicKey;constructor(e){super({...e,type:"secp256k1"}),this.publicKey=e.publicKey}},Op=2336,zs=class{type="url";multihash;publicKey;url;constructor(e){this.url=e.toString(),this.multihash=pt.digest(G(this.url))}[Eu](){return`PeerId(${this.url})`}[Pi]=!0;toString(){return this.toCID().toString()}toMultihash(){return this.multihash}toCID(){return pe.createV1(Op,this.toMultihash())}toJSON(){return this.toString()}equals(e){return e==null?!1:(e instanceof Uint8Array&&(e=ce(e)),e.toString()===this.toString())}};function ca(r,e){let t;if(r.charAt(0)==="1"||r.charAt(0)==="Q")t=ze(ee.decode(`z${r}`));else{if(e==null)throw new ve('Please pass a multibase decoder for strings that do not start with "1" or "Q"');t=ze(e.decode(r))}return fn(t)}function fn(r){if(Pp(r))return new Fs({multihash:r});if(Mp(r))try{let e=vu(r);if(e.type==="Ed25519")return new Ks({multihash:r,publicKey:e});if(e.type==="secp256k1")return new qs({multihash:r,publicKey:e})}catch{let t=ce(r.digest);return new zs(new URL(t))}throw new _n("Supplied PeerID Multihash is invalid")}function Mp(r){return r.code===pt.code}function Pp(r){return r.code===wr.code}var Au=Symbol.for("@achingbrain/uint8arraylist");function Su(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let s=t+n.byteLength;if(e<s)return{buf:n,index:e-t};t=s}throw new RangeError("index is out of bounds")}function $s(r){return!!r?.[Au]}var et=class r{bufs;length;[Au]=!0;constructor(...e){this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let n of e)if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.push(n);else if($s(n))t+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let n of e.reverse())if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.unshift(n);else if($s(n))t+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=Su(this.bufs,e);return t.buf[t.index]}set(e,t){let n=Su(this.bufs,e);n.buf[n.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let n=0;n<e.length;n++)this.set(t+n,e[n]);else if($s(e))for(let n=0;n<e.length;n++)this.set(t+n,e.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:n,length:s}=this._subList(e,t);return Fe(n,s)}subarray(e,t){let{bufs:n,length:s}=this._subList(e,t);return n.length===1?n[0]:Fe(n,s)}sublist(e,t){let{bufs:n,length:s}=this._subList(e,t),i=new r;return i.length=s,i.bufs=[...n],i}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:this.bufs,length:this.length};let n=[],s=0;for(let i=0;i<this.bufs.length;i++){let o=this.bufs[i],a=s,c=a+o.byteLength;if(s=c,e>=c)continue;let h=e>=a&&e<c,f=t>a&&t<=c;if(h&&f){if(e===a&&t===c){n.push(o);break}let u=e-a;n.push(o.subarray(u,u+(t-e)));break}if(h){if(e===0){n.push(o);continue}n.push(o.subarray(e-a));continue}if(f){if(t===c){n.push(o);break}n.push(o.subarray(0,t-a));break}n.push(o)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!$s(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let s=n.byteLength;if(s===0)throw new TypeError("search must be at least 1 byte long");let i=256,o=new Int32Array(i);for(let u=0;u<i;u++)o[u]=-1;for(let u=0;u<s;u++)o[n[u]]=u;let a=o,c=this.byteLength-n.byteLength,h=n.byteLength-1,f;for(let u=t;u<=c;u+=f){f=0;for(let g=h;g>=0;g--){let l=this.get(u+g);if(n[g]!==l){f=Math.max(1,g-a[l]);break}}if(f===0)return u}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let n=De(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,t),this.write(n,e)}getInt16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,t)}setInt16(e,t,n){let s=ae(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt16(0,t,n),this.write(s,e)}getInt32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,t)}setInt32(e,t,n){let s=ae(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt32(0,t,n),this.write(s,e)}getBigInt64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,t)}setBigInt64(e,t,n){let s=ae(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigInt64(0,t,n),this.write(s,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let n=De(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,t),this.write(n,e)}getUint16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,t)}setUint16(e,t,n){let s=ae(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint16(0,t,n),this.write(s,e)}getUint32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,t)}setUint32(e,t,n){let s=ae(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint32(0,t,n),this.write(s,e)}getBigUint64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,t)}setBigUint64(e,t,n){let s=ae(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigUint64(0,t,n),this.write(s,e)}getFloat32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,t)}setFloat32(e,t,n){let s=ae(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat32(0,t,n),this.write(s,e)}getFloat64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,t)}setFloat64(e,t,n){let s=ae(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat64(0,t,n),this.write(s,e)}equals(e){if(e==null||!(e instanceof r)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!me(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new r;return n.bufs=e,t==null&&(t=e.reduce((s,i)=>s+i.byteLength,0)),n.length=t,n}};var hn;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.publicKey!=null&&t.publicKey.byteLength>0&&(n.uint32(10),n.bytes(t.publicKey)),t.payloadType!=null&&t.payloadType.byteLength>0&&(n.uint32(18),n.bytes(t.payloadType)),t.payload!=null&&t.payload.byteLength>0&&(n.uint32(26),n.bytes(t.payload)),t.signature!=null&&t.signature.byteLength>0&&(n.uint32(42),n.bytes(t.signature)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={publicKey:ae(0),payloadType:ae(0),payload:ae(0),signature:ae(0)},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.publicKey=t.bytes();break}case 2:{i.payloadType=t.bytes();break}case 3:{i.payload=t.bytes();break}case 5:{i.signature=t.bytes();break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(hn||(hn={}));var Gs=class extends Error{constructor(e="Invalid signature"){super(e),this.name="InvalidSignatureError"}};var dn=class r{static createFromProtobuf=async e=>{let t=hn.decode(e),n=xu(t.publicKey);return new r({publicKey:n,payloadType:t.payloadType,payload:t.payload,signature:t.signature})};static seal=async(e,t)=>{if(t==null)throw new Error("Missing private key");let n=e.domain,s=e.codec,i=e.marshal(),o=Bu(n,s,i),a=await t.sign(o.subarray());return new r({publicKey:t.publicKey,payloadType:s,payload:i,signature:a})};static openAndCertify=async(e,t)=>{let n=await r.createFromProtobuf(e);if(!await n.validate(t))throw new Gs("Envelope signature is not valid for the given domain");return n};publicKey;payloadType;payload;signature;marshaled;constructor(e){let{publicKey:t,payloadType:n,payload:s,signature:i}=e;this.publicKey=t,this.payloadType=n,this.payload=s,this.signature=i}marshal(){return this.marshaled==null&&(this.marshaled=hn.encode({publicKey:Ot(this.publicKey),payloadType:this.payloadType,payload:this.payload.subarray(),signature:this.signature})),this.marshaled}equals(e){return me(this.marshal(),e.marshal())}async validate(e){let t=Bu(e,this.payloadType,this.payload);return this.publicKey.verify(t.subarray(),this.signature)}},Bu=(r,e,t)=>{let n=G(r),s=$e(n.byteLength),i=$e(e.length),o=$e(t.length);return new et(s,n,i,e,o,t)};var Ws=class{index=0;input="";new(e){return this.index=0,this.input=e,this}readAtomically(e){let t=this.index,n=e();return n===void 0&&(this.index=t),n}parseWith(e){let t=e();if(this.index===this.input.length)return t}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(e){return this.readAtomically(()=>{let t=this.readChar();if(t===e)return t})}readSeparator(e,t,n){return this.readAtomically(()=>{if(!(t>0&&this.readGivenChar(e)===void 0))return n()})}readNumber(e,t,n,s){return this.readAtomically(()=>{let i=0,o=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",h=2**(8*s)-1;for(;;){let f=this.readAtomically(()=>{let u=this.readChar();if(u===void 0)return;let g=Number.parseInt(u,e);if(!Number.isNaN(g))return g});if(f===void 0)break;if(i*=e,i+=f,i>h||(o+=1,t!==void 0&&o>t))return}if(o!==0)return!n&&c&&o>1?void 0:i})}readIPv4Addr(){return this.readAtomically(()=>{let e=new Uint8Array(4);for(let t=0;t<e.length;t++){let n=this.readSeparator(".",t,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;e[t]=n}return e})}readIPv6Addr(){let e=t=>{for(let n=0;n<t.length/2;n++){let s=n*2;if(n<t.length-3){let o=this.readSeparator(":",n,()=>this.readIPv4Addr());if(o!==void 0)return t[s]=o[0],t[s+1]=o[1],t[s+2]=o[2],t[s+3]=o[3],[s+4,!0]}let i=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(i===void 0)return[s,!1];t[s]=i>>8,t[s+1]=i&255}return[t.length,!1]};return this.readAtomically(()=>{let t=new Uint8Array(16),[n,s]=e(t);if(n===16)return t;if(s||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let i=new Uint8Array(14),o=16-(n+2),[a]=e(i.subarray(0,o));return t.set(i.subarray(0,a),16-a),t})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var _u=45,Vp=15,Tr=new Ws;function la(r){if(!(r.length>Vp))return Tr.new(r).parseWith(()=>Tr.readIPv4Addr())}function ua(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>_u))return Tr.new(r).parseWith(()=>Tr.readIPv6Addr())}function Zs(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>_u))return Tr.new(r).parseWith(()=>Tr.readIPAddr())}var Qw=parseInt("0xFFFF",16),ex=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);function js(r){return!!la(r)}function Ys(r){return!!ua(r)}function Xs(r){return!!Zs(r)}var ku=js,zp=Ys,fa=function(r){let e=0;if(r=r.toString().trim(),ku(r)){let t=new Uint8Array(e+4);return r.split(/\./g).forEach(n=>{t[e++]=parseInt(n,10)&255}),t}if(zp(r)){let t=r.split(":",8),n;for(n=0;n<t.length;n++){let i=ku(t[n]),o;i&&(o=fa(t[n]),t[n]=ce(o.slice(0,2),"base16")),o!=null&&++n<8&&t.splice(n,0,ce(o.slice(2,4),"base16"))}if(t[0]==="")for(;t.length<8;)t.unshift("0");else if(t[t.length-1]==="")for(;t.length<8;)t.push("0");else if(t.length<8){for(n=0;n<t.length&&t[n]!=="";n++);let i=[n,1];for(n=9-t.length;n>0;n--)i.push("0");t.splice.apply(t,i)}let s=new Uint8Array(e+16);for(n=0;n<t.length;n++){let i=parseInt(t[n],16);s[e++]=i>>8&255,s[e++]=i&255}return s}throw new Error("invalid ip address")},Cu=function(r,e=0,t){e=~~e,t=t??r.length-e;let n=new DataView(r.buffer);if(t===4){let s=[];for(let i=0;i<t;i++)s.push(r[e+i]);return s.join(".")}if(t===16){let s=[];for(let i=0;i<t;i+=2)s.push(n.getUint16(e+i).toString(16));return s.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var kr={},ha={},Gp=[[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"]];Gp.forEach(r=>{let e=Wp(...r);ha[e.code]=e,kr[e.name]=e});function Wp(r,e,t,n,s){return{code:r,size:e,name:t,resolvable:!!n,path:!!s}}function te(r){if(typeof r=="number"){if(ha[r]!=null)return ha[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(kr[r]!=null)return kr[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var Mx=te("ip4"),Px=te("ip6"),Vx=te("ipcidr");function ga(r,e){switch(te(r).code){case 4:case 41:return jp(e);case 42:return ma(e);case 43:return ce(e,"base10");case 6:case 273:case 33:case 132:return Lu(e).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return ma(e);case 421:return Qp(e);case 444:return Ru(e);case 445:return Ru(e);case 466:return Jp(e);case 481:return globalThis.encodeURIComponent(ma(e));default:return ce(e,"base16")}}function ya(r,e){switch(te(r).code){case 4:return Nu(e);case 41:return Nu(e);case 42:return pa(e);case 43:return G(e,"base10");case 6:case 273:case 33:case 132:return ba(parseInt(e,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return pa(e);case 421:return Yp(e);case 444:return e0(e);case 445:return t0(e);case 466:return Xp(e);case 481:return pa(globalThis.decodeURIComponent(e));default:return G(e,"base16")}}var da=Object.values(Zr).map(r=>r.decoder),Zp=function(){let r=da[0].or(da[1]);return da.slice(2).forEach(e=>r=r.or(e)),r}();function Nu(r){if(!Xs(r))throw new Error("invalid ip address");return fa(r)}function jp(r){let e=Cu(r,0,r.length);if(e==null)throw new Error("ipBuff is required");if(!Xs(e))throw new Error("invalid ip address");return e}function ba(r){let e=new ArrayBuffer(2);return new DataView(e).setUint16(0,r),new Uint8Array(e)}function Lu(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function pa(r){let e=G(r),t=Uint8Array.from($e(e.length));return Fe([t,e],t.length+e.length)}function ma(r){let e=wt(r);if(r=r.slice(Se(e)),r.length!==e)throw new Error("inconsistent lengths");return ce(r)}function Yp(r){let e;r[0]==="Q"||r[0]==="1"?e=ze(ee.decode(`z${r}`)).bytes:e=pe.parse(r).multihash.bytes;let t=Uint8Array.from($e(e.length));return Fe([t,e],t.length+e.length)}function Xp(r){let e=Zp.decode(r),t=Uint8Array.from($e(e.length));return Fe([t,e],t.length+e.length)}function Jp(r){let e=wt(r),t=r.slice(Se(e));if(t.length!==e)throw new Error("inconsistent lengths");return"u"+ce(t,"base64url")}function Qp(r){let e=wt(r),t=r.slice(Se(e));if(t.length!==e)throw new Error("inconsistent lengths");return ce(t,"base58btc")}function e0(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==16)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion address.`);let t=dt.decode("b"+e[0]),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let s=ba(n);return Fe([t,s],t.length+s.length)}function t0(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==56)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion3 address.`);let t=dt.decode(`b${e[0]}`),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let s=ba(n);return Fe([t,s],t.length+s.length)}function Ru(r){let e=r.slice(0,r.length-2),t=r.slice(r.length-2),n=ce(e,"base32"),s=Lu(t);return`${n}:${s}`}function Uu(r){r=wa(r);let e=[],t=[],n=null,s=r.split("/").slice(1);if(s.length===1&&s[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let i=0;i<s.length;i++){let o=s[i],a=te(o);if(a.size===0){e.push([a.code]),t.push([a.code]);continue}if(i++,i>=s.length)throw Ou("invalid address: "+r);if(a.path===!0){n=wa(s.slice(i).join("/")),e.push([a.code,ya(a.code,n)]),t.push([a.code,n]);break}let c=ya(a.code,s[i]);e.push([a.code,c]),t.push([a.code,ga(a.code,c)])}return{string:Du(t),bytes:va(e),tuples:e,stringTuples:t,path:n}}function xa(r){let e=[],t=[],n=null,s=0;for(;s<r.length;){let i=wt(r,s),o=Se(i),a=te(i),c=r0(a,r.slice(s+o));if(c===0){e.push([i]),t.push([i]),s+=o;continue}let h=r.slice(s+o,s+o+c);if(s+=c+o,s>r.length)throw Ou("Invalid address Uint8Array: "+ce(r,"base16"));e.push([i,h]);let f=ga(i,h);if(t.push([i,f]),a.path===!0){n=f;break}}return{bytes:Uint8Array.from(r),string:Du(t),tuples:e,stringTuples:t,path:n}}function Du(r){let e=[];return r.map(t=>{let n=te(t[0]);return e.push(n.name),t.length>1&&t[1]!=null&&e.push(t[1]),null}),wa(e.join("/"))}function va(r){return Fe(r.map(e=>{let t=te(e[0]),n=Uint8Array.from($e(t.code));return e.length>1&&e[1]!=null&&(n=Fe([n,e[1]])),n}))}function r0(r,e){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let t=wt(e instanceof Uint8Array?e:Uint8Array.from(e));return t+Se(t)}}function wa(r){return"/"+r.trim().split("/").filter(e=>e).join("/")}function Ou(r){return new Error("Error parsing address: "+r)}var n0=Symbol.for("nodejs.util.inspect.custom"),Sa=Symbol.for("@multiformats/js-multiaddr/multiaddr"),s0=[te("dns").code,te("dns4").code,te("dns6").code,te("dnsaddr").code],Ea=class extends Error{constructor(e="No available resolver"){super(e),this.name="NoAvailableResolverError"}},Js=class r{bytes;#e;#t;#r;#n;[Sa]=!0;constructor(e){e==null&&(e="");let t;if(e instanceof Uint8Array)t=xa(e);else if(typeof e=="string"){if(e.length>0&&e.charAt(0)!=="/")throw new Error(`multiaddr "${e}" must start with a "/"`);t=Uu(e)}else if(Pu(e))t=xa(e.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=t.bytes,this.#e=t.string,this.#t=t.tuples,this.#r=t.stringTuples,this.#n=t.path}toString(){return this.#e}toJSON(){return this.toString()}toOptions(){let e,t,n,s,i="",o=te("tcp"),a=te("udp"),c=te("ip4"),h=te("ip6"),f=te("dns6"),u=te("ip6zone");for(let[l,d]of this.stringTuples())l===u.code&&(i=`%${d??""}`),s0.includes(l)&&(t=o.name,s=443,n=`${d??""}${i}`,e=l===f.code?6:4),(l===o.code||l===a.code)&&(t=te(l).name,s=parseInt(d??"")),(l===c.code||l===h.code)&&(t=te(l).name,n=`${d??""}${i}`,e=l===h.code?6:4);if(e==null||t==null||n==null||s==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:e,host:n,transport:t,port:s}}protos(){return this.#t.map(([e])=>Object.assign({},te(e)))}protoCodes(){return this.#t.map(([e])=>e)}protoNames(){return this.#t.map(([e])=>te(e).name)}tuples(){return this.#t.map(([e,t])=>t==null?[e]:[e,t])}stringTuples(){return this.#r.map(([e,t])=>t==null?[e]:[e,t])}encapsulate(e){return e=new r(e),new r(this.toString()+e.toString())}decapsulate(e){let t=e.toString(),n=this.toString(),s=n.lastIndexOf(t);if(s<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${e.toString()}`);return new r(n.slice(0,s))}decapsulateCode(e){let t=this.tuples();for(let n=t.length-1;n>=0;n--)if(t[n][0]===e)return new r(va(t.slice(0,n)));return this}getPeerId(){try{let e=[];this.stringTuples().forEach(([n,s])=>{n===kr.p2p.code&&e.push([n,s]),n===kr["p2p-circuit"].code&&(e=[])});let t=e.pop();if(t?.[1]!=null){let n=t[1];return n[0]==="Q"||n[0]==="1"?ce(ee.decode(`z${n}`),"base58btc"):ce(pe.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#n}equals(e){return me(this.bytes,e.bytes)}async resolve(e){let t=this.protos().find(i=>i.resolvable);if(t==null)return[this];let n=Mu.get(t.name);if(n==null)throw new Ea(`no available resolver for ${t.name}`);return(await n(this,e)).map(i=>_e(i))}nodeAddress(){let e=this.toOptions();if(e.transport!=="tcp"&&e.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${e.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:e.family,address:e.host,port:e.port}}isThinWaistAddress(e){let t=(e??this).protos();return!(t.length!==2||t[0].code!==4&&t[0].code!==41||t[1].code!==6&&t[1].code!==273)}[n0](){return`Multiaddr(${this.#e})`}};var Mu=new Map;function Pu(r){return!!r?.[Sa]}function _e(r){return new Js(r)}function tt(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var Qs=class extends Error{type;code;constructor(e,t,n){super(e??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=t??"ABORT_ERR"}};async function ei(r,e,t){if(e==null)return r;if(e.aborted)return Promise.reject(new Qs(t?.errorMessage,t?.errorCode,t?.errorName));let n,s=new Qs(t?.errorMessage,t?.errorCode,t?.errorName);try{return await Promise.race([r,new Promise((i,o)=>{n=()=>{o(s)},e.addEventListener("abort",n)})])}finally{n!=null&&e.removeEventListener("abort",n)}}var Aa=class{readNext;haveNext;ended;nextResult;constructor(){this.ended=!1,this.readNext=tt(),this.haveNext=tt()}[Symbol.asyncIterator](){return this}async next(){if(this.nextResult==null&&await this.haveNext.promise,this.nextResult==null)throw new Error("HaveNext promise resolved but nextResult was undefined");let e=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=tt(),e}async throw(e){return this.ended=!0,e!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(e)),{done:!0,value:void 0}}async return(){let e={done:!0,value:void 0};return await this._push(void 0),e}async push(e,t){await this._push(e,t)}async end(e,t){e!=null?await this.throw(e):await this._push(void 0,t)}async _push(e,t){if(e!=null&&this.ended)throw new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;e!=null?this.nextResult={done:!1,value:e}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=tt(),await ei(this.readNext.promise,t?.signal,t)}};function Vu(){return new Aa}var ti=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};var Ba=class extends Error{code;constructor(e,t){super(e),this.code=t}},_a=class extends Ba{type;constructor(e){super(e,"ABORT_ERR"),this.type="aborted",this.name="AbortError"}};function Hu(r,e){let t=Vu();r.sink(t).catch(async o=>{await t.end(o)}),r.sink=async o=>{for await(let a of o)await t.push(a);await t.end()};let n=r.source;r.source[Symbol.iterator]!=null?n=r.source[Symbol.iterator]():r.source[Symbol.asyncIterator]!=null&&(n=r.source[Symbol.asyncIterator]());let s=new et;return{read:async(o,a)=>{a?.signal?.throwIfAborted();let c,h=new Promise((f,u)=>{c=()=>{u(new _a("Read aborted"))},a?.signal?.addEventListener("abort",c)});try{if(o==null){let{done:u,value:g}=await Promise.race([n.next(),h]);return u===!0?new et:g}for(;s.byteLength<o;){let{value:u,done:g}=await Promise.race([n.next(),h]);if(g===!0)throw new ti("unexpected end of input");s.append(u)}let f=s.sublist(0,o);return s.consume(o),f}finally{c!=null&&a?.signal?.removeEventListener("abort",c)}},write:async(o,a)=>{a?.signal?.throwIfAborted(),o instanceof Uint8Array?await t.push(o,a):await t.push(o.subarray(),a)},unwrap:()=>{if(s.byteLength>0){let o=r.source;r.source=async function*(){e?.yieldBytes===!1?yield s:yield*s,yield*o}()}return r}}}var ri=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},ni=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},si=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"};function Fu(r,e={}){let t=Hu(r,e);e.maxDataLength!=null&&e.maxLengthLength==null&&(e.maxLengthLength=Se(e.maxDataLength));let n=e?.lengthDecoder??wt,s=e?.lengthEncoder??$e;return{read:async o=>{let a=-1,c=new et;for(;;){c.append(await t.read(1,o));try{a=n(c)}catch(h){if(h instanceof RangeError)continue;throw h}if(a<0)throw new ri("Invalid message length");if(e?.maxLengthLength!=null&&c.byteLength>e.maxLengthLength)throw new si("message length length too long");if(a>-1)break}if(e?.maxDataLength!=null&&a>e.maxDataLength)throw new ni("message length too long");return t.read(a,o)},write:async(o,a)=>{await t.write(new et(s(o.byteLength),o),a)},writeV:async(o,a)=>{let c=new et(...o.flatMap(h=>[s(h.byteLength),h]));await t.write(c,a)},unwrap:()=>t.unwrap()}}function qt(r,e){let t=Fu(r,e),n={read:async(s,i)=>{let o=await t.read(i);return s.decode(o)},write:async(s,i,o)=>{await t.write(i.encode(s),o)},writeV:async(s,i,o)=>{await t.writeV(s.map(a=>i.encode(a)),o)},pb:s=>({read:async i=>n.read(s,i),write:async(i,o)=>n.write(i,s,o),writeV:async(i,o)=>n.writeV(i,s,o),unwrap:()=>n}),unwrap:()=>t.unwrap()};return n}var Ia=1e3,Ku=60*Ia,ii=290,qu=15,zu=2*60*Ku,$u=1,oi=2e3,Gu=100,Ta="circuit-relay-source",pn=`${Vi}-circuit-relay`,ka=`${Vi}-circuit-relay-source`,Wu=2*Ku,Zu=BigInt(1<<17),We="/libp2p/circuit/relay/0.2.0/hop",sr="/libp2p/circuit/relay/0.2.0/stop",ju=30*Ia,k1=30*Ia,mn=300,Yu=4096,Xu=.001;var X;(function(r){let e;(function(s){s.RESERVE="RESERVE",s.CONNECT="CONNECT",s.STATUS="STATUS"})(e=r.Type||(r.Type={}));let t;(function(s){s[s.RESERVE=0]="RESERVE",s[s.CONNECT=1]="CONNECT",s[s.STATUS=2]="STATUS"})(t||(t={})),function(s){s.codec=()=>tr(t)}(e=r.Type||(r.Type={}));let n;r.codec=()=>(n==null&&(n=Pe((s,i,o={})=>{o.lengthDelimited!==!1&&i.fork(),s.type!=null&&(i.uint32(8),r.Type.codec().encode(s.type,i)),s.peer!=null&&(i.uint32(18),Cr.codec().encode(s.peer,i)),s.reservation!=null&&(i.uint32(26),ai.codec().encode(s.reservation,i)),s.limit!=null&&(i.uint32(34),Nr.codec().encode(s.limit,i)),s.status!=null&&(i.uint32(40),K.codec().encode(s.status,i)),o.lengthDelimited!==!1&&i.ldelim()},(s,i,o={})=>{let a={},c=i==null?s.len:s.pos+i;for(;s.pos<c;){let h=s.uint32();switch(h>>>3){case 1:{a.type=r.Type.codec().decode(s);break}case 2:{a.peer=Cr.codec().decode(s,s.uint32(),{limits:o.limits?.peer});break}case 3:{a.reservation=ai.codec().decode(s,s.uint32(),{limits:o.limits?.reservation});break}case 4:{a.limit=Nr.codec().decode(s,s.uint32(),{limits:o.limits?.limit});break}case 5:{a.status=K.codec().decode(s);break}default:{s.skipType(h&7);break}}}return a})),n),r.encode=s=>Me(s,r.codec()),r.decode=(s,i)=>Oe(s,r.codec(),i)})(X||(X={}));var Ke;(function(r){let e;(function(s){s.CONNECT="CONNECT",s.STATUS="STATUS"})(e=r.Type||(r.Type={}));let t;(function(s){s[s.CONNECT=0]="CONNECT",s[s.STATUS=1]="STATUS"})(t||(t={})),function(s){s.codec=()=>tr(t)}(e=r.Type||(r.Type={}));let n;r.codec=()=>(n==null&&(n=Pe((s,i,o={})=>{o.lengthDelimited!==!1&&i.fork(),s.type!=null&&(i.uint32(8),r.Type.codec().encode(s.type,i)),s.peer!=null&&(i.uint32(18),Cr.codec().encode(s.peer,i)),s.limit!=null&&(i.uint32(26),Nr.codec().encode(s.limit,i)),s.status!=null&&(i.uint32(32),K.codec().encode(s.status,i)),o.lengthDelimited!==!1&&i.ldelim()},(s,i,o={})=>{let a={},c=i==null?s.len:s.pos+i;for(;s.pos<c;){let h=s.uint32();switch(h>>>3){case 1:{a.type=r.Type.codec().decode(s);break}case 2:{a.peer=Cr.codec().decode(s,s.uint32(),{limits:o.limits?.peer});break}case 3:{a.limit=Nr.codec().decode(s,s.uint32(),{limits:o.limits?.limit});break}case 4:{a.status=K.codec().decode(s);break}default:{s.skipType(h&7);break}}}return a})),n),r.encode=s=>Me(s,r.codec()),r.decode=(s,i)=>Oe(s,r.codec(),i)})(Ke||(Ke={}));var Cr;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{if(s.lengthDelimited!==!1&&n.fork(),t.id!=null&&t.id.byteLength>0&&(n.uint32(10),n.bytes(t.id)),t.addrs!=null)for(let i of t.addrs)n.uint32(18),n.bytes(i);s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={id:ae(0),addrs:[]},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.id=t.bytes();break}case 2:{if(s.limits?.addrs!=null&&i.addrs.length===s.limits.addrs)throw new Xr('Decode error - map field "addrs" had too many elements');i.addrs.push(t.bytes());break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Cr||(Cr={}));var ai;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{if(s.lengthDelimited!==!1&&n.fork(),t.expire!=null&&t.expire!==0n&&(n.uint32(8),n.uint64(t.expire)),t.addrs!=null)for(let i of t.addrs)n.uint32(18),n.bytes(i);t.voucher!=null&&(n.uint32(26),ci.codec().encode(t.voucher,n)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={expire:0n,addrs:[]},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.expire=t.uint64();break}case 2:{if(s.limits?.addrs!=null&&i.addrs.length===s.limits.addrs)throw new Xr('Decode error - map field "addrs" had too many elements');i.addrs.push(t.bytes());break}case 3:{i.voucher=ci.codec().decode(t,t.uint32(),{limits:s.limits?.voucher});break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(ai||(ai={}));var Nr;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.duration!=null&&(n.uint32(8),n.uint32(t.duration)),t.data!=null&&(n.uint32(16),n.uint64(t.data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.duration=t.uint32();break}case 2:{i.data=t.uint64();break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Nr||(Nr={}));var K;(function(r){r.UNUSED="UNUSED",r.OK="OK",r.RESERVATION_REFUSED="RESERVATION_REFUSED",r.RESOURCE_LIMIT_EXCEEDED="RESOURCE_LIMIT_EXCEEDED",r.PERMISSION_DENIED="PERMISSION_DENIED",r.CONNECTION_FAILED="CONNECTION_FAILED",r.NO_RESERVATION="NO_RESERVATION",r.MALFORMED_MESSAGE="MALFORMED_MESSAGE",r.UNEXPECTED_MESSAGE="UNEXPECTED_MESSAGE"})(K||(K={}));var Ca;(function(r){r[r.UNUSED=0]="UNUSED",r[r.OK=100]="OK",r[r.RESERVATION_REFUSED=200]="RESERVATION_REFUSED",r[r.RESOURCE_LIMIT_EXCEEDED=201]="RESOURCE_LIMIT_EXCEEDED",r[r.PERMISSION_DENIED=202]="PERMISSION_DENIED",r[r.CONNECTION_FAILED=203]="CONNECTION_FAILED",r[r.NO_RESERVATION=204]="NO_RESERVATION",r[r.MALFORMED_MESSAGE=400]="MALFORMED_MESSAGE",r[r.UNEXPECTED_MESSAGE=401]="UNEXPECTED_MESSAGE"})(Ca||(Ca={}));(function(r){r.codec=()=>tr(Ca)})(K||(K={}));var Rr;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.relay!=null&&t.relay.byteLength>0&&(n.uint32(10),n.bytes(t.relay)),t.peer!=null&&t.peer.byteLength>0&&(n.uint32(18),n.bytes(t.peer)),t.expiration!=null&&t.expiration!==0n&&(n.uint32(24),n.uint64(t.expiration)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={relay:ae(0),peer:ae(0),expiration:0n},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.relay=t.bytes();break}case 2:{i.peer=t.bytes();break}case 3:{i.expiration=t.uint64();break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Rr||(Rr={}));var ci;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.publicKey!=null&&t.publicKey.byteLength>0&&(n.uint32(10),n.bytes(t.publicKey)),t.payloadType!=null&&t.payloadType.byteLength>0&&(n.uint32(18),n.bytes(t.payloadType)),t.payload!=null&&(n.uint32(26),Rr.codec().encode(t.payload,n)),t.signature!=null&&t.signature.byteLength>0&&(n.uint32(42),n.bytes(t.signature)),s.lengthDelimited!==!1&&n.ldelim()},(t,n,s={})=>{let i={publicKey:ae(0),payloadType:ae(0),signature:ae(0)},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{i.publicKey=t.bytes();break}case 2:{i.payloadType=t.bytes();break}case 3:{i.payload=Rr.codec().decode(t,t.uint32(),{limits:s.limits?.payload});break}case 5:{i.signature=t.bytes();break}default:{t.skipType(a&7);break}}}return i})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(ci||(ci={}));var i0=r=>r.toString().split("/").slice(1),Lr=r=>({match:e=>e.length<1?!1:r(e[0])?e.slice(1):!1,pattern:"fn"}),F=r=>({match:e=>Lr(t=>t===r).match(e),pattern:r}),ir=()=>({match:r=>Lr(e=>typeof e=="string").match(r),pattern:"{string}"}),gn=()=>({match:r=>Lr(e=>!isNaN(parseInt(e))).match(r),pattern:"{number}"}),Q=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{ee.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),yn=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{No.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),W=r=>({match:e=>{let t=r.match(e);return t===!1?e:t},pattern:`optional(${r.pattern})`}),Ie=(...r)=>({match:e=>{let t;for(let n of r){let s=n.match(e);s!==!1&&(t==null||s.length<t.length)&&(t=s)}return t??!1},pattern:`or(${r.map(e=>e.pattern).join(", ")})`}),q=(...r)=>({match:e=>{for(let t of r){let n=t.match(e);if(n===!1)return!1;e=n}return e},pattern:`and(${r.map(e=>e.pattern).join(", ")})`});function ne(...r){function e(s){let i=i0(s);for(let o of r){let a=o.match(i);if(a===!1)return!1;i=a}return i}function t(s){return e(s)!==!1}function n(s){let i=e(s);return i===!1?!1:i.length===0}return{matchers:r,matches:t,exactMatch:n}}var ui=q(F("dns4"),ir()),fi=q(F("dns6"),ir()),hi=q(F("dnsaddr"),ir()),Ra=q(F("dns"),ir()),V1=ne(ui,W(Q())),H1=ne(fi,W(Q())),F1=ne(hi,W(Q())),K1=ne(Ie(Ra,hi,ui,fi),W(Q())),Ju=q(F("ip4"),Lr(js)),Qu=q(F("ip6"),Lr(Ys)),La=Ie(Ju,Qu),Tt=Ie(La,Ra,ui,fi,hi),q1=ne(Ie(La,q(Ie(Ra,hi,ui,fi),W(Q())))),z1=ne(Ju),$1=ne(Qu),G1=ne(La),Ua=q(Tt,F("tcp"),gn()),bn=q(Tt,F("udp"),gn()),W1=ne(q(Ua,W(Q()))),Z1=ne(bn),Da=q(bn,F("quic"),W(Q())),di=q(bn,F("quic-v1"),W(Q())),o0=Ie(Da,di),j1=ne(Da),Y1=ne(di),Na=Ie(Tt,Ua,bn,Da,di),ef=Ie(q(Na,F("ws"),W(Q()))),X1=ne(ef),tf=Ie(q(Na,F("wss"),W(Q())),q(Na,F("tls"),W(q(F("sni"),ir())),F("ws"),W(Q()))),J1=ne(tf),rf=q(bn,F("webrtc-direct"),W(yn()),W(yn()),W(Q())),Q1=ne(rf),nf=q(di,F("webtransport"),W(yn()),W(yn()),W(Q())),ev=ne(nf),li=Ie(ef,tf,q(Ua,W(Q())),q(o0,W(Q())),q(Tt,W(Q())),rf,nf,Q()),sf=ne(li),a0=q(li,F("p2p-circuit"),Q()),pi=ne(a0),c0=Ie(q(li,F("p2p-circuit"),F("webrtc"),W(Q())),q(li,F("webrtc"),W(Q())),q(F("webrtc"),W(Q()))),tv=ne(c0),l0=Ie(q(Tt,F("tcp"),gn(),F("http"),W(Q())),q(Tt,F("http"),W(Q()))),rv=ne(l0),u0=Ie(q(Tt,F("tcp"),Ie(q(F("443"),F("http")),q(gn(),F("https"))),W(Q())),q(Tt,F("tls"),F("http"),W(Q())),q(Tt,F("https"),W(Q()))),nv=ne(u0),f0=Ie(q(F("memory"),ir(),W(Q()))),sv=ne(f0);function mi(r){let e=new globalThis.AbortController;function t(){e.abort();for(let i of r)i?.removeEventListener!=null&&i.removeEventListener("abort",t)}for(let i of r){if(i?.aborted===!0){t();break}i?.addEventListener!=null&&i.addEventListener("abort",t)}function n(){for(let i of r)i?.removeEventListener!=null&&i.removeEventListener("abort",t)}let s=e.signal;return s.clear=n,s}var gi=class extends Error{constructor(e="Transfer limit error"){super(e),this.name="TransferLimitError"}},wn=class extends Error{constructor(e="Duration limit error"){super(e),this.name="DurationLimitError"}},xn=class extends Error{static name="HadEnoughRelaysError";name="HadEnoughRelaysError"},yi=class extends Error{static name="DoubleRelayError";name="DoubleRelayError"},bi=class extends Error{static name="RelayQueueFullError";name="RelayQueueFullError"};async function*of(r,e,t){let n=e.remaining;for await(let s of r){let i=BigInt(s.byteLength);if(e.remaining-i<0){let o=Number(e.remaining);e.remaining=0n;try{o!==0&&(yield s.subarray(0,o))}catch(a){t.log.error(a)}throw new gi(`data limit of ${n} bytes exceeded`)}e.remaining-=i,yield s}}function af(r,e,t,n,s){function i(u){r.abort(u),e.abort(u)}let o=[t,n.signal];n.limit?.duration!=null&&(s.log("limiting relayed connection duration to %dms",n.limit.duration),o.push(AbortSignal.timeout(n.limit.duration)));let a=mi(o),c=!1,h=!1,f;n.limit?.data!=null&&(f={remaining:n.limit.data}),queueMicrotask(()=>{let u=()=>{s.log("relayed connection reached time limit"),e.abort(new wn(`duration limit of ${n.limit?.duration} ms exceeded`))};a.addEventListener("abort",u,{once:!0}),e.sink(f==null?r.source:of(r.source,f,s)).catch(g=>{s.log.error("error while relaying streams src -> dst",g),i(g)}).finally(()=>{c=!0,h&&(a.removeEventListener("abort",u),a.clear())})}),queueMicrotask(()=>{let u=()=>{s.log("relayed connection reached time limit"),r.abort(new wn(`duration limit of ${n.limit?.duration} ms exceeded`))};a.addEventListener("abort",u,{once:!0}),r.sink(f==null?e.source:of(e.source,f,s)).catch(g=>{s.log.error("error while relaying streams dst -> src",g),i(g)}).finally(()=>{h=!0,c&&(a.removeEventListener("abort",u),a.clear())})})}function Oa(r){let e=r*BigInt(1e3),t=new Date().getTime();return Number(e-BigInt(t))}var vn=class{expires;bytes;constructor(e){e?.duration!=null&&e?.duration!==0&&(this.expires=Date.now()+e.duration*1e3),this.bytes=e?.data,this.bytes===0n&&(this.bytes=void 0),this.onData=this.onData.bind(this)}onData(e){this.bytes!=null&&(this.bytes-=BigInt(e.byteLength),this.bytes<0n&&(this.bytes=0n))}getLimits(){if(this.expires==null&&this.bytes==null)return;let e={};if(this.bytes!=null){let t=this;Object.defineProperty(e,"bytes",{get(){return t.bytes}})}if(this.expires!=null){let t=this;Object.defineProperty(e,"seconds",{get(){return Math.round(((t.expires??0)-Date.now())/1e3)}})}return e}},wi=ne(q(sf.matchers[0],F("p2p-circuit"))),xi=ne(F("p2p-circuit"));function vi(r,e){let t={[Symbol.iterator]:()=>t,next:()=>{let n=r.next(),s=n.value;return n.done===!0||s==null?{done:!0,value:void 0}:{done:!1,value:e(s)}}};return t}var zt=class{map;constructor(e){if(this.map=new Map,e!=null)for(let[t,n]of e.entries())this.map.set(t.toString(),{key:t,value:n})}[Symbol.iterator](){return this.entries()}clear(){this.map.clear()}delete(e){return this.map.delete(e.toString())}entries(){return vi(this.map.entries(),e=>[e[1].key,e[1].value])}forEach(e){this.map.forEach((t,n)=>{e(t.value,t.key,this)})}get(e){return this.map.get(e.toString())?.value}has(e){return this.map.has(e.toString())}set(e,t){this.map.set(e.toString(),{key:e,value:t})}keys(){return vi(this.map.values(),e=>e.key)}values(){return vi(this.map.values(),e=>e.value)}get size(){return this.map.size}};var Ma=64,rt=class{fp;h;seed;constructor(e,t,n,s=2){if(s>Ma)throw new TypeError("Invalid Fingerprint Size");let i=t.hashV(e,n),o=ae(s);for(let a=0;a<o.length;a++)o[a]=i[a];o.length===0&&(o[0]=7),this.fp=o,this.h=t,this.seed=n}hash(){return this.h.hash(this.fp,this.seed)}equals(e){return e?.fp instanceof Uint8Array?me(this.fp,e.fp):!1}};function or(r,e){return Math.floor(Math.random()*(e-r))+r}var ar=class{contents;constructor(e){this.contents=new Array(e).fill(null)}has(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");return this.contents.some(t=>e.equals(t))}add(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");for(let t=0;t<this.contents.length;t++)if(this.contents[t]==null)return this.contents[t]=e,!0;return!0}swap(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");let t=or(0,this.contents.length-1),n=this.contents[t];return this.contents[t]=e,n}remove(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");let t=this.contents.findIndex(n=>e.equals(n));return t>-1?(this.contents[t]=null,!0):!1}};var Pa={32:16777619n,64:1099511628211n,128:309485009821345068724781371n,256:374144419156711147060143317175368453031918731002211n,512:35835915874844867368919076489095108449946327955754392558399825615420669938882575126094039892345713852759n,1024:5016456510113118655434598811035278955030765345404790744303017523831112055108147451509157692220295382716162651878526895249385292291816524375083746691371804094271873160484737966720260389217684476157468082573n},ff={32:2166136261n,64:14695981039346656037n,128:144066263297769815596495629667062367629n,256:100029257958052580907070968620625704837092796014241193945225284501741471925557n,512:9659303129496669498009435400716310466090418745672637896108374329434462657994582932197716438449813051892206539805784495328239340083876191928701583869517785n,1024:14197795064947621068722070641403218320880622795441933960878474914617582723252296732303717722150864096521202355549365628174669108571814760471015076148029755969804077320157692458563003215304957150157403644460363550505412711285966361610267868082893823963790439336411086884584107735010676915n},hf=new globalThis.TextEncoder;function h0(r,e){let t=Pa[e],n=ff[e];for(let s=0;s<r.length;s++)n^=BigInt(r[s]),n=BigInt.asUintN(e,n*t);return n}function d0(r,e,t){if(t.length===0)throw new Error("The `utf8Buffer` option must have a length greater than zero");let n=Pa[e],s=ff[e],i=r;for(;i.length>0;){let o=hf.encodeInto(i,t);i=i.slice(o.read);for(let a=0;a<o.written;a++)s^=BigInt(t[a]),s=BigInt.asUintN(e,s*n)}return s}function Va(r,{size:e=32,utf8Buffer:t}={}){if(!Pa[e])throw new Error("The `size` option must be one of 32, 64, 128, 256, 512, or 1024");if(typeof r=="string"){if(t)return d0(r,e,t);r=hf.encode(r)}return h0(r,e)}var p0=ic(uf(),1);var Sn={hash:r=>Number(Va(r,{size:32})),hashV:(r,e)=>m0(Sn.hash(r,e))};function m0(r){let e=r.toString(16);return e.length%2===1&&(e=`0${e}`),G(e,"base16")}var g0=500,An=class{bucketSize;filterSize;fingerprintSize;buckets;count;hash;seed;constructor(e){this.filterSize=e.filterSize,this.bucketSize=e.bucketSize??4,this.fingerprintSize=e.fingerprintSize??2,this.count=0,this.buckets=[],this.hash=e.hash??Sn,this.seed=e.seed??or(0,Math.pow(2,10))}add(e){typeof e=="string"&&(e=G(e));let t=new rt(e,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(e,this.seed)%this.filterSize,s=(n^t.hash())%this.filterSize;if(this.buckets[n]==null&&(this.buckets[n]=new ar(this.bucketSize)),this.buckets[s]==null&&(this.buckets[s]=new ar(this.bucketSize)),this.buckets[n].add(t)||this.buckets[s].add(t))return this.count++,!0;let i=[n,s],o=i[or(0,i.length-1)];this.buckets[o]==null&&(this.buckets[o]=new ar(this.bucketSize));for(let a=0;a<g0;a++){let c=this.buckets[o].swap(t);if(c!=null&&(o=(o^c.hash())%this.filterSize,this.buckets[o]==null&&(this.buckets[o]=new ar(this.bucketSize)),this.buckets[o].add(c)))return this.count++,!0}return!1}has(e){typeof e=="string"&&(e=G(e));let t=new rt(e,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(e,this.seed)%this.filterSize,s=this.buckets[n]?.has(t)??!1;if(s)return s;let i=(n^t.hash())%this.filterSize;return this.buckets[i]?.has(t)??!1}remove(e){typeof e=="string"&&(e=G(e));let t=new rt(e,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(e,this.seed)%this.filterSize,s=this.buckets[n]?.remove(t)??!1;if(s)return this.count--,s;let i=(n^t.hash())%this.filterSize,o=this.buckets[i]?.remove(t)??!1;return o&&this.count--,o}get reliable(){return Math.floor(100*(this.count/this.filterSize))<=90}},y0={1:.5,2:.84,4:.95,8:.98};function b0(r=.001){return r>.002?2:r>1e-5?4:8}function df(r,e=.001){let t=b0(e),n=y0[t],s=Math.round(r/n),i=Math.min(Math.ceil(Math.log2(1/e)+Math.log2(2*t)),Ma);return{filterSize:s,bucketSize:t,fingerprintSize:i}}var Si=class{filterSize;bucketSize;fingerprintSize;scale;filterSeries;hash;seed;constructor(e){this.bucketSize=e.bucketSize??4,this.filterSize=e.filterSize??(1<<18)/this.bucketSize,this.fingerprintSize=e.fingerprintSize??2,this.scale=e.scale??2,this.hash=e.hash??Sn,this.seed=e.seed??or(0,Math.pow(2,10)),this.filterSeries=[new An({filterSize:this.filterSize,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed})]}add(e){if(typeof e=="string"&&(e=G(e)),this.has(e))return!0;let t=this.filterSeries.find(n=>n.reliable);if(t==null){let n=this.filterSize*Math.pow(this.scale,this.filterSeries.length);t=new An({filterSize:n,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed}),this.filterSeries.push(t)}return t.add(e)}has(e){typeof e=="string"&&(e=G(e));for(let t=0;t<this.filterSeries.length;t++)if(this.filterSeries[t].has(e))return!0;return!1}remove(e){typeof e=="string"&&(e=G(e));for(let t=0;t<this.filterSeries.length;t++)if(this.filterSeries[t].remove(e))return!0;return!1}get count(){return this.filterSeries.reduce((e,t)=>e+t.count,0)}};function Ur(r,e=.001,t){return new Si({...df(r,e),...t??{}})}var Ai=class{filter;constructor(e,t){this.filter=Ur(e,t)}has(e){return this.filter.has(e.toMultihash().bytes)}add(e){this.filter.add(e.toMultihash().bytes)}remove(e){this.filter.remove?.(e.toMultihash().bytes)}};function Ha(r,e=.001){return new Ai(r,e)}var Fa=class extends zt{metric;constructor(e){super();let{name:t,metrics:n}=e;this.metric=n.registerMetric(t),this.updateComponentMetric()}set(e,t){return super.set(e,t),this.updateComponentMetric(),this}delete(e){let t=super.delete(e);return this.updateComponentMetric(),t}clear(){super.clear(),this.updateComponentMetric()}updateComponentMetric(){this.metric.update(this.size)}};function Ka(r){let{name:e,metrics:t}=r,n;return t!=null?n=new Fa({name:e,metrics:t}):n=new zt,n}var qa=class extends Error{type;code;constructor(e,t,n){super(e??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=t??"ABORT_ERR"}};function pf(r,e){let t=new qa(e?.errorMessage,e?.errorCode,e?.errorName),n=new AbortController,s=()=>{n.abort(t)},i=AbortSignal.timeout(r);i.addEventListener("abort",s);let o=n.signal;return o.reset=a=>{i?.removeEventListener("abort",s),i=AbortSignal.timeout(a??r),i.addEventListener("abort",()=>{n.abort(t)})},o.clear=()=>{i?.removeEventListener("abort",s),i=void 0},o}var Bi=class{reservations;maxReservations;applyDefaultLimit;reservationTtl;defaultDurationLimit;defaultDataLimit;log;constructor(e,t={}){this.log=e.logger.forComponent("libp2p:circuit-relay:server:reservation-store"),this.maxReservations=t.maxReservations??qu,this.applyDefaultLimit=t.applyDefaultLimit!==!1,this.reservationTtl=t.reservationTtl??zu,this.defaultDurationLimit=t.defaultDurationLimit??Wu,this.defaultDataLimit=t.defaultDataLimit??Zu,this.reservations=Ka({metrics:e.metrics,name:"libp2p_circuit_relay_server_reservations_total"})}reserve(e,t,n){let s=this.reservations.get(e);if(this.reservations.size>=this.maxReservations&&s==null)return{status:K.RESERVATION_REFUSED};let i=new Date(Date.now()+this.reservationTtl),o;return this.applyDefaultLimit&&(o=n??{data:this.defaultDataLimit,duration:this.defaultDurationLimit}),s!=null?(this.log("refreshing reservation for client %p",e),s.signal.reset(this.reservationTtl)):(this.log("creating new reservation for client %p",e),s={addr:t,expiry:i,limit:o,signal:pf(this.reservationTtl)}),this.reservations.set(e,s),s.signal.addEventListener("abort",()=>{this.reservations.delete(e)}),{status:K.OK,expire:Math.round(i.getTime()/1e3)}}removeReservation(e){this.reservations.delete(e)}get(e){return this.reservations.get(e)}clear(){this.reservations.clear()}};var _i=class r{domain="libp2p-relay-rsvp";codec=new Uint8Array([3,2]);relay;peer;expiration;constructor({relay:e,peer:t,expiration:n}){this.relay=e,this.peer=t,this.expiration=n}marshal(){return Rr.encode({relay:this.relay.toMultihash().bytes,peer:this.peer.toMultihash().bytes,expiration:BigInt(this.expiration)})}equals(e){return!(!(e instanceof r)||!this.peer.equals(e.peer)||!this.relay.equals(e.relay)||this.expiration!==e.expiration)}};var mf=r=>r.protoCodes().includes(ii),w0={maxOutboundStopStreams:mn},za=class extends qe{registrar;peerStore;addressManager;peerId;privateKey;connectionManager;connectionGater;reservationStore;started;hopTimeout;shutdownController;maxInboundHopStreams;maxOutboundHopStreams;maxOutboundStopStreams;log;constructor(e,t={}){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:server"),this.registrar=e.registrar,this.peerStore=e.peerStore,this.addressManager=e.addressManager,this.peerId=e.peerId,this.privateKey=e.privateKey,this.connectionManager=e.connectionManager,this.connectionGater=e.connectionGater,this.started=!1,this.hopTimeout=t?.hopTimeout??ju,this.maxInboundHopStreams=t.maxInboundHopStreams,this.maxOutboundHopStreams=t.maxOutboundHopStreams,this.maxOutboundStopStreams=t.maxOutboundStopStreams??w0.maxOutboundStopStreams,this.reservationStore=new Bi(e,t.reservations),this.shutdownController=new AbortController,Re(1/0,this.shutdownController.signal)}[Symbol.toStringTag]="@libp2p/circuit-relay-v2-server";isStarted(){return this.started}async start(){this.started||(await this.registrar.handle(We,e=>{this.onHop(e).catch(t=>{this.log.error(t)})},{maxInboundStreams:this.maxInboundHopStreams,maxOutboundStreams:this.maxOutboundHopStreams,runOnLimitedConnection:!0}),this.started=!0)}async stop(){this.reservationStore.clear(),this.shutdownController.abort(),await this.registrar.unhandle(We),this.started=!1}async onHop({connection:e,stream:t}){this.log("received circuit v2 hop protocol stream from %p",e.remotePeer);let n={signal:AbortSignal.timeout(this.hopTimeout)},s=qt(t);try{let i=await s.pb(X).read(n);if(i?.type==null)throw new Error("request was invalid, could not read from stream");this.log("received",i.type),await this.handleHopProtocol({connection:e,stream:s,request:i},n)}catch(i){this.log.error("error while handling hop",i),await s.pb(X).write({type:X.Type.STATUS,status:K.MALFORMED_MESSAGE},n),t.abort(i)}}async handleHopProtocol({stream:e,request:t,connection:n},s){switch(this.log("received hop message"),t.type){case X.Type.RESERVE:await this.handleReserve({stream:e,request:t,connection:n},s);break;case X.Type.CONNECT:await this.handleConnect({stream:e,request:t,connection:n},s);break;default:this.log.error("invalid hop request type %s via peer %p",t.type,n.remotePeer),await e.pb(X).write({type:X.Type.STATUS,status:K.UNEXPECTED_MESSAGE})}}async handleReserve({stream:e,connection:t},n){let s=e.pb(X);if(this.log("hop reserve request from %p",t.remotePeer),mf(t.remoteAddr)){this.log.error("relay reservation over circuit connection denied for peer: %p",t.remotePeer),await s.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},n);return}if(await this.connectionGater.denyInboundRelayReservation?.(t.remotePeer)===!0){this.log.error("reservation for %p denied by connection gater",t.remotePeer),await s.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},n);return}let i=this.reservationStore.reserve(t.remotePeer,t.remoteAddr);try{if(i.status!==K.OK){await s.write({type:X.Type.STATUS,status:i.status},n);return}if(i.expire!=null){let o=i.expire*1e3-Date.now();await this.peerStore.merge(t.remotePeer,{tags:{[Ta]:{value:1,ttl:o},[ka]:{value:1,ttl:o}}})}await s.write({type:X.Type.STATUS,status:K.OK,reservation:await this.makeReservation(t.remotePeer,BigInt(i.expire??0)),limit:this.reservationStore.get(t.remotePeer)?.limit},n),this.log("sent confirmation response to %s",t.remotePeer)}catch(o){this.log.error("failed to send confirmation response to %p - %e",t.remotePeer,o),this.reservationStore.removeReservation(t.remotePeer);try{await this.peerStore.merge(t.remotePeer,{tags:{[Ta]:void 0,[ka]:void 0}})}catch(a){this.log.error("failed to untag relay source peer %p - %e",t.remotePeer,a)}}}async makeReservation(e,t){let n=[];for(let i of this.addressManager.getAddresses())i.toString().includes("/p2p-circuit")||n.push(i.bytes);let s=await dn.seal(new _i({peer:e,relay:this.peerId,expiration:t}),this.privateKey);return{addrs:n,expire:t,voucher:{publicKey:Ot(s.publicKey),payloadType:s.payloadType,payload:{peer:e.toMultihash().bytes,relay:this.peerId.toMultihash().bytes,expiration:t},signature:s.signature}}}async handleConnect({stream:e,request:t,connection:n},s){let i=e.pb(X);if(mf(n.remoteAddr)){this.log.error("relay reservation over circuit connection denied for peer: %p",n.remotePeer),await i.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},s);return}this.log("hop connect request from %p",n.remotePeer);let o;try{if(t.peer==null)throw this.log.error("no peer info in hop connect request"),new Error("no peer info in request");t.peer.addrs.forEach(_e),o=fn(ze(t.peer.id))}catch(g){this.log.error("invalid hop connect request via peer %p %s",n.remotePeer,g),await i.write({type:X.Type.STATUS,status:K.MALFORMED_MESSAGE},s);return}let a=this.reservationStore.get(o);if(a==null){this.log.error("hop connect denied for destination peer %p not having a reservation for %p with status %s",o,n.remotePeer,K.NO_RESERVATION),await i.write({type:X.Type.STATUS,status:K.NO_RESERVATION},s);return}if(await this.connectionGater.denyOutboundRelayedConnection?.(n.remotePeer,o)===!0){this.log.error("hop connect for %p to %p denied by connection gater",n.remotePeer,o),await i.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},s);return}let c=this.connectionManager.getConnections(o);if(c.length===0){this.log("hop connect denied for destination peer %p not having a connection for %p as there is no destination connection",o,n.remotePeer),await i.write({type:X.Type.STATUS,status:K.NO_RESERVATION},s);return}let h=c[0],f=await this.stopHop({connection:h,request:{type:Ke.Type.CONNECT,peer:{id:n.remotePeer.toMultihash().bytes,addrs:[]},limit:a?.limit}},s);if(f==null){this.log.error("failed to open stream to destination peer %p",h?.remotePeer),await i.write({type:X.Type.STATUS,status:K.CONNECTION_FAILED},s);return}await i.write({type:X.Type.STATUS,status:K.OK,limit:a?.limit},s);let u=e.unwrap();this.log("connection from %p to %p established - merging streams",n.remotePeer,o),af(u,f,this.shutdownController.signal,a,{log:this.log})}async stopHop({connection:e,request:t},n){this.log("starting circuit relay v2 stop request to %s",e.remotePeer);let s=await e.newStream([sr],{maxOutboundStreams:this.maxOutboundStopStreams,runOnLimitedConnection:!0,...n}),i=qt(s),o=i.pb(Ke);await o.write(t,n);let a;try{a=await o.read(n)}catch{this.log.error("error parsing stop message response from %p",e.remotePeer)}if(a==null){this.log.error("could not read response from %p",e.remotePeer),await s.close(n);return}if(a.status===K.OK)return this.log("stop request to %p was successful",e.remotePeer),i.unwrap();this.log("stop request failed with code %d",a.status),await s.close(n)}get reservations(){return this.reservationStore.reservations}};function gf(r={}){return e=>new za(e,r)}function x0(r){let[e,t]=r[Symbol.asyncIterator]!=null?[r[Symbol.asyncIterator](),Symbol.asyncIterator]:[r[Symbol.iterator](),Symbol.iterator],n=[];return{peek:()=>e.next(),push:s=>{n.push(s)},next:()=>n.length>0?{done:!1,value:n.shift()}:e.next(),[t](){return this}}}var yf=x0;function v0(r){return r[Symbol.asyncIterator]!=null}function bf(r){return r?.then!=null}function E0(r,e){let t=0;if(v0(r))return async function*(){for await(let c of r){let h=e(c,t++);bf(h)&&await h,yield c}}();let n=yf(r),{value:s,done:i}=n.next();if(i===!0)return function*(){}();if(typeof e(s,t++)?.then=="function")return async function*(){yield s;for await(let c of n){let h=e(c,t++);bf(h)&&await h,yield c}}();let a=e;return function*(){yield s;for(let c of n)a(c,t++),yield c}()}var wf=E0;var Ii=class{buffer;mask;top;btm;next;constructor(e){if(!(e>0)||e-1&e)throw new Error("Max size for a FixedFIFO should be a power of two");this.buffer=new Array(e),this.mask=e-1,this.top=0,this.btm=0,this.next=null}push(e){return this.buffer[this.top]!==void 0?!1:(this.buffer[this.top]=e,this.top=this.top+1&this.mask,!0)}shift(){let e=this.buffer[this.btm];if(e!==void 0)return this.buffer[this.btm]=void 0,this.btm=this.btm+1&this.mask,e}isEmpty(){return this.buffer[this.btm]===void 0}},Dr=class{size;hwm;head;tail;constructor(e={}){this.hwm=e.splitLimit??16,this.head=new Ii(this.hwm),this.tail=this.head,this.size=0}calculateSize(e){return e?.byteLength!=null?e.byteLength:1}push(e){if(e?.value!=null&&(this.size+=this.calculateSize(e.value)),!this.head.push(e)){let t=this.head;this.head=t.next=new Ii(2*this.head.buffer.length),this.head.push(e)}}shift(){let e=this.tail.shift();if(e===void 0&&this.tail.next!=null){let t=this.tail.next;this.tail.next=null,this.tail=t,e=this.tail.shift()}return e?.value!=null&&(this.size-=this.calculateSize(e.value)),e}isEmpty(){return this.head.isEmpty()}};var $a=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.code=t??"ABORT_ERR"}};function Or(r={}){return S0(t=>{let n=t.shift();if(n==null)return{done:!0};if(n.error!=null)throw n.error;return{done:n.done===!0,value:n.value}},r)}function S0(r,e){e=e??{};let t=e.onEnd,n=new Dr,s,i,o,a=tt(),c=async()=>{try{return n.isEmpty()?o?{done:!0}:await new Promise((y,b)=>{i=w=>{i=null,n.push(w);try{y(r(n))}catch(p){b(p)}return s}}):r(n)}finally{n.isEmpty()&&queueMicrotask(()=>{a.resolve(),a=tt()})}},h=y=>i!=null?i(y):(n.push(y),s),f=y=>(n=new Dr,i!=null?i({error:y}):(n.push({error:y}),s)),u=y=>{if(o)return s;if(e?.objectMode!==!0&&y?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return h({done:!1,value:y})},g=y=>o?s:(o=!0,y!=null?f(y):h({done:!0})),l=()=>(n=new Dr,g(),{done:!0}),d=y=>(g(y),{done:!0});if(s={[Symbol.asyncIterator](){return this},next:c,return:l,throw:d,push:u,end:g,get readableLength(){return n.size},onEmpty:async y=>{let b=y?.signal;if(b?.throwIfAborted(),n.isEmpty())return;let w,p;b!=null&&(w=new Promise((E,A)=>{p=()=>{A(new $a)},b.addEventListener("abort",p)}));try{await Promise.race([a.promise,w])}finally{p!=null&&b!=null&&b?.removeEventListener("abort",p)}}},t==null)return s;let m=s;return s={[Symbol.asyncIterator](){return this},next(){return m.next()},throw(y){return m.throw(y),t!=null&&(t(y),t=void 0),{done:!0}},return(){return m.return(),t!=null&&(t(),t=void 0),{done:!0}},push:u,end(y){return m.end(y),t!=null&&(t(y),t=void 0),s},get readableLength(){return m.readableLength},onEmpty:y=>m.onEmpty(y)},s}function A0(r){return r[Symbol.asyncIterator]!=null}function B0(...r){let e=[];for(let t of r)A0(t)||e.push(t);return e.length===r.length?function*(){for(let t of e)yield*t}():async function*(){let t=Or({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async n=>{for await(let s of n)t.push(s)})),t.end()}catch(n){t.end(n)}}),yield*t}()}var xf=B0;function vf(r,...e){if(r==null)throw new Error("Empty pipeline");if(Ga(r)){let n=r;r=()=>n.source}else if(Sf(r)||Ef(r)){let n=r;r=()=>n}let t=[r,...e];if(t.length>1&&Ga(t[t.length-1])&&(t[t.length-1]=t[t.length-1].sink),t.length>2)for(let n=1;n<t.length-1;n++)Ga(t[n])&&(t[n]=I0(t[n]));return _0(...t)}var _0=(...r)=>{let e;for(;r.length>0;)e=r.shift()(e);return e},Ef=r=>r?.[Symbol.asyncIterator]!=null,Sf=r=>r?.[Symbol.iterator]!=null,Ga=r=>r==null?!1:r.sink!=null&&r.source!=null,I0=r=>e=>{let t=r.sink(e);if(t?.then!=null){let n=Or({objectMode:!0});t.then(()=>{n.end()},o=>{n.end(o)});let s,i=r.source;if(Ef(i))s=async function*(){yield*i,n.end()};else if(Sf(i))s=function*(){yield*i,n.end()};else throw new Error("Unknown duplex source type - must be Iterable or AsyncIterable");return xf(n,s())}return r.source};function Wa(r){let{stream:e,remoteAddr:t,logger:n,onDataRead:s,onDataWrite:i}=r,o=n.forComponent("libp2p:stream:converter"),a=!1,c=!1,h=e.close.bind(e);e.close=async d=>{await h(d),l(!0)};let f=e.abort.bind(e);e.abort=d=>{f(d),l(!0)};let u=e.sink.bind(e);e.sink=async d=>{try{await u(vf(d,m=>wf(m,y=>i?.(y))))}catch(m){m.type!=="aborted"&&o.error("%s error in sink",t,m)}finally{c=!0,l()}};let g={log:o,sink:e.sink,source:async function*(){try{for await(let d of e.source)s?.(d),yield d}finally{a=!0,l()}}(),remoteAddr:t,timeline:{open:Date.now(),close:void 0},close:e.close,abort:e.abort};function l(d){d===!0&&(a=!0,c=!0),a&&c&&g.timeline.close==null&&(g.timeline.close=Date.now())}return g}var $t=class extends Event{type;detail;constructor(e,t){super(e),this.type=e,this.detail=t}};var Za=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=t??"ABORT_ERR"}};async function Ti(r,e,t,n){let s=new Za(n?.errorMessage,n?.errorCode);return t?.aborted===!0?Promise.reject(s):new Promise((i,o)=>{function a(){t?.removeEventListener("abort",f),r.removeEventListener(e,c),n?.errorEvent!=null&&r.removeEventListener(n.errorEvent,h)}let c=u=>{try{if(n?.filter?.(u)===!1)return}catch(g){a(),o(g);return}a(),i(u)},h=u=>{a(),o(u.detail)},f=()=>{a(),o(s)};t?.addEventListener("abort",f),r.addEventListener(e,c),n?.errorEvent!=null&&r.addEventListener(n.errorEvent,h)})}var ki=class extends Error{static name="QueueFullError";constructor(e="The queue was full"){super(e),this.name="QueueFullError"}};var Ci=class{deferred;signal;constructor(e){this.signal=e,this.deferred=tt(),this.onAbort=this.onAbort.bind(this),this.signal?.addEventListener("abort",this.onAbort)}onAbort(){this.deferred.reject(this.signal?.reason??new ft)}cleanup(){this.signal?.removeEventListener("abort",this.onAbort)}};function T0(){return`${parseInt(String(Math.random()*1e9),10).toString()}${Date.now()}`}var Ni=class{id;fn;options;recipients;status;timeline;controller;constructor(e,t){this.id=T0(),this.status="queued",this.fn=e,this.options=t,this.recipients=[],this.timeline={created:Date.now()},this.controller=new AbortController,Re(1/0,this.controller.signal),this.onAbort=this.onAbort.bind(this)}abort(e){this.controller.abort(e)}onAbort(){this.recipients.reduce((t,n)=>t&&n.signal?.aborted===!0,!0)&&(this.controller.abort(new ft),this.cleanup())}async join(e={}){let t=new Ci(e.signal);return this.recipients.push(t),e.signal?.addEventListener("abort",this.onAbort),t.deferred.promise}async run(){this.status="running",this.timeline.started=Date.now();try{this.controller.signal.throwIfAborted();let e=await ei(this.fn({...this.options??{},signal:this.controller.signal}),this.controller.signal);this.recipients.forEach(t=>{t.deferred.resolve(e)}),this.status="complete"}catch(e){this.recipients.forEach(t=>{t.deferred.reject(e)}),this.status="errored"}finally{this.timeline.finished=Date.now(),this.cleanup()}}cleanup(){this.recipients.forEach(e=>{e.cleanup(),e.signal?.removeEventListener("abort",this.onAbort)})}};var Ri=class extends qe{concurrency;maxSize;queue;pending;sort;constructor(e={}){super(),this.concurrency=e.concurrency??Number.POSITIVE_INFINITY,this.maxSize=e.maxSize??Number.POSITIVE_INFINITY,this.pending=0,e.metricName!=null&&e.metrics?.registerMetricGroup(e.metricName,{calculate:()=>({size:this.queue.length,running:this.pending,queued:this.queue.length-this.pending})}),this.sort=e.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 e;for(let t of this.queue)if(t.status==="queued"){e=t;break}return e==null?!1:(this.safeDispatchEvent("active"),this.pending++,e.run().finally(()=>{for(let t=0;t<this.queue.length;t++)if(this.queue[t]===e){this.queue.splice(t,1);break}this.pending--,this.tryToStartAnother(),this.safeDispatchEvent("next")}),!0)}return!1}enqueue(e){this.queue.push(e),this.sort!=null&&this.queue.sort(this.sort)}async add(e,t){if(t?.signal?.throwIfAborted(),this.size===this.maxSize)throw new ki;let n=new Ni(e,t);return this.enqueue(n),this.safeDispatchEvent("add"),this.tryToStartAnother(),n.join(t).then(s=>(this.safeDispatchEvent("completed",{detail:s}),this.safeDispatchEvent("success",{detail:{job:n,result:s}}),s)).catch(s=>{if(n.status==="queued"){for(let i=0;i<this.queue.length;i++)if(this.queue[i]===n){this.queue.splice(i,1);break}}throw this.safeDispatchEvent("error",{detail:s}),this.safeDispatchEvent("failure",{detail:{job:n,error:s}}),s})}clear(){this.queue.splice(0,this.queue.length)}abort(){this.queue.forEach(e=>{e.abort(new ft)}),this.clear()}async onEmpty(e){this.size!==0&&await Ti(this,"empty",e?.signal)}async onSizeLessThan(e,t){this.size<e||await Ti(this,"next",t?.signal,{filter:()=>this.size<e})}async onIdle(e){this.pending===0&&this.size===0||await Ti(this,"idle",e?.signal)}get size(){return this.queue.length}get queued(){return this.queue.length-this.pending}get running(){return this.pending}async*toGenerator(e){e?.signal?.throwIfAborted();let t=Or({objectMode:!0}),n=c=>{c!=null?this.abort():this.clear(),t.end(c)},s=c=>{c.detail!=null&&t.push(c.detail)},i=c=>{n(c.detail)},o=()=>{n()},a=()=>{n(new ft("Queue aborted"))};this.addEventListener("completed",s),this.addEventListener("error",i),this.addEventListener("idle",o),e?.signal?.addEventListener("abort",a);try{yield*t}finally{this.removeEventListener("completed",s),this.removeEventListener("error",i),this.removeEventListener("idle",o),e?.signal?.removeEventListener("abort",a),n()}}};var Mr=class extends Ri{has(e){return this.find(e)!=null}find(e){return this.queue.find(t=>e.equals(t.options.peerId))}};var Li=class extends qe{peerStore;registrar;connectionManager;randomWalk;started;running;topologyId;log;discoveryController;filter;queue;constructor(e,t={}){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:discover-relays"),this.started=!1,this.running=!1,this.peerStore=e.peerStore,this.registrar=e.registrar,this.connectionManager=e.connectionManager,this.randomWalk=e.randomWalk,this.filter=t.filter,this.discoveryController=new AbortController,Re(1/0,this.discoveryController.signal)}isStarted(){return this.started}async start(){this.topologyId=await this.registrar.register(We,{filter:this.filter,onConnect:e=>{this.log.trace("discovered relay %p queue (length: %d, active %d)",e,this.queue?.size,this.queue?.running),this.safeDispatchEvent("relay:discover",{detail:e})}}),this.started=!0}stop(){this.topologyId!=null&&this.registrar.unregister(this.topologyId),this.discoveryController?.abort(),this.started=!1}startDiscovery(){this.running||(this.log("start discovery"),this.running=!0,this.discoveryController=new AbortController,Re(1/0,this.discoveryController.signal),Promise.resolve().then(async()=>{this.log("searching peer store for relays");let e=await this.peerStore.all({filters:[n=>n.protocols.includes(We)],orders:[()=>Math.random()<.5?1:-1,(n,s)=>{let i=Af(n),o=Af(s);return i>o?-1:o>i?1:0}]});for(let n of e)this.log.trace("found relay peer %p in peer store",n.id),this.safeDispatchEvent("relay:discover",{detail:n.id});this.log("found %d relay peers in peer store",e.length);let t=this.queue=new Mr({concurrency:5});this.log("start random walk");for await(let n of this.randomWalk.walk({signal:this.discoveryController.signal})){if(this.log.trace("found random peer %p",n.id),t.has(n.id)){this.log.trace("random peer %p was already in queue",n.id);continue}if(this.connectionManager.getConnections(n.id)?.length>0){this.log.trace("random peer %p was already connected",n.id);continue}if(!await this.connectionManager.isDialable(n.multiaddrs)){this.log.trace("random peer %p was not dialable",n.id,n.multiaddrs.map(s=>s.toString()));continue}t.queued>10&&(this.log.trace("wait for space in queue for %p",n.id),await t.onSizeLessThan(10,{signal:this.discoveryController.signal})),this.log("adding random peer %p to dial queue (length: %d, active %d)",n.id,t.size,t.running),t.add(async()=>{let s=mi([this.discoveryController.signal,AbortSignal.timeout(5e3)]);Re(1/0,s);try{await this.connectionManager.openConnection(n.id,{signal:s})}finally{s.clear()}},{peerId:n.id,signal:this.discoveryController.signal}).catch(s=>{this.log.error("error opening connection to random peer %p",n.id,s)})}this.log("stop random walk"),await t.onIdle()}).catch(e=>{this.discoveryController.signal.aborted||this.log.error("failed when finding relays on the network",e)}))}stopDiscovery(){this.log("stop discovery"),this.running=!1,this.discoveryController?.abort()}};function Af(r){let e=r.metadata.get("last-dial-success");return e==null?0:new Date(ce(e)).getTime()}var ja=class extends qe{peerId;connectionManager;addressManager;reservationStore;listeningAddrs;log;listenTimeout;reservationId;relay;constructor(e,t={}){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:transport:listener"),this.peerId=e.peerId,this.connectionManager=e.connectionManager,this.addressManager=e.addressManager,this.reservationStore=e.reservationStore,this.listeningAddrs=[],this.listenTimeout=t.listenTimeout??oi,this.reservationStore.addEventListener("relay:removed",this._onRemoveRelayPeer),this.reservationStore.addEventListener("relay:created-reservation",this._onAddRelayPeer)}_onRemoveRelayPeer=e=>{this.log("relay removed %p our relay %p",e.detail.relay,this.relay,this.relay?.equals(e.detail.relay)),this.relay?.equals(e.detail.relay)===!0&&(this.log("relay peer removed %p",e.detail.relay),this.listeningAddrs.forEach(t=>{this.addressManager.removeObservedAddr(t)}),this.listeningAddrs=[],this.safeDispatchEvent("listening"))};_onAddRelayPeer=e=>{let{details:t}=e.detail;t.type!=="configured"&&t.id===this.reservationId&&this.addedRelay(e.detail)};async listen(e){if(this.log("listen on %a",e),xi.exactMatch(e))this.reservationId=this.reservationStore.reserveRelay();else if(wi.exactMatch(e)){let t=AbortSignal.timeout(this.listenTimeout);Re(1/0,t);let n=e.decapsulate("/p2p-circuit"),s=await this.connectionManager.openConnection(n,{signal:t});if(!this.reservationStore.hasReservation(s.remotePeer)){this.log("making reservation on peer %p",s.remotePeer);let i=await this.reservationStore.addRelay(s.remotePeer,"configured");this.addedRelay(i)}}else throw new Gt(`Could not listen on p2p-circuit address "${e}"`)}getAddrs(){return[...this.listeningAddrs.values()].flat()}async close(){this.reservationStore.cancelReservations(),this.listeningAddrs=[],this.reservationStore.removeEventListener("relay:removed",this._onRemoveRelayPeer),queueMicrotask(()=>{this.safeDispatchEvent("close")})}addedRelay(e){this.log("relay peer added %p",e.relay),this.relay=e.relay,this.listeningAddrs=e.details.reservation.addrs.map(t=>_e(t).encapsulate("/p2p-circuit")),this.listeningAddrs.forEach(t=>{this.addressManager.confirmObservedAddr(t,{type:"transport"})}),queueMicrotask(()=>{this.safeDispatchEvent("listening")})}};function Bf(r){return new ja(r)}var _f="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";var If=(r=21)=>{let e="",t=crypto.getRandomValues(new Uint8Array(r|=0));for(;r--;)e+=_f[t[r]&63];return e};var k0=60*1e3*10,C0=60*1e3*5,N0=30*1e3,Ui=class extends qe{peerId;connectionManager;peerStore;events;reserveQueue;reservations;pendingReservations;maxReservationQueueLength;reservationCompletionTimeout;started;log;relayFilter;constructor(e,t){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:transport:reservation-store"),this.peerId=e.peerId,this.connectionManager=e.connectionManager,this.peerStore=e.peerStore,this.events=e.events,this.reservations=new zt,this.pendingReservations=[],this.maxReservationQueueLength=t?.maxReservationQueueLength??Gu,this.reservationCompletionTimeout=t?.reservationCompletionTimeout??oi,this.started=!1,this.relayFilter=Ur(100),this.reserveQueue=new Mr({concurrency:t?.reservationConcurrency??$u,metricName:"libp2p_relay_reservation_queue",metrics:e.metrics}),this.events.addEventListener("connection:close",n=>{[...this.reservations.values()].find(i=>i.connection===n.detail.id)!=null&&this.#t(n.detail.remotePeer).catch(i=>{this.log("could not remove relay %p - %e",n.detail,i)})})}isStarted(){return this.started}start(){this.started=!0}afterStart(){Promise.resolve().then(async()=>{let e=await this.peerStore.all({filters:[t=>t.tags.has(pn)]});this.log("removing tag from %d old relays",e.length),await Promise.all(e.map(async t=>{await this.peerStore.merge(t.id,{tags:{[pn]:void 0}})})),this.log("redialing %d old relays",e.length),await Promise.all(e.map(async t=>this.addRelay(t.id,"discovered"))),this.#r()}).catch(e=>{this.log.error(e)})}stop(){this.reserveQueue.clear(),this.reservations.forEach(({timeout:e})=>{clearTimeout(e)}),this.reservations.clear(),this.started=!1}reserveRelay(){let e=If();return this.pendingReservations.push(e),this.#r(),e}async addRelay(e,t){if(this.peerId.equals(e))throw this.log.trace("not trying to use self as relay"),new Gt("Cannot use self as relay");if(this.reserveQueue.size>this.maxReservationQueueLength)throw new bi("The reservation queue is full");let n=this.reserveQueue.find(e);if(n!=null)return this.log.trace("potential relay peer %p is already in the reservation queue",e),n.join();if(this.relayFilter.has(e.toMultihash().bytes))throw new Gt("The relay was previously invalid");return this.log.trace("try to reserve relay slot with %p",e),this.reserveQueue.add(async()=>{let s=Date.now();try{let i=this.reservations.get(e);if(i!=null){let d=this.connectionManager.getConnections(e),m=!1;if(d.length===0&&this.log("already have relay reservation with %p but we are no longer connected",e),d.map(y=>y.id).includes(i.connection)&&(this.log("already have relay reservation with %p and the original connection is still open",e),m=!0),m&&Oa(i.reservation.expire)>k0)return this.log("already have relay reservation with %p but we are still connected and it does not expire soon",e),{relay:e,details:i};await this.#t(e)}if(t==="discovered"&&this.pendingReservations.length===0)throw new xn("Not making reservation on discovered relay because we do not need any more relays");let o=AbortSignal.timeout(this.reservationCompletionTimeout);Re(1/0,o);let a=await this.connectionManager.openConnection(e,{signal:o});if(pi.matches(a.remoteAddr))throw new yi("not creating reservation over relayed connection");let c=await this.#e(a,{signal:o}),h=Oa(c.expire);this.log("created reservation on relay peer %p, expiry date is %s",e,new Date(Date.now()+h).toString());let f=Math.min(Math.max(h-C0,N0),Math.pow(2,31)-1),u=setTimeout(()=>{this.log("refresh reservation to relay %p",e),this.addRelay(e,t).catch(async d=>{this.log.error("could not refresh reservation to relay %p - %e",e,d),await this.#t(e)}).catch(d=>{this.log.error("could not remove expired reservation to relay %p - %e",e,d)})},f),g;if(t==="discovered"){let d=this.pendingReservations.pop();if(d==null)throw new xn("Made reservation on relay but did not need any more discovered relays");g={timeout:u,reservation:c,type:t,connection:a.id,id:d}}else g={timeout:u,reservation:c,type:t,connection:a.id};this.reservations.set(e,g),await this.peerStore.merge(e,{tags:{[pn]:{value:1,ttl:h}}}),this.#r();let l={relay:e,details:g};return this.safeDispatchEvent("relay:created-reservation",{detail:l}),l}catch(i){throw t==="discovered"&&i.name==="HadEnoughRelaysError"||this.log.error("could not reserve slot on %p after %dms - %e",e,Date.now()-s,i),(i.name==="DialError"||i.name==="UnsupportedProtocolError")&&this.relayFilter.add(e.toMultihash().bytes),this.#t(e).catch(o=>{this.log.error("could not remove reservation on %p after reserving slot failed - %e",e,o)}),i}},{peerId:e})}hasReservation(e){return this.reservations.has(e)}getReservation(e){return this.reservations.get(e)?.reservation}reservationCount(e){return e==null?this.reservations.size:[...this.reservations.values()].reduce((t,n)=>(n.type===e&&t++,t),0)}cancelReservations(){[...this.reservations.values()].forEach(e=>{clearTimeout(e.timeout)}),this.reservations.clear()}async#e(e,t){t.signal?.throwIfAborted(),this.log("requesting reservation from %p",e.remotePeer);let n=await e.newStream(We,t),i=qt(n).pb(X);this.log.trace("send RESERVE to %p",e.remotePeer),await i.write({type:X.Type.RESERVE},t);let o;try{this.log.trace("reading response from %p",e.remotePeer),o=await i.read(t)}catch(c){throw n.abort(c),c}finally{n.status!=="closed"&&await n.close(t)}if(this.log.trace("read response %o",o),o.status===K.OK&&o.reservation!=null){let c=new Set;c.add(e.remoteAddr.toString());for(let h of o.reservation.addrs){let f=_e(h);f.getPeerId()==null&&(f=f.encapsulate(`/p2p/${e.remotePeer}`)),f=_e(f.toString().replace(`/p2p/${e.remotePeer}/p2p/${e.remotePeer}`,`/p2p/${e.remotePeer}`)),c.add(f.toString())}return o.reservation.addrs=[...c].map(h=>_e(h).bytes),o.reservation}let a=`reservation failed with status ${o.status??"undefined"}`;throw this.log.error(a),new Error(a)}async#t(e){let t=this.reservations.get(e);t!=null&&(this.log("removing relay reservation with %p from local store",e),clearTimeout(t.timeout),this.reservations.delete(e),t.type==="discovered"&&this.pendingReservations.push(t.id),await this.peerStore.merge(e,{tags:{[pn]:void 0}}),this.safeDispatchEvent("relay:removed",{detail:{relay:e,details:t}}),this.#r())}#r(){if(this.pendingReservations.length===0){this.log.trace("have discovered enough relays"),this.reserveQueue.clear(),this.safeDispatchEvent("relay:found-enough-relays");return}this.relayFilter=Ur(100),this.log("not discovered enough relays %d/%d",this.reservations.size,this.pendingReservations.length),this.safeDispatchEvent("relay:not-enough-relays")}};var R0=r=>{if(r.peer==null)return!1;try{r.peer.addrs.forEach(_e)}catch{return!1}return!0},Ya={maxInboundStopStreams:mn,maxOutboundStopStreams:mn,stopTimeout:3e4},Di=class{discovery;registrar;peerStore;connectionManager;transportManager;peerId;upgrader;addressManager;connectionGater;reservationStore;logger;maxInboundStopStreams;maxOutboundStopStreams;stopTimeout;started;log;constructor(e,t){this.log=e.logger.forComponent("libp2p:circuit-relay:transport"),this.registrar=e.registrar,this.peerStore=e.peerStore,this.connectionManager=e.connectionManager,this.transportManager=e.transportManager,this.logger=e.logger,this.peerId=e.peerId,this.upgrader=e.upgrader,this.addressManager=e.addressManager,this.connectionGater=e.connectionGater,this.maxInboundStopStreams=t.maxInboundStopStreams??Ya.maxInboundStopStreams,this.maxOutboundStopStreams=t.maxOutboundStopStreams??Ya.maxOutboundStopStreams,this.stopTimeout=t.stopTimeout??Ya.stopTimeout,this.discovery=new Li(e,{filter:t.discoveryFilter??Ha(Yu,Xu)}),this.discovery.addEventListener("relay:discover",n=>{this.reservationStore.addRelay(n.detail,"discovered").catch(s=>{s.name!=="HadEnoughRelaysError"&&s.name!=="RelayQueueFullError"&&this.log.error("could not add discovered relay %p",n.detail,s)})}),this.reservationStore=new Ui(e,t),this.reservationStore.addEventListener("relay:not-enough-relays",()=>{this.discovery?.startDiscovery()}),this.reservationStore.addEventListener("relay:found-enough-relays",()=>{this.discovery?.stopDiscovery()}),this.started=!1}[Symbol.toStringTag]="@libp2p/circuit-relay-v2-transport";[fc]=["@libp2p/transport","@libp2p/circuit-relay-v2-transport"];get[hc](){return this.discovery!=null?["@libp2p/identify"]:[]}[ac]=!0;isStarted(){return this.started}async start(){await this.registrar.handle(sr,e=>{this.onStop(e).catch(t=>{this.log.error("error while handling STOP protocol",t),e.stream.abort(t)})},{maxInboundStreams:this.maxInboundStopStreams,maxOutboundStreams:this.maxOutboundStopStreams,runOnLimitedConnection:!0}),await lc(this.discovery,this.reservationStore),this.started=!0}async stop(){await uc(this.discovery,this.reservationStore),await this.registrar.unhandle(sr),this.started=!1}async dial(e,t){if(e.protoCodes().filter(l=>l===ii).length!==1){let l="Invalid circuit relay address";throw this.log.error(l,e),new Vr(l)}let n=e.toString().split("/p2p-circuit"),s=_e(n[0]),i=_e(n[n.length-1]),o=s.getPeerId(),a=i.getPeerId();if(o==null||a==null){let l=`ircuit relay dial to ${e.toString()} failed as address did not have both relay and destination PeerIDs`;throw this.log.error(`c${l}`),new Vr(`C${l}`)}let c=ca(o),h=ca(a),u=this.connectionManager.getConnections(c)[0];u==null?(await this.peerStore.merge(c,{multiaddrs:[s]}),t.onProgress?.(new $t("circuit-relay:open-connection")),u=await this.connectionManager.openConnection(c,t)):t.onProgress?.(new $t("circuit-relay:reuse-connection"));let g;try{t.onProgress?.(new $t("circuit-relay:open-hop-stream")),g=await u.newStream(We,t);let l=qt(g),d=l.pb(X);t.onProgress?.(new $t("circuit-relay:write-connect-message")),await d.write({type:X.Type.CONNECT,peer:{id:h.toMultihash().bytes,addrs:[_e(i).bytes]}},t),t.onProgress?.(new $t("circuit-relay:read-connect-response"));let m=await d.read(t);if(m.status!==K.OK)throw new In(`failed to connect via relay with status ${m?.status?.toString()??"undefined"}`);let y=new vn(m.limit),b=Wa({stream:l.unwrap(),remoteAddr:e,localAddr:s.encapsulate(`/p2p-circuit/p2p/${this.peerId.toString()}`),logger:this.logger,onDataRead:y.onData,onDataWrite:y.onData});return this.log("new outbound relayed connection %a",b.remoteAddr),await this.upgrader.upgradeOutbound(b,{...t,limits:y.getLimits()})}catch(l){throw this.log.error("circuit relay dial to destination %p via relay %p failed",h,c,l),g?.abort(l),l}}createListener(e){return Bf({peerId:this.peerId,connectionManager:this.connectionManager,addressManager:this.addressManager,reservationStore:this.reservationStore,logger:this.logger})}listenFilter(e){return e=Array.isArray(e)?e:[e],e.filter(t=>wi.exactMatch(t)||xi.exactMatch(t))}dialFilter(e){return e=Array.isArray(e)?e:[e],e.filter(t=>pi.exactMatch(t))}async onStop({connection:e,stream:t}){if(!this.reservationStore.hasReservation(e.remotePeer))try{this.log("dialed via relay we did not have a reservation on, start listening on that relay address"),await this.transportManager.listen([e.remoteAddr.encapsulate("/p2p-circuit")])}catch(u){this.log.error("failed to listen on a relay peer we were dialed via but did not have a reservation on",u)}let n=AbortSignal.timeout(this.stopTimeout),s=qt(t).pb(Ke),i=await s.read({signal:n});if(this.log("new circuit relay v2 stop stream from %p with type %s",e.remotePeer,i.type),i?.type===void 0){this.log.error("type was missing from circuit v2 stop protocol request from %s",e.remotePeer),await s.write({type:Ke.Type.STATUS,status:K.MALFORMED_MESSAGE},{signal:n}),await t.close();return}if(i.type!==Ke.Type.CONNECT){this.log.error("invalid stop connect request via peer %p",e.remotePeer),await s.write({type:Ke.Type.STATUS,status:K.UNEXPECTED_MESSAGE},{signal:n}),await t.close();return}if(!R0(i)){this.log.error("invalid stop connect request via peer %p",e.remotePeer),await s.write({type:Ke.Type.STATUS,status:K.MALFORMED_MESSAGE},{signal:n}),await t.close();return}let o=fn(ze(i.peer.id));if(await this.connectionGater.denyInboundRelayedConnection?.(e.remotePeer,o)===!0){this.log.error("connection gater denied inbound relayed connection from %p",e.remotePeer),await s.write({type:Ke.Type.STATUS,status:K.PERMISSION_DENIED},{signal:n}),await t.close();return}this.log.trace("sending success response to %p",e.remotePeer),await s.write({type:Ke.Type.STATUS,status:K.OK},{signal:n});let a=new vn(i.limit),c=e.remoteAddr.encapsulate(`/p2p-circuit/p2p/${o.toString()}`),h=this.addressManager.getAddresses()[0],f=Wa({stream:s.unwrap().unwrap(),remoteAddr:c,localAddr:h,logger:this.logger,onDataRead:a.onData,onDataWrite:a.onData});this.log("new inbound relayed connection %a",f.remoteAddr),await this.upgrader.upgradeInbound(f,{limits:a.getLimits()}),this.log("%s connection %a upgraded","inbound",f.remoteAddr)}};function Tf(r={}){return e=>new Di(e,r)}return Kf(L0);})();
6
+ `)}`:`${t} :`}};vl=Ft;k.Constructed=vl;Ft.NAME="CONSTRUCTED";var ni=class extends Be{fromBER(e,t,n){return t}toBER(e){return Qe}};ni.override="EndOfContentValueBlock";var El,ii=class extends be{constructor(e={}){super(e,ni),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};El=ii;k.EndOfContent=El;ii.NAME=en;var Sl,Sr=class extends be{constructor(e={}){super(e,Be),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(e,t,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,t+n>e.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):t+n}toBER(e,t){let n=new ArrayBuffer(2);if(!e){let i=new Uint8Array(n);i[0]=5,i[1]=0}return t&&t.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};Sl=Sr;k.Null=Sl;Sr.NAME="NULL";var si=class extends Bt(Be){constructor({value:e,...t}={}){super(t),t.valueHex?this.valueHexView=z.BufferSourceConverter.toUint8Array(t.valueHex):this.valueHexView=new Uint8Array(1),e&&(this.value=e)}get value(){for(let e of this.valueHexView)if(e>0)return!0;return!1}set value(e){this.valueHexView[0]=e?255:0}fromBER(e,t,n){let i=z.BufferSourceConverter.toUint8Array(e);return At(this,i,t,n)?(this.valueHexView=i.subarray(t,t+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,jo.call(this),this.blockLength=n,t+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};si.NAME="BooleanValueBlock";var Al,oi=class extends be{constructor(e={}){super(e,si),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}};Al=oi;k.Boolean=Al;oi.NAME="BOOLEAN";var ai=class extends Bt(at){constructor({isConstructed:e=!1,...t}={}){super(t),this.isConstructed=e}fromBER(e,t,n){let i=0;if(this.isConstructed){if(this.isHexOnly=!1,i=at.prototype.fromBER.call(this,e,t,n),i===-1)return i;for(let s=0;s<this.value.length;s++){let o=this.value[s].constructor.NAME;if(o===en){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(o!==yl)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,i=super.fromBER(e,t,n),this.blockLength=n;return i}toBER(e,t){return this.isConstructed?at.prototype.toBER.call(this,e,t):e?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};ai.NAME="OctetStringValueBlock";var Bl,ci=class r extends be{constructor({idBlock:e={},lenBlock:t={},...n}={}){var i,s;(i=n.isConstructed)!==null&&i!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},ai),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(e,t,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),t;if(!this.valueBlock.isConstructed){let s=(e instanceof ArrayBuffer?new Uint8Array(e):e).subarray(t,t+n);try{if(s.byteLength){let o=Oi(s,0,s.byteLength);o.offset!==-1&&o.offset===n&&(this.valueBlock.value=[o.result])}}catch{}}return super.fromBER(e,t,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?Ft.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 e=[];for(let t of this.valueBlock.value)t instanceof r&&e.push(t.valueBlock.valueHexView);return z.BufferSourceConverter.concat(e)}};Bl=ci;k.OctetString=Bl;ci.NAME=yl;var li=class extends Bt(at){constructor({unusedBits:e=0,isConstructed:t=!1,...n}={}){super(n),this.unusedBits=e,this.isConstructed=t,this.blockLength=this.valueHexView.byteLength}fromBER(e,t,n){if(!n)return t;let i=-1;if(this.isConstructed){if(i=at.prototype.fromBER.call(this,e,t,n),i===-1)return i;for(let a of this.value){let c=a.constructor.NAME;if(c===en){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==bl)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let h=a.valueBlock;if(this.unusedBits>0&&h.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=h.unusedBits}return i}let s=z.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let o=s.subarray(t,t+n);if(this.unusedBits=o[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=o.subarray(1);try{if(a.byteLength){let c=Oi(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=o.subarray(1),this.blockLength=o.length,t+n}toBER(e,t){if(this.isConstructed)return at.prototype.toBER.call(this,e,t);if(e)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return Qe;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}}};li.NAME="BitStringValueBlock";var _l,Ar=class extends be{constructor({idBlock:e={},lenBlock:t={},...n}={}){var i,s;(i=n.isConstructed)!==null&&i!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},li),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(e,t,n){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(e,t,n)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return Ft.prototype.onAsciiEncoding.call(this);{let e=[],t=this.valueBlock.valueHexView;for(let i of t)e.push(i.toString(2).padStart(8,"0"));let n=e.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};_l=Ar;k.BitString=_l;Ar.NAME=bl;var Il;function vp(r,e){let t=new Uint8Array([0]),n=new Uint8Array(r),i=new Uint8Array(e),s=n.slice(0),o=s.length-1,a=i.slice(0),c=a.length-1,h=0,f=c<o?o:c,u=0;for(let g=f;g>=0;g--,u++){switch(!0){case u<a.length:h=s[o-u]+a[c-u]+t[0];break;default:h=s[o-u]+t[0]}switch(t[0]=h/10,!0){case u>=s.length:s=Yn(new Uint8Array([h%10]),s);break;default:s[o-u]=h%10}}return t[0]>0&&(s=Yn(t,s)),s}function gl(r){if(r>=Jr.length)for(let e=Jr.length;e<=r;e++){let t=new Uint8Array([0]),n=Jr[e-1].slice(0);for(let i=n.length-1;i>=0;i--){let s=new Uint8Array([(n[i]<<1)+t[0]]);t[0]=s[0]/10,n[i]=s[0]%10}t[0]>0&&(n=Yn(t,n)),Jr.push(n)}return Jr[r]}function Ep(r,e){let t=0,n=new Uint8Array(r),i=new Uint8Array(e),s=n.slice(0),o=s.length-1,a=i.slice(0),c=a.length-1,h,f=0;for(let u=c;u>=0;u--,f++)switch(h=s[o-f]-a[c-f]-t,!0){case h<0:t=1,s[o-f]=h+10;break;default:t=0,s[o-f]=h}if(t>0)for(let u=o-c+1;u>=0;u--,f++)if(h=s[o-f]-t,h<0)t=1,s[o-f]=h+10;else{t=0,s[o-f]=h;break}return s.slice()}var tn=class extends Bt(Be){constructor({value:e,...t}={}){super(t),this._valueDec=0,t.valueHex&&this.setValueHex(),e!==void 0&&(this.valueDec=e)}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=jo.call(this)))}set valueDec(e){this._valueDec=e,this.isHexOnly=!1,this.valueHexView=new Uint8Array(dl(e))}get valueDec(){return this._valueDec}fromDER(e,t,n,i=0){let s=this.fromBER(e,t,n);if(s===-1)return s;let o=this.valueHexView;return o[0]===0&&o[1]&128?this.valueHexView=o.subarray(1):i!==0&&o.length<i&&(i-o.length>1&&(i=o.length+1),this.valueHexView=o.subarray(i-o.length)),s}toDER(e=!1){let t=this.valueHexView;switch(!0){case(t[0]&128)!==0:{let n=new Uint8Array(this.valueHexView.length+1);n[0]=0,n.set(t,1),this.valueHexView=n}break;case(t[0]===0&&(t[1]&128)===0):this.valueHexView=this.valueHexView.subarray(1);break}return this.toBER(e)}fromBER(e,t,n){let i=super.fromBER(e,t,n);return i===-1||this.setValueHex(),i}toBER(e){return e?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){let e=this.valueHexView.length*8-1,t=new Uint8Array(this.valueHexView.length*8/3),n=0,i,s=this.valueHexView,o="",a=!1;for(let c=s.byteLength-1;c>=0;c--){i=s[c];for(let h=0;h<8;h++){if((i&1)===1)switch(n){case e:t=Ep(gl(n),t),o="-";break;default:t=vp(t,gl(n))}n++,i>>=1}}for(let c=0;c<t.length;c++)t[c]&&(a=!0),a&&(o+=ml.charAt(t[c]));return a===!1&&(o+=ml.charAt(0)),o}};Il=tn;tn.NAME="IntegerValueBlock";Object.defineProperty(Il.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var Tl,we=class r extends be{constructor(e={}){super(e,tn),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return Xn(),BigInt(this.valueBlock.toString())}static fromBigInt(e){Xn();let t=BigInt(e),n=new Qr,i=t.toString(16).replace(/^-/,""),s=new Uint8Array(z.Convert.FromHex(i));if(t<0){let a=new Uint8Array(s.length+(s[0]&128?1:0));a[0]|=128;let h=BigInt(`0x${z.Convert.ToHex(a)}`)+t,f=z.BufferSourceConverter.toUint8Array(z.Convert.FromHex(h.toString(16)));f[0]|=128,n.write(f)}else s[0]&128&&n.write(new Uint8Array([0])),n.write(s);return new r({valueHex:n.final()})}convertToDER(){let e=new r({valueHex:this.valueBlock.valueHexView});return e.valueBlock.toDER(),e}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()}`}};Tl=we;k.Integer=Tl;we.NAME="INTEGER";var kl,ui=class extends we{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};kl=ui;k.Enumerated=kl;ui.NAME="ENUMERATED";var rn=class extends Bt(Be){constructor({valueDec:e=-1,isFirstSid:t=!1,...n}={}){super(n),this.valueDec=e,this.isFirstSid=t}fromBER(e,t,n){if(!n)return t;let i=z.BufferSourceConverter.toUint8Array(e);if(!At(this,i,t,n))return-1;let s=i.subarray(t,t+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 o=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)o[a]=this.valueHexView[a];return this.valueHexView=o,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=rr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}set valueBigInt(e){Xn();let t=BigInt(e).toString(2);for(;t.length%7;)t="0"+t;let n=new Uint8Array(t.length/7);for(let i=0;i<n.length;i++)n[i]=parseInt(t.slice(i*7,i*7+7),2)+(i+1<n.length?128:0);this.fromBER(n.buffer,0,n.length)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let i=this.valueHexView,s=new Uint8Array(this.blockLength);for(let o=0;o<this.blockLength-1;o++)s[o]=i[o]|128;return s[this.blockLength-1]=i[this.blockLength-1],s.buffer}let t=Ht(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",Qe;let n=new Uint8Array(t.byteLength);if(!e){let i=new Uint8Array(t),s=t.byteLength-1;for(let o=0;o<s;o++)n[o]=i[o]|128;n[s]=i[s]}return n}toString(){let e="";if(this.isHexOnly)e=z.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let t=this.valueDec;this.valueDec<=39?e="0.":this.valueDec<=79?(e="1.",t-=40):(e="2.",t-=80),e+=t.toString()}else e=this.valueDec.toString();return e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}};rn.NAME="sidBlock";var fi=class extends Be{constructor({value:e=_r,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let i=t;for(;n>0;){let s=new rn;if(i=s.fromBER(e,i,n),i===-1)return this.blockLength=0,this.error=s.error,i;this.value.length===0&&(s.isFirstSid=!0),this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return i}toBER(e){let t=[];for(let n=0;n<this.value.length;n++){let i=this.value[n].toBER(e);if(i.byteLength===0)return this.error=this.value[n].error,Qe;t.push(i)}return Yo(t)}fromString(e){this.value=[];let t=0,n=0,i="",s=!1;do if(n=e.indexOf(".",t),n===-1?i=e.substring(t):i=e.substring(t,n),t=n+1,s){let o=this.value[0],a=0;switch(o.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(i,10);if(isNaN(c))return;o.valueDec=c+a,s=!1}else{let o=new rn;if(i>Number.MAX_SAFE_INTEGER){Xn();let a=BigInt(i);o.valueBigInt=a}else if(o.valueDec=parseInt(i,10),isNaN(o.valueDec))return;this.value.length||(o.isFirstSid=!0,s=!0),this.value.push(o)}while(n!==-1)}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let i=this.value[n].toString();n!==0&&(e=`${e}.`),t?(i=`{${i}}`,this.value[n].isFirstSid?e=`2.{${i} - 80}`:e+=i):e+=i}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};fi.NAME="ObjectIdentifierValueBlock";var Cl,Br=class extends be{constructor(e={}){super(e,fi),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};Cl=Br;k.ObjectIdentifier=Cl;Br.NAME="OBJECT IDENTIFIER";var nn=class extends Bt(vt){constructor({valueDec:e=0,...t}={}){super(t),this.valueDec=e}fromBER(e,t,n){if(n===0)return t;let i=z.BufferSourceConverter.toUint8Array(e);if(!At(this,i,t,n))return-1;let s=i.subarray(t,t+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 o=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)o[a]=this.valueHexView[a];return this.valueHexView=o,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=rr(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let i=this.valueHexView,s=new Uint8Array(this.blockLength);for(let o=0;o<this.blockLength-1;o++)s[o]=i[o]|128;return s[this.blockLength-1]=i[this.blockLength-1],s.buffer}let t=Ht(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",Qe;let n=new Uint8Array(t.byteLength);if(!e){let i=new Uint8Array(t),s=t.byteLength-1;for(let o=0;o<s;o++)n[o]=i[o]|128;n[s]=i[s]}return n.buffer}toString(){let e="";return this.isHexOnly?e=z.Convert.ToHex(this.valueHexView):e=this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};nn.NAME="relativeSidBlock";var hi=class extends Be{constructor({value:e=_r,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let i=t;for(;n>0;){let s=new nn;if(i=s.fromBER(e,i,n),i===-1)return this.blockLength=0,this.error=s.error,i;this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return i}toBER(e,t){let n=[];for(let i=0;i<this.value.length;i++){let s=this.value[i].toBER(e);if(s.byteLength===0)return this.error=this.value[i].error,Qe;n.push(s)}return Yo(n)}fromString(e){this.value=[];let t=0,n=0,i="";do{n=e.indexOf(".",t),n===-1?i=e.substring(t):i=e.substring(t,n),t=n+1;let s=new nn;if(s.valueDec=parseInt(i,10),isNaN(s.valueDec))return!0;this.value.push(s)}while(n!==-1);return!0}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let i=this.value[n].toString();n!==0&&(e=`${e}.`),t&&(i=`{${i}}`),e+=i}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};hi.NAME="RelativeObjectIdentifierValueBlock";var Nl,di=class extends be{constructor(e={}){super(e,hi),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};Nl=di;k.RelativeObjectIdentifier=Nl;di.NAME="RelativeObjectIdentifier";var Rl,Et=class extends Ft{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};Rl=Et;k.Sequence=Rl;Et.NAME="SEQUENCE";var Ll,pi=class extends Ft{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};Ll=pi;k.Set=Ll;pi.NAME="SET";var mi=class extends Bt(Be){constructor({...e}={}){super(e),this.isHexOnly=!0,this.value=_r}toJSON(){return{...super.toJSON(),value:this.value}}};mi.NAME="StringValueBlock";var gi=class extends mi{};gi.NAME="SimpleStringValueBlock";var Ce=class extends ei{constructor({...e}={}){super(e,gi)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,z.BufferSourceConverter.toUint8Array(e))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t);for(let i=0;i<t;i++)n[i]=e.charCodeAt(i);this.valueBlock.value=e}};Ce.NAME="SIMPLE STRING";var yi=class extends Ce{fromBuffer(e){this.valueBlock.valueHexView=z.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=z.Convert.ToUtf8String(e)}catch(t){this.warnings.push(`Error during "decodeURIComponent": ${t}, using raw string`),this.valueBlock.value=z.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(z.Convert.FromUtf8String(e)),this.valueBlock.value=e}};yi.NAME="Utf8StringValueBlock";var Ul,St=class extends yi{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};Ul=St;k.Utf8String=Ul;St.NAME="UTF8String";var bi=class extends Ce{fromBuffer(e){this.valueBlock.value=z.Convert.ToUtf16String(e),this.valueBlock.valueHexView=z.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(z.Convert.FromUtf16String(e))}};bi.NAME="BmpStringValueBlock";var Dl,wi=class extends bi{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};Dl=wi;k.BmpString=Dl;wi.NAME="BMPString";var xi=class extends Ce{fromBuffer(e){let t=ArrayBuffer.isView(e)?e.slice().buffer:e.slice(0),n=new Uint8Array(t);for(let i=0;i<n.length;i+=4)n[i]=n[i+3],n[i+1]=n[i+2],n[i+2]=0,n[i+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(t))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t*4);for(let i=0;i<t;i++){let s=Ht(e.charCodeAt(i),8),o=new Uint8Array(s);if(o.length>4)continue;let a=4-o.length;for(let c=o.length-1;c>=0;c--)n[i*4+c+a]=o[c]}this.valueBlock.value=e}};xi.NAME="UniversalStringValueBlock";var Ol,vi=class extends xi{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};Ol=vi;k.UniversalString=Ol;vi.NAME="UniversalString";var Ml,Ei=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};Ml=Ei;k.NumericString=Ml;Ei.NAME="NumericString";var Pl,Si=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};Pl=Si;k.PrintableString=Pl;Si.NAME="PrintableString";var Vl,Ai=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};Vl=Ai;k.TeletexString=Vl;Ai.NAME="TeletexString";var Hl,Bi=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};Hl=Bi;k.VideotexString=Hl;Bi.NAME="VideotexString";var Fl,_i=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};Fl=_i;k.IA5String=Fl;_i.NAME="IA5String";var Kl,Ii=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};Kl=Ii;k.GraphicString=Kl;Ii.NAME="GraphicString";var ql,sn=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};ql=sn;k.VisibleString=ql;sn.NAME="VisibleString";var zl,Ti=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};zl=Ti;k.GeneralString=zl;Ti.NAME="GeneralString";var $l,ki=class extends Ce{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};$l=ki;k.CharacterString=$l;ki.NAME="CharacterString";var Gl,on=class extends sn{constructor({value:e,valueDate:t,...n}={}){if(super(n),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,e){this.fromString(e),this.valueBlock.valueHexView=new Uint8Array(e.length);for(let i=0;i<e.length;i++)this.valueBlock.valueHexView[i]=e.charCodeAt(i)}t&&(this.fromDate(t),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(e){this.fromString(String.fromCharCode.apply(null,z.BufferSourceConverter.toUint8Array(e)))}toBuffer(){let e=this.toString(),t=new ArrayBuffer(e.length),n=new Uint8Array(t);for(let i=0;i<e.length;i++)n[i]=e.charCodeAt(i);return t}fromDate(e){this.year=e.getUTCFullYear(),this.month=e.getUTCMonth()+1,this.day=e.getUTCDate(),this.hour=e.getUTCHours(),this.minute=e.getUTCMinutes(),this.second=e.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(e){let n=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/ig.exec(e);if(n===null){this.error="Wrong input string for conversion";return}let i=parseInt(n[1],10);i>=50?this.year=1900+i:this.year=2e3+i,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(e="iso"){if(e==="iso"){let t=new Array(7);return t[0]=Ve(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=Ve(this.month,2),t[2]=Ve(this.day,2),t[3]=Ve(this.hour,2),t[4]=Ve(this.minute,2),t[5]=Ve(this.second,2),t[6]="Z",t.join("")}return super.toString(e)}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}}};Gl=on;k.UTCTime=Gl;on.NAME="UTCTime";var Wl,Ci=class extends on{constructor(e={}){var t;super(e),(t=this.millisecond)!==null&&t!==void 0||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(e){super.fromDate(e),this.millisecond=e.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(e){let t=!1,n="",i="",s=0,o,a=0,c=0;if(e[e.length-1]==="Z")n=e.substring(0,e.length-1),t=!0;else{let u=new Number(e[e.length-1]);if(isNaN(u.valueOf()))throw new Error("Wrong input string for conversion");n=e}if(t){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 u=1,g=n.indexOf("+"),l="";if(g===-1&&(g=n.indexOf("-"),u=-1),g!==-1){if(l=n.substring(g+1),n=n.substring(0,g),l.length!==2&&l.length!==4)throw new Error("Wrong input string for conversion");let d=parseInt(l.substring(0,2),10);if(isNaN(d.valueOf()))throw new Error("Wrong input string for conversion");if(a=u*d,l.length===4){if(d=parseInt(l.substring(2,4),10),isNaN(d.valueOf()))throw new Error("Wrong input string for conversion");c=u*d}}}let h=n.indexOf(".");if(h===-1&&(h=n.indexOf(",")),h!==-1){let u=new Number(`0${n.substring(h)}`);if(isNaN(u.valueOf()))throw new Error("Wrong input string for conversion");s=u.valueOf(),i=n.substring(0,h)}else i=n;switch(!0){case i.length===8:if(o=/(\d{4})(\d{2})(\d{2})/ig,h!==-1)throw new Error("Wrong input string for conversion");break;case i.length===10:if(o=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,h!==-1){let u=60*s;this.minute=Math.floor(u),u=60*(u-this.minute),this.second=Math.floor(u),u=1e3*(u-this.second),this.millisecond=Math.floor(u)}break;case i.length===12:if(o=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,h!==-1){let u=60*s;this.second=Math.floor(u),u=1e3*(u-this.second),this.millisecond=Math.floor(u)}break;case i.length===14:if(o=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,h!==-1){let u=1e3*s;this.millisecond=Math.floor(u)}break;default:throw new Error("Wrong input string for conversion")}let f=o.exec(i);if(f===null)throw new Error("Wrong input string for conversion");for(let u=1;u<f.length;u++)switch(u){case 1:this.year=parseInt(f[u],10);break;case 2:this.month=parseInt(f[u],10);break;case 3:this.day=parseInt(f[u],10);break;case 4:this.hour=parseInt(f[u],10)+a;break;case 5:this.minute=parseInt(f[u],10)+c;break;case 6:this.second=parseInt(f[u],10);break;default:throw new Error("Wrong input string for conversion")}if(t===!1){let u=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=u.getUTCFullYear(),this.month=u.getUTCMonth(),this.day=u.getUTCDay(),this.hour=u.getUTCHours(),this.minute=u.getUTCMinutes(),this.second=u.getUTCSeconds(),this.millisecond=u.getUTCMilliseconds()}}toString(e="iso"){if(e==="iso"){let t=[];return t.push(Ve(this.year,4)),t.push(Ve(this.month,2)),t.push(Ve(this.day,2)),t.push(Ve(this.hour,2)),t.push(Ve(this.minute,2)),t.push(Ve(this.second,2)),this.millisecond!==0&&(t.push("."),t.push(Ve(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(e)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};Wl=Ci;k.GeneralizedTime=Wl;Ci.NAME="GeneralizedTime";var Zl,Ni=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};Zl=Ni;k.DATE=Zl;Ni.NAME="DATE";var jl,Ri=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};jl=Ri;k.TimeOfDay=jl;Ri.NAME="TimeOfDay";var Yl,Li=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};Yl=Li;k.DateTime=Yl;Li.NAME="DateTime";var Xl,Ui=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Xl=Ui;k.Duration=Xl;Ui.NAME="Duration";var Jl,Di=class extends St{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};Jl=Di;k.TIME=Jl;Di.NAME="TIME";function ce(r,e="utf8"){let t=$n[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.encoder.encode(r).substring(1)}var an=class extends Error{constructor(e="An error occurred while verifying a message"){super(e),this.name="VerificationError"}},Mi=class extends Error{constructor(e="Missing Web Crypto API"){super(e),this.name="WebCryptoMissingError"}};var Ql={get(r=globalThis){let e=r.crypto;if(e?.subtle==null)throw new Mi("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 e}};var Kt=Ql;async function eu(r){let e=await Kt.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),t=await Ap(e);return{privateKey:t[0],publicKey:t[1]}}async function tu(r,e){let t=await Kt.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await Kt.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},t,e instanceof Uint8Array?e:e.subarray());return new Uint8Array(n,0,n.byteLength)}async function ru(r,e,t){let n=await Kt.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return Kt.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,e,t instanceof Uint8Array?t:t.subarray())}async function Ap(r){if(r.privateKey==null||r.publicKey==null)throw new ve("Private and public key are required");return Promise.all([Kt.get().subtle.exportKey("jwk",r.privateKey),Kt.get().subtle.exportKey("jwk",r.publicKey)])}function Qo(r){if(r.kty!=="RSA")throw new ve("invalid key type");if(r.n==null)throw new ve("invalid key modulus");return G(r.n,"base64url").length*8}var Ir=class{type="RSA";_key;_raw;_multihash;constructor(e,t){this._key=e,this._multihash=t}get raw(){return this._raw==null&&(this._raw=cn.jwkToPkix(this._key)),this._raw}toMultihash(){return this._multihash}toCID(){return pe.createV1(114,this._multihash)}toString(){return ee.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}verify(e,t){return ru(this._key,t,e)}},ln=class{type="RSA";_key;_raw;publicKey;constructor(e,t){this._key=e,this.publicKey=t}get raw(){return this._raw==null&&(this._raw=cn.jwkToPkcs1(this._key)),this._raw}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}sign(e){return tu(this._key,e)}};var Pi=8192,ea=18;function nu(r){let{result:e}=Jo(r),t=e.valueBlock.value;return{n:ct(t[1]),e:ct(t[2]),d:ct(t[3]),p:ct(t[4]),q:ct(t[5]),dp:ct(t[6]),dq:ct(t[7]),qi:ct(t[8]),kty:"RSA",alg:"RS256"}}function Bp(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 ve("JWK was missing components");let t=new Et({value:[new we({value:0}),we.fromBigInt(lt(G(r.n,"base64url"))),we.fromBigInt(lt(G(r.e,"base64url"))),we.fromBigInt(lt(G(r.d,"base64url"))),we.fromBigInt(lt(G(r.p,"base64url"))),we.fromBigInt(lt(G(r.q,"base64url"))),we.fromBigInt(lt(G(r.dp,"base64url"))),we.fromBigInt(lt(G(r.dq,"base64url"))),we.fromBigInt(lt(G(r.qi,"base64url")))]}).toBER();return new Uint8Array(t,0,t.byteLength)}function iu(r){let{result:e}=Jo(r),t=e.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:ct(t[0]),e:ct(t[1])}}function ta(r){if(r.n==null||r.e==null)throw new ve("JWK was missing components");let t=new Et({value:[new Et({value:[new Br({value:"1.2.840.113549.1.1.1"}),new Sr]}),new Ar({valueHex:new Et({value:[we.fromBigInt(lt(G(r.n,"base64url"))),we.fromBigInt(lt(G(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(t,0,t.byteLength)}function ct(r){let e=r.valueBlock.valueHexView;for(;e[0]===0;)e=e.subarray(1);return ce(e,"base64url")}function lt(r){let e=[];return r.forEach(function(t){let n=t.toString(16);n.length%2>0&&(n=`0${n}`),e.push(n)}),BigInt("0x"+e.join(""))}function su(r){let e=nu(r);return ou(e)}function ra(r){let e=iu(r);if(Qo(e)>Pi)throw new cr("Key size is too large");let t=vr(ot.encode({Type:fe.RSA,Data:r})),n=Ze(ea,t);return new Ir(e,n)}function ou(r){if(Qo(r)>Pi)throw new ve("Key size is too large");let e=cu(r),t=vr(ot.encode({Type:fe.RSA,Data:ta(e.publicKey)})),n=Ze(ea,t);return new ln(e.privateKey,new Ir(e.publicKey,n))}async function au(r){if(r>Pi)throw new ve("Key size is too large");let e=await eu(r),t=vr(ot.encode({Type:fe.RSA,Data:ta(e.publicKey)})),n=Ze(ea,t);return new ln(e.privateKey,new Ir(e.publicKey,n))}function cu(r){if(r==null)throw new ve("Missing key parameter");return{privateKey:r,publicKey:{kty:r.kty,n:r.n,e:r.e}}}var Vi=class extends gr{constructor(e,t){super(),this.finished=!1,this.destroyed=!1,kc(e);let n=zr(t);if(this.iHash=e.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 i=this.blockLen,s=new Uint8Array(i);s.set(n.length>i?e.create().update(n).digest():n);for(let o=0;o<s.length;o++)s[o]^=54;this.iHash.update(s),this.oHash=e.create();for(let o=0;o<s.length;o++)s[o]^=106;this.oHash.update(s),s.fill(0)}update(e){return mr(this),this.iHash.update(e),this}digestInto(e){mr(this),pr(e,this.outputLen),this.finished=!0,this.iHash.digestInto(e),this.oHash.update(e),this.oHash.digestInto(e),this.destroy()}digest(){let e=new Uint8Array(this.oHash.outputLen);return this.digestInto(e),e}_cloneInto(e){e||(e=Object.create(Object.getPrototypeOf(this),{}));let{oHash:t,iHash:n,finished:i,destroyed:s,blockLen:o,outputLen:a}=this;return e=e,e.finished=i,e.destroyed=s,e.blockLen=o,e.outputLen=a,e.oHash=t._cloneInto(e.oHash),e.iHash=n._cloneInto(e.iHash),e}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},na=(r,e,t)=>new Vi(r,e).update(t).digest();na.create=(r,e)=>new Vi(r,e);function lu(r){r.lowS!==void 0&&Ye("lowS",r.lowS),r.prehash!==void 0&&Ye("prehash",r.prehash)}function _p(r){let e=Wr(r);st(e,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:t,Fp:n,a:i}=e;if(t){if(!n.eql(i,n.ZERO))throw new Error("invalid endomorphism, can only be defined for Koblitz curves that have a=0");if(typeof t!="object"||typeof t.beta!="bigint"||typeof t.splitScalar!="function")throw new Error("invalid endomorphism, expected beta: bigint and splitScalar: function")}return Object.freeze({...e})}var{bytesToNumberBE:Ip,hexToBytes:Tp}=Dn,ia=class extends Error{constructor(e=""){super(e)}},_t={Err:ia,_tlv:{encode:(r,e)=>{let{Err:t}=_t;if(r<0||r>256)throw new t("tlv.encode: wrong tag");if(e.length&1)throw new t("tlv.encode: unpadded data");let n=e.length/2,i=Zt(n);if(i.length/2&128)throw new t("tlv.encode: long form length too big");let s=n>127?Zt(i.length/2|128):"";return Zt(r)+s+i+e},decode(r,e){let{Err:t}=_t,n=0;if(r<0||r>256)throw new t("tlv.encode: wrong tag");if(e.length<2||e[n++]!==r)throw new t("tlv.decode: wrong tlv");let i=e[n++],s=!!(i&128),o=0;if(!s)o=i;else{let c=i&127;if(!c)throw new t("tlv.decode(long): indefinite length not supported");if(c>4)throw new t("tlv.decode(long): byte length is too big");let h=e.subarray(n,n+c);if(h.length!==c)throw new t("tlv.decode: length bytes not complete");if(h[0]===0)throw new t("tlv.decode(long): zero leftmost byte");for(let f of h)o=o<<8|f;if(n+=c,o<128)throw new t("tlv.decode(long): not minimal encoding")}let a=e.subarray(n,n+o);if(a.length!==o)throw new t("tlv.decode: wrong value length");return{v:a,l:e.subarray(n+o)}}},_int:{encode(r){let{Err:e}=_t;if(r<It)throw new e("integer: negative integers are not allowed");let t=Zt(r);if(Number.parseInt(t[0],16)&8&&(t="00"+t),t.length&1)throw new e("unexpected DER parsing assertion: unpadded hex");return t},decode(r){let{Err:e}=_t;if(r[0]&128)throw new e("invalid signature integer: negative");if(r[0]===0&&!(r[1]&128))throw new e("invalid signature integer: unnecessary leading zero");return Ip(r)}},toSig(r){let{Err:e,_int:t,_tlv:n}=_t,i=typeof r=="string"?Tp(r):r;br(i);let{v:s,l:o}=n.decode(48,i);if(o.length)throw new e("invalid signature: left bytes after parsing");let{v:a,l:c}=n.decode(2,s),{v:h,l:f}=n.decode(2,c);if(f.length)throw new e("invalid signature: left bytes after parsing");return{r:t.decode(a),s:t.decode(h)}},hexFromSig(r){let{_tlv:e,_int:t}=_t,n=e.encode(2,t.encode(r.r)),i=e.encode(2,t.encode(r.s)),s=n+i;return e.encode(48,s)}},It=BigInt(0),ge=BigInt(1),hb=BigInt(2),uu=BigInt(3),db=BigInt(4);function kp(r){let e=_p(r),{Fp:t}=e,n=Dt(e.n,e.nBitLength),i=e.toBytes||((m,y,b)=>{let w=y.toAffine();return bt(Uint8Array.from([4]),t.toBytes(w.x),t.toBytes(w.y))}),s=e.fromBytes||(m=>{let y=m.subarray(1),b=t.fromBytes(y.subarray(0,t.BYTES)),w=t.fromBytes(y.subarray(t.BYTES,2*t.BYTES));return{x:b,y:w}});function o(m){let{a:y,b}=e,w=t.sqr(m),p=t.mul(w,m);return t.add(t.add(p,t.mul(m,y)),b)}if(!t.eql(t.sqr(e.Gy),o(e.Gx)))throw new Error("bad generator point: equation left != right");function a(m){return $r(m,ge,e.n)}function c(m){let{allowedPrivateKeyLengths:y,nByteLength:b,wrapPrivateKey:w,n:p}=e;if(y&&typeof m!="bigint"){if(Rt(m)&&(m=gt(m)),typeof m!="string"||!y.includes(m.length))throw new Error("invalid private key");m=m.padStart(b*2,"0")}let E;try{E=typeof m=="bigint"?m:yt(oe("private key",m,b))}catch{throw new Error("invalid private key, expected hex or "+b+" bytes, got "+typeof m)}return w&&(E=J(E,p)),Le("private key",E,ge,p),E}function h(m){if(!(m instanceof g))throw new Error("ProjectivePoint expected")}let f=Xt((m,y)=>{let{px:b,py:w,pz:p}=m;if(t.eql(p,t.ONE))return{x:b,y:w};let E=m.is0();y==null&&(y=E?t.ONE:t.inv(p));let A=t.mul(b,y),_=t.mul(w,y),x=t.mul(p,y);if(E)return{x:t.ZERO,y:t.ZERO};if(!t.eql(x,t.ONE))throw new Error("invZ was invalid");return{x:A,y:_}}),u=Xt(m=>{if(m.is0()){if(e.allowInfinityPoint&&!t.is0(m.py))return;throw new Error("bad point: ZERO")}let{x:y,y:b}=m.toAffine();if(!t.isValid(y)||!t.isValid(b))throw new Error("bad point: x or y not FE");let w=t.sqr(b),p=o(y);if(!t.eql(w,p))throw new Error("bad point: equation left != right");if(!m.isTorsionFree())throw new Error("bad point: not in prime-order subgroup");return!0});class g{constructor(y,b,w){if(this.px=y,this.py=b,this.pz=w,y==null||!t.isValid(y))throw new Error("x required");if(b==null||!t.isValid(b))throw new Error("y required");if(w==null||!t.isValid(w))throw new Error("z required");Object.freeze(this)}static fromAffine(y){let{x:b,y:w}=y||{};if(!y||!t.isValid(b)||!t.isValid(w))throw new Error("invalid affine point");if(y instanceof g)throw new Error("projective point not allowed");let p=E=>t.eql(E,t.ZERO);return p(b)&&p(w)?g.ZERO:new g(b,w,t.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(y){let b=t.invertBatch(y.map(w=>w.pz));return y.map((w,p)=>w.toAffine(b[p])).map(g.fromAffine)}static fromHex(y){let b=g.fromAffine(s(oe("pointHex",y)));return b.assertValidity(),b}static fromPrivateKey(y){return g.BASE.multiply(c(y))}static msm(y,b){return Vn(g,n,y,b)}_setWindowSize(y){d.setWindowSize(this,y)}assertValidity(){u(this)}hasEvenY(){let{y}=this.toAffine();if(t.isOdd)return!t.isOdd(y);throw new Error("Field doesn't support isOdd")}equals(y){h(y);let{px:b,py:w,pz:p}=this,{px:E,py:A,pz:_}=y,x=t.eql(t.mul(b,_),t.mul(E,p)),I=t.eql(t.mul(w,_),t.mul(A,p));return x&&I}negate(){return new g(this.px,t.neg(this.py),this.pz)}double(){let{a:y,b}=e,w=t.mul(b,uu),{px:p,py:E,pz:A}=this,_=t.ZERO,x=t.ZERO,I=t.ZERO,C=t.mul(p,p),j=t.mul(E,E),V=t.mul(A,A),P=t.mul(p,E);return P=t.add(P,P),I=t.mul(p,A),I=t.add(I,I),_=t.mul(y,I),x=t.mul(w,V),x=t.add(_,x),_=t.sub(j,x),x=t.add(j,x),x=t.mul(_,x),_=t.mul(P,_),I=t.mul(w,I),V=t.mul(y,V),P=t.sub(C,V),P=t.mul(y,P),P=t.add(P,I),I=t.add(C,C),C=t.add(I,C),C=t.add(C,V),C=t.mul(C,P),x=t.add(x,C),V=t.mul(E,A),V=t.add(V,V),C=t.mul(V,P),_=t.sub(_,C),I=t.mul(V,j),I=t.add(I,I),I=t.add(I,I),new g(_,x,I)}add(y){h(y);let{px:b,py:w,pz:p}=this,{px:E,py:A,pz:_}=y,x=t.ZERO,I=t.ZERO,C=t.ZERO,j=e.a,V=t.mul(e.b,uu),P=t.mul(b,E),L=t.mul(w,A),T=t.mul(p,_),R=t.add(b,w),S=t.add(E,A);R=t.mul(R,S),S=t.add(P,L),R=t.sub(R,S),S=t.add(b,p);let v=t.add(E,_);return S=t.mul(S,v),v=t.add(P,T),S=t.sub(S,v),v=t.add(w,p),x=t.add(A,_),v=t.mul(v,x),x=t.add(L,T),v=t.sub(v,x),C=t.mul(j,S),x=t.mul(V,T),C=t.add(x,C),x=t.sub(L,C),C=t.add(L,C),I=t.mul(x,C),L=t.add(P,P),L=t.add(L,P),T=t.mul(j,T),S=t.mul(V,S),L=t.add(L,T),T=t.sub(P,T),T=t.mul(j,T),S=t.add(S,T),P=t.mul(L,S),I=t.add(I,P),P=t.mul(v,S),x=t.mul(R,x),x=t.sub(x,P),P=t.mul(R,L),C=t.mul(v,C),C=t.add(C,P),new g(x,I,C)}subtract(y){return this.add(y.negate())}is0(){return this.equals(g.ZERO)}wNAF(y){return d.wNAFCached(this,y,g.normalizeZ)}multiplyUnsafe(y){let{endo:b,n:w}=e;Le("scalar",y,It,w);let p=g.ZERO;if(y===It)return p;if(this.is0()||y===ge)return this;if(!b||d.hasPrecomputes(this))return d.wNAFCachedUnsafe(this,y,g.normalizeZ);let{k1neg:E,k1:A,k2neg:_,k2:x}=b.splitScalar(y),I=p,C=p,j=this;for(;A>It||x>It;)A&ge&&(I=I.add(j)),x&ge&&(C=C.add(j)),j=j.double(),A>>=ge,x>>=ge;return E&&(I=I.negate()),_&&(C=C.negate()),C=new g(t.mul(C.px,b.beta),C.py,C.pz),I.add(C)}multiply(y){let{endo:b,n:w}=e;Le("scalar",y,ge,w);let p,E;if(b){let{k1neg:A,k1:_,k2neg:x,k2:I}=b.splitScalar(y),{p:C,f:j}=this.wNAF(_),{p:V,f:P}=this.wNAF(I);C=d.constTimeNegate(A,C),V=d.constTimeNegate(x,V),V=new g(t.mul(V.px,b.beta),V.py,V.pz),p=C.add(V),E=j.add(P)}else{let{p:A,f:_}=this.wNAF(y);p=A,E=_}return g.normalizeZ([p,E])[0]}multiplyAndAddUnsafe(y,b,w){let p=g.BASE,E=(_,x)=>x===It||x===ge||!_.equals(p)?_.multiplyUnsafe(x):_.multiply(x),A=E(this,b).add(E(y,w));return A.is0()?void 0:A}toAffine(y){return f(this,y)}isTorsionFree(){let{h:y,isTorsionFree:b}=e;if(y===ge)return!0;if(b)return b(g,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h:y,clearCofactor:b}=e;return y===ge?this:b?b(g,this):this.multiplyUnsafe(e.h)}toRawBytes(y=!0){return Ye("isCompressed",y),this.assertValidity(),i(g,this,y)}toHex(y=!0){return Ye("isCompressed",y),gt(this.toRawBytes(y))}}g.BASE=new g(e.Gx,e.Gy,t.ONE),g.ZERO=new g(t.ZERO,t.ONE,t.ZERO);let l=e.nBitLength,d=Pn(g,e.endo?Math.ceil(l/2):l);return{CURVE:e,ProjectivePoint:g,normPrivateKeyToScalar:c,weierstrassEquation:o,isWithinCurveOrder:a}}function Cp(r){let e=Wr(r);return st(e,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...e})}function fu(r){let e=Cp(r),{Fp:t,n}=e,i=t.BYTES+1,s=2*t.BYTES+1;function o(T){return J(T,n)}function a(T){return On(T,n)}let{ProjectivePoint:c,normPrivateKeyToScalar:h,weierstrassEquation:f,isWithinCurveOrder:u}=kp({...e,toBytes(T,R,S){let v=R.toAffine(),B=t.toBytes(v.x),N=bt;return Ye("isCompressed",S),S?N(Uint8Array.from([R.hasEvenY()?2:3]),B):N(Uint8Array.from([4]),B,t.toBytes(v.y))},fromBytes(T){let R=T.length,S=T[0],v=T.subarray(1);if(R===i&&(S===2||S===3)){let B=yt(v);if(!$r(B,ge,t.ORDER))throw new Error("Point is not on curve");let N=f(B),U;try{U=t.sqrt(N)}catch($){let O=$ instanceof Error?": "+$.message:"";throw new Error("Point is not on curve"+O)}let D=(U&ge)===ge;return(S&1)===1!==D&&(U=t.neg(U)),{x:B,y:U}}else if(R===s&&S===4){let B=t.fromBytes(v.subarray(0,t.BYTES)),N=t.fromBytes(v.subarray(t.BYTES,2*t.BYTES));return{x:B,y:N}}else{let B=i,N=s;throw new Error("invalid Point, expected length of "+B+", or uncompressed "+N+", got "+R)}}}),g=T=>gt(Ut(T,e.nByteLength));function l(T){let R=n>>ge;return T>R}function d(T){return l(T)?o(-T):T}let m=(T,R,S)=>yt(T.slice(R,S));class y{constructor(R,S,v){this.r=R,this.s=S,this.recovery=v,this.assertValidity()}static fromCompact(R){let S=e.nByteLength;return R=oe("compactSignature",R,S*2),new y(m(R,0,S),m(R,S,2*S))}static fromDER(R){let{r:S,s:v}=_t.toSig(oe("DER",R));return new y(S,v)}assertValidity(){Le("r",this.r,ge,n),Le("s",this.s,ge,n)}addRecoveryBit(R){return new y(this.r,this.s,R)}recoverPublicKey(R){let{r:S,s:v,recovery:B}=this,N=_(oe("msgHash",R));if(B==null||![0,1,2,3].includes(B))throw new Error("recovery id invalid");let U=B===2||B===3?S+e.n:S;if(U>=t.ORDER)throw new Error("recovery id 2 or 3 invalid");let D=B&1?"03":"02",H=c.fromHex(D+g(U)),$=a(U),O=o(-N*$),Y=o(v*$),re=c.BASE.multiplyAndAddUnsafe(H,O,Y);if(!re)throw new Error("point at infinify");return re.assertValidity(),re}hasHighS(){return l(this.s)}normalizeS(){return this.hasHighS()?new y(this.r,o(-this.s),this.recovery):this}toDERRawBytes(){return jt(this.toDERHex())}toDERHex(){return _t.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return jt(this.toCompactHex())}toCompactHex(){return g(this.r)+g(this.s)}}let b={isValidPrivateKey(T){try{return h(T),!0}catch{return!1}},normPrivateKeyToScalar:h,randomPrivateKey:()=>{let T=ao(e.n);return Kc(e.randomBytes(T),e.n)},precompute(T=8,R=c.BASE){return R._setWindowSize(T),R.multiply(BigInt(3)),R}};function w(T,R=!0){return c.fromPrivateKey(T).toRawBytes(R)}function p(T){let R=Rt(T),S=typeof T=="string",v=(R||S)&&T.length;return R?v===i||v===s:S?v===2*i||v===2*s:T instanceof c}function E(T,R,S=!0){if(p(T))throw new Error("first arg must be private key");if(!p(R))throw new Error("second arg must be public key");return c.fromHex(R).multiply(h(T)).toRawBytes(S)}let A=e.bits2int||function(T){if(T.length>8192)throw new Error("input is too large");let R=yt(T),S=T.length*8-e.nBitLength;return S>0?R>>BigInt(S):R},_=e.bits2int_modN||function(T){return o(A(T))},x=Gr(e.nBitLength);function I(T){return Le("num < 2^"+e.nBitLength,T,It,x),Ut(T,e.nByteLength)}function C(T,R,S=j){if(["recovered","canonical"].some(de=>de in S))throw new Error("sign() legacy options not supported");let{hash:v,randomBytes:B}=e,{lowS:N,prehash:U,extraEntropy:D}=S;N==null&&(N=!0),T=oe("msgHash",T),lu(S),U&&(T=oe("prehashed msgHash",v(T)));let H=_(T),$=h(R),O=[I($),I(H)];if(D!=null&&D!==!1){let de=D===!0?B(t.BYTES):D;O.push(oe("extraEntropy",de))}let Y=bt(...O),re=H;function he(de){let ye=A(de);if(!u(ye))return;let xe=a(ye),Ne=c.BASE.multiply(ye).toAffine(),Te=o(Ne.x);if(Te===It)return;let nt=o(xe*o(re+Te*$));if(nt===It)return;let ut=(Ne.x===Te?0:2)|Number(Ne.y&ge),Pr=nt;return N&&l(nt)&&(Pr=d(nt),ut^=1),new y(Te,Pr,ut)}return{seed:Y,k2sig:he}}let j={lowS:e.lowS,prehash:!1},V={lowS:e.lowS,prehash:!1};function P(T,R,S=j){let{seed:v,k2sig:B}=C(T,R,S),N=e;return no(N.hash.outputLen,N.nByteLength,N.hmac)(v,B)}c.BASE._setWindowSize(8);function L(T,R,S,v=V){let B=T;R=oe("msgHash",R),S=oe("publicKey",S);let{lowS:N,prehash:U,format:D}=v;if(lu(v),"strict"in v)throw new Error("options.strict was renamed to lowS");if(D!==void 0&&D!=="compact"&&D!=="der")throw new Error("format must be compact or der");let H=typeof B=="string"||Rt(B),$=!H&&!D&&typeof B=="object"&&B!==null&&typeof B.r=="bigint"&&typeof B.s=="bigint";if(!H&&!$)throw new Error("invalid signature, expected Uint8Array, hex string or Signature instance");let O,Y;try{if($&&(O=new y(B.r,B.s)),H){try{D!=="compact"&&(O=y.fromDER(B))}catch(ut){if(!(ut instanceof _t.Err))throw ut}!O&&D!=="der"&&(O=y.fromCompact(B))}Y=c.fromHex(S)}catch{return!1}if(!O||N&&O.hasHighS())return!1;U&&(R=e.hash(R));let{r:re,s:he}=O,de=_(R),ye=a(he),xe=o(de*ye),Ne=o(re*ye),Te=c.BASE.multiplyAndAddUnsafe(Y,xe,Ne)?.toAffine();return Te?o(Te.x)===re:!1}return{CURVE:e,getPublicKey:w,getSharedSecret:E,sign:P,verify:L,ProjectivePoint:c,Signature:y,utils:b}}function Np(r){return{hash:r,hmac:(e,...t)=>na(r,e,Ys(...t)),randomBytes:Nn}}function hu(r,e){let t=n=>fu({...r,...Np(n)});return{...t(e),create:t}}var mu=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),du=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),Rp=BigInt(1),sa=BigInt(2),pu=(r,e)=>(r+e/sa)/e;function Lp(r){let e=mu,t=BigInt(3),n=BigInt(6),i=BigInt(11),s=BigInt(22),o=BigInt(23),a=BigInt(44),c=BigInt(88),h=r*r*r%e,f=h*h*r%e,u=se(f,t,e)*f%e,g=se(u,t,e)*f%e,l=se(g,sa,e)*h%e,d=se(l,i,e)*l%e,m=se(d,s,e)*d%e,y=se(m,a,e)*m%e,b=se(y,c,e)*y%e,w=se(b,a,e)*m%e,p=se(w,t,e)*f%e,E=se(p,o,e)*d%e,A=se(E,n,e)*h%e,_=se(A,sa,e);if(!oa.eql(oa.sqr(_),r))throw new Error("Cannot find square root");return _}var oa=Dt(mu,void 0,void 0,{sqrt:Lp}),nr=hu({a:BigInt(0),b:BigInt(7),Fp:oa,n:du,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let e=du,t=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-Rp*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),i=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),s=t,o=BigInt("0x100000000000000000000000000000000"),a=pu(s*r,e),c=pu(-n*r,e),h=J(r-a*t-c*i,e),f=J(-a*n-c*s,e),u=h>o,g=f>o;if(u&&(h=e-h),g&&(f=e-f),h>o||f>o)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:u,k1:h,k2neg:g,k2:f}}}},vr),Eb=BigInt(0);var Sb=nr.ProjectivePoint;function Fe(r,e){e==null&&(e=r.reduce((i,s)=>i+s.length,0));let t=De(e),n=0;for(let i of r)t.set(i,n),n+=i.length;return t}function gu(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function yu(r,e,t){let n=wr.digest(t instanceof Uint8Array?t:t.subarray());if(gu(n))return n.then(({digest:i})=>nr.verify(e,i,r)).catch(i=>{throw new an(String(i))});try{return nr.verify(e,n.digest,r)}catch(i){throw new an(String(i))}}var Hi=class{type="secp256k1";raw;_key;constructor(e){this._key=wu(e),this.raw=bu(this._key)}toMultihash(){return pt.digest(Ot(this))}toCID(){return pe.createV1(114,this.toMultihash())}toString(){return ee.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:me(this.raw,e.raw)}verify(e,t){return yu(this._key,t,e)}};function aa(r){return new Hi(r)}function bu(r){return nr.ProjectivePoint.fromHex(r).toRawBytes(!0)}function wu(r){try{return nr.ProjectivePoint.fromHex(r),r}catch(e){throw new cr(String(e))}}function xu(r){let{Type:e,Data:t}=ot.decode(r),n=t??new Uint8Array;switch(e){case fe.RSA:return ra(n);case fe.Ed25519:return mo(n);case fe.secp256k1:return aa(n);default:throw new lr}}function vu(r){let{Type:e,Data:t}=ot.decode(r.digest),n=t??new Uint8Array;switch(e){case fe.Ed25519:return mo(n);case fe.secp256k1:return aa(n);default:throw new lr}}function Ot(r){return ot.encode({Type:fe[r.type],Data:r.raw})}var Eu=Symbol.for("nodejs.util.inspect.custom"),Up=114,un=class{type;multihash;publicKey;string;constructor(e){this.type=e.type,this.multihash=e.multihash,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Ps]=!0;toString(){return this.string==null&&(this.string=ee.encode(this.multihash.bytes).slice(1)),this.string}toMultihash(){return this.multihash}toCID(){return pe.createV1(Up,this.multihash)}toJSON(){return this.toString()}equals(e){if(e==null)return!1;if(e instanceof Uint8Array)return me(this.multihash.bytes,e);if(typeof e=="string")return this.toString()===e;if(e?.toMultihash()?.bytes!=null)return me(this.multihash.bytes,e.toMultihash().bytes);throw new Error("not valid Id")}[Eu](){return`PeerId(${this.toString()})`}},Fi=class extends un{type="RSA";publicKey;constructor(e){super({...e,type:"RSA"}),this.publicKey=e.publicKey}},Ki=class extends un{type="Ed25519";publicKey;constructor(e){super({...e,type:"Ed25519"}),this.publicKey=e.publicKey}},qi=class extends un{type="secp256k1";publicKey;constructor(e){super({...e,type:"secp256k1"}),this.publicKey=e.publicKey}},Dp=2336,zi=class{type="url";multihash;publicKey;url;constructor(e){this.url=e.toString(),this.multihash=pt.digest(G(this.url))}[Eu](){return`PeerId(${this.url})`}[Ps]=!0;toString(){return this.toCID().toString()}toMultihash(){return this.multihash}toCID(){return pe.createV1(Dp,this.toMultihash())}toJSON(){return this.toString()}equals(e){return e==null?!1:(e instanceof Uint8Array&&(e=ce(e)),e.toString()===this.toString())}};function ca(r,e){let t;if(r.charAt(0)==="1"||r.charAt(0)==="Q")t=ze(ee.decode(`z${r}`));else{if(e==null)throw new ve('Please pass a multibase decoder for strings that do not start with "1" or "Q"');t=ze(e.decode(r))}return fn(t)}function fn(r){if(Mp(r))return new Fi({multihash:r});if(Op(r))try{let e=vu(r);if(e.type==="Ed25519")return new Ki({multihash:r,publicKey:e});if(e.type==="secp256k1")return new qi({multihash:r,publicKey:e})}catch{let t=ce(r.digest);return new zi(new URL(t))}throw new _n("Supplied PeerID Multihash is invalid")}function Op(r){return r.code===pt.code}function Mp(r){return r.code===wr.code}var Au=Symbol.for("@achingbrain/uint8arraylist");function Su(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let i=t+n.byteLength;if(e<i)return{buf:n,index:e-t};t=i}throw new RangeError("index is out of bounds")}function $i(r){return!!r?.[Au]}var et=class r{bufs;length;[Au]=!0;constructor(...e){this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let n of e)if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.push(n);else if($i(n))t+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let n of e.reverse())if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.unshift(n);else if($i(n))t+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=Su(this.bufs,e);return t.buf[t.index]}set(e,t){let n=Su(this.bufs,e);n.buf[n.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let n=0;n<e.length;n++)this.set(t+n,e[n]);else if($i(e))for(let n=0;n<e.length;n++)this.set(t+n,e.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:n,length:i}=this._subList(e,t);return Fe(n,i)}subarray(e,t){let{bufs:n,length:i}=this._subList(e,t);return n.length===1?n[0]:Fe(n,i)}sublist(e,t){let{bufs:n,length:i}=this._subList(e,t),s=new r;return s.length=i,s.bufs=[...n],s}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:this.bufs,length:this.length};let n=[],i=0;for(let s=0;s<this.bufs.length;s++){let o=this.bufs[s],a=i,c=a+o.byteLength;if(i=c,e>=c)continue;let h=e>=a&&e<c,f=t>a&&t<=c;if(h&&f){if(e===a&&t===c){n.push(o);break}let u=e-a;n.push(o.subarray(u,u+(t-e)));break}if(h){if(e===0){n.push(o);continue}n.push(o.subarray(e-a));continue}if(f){if(t===c){n.push(o);break}n.push(o.subarray(0,t-a));break}n.push(o)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!$i(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let i=n.byteLength;if(i===0)throw new TypeError("search must be at least 1 byte long");let s=256,o=new Int32Array(s);for(let u=0;u<s;u++)o[u]=-1;for(let u=0;u<i;u++)o[n[u]]=u;let a=o,c=this.byteLength-n.byteLength,h=n.byteLength-1,f;for(let u=t;u<=c;u+=f){f=0;for(let g=h;g>=0;g--){let l=this.get(u+g);if(n[g]!==l){f=Math.max(1,g-a[l]);break}}if(f===0)return u}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let n=De(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,t),this.write(n,e)}getInt16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,t)}setInt16(e,t,n){let i=ae(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt16(0,t,n),this.write(i,e)}getInt32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,t)}setInt32(e,t,n){let i=ae(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt32(0,t,n),this.write(i,e)}getBigInt64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,t)}setBigInt64(e,t,n){let i=ae(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigInt64(0,t,n),this.write(i,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let n=De(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,t),this.write(n,e)}getUint16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,t)}setUint16(e,t,n){let i=ae(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint16(0,t,n),this.write(i,e)}getUint32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,t)}setUint32(e,t,n){let i=ae(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint32(0,t,n),this.write(i,e)}getBigUint64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,t)}setBigUint64(e,t,n){let i=ae(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigUint64(0,t,n),this.write(i,e)}getFloat32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,t)}setFloat32(e,t,n){let i=ae(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat32(0,t,n),this.write(i,e)}getFloat64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,t)}setFloat64(e,t,n){let i=ae(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat64(0,t,n),this.write(i,e)}equals(e){if(e==null||!(e instanceof r)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!me(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new r;return n.bufs=e,t==null&&(t=e.reduce((i,s)=>i+s.byteLength,0)),n.length=t,n}};var hn;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),t.publicKey!=null&&t.publicKey.byteLength>0&&(n.uint32(10),n.bytes(t.publicKey)),t.payloadType!=null&&t.payloadType.byteLength>0&&(n.uint32(18),n.bytes(t.payloadType)),t.payload!=null&&t.payload.byteLength>0&&(n.uint32(26),n.bytes(t.payload)),t.signature!=null&&t.signature.byteLength>0&&(n.uint32(42),n.bytes(t.signature)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={publicKey:ae(0),payloadType:ae(0),payload:ae(0),signature:ae(0)},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.publicKey=t.bytes();break}case 2:{s.payloadType=t.bytes();break}case 3:{s.payload=t.bytes();break}case 5:{s.signature=t.bytes();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(hn||(hn={}));var Gi=class extends Error{constructor(e="Invalid signature"){super(e),this.name="InvalidSignatureError"}};var dn=class r{static createFromProtobuf=async e=>{let t=hn.decode(e),n=xu(t.publicKey);return new r({publicKey:n,payloadType:t.payloadType,payload:t.payload,signature:t.signature})};static seal=async(e,t)=>{if(t==null)throw new Error("Missing private key");let n=e.domain,i=e.codec,s=e.marshal(),o=Bu(n,i,s),a=await t.sign(o.subarray());return new r({publicKey:t.publicKey,payloadType:i,payload:s,signature:a})};static openAndCertify=async(e,t)=>{let n=await r.createFromProtobuf(e);if(!await n.validate(t))throw new Gi("Envelope signature is not valid for the given domain");return n};publicKey;payloadType;payload;signature;marshaled;constructor(e){let{publicKey:t,payloadType:n,payload:i,signature:s}=e;this.publicKey=t,this.payloadType=n,this.payload=i,this.signature=s}marshal(){return this.marshaled==null&&(this.marshaled=hn.encode({publicKey:Ot(this.publicKey),payloadType:this.payloadType,payload:this.payload.subarray(),signature:this.signature})),this.marshaled}equals(e){return me(this.marshal(),e.marshal())}async validate(e){let t=Bu(e,this.payloadType,this.payload);return this.publicKey.verify(t.subarray(),this.signature)}},Bu=(r,e,t)=>{let n=G(r),i=$e(n.byteLength),s=$e(e.length),o=$e(t.length);return new et(i,n,s,e,o,t)};var Wi=class{index=0;input="";new(e){return this.index=0,this.input=e,this}readAtomically(e){let t=this.index,n=e();return n===void 0&&(this.index=t),n}parseWith(e){let t=e();if(this.index===this.input.length)return t}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(e){return this.readAtomically(()=>{let t=this.readChar();if(t===e)return t})}readSeparator(e,t,n){return this.readAtomically(()=>{if(!(t>0&&this.readGivenChar(e)===void 0))return n()})}readNumber(e,t,n,i){return this.readAtomically(()=>{let s=0,o=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",h=2**(8*i)-1;for(;;){let f=this.readAtomically(()=>{let u=this.readChar();if(u===void 0)return;let g=Number.parseInt(u,e);if(!Number.isNaN(g))return g});if(f===void 0)break;if(s*=e,s+=f,s>h||(o+=1,t!==void 0&&o>t))return}if(o!==0)return!n&&c&&o>1?void 0:s})}readIPv4Addr(){return this.readAtomically(()=>{let e=new Uint8Array(4);for(let t=0;t<e.length;t++){let n=this.readSeparator(".",t,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;e[t]=n}return e})}readIPv6Addr(){let e=t=>{for(let n=0;n<t.length/2;n++){let i=n*2;if(n<t.length-3){let o=this.readSeparator(":",n,()=>this.readIPv4Addr());if(o!==void 0)return t[i]=o[0],t[i+1]=o[1],t[i+2]=o[2],t[i+3]=o[3],[i+4,!0]}let s=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(s===void 0)return[i,!1];t[i]=s>>8,t[i+1]=s&255}return[t.length,!1]};return this.readAtomically(()=>{let t=new Uint8Array(16),[n,i]=e(t);if(n===16)return t;if(i||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let s=new Uint8Array(14),o=16-(n+2),[a]=e(s.subarray(0,o));return t.set(s.subarray(0,a),16-a),t})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var _u=45,Pp=15,Tr=new Wi;function la(r){if(!(r.length>Pp))return Tr.new(r).parseWith(()=>Tr.readIPv4Addr())}function ua(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>_u))return Tr.new(r).parseWith(()=>Tr.readIPv6Addr())}function Zi(r,e=!1){if(r.includes("%")&&(r=r.split("%")[0]),r.length>_u)return;let t=Tr.new(r).parseWith(()=>Tr.readIPAddr());if(t)return e&&t.length===4?Uint8Array.from([0,0,0,0,0,0,0,0,0,0,255,255,t[0],t[1],t[2],t[3]]):t}var ex=parseInt("0xFFFF",16),tx=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);function ji(r){return!!la(r)}function Yi(r){return!!ua(r)}function Xi(r){return!!Zi(r)}var ku=ji,qp=Yi,fa=function(r){let e=0;if(r=r.toString().trim(),ku(r)){let t=new Uint8Array(e+4);return r.split(/\./g).forEach(n=>{t[e++]=parseInt(n,10)&255}),t}if(qp(r)){let t=r.split(":",8),n;for(n=0;n<t.length;n++){let s=ku(t[n]),o;s&&(o=fa(t[n]),t[n]=ce(o.slice(0,2),"base16")),o!=null&&++n<8&&t.splice(n,0,ce(o.slice(2,4),"base16"))}if(t[0]==="")for(;t.length<8;)t.unshift("0");else if(t[t.length-1]==="")for(;t.length<8;)t.push("0");else if(t.length<8){for(n=0;n<t.length&&t[n]!=="";n++);let s=[n,1];for(n=9-t.length;n>0;n--)s.push("0");t.splice.apply(t,s)}let i=new Uint8Array(e+16);for(n=0;n<t.length;n++){let s=parseInt(t[n],16);i[e++]=s>>8&255,i[e++]=s&255}return i}throw new Error("invalid ip address")},Cu=function(r,e=0,t){e=~~e,t=t??r.length-e;let n=new DataView(r.buffer);if(t===4){let i=[];for(let s=0;s<t;s++)i.push(r[e+s]);return i.join(".")}if(t===16){let i=[];for(let s=0;s<t;s+=2)i.push(n.getUint16(e+s).toString(16));return i.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var kr={},ha={},$p=[[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"]];$p.forEach(r=>{let e=Gp(...r);ha[e.code]=e,kr[e.name]=e});function Gp(r,e,t,n,i){return{code:r,size:e,name:t,resolvable:!!n,path:!!i}}function te(r){if(typeof r=="number"){if(ha[r]!=null)return ha[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(kr[r]!=null)return kr[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var Px=te("ip4"),Vx=te("ip6"),Hx=te("ipcidr");function ga(r,e){switch(te(r).code){case 4:case 41:return Zp(e);case 42:return ma(e);case 43:return ce(e,"base10");case 6:case 273:case 33:case 132:return Lu(e).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return ma(e);case 421:return Jp(e);case 444:return Ru(e);case 445:return Ru(e);case 466:return Xp(e);case 481:return globalThis.encodeURIComponent(ma(e));default:return ce(e,"base16")}}function ya(r,e){switch(te(r).code){case 4:return Nu(e);case 41:return Nu(e);case 42:return pa(e);case 43:return G(e,"base10");case 6:case 273:case 33:case 132:return ba(parseInt(e,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return pa(e);case 421:return jp(e);case 444:return Qp(e);case 445:return e0(e);case 466:return Yp(e);case 481:return pa(globalThis.decodeURIComponent(e));default:return G(e,"base16")}}var da=Object.values(Zr).map(r=>r.decoder),Wp=function(){let r=da[0].or(da[1]);return da.slice(2).forEach(e=>r=r.or(e)),r}();function Nu(r){if(!Xi(r))throw new Error("invalid ip address");return fa(r)}function Zp(r){let e=Cu(r,0,r.length);if(e==null)throw new Error("ipBuff is required");if(!Xi(e))throw new Error("invalid ip address");return e}function ba(r){let e=new ArrayBuffer(2);return new DataView(e).setUint16(0,r),new Uint8Array(e)}function Lu(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function pa(r){let e=G(r),t=Uint8Array.from($e(e.length));return Fe([t,e],t.length+e.length)}function ma(r){let e=wt(r);if(r=r.slice(Se(e)),r.length!==e)throw new Error("inconsistent lengths");return ce(r)}function jp(r){let e;r[0]==="Q"||r[0]==="1"?e=ze(ee.decode(`z${r}`)).bytes:e=pe.parse(r).multihash.bytes;let t=Uint8Array.from($e(e.length));return Fe([t,e],t.length+e.length)}function Yp(r){let e=Wp.decode(r),t=Uint8Array.from($e(e.length));return Fe([t,e],t.length+e.length)}function Xp(r){let e=wt(r),t=r.slice(Se(e));if(t.length!==e)throw new Error("inconsistent lengths");return"u"+ce(t,"base64url")}function Jp(r){let e=wt(r),t=r.slice(Se(e));if(t.length!==e)throw new Error("inconsistent lengths");return ce(t,"base58btc")}function Qp(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==16)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion address.`);let t=dt.decode("b"+e[0]),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let i=ba(n);return Fe([t,i],t.length+i.length)}function e0(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==56)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion3 address.`);let t=dt.decode(`b${e[0]}`),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let i=ba(n);return Fe([t,i],t.length+i.length)}function Ru(r){let e=r.slice(0,r.length-2),t=r.slice(r.length-2),n=ce(e,"base32"),i=Lu(t);return`${n}:${i}`}function Uu(r){r=wa(r);let e=[],t=[],n=null,i=r.split("/").slice(1);if(i.length===1&&i[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let s=0;s<i.length;s++){let o=i[s],a=te(o);if(a.size===0){e.push([a.code]),t.push([a.code]);continue}if(s++,s>=i.length)throw Ou("invalid address: "+r);if(a.path===!0){n=wa(i.slice(s).join("/")),e.push([a.code,ya(a.code,n)]),t.push([a.code,n]);break}let c=ya(a.code,i[s]);e.push([a.code,c]),t.push([a.code,ga(a.code,c)])}return{string:Du(t),bytes:va(e),tuples:e,stringTuples:t,path:n}}function xa(r){let e=[],t=[],n=null,i=0;for(;i<r.length;){let s=wt(r,i),o=Se(s),a=te(s),c=t0(a,r.slice(i+o));if(c===0){e.push([s]),t.push([s]),i+=o;continue}let h=r.slice(i+o,i+o+c);if(i+=c+o,i>r.length)throw Ou("Invalid address Uint8Array: "+ce(r,"base16"));e.push([s,h]);let f=ga(s,h);if(t.push([s,f]),a.path===!0){n=f;break}}return{bytes:Uint8Array.from(r),string:Du(t),tuples:e,stringTuples:t,path:n}}function Du(r){let e=[];return r.map(t=>{let n=te(t[0]);return e.push(n.name),t.length>1&&t[1]!=null&&e.push(t[1]),null}),wa(e.join("/"))}function va(r){return Fe(r.map(e=>{let t=te(e[0]),n=Uint8Array.from($e(t.code));return e.length>1&&e[1]!=null&&(n=Fe([n,e[1]])),n}))}function t0(r,e){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let t=wt(e instanceof Uint8Array?e:Uint8Array.from(e));return t+Se(t)}}function wa(r){return"/"+r.trim().split("/").filter(e=>e).join("/")}function Ou(r){return new Error("Error parsing address: "+r)}var r0=Symbol.for("nodejs.util.inspect.custom"),Sa=Symbol.for("@multiformats/js-multiaddr/multiaddr"),n0=[te("dns").code,te("dns4").code,te("dns6").code,te("dnsaddr").code],Ea=class extends Error{constructor(e="No available resolver"){super(e),this.name="NoAvailableResolverError"}},Ji=class r{bytes;#e;#t;#r;#n;[Sa]=!0;constructor(e){e==null&&(e="");let t;if(e instanceof Uint8Array)t=xa(e);else if(typeof e=="string"){if(e.length>0&&e.charAt(0)!=="/")throw new Error(`multiaddr "${e}" must start with a "/"`);t=Uu(e)}else if(Pu(e))t=xa(e.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=t.bytes,this.#e=t.string,this.#t=t.tuples,this.#r=t.stringTuples,this.#n=t.path}toString(){return this.#e}toJSON(){return this.toString()}toOptions(){let e,t,n,i,s="",o=te("tcp"),a=te("udp"),c=te("ip4"),h=te("ip6"),f=te("dns6"),u=te("ip6zone");for(let[l,d]of this.stringTuples())l===u.code&&(s=`%${d??""}`),n0.includes(l)&&(t=o.name,i=443,n=`${d??""}${s}`,e=l===f.code?6:4),(l===o.code||l===a.code)&&(t=te(l).name,i=parseInt(d??"")),(l===c.code||l===h.code)&&(t=te(l).name,n=`${d??""}${s}`,e=l===h.code?6:4);if(e==null||t==null||n==null||i==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:e,host:n,transport:t,port:i}}protos(){return this.#t.map(([e])=>Object.assign({},te(e)))}protoCodes(){return this.#t.map(([e])=>e)}protoNames(){return this.#t.map(([e])=>te(e).name)}tuples(){return this.#t.map(([e,t])=>t==null?[e]:[e,t])}stringTuples(){return this.#r.map(([e,t])=>t==null?[e]:[e,t])}encapsulate(e){return e=new r(e),new r(this.toString()+e.toString())}decapsulate(e){let t=e.toString(),n=this.toString(),i=n.lastIndexOf(t);if(i<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${e.toString()}`);return new r(n.slice(0,i))}decapsulateCode(e){let t=this.tuples();for(let n=t.length-1;n>=0;n--)if(t[n][0]===e)return new r(va(t.slice(0,n)));return this}getPeerId(){try{let e=[];this.stringTuples().forEach(([n,i])=>{n===kr.p2p.code&&e.push([n,i]),n===kr["p2p-circuit"].code&&(e=[])});let t=e.pop();if(t?.[1]!=null){let n=t[1];return n[0]==="Q"||n[0]==="1"?ce(ee.decode(`z${n}`),"base58btc"):ce(pe.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#n}equals(e){return me(this.bytes,e.bytes)}async resolve(e){let t=this.protos().find(s=>s.resolvable);if(t==null)return[this];let n=Mu.get(t.name);if(n==null)throw new Ea(`no available resolver for ${t.name}`);return(await n(this,e)).map(s=>_e(s))}nodeAddress(){let e=this.toOptions();if(e.transport!=="tcp"&&e.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${e.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:e.family,address:e.host,port:e.port}}isThinWaistAddress(e){let t=(e??this).protos();return!(t.length!==2||t[0].code!==4&&t[0].code!==41||t[1].code!==6&&t[1].code!==273)}[r0](){return`Multiaddr(${this.#e})`}};var Mu=new Map;function Pu(r){return!!r?.[Sa]}function _e(r){return new Ji(r)}function tt(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var Qi=class extends Error{type;code;constructor(e,t,n){super(e??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=t??"ABORT_ERR"}};async function es(r,e,t){if(e==null)return r;if(e.aborted)return Promise.reject(new Qi(t?.errorMessage,t?.errorCode,t?.errorName));let n,i=new Qi(t?.errorMessage,t?.errorCode,t?.errorName);try{return await Promise.race([r,new Promise((s,o)=>{n=()=>{o(i)},e.addEventListener("abort",n)})])}finally{n!=null&&e.removeEventListener("abort",n)}}var Aa=class{readNext;haveNext;ended;nextResult;constructor(){this.ended=!1,this.readNext=tt(),this.haveNext=tt()}[Symbol.asyncIterator](){return this}async next(){if(this.nextResult==null&&await this.haveNext.promise,this.nextResult==null)throw new Error("HaveNext promise resolved but nextResult was undefined");let e=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=tt(),e}async throw(e){return this.ended=!0,e!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(e)),{done:!0,value:void 0}}async return(){let e={done:!0,value:void 0};return await this._push(void 0),e}async push(e,t){await this._push(e,t)}async end(e,t){e!=null?await this.throw(e):await this._push(void 0,t)}async _push(e,t){if(e!=null&&this.ended)throw new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;e!=null?this.nextResult={done:!1,value:e}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=tt(),await es(this.readNext.promise,t?.signal,t)}};function Vu(){return new Aa}var ts=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};var Ba=class extends Error{code;constructor(e,t){super(e),this.code=t}},_a=class extends Ba{type;constructor(e){super(e,"ABORT_ERR"),this.type="aborted",this.name="AbortError"}};function Hu(r,e){let t=Vu();r.sink(t).catch(async o=>{await t.end(o)}),r.sink=async o=>{for await(let a of o)await t.push(a);await t.end()};let n=r.source;r.source[Symbol.iterator]!=null?n=r.source[Symbol.iterator]():r.source[Symbol.asyncIterator]!=null&&(n=r.source[Symbol.asyncIterator]());let i=new et;return{read:async(o,a)=>{a?.signal?.throwIfAborted();let c,h=new Promise((f,u)=>{c=()=>{u(new _a("Read aborted"))},a?.signal?.addEventListener("abort",c)});try{if(o==null){let{done:u,value:g}=await Promise.race([n.next(),h]);return u===!0?new et:g}for(;i.byteLength<o;){let{value:u,done:g}=await Promise.race([n.next(),h]);if(g===!0)throw new ts("unexpected end of input");i.append(u)}let f=i.sublist(0,o);return i.consume(o),f}finally{c!=null&&a?.signal?.removeEventListener("abort",c)}},write:async(o,a)=>{a?.signal?.throwIfAborted(),o instanceof Uint8Array?await t.push(o,a):await t.push(o.subarray(),a)},unwrap:()=>{if(i.byteLength>0){let o=r.source;r.source=async function*(){e?.yieldBytes===!1?yield i:yield*i,yield*o}()}return r}}}var rs=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},ns=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},is=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"};function Fu(r,e={}){let t=Hu(r,e);e.maxDataLength!=null&&e.maxLengthLength==null&&(e.maxLengthLength=Se(e.maxDataLength));let n=e?.lengthDecoder??wt,i=e?.lengthEncoder??$e;return{read:async o=>{let a=-1,c=new et;for(;;){c.append(await t.read(1,o));try{a=n(c)}catch(h){if(h instanceof RangeError)continue;throw h}if(a<0)throw new rs("Invalid message length");if(e?.maxLengthLength!=null&&c.byteLength>e.maxLengthLength)throw new is("message length length too long");if(a>-1)break}if(e?.maxDataLength!=null&&a>e.maxDataLength)throw new ns("message length too long");return t.read(a,o)},write:async(o,a)=>{await t.write(new et(i(o.byteLength),o),a)},writeV:async(o,a)=>{let c=new et(...o.flatMap(h=>[i(h.byteLength),h]));await t.write(c,a)},unwrap:()=>t.unwrap()}}function qt(r,e){let t=Fu(r,e),n={read:async(i,s)=>{let o=await t.read(s);return i.decode(o)},write:async(i,s,o)=>{await t.write(s.encode(i),o)},writeV:async(i,s,o)=>{await t.writeV(i.map(a=>s.encode(a)),o)},pb:i=>({read:async s=>n.read(i,s),write:async(s,o)=>n.write(s,i,o),writeV:async(s,o)=>n.writeV(s,i,o),unwrap:()=>n}),unwrap:()=>t.unwrap()};return n}var Ia=1e3,Ku=60*Ia,ss=290,qu=15,zu=2*60*Ku,$u=1,os=2e3,Gu=100,Ta="circuit-relay-source",pn=`${Vs}-circuit-relay`,ka=`${Vs}-circuit-relay-source`,Wu=2*Ku,Zu=BigInt(1<<17),We="/libp2p/circuit/relay/0.2.0/hop",ir="/libp2p/circuit/relay/0.2.0/stop",ju=30*Ia,C1=30*Ia,mn=300,Yu=4096,Xu=.001;var X;(function(r){let e;(function(i){i.RESERVE="RESERVE",i.CONNECT="CONNECT",i.STATUS="STATUS"})(e=r.Type||(r.Type={}));let t;(function(i){i[i.RESERVE=0]="RESERVE",i[i.CONNECT=1]="CONNECT",i[i.STATUS=2]="STATUS"})(t||(t={})),function(i){i.codec=()=>tr(t)}(e=r.Type||(r.Type={}));let n;r.codec=()=>(n==null&&(n=Pe((i,s,o={})=>{o.lengthDelimited!==!1&&s.fork(),i.type!=null&&(s.uint32(8),r.Type.codec().encode(i.type,s)),i.peer!=null&&(s.uint32(18),Cr.codec().encode(i.peer,s)),i.reservation!=null&&(s.uint32(26),as.codec().encode(i.reservation,s)),i.limit!=null&&(s.uint32(34),Nr.codec().encode(i.limit,s)),i.status!=null&&(s.uint32(40),K.codec().encode(i.status,s)),o.lengthDelimited!==!1&&s.ldelim()},(i,s,o={})=>{let a={},c=s==null?i.len:i.pos+s;for(;i.pos<c;){let h=i.uint32();switch(h>>>3){case 1:{a.type=r.Type.codec().decode(i);break}case 2:{a.peer=Cr.codec().decode(i,i.uint32(),{limits:o.limits?.peer});break}case 3:{a.reservation=as.codec().decode(i,i.uint32(),{limits:o.limits?.reservation});break}case 4:{a.limit=Nr.codec().decode(i,i.uint32(),{limits:o.limits?.limit});break}case 5:{a.status=K.codec().decode(i);break}default:{i.skipType(h&7);break}}}return a})),n),r.encode=i=>Me(i,r.codec()),r.decode=(i,s)=>Oe(i,r.codec(),s)})(X||(X={}));var Ke;(function(r){let e;(function(i){i.CONNECT="CONNECT",i.STATUS="STATUS"})(e=r.Type||(r.Type={}));let t;(function(i){i[i.CONNECT=0]="CONNECT",i[i.STATUS=1]="STATUS"})(t||(t={})),function(i){i.codec=()=>tr(t)}(e=r.Type||(r.Type={}));let n;r.codec=()=>(n==null&&(n=Pe((i,s,o={})=>{o.lengthDelimited!==!1&&s.fork(),i.type!=null&&(s.uint32(8),r.Type.codec().encode(i.type,s)),i.peer!=null&&(s.uint32(18),Cr.codec().encode(i.peer,s)),i.limit!=null&&(s.uint32(26),Nr.codec().encode(i.limit,s)),i.status!=null&&(s.uint32(32),K.codec().encode(i.status,s)),o.lengthDelimited!==!1&&s.ldelim()},(i,s,o={})=>{let a={},c=s==null?i.len:i.pos+s;for(;i.pos<c;){let h=i.uint32();switch(h>>>3){case 1:{a.type=r.Type.codec().decode(i);break}case 2:{a.peer=Cr.codec().decode(i,i.uint32(),{limits:o.limits?.peer});break}case 3:{a.limit=Nr.codec().decode(i,i.uint32(),{limits:o.limits?.limit});break}case 4:{a.status=K.codec().decode(i);break}default:{i.skipType(h&7);break}}}return a})),n),r.encode=i=>Me(i,r.codec()),r.decode=(i,s)=>Oe(i,r.codec(),s)})(Ke||(Ke={}));var Cr;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{if(i.lengthDelimited!==!1&&n.fork(),t.id!=null&&t.id.byteLength>0&&(n.uint32(10),n.bytes(t.id)),t.addrs!=null)for(let s of t.addrs)n.uint32(18),n.bytes(s);i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={id:ae(0),addrs:[]},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.id=t.bytes();break}case 2:{if(i.limits?.addrs!=null&&s.addrs.length===i.limits.addrs)throw new Xr('Decode error - map field "addrs" had too many elements');s.addrs.push(t.bytes());break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Cr||(Cr={}));var as;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{if(i.lengthDelimited!==!1&&n.fork(),t.expire!=null&&t.expire!==0n&&(n.uint32(8),n.uint64(t.expire)),t.addrs!=null)for(let s of t.addrs)n.uint32(18),n.bytes(s);t.voucher!=null&&(n.uint32(26),cs.codec().encode(t.voucher,n)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={expire:0n,addrs:[]},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.expire=t.uint64();break}case 2:{if(i.limits?.addrs!=null&&s.addrs.length===i.limits.addrs)throw new Xr('Decode error - map field "addrs" had too many elements');s.addrs.push(t.bytes());break}case 3:{s.voucher=cs.codec().decode(t,t.uint32(),{limits:i.limits?.voucher});break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(as||(as={}));var Nr;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),t.duration!=null&&(n.uint32(8),n.uint32(t.duration)),t.data!=null&&(n.uint32(16),n.uint64(t.data)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.duration=t.uint32();break}case 2:{s.data=t.uint64();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Nr||(Nr={}));var K;(function(r){r.UNUSED="UNUSED",r.OK="OK",r.RESERVATION_REFUSED="RESERVATION_REFUSED",r.RESOURCE_LIMIT_EXCEEDED="RESOURCE_LIMIT_EXCEEDED",r.PERMISSION_DENIED="PERMISSION_DENIED",r.CONNECTION_FAILED="CONNECTION_FAILED",r.NO_RESERVATION="NO_RESERVATION",r.MALFORMED_MESSAGE="MALFORMED_MESSAGE",r.UNEXPECTED_MESSAGE="UNEXPECTED_MESSAGE"})(K||(K={}));var Ca;(function(r){r[r.UNUSED=0]="UNUSED",r[r.OK=100]="OK",r[r.RESERVATION_REFUSED=200]="RESERVATION_REFUSED",r[r.RESOURCE_LIMIT_EXCEEDED=201]="RESOURCE_LIMIT_EXCEEDED",r[r.PERMISSION_DENIED=202]="PERMISSION_DENIED",r[r.CONNECTION_FAILED=203]="CONNECTION_FAILED",r[r.NO_RESERVATION=204]="NO_RESERVATION",r[r.MALFORMED_MESSAGE=400]="MALFORMED_MESSAGE",r[r.UNEXPECTED_MESSAGE=401]="UNEXPECTED_MESSAGE"})(Ca||(Ca={}));(function(r){r.codec=()=>tr(Ca)})(K||(K={}));var Rr;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),t.relay!=null&&t.relay.byteLength>0&&(n.uint32(10),n.bytes(t.relay)),t.peer!=null&&t.peer.byteLength>0&&(n.uint32(18),n.bytes(t.peer)),t.expiration!=null&&t.expiration!==0n&&(n.uint32(24),n.uint64(t.expiration)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={relay:ae(0),peer:ae(0),expiration:0n},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.relay=t.bytes();break}case 2:{s.peer=t.bytes();break}case 3:{s.expiration=t.uint64();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(Rr||(Rr={}));var cs;(function(r){let e;r.codec=()=>(e==null&&(e=Pe((t,n,i={})=>{i.lengthDelimited!==!1&&n.fork(),t.publicKey!=null&&t.publicKey.byteLength>0&&(n.uint32(10),n.bytes(t.publicKey)),t.payloadType!=null&&t.payloadType.byteLength>0&&(n.uint32(18),n.bytes(t.payloadType)),t.payload!=null&&(n.uint32(26),Rr.codec().encode(t.payload,n)),t.signature!=null&&t.signature.byteLength>0&&(n.uint32(42),n.bytes(t.signature)),i.lengthDelimited!==!1&&n.ldelim()},(t,n,i={})=>{let s={publicKey:ae(0),payloadType:ae(0),signature:ae(0)},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let a=t.uint32();switch(a>>>3){case 1:{s.publicKey=t.bytes();break}case 2:{s.payloadType=t.bytes();break}case 3:{s.payload=Rr.codec().decode(t,t.uint32(),{limits:i.limits?.payload});break}case 5:{s.signature=t.bytes();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>Me(t,r.codec()),r.decode=(t,n)=>Oe(t,r.codec(),n)})(cs||(cs={}));var i0=r=>r.toString().split("/").slice(1),Lr=r=>({match:e=>e.length<1?!1:r(e[0])?e.slice(1):!1,pattern:"fn"}),F=r=>({match:e=>Lr(t=>t===r).match(e),pattern:r}),sr=()=>({match:r=>Lr(e=>typeof e=="string").match(r),pattern:"{string}"}),gn=()=>({match:r=>Lr(e=>!isNaN(parseInt(e))).match(r),pattern:"{number}"}),Q=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{ee.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),yn=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{No.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),W=r=>({match:e=>{let t=r.match(e);return t===!1?e:t},pattern:`optional(${r.pattern})`}),Ie=(...r)=>({match:e=>{let t;for(let n of r){let i=n.match(e);i!==!1&&(t==null||i.length<t.length)&&(t=i)}return t??!1},pattern:`or(${r.map(e=>e.pattern).join(", ")})`}),q=(...r)=>({match:e=>{for(let t of r){let n=t.match(e);if(n===!1)return!1;e=n}return e},pattern:`and(${r.map(e=>e.pattern).join(", ")})`});function ne(...r){function e(i){let s=i0(i);for(let o of r){let a=o.match(s);if(a===!1)return!1;s=a}return s}function t(i){return e(i)!==!1}function n(i){let s=e(i);return s===!1?!1:s.length===0}return{matchers:r,matches:t,exactMatch:n}}var us=q(F("dns4"),sr()),fs=q(F("dns6"),sr()),hs=q(F("dnsaddr"),sr()),Ra=q(F("dns"),sr()),H1=ne(us,W(Q())),F1=ne(fs,W(Q())),K1=ne(hs,W(Q())),q1=ne(Ie(Ra,hs,us,fs),W(Q())),Ju=q(F("ip4"),Lr(ji)),Qu=q(F("ip6"),Lr(Yi)),La=Ie(Ju,Qu),Tt=Ie(La,Ra,us,fs,hs),z1=ne(Ie(La,q(Ie(Ra,hs,us,fs),W(Q())))),$1=ne(Ju),G1=ne(Qu),W1=ne(La),Ua=q(Tt,F("tcp"),gn()),bn=q(Tt,F("udp"),gn()),Z1=ne(q(Ua,W(Q()))),j1=ne(bn),Da=q(bn,F("quic"),W(Q())),ds=q(bn,F("quic-v1"),W(Q())),s0=Ie(Da,ds),Y1=ne(Da),X1=ne(ds),Na=Ie(Tt,Ua,bn,Da,ds),ef=Ie(q(Na,F("ws"),W(Q()))),J1=ne(ef),tf=Ie(q(Na,F("wss"),W(Q())),q(Na,F("tls"),W(q(F("sni"),sr())),F("ws"),W(Q()))),Q1=ne(tf),rf=q(bn,F("webrtc-direct"),W(yn()),W(yn()),W(Q())),ev=ne(rf),nf=q(ds,F("webtransport"),W(yn()),W(yn()),W(Q())),tv=ne(nf),ls=Ie(ef,tf,q(Ua,W(Q())),q(s0,W(Q())),q(Tt,W(Q())),rf,nf,Q()),sf=ne(ls),o0=q(ls,F("p2p-circuit"),Q()),ps=ne(o0),a0=Ie(q(ls,F("p2p-circuit"),F("webrtc"),W(Q())),q(ls,F("webrtc"),W(Q())),q(F("webrtc"),W(Q()))),rv=ne(a0),c0=Ie(q(Tt,F("tcp"),gn(),F("http"),W(Q())),q(Tt,F("http"),W(Q()))),nv=ne(c0),l0=Ie(q(Tt,F("tcp"),Ie(q(F("443"),F("http")),q(gn(),F("https"))),W(Q())),q(Tt,F("tls"),F("http"),W(Q())),q(Tt,F("https"),W(Q()))),iv=ne(l0),u0=Ie(q(F("memory"),sr(),W(Q()))),sv=ne(u0);function ms(r){let e=new globalThis.AbortController;function t(){e.abort();for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",t)}for(let s of r){if(s?.aborted===!0){t();break}s?.addEventListener!=null&&s.addEventListener("abort",t)}function n(){for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",t)}let i=e.signal;return i.clear=n,i}var gs=class extends Error{constructor(e="Transfer limit error"){super(e),this.name="TransferLimitError"}},wn=class extends Error{constructor(e="Duration limit error"){super(e),this.name="DurationLimitError"}},xn=class extends Error{static name="HadEnoughRelaysError";name="HadEnoughRelaysError"},ys=class extends Error{static name="DoubleRelayError";name="DoubleRelayError"},bs=class extends Error{static name="RelayQueueFullError";name="RelayQueueFullError"};async function*of(r,e,t){let n=e.remaining;for await(let i of r){let s=BigInt(i.byteLength);if(e.remaining-s<0){let o=Number(e.remaining);e.remaining=0n;try{o!==0&&(yield i.subarray(0,o))}catch(a){t.log.error(a)}throw new gs(`data limit of ${n} bytes exceeded`)}e.remaining-=s,yield i}}function af(r,e,t,n,i){function s(u){r.abort(u),e.abort(u)}let o=[t,n.signal];n.limit?.duration!=null&&(i.log("limiting relayed connection duration to %dms",n.limit.duration),o.push(AbortSignal.timeout(n.limit.duration)));let a=ms(o),c=!1,h=!1,f;n.limit?.data!=null&&(f={remaining:n.limit.data}),queueMicrotask(()=>{let u=()=>{i.log("relayed connection reached time limit"),e.abort(new wn(`duration limit of ${n.limit?.duration} ms exceeded`))};a.addEventListener("abort",u,{once:!0}),e.sink(f==null?r.source:of(r.source,f,i)).catch(g=>{i.log.error("error while relaying streams src -> dst",g),s(g)}).finally(()=>{c=!0,h&&(a.removeEventListener("abort",u),a.clear())})}),queueMicrotask(()=>{let u=()=>{i.log("relayed connection reached time limit"),r.abort(new wn(`duration limit of ${n.limit?.duration} ms exceeded`))};a.addEventListener("abort",u,{once:!0}),r.sink(f==null?e.source:of(e.source,f,i)).catch(g=>{i.log.error("error while relaying streams dst -> src",g),s(g)}).finally(()=>{h=!0,c&&(a.removeEventListener("abort",u),a.clear())})})}function Oa(r){let e=r*BigInt(1e3),t=new Date().getTime();return Number(e-BigInt(t))}var vn=class{expires;bytes;constructor(e){e?.duration!=null&&e?.duration!==0&&(this.expires=Date.now()+e.duration*1e3),this.bytes=e?.data,this.bytes===0n&&(this.bytes=void 0),this.onData=this.onData.bind(this)}onData(e){this.bytes!=null&&(this.bytes-=BigInt(e.byteLength),this.bytes<0n&&(this.bytes=0n))}getLimits(){if(this.expires==null&&this.bytes==null)return;let e={};if(this.bytes!=null){let t=this;Object.defineProperty(e,"bytes",{get(){return t.bytes}})}if(this.expires!=null){let t=this;Object.defineProperty(e,"seconds",{get(){return Math.round(((t.expires??0)-Date.now())/1e3)}})}return e}},ws=ne(q(sf.matchers[0],F("p2p-circuit"))),xs=ne(F("p2p-circuit"));function vs(r,e){let t={[Symbol.iterator]:()=>t,next:()=>{let n=r.next(),i=n.value;return n.done===!0||i==null?{done:!0,value:void 0}:{done:!1,value:e(i)}}};return t}var zt=class{map;constructor(e){if(this.map=new Map,e!=null)for(let[t,n]of e.entries())this.map.set(t.toString(),{key:t,value:n})}[Symbol.iterator](){return this.entries()}clear(){this.map.clear()}delete(e){return this.map.delete(e.toString())}entries(){return vs(this.map.entries(),e=>[e[1].key,e[1].value])}forEach(e){this.map.forEach((t,n)=>{e(t.value,t.key,this)})}get(e){return this.map.get(e.toString())?.value}has(e){return this.map.has(e.toString())}set(e,t){this.map.set(e.toString(),{key:e,value:t})}keys(){return vs(this.map.values(),e=>e.key)}values(){return vs(this.map.values(),e=>e.value)}get size(){return this.map.size}};var Ma=64,rt=class{fp;h;seed;constructor(e,t,n,i=2){if(i>Ma)throw new TypeError("Invalid Fingerprint Size");let s=t.hashV(e,n),o=ae(i);for(let a=0;a<o.length;a++)o[a]=s[a];o.length===0&&(o[0]=7),this.fp=o,this.h=t,this.seed=n}hash(){return this.h.hash(this.fp,this.seed)}equals(e){return e?.fp instanceof Uint8Array?me(this.fp,e.fp):!1}};function or(r,e){return Math.floor(Math.random()*(e-r))+r}var ar=class{contents;constructor(e){this.contents=new Array(e).fill(null)}has(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");return this.contents.some(t=>e.equals(t))}add(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");for(let t=0;t<this.contents.length;t++)if(this.contents[t]==null)return this.contents[t]=e,!0;return!0}swap(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");let t=or(0,this.contents.length-1),n=this.contents[t];return this.contents[t]=e,n}remove(e){if(!(e instanceof rt))throw new TypeError("Invalid Fingerprint");let t=this.contents.findIndex(n=>e.equals(n));return t>-1?(this.contents[t]=null,!0):!1}};var Pa={32:16777619n,64:1099511628211n,128:309485009821345068724781371n,256:374144419156711147060143317175368453031918731002211n,512:35835915874844867368919076489095108449946327955754392558399825615420669938882575126094039892345713852759n,1024:5016456510113118655434598811035278955030765345404790744303017523831112055108147451509157692220295382716162651878526895249385292291816524375083746691371804094271873160484737966720260389217684476157468082573n},ff={32:2166136261n,64:14695981039346656037n,128:144066263297769815596495629667062367629n,256:100029257958052580907070968620625704837092796014241193945225284501741471925557n,512:9659303129496669498009435400716310466090418745672637896108374329434462657994582932197716438449813051892206539805784495328239340083876191928701583869517785n,1024:14197795064947621068722070641403218320880622795441933960878474914617582723252296732303717722150864096521202355549365628174669108571814760471015076148029755969804077320157692458563003215304957150157403644460363550505412711285966361610267868082893823963790439336411086884584107735010676915n},hf=new globalThis.TextEncoder;function f0(r,e){let t=Pa[e],n=ff[e];for(let i=0;i<r.length;i++)n^=BigInt(r[i]),n=BigInt.asUintN(e,n*t);return n}function h0(r,e,t){if(t.length===0)throw new Error("The `utf8Buffer` option must have a length greater than zero");let n=Pa[e],i=ff[e],s=r;for(;s.length>0;){let o=hf.encodeInto(s,t);s=s.slice(o.read);for(let a=0;a<o.written;a++)i^=BigInt(t[a]),i=BigInt.asUintN(e,i*n)}return i}function Va(r,{size:e=32,utf8Buffer:t}={}){if(!Pa[e])throw new Error("The `size` option must be one of 32, 64, 128, 256, 512, or 1024");if(typeof r=="string"){if(t)return h0(r,e,t);r=hf.encode(r)}return f0(r,e)}var d0=sc(uf(),1);var Sn={hash:r=>Number(Va(r,{size:32})),hashV:(r,e)=>p0(Sn.hash(r,e))};function p0(r){let e=r.toString(16);return e.length%2===1&&(e=`0${e}`),G(e,"base16")}var m0=500,An=class{bucketSize;filterSize;fingerprintSize;buckets;count;hash;seed;constructor(e){this.filterSize=e.filterSize,this.bucketSize=e.bucketSize??4,this.fingerprintSize=e.fingerprintSize??2,this.count=0,this.buckets=[],this.hash=e.hash??Sn,this.seed=e.seed??or(0,Math.pow(2,10))}add(e){typeof e=="string"&&(e=G(e));let t=new rt(e,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(e,this.seed)%this.filterSize,i=(n^t.hash())%this.filterSize;if(this.buckets[n]==null&&(this.buckets[n]=new ar(this.bucketSize)),this.buckets[i]==null&&(this.buckets[i]=new ar(this.bucketSize)),this.buckets[n].add(t)||this.buckets[i].add(t))return this.count++,!0;let s=[n,i],o=s[or(0,s.length-1)];this.buckets[o]==null&&(this.buckets[o]=new ar(this.bucketSize));for(let a=0;a<m0;a++){let c=this.buckets[o].swap(t);if(c!=null&&(o=(o^c.hash())%this.filterSize,this.buckets[o]==null&&(this.buckets[o]=new ar(this.bucketSize)),this.buckets[o].add(c)))return this.count++,!0}return!1}has(e){typeof e=="string"&&(e=G(e));let t=new rt(e,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(e,this.seed)%this.filterSize,i=this.buckets[n]?.has(t)??!1;if(i)return i;let s=(n^t.hash())%this.filterSize;return this.buckets[s]?.has(t)??!1}remove(e){typeof e=="string"&&(e=G(e));let t=new rt(e,this.hash,this.seed,this.fingerprintSize),n=this.hash.hash(e,this.seed)%this.filterSize,i=this.buckets[n]?.remove(t)??!1;if(i)return this.count--,i;let s=(n^t.hash())%this.filterSize,o=this.buckets[s]?.remove(t)??!1;return o&&this.count--,o}get reliable(){return Math.floor(100*(this.count/this.filterSize))<=90}},g0={1:.5,2:.84,4:.95,8:.98};function y0(r=.001){return r>.002?2:r>1e-5?4:8}function df(r,e=.001){let t=y0(e),n=g0[t],i=Math.round(r/n),s=Math.min(Math.ceil(Math.log2(1/e)+Math.log2(2*t)),Ma);return{filterSize:i,bucketSize:t,fingerprintSize:s}}var Ss=class{filterSize;bucketSize;fingerprintSize;scale;filterSeries;hash;seed;constructor(e){this.bucketSize=e.bucketSize??4,this.filterSize=e.filterSize??(1<<18)/this.bucketSize,this.fingerprintSize=e.fingerprintSize??2,this.scale=e.scale??2,this.hash=e.hash??Sn,this.seed=e.seed??or(0,Math.pow(2,10)),this.filterSeries=[new An({filterSize:this.filterSize,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed})]}add(e){if(typeof e=="string"&&(e=G(e)),this.has(e))return!0;let t=this.filterSeries.find(n=>n.reliable);if(t==null){let n=this.filterSize*Math.pow(this.scale,this.filterSeries.length);t=new An({filterSize:n,bucketSize:this.bucketSize,fingerprintSize:this.fingerprintSize,hash:this.hash,seed:this.seed}),this.filterSeries.push(t)}return t.add(e)}has(e){typeof e=="string"&&(e=G(e));for(let t=0;t<this.filterSeries.length;t++)if(this.filterSeries[t].has(e))return!0;return!1}remove(e){typeof e=="string"&&(e=G(e));for(let t=0;t<this.filterSeries.length;t++)if(this.filterSeries[t].remove(e))return!0;return!1}get count(){return this.filterSeries.reduce((e,t)=>e+t.count,0)}};function Ur(r,e=.001,t){return new Ss({...df(r,e),...t??{}})}var As=class{filter;constructor(e,t){this.filter=Ur(e,t)}has(e){return this.filter.has(e.toMultihash().bytes)}add(e){this.filter.add(e.toMultihash().bytes)}remove(e){this.filter.remove?.(e.toMultihash().bytes)}};function Ha(r,e=.001){return new As(r,e)}var Fa=class extends zt{metric;constructor(e){super();let{name:t,metrics:n}=e;this.metric=n.registerMetric(t),this.updateComponentMetric()}set(e,t){return super.set(e,t),this.updateComponentMetric(),this}delete(e){let t=super.delete(e);return this.updateComponentMetric(),t}clear(){super.clear(),this.updateComponentMetric()}updateComponentMetric(){this.metric.update(this.size)}};function Ka(r){let{name:e,metrics:t}=r,n;return t!=null?n=new Fa({name:e,metrics:t}):n=new zt,n}var qa=class extends Error{type;code;constructor(e,t,n){super(e??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=t??"ABORT_ERR"}};function pf(r,e){let t=new qa(e?.errorMessage,e?.errorCode,e?.errorName),n=new AbortController,i=()=>{n.abort(t)},s=AbortSignal.timeout(r);s.addEventListener("abort",i);let o=n.signal;return o.reset=a=>{s?.removeEventListener("abort",i),s=AbortSignal.timeout(a??r),s.addEventListener("abort",()=>{n.abort(t)})},o.clear=()=>{s?.removeEventListener("abort",i),s=void 0},o}var Bs=class{reservations;maxReservations;applyDefaultLimit;reservationTtl;defaultDurationLimit;defaultDataLimit;log;constructor(e,t={}){this.log=e.logger.forComponent("libp2p:circuit-relay:server:reservation-store"),this.maxReservations=t.maxReservations??qu,this.applyDefaultLimit=t.applyDefaultLimit!==!1,this.reservationTtl=t.reservationTtl??zu,this.defaultDurationLimit=t.defaultDurationLimit??Wu,this.defaultDataLimit=t.defaultDataLimit??Zu,this.reservations=Ka({metrics:e.metrics,name:"libp2p_circuit_relay_server_reservations_total"})}reserve(e,t,n){let i=this.reservations.get(e);if(this.reservations.size>=this.maxReservations&&i==null)return{status:K.RESERVATION_REFUSED};let s=new Date(Date.now()+this.reservationTtl),o;return this.applyDefaultLimit&&(o=n??{data:this.defaultDataLimit,duration:this.defaultDurationLimit}),i!=null?(this.log("refreshing reservation for client %p",e),i.signal.reset(this.reservationTtl)):(this.log("creating new reservation for client %p",e),i={addr:t,expiry:s,limit:o,signal:pf(this.reservationTtl)}),this.reservations.set(e,i),i.signal.addEventListener("abort",()=>{this.reservations.delete(e)}),{status:K.OK,expire:Math.round(s.getTime()/1e3)}}removeReservation(e){this.reservations.delete(e)}get(e){return this.reservations.get(e)}clear(){this.reservations.clear()}};var _s=class r{domain="libp2p-relay-rsvp";codec=new Uint8Array([3,2]);relay;peer;expiration;constructor({relay:e,peer:t,expiration:n}){this.relay=e,this.peer=t,this.expiration=n}marshal(){return Rr.encode({relay:this.relay.toMultihash().bytes,peer:this.peer.toMultihash().bytes,expiration:BigInt(this.expiration)})}equals(e){return!(!(e instanceof r)||!this.peer.equals(e.peer)||!this.relay.equals(e.relay)||this.expiration!==e.expiration)}};var mf=r=>r.protoCodes().includes(ss),b0={maxOutboundStopStreams:mn},za=class extends qe{registrar;peerStore;addressManager;peerId;privateKey;connectionManager;connectionGater;reservationStore;started;hopTimeout;shutdownController;maxInboundHopStreams;maxOutboundHopStreams;maxOutboundStopStreams;log;constructor(e,t={}){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:server"),this.registrar=e.registrar,this.peerStore=e.peerStore,this.addressManager=e.addressManager,this.peerId=e.peerId,this.privateKey=e.privateKey,this.connectionManager=e.connectionManager,this.connectionGater=e.connectionGater,this.started=!1,this.hopTimeout=t?.hopTimeout??ju,this.maxInboundHopStreams=t.maxInboundHopStreams,this.maxOutboundHopStreams=t.maxOutboundHopStreams,this.maxOutboundStopStreams=t.maxOutboundStopStreams??b0.maxOutboundStopStreams,this.reservationStore=new Bs(e,t.reservations),this.shutdownController=new AbortController,Re(1/0,this.shutdownController.signal)}[Symbol.toStringTag]="@libp2p/circuit-relay-v2-server";isStarted(){return this.started}async start(){this.started||(await this.registrar.handle(We,e=>{this.onHop(e).catch(t=>{this.log.error(t)})},{maxInboundStreams:this.maxInboundHopStreams,maxOutboundStreams:this.maxOutboundHopStreams,runOnLimitedConnection:!0}),this.started=!0)}async stop(){this.reservationStore.clear(),this.shutdownController.abort(),await this.registrar.unhandle(We),this.started=!1}async onHop({connection:e,stream:t}){this.log("received circuit v2 hop protocol stream from %p",e.remotePeer);let n={signal:AbortSignal.timeout(this.hopTimeout)},i=qt(t);try{let s=await i.pb(X).read(n);if(s?.type==null)throw new Error("request was invalid, could not read from stream");this.log("received",s.type),await this.handleHopProtocol({connection:e,stream:i,request:s},n)}catch(s){this.log.error("error while handling hop",s),await i.pb(X).write({type:X.Type.STATUS,status:K.MALFORMED_MESSAGE},n),t.abort(s)}}async handleHopProtocol({stream:e,request:t,connection:n},i){switch(this.log("received hop message"),t.type){case X.Type.RESERVE:await this.handleReserve({stream:e,request:t,connection:n},i);break;case X.Type.CONNECT:await this.handleConnect({stream:e,request:t,connection:n},i);break;default:this.log.error("invalid hop request type %s via peer %p",t.type,n.remotePeer),await e.pb(X).write({type:X.Type.STATUS,status:K.UNEXPECTED_MESSAGE})}}async handleReserve({stream:e,connection:t},n){let i=e.pb(X);if(this.log("hop reserve request from %p",t.remotePeer),mf(t.remoteAddr)){this.log.error("relay reservation over circuit connection denied for peer: %p",t.remotePeer),await i.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},n);return}if(await this.connectionGater.denyInboundRelayReservation?.(t.remotePeer)===!0){this.log.error("reservation for %p denied by connection gater",t.remotePeer),await i.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},n);return}let s=this.reservationStore.reserve(t.remotePeer,t.remoteAddr);try{if(s.status!==K.OK){await i.write({type:X.Type.STATUS,status:s.status},n);return}if(s.expire!=null){let o=s.expire*1e3-Date.now();await this.peerStore.merge(t.remotePeer,{tags:{[Ta]:{value:1,ttl:o},[ka]:{value:1,ttl:o}}})}await i.write({type:X.Type.STATUS,status:K.OK,reservation:await this.makeReservation(t.remotePeer,BigInt(s.expire??0)),limit:this.reservationStore.get(t.remotePeer)?.limit},n),this.log("sent confirmation response to %s",t.remotePeer)}catch(o){this.log.error("failed to send confirmation response to %p - %e",t.remotePeer,o),this.reservationStore.removeReservation(t.remotePeer);try{await this.peerStore.merge(t.remotePeer,{tags:{[Ta]:void 0,[ka]:void 0}})}catch(a){this.log.error("failed to untag relay source peer %p - %e",t.remotePeer,a)}}}async makeReservation(e,t){let n=[];for(let s of this.addressManager.getAddresses())s.toString().includes("/p2p-circuit")||n.push(s.bytes);let i=await dn.seal(new _s({peer:e,relay:this.peerId,expiration:t}),this.privateKey);return{addrs:n,expire:t,voucher:{publicKey:Ot(i.publicKey),payloadType:i.payloadType,payload:{peer:e.toMultihash().bytes,relay:this.peerId.toMultihash().bytes,expiration:t},signature:i.signature}}}async handleConnect({stream:e,request:t,connection:n},i){let s=e.pb(X);if(mf(n.remoteAddr)){this.log.error("relay reservation over circuit connection denied for peer: %p",n.remotePeer),await s.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},i);return}this.log("hop connect request from %p",n.remotePeer);let o;try{if(t.peer==null)throw this.log.error("no peer info in hop connect request"),new Error("no peer info in request");t.peer.addrs.forEach(_e),o=fn(ze(t.peer.id))}catch(g){this.log.error("invalid hop connect request via peer %p %s",n.remotePeer,g),await s.write({type:X.Type.STATUS,status:K.MALFORMED_MESSAGE},i);return}let a=this.reservationStore.get(o);if(a==null){this.log.error("hop connect denied for destination peer %p not having a reservation for %p with status %s",o,n.remotePeer,K.NO_RESERVATION),await s.write({type:X.Type.STATUS,status:K.NO_RESERVATION},i);return}if(await this.connectionGater.denyOutboundRelayedConnection?.(n.remotePeer,o)===!0){this.log.error("hop connect for %p to %p denied by connection gater",n.remotePeer,o),await s.write({type:X.Type.STATUS,status:K.PERMISSION_DENIED},i);return}let c=this.connectionManager.getConnections(o);if(c.length===0){this.log("hop connect denied for destination peer %p not having a connection for %p as there is no destination connection",o,n.remotePeer),await s.write({type:X.Type.STATUS,status:K.NO_RESERVATION},i);return}let h=c[0],f=await this.stopHop({connection:h,request:{type:Ke.Type.CONNECT,peer:{id:n.remotePeer.toMultihash().bytes,addrs:[]},limit:a?.limit}},i);if(f==null){this.log.error("failed to open stream to destination peer %p",h?.remotePeer),await s.write({type:X.Type.STATUS,status:K.CONNECTION_FAILED},i);return}await s.write({type:X.Type.STATUS,status:K.OK,limit:a?.limit},i);let u=e.unwrap();this.log("connection from %p to %p established - merging streams",n.remotePeer,o),af(u,f,this.shutdownController.signal,a,{log:this.log})}async stopHop({connection:e,request:t},n){this.log("starting circuit relay v2 stop request to %s",e.remotePeer);let i=await e.newStream([ir],{maxOutboundStreams:this.maxOutboundStopStreams,runOnLimitedConnection:!0,...n}),s=qt(i),o=s.pb(Ke);await o.write(t,n);let a;try{a=await o.read(n)}catch{this.log.error("error parsing stop message response from %p",e.remotePeer)}if(a==null){this.log.error("could not read response from %p",e.remotePeer),await i.close(n);return}if(a.status===K.OK)return this.log("stop request to %p was successful",e.remotePeer),s.unwrap();this.log("stop request failed with code %d",a.status),await i.close(n)}get reservations(){return this.reservationStore.reservations}};function gf(r={}){return e=>new za(e,r)}function w0(r){let[e,t]=r[Symbol.asyncIterator]!=null?[r[Symbol.asyncIterator](),Symbol.asyncIterator]:[r[Symbol.iterator](),Symbol.iterator],n=[];return{peek:()=>e.next(),push:i=>{n.push(i)},next:()=>n.length>0?{done:!1,value:n.shift()}:e.next(),[t](){return this}}}var yf=w0;function x0(r){return r[Symbol.asyncIterator]!=null}function bf(r){return r?.then!=null}function v0(r,e){let t=0;if(x0(r))return async function*(){for await(let c of r){let h=e(c,t++);bf(h)&&await h,yield c}}();let n=yf(r),{value:i,done:s}=n.next();if(s===!0)return function*(){}();if(typeof e(i,t++)?.then=="function")return async function*(){yield i;for await(let c of n){let h=e(c,t++);bf(h)&&await h,yield c}}();let a=e;return function*(){yield i;for(let c of n)a(c,t++),yield c}()}var wf=v0;var Is=class{buffer;mask;top;btm;next;constructor(e){if(!(e>0)||e-1&e)throw new Error("Max size for a FixedFIFO should be a power of two");this.buffer=new Array(e),this.mask=e-1,this.top=0,this.btm=0,this.next=null}push(e){return this.buffer[this.top]!==void 0?!1:(this.buffer[this.top]=e,this.top=this.top+1&this.mask,!0)}shift(){let e=this.buffer[this.btm];if(e!==void 0)return this.buffer[this.btm]=void 0,this.btm=this.btm+1&this.mask,e}isEmpty(){return this.buffer[this.btm]===void 0}},Dr=class{size;hwm;head;tail;constructor(e={}){this.hwm=e.splitLimit??16,this.head=new Is(this.hwm),this.tail=this.head,this.size=0}calculateSize(e){return e?.byteLength!=null?e.byteLength:1}push(e){if(e?.value!=null&&(this.size+=this.calculateSize(e.value)),!this.head.push(e)){let t=this.head;this.head=t.next=new Is(2*this.head.buffer.length),this.head.push(e)}}shift(){let e=this.tail.shift();if(e===void 0&&this.tail.next!=null){let t=this.tail.next;this.tail.next=null,this.tail=t,e=this.tail.shift()}return e?.value!=null&&(this.size-=this.calculateSize(e.value)),e}isEmpty(){return this.head.isEmpty()}};var $a=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.code=t??"ABORT_ERR"}};function Or(r={}){return E0(t=>{let n=t.shift();if(n==null)return{done:!0};if(n.error!=null)throw n.error;return{done:n.done===!0,value:n.value}},r)}function E0(r,e){e=e??{};let t=e.onEnd,n=new Dr,i,s,o,a=tt(),c=async()=>{try{return n.isEmpty()?o?{done:!0}:await new Promise((y,b)=>{s=w=>{s=null,n.push(w);try{y(r(n))}catch(p){b(p)}return i}}):r(n)}finally{n.isEmpty()&&queueMicrotask(()=>{a.resolve(),a=tt()})}},h=y=>s!=null?s(y):(n.push(y),i),f=y=>(n=new Dr,s!=null?s({error:y}):(n.push({error:y}),i)),u=y=>{if(o)return i;if(e?.objectMode!==!0&&y?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return h({done:!1,value:y})},g=y=>o?i:(o=!0,y!=null?f(y):h({done:!0})),l=()=>(n=new Dr,g(),{done:!0}),d=y=>(g(y),{done:!0});if(i={[Symbol.asyncIterator](){return this},next:c,return:l,throw:d,push:u,end:g,get readableLength(){return n.size},onEmpty:async y=>{let b=y?.signal;if(b?.throwIfAborted(),n.isEmpty())return;let w,p;b!=null&&(w=new Promise((E,A)=>{p=()=>{A(new $a)},b.addEventListener("abort",p)}));try{await Promise.race([a.promise,w])}finally{p!=null&&b!=null&&b?.removeEventListener("abort",p)}}},t==null)return i;let m=i;return i={[Symbol.asyncIterator](){return this},next(){return m.next()},throw(y){return m.throw(y),t!=null&&(t(y),t=void 0),{done:!0}},return(){return m.return(),t!=null&&(t(),t=void 0),{done:!0}},push:u,end(y){return m.end(y),t!=null&&(t(y),t=void 0),i},get readableLength(){return m.readableLength},onEmpty:y=>m.onEmpty(y)},i}function S0(r){return r[Symbol.asyncIterator]!=null}function A0(...r){let e=[];for(let t of r)S0(t)||e.push(t);return e.length===r.length?function*(){for(let t of e)yield*t}():async function*(){let t=Or({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async n=>{for await(let i of n)t.push(i)})),t.end()}catch(n){t.end(n)}}),yield*t}()}var xf=A0;function vf(r,...e){if(r==null)throw new Error("Empty pipeline");if(Ga(r)){let n=r;r=()=>n.source}else if(Sf(r)||Ef(r)){let n=r;r=()=>n}let t=[r,...e];if(t.length>1&&Ga(t[t.length-1])&&(t[t.length-1]=t[t.length-1].sink),t.length>2)for(let n=1;n<t.length-1;n++)Ga(t[n])&&(t[n]=_0(t[n]));return B0(...t)}var B0=(...r)=>{let e;for(;r.length>0;)e=r.shift()(e);return e},Ef=r=>r?.[Symbol.asyncIterator]!=null,Sf=r=>r?.[Symbol.iterator]!=null,Ga=r=>r==null?!1:r.sink!=null&&r.source!=null,_0=r=>e=>{let t=r.sink(e);if(t?.then!=null){let n=Or({objectMode:!0});t.then(()=>{n.end()},o=>{n.end(o)});let i,s=r.source;if(Ef(s))i=async function*(){yield*s,n.end()};else if(Sf(s))i=function*(){yield*s,n.end()};else throw new Error("Unknown duplex source type - must be Iterable or AsyncIterable");return xf(n,i())}return r.source};function Wa(r){let{stream:e,remoteAddr:t,logger:n,onDataRead:i,onDataWrite:s}=r,o=n.forComponent("libp2p:stream:converter"),a=!1,c=!1,h=e.close.bind(e);e.close=async d=>{await h(d),l(!0)};let f=e.abort.bind(e);e.abort=d=>{f(d),l(!0)};let u=e.sink.bind(e);e.sink=async d=>{try{await u(vf(d,m=>wf(m,y=>s?.(y))))}catch(m){m.type!=="aborted"&&o.error("%s error in sink",t,m)}finally{c=!0,l()}};let g={log:o,sink:e.sink,source:async function*(){try{for await(let d of e.source)i?.(d),yield d}finally{a=!0,l()}}(),remoteAddr:t,timeline:{open:Date.now(),close:void 0},close:e.close,abort:e.abort};function l(d){d===!0&&(a=!0,c=!0),a&&c&&g.timeline.close==null&&(g.timeline.close=Date.now())}return g}var $t=class extends Event{type;detail;constructor(e,t){super(e),this.type=e,this.detail=t}};var Za=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=t??"ABORT_ERR"}};async function Ts(r,e,t,n){let i=new Za(n?.errorMessage,n?.errorCode);return t?.aborted===!0?Promise.reject(i):new Promise((s,o)=>{function a(){t?.removeEventListener("abort",f),r.removeEventListener(e,c),n?.errorEvent!=null&&r.removeEventListener(n.errorEvent,h)}let c=u=>{try{if(n?.filter?.(u)===!1)return}catch(g){a(),o(g);return}a(),s(u)},h=u=>{a(),o(u.detail)},f=()=>{a(),o(i)};t?.addEventListener("abort",f),r.addEventListener(e,c),n?.errorEvent!=null&&r.addEventListener(n.errorEvent,h)})}var ks=class extends Error{static name="QueueFullError";constructor(e="The queue was full"){super(e),this.name="QueueFullError"}};var Cs=class{deferred;signal;constructor(e){this.signal=e,this.deferred=tt(),this.onAbort=this.onAbort.bind(this),this.signal?.addEventListener("abort",this.onAbort)}onAbort(){this.deferred.reject(this.signal?.reason??new ft)}cleanup(){this.signal?.removeEventListener("abort",this.onAbort)}};function I0(){return`${parseInt(String(Math.random()*1e9),10).toString()}${Date.now()}`}var Ns=class{id;fn;options;recipients;status;timeline;controller;constructor(e,t){this.id=I0(),this.status="queued",this.fn=e,this.options=t,this.recipients=[],this.timeline={created:Date.now()},this.controller=new AbortController,Re(1/0,this.controller.signal),this.onAbort=this.onAbort.bind(this)}abort(e){this.controller.abort(e)}onAbort(){this.recipients.reduce((t,n)=>t&&n.signal?.aborted===!0,!0)&&(this.controller.abort(new ft),this.cleanup())}async join(e={}){let t=new Cs(e.signal);return this.recipients.push(t),e.signal?.addEventListener("abort",this.onAbort),t.deferred.promise}async run(){this.status="running",this.timeline.started=Date.now();try{this.controller.signal.throwIfAborted();let e=await es(this.fn({...this.options??{},signal:this.controller.signal}),this.controller.signal);this.recipients.forEach(t=>{t.deferred.resolve(e)}),this.status="complete"}catch(e){this.recipients.forEach(t=>{t.deferred.reject(e)}),this.status="errored"}finally{this.timeline.finished=Date.now(),this.cleanup()}}cleanup(){this.recipients.forEach(e=>{e.cleanup(),e.signal?.removeEventListener("abort",this.onAbort)})}};var Rs=class extends qe{concurrency;maxSize;queue;pending;sort;constructor(e={}){super(),this.concurrency=e.concurrency??Number.POSITIVE_INFINITY,this.maxSize=e.maxSize??Number.POSITIVE_INFINITY,this.pending=0,e.metricName!=null&&e.metrics?.registerMetricGroup(e.metricName,{calculate:()=>({size:this.queue.length,running:this.pending,queued:this.queue.length-this.pending})}),this.sort=e.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 e;for(let t of this.queue)if(t.status==="queued"){e=t;break}return e==null?!1:(this.safeDispatchEvent("active"),this.pending++,e.run().finally(()=>{for(let t=0;t<this.queue.length;t++)if(this.queue[t]===e){this.queue.splice(t,1);break}this.pending--,this.tryToStartAnother(),this.safeDispatchEvent("next")}),!0)}return!1}enqueue(e){this.queue.push(e),this.sort!=null&&this.queue.sort(this.sort)}async add(e,t){if(t?.signal?.throwIfAborted(),this.size===this.maxSize)throw new ks;let n=new Ns(e,t);return this.enqueue(n),this.safeDispatchEvent("add"),this.tryToStartAnother(),n.join(t).then(i=>(this.safeDispatchEvent("completed",{detail:i}),this.safeDispatchEvent("success",{detail:{job:n,result:i}}),i)).catch(i=>{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:i}),this.safeDispatchEvent("failure",{detail:{job:n,error:i}}),i})}clear(){this.queue.splice(0,this.queue.length)}abort(){this.queue.forEach(e=>{e.abort(new ft)}),this.clear()}async onEmpty(e){this.size!==0&&await Ts(this,"empty",e?.signal)}async onSizeLessThan(e,t){this.size<e||await Ts(this,"next",t?.signal,{filter:()=>this.size<e})}async onIdle(e){this.pending===0&&this.size===0||await Ts(this,"idle",e?.signal)}get size(){return this.queue.length}get queued(){return this.queue.length-this.pending}get running(){return this.pending}async*toGenerator(e){e?.signal?.throwIfAborted();let t=Or({objectMode:!0}),n=c=>{c!=null?this.abort():this.clear(),t.end(c)},i=c=>{c.detail!=null&&t.push(c.detail)},s=c=>{n(c.detail)},o=()=>{n()},a=()=>{n(new ft("Queue aborted"))};this.addEventListener("completed",i),this.addEventListener("error",s),this.addEventListener("idle",o),e?.signal?.addEventListener("abort",a);try{yield*t}finally{this.removeEventListener("completed",i),this.removeEventListener("error",s),this.removeEventListener("idle",o),e?.signal?.removeEventListener("abort",a),n()}}};var Mr=class extends Rs{has(e){return this.find(e)!=null}find(e){return this.queue.find(t=>e.equals(t.options.peerId))}};var Ls=class extends qe{peerStore;registrar;connectionManager;randomWalk;started;running;topologyId;log;discoveryController;filter;queue;constructor(e,t={}){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:discover-relays"),this.started=!1,this.running=!1,this.peerStore=e.peerStore,this.registrar=e.registrar,this.connectionManager=e.connectionManager,this.randomWalk=e.randomWalk,this.filter=t.filter,this.discoveryController=new AbortController,Re(1/0,this.discoveryController.signal)}isStarted(){return this.started}async start(){this.topologyId=await this.registrar.register(We,{filter:this.filter,onConnect:e=>{this.log.trace("discovered relay %p queue (length: %d, active %d)",e,this.queue?.size,this.queue?.running),this.safeDispatchEvent("relay:discover",{detail:e})}}),this.started=!0}stop(){this.topologyId!=null&&this.registrar.unregister(this.topologyId),this.discoveryController?.abort(),this.started=!1}startDiscovery(){this.running||(this.log("start discovery"),this.running=!0,this.discoveryController=new AbortController,Re(1/0,this.discoveryController.signal),Promise.resolve().then(async()=>{this.log("searching peer store for relays");let e=await this.peerStore.all({filters:[n=>n.protocols.includes(We)],orders:[()=>Math.random()<.5?1:-1,(n,i)=>{let s=Af(n),o=Af(i);return s>o?-1:o>s?1:0}]});for(let n of e)this.log.trace("found relay peer %p in peer store",n.id),this.safeDispatchEvent("relay:discover",{detail:n.id});this.log("found %d relay peers in peer store",e.length);let t=this.queue=new Mr({concurrency:5});this.log("start random walk");for await(let n of this.randomWalk.walk({signal:this.discoveryController.signal})){if(this.log.trace("found random peer %p",n.id),t.has(n.id)){this.log.trace("random peer %p was already in queue",n.id);continue}if(this.connectionManager.getConnections(n.id)?.length>0){this.log.trace("random peer %p was already connected",n.id);continue}if(!await this.connectionManager.isDialable(n.multiaddrs)){this.log.trace("random peer %p was not dialable",n.id,n.multiaddrs.map(i=>i.toString()));continue}t.queued>10&&(this.log.trace("wait for space in queue for %p",n.id),await t.onSizeLessThan(10,{signal:this.discoveryController.signal})),this.log("adding random peer %p to dial queue (length: %d, active %d)",n.id,t.size,t.running),t.add(async()=>{let i=ms([this.discoveryController.signal,AbortSignal.timeout(5e3)]);Re(1/0,i);try{await this.connectionManager.openConnection(n.id,{signal:i})}finally{i.clear()}},{peerId:n.id,signal:this.discoveryController.signal}).catch(i=>{this.log.error("error opening connection to random peer %p",n.id,i)})}this.log("stop random walk"),await t.onIdle()}).catch(e=>{this.discoveryController.signal.aborted||this.log.error("failed when finding relays on the network",e)}))}stopDiscovery(){this.log("stop discovery"),this.running=!1,this.discoveryController?.abort()}};function Af(r){let e=r.metadata.get("last-dial-success");return e==null?0:new Date(ce(e)).getTime()}var ja=class extends qe{peerId;connectionManager;addressManager;reservationStore;listeningAddrs;log;listenTimeout;reservationId;relay;constructor(e,t={}){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:transport:listener"),this.peerId=e.peerId,this.connectionManager=e.connectionManager,this.addressManager=e.addressManager,this.reservationStore=e.reservationStore,this.listeningAddrs=[],this.listenTimeout=t.listenTimeout??os,this.reservationStore.addEventListener("relay:removed",this._onRemoveRelayPeer),this.reservationStore.addEventListener("relay:created-reservation",this._onAddRelayPeer)}_onRemoveRelayPeer=e=>{this.log("relay removed %p our relay %p",e.detail.relay,this.relay,this.relay?.equals(e.detail.relay)),this.relay?.equals(e.detail.relay)===!0&&(this.log("relay peer removed %p",e.detail.relay),this.listeningAddrs.forEach(t=>{this.addressManager.removeObservedAddr(t)}),this.listeningAddrs=[],this.safeDispatchEvent("listening"))};_onAddRelayPeer=e=>{let{details:t}=e.detail;t.type!=="configured"&&t.id===this.reservationId&&this.addedRelay(e.detail)};async listen(e){if(this.log("listen on %a",e),xs.exactMatch(e))this.reservationId=this.reservationStore.reserveRelay();else if(ws.exactMatch(e)){let t=AbortSignal.timeout(this.listenTimeout);Re(1/0,t);let n=e.decapsulate("/p2p-circuit"),i=await this.connectionManager.openConnection(n,{signal:t});if(!this.reservationStore.hasReservation(i.remotePeer)){this.log("making reservation on peer %p",i.remotePeer);let s=await this.reservationStore.addRelay(i.remotePeer,"configured");this.addedRelay(s)}}else throw new Gt(`Could not listen on p2p-circuit address "${e}"`)}getAddrs(){return[...this.listeningAddrs.values()].flat()}async close(){this.reservationStore.cancelReservations(),this.listeningAddrs=[],this.reservationStore.removeEventListener("relay:removed",this._onRemoveRelayPeer),queueMicrotask(()=>{this.safeDispatchEvent("close")})}addedRelay(e){this.log("relay peer added %p",e.relay),this.relay=e.relay,this.listeningAddrs=e.details.reservation.addrs.map(t=>_e(t).encapsulate("/p2p-circuit")),this.listeningAddrs.forEach(t=>{this.addressManager.confirmObservedAddr(t,{type:"transport"})}),queueMicrotask(()=>{this.safeDispatchEvent("listening")})}};function Bf(r){return new ja(r)}var _f="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";var If=(r=21)=>{let e="",t=crypto.getRandomValues(new Uint8Array(r|=0));for(;r--;)e+=_f[t[r]&63];return e};var T0=60*1e3*10,k0=60*1e3*5,C0=30*1e3,Us=class extends qe{peerId;connectionManager;peerStore;events;reserveQueue;reservations;pendingReservations;maxReservationQueueLength;reservationCompletionTimeout;started;log;relayFilter;constructor(e,t){super(),this.log=e.logger.forComponent("libp2p:circuit-relay:transport:reservation-store"),this.peerId=e.peerId,this.connectionManager=e.connectionManager,this.peerStore=e.peerStore,this.events=e.events,this.reservations=new zt,this.pendingReservations=[],this.maxReservationQueueLength=t?.maxReservationQueueLength??Gu,this.reservationCompletionTimeout=t?.reservationCompletionTimeout??os,this.started=!1,this.relayFilter=Ur(100),this.reserveQueue=new Mr({concurrency:t?.reservationConcurrency??$u,metricName:"libp2p_relay_reservation_queue",metrics:e.metrics}),this.events.addEventListener("connection:close",n=>{[...this.reservations.values()].find(s=>s.connection===n.detail.id)!=null&&this.#t(n.detail.remotePeer).catch(s=>{this.log("could not remove relay %p - %e",n.detail,s)})})}isStarted(){return this.started}start(){this.started=!0}afterStart(){Promise.resolve().then(async()=>{let e=await this.peerStore.all({filters:[t=>t.tags.has(pn)]});this.log("removing tag from %d old relays",e.length),await Promise.all(e.map(async t=>{await this.peerStore.merge(t.id,{tags:{[pn]:void 0}})})),this.log("redialing %d old relays",e.length),await Promise.all(e.map(async t=>this.addRelay(t.id,"discovered"))),this.#r()}).catch(e=>{this.log.error(e)})}stop(){this.reserveQueue.clear(),this.reservations.forEach(({timeout:e})=>{clearTimeout(e)}),this.reservations.clear(),this.started=!1}reserveRelay(){let e=If();return this.pendingReservations.push(e),this.#r(),e}async addRelay(e,t){if(this.peerId.equals(e))throw this.log.trace("not trying to use self as relay"),new Gt("Cannot use self as relay");if(this.reserveQueue.size>this.maxReservationQueueLength)throw new bs("The reservation queue is full");let n=this.reserveQueue.find(e);if(n!=null)return this.log.trace("potential relay peer %p is already in the reservation queue",e),n.join();if(this.relayFilter.has(e.toMultihash().bytes))throw new Gt("The relay was previously invalid");return this.log.trace("try to reserve relay slot with %p",e),this.reserveQueue.add(async()=>{let i=Date.now();try{let s=this.reservations.get(e);if(s!=null){let d=this.connectionManager.getConnections(e),m=!1;if(d.length===0&&this.log("already have relay reservation with %p but we are no longer connected",e),d.map(y=>y.id).includes(s.connection)&&(this.log("already have relay reservation with %p and the original connection is still open",e),m=!0),m&&Oa(s.reservation.expire)>T0)return this.log("already have relay reservation with %p but we are still connected and it does not expire soon",e),{relay:e,details:s};await this.#t(e)}if(t==="discovered"&&this.pendingReservations.length===0)throw new xn("Not making reservation on discovered relay because we do not need any more relays");let o=AbortSignal.timeout(this.reservationCompletionTimeout);Re(1/0,o);let a=await this.connectionManager.openConnection(e,{signal:o});if(ps.matches(a.remoteAddr))throw new ys("not creating reservation over relayed connection");let c=await this.#e(a,{signal:o}),h=Oa(c.expire);this.log("created reservation on relay peer %p, expiry date is %s",e,new Date(Date.now()+h).toString());let f=Math.min(Math.max(h-k0,C0),Math.pow(2,31)-1),u=setTimeout(()=>{this.log("refresh reservation to relay %p",e),this.addRelay(e,t).catch(async d=>{this.log.error("could not refresh reservation to relay %p - %e",e,d),await this.#t(e)}).catch(d=>{this.log.error("could not remove expired reservation to relay %p - %e",e,d)})},f),g;if(t==="discovered"){let d=this.pendingReservations.pop();if(d==null)throw new xn("Made reservation on relay but did not need any more discovered relays");g={timeout:u,reservation:c,type:t,connection:a.id,id:d}}else g={timeout:u,reservation:c,type:t,connection:a.id};this.reservations.set(e,g),await this.peerStore.merge(e,{tags:{[pn]:{value:1,ttl:h}}}),this.#r();let l={relay:e,details:g};return this.safeDispatchEvent("relay:created-reservation",{detail:l}),l}catch(s){throw t==="discovered"&&s.name==="HadEnoughRelaysError"||this.log.error("could not reserve slot on %p after %dms - %e",e,Date.now()-i,s),(s.name==="DialError"||s.name==="UnsupportedProtocolError")&&this.relayFilter.add(e.toMultihash().bytes),this.#t(e).catch(o=>{this.log.error("could not remove reservation on %p after reserving slot failed - %e",e,o)}),s}},{peerId:e})}hasReservation(e){return this.reservations.has(e)}getReservation(e){return this.reservations.get(e)?.reservation}reservationCount(e){return e==null?this.reservations.size:[...this.reservations.values()].reduce((t,n)=>(n.type===e&&t++,t),0)}cancelReservations(){[...this.reservations.values()].forEach(e=>{clearTimeout(e.timeout)}),this.reservations.clear()}async#e(e,t){t.signal?.throwIfAborted(),this.log("requesting reservation from %p",e.remotePeer);let n=await e.newStream(We,t),s=qt(n).pb(X);this.log.trace("send RESERVE to %p",e.remotePeer),await s.write({type:X.Type.RESERVE},t);let o;try{this.log.trace("reading response from %p",e.remotePeer),o=await s.read(t)}catch(c){throw n.abort(c),c}finally{n.status!=="closed"&&await n.close(t)}if(this.log.trace("read response %o",o),o.status===K.OK&&o.reservation!=null){let c=new Set;c.add(e.remoteAddr.toString());for(let h of o.reservation.addrs){let f=_e(h);f.getPeerId()==null&&(f=f.encapsulate(`/p2p/${e.remotePeer}`)),f=_e(f.toString().replace(`/p2p/${e.remotePeer}/p2p/${e.remotePeer}`,`/p2p/${e.remotePeer}`)),c.add(f.toString())}return o.reservation.addrs=[...c].map(h=>_e(h).bytes),o.reservation}let a=`reservation failed with status ${o.status??"undefined"}`;throw this.log.error(a),new Error(a)}async#t(e){let t=this.reservations.get(e);t!=null&&(this.log("removing relay reservation with %p from local store",e),clearTimeout(t.timeout),this.reservations.delete(e),t.type==="discovered"&&this.pendingReservations.push(t.id),await this.peerStore.merge(e,{tags:{[pn]:void 0}}),this.safeDispatchEvent("relay:removed",{detail:{relay:e,details:t}}),this.#r())}#r(){if(this.pendingReservations.length===0){this.log.trace("have discovered enough relays"),this.reserveQueue.clear(),this.safeDispatchEvent("relay:found-enough-relays");return}this.relayFilter=Ur(100),this.log("not discovered enough relays %d/%d",this.reservations.size,this.pendingReservations.length),this.safeDispatchEvent("relay:not-enough-relays")}};var N0=r=>{if(r.peer==null)return!1;try{r.peer.addrs.forEach(_e)}catch{return!1}return!0},Ya={maxInboundStopStreams:mn,maxOutboundStopStreams:mn,stopTimeout:3e4},Ds=class{discovery;registrar;peerStore;connectionManager;transportManager;peerId;upgrader;addressManager;connectionGater;reservationStore;logger;maxInboundStopStreams;maxOutboundStopStreams;stopTimeout;started;log;constructor(e,t){this.log=e.logger.forComponent("libp2p:circuit-relay:transport"),this.registrar=e.registrar,this.peerStore=e.peerStore,this.connectionManager=e.connectionManager,this.transportManager=e.transportManager,this.logger=e.logger,this.peerId=e.peerId,this.upgrader=e.upgrader,this.addressManager=e.addressManager,this.connectionGater=e.connectionGater,this.maxInboundStopStreams=t.maxInboundStopStreams??Ya.maxInboundStopStreams,this.maxOutboundStopStreams=t.maxOutboundStopStreams??Ya.maxOutboundStopStreams,this.stopTimeout=t.stopTimeout??Ya.stopTimeout,this.discovery=new Ls(e,{filter:t.discoveryFilter??Ha(Yu,Xu)}),this.discovery.addEventListener("relay:discover",n=>{this.reservationStore.addRelay(n.detail,"discovered").catch(i=>{i.name!=="HadEnoughRelaysError"&&i.name!=="RelayQueueFullError"&&this.log.error("could not add discovered relay %p",n.detail,i)})}),this.reservationStore=new Us(e,t),this.reservationStore.addEventListener("relay:not-enough-relays",()=>{this.discovery?.startDiscovery()}),this.reservationStore.addEventListener("relay:found-enough-relays",()=>{this.discovery?.stopDiscovery()}),this.started=!1}[Symbol.toStringTag]="@libp2p/circuit-relay-v2-transport";[fc]=["@libp2p/transport","@libp2p/circuit-relay-v2-transport"];get[hc](){return this.discovery!=null?["@libp2p/identify"]:[]}[ac]=!0;isStarted(){return this.started}async start(){await this.registrar.handle(ir,e=>{this.onStop(e).catch(t=>{this.log.error("error while handling STOP protocol",t),e.stream.abort(t)})},{maxInboundStreams:this.maxInboundStopStreams,maxOutboundStreams:this.maxOutboundStopStreams,runOnLimitedConnection:!0}),await lc(this.discovery,this.reservationStore),this.started=!0}async stop(){await uc(this.discovery,this.reservationStore),await this.registrar.unhandle(ir),this.started=!1}async dial(e,t){if(e.protoCodes().filter(l=>l===ss).length!==1){let l="Invalid circuit relay address";throw this.log.error(l,e),new Vr(l)}let n=e.toString().split("/p2p-circuit"),i=_e(n[0]),s=_e(n[n.length-1]),o=i.getPeerId(),a=s.getPeerId();if(o==null||a==null){let l=`ircuit relay dial to ${e.toString()} failed as address did not have both relay and destination PeerIDs`;throw this.log.error(`c${l}`),new Vr(`C${l}`)}let c=ca(o),h=ca(a),u=this.connectionManager.getConnections(c)[0];u==null?(await this.peerStore.merge(c,{multiaddrs:[i]}),t.onProgress?.(new $t("circuit-relay:open-connection")),u=await this.connectionManager.openConnection(c,t)):t.onProgress?.(new $t("circuit-relay:reuse-connection"));let g;try{t.onProgress?.(new $t("circuit-relay:open-hop-stream")),g=await u.newStream(We,t);let l=qt(g),d=l.pb(X);t.onProgress?.(new $t("circuit-relay:write-connect-message")),await d.write({type:X.Type.CONNECT,peer:{id:h.toMultihash().bytes,addrs:[_e(s).bytes]}},t),t.onProgress?.(new $t("circuit-relay:read-connect-response"));let m=await d.read(t);if(m.status!==K.OK)throw new In(`failed to connect via relay with status ${m?.status?.toString()??"undefined"}`);let y=new vn(m.limit),b=Wa({stream:l.unwrap(),remoteAddr:e,localAddr:i.encapsulate(`/p2p-circuit/p2p/${this.peerId.toString()}`),logger:this.logger,onDataRead:y.onData,onDataWrite:y.onData});return this.log("new outbound relayed connection %a",b.remoteAddr),await this.upgrader.upgradeOutbound(b,{...t,limits:y.getLimits()})}catch(l){throw this.log.error("circuit relay dial to destination %p via relay %p failed",h,c,l),g?.abort(l),l}}createListener(e){return Bf({peerId:this.peerId,connectionManager:this.connectionManager,addressManager:this.addressManager,reservationStore:this.reservationStore,logger:this.logger})}listenFilter(e){return e=Array.isArray(e)?e:[e],e.filter(t=>ws.exactMatch(t)||xs.exactMatch(t))}dialFilter(e){return e=Array.isArray(e)?e:[e],e.filter(t=>ps.exactMatch(t))}async onStop({connection:e,stream:t}){if(!this.reservationStore.hasReservation(e.remotePeer))try{this.log("dialed via relay we did not have a reservation on, start listening on that relay address"),await this.transportManager.listen([e.remoteAddr.encapsulate("/p2p-circuit")])}catch(u){this.log.error("failed to listen on a relay peer we were dialed via but did not have a reservation on",u)}let n=AbortSignal.timeout(this.stopTimeout),i=qt(t).pb(Ke),s=await i.read({signal:n});if(this.log("new circuit relay v2 stop stream from %p with type %s",e.remotePeer,s.type),s?.type===void 0){this.log.error("type was missing from circuit v2 stop protocol request from %s",e.remotePeer),await i.write({type:Ke.Type.STATUS,status:K.MALFORMED_MESSAGE},{signal:n}),await t.close();return}if(s.type!==Ke.Type.CONNECT){this.log.error("invalid stop connect request via peer %p",e.remotePeer),await i.write({type:Ke.Type.STATUS,status:K.UNEXPECTED_MESSAGE},{signal:n}),await t.close();return}if(!N0(s)){this.log.error("invalid stop connect request via peer %p",e.remotePeer),await i.write({type:Ke.Type.STATUS,status:K.MALFORMED_MESSAGE},{signal:n}),await t.close();return}let o=fn(ze(s.peer.id));if(await this.connectionGater.denyInboundRelayedConnection?.(e.remotePeer,o)===!0){this.log.error("connection gater denied inbound relayed connection from %p",e.remotePeer),await i.write({type:Ke.Type.STATUS,status:K.PERMISSION_DENIED},{signal:n}),await t.close();return}this.log.trace("sending success response to %p",e.remotePeer),await i.write({type:Ke.Type.STATUS,status:K.OK},{signal:n});let a=new vn(s.limit),c=e.remoteAddr.encapsulate(`/p2p-circuit/p2p/${o.toString()}`),h=this.addressManager.getAddresses()[0],f=Wa({stream:i.unwrap().unwrap(),remoteAddr:c,localAddr:h,logger:this.logger,onDataRead:a.onData,onDataWrite:a.onData});this.log("new inbound relayed connection %a",f.remoteAddr),await this.upgrader.upgradeInbound(f,{limits:a.getLimits()}),this.log("%s connection %a upgraded","inbound",f.remoteAddr)}};function Tf(r={}){return e=>new Ds(e,r)}return Kf(R0);})();
7
7
  /*! Bundled license information:
8
8
 
9
9
  pvtsutils/build/index.js: