@libp2p/webrtc 5.2.5 → 5.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.min.js +17 -87
  2. package/package.json +7 -7
package/dist/index.min.js CHANGED
@@ -1,75 +1,45 @@
1
1
  (function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.Libp2PWebrtc = factory()}(typeof self !== 'undefined' ? self : this, function () {
2
- "use strict";var Libp2PWebrtc=(()=>{var rd=Object.create;var Wn=Object.defineProperty;var nd=Object.getOwnPropertyDescriptor;var od=Object.getOwnPropertyNames;var sd=Object.getPrototypeOf,id=Object.prototype.hasOwnProperty;var ad=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),Ce=(r,e)=>{for(var t in e)Wn(r,t,{get:e[t],enumerable:!0})},Xc=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of od(e))!id.call(r,o)&&o!==t&&Wn(r,o,{get:()=>e[o],enumerable:!(n=nd(e,o))||n.enumerable});return r};var cd=(r,e,t)=>(t=r!=null?rd(sd(r)):{},Xc(e||!r||!r.__esModule?Wn(t,"default",{value:r,enumerable:!0}):t,r)),ld=r=>Xc(Wn({},"__esModule",{value:!0}),r);var Yl=ad(Nr=>{"use strict";var _0="[object ArrayBuffer]",At=class r{static isArrayBuffer(e){return Object.prototype.toString.call(e)===_0}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),o=r.toUint8Array(t);if(n.length!==o.byteLength)return!1;for(let s=0;s<n.length;s++)if(n[s]!==o[s])return!1;return!0}static concat(...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 i of t)n+=i.byteLength;let o=new Uint8Array(n),s=0;for(let i of t){let a=this.toUint8Array(i);o.set(a,s),s+=a.length}return e[e.length-1]instanceof Function?this.toView(o,e[e.length-1]):o.buffer}},Ea="string",R0=/^[0-9a-f\s]+$/i,U0=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,D0=/^[a-zA-Z0-9-_]+$/,bo=class{static fromString(e){let t=unescape(encodeURIComponent(e)),n=new Uint8Array(t.length);for(let o=0;o<t.length;o++)n[o]=t.charCodeAt(o);return n.buffer}static toString(e){let t=At.toUint8Array(e),n="";for(let s=0;s<t.length;s++)n+=String.fromCharCode(t[s]);return decodeURIComponent(escape(n))}},je=class{static toString(e,t=!1){let n=At.toArrayBuffer(e),o=new DataView(n),s="";for(let i=0;i<n.byteLength;i+=2){let a=o.getUint16(i,t);s+=String.fromCharCode(a)}return s}static fromString(e,t=!1){let n=new ArrayBuffer(e.length*2),o=new DataView(n);for(let s=0;s<e.length;s++)o.setUint16(s*2,e.charCodeAt(s),t);return n}},xo=class r{static isHex(e){return typeof e===Ea&&R0.test(e)}static isBase64(e){return typeof e===Ea&&U0.test(e)}static isBase64Url(e){return typeof e===Ea&&D0.test(e)}static ToString(e,t="utf8"){let n=At.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 je.toString(n,!0);case"utf16":case"utf16be":return je.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 je.fromString(e,!0);case"utf16":case"utf16be":return je.fromString(e);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToBase64(e){let t=At.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 bo.fromString(e);case"utf16":case"utf16be":return je.fromString(e);case"utf16le":case"usc2":return je.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 bo.toString(e);case"utf16":case"utf16be":return je.toString(e);case"utf16le":case"usc2":return je.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 o=0;o<t;o++)n[o]=e.charCodeAt(o);return n.buffer}static ToBinary(e){let t=At.toUint8Array(e),n="";for(let o=0;o<t.length;o++)n+=String.fromCharCode(t[o]);return n}static ToHex(e){let t=At.toUint8Array(e),n="",o=t.length;for(let s=0;s<o;s++){let i=t[s];i<16&&(n+="0"),n+=i.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 o=0;o<t.length;o=o+2){let s=t.slice(o,o+2);n[o/2]=parseInt(s,16)}return n.buffer}static ToUtf16String(e,t=!1){return je.toString(e,t)}static FromUtf16String(e,t=!1){return je.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,"")||""}};xo.DEFAULT_UTF8_ENCODING="utf8";function P0(r,...e){let t=arguments[0];for(let n=1;n<arguments.length;n++){let o=arguments[n];for(let s in o)t[s]=o[s]}return t}function O0(...r){let e=r.map(o=>o.byteLength).reduce((o,s)=>o+s),t=new Uint8Array(e),n=0;return r.map(o=>new Uint8Array(o)).forEach(o=>{for(let s of o)t[n++]=s}),t.buffer}function M0(r,e){if(!(r&&e)||r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let o=0;o<r.byteLength;o++)if(t[o]!==n[o])return!1;return!0}Nr.BufferSourceConverter=At;Nr.Convert=xo;Nr.assign=P0;Nr.combine=O0;Nr.isEqual=M0});var Lg={};Ce(Lg,{webRTC:()=>Tg,webRTCDirect:()=>kg});var hi=Symbol.for("@libp2p/peer-id");var qn=Symbol.for("@libp2p/transport");var Zc;(function(r){r[r.FATAL_ALL=0]="FATAL_ALL",r[r.NO_FATAL=1]="NO_FATAL"})(Zc||(Zc={}));var zn=class extends Error{static name="UnexpectedPeerError";constructor(e="Unexpected Peer"){super(e),this.name="UnexpectedPeerError"}};var oe=class extends Error{static name="InvalidParametersError";constructor(e="Invalid parameters"){super(e),this.name="InvalidParametersError"}},yr=class extends Error{static name="InvalidPublicKeyError";constructor(e="Invalid public key"){super(e),this.name="InvalidPublicKeyError"}};var jn=class extends Error{static name="ConnectionFailedError";constructor(e="Connection failed"){super(e),this.name="ConnectionFailedError"}};var Xn=class extends Error{static name="StreamResetError";constructor(e="The stream has been reset"){super(e),this.name="StreamResetError"}},Yt=class extends Error{static name="StreamStateError";constructor(e="The stream is in an invalid state"){super(e),this.name="StreamStateError"}};var Zn=class extends Error{static name="InvalidMultihashError";constructor(e="Invalid Multihash"){super(e),this.name="InvalidMultihashError"}};var Yn=class extends Error{static name="InvalidMessageError";constructor(e="Invalid message"){super(e),this.name="InvalidMessageError"}};var Jn=class extends Error{static name="TimeoutError";constructor(e="Timed out"){super(e),this.name="TimeoutError"}};var Jt=class extends Error{static name="UnsupportedKeyTypeError";constructor(e="Unsupported key type"){super(e),this.name="UnsupportedKeyTypeError"}};var wr=class extends EventTarget{#e=new Map;constructor(){super()}listenerCount(e){let t=this.#e.get(e);return t==null?0:t.length}addEventListener(e,t,n){super.addEventListener(e,t,n);let o=this.#e.get(e);o==null&&(o=[],this.#e.set(e,o)),o.push({callback:t,once:(n!==!0&&n!==!1&&n?.once)??!1})}removeEventListener(e,t,n){super.removeEventListener(e.toString(),t??null,n);let o=this.#e.get(e);o!=null&&(o=o.filter(({callback:s})=>s!==t),this.#e.set(e,o))}dispatchEvent(e){let t=super.dispatchEvent(e),n=this.#e.get(e.type);return n==null||(n=n.filter(({once:o})=>!o),this.#e.set(e.type,n)),t}safeDispatchEvent(e,t={}){return this.dispatchEvent(new CustomEvent(e,t))}};var br=Symbol.for("@libp2p/service-capabilities"),Yc=Symbol.for("@libp2p/service-dependencies");var yi={};Ce(yi,{base58btc:()=>se,base58flickr:()=>md});var oy=new Uint8Array(0);function Jc(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 pt(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 Qc(r){return new TextEncoder().encode(r)}function el(r){return new TextDecoder().decode(r)}function ud(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 o=0;o<r.length;o++){var s=r.charAt(o),i=s.charCodeAt(0);if(t[i]!==255)throw new TypeError(s+" is ambiguous");t[i]=o}var a=r.length,c=r.charAt(0),l=Math.log(a)/Math.log(256),u=Math.log(256)/Math.log(a);function f(y){if(y instanceof Uint8Array||(ArrayBuffer.isView(y)?y=new Uint8Array(y.buffer,y.byteOffset,y.byteLength):Array.isArray(y)&&(y=Uint8Array.from(y))),!(y instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(y.length===0)return"";for(var g=0,h=0,b=0,x=y.length;b!==x&&y[b]===0;)b++,g++;for(var p=(x-b)*u+1>>>0,S=new Uint8Array(p);b!==x;){for(var N=y[b],L=0,B=p-1;(N!==0||L<h)&&B!==-1;B--,L++)N+=256*S[B]>>>0,S[B]=N%a>>>0,N=N/a>>>0;if(N!==0)throw new Error("Non-zero carry");h=L,b++}for(var T=p-h;T!==p&&S[T]===0;)T++;for(var C=c.repeat(g);T<p;++T)C+=r.charAt(S[T]);return C}function d(y){if(typeof y!="string")throw new TypeError("Expected String");if(y.length===0)return new Uint8Array;var g=0;if(y[g]!==" "){for(var h=0,b=0;y[g]===c;)h++,g++;for(var x=(y.length-g)*l+1>>>0,p=new Uint8Array(x);y[g];){var S=t[y.charCodeAt(g)];if(S===255)return;for(var N=0,L=x-1;(S!==0||N<b)&&L!==-1;L--,N++)S+=a*p[L]>>>0,p[L]=S%256>>>0,S=S/256>>>0;if(S!==0)throw new Error("Non-zero carry");b=N,g++}if(y[g]!==" "){for(var B=x-b;B!==x&&p[B]===0;)B++;for(var T=new Uint8Array(h+(x-B)),C=h;B!==x;)T[C++]=p[B++];return T}}}function m(y){var g=d(y);if(g)return g;throw new Error(`Non-${e} character`)}return{encode:f,decodeUnsafe:d,decode:m}}var fd=ud,hd=fd,rl=hd;var di=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")}},pi=class{name;prefix;baseDecode;prefixCodePoint;constructor(e,t,n){this.name=e,this.prefix=t;let o=t.codePointAt(0);if(o===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=o,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 nl(this,e)}},mi=class{decoders;constructor(e){this.decoders=e}or(e){return nl(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 nl(r,e){return new mi({...r.decoders??{[r.prefix]:r},...e.decoders??{[e.prefix]:e}})}var gi=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(e,t,n,o){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=o,this.encoder=new di(e,t,n),this.decoder=new pi(e,t,o)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}};function xr({name:r,prefix:e,encode:t,decode:n}){return new gi(r,e,t,n)}function Ut({name:r,prefix:e,alphabet:t}){let{encode:n,decode:o}=rl(t,r);return xr({prefix:e,name:r,encode:n,decode:s=>pt(o(s))})}function dd(r,e,t,n){let o={};for(let u=0;u<e.length;++u)o[e[u]]=u;let s=r.length;for(;r[s-1]==="=";)--s;let i=new Uint8Array(s*t/8|0),a=0,c=0,l=0;for(let u=0;u<s;++u){let f=o[r[u]];if(f===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<t|f,a+=t,a>=8&&(a-=8,i[l++]=255&c>>a)}if(a>=t||(255&c<<8-a)!==0)throw new SyntaxError("Unexpected end of data");return i}function pd(r,e,t){let n=e[e.length-1]==="=",o=(1<<t)-1,s="",i=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],i+=8;i>t;)i-=t,s+=e[o&a>>i];if(i!==0&&(s+=e[o&a<<t-i]),n)for(;(s.length*t&7)!==0;)s+="=";return s}function de({name:r,prefix:e,bitsPerChar:t,alphabet:n}){return xr({prefix:e,name:r,encode(o){return pd(o,n,t)},decode(o){return dd(o,n,t,r)}})}var se=Ut({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),md=Ut({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var wi={};Ce(wi,{base32:()=>mt,base32hex:()=>bd,base32hexpad:()=>Ed,base32hexpadupper:()=>vd,base32hexupper:()=>xd,base32pad:()=>yd,base32padupper:()=>wd,base32upper:()=>gd,base32z:()=>Ad});var mt=de({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),gd=de({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),yd=de({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),wd=de({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),bd=de({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),xd=de({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),Ed=de({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),vd=de({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),Ad=de({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var bi={};Ce(bi,{base36:()=>Yr,base36upper:()=>Bd});var Yr=Ut({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),Bd=Ut({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var We={};Ce(We,{Digest:()=>Qt,create:()=>ke,decode:()=>Dt,equals:()=>Ei,hasCode:()=>$d});var Sd=il,ol=128,Id=127,Cd=~Id,kd=Math.pow(2,31);function il(r,e,t){e=e||[],t=t||0;for(var n=t;r>=kd;)e[t++]=r&255|ol,r/=128;for(;r&Cd;)e[t++]=r&255|ol,r>>>=7;return e[t]=r|0,il.bytes=t-n+1,e}var Td=xi,Ld=128,sl=127;function xi(r,n){var t=0,n=n||0,o=0,s=n,i,a=r.length;do{if(s>=a)throw xi.bytes=0,new RangeError("Could not decode varint");i=r[s++],t+=o<28?(i&sl)<<o:(i&sl)*Math.pow(2,o),o+=7}while(i>=Ld);return xi.bytes=s-n,t}var Nd=Math.pow(2,7),_d=Math.pow(2,14),Rd=Math.pow(2,21),Ud=Math.pow(2,28),Dd=Math.pow(2,35),Pd=Math.pow(2,42),Od=Math.pow(2,49),Md=Math.pow(2,56),Hd=Math.pow(2,63),Fd=function(r){return r<Nd?1:r<_d?2:r<Rd?3:r<Ud?4:r<Dd?5:r<Pd?6:r<Od?7:r<Md?8:r<Hd?9:10},Vd={encode:Sd,decode:Td,encodingLength:Fd},Kd=Vd,Jr=Kd;function Qr(r,e=0){return[Jr.decode(r,e),Jr.decode.bytes]}function Er(r,e,t=0){return Jr.encode(r,e,t),e}function vr(r){return Jr.encodingLength(r)}function ke(r,e){let t=e.byteLength,n=vr(r),o=n+vr(t),s=new Uint8Array(o+t);return Er(r,s,0),Er(t,s,n),s.set(e,o),new Qt(r,t,e,s)}function Dt(r){let e=pt(r),[t,n]=Qr(e),[o,s]=Qr(e.subarray(n)),i=e.subarray(n+s);if(i.byteLength!==o)throw new Error("Incorrect length");return new Qt(t,o,i,e)}function Ei(r,e){if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&Jc(r.bytes,t.bytes)}}var Qt=class{code;size;digest;bytes;constructor(e,t,n,o){this.code=e,this.size=t,this.digest=n,this.bytes=o}};function $d(r,e){return r.code===e}function al(r,e){let{bytes:t,version:n}=r;switch(n){case 0:return Wd(t,vi(r),e??se.encoder);default:return qd(t,vi(r),e??mt.encoder)}}var cl=new WeakMap;function vi(r){let e=cl.get(r);if(e==null){let t=new Map;return cl.set(r,t),t}return e}var Ee=class r{code;version;multihash;bytes;"/";constructor(e,t,n,o){this.code=t,this.version=e,this.multihash=n,this.bytes=o,this["/"]=o}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:e,multihash:t}=this;if(e!==en)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==zd)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=ke(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&&Ei(e.multihash,n.multihash)}toString(e){return al(this,e)}toJSON(){return{"/":al(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:o,multihash:s,bytes:i}=t;return new r(n,o,s,i??ll(n,o,s.bytes))}else if(t[jd]===!0){let{version:n,multihash:o,code:s}=t,i=Dt(o);return r.create(n,s,i)}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!==en)throw new Error(`Version 0 CID must use dag-pb (code: ${en}) block encoding`);return new r(e,t,n,n.bytes)}case 1:{let o=ll(e,t,n.bytes);return new r(e,t,n,o)}default:throw new Error("Invalid version")}}static createV0(e){return r.create(0,en,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,o=pt(e.subarray(n,n+t.multihashSize));if(o.byteLength!==t.multihashSize)throw new Error("Incorrect length");let s=o.subarray(t.multihashSize-t.digestSize),i=new Qt(t.multihashCode,t.digestSize,s,o);return[t.version===0?r.createV0(i):r.createV1(t.codec,i),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[f,d]=Qr(e.subarray(t));return t+=d,f},o=n(),s=en;if(o===18?(o=0,t=0):s=n(),o!==0&&o!==1)throw new RangeError(`Invalid CID version ${o}`);let i=t,a=n(),c=n(),l=t+c,u=l-i;return{version:o,codec:s,multihashCode:a,digestSize:c,multihashSize:u,size:l}}static parse(e,t){let[n,o]=Gd(e,t),s=r.decode(o);if(s.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return vi(s).set(n,e),s}};function Gd(r,e){switch(r[0]){case"Q":{let t=e??se;return[se.prefix,t.decode(`${se.prefix}${r}`)]}case se.prefix:{let t=e??se;return[se.prefix,t.decode(r)]}case mt.prefix:{let t=e??mt;return[mt.prefix,t.decode(r)]}case Yr.prefix:{let t=e??Yr;return[Yr.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 Wd(r,e,t){let{prefix:n}=t;if(n!==se.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let o=e.get(n);if(o==null){let s=t.encode(r).slice(1);return e.set(n,s),s}else return o}function qd(r,e,t){let{prefix:n}=t,o=e.get(n);if(o==null){let s=t.encode(r);return e.set(n,s),s}else return o}var en=112,zd=18;function ll(r,e,t){let n=vr(r),o=n+vr(e),s=new Uint8Array(o+t.byteLength);return Er(r,s,0),Er(e,s,n),s.set(t,o),s}var jd=Symbol.for("@ipld/js-cid/CID");var Ai={};Ce(Ai,{identity:()=>gt});var ul=0,Xd="identity",fl=pt;function Zd(r){return ke(ul,fl(r))}var gt={code:ul,name:Xd,encode:fl,digest:Zd};function Pe(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 eo(r){if(!Number.isSafeInteger(r)||r<0)throw new Error("positive integer expected, got "+r)}function Yd(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function Ar(r,...e){if(!Yd(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 tn(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");eo(r.outputLen),eo(r.blockLen)}function Br(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 hl(r,e){Ar(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}var er=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;function to(r){return new DataView(r.buffer,r.byteOffset,r.byteLength)}function Ze(r,e){return r<<32-e|r>>>e}function dl(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function Pt(r){return typeof r=="string"&&(r=dl(r)),Ar(r),r}function Bi(...r){let e=0;for(let n=0;n<r.length;n++){let o=r[n];Ar(o),e+=o.length}let t=new Uint8Array(e);for(let n=0,o=0;n<r.length;n++){let s=r[n];t.set(s,o),o+=s.length}return t}var Sr=class{clone(){return this._cloneInto()}};function ro(r){let e=n=>r().update(Pt(n)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function rn(r=32){if(er&&typeof er.getRandomValues=="function")return er.getRandomValues(new Uint8Array(r));if(er&&typeof er.randomBytes=="function")return er.randomBytes(r);throw new Error("crypto.getRandomValues must be defined")}function Jd(r,e,t,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,n);let o=BigInt(32),s=BigInt(4294967295),i=Number(t>>o&s),a=Number(t&s),c=n?4:0,l=n?0:4;r.setUint32(e+c,i,n),r.setUint32(e+l,a,n)}function pl(r,e,t){return r&e^~r&t}function ml(r,e,t){return r&e^r&t^e&t}var Ir=class extends Sr{constructor(e,t,n,o){super(),this.blockLen=e,this.outputLen=t,this.padOffset=n,this.isLE=o,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=to(this.buffer)}update(e){Br(this);let{view:t,buffer:n,blockLen:o}=this;e=Pt(e);let s=e.length;for(let i=0;i<s;){let a=Math.min(o-this.pos,s-i);if(a===o){let c=to(e);for(;o<=s-i;i+=o)this.process(c,i);continue}n.set(e.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===o&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){Br(this),hl(e,this),this.finished=!0;let{buffer:t,view:n,blockLen:o,isLE:s}=this,{pos:i}=this;t[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>o-i&&(this.process(n,0),i=0);for(let f=i;f<o;f++)t[f]=0;Jd(n,o-8,BigInt(this.length*8),s),this.process(n,0);let a=to(e),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let l=c/4,u=this.get();if(l>u.length)throw new Error("_sha2: outputLen bigger than state");for(let f=0;f<l;f++)a.setUint32(4*f,u[f],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:o,finished:s,destroyed:i,pos:a}=this;return e.length=o,e.pos=a,e.finished=s,e.destroyed=i,o%t&&e.buffer.set(n),e}};var no=BigInt(4294967295),Si=BigInt(32);function gl(r,e=!1){return e?{h:Number(r&no),l:Number(r>>Si&no)}:{h:Number(r>>Si&no)|0,l:Number(r&no)|0}}function Qd(r,e=!1){let t=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let o=0;o<r.length;o++){let{h:s,l:i}=gl(r[o],e);[t[o],n[o]]=[s,i]}return[t,n]}var ep=(r,e)=>BigInt(r>>>0)<<Si|BigInt(e>>>0),tp=(r,e,t)=>r>>>t,rp=(r,e,t)=>r<<32-t|e>>>t,np=(r,e,t)=>r>>>t|e<<32-t,op=(r,e,t)=>r<<32-t|e>>>t,sp=(r,e,t)=>r<<64-t|e>>>t-32,ip=(r,e,t)=>r>>>t-32|e<<64-t,ap=(r,e)=>e,cp=(r,e)=>r,lp=(r,e,t)=>r<<t|e>>>32-t,up=(r,e,t)=>e<<t|r>>>32-t,fp=(r,e,t)=>e<<t-32|r>>>64-t,hp=(r,e,t)=>r<<t-32|e>>>64-t;function dp(r,e,t,n){let o=(e>>>0)+(n>>>0);return{h:r+t+(o/2**32|0)|0,l:o|0}}var pp=(r,e,t)=>(r>>>0)+(e>>>0)+(t>>>0),mp=(r,e,t,n)=>e+t+n+(r/2**32|0)|0,gp=(r,e,t,n)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0),yp=(r,e,t,n,o)=>e+t+n+o+(r/2**32|0)|0,wp=(r,e,t,n,o)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0)+(o>>>0),bp=(r,e,t,n,o,s)=>e+t+n+o+s+(r/2**32|0)|0;var xp={fromBig:gl,split:Qd,toBig:ep,shrSH:tp,shrSL:rp,rotrSH:np,rotrSL:op,rotrBH:sp,rotrBL:ip,rotr32H:ap,rotr32L:cp,rotlSH:lp,rotlSL:up,rotlBH:fp,rotlBL:hp,add:dp,add3L:pp,add3H:mp,add4L:gp,add4H:yp,add5H:bp,add5L:wp},$=xp;var[Ep,vp]=$.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))),Ot=new Uint32Array(80),Mt=new Uint32Array(80),Ii=class extends Ir{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:o,Ch:s,Cl:i,Dh:a,Dl:c,Eh:l,El:u,Fh:f,Fl:d,Gh:m,Gl:y,Hh:g,Hl:h}=this;return[e,t,n,o,s,i,a,c,l,u,f,d,m,y,g,h]}set(e,t,n,o,s,i,a,c,l,u,f,d,m,y,g,h){this.Ah=e|0,this.Al=t|0,this.Bh=n|0,this.Bl=o|0,this.Ch=s|0,this.Cl=i|0,this.Dh=a|0,this.Dl=c|0,this.Eh=l|0,this.El=u|0,this.Fh=f|0,this.Fl=d|0,this.Gh=m|0,this.Gl=y|0,this.Hh=g|0,this.Hl=h|0}process(e,t){for(let p=0;p<16;p++,t+=4)Ot[p]=e.getUint32(t),Mt[p]=e.getUint32(t+=4);for(let p=16;p<80;p++){let S=Ot[p-15]|0,N=Mt[p-15]|0,L=$.rotrSH(S,N,1)^$.rotrSH(S,N,8)^$.shrSH(S,N,7),B=$.rotrSL(S,N,1)^$.rotrSL(S,N,8)^$.shrSL(S,N,7),T=Ot[p-2]|0,C=Mt[p-2]|0,H=$.rotrSH(T,C,19)^$.rotrBH(T,C,61)^$.shrSH(T,C,6),U=$.rotrSL(T,C,19)^$.rotrBL(T,C,61)^$.shrSL(T,C,6),M=$.add4L(B,U,Mt[p-7],Mt[p-16]),V=$.add4H(M,L,H,Ot[p-7],Ot[p-16]);Ot[p]=V|0,Mt[p]=M|0}let{Ah:n,Al:o,Bh:s,Bl:i,Ch:a,Cl:c,Dh:l,Dl:u,Eh:f,El:d,Fh:m,Fl:y,Gh:g,Gl:h,Hh:b,Hl:x}=this;for(let p=0;p<80;p++){let S=$.rotrSH(f,d,14)^$.rotrSH(f,d,18)^$.rotrBH(f,d,41),N=$.rotrSL(f,d,14)^$.rotrSL(f,d,18)^$.rotrBL(f,d,41),L=f&m^~f&g,B=d&y^~d&h,T=$.add5L(x,N,B,vp[p],Mt[p]),C=$.add5H(T,b,S,L,Ep[p],Ot[p]),H=T|0,U=$.rotrSH(n,o,28)^$.rotrBH(n,o,34)^$.rotrBH(n,o,39),M=$.rotrSL(n,o,28)^$.rotrBL(n,o,34)^$.rotrBL(n,o,39),V=n&s^n&a^s&a,I=o&i^o&c^i&c;b=g|0,x=h|0,g=m|0,h=y|0,m=f|0,y=d|0,{h:f,l:d}=$.add(l|0,u|0,C|0,H|0),l=a|0,u=c|0,a=s|0,c=i|0,s=n|0,i=o|0;let k=$.add3L(H,M,I);n=$.add3H(k,C,U,V),o=k|0}({h:n,l:o}=$.add(this.Ah|0,this.Al|0,n|0,o|0)),{h:s,l:i}=$.add(this.Bh|0,this.Bl|0,s|0,i|0),{h:a,l:c}=$.add(this.Ch|0,this.Cl|0,a|0,c|0),{h:l,l:u}=$.add(this.Dh|0,this.Dl|0,l|0,u|0),{h:f,l:d}=$.add(this.Eh|0,this.El|0,f|0,d|0),{h:m,l:y}=$.add(this.Fh|0,this.Fl|0,m|0,y|0),{h:g,l:h}=$.add(this.Gh|0,this.Gl|0,g|0,h|0),{h:b,l:x}=$.add(this.Hh|0,this.Hl|0,b|0,x|0),this.set(n,o,s,i,a,c,l,u,f,d,m,y,g,h,b,x)}roundClean(){Ot.fill(0),Mt.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 yl=ro(()=>new Ii);var io={};Ce(io,{aInRange:()=>ve,abool:()=>Ye,abytes:()=>Cr,bitGet:()=>kp,bitLen:()=>Li,bitMask:()=>on,bitSet:()=>Tp,bytesToHex:()=>wt,bytesToNumberBE:()=>bt,bytesToNumberLE:()=>Je,concatBytes:()=>Et,createHmacDrbg:()=>Ni,ensureBytes:()=>ie,equalBytes:()=>Ip,hexToBytes:()=>rr,hexToNumber:()=>Ti,inRange:()=>nn,isBytes:()=>Ht,memoized:()=>nr,notImplemented:()=>Np,numberToBytesBE:()=>Ft,numberToBytesLE:()=>xt,numberToHexUnpadded:()=>tr,numberToVarBytesBE:()=>Sp,utf8ToBytes:()=>Cp,validateObject:()=>qe});var oo=BigInt(0),so=BigInt(1),Ap=BigInt(2);function Ht(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function Cr(r){if(!Ht(r))throw new Error("Uint8Array expected")}function Ye(r,e){if(typeof e!="boolean")throw new Error(r+" boolean expected, got "+e)}var Bp=Array.from({length:256},(r,e)=>e.toString(16).padStart(2,"0"));function wt(r){Cr(r);let e="";for(let t=0;t<r.length;t++)e+=Bp[r[t]];return e}function tr(r){let e=r.toString(16);return e.length&1?"0"+e:e}function Ti(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return r===""?oo:BigInt("0x"+r)}var yt={_0:48,_9:57,A:65,F:70,a:97,f:102};function wl(r){if(r>=yt._0&&r<=yt._9)return r-yt._0;if(r>=yt.A&&r<=yt.F)return r-(yt.A-10);if(r>=yt.a&&r<=yt.f)return r-(yt.a-10)}function rr(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 o=0,s=0;o<t;o++,s+=2){let i=wl(r.charCodeAt(s)),a=wl(r.charCodeAt(s+1));if(i===void 0||a===void 0){let c=r[s]+r[s+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+s)}n[o]=i*16+a}return n}function bt(r){return Ti(wt(r))}function Je(r){return Cr(r),Ti(wt(Uint8Array.from(r).reverse()))}function Ft(r,e){return rr(r.toString(16).padStart(e*2,"0"))}function xt(r,e){return Ft(r,e).reverse()}function Sp(r){return rr(tr(r))}function ie(r,e,t){let n;if(typeof e=="string")try{n=rr(e)}catch(s){throw new Error(r+" must be hex string or Uint8Array, cause: "+s)}else if(Ht(e))n=Uint8Array.from(e);else throw new Error(r+" must be hex string or Uint8Array");let o=n.length;if(typeof t=="number"&&o!==t)throw new Error(r+" of length "+t+" expected, got "+o);return n}function Et(...r){let e=0;for(let n=0;n<r.length;n++){let o=r[n];Cr(o),e+=o.length}let t=new Uint8Array(e);for(let n=0,o=0;n<r.length;n++){let s=r[n];t.set(s,o),o+=s.length}return t}function Ip(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 Cp(r){if(typeof r!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(r))}var Ci=r=>typeof r=="bigint"&&oo<=r;function nn(r,e,t){return Ci(r)&&Ci(e)&&Ci(t)&&e<=r&&r<t}function ve(r,e,t,n){if(!nn(e,t,n))throw new Error("expected valid "+r+": "+t+" <= n < "+n+", got "+e)}function Li(r){let e;for(e=0;r>oo;r>>=so,e+=1);return e}function kp(r,e){return r>>BigInt(e)&so}function Tp(r,e,t){return r|(t?so:oo)<<BigInt(e)}var on=r=>(Ap<<BigInt(r-1))-so,ki=r=>new Uint8Array(r),bl=r=>Uint8Array.from(r);function Ni(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=ki(r),o=ki(r),s=0,i=()=>{n.fill(1),o.fill(0),s=0},a=(...f)=>t(o,n,...f),c=(f=ki())=>{o=a(bl([0]),f),n=a(),f.length!==0&&(o=a(bl([1]),f),n=a())},l=()=>{if(s++>=1e3)throw new Error("drbg: tried 1000 values");let f=0,d=[];for(;f<e;){n=a();let m=n.slice();d.push(m),f+=n.length}return Et(...d)};return(f,d)=>{i(),c(f);let m;for(;!(m=d(l()));)c();return i(),m}}var Lp={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"||Ht(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 qe(r,e,t={}){let n=(o,s,i)=>{let a=Lp[s];if(typeof a!="function")throw new Error("invalid validator function");let c=r[o];if(!(i&&c===void 0)&&!a(c,r))throw new Error("param "+String(o)+" is invalid. Expected "+s+", got "+c)};for(let[o,s]of Object.entries(e))n(o,s,!1);for(let[o,s]of Object.entries(t))n(o,s,!0);return r}var Np=()=>{throw new Error("not implemented")};function nr(r){let e=new WeakMap;return(t,...n)=>{let o=e.get(t);if(o!==void 0)return o;let s=r(t,...n);return e.set(t,s),s}}var ge=BigInt(0),he=BigInt(1),or=BigInt(2),_p=BigInt(3),_i=BigInt(4),xl=BigInt(5),El=BigInt(8),Rp=BigInt(9),Up=BigInt(16);function X(r,e){let t=r%e;return t>=ge?t:e+t}function Ri(r,e,t){if(e<ge)throw new Error("invalid exponent, negatives unsupported");if(t<=ge)throw new Error("invalid modulus");if(t===he)return ge;let n=he;for(;e>ge;)e&he&&(n=n*r%t),r=r*r%t,e>>=he;return n}function le(r,e,t){let n=r;for(;e-- >ge;)n*=n,n%=t;return n}function ao(r,e){if(r===ge)throw new Error("invert: expected non-zero number");if(e<=ge)throw new Error("invert: expected positive modulus, got "+e);let t=X(r,e),n=e,o=ge,s=he,i=he,a=ge;for(;t!==ge;){let l=n/t,u=n%t,f=o-i*l,d=s-a*l;n=t,t=u,o=i,s=a,i=f,a=d}if(n!==he)throw new Error("invert: does not exist");return X(o,e)}function Dp(r){let e=(r-he)/or,t,n,o;for(t=r-he,n=0;t%or===ge;t/=or,n++);for(o=or;o<r&&Ri(o,e,r)!==r-he;o++)if(o>1e3)throw new Error("Cannot find square root: likely non-prime P");if(n===1){let i=(r+he)/_i;return function(c,l){let u=c.pow(l,i);if(!c.eql(c.sqr(u),l))throw new Error("Cannot find square root");return u}}let s=(t+he)/or;return function(a,c){if(a.pow(c,e)===a.neg(a.ONE))throw new Error("Cannot find square root");let l=n,u=a.pow(a.mul(a.ONE,o),t),f=a.pow(c,s),d=a.pow(c,t);for(;!a.eql(d,a.ONE);){if(a.eql(d,a.ZERO))return a.ZERO;let m=1;for(let g=a.sqr(d);m<l&&!a.eql(g,a.ONE);m++)g=a.sqr(g);let y=a.pow(u,he<<BigInt(l-m-1));u=a.sqr(y),f=a.mul(f,y),d=a.mul(d,u),l=m}return f}}function Pp(r){if(r%_i===_p){let e=(r+he)/_i;return function(n,o){let s=n.pow(o,e);if(!n.eql(n.sqr(s),o))throw new Error("Cannot find square root");return s}}if(r%El===xl){let e=(r-xl)/El;return function(n,o){let s=n.mul(o,or),i=n.pow(s,e),a=n.mul(o,i),c=n.mul(n.mul(a,or),i),l=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(l),o))throw new Error("Cannot find square root");return l}}return r%Up,Dp(r)}var vl=(r,e)=>(X(r,e)&he)===he,Op=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function Ui(r){let e={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},t=Op.reduce((n,o)=>(n[o]="function",n),e);return qe(r,t)}function Mp(r,e,t){if(t<ge)throw new Error("invalid exponent, negatives unsupported");if(t===ge)return r.ONE;if(t===he)return e;let n=r.ONE,o=e;for(;t>ge;)t&he&&(n=r.mul(n,o)),o=r.sqr(o),t>>=he;return n}function Hp(r,e){let t=new Array(e.length),n=e.reduce((s,i,a)=>r.is0(i)?s:(t[a]=s,r.mul(s,i)),r.ONE),o=r.inv(n);return e.reduceRight((s,i,a)=>r.is0(i)?s:(t[a]=r.mul(s,t[a]),r.mul(s,i)),o),t}function Di(r,e){let t=e!==void 0?e:r.toString(2).length,n=Math.ceil(t/8);return{nBitLength:t,nByteLength:n}}function Vt(r,e,t=!1,n={}){if(r<=ge)throw new Error("invalid field: expected ORDER > 0, got "+r);let{nBitLength:o,nByteLength:s}=Di(r,e);if(s>2048)throw new Error("invalid field: expected ORDER of <= 2048 bytes");let i,a=Object.freeze({ORDER:r,isLE:t,BITS:o,BYTES:s,MASK:on(o),ZERO:ge,ONE:he,create:c=>X(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error("invalid field element: expected bigint, got "+typeof c);return ge<=c&&c<r},is0:c=>c===ge,isOdd:c=>(c&he)===he,neg:c=>X(-c,r),eql:(c,l)=>c===l,sqr:c=>X(c*c,r),add:(c,l)=>X(c+l,r),sub:(c,l)=>X(c-l,r),mul:(c,l)=>X(c*l,r),pow:(c,l)=>Mp(a,c,l),div:(c,l)=>X(c*ao(l,r),r),sqrN:c=>c*c,addN:(c,l)=>c+l,subN:(c,l)=>c-l,mulN:(c,l)=>c*l,inv:c=>ao(c,r),sqrt:n.sqrt||(c=>(i||(i=Pp(r)),i(a,c))),invertBatch:c=>Hp(a,c),cmov:(c,l,u)=>u?l:c,toBytes:c=>t?xt(c,s):Ft(c,s),fromBytes:c=>{if(c.length!==s)throw new Error("Field.fromBytes: expected "+s+" bytes, got "+c.length);return t?Je(c):bt(c)}});return Object.freeze(a)}function Al(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 Pi(r){let e=Al(r);return e+Math.ceil(e/2)}function Bl(r,e,t=!1){let n=r.length,o=Al(e),s=Pi(e);if(n<16||n<s||n>1024)throw new Error("expected "+s+"-1024 bytes of input, got "+n);let i=t?Je(r):bt(r),a=X(i,e-he)+he;return t?xt(a,o):Ft(a,o)}var Sl=BigInt(0),co=BigInt(1);function Oi(r,e){let t=e.negate();return r?t:e}function Il(r,e){if(!Number.isSafeInteger(r)||r<=0||r>e)throw new Error("invalid window size, expected [1.."+e+"], got W="+r)}function Mi(r,e){Il(r,e);let t=Math.ceil(e/r)+1,n=2**(r-1);return{windows:t,windowSize:n}}function Fp(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 Vp(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 Hi=new WeakMap,Cl=new WeakMap;function Fi(r){return Cl.get(r)||1}function lo(r,e){return{constTimeNegate:Oi,hasPrecomputes(t){return Fi(t)!==1},unsafeLadder(t,n,o=r.ZERO){let s=t;for(;n>Sl;)n&co&&(o=o.add(s)),s=s.double(),n>>=co;return o},precomputeWindow(t,n){let{windows:o,windowSize:s}=Mi(n,e),i=[],a=t,c=a;for(let l=0;l<o;l++){c=a,i.push(c);for(let u=1;u<s;u++)c=c.add(a),i.push(c);a=c.double()}return i},wNAF(t,n,o){let{windows:s,windowSize:i}=Mi(t,e),a=r.ZERO,c=r.BASE,l=BigInt(2**t-1),u=2**t,f=BigInt(t);for(let d=0;d<s;d++){let m=d*i,y=Number(o&l);o>>=f,y>i&&(y-=u,o+=co);let g=m,h=m+Math.abs(y)-1,b=d%2!==0,x=y<0;y===0?c=c.add(Oi(b,n[g])):a=a.add(Oi(x,n[h]))}return{p:a,f:c}},wNAFUnsafe(t,n,o,s=r.ZERO){let{windows:i,windowSize:a}=Mi(t,e),c=BigInt(2**t-1),l=2**t,u=BigInt(t);for(let f=0;f<i;f++){let d=f*a;if(o===Sl)break;let m=Number(o&c);if(o>>=u,m>a&&(m-=l,o+=co),m===0)continue;let y=n[d+Math.abs(m)-1];m<0&&(y=y.negate()),s=s.add(y)}return s},getPrecomputes(t,n,o){let s=Hi.get(n);return s||(s=this.precomputeWindow(n,t),t!==1&&Hi.set(n,o(s))),s},wNAFCached(t,n,o){let s=Fi(t);return this.wNAF(s,this.getPrecomputes(s,t,o),n)},wNAFCachedUnsafe(t,n,o,s){let i=Fi(t);return i===1?this.unsafeLadder(t,n,s):this.wNAFUnsafe(i,this.getPrecomputes(i,t,o),n,s)},setWindowSize(t,n){Il(n,e),Cl.set(t,n),Hi.delete(t)}}}function uo(r,e,t,n){if(Fp(t,r),Vp(n,e),t.length!==n.length)throw new Error("arrays of points and scalars must have equal length");let o=r.ZERO,s=Li(BigInt(t.length)),i=s>12?s-3:s>4?s-2:s?2:1,a=(1<<i)-1,c=new Array(a+1).fill(o),l=Math.floor((e.BITS-1)/i)*i,u=o;for(let f=l;f>=0;f-=i){c.fill(o);for(let m=0;m<n.length;m++){let y=n[m],g=Number(y>>BigInt(f)&BigInt(a));c[g]=c[g].add(t[m])}let d=o;for(let m=c.length-1,y=o;m>0;m--)y=y.add(c[m]),d=d.add(y);if(u=u.add(d),f!==0)for(let m=0;m<i;m++)u=u.double()}return u}function sn(r){return Ui(r.Fp),qe(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...Di(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var Qe=BigInt(0),He=BigInt(1),fo=BigInt(2),Kp=BigInt(8),$p={zip215:!0};function Gp(r){let e=sn(r);return qe(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...e})}function kl(r){let e=Gp(r),{Fp:t,n,prehash:o,hash:s,randomBytes:i,nByteLength:a,h:c}=e,l=fo<<BigInt(a*8)-He,u=t.create,f=Vt(e.n,e.nBitLength),d=e.uvRatio||((E,w)=>{try{return{isValid:!0,value:t.sqrt(E*t.inv(w))}}catch{return{isValid:!1,value:Qe}}}),m=e.adjustScalarBytes||(E=>E),y=e.domain||((E,w,A)=>{if(Ye("phflag",A),w.length||A)throw new Error("Contexts/pre-hash are not supported");return E});function g(E,w){ve("coordinate "+E,w,Qe,l)}function h(E){if(!(E instanceof p))throw new Error("ExtendedPoint expected")}let b=nr((E,w)=>{let{ex:A,ey:v,ez:_}=E,R=E.is0();w==null&&(w=R?Kp:t.inv(_));let O=u(A*w),K=u(v*w),F=u(_*w);if(R)return{x:Qe,y:He};if(F!==He)throw new Error("invZ was invalid");return{x:O,y:K}}),x=nr(E=>{let{a:w,d:A}=e;if(E.is0())throw new Error("bad point: ZERO");let{ex:v,ey:_,ez:R,et:O}=E,K=u(v*v),F=u(_*_),G=u(R*R),j=u(G*G),ae=u(K*w),ce=u(G*u(ae+F)),fe=u(j+u(A*u(K*F)));if(ce!==fe)throw new Error("bad point: equation left != right (1)");let Ie=u(v*_),Me=u(R*O);if(Ie!==Me)throw new Error("bad point: equation left != right (2)");return!0});class p{constructor(w,A,v,_){this.ex=w,this.ey=A,this.ez=v,this.et=_,g("x",w),g("y",A),g("z",v),g("t",_),Object.freeze(this)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(w){if(w instanceof p)throw new Error("extended point not allowed");let{x:A,y:v}=w||{};return g("x",A),g("y",v),new p(A,v,He,u(A*v))}static normalizeZ(w){let A=t.invertBatch(w.map(v=>v.ez));return w.map((v,_)=>v.toAffine(A[_])).map(p.fromAffine)}static msm(w,A){return uo(p,f,w,A)}_setWindowSize(w){L.setWindowSize(this,w)}assertValidity(){x(this)}equals(w){h(w);let{ex:A,ey:v,ez:_}=this,{ex:R,ey:O,ez:K}=w,F=u(A*K),G=u(R*_),j=u(v*K),ae=u(O*_);return F===G&&j===ae}is0(){return this.equals(p.ZERO)}negate(){return new p(u(-this.ex),this.ey,this.ez,u(-this.et))}double(){let{a:w}=e,{ex:A,ey:v,ez:_}=this,R=u(A*A),O=u(v*v),K=u(fo*u(_*_)),F=u(w*R),G=A+v,j=u(u(G*G)-R-O),ae=F+O,ce=ae-K,fe=F-O,Ie=u(j*ce),Me=u(ae*fe),De=u(j*fe),it=u(ce*ae);return new p(Ie,Me,it,De)}add(w){h(w);let{a:A,d:v}=e,{ex:_,ey:R,ez:O,et:K}=this,{ex:F,ey:G,ez:j,et:ae}=w;if(A===BigInt(-1)){let Kc=u((R-_)*(G+F)),$c=u((R+_)*(G-F)),fi=u($c-Kc);if(fi===Qe)return this.double();let Gc=u(O*fo*ae),Wc=u(K*fo*j),qc=Wc+Gc,zc=$c+Kc,jc=Wc-Gc,Jh=u(qc*fi),Qh=u(zc*jc),ed=u(qc*jc),td=u(fi*zc);return new p(Jh,Qh,td,ed)}let ce=u(_*F),fe=u(R*G),Ie=u(K*v*ae),Me=u(O*j),De=u((_+R)*(F+G)-ce-fe),it=Me-Ie,dt=Me+Ie,Zr=u(fe-A*ce),jh=u(De*it),Xh=u(dt*Zr),Zh=u(De*Zr),Yh=u(it*dt);return new p(jh,Xh,Yh,Zh)}subtract(w){return this.add(w.negate())}wNAF(w){return L.wNAFCached(this,w,p.normalizeZ)}multiply(w){let A=w;ve("scalar",A,He,n);let{p:v,f:_}=this.wNAF(A);return p.normalizeZ([v,_])[0]}multiplyUnsafe(w,A=p.ZERO){let v=w;return ve("scalar",v,Qe,n),v===Qe?N:this.is0()||v===He?this:L.wNAFCachedUnsafe(this,v,p.normalizeZ,A)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return L.unsafeLadder(this,n).is0()}toAffine(w){return b(this,w)}clearCofactor(){let{h:w}=e;return w===He?this:this.multiplyUnsafe(w)}static fromHex(w,A=!1){let{d:v,a:_}=e,R=t.BYTES;w=ie("pointHex",w,R),Ye("zip215",A);let O=w.slice(),K=w[R-1];O[R-1]=K&-129;let F=Je(O),G=A?l:t.ORDER;ve("pointHex.y",F,Qe,G);let j=u(F*F),ae=u(j-He),ce=u(v*j-_),{isValid:fe,value:Ie}=d(ae,ce);if(!fe)throw new Error("Point.fromHex: invalid y coordinate");let Me=(Ie&He)===He,De=(K&128)!==0;if(!A&&Ie===Qe&&De)throw new Error("Point.fromHex: x=0 and x_0=1");return De!==Me&&(Ie=u(-Ie)),p.fromAffine({x:Ie,y:F})}static fromPrivateKey(w){return C(w).point}toRawBytes(){let{x:w,y:A}=this.toAffine(),v=xt(A,t.BYTES);return v[v.length-1]|=w&He?128:0,v}toHex(){return wt(this.toRawBytes())}}p.BASE=new p(e.Gx,e.Gy,He,u(e.Gx*e.Gy)),p.ZERO=new p(Qe,He,He,Qe);let{BASE:S,ZERO:N}=p,L=lo(p,a*8);function B(E){return X(E,n)}function T(E){return B(Je(E))}function C(E){let w=t.BYTES;E=ie("private key",E,w);let A=ie("hashed private key",s(E),2*w),v=m(A.slice(0,w)),_=A.slice(w,2*w),R=T(v),O=S.multiply(R),K=O.toRawBytes();return{head:v,prefix:_,scalar:R,point:O,pointBytes:K}}function H(E){return C(E).pointBytes}function U(E=new Uint8Array,...w){let A=Et(...w);return T(s(y(A,ie("context",E),!!o)))}function M(E,w,A={}){E=ie("message",E),o&&(E=o(E));let{prefix:v,scalar:_,pointBytes:R}=C(w),O=U(A.context,v,E),K=S.multiply(O).toRawBytes(),F=U(A.context,K,R,E),G=B(O+F*_);ve("signature.s",G,Qe,n);let j=Et(K,xt(G,t.BYTES));return ie("result",j,t.BYTES*2)}let V=$p;function I(E,w,A,v=V){let{context:_,zip215:R}=v,O=t.BYTES;E=ie("signature",E,2*O),w=ie("message",w),A=ie("publicKey",A,O),R!==void 0&&Ye("zip215",R),o&&(w=o(w));let K=Je(E.slice(O,2*O)),F,G,j;try{F=p.fromHex(A,R),G=p.fromHex(E.slice(0,O),R),j=S.multiplyUnsafe(K)}catch{return!1}if(!R&&F.isSmallOrder())return!1;let ae=U(_,G.toRawBytes(),F.toRawBytes(),w);return G.add(F.multiplyUnsafe(ae)).subtract(j).clearCofactor().equals(p.ZERO)}return S._setWindowSize(8),{CURVE:e,getPublicKey:H,sign:M,verify:I,ExtendedPoint:p,utils:{getExtendedPublicKey:C,randomPrivateKey:()=>i(t.BYTES),precompute(E=8,w=p.BASE){return w._setWindowSize(E),w.multiply(BigInt(3)),w}}}}var kr=BigInt(0),Vi=BigInt(1);function Wp(r){return qe(r,{a:"bigint"},{montgomeryBits:"isSafeInteger",nByteLength:"isSafeInteger",adjustScalarBytes:"function",domain:"function",powPminus2:"function",Gu:"bigint"}),Object.freeze({...r})}function Tl(r){let e=Wp(r),{P:t}=e,n=x=>X(x,t),o=e.montgomeryBits,s=Math.ceil(o/8),i=e.nByteLength,a=e.adjustScalarBytes||(x=>x),c=e.powPminus2||(x=>Ri(x,t-BigInt(2),t));function l(x,p,S){let N=n(x*(p-S));return p=n(p-N),S=n(S+N),[p,S]}let u=(e.a-BigInt(2))/BigInt(4);function f(x,p){ve("u",x,kr,t),ve("scalar",p,kr,t);let S=p,N=x,L=Vi,B=kr,T=x,C=Vi,H=kr,U;for(let V=BigInt(o-1);V>=kr;V--){let I=S>>V&Vi;H^=I,U=l(H,L,T),L=U[0],T=U[1],U=l(H,B,C),B=U[0],C=U[1],H=I;let k=L+B,E=n(k*k),w=L-B,A=n(w*w),v=E-A,_=T+C,R=T-C,O=n(R*k),K=n(_*w),F=O+K,G=O-K;T=n(F*F),C=n(N*n(G*G)),L=n(E*A),B=n(v*(E+n(u*v)))}U=l(H,L,T),L=U[0],T=U[1],U=l(H,B,C),B=U[0],C=U[1];let M=c(B);return n(L*M)}function d(x){return xt(n(x),s)}function m(x){let p=ie("u coordinate",x,s);return i===32&&(p[31]&=127),Je(p)}function y(x){let p=ie("scalar",x),S=p.length;if(S!==s&&S!==i){let N=""+s+" or "+i;throw new Error("invalid scalar, expected "+N+" bytes, got "+S)}return Je(a(p))}function g(x,p){let S=m(p),N=y(x),L=f(S,N);if(L===kr)throw new Error("invalid private or public key received");return d(L)}let h=d(e.Gu);function b(x){return g(x,h)}return{scalarMult:g,scalarMultBase:b,getSharedSecret:(x,p)=>g(x,p),getPublicKey:x=>b(x),utils:{randomPrivateKey:()=>e.randomBytes(e.nByteLength)},GuBytes:h}}var an=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),Ll=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),ew=BigInt(0),qp=BigInt(1),Nl=BigInt(2),zp=BigInt(3),jp=BigInt(5),Xp=BigInt(8);function _l(r){let e=BigInt(10),t=BigInt(20),n=BigInt(40),o=BigInt(80),s=an,a=r*r%s*r%s,c=le(a,Nl,s)*a%s,l=le(c,qp,s)*r%s,u=le(l,jp,s)*l%s,f=le(u,e,s)*u%s,d=le(f,t,s)*f%s,m=le(d,n,s)*d%s,y=le(m,o,s)*m%s,g=le(y,o,s)*m%s,h=le(g,e,s)*u%s;return{pow_p_5_8:le(h,Nl,s)*r%s,b2:a}}function Rl(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function Zp(r,e){let t=an,n=X(e*e*e,t),o=X(n*n*e,t),s=_l(r*o).pow_p_5_8,i=X(r*n*s,t),a=X(e*i*i,t),c=i,l=X(i*Ll,t),u=a===r,f=a===X(-r,t),d=a===X(-r*Ll,t);return u&&(i=c),(f||d)&&(i=l),vl(i,t)&&(i=X(-i,t)),{isValid:u||f,value:i}}var Yp=Vt(an,void 0,!0),Jp={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:Yp,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:Xp,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:yl,randomBytes:rn,adjustScalarBytes:Rl,uvRatio:Zp},Ul=kl(Jp);var cn=Tl({P:an,a:BigInt(486662),montgomeryBits:255,nByteLength:32,Gu:BigInt(9),powPminus2:r=>{let e=an,{pow_p_5_8:t,b2:n}=_l(r);return X(le(t,zp,e)*n,e)},adjustScalarBytes:Rl,randomBytes:rn});var ho=32;function Dl(r,e,t){return Ul.verify(e,t instanceof Uint8Array?t:t.subarray(),r)}var po=class{type="Ed25519";raw;constructor(e){this.raw=Ki(e,ho)}toMultihash(){return gt.digest(Tr(this))}toCID(){return Ee.createV1(114,this.toMultihash())}toString(){return se.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:Pe(this.raw,e.raw)}verify(e,t){return Dl(this.raw,t,e)}};function $i(r){return r=Ki(r,ho),new po(r)}function Ki(r,e){if(r=Uint8Array.from(r??[]),r.length!==e)throw new oe(`Key must be a Uint8Array of length ${e}, got ${r.length}`);return r}function ye(r=0){return new Uint8Array(r)}function me(r=0){return new Uint8Array(r)}var e0=Math.pow(2,7),t0=Math.pow(2,14),r0=Math.pow(2,21),Gi=Math.pow(2,28),Wi=Math.pow(2,35),qi=Math.pow(2,42),zi=Math.pow(2,49),J=128,Te=127;function ee(r){if(r<e0)return 1;if(r<t0)return 2;if(r<r0)return 3;if(r<Gi)return 4;if(r<Wi)return 5;if(r<qi)return 6;if(r<zi)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function ji(r,e,t=0){switch(ee(r)){case 8:e[t++]=r&255|J,r/=128;case 7:e[t++]=r&255|J,r/=128;case 6:e[t++]=r&255|J,r/=128;case 5:e[t++]=r&255|J,r/=128;case 4:e[t++]=r&255|J,r>>>=7;case 3:e[t++]=r&255|J,r>>>=7;case 2:e[t++]=r&255|J,r>>>=7;case 1:{e[t++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return e}function n0(r,e,t=0){switch(ee(r)){case 8:e.set(t++,r&255|J),r/=128;case 7:e.set(t++,r&255|J),r/=128;case 6:e.set(t++,r&255|J),r/=128;case 5:e.set(t++,r&255|J),r/=128;case 4:e.set(t++,r&255|J),r>>>=7;case 3:e.set(t++,r&255|J),r>>>=7;case 2:e.set(t++,r&255|J),r>>>=7;case 1:{e.set(t++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return e}function Xi(r,e){let t=r[e],n=0;if(n+=t&Te,t<J||(t=r[e+1],n+=(t&Te)<<7,t<J)||(t=r[e+2],n+=(t&Te)<<14,t<J)||(t=r[e+3],n+=(t&Te)<<21,t<J)||(t=r[e+4],n+=(t&Te)*Gi,t<J)||(t=r[e+5],n+=(t&Te)*Wi,t<J)||(t=r[e+6],n+=(t&Te)*qi,t<J)||(t=r[e+7],n+=(t&Te)*zi,t<J))return n;throw new RangeError("Could not decode varint")}function o0(r,e){let t=r.get(e),n=0;if(n+=t&Te,t<J||(t=r.get(e+1),n+=(t&Te)<<7,t<J)||(t=r.get(e+2),n+=(t&Te)<<14,t<J)||(t=r.get(e+3),n+=(t&Te)<<21,t<J)||(t=r.get(e+4),n+=(t&Te)*Gi,t<J)||(t=r.get(e+5),n+=(t&Te)*Wi,t<J)||(t=r.get(e+6),n+=(t&Te)*qi,t<J)||(t=r.get(e+7),n+=(t&Te)*zi,t<J))return n;throw new RangeError("Could not decode varint")}function ze(r,e,t=0){return e==null&&(e=me(ee(r))),e instanceof Uint8Array?ji(r,e,t):n0(r,e,t)}function Ke(r,e=0){return r instanceof Uint8Array?Xi(r,e):o0(r,e)}var Zi=new Float32Array([-0]),Kt=new Uint8Array(Zi.buffer);function Ol(r,e,t){Zi[0]=r,e[t]=Kt[0],e[t+1]=Kt[1],e[t+2]=Kt[2],e[t+3]=Kt[3]}function Ml(r,e){return Kt[0]=r[e],Kt[1]=r[e+1],Kt[2]=r[e+2],Kt[3]=r[e+3],Zi[0]}var Yi=new Float64Array([-0]),Le=new Uint8Array(Yi.buffer);function Hl(r,e,t){Yi[0]=r,e[t]=Le[0],e[t+1]=Le[1],e[t+2]=Le[2],e[t+3]=Le[3],e[t+4]=Le[4],e[t+5]=Le[5],e[t+6]=Le[6],e[t+7]=Le[7]}function Fl(r,e){return Le[0]=r[e],Le[1]=r[e+1],Le[2]=r[e+2],Le[3]=r[e+3],Le[4]=r[e+4],Le[5]=r[e+5],Le[6]=r[e+6],Le[7]=r[e+7],Yi[0]}var s0=BigInt(Number.MAX_SAFE_INTEGER),i0=BigInt(Number.MIN_SAFE_INTEGER),$e=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 ir;if(e<s0&&e>i0)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let n=e>>32n,o=e-(n<<32n);return t&&(n=~n|0n,o=~o|0n,++o>Vl&&(o=0n,++n>Vl&&(n=0n))),new r(Number(o),Number(n))}static fromNumber(e){if(e===0)return ir;let t=e<0;t&&(e=-e);let n=e>>>0,o=(e-n)/4294967296>>>0;return t&&(o=~o>>>0,n=~n>>>0,++n>4294967295&&(n=0,++o>4294967295&&(o=0))),new r(n,o)}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):ir}},ir=new $e(0,0);ir.toBigInt=function(){return 0n};ir.zzEncode=ir.zzDecode=function(){return this};ir.length=function(){return 1};var Vl=4294967296n;function Kl(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 $l(r,e,t){if(t-e<1)return"";let o,s=[],i=0,a;for(;e<t;)a=r[e++],a<128?s[i++]=a:a>191&&a<224?s[i++]=(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[i++]=55296+(a>>10),s[i++]=56320+(a&1023)):s[i++]=(a&15)<<12|(r[e++]&63)<<6|r[e++]&63,i>8191&&((o??(o=[])).push(String.fromCharCode.apply(String,s)),i=0);return o!=null?(i>0&&o.push(String.fromCharCode.apply(String,s.slice(0,i))),o.join("")):String.fromCharCode.apply(String,s.slice(0,i))}function Ji(r,e,t){let n=t,o,s;for(let i=0;i<r.length;++i)o=r.charCodeAt(i),o<128?e[t++]=o:o<2048?(e[t++]=o>>6|192,e[t++]=o&63|128):(o&64512)===55296&&((s=r.charCodeAt(i+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++i,e[t++]=o>>18|240,e[t++]=o>>12&63|128,e[t++]=o>>6&63|128,e[t++]=o&63|128):(e[t++]=o>>12|224,e[t++]=o>>6&63|128,e[t++]=o&63|128);return t-n}function et(r,e){return RangeError(`index out of range: ${r.pos} + ${e??1} > ${r.len}`)}function mo(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}var Qi=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,et(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 et(this,4);return mo(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw et(this,4);return mo(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw et(this,4);let e=Ml(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw et(this,4);let e=Fl(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 et(this,e);return this.pos+=e,t===n?new Uint8Array(0):this.buf.subarray(t,n)}string(){let e=this.bytes();return $l(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw et(this,e);this.pos+=e}else do if(this.pos>=this.len)throw et(this);while((this.buf[this.pos++]&128)!==0);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 $e(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 et(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 et(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 et(this,8);let e=mo(this.buf,this.pos+=4),t=mo(this.buf,this.pos+=4);return new $e(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=Xi(this.buf,this.pos);return this.pos+=ee(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 ea(r){return new Qi(r instanceof Uint8Array?r:r.subarray())}function tt(r,e,t){let n=ea(r);return e.decode(n,void 0,t)}var ta={};Ce(ta,{base10:()=>a0});var a0=Ut({prefix:"9",name:"base10",alphabet:"0123456789"});var ra={};Ce(ra,{base16:()=>c0,base16upper:()=>l0});var c0=de({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),l0=de({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var na={};Ce(na,{base2:()=>u0});var u0=de({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var oa={};Ce(oa,{base256emoji:()=>m0});var Wl=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}"),f0=Wl.reduce((r,e,t)=>(r[t]=e,r),[]),h0=Wl.reduce((r,e,t)=>{let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);return r[n]=t,r},[]);function d0(r){return r.reduce((e,t)=>(e+=f0[t],e),"")}function p0(r){let e=[];for(let t of r){let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);let o=h0[n];if(o==null)throw new Error(`Non-base256emoji character: ${t}`);e.push(o)}return new Uint8Array(e)}var m0=xr({prefix:"\u{1F680}",name:"base256emoji",encode:d0,decode:p0});var sa={};Ce(sa,{base64:()=>g0,base64pad:()=>y0,base64url:()=>ln,base64urlpad:()=>w0});var g0=de({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),y0=de({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),ln=de({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),w0=de({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var ia={};Ce(ia,{base8:()=>b0});var b0=de({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var aa={};Ce(aa,{identity:()=>x0});var x0=xr({prefix:"\0",name:"identity",encode:r=>el(r),decode:r=>Qc(r)});var Pw=new TextEncoder,Ow=new TextDecoder;var ua={};Ce(ua,{sha256:()=>vt,sha512:()=>A0});function la({name:r,code:e,encode:t}){return new ca(r,e,t)}var ca=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?ke(this.code,t):t.then(n=>ke(this.code,n))}else throw Error("Unknown type, must be binary type")}};function zl(r){return async e=>new Uint8Array(await crypto.subtle.digest(r,e))}var vt=la({name:"sha2-256",code:18,encode:zl("SHA-256")}),A0=la({name:"sha2-512",code:19,encode:zl("SHA-512")});var ar={...aa,...na,...ia,...ta,...ra,...wi,...bi,...yi,...sa,...oa},Xw={...ua,...Ai};function Xl(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var jl=Xl("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),fa=Xl("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=me(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),B0={utf8:jl,"utf-8":jl,hex:ar.base16,latin1:fa,ascii:fa,binary:fa,...ar},go=B0;function Q(r,e="utf8"){let t=go[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${r}`)}function ha(r){let e=r??8192,t=e>>>1,n,o=e;return function(i){if(i<1||i>t)return me(i);o+i>e&&(n=me(e),o=0);let a=n.subarray(o,o+=i);return(o&7)!==0&&(o=(o|7)+1),a}}var cr=class{fn;len;next;val;constructor(e,t,n){this.fn=e,this.len=t,this.next=void 0,this.val=n}};function da(){}var ma=class{head;tail;len;next;constructor(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},S0=ha();function I0(r){return globalThis.Buffer!=null?me(r):S0(r)}var fn=class{len;head;tail;states;constructor(){this.len=0,this.head=new cr(da,0,0),this.tail=this.head,this.states=null}_push(e,t,n){return this.tail=this.tail.next=new cr(e,t,n),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new ga((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(yo,10,$e.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=$e.fromBigInt(e);return this._push(yo,t.length(),t)}uint64Number(e){return this._push(ji,ee(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=$e.fromBigInt(e).zzEncode();return this._push(yo,t.length(),t)}sint64Number(e){let t=$e.fromNumber(e).zzEncode();return this._push(yo,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(pa,1,e?1:0)}fixed32(e){return this._push(un,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=$e.fromBigInt(e);return this._push(un,4,t.lo)._push(un,4,t.hi)}fixed64Number(e){let t=$e.fromNumber(e);return this._push(un,4,t.lo)._push(un,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(Ol,4,e)}double(e){return this._push(Hl,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(pa,1,0):this.uint32(t)._push(k0,t,e)}string(e){let t=Kl(e);return t!==0?this.uint32(t)._push(Ji,t,e):this._push(pa,1,0)}fork(){return this.states=new ma(this),this.head=this.tail=new cr(da,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 cr(da,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=I0(this.len),n=0;for(;e!=null;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t}};function pa(r,e,t){e[t]=r&255}function C0(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}var ga=class extends cr{next;constructor(e,t){super(C0,e,t),this.next=void 0}};function yo(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 un(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 k0(r,e,t){e.set(r,t)}globalThis.Buffer!=null&&(fn.prototype.bytes=function(r){let e=r.length>>>0;return this.uint32(e),e>0&&this._push(T0,e,r),this},fn.prototype.string=function(r){let e=globalThis.Buffer.byteLength(r);return this.uint32(e),e>0&&this._push(L0,e,r),this});function T0(r,e,t){e.set(r,t)}function L0(r,e,t){r.length<40?Ji(r,e,t):e.utf8Write!=null?e.utf8Write(r,t):e.set(Q(r),t)}function ya(){return new fn}function rt(r,e){let t=ya();return e.encode(r,t,{lengthDelimited:!1}),t.finish()}var Lr;(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"})(Lr||(Lr={}));function wo(r,e,t,n){return{name:r,type:e,encode:t,decode:n}}function lr(r){function e(o){if(r[o.toString()]==null)throw new Error("Invalid enum value");return r[o]}let t=function(s,i){let a=e(s);i.int32(a)},n=function(s){let i=s.int32();return e(i)};return wo("enum",Lr.VARINT,t,n)}function nt(r,e){return wo("message",Lr.LENGTH_DELIMITED,r,e)}var we;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.secp256k1="secp256k1"})(we||(we={}));var wa;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.secp256k1=2]="secp256k1"})(wa||(wa={}));(function(r){r.codec=()=>lr(wa)})(we||(we={}));var at;(function(r){let e;r.codec=()=>(e==null&&(e=nt((t,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),we.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),o.lengthDelimited!==!1&&n.ldelim()},(t,n,o={})=>{let s={},i=n==null?t.len:t.pos+n;for(;t.pos<i;){let a=t.uint32();switch(a>>>3){case 1:{s.Type=we.codec().decode(t);break}case 2:{s.Data=t.bytes();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>rt(t,r.codec()),r.decode=(t,n)=>tt(t,r.codec(),n)})(at||(at={}));var ba;(function(r){let e;r.codec=()=>(e==null&&(e=nt((t,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),we.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),o.lengthDelimited!==!1&&n.ldelim()},(t,n,o={})=>{let s={},i=n==null?t.len:t.pos+n;for(;t.pos<i;){let a=t.uint32();switch(a>>>3){case 1:{s.Type=we.codec().decode(t);break}case 2:{s.Data=t.bytes();break}default:{t.skipType(a&7);break}}}return s})),e),r.encode=t=>rt(t,r.codec()),r.decode=(t,n)=>tt(t,r.codec(),n)})(ba||(ba={}));var En={};Ce(En,{MAX_RSA_KEY_SIZE:()=>ls,generateRSAKeyPair:()=>qu,jwkToJWKKeyPair:()=>zu,jwkToPkcs1:()=>q0,jwkToPkix:()=>ka,jwkToRSAPrivateKey:()=>Wu,pkcs1ToJwk:()=>Ku,pkcs1ToRSAPrivateKey:()=>Gu,pkixToJwk:()=>$u,pkixToRSAPublicKey:()=>Ta});var N0=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]),$t=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),Gt=new Uint32Array(64),xa=class extends Ir{constructor(){super(64,32,8,!1),this.A=$t[0]|0,this.B=$t[1]|0,this.C=$t[2]|0,this.D=$t[3]|0,this.E=$t[4]|0,this.F=$t[5]|0,this.G=$t[6]|0,this.H=$t[7]|0}get(){let{A:e,B:t,C:n,D:o,E:s,F:i,G:a,H:c}=this;return[e,t,n,o,s,i,a,c]}set(e,t,n,o,s,i,a,c){this.A=e|0,this.B=t|0,this.C=n|0,this.D=o|0,this.E=s|0,this.F=i|0,this.G=a|0,this.H=c|0}process(e,t){for(let f=0;f<16;f++,t+=4)Gt[f]=e.getUint32(t,!1);for(let f=16;f<64;f++){let d=Gt[f-15],m=Gt[f-2],y=Ze(d,7)^Ze(d,18)^d>>>3,g=Ze(m,17)^Ze(m,19)^m>>>10;Gt[f]=g+Gt[f-7]+y+Gt[f-16]|0}let{A:n,B:o,C:s,D:i,E:a,F:c,G:l,H:u}=this;for(let f=0;f<64;f++){let d=Ze(a,6)^Ze(a,11)^Ze(a,25),m=u+d+pl(a,c,l)+N0[f]+Gt[f]|0,g=(Ze(n,2)^Ze(n,13)^Ze(n,22))+ml(n,o,s)|0;u=l,l=c,c=a,a=i+m|0,i=s,s=o,o=n,n=m+g|0}n=n+this.A|0,o=o+this.B|0,s=s+this.C|0,i=i+this.D|0,a=a+this.E|0,c=c+this.F|0,l=l+this.G|0,u=u+this.H|0,this.set(n,o,s,i,a,c,l,u)}roundClean(){Gt.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var ct=ro(()=>new xa);var q=cd(Yl());function ur(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 Wt(r,e,t=-1){let n=t,o=r,s=0,i=Math.pow(2,e);for(let a=1;a<8;a++){if(r<i){let c;if(n<0)c=new ArrayBuffer(a),s=a;else{if(n<a)return new ArrayBuffer(0);c=new ArrayBuffer(n),s=n}let l=new Uint8Array(c);for(let u=a-1;u>=0;u--){let f=Math.pow(2,u*e);l[s-u-1]=Math.floor(o/f),o-=l[s-u-1]*f}return c}i*=Math.pow(2,e)}return new ArrayBuffer(0)}function Eo(...r){let e=0,t=0;for(let s of r)e+=s.length;let n=new ArrayBuffer(e),o=new Uint8Array(n);for(let s of r)o.set(s,t),t+=s.length;return o}function va(){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=ur(t,8),o=new ArrayBuffer(this.valueHex.byteLength),s=new Uint8Array(o);for(let a=0;a<this.valueHex.byteLength;a++)s[a]=r[a];return s[0]&=127,ur(s,8)-n}function Jl(r){let e=r<0?r*-1:r,t=128;for(let n=1;n<8;n++){if(e<=t){if(r<0){let i=t-e,a=Wt(i,8,n),c=new Uint8Array(a);return c[0]|=128,a}let o=Wt(e,8,n),s=new Uint8Array(o);if(s[0]&128){let i=o.slice(0),a=new Uint8Array(i);o=new ArrayBuffer(o.byteLength+1),s=new Uint8Array(o);for(let c=0;c<i.byteLength;c++)s[c+1]=a[c];s[0]=0}return o}t*=Math.pow(2,8)}return new ArrayBuffer(0)}function Ql(r,e){if(r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let o=0;o<t.length;o++)if(t[o]!==n[o])return!1;return!0}function Fe(r,e){let t=r.toString(10);if(e<t.length)return"";let n=e-t.length,o=new Array(n);for(let i=0;i<n;i++)o[i]="0";return o.join("").concat(t)}var Lb=Math.log(2);function vo(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function Aa(r){let e=0,t=0;for(let o=0;o<r.length;o++){let s=r[o];e+=s.byteLength}let n=new Uint8Array(e);for(let o=0;o<r.length;o++){let s=r[o];n.set(new Uint8Array(s),t),t+=s.byteLength}return n.buffer}function Ct(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 dn=class{constructor(){this.items=[]}write(e){this.items.push(e)}final(){return Aa(this.items)}},hn=[new Uint8Array([1])],eu="0123456789";var Dr="",ot=new ArrayBuffer(0),Ba=new Uint8Array(0),pn="EndOfContent",ru="OCTET STRING",nu="BIT STRING";function kt(r){var e;return e=class extends r{constructor(...n){var o;super(...n);let s=n[0]||{};this.isHexOnly=(o=s.isHexOnly)!==null&&o!==void 0?o:!1,this.valueHexView=s.valueHex?q.BufferSourceConverter.toUint8Array(s.valueHex):Ba}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,o,s){let i=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!Ct(this,i,o,s))return-1;let a=o+s;return this.valueHexView=i.subarray(o,a),this.valueHexView.length?(this.blockLength=s,a):(this.warnings.push("Zero buffer length"),o)}toBER(n=!1){return this.isHexOnly?n?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",ot)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:q.Convert.ToHex(this.valueHexView)}}},e.NAME="hexBlock",e}var Bt=class{constructor({blockLength:e=0,error:t=Dr,warnings:n=[],valueBeforeDecode:o=Ba}={}){this.blockLength=e,this.error=t,this.warnings=n,this.valueBeforeDecodeView=q.BufferSourceConverter.toUint8Array(o)}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:q.Convert.ToHex(this.valueBeforeDecodeView)}}};Bt.NAME="baseBlock";var Ne=class extends Bt{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'")}};Ne.NAME="valueBlock";var Ao=class extends kt(Bt){constructor({idBlock:e={}}={}){var t,n,o,s;super(),e?(this.isHexOnly=(t=e.isHexOnly)!==null&&t!==void 0?t:!1,this.valueHexView=e.valueHex?q.BufferSourceConverter.toUint8Array(e.valueHex):Ba,this.tagClass=(n=e.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(o=e.tagNumber)!==null&&o!==void 0?o:-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",ot}if(this.isConstructed&&(t|=32),this.tagNumber<31&&!this.isHexOnly){let o=new Uint8Array(1);if(!e){let s=this.tagNumber;s&=31,t|=s,o[0]=t}return o.buffer}if(!this.isHexOnly){let o=Wt(this.tagNumber,7),s=new Uint8Array(o),i=o.byteLength,a=new Uint8Array(i+1);if(a[0]=t|31,!e){for(let c=0;c<i-1;c++)a[c+1]=s[c]|128;a[i]=s[i-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=t|31,!e){let o=this.valueHexView;for(let s=0;s<o.length-1;s++)n[s+1]=o[s]|128;n[this.valueHexView.byteLength]=o[o.length-1]}return n.buffer}fromBER(e,t,n){let o=q.BufferSourceConverter.toUint8Array(e);if(!Ct(this,o,t,n))return-1;let s=o.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,l=this.valueHexView=new Uint8Array(255),u=255;for(;s[c]&128;){if(l[c-1]=s[c]&127,c++,c>=s.length)return this.error="End of input reached before message was fully decoded",-1;if(c===u){u+=255;let d=new Uint8Array(u);for(let m=0;m<l.length;m++)d[m]=l[m];l=this.valueHexView=new Uint8Array(u)}}this.blockLength=c+1,l[c-1]=s[c]&127;let f=new Uint8Array(c);for(let d=0;d<c;d++)f[d]=l[d];l=this.valueHexView=new Uint8Array(c),l.set(f),this.blockLength<=9?this.tagNumber=ur(l,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}}};Ao.NAME="identificationBlock";var Bo=class extends Bt{constructor({lenBlock:e={}}={}){var t,n,o;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=(o=e.length)!==null&&o!==void 0?o:0}fromBER(e,t,n){let o=q.BufferSourceConverter.toUint8Array(e);if(!Ct(this,o,t,n))return-1;let s=o.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 i=s[0]&127;if(i>8)return this.error="Too big integer",-1;if(i+1>s.length)return this.error="End of input reached before message was fully decoded",-1;let a=t+1,c=o.subarray(a,a+i);return c[i-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=ur(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=i+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 o=Wt(this.length,8);if(o.byteLength>127)return this.error="Too big length",ot;if(t=new ArrayBuffer(o.byteLength+1),e)return t;let s=new Uint8Array(o);n=new Uint8Array(t),n[0]=o.byteLength|128;for(let i=0;i<o.byteLength;i++)n[i+1]=s[i];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}}};Bo.NAME="lengthBlock";var D={},Ae=class extends Bt{constructor({name:e=Dr,optional:t=!1,primitiveSchema:n,...o}={},s){super(o),this.name=e,this.optional=t,n&&(this.primitiveSchema=n),this.idBlock=new Ao(o),this.lenBlock=new Bo(o),this.valueBlock=s?new s(o):new Ne(o)}fromBER(e,t,n){let o=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}toBER(e,t){let n=t||new dn;t||ou(this);let o=this.idBlock.toBER(e);if(n.write(o),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 i=this.lenBlock.toBER(e);n.write(i),n.write(s)}return t?ot: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():q.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${q.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 Ql(t,n)}};Ae.NAME="BaseBlock";function ou(r){if(r instanceof D.Constructed)for(let e of r.valueBlock.value)ou(e)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var So=class extends Ae{constructor({value:e=Dr,...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 o=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};So.NAME="BaseStringBlock";var Io=class extends kt(Ne){constructor({isHexOnly:e=!0,...t}={}){super(t),this.isHexOnly=e}};Io.NAME="PrimitiveValueBlock";var su,Co=class extends Ae{constructor(e={}){super(e,Io),this.idBlock.isConstructed=!1}};su=Co;D.Primitive=su;Co.NAME="PRIMITIVE";function F0(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 as(r,e=0,t=r.length){let n=e,o=new Ae({},Ne),s=new Bt;if(!Ct(s,r,e,t))return o.error=s.error,{offset:-1,result:o};if(!r.subarray(e,e+t).length)return o.error="Zero buffer length",{offset:-1,result:o};let a=o.idBlock.fromBER(r,e,t);if(o.idBlock.warnings.length&&o.warnings.concat(o.idBlock.warnings),a===-1)return o.error=o.idBlock.error,{offset:-1,result:o};if(e=a,t-=o.idBlock.blockLength,a=o.lenBlock.fromBER(r,e,t),o.lenBlock.warnings.length&&o.warnings.concat(o.lenBlock.warnings),a===-1)return o.error=o.lenBlock.error,{offset:-1,result:o};if(e=a,t-=o.lenBlock.blockLength,!o.idBlock.isConstructed&&o.lenBlock.isIndefiniteForm)return o.error="Indefinite length form used for primitive encoding form",{offset:-1,result:o};let c=Ae;switch(o.idBlock.tagClass){case 1:if(o.idBlock.tagNumber>=37&&o.idBlock.isHexOnly===!1)return o.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:o};switch(o.idBlock.tagNumber){case 0:if(o.idBlock.isConstructed&&o.lenBlock.length>0)return o.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:o};c=D.EndOfContent;break;case 1:c=D.Boolean;break;case 2:c=D.Integer;break;case 3:c=D.BitString;break;case 4:c=D.OctetString;break;case 5:c=D.Null;break;case 6:c=D.ObjectIdentifier;break;case 10:c=D.Enumerated;break;case 12:c=D.Utf8String;break;case 13:c=D.RelativeObjectIdentifier;break;case 14:c=D.TIME;break;case 15:return o.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:o};case 16:c=D.Sequence;break;case 17:c=D.Set;break;case 18:c=D.NumericString;break;case 19:c=D.PrintableString;break;case 20:c=D.TeletexString;break;case 21:c=D.VideotexString;break;case 22:c=D.IA5String;break;case 23:c=D.UTCTime;break;case 24:c=D.GeneralizedTime;break;case 25:c=D.GraphicString;break;case 26:c=D.VisibleString;break;case 27:c=D.GeneralString;break;case 28:c=D.UniversalString;break;case 29:c=D.CharacterString;break;case 30:c=D.BmpString;break;case 31:c=D.DATE;break;case 32:c=D.TimeOfDay;break;case 33:c=D.DateTime;break;case 34:c=D.Duration;break;default:{let l=o.idBlock.isConstructed?new D.Constructed:new D.Primitive;l.idBlock=o.idBlock,l.lenBlock=o.lenBlock,l.warnings=o.warnings,o=l}}break;case 2:case 3:case 4:default:c=o.idBlock.isConstructed?D.Constructed:D.Primitive}return o=F0(o,c),a=o.fromBER(r,e,o.lenBlock.isIndefiniteForm?t:o.lenBlock.length),o.valueBeforeDecodeView=r.subarray(n,n+o.blockLength),{offset:a,result:o}}function Sa(r){if(!r.byteLength){let e=new Ae({},Ne);return e.error="Input buffer has zero length",{offset:-1,result:e}}return as(q.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function V0(r,e){return r?1:e}var lt=class extends Ne{constructor({value:e=[],isIndefiniteForm:t=!1,...n}={}){super(n),this.value=e,this.isIndefiniteForm=t}fromBER(e,t,n){let o=q.BufferSourceConverter.toUint8Array(e);if(!Ct(this,o,t,n))return-1;if(this.valueBeforeDecodeView=o.subarray(t,t+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),t;let s=t;for(;V0(this.isIndefiniteForm,n)>0;){let i=as(o,s,n);if(i.offset===-1)return this.error=i.result.error,this.warnings.concat(i.result.warnings),-1;if(s=i.offset,this.blockLength+=i.result.blockLength,n-=i.result.blockLength,this.value.push(i.result),this.isIndefiniteForm&&i.result.constructor.NAME===pn)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===pn?this.value.pop():this.warnings.push("No EndOfContent block encoded")),s}toBER(e,t){let n=t||new dn;for(let o=0;o<this.value.length;o++)this.value[o].toBER(e,n);return t?ot:n.final()}toJSON(){let e={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let t of this.value)e.value.push(t.toJSON());return e}};lt.NAME="ConstructedValueBlock";var iu,qt=class extends Ae{constructor(e={}){super(e,lt),this.idBlock.isConstructed=!0}fromBER(e,t,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let o=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return o===-1?(this.error=this.valueBlock.error,o):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),o)}onAsciiEncoding(){let e=[];for(let n of this.valueBlock.value)e.push(n.toString("ascii").split(`
3
- `).map(o=>` ${o}`).join(`
4
- `));let t=this.idBlock.tagClass===3?`[${this.idBlock.tagNumber}]`:this.constructor.NAME;return e.length?`${t} :
5
- ${e.join(`
6
- `)}`:`${t} :`}};iu=qt;D.Constructed=iu;qt.NAME="CONSTRUCTED";var ko=class extends Ne{fromBER(e,t,n){return t}toBER(e){return ot}};ko.override="EndOfContentValueBlock";var au,To=class extends Ae{constructor(e={}){super(e,ko),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};au=To;D.EndOfContent=au;To.NAME=pn;var cu,_r=class extends Ae{constructor(e={}){super(e,Ne),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 o=new Uint8Array(n);o[0]=5,o[1]=0}return t&&t.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};cu=_r;D.Null=cu;_r.NAME="NULL";var Lo=class extends kt(Ne){constructor({value:e,...t}={}){super(t),t.valueHex?this.valueHexView=q.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 o=q.BufferSourceConverter.toUint8Array(e);return Ct(this,o,t,n)?(this.valueHexView=o.subarray(t,t+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,va.call(this),this.blockLength=n,t+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};Lo.NAME="BooleanValueBlock";var lu,No=class extends Ae{constructor(e={}){super(e,Lo),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}`}};lu=No;D.Boolean=lu;No.NAME="BOOLEAN";var _o=class extends kt(lt){constructor({isConstructed:e=!1,...t}={}){super(t),this.isConstructed=e}fromBER(e,t,n){let o=0;if(this.isConstructed){if(this.isHexOnly=!1,o=lt.prototype.fromBER.call(this,e,t,n),o===-1)return o;for(let s=0;s<this.value.length;s++){let i=this.value[s].constructor.NAME;if(i===pn){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(i!==ru)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,o=super.fromBER(e,t,n),this.blockLength=n;return o}toBER(e,t){return this.isConstructed?lt.prototype.toBER.call(this,e,t):e?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};_o.NAME="OctetStringValueBlock";var uu,Ro=class r extends Ae{constructor({idBlock:e={},lenBlock:t={},...n}={}){var o,s;(o=n.isConstructed)!==null&&o!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},_o),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 i=as(s,0,s.byteLength);i.offset!==-1&&i.offset===n&&(this.valueBlock.value=[i.result])}}catch{}}return super.fromBER(e,t,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?qt.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${q.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 q.BufferSourceConverter.concat(e)}};uu=Ro;D.OctetString=uu;Ro.NAME=ru;var Uo=class extends kt(lt){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 o=-1;if(this.isConstructed){if(o=lt.prototype.fromBER.call(this,e,t,n),o===-1)return o;for(let a of this.value){let c=a.constructor.NAME;if(c===pn){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==nu)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let l=a.valueBlock;if(this.unusedBits>0&&l.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=l.unusedBits}return o}let s=q.BufferSourceConverter.toUint8Array(e);if(!Ct(this,s,t,n))return-1;let i=s.subarray(t,t+n);if(this.unusedBits=i[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=i.subarray(1);try{if(a.byteLength){let c=as(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=i.subarray(1),this.blockLength=i.length,t+n}toBER(e,t){if(this.isConstructed)return lt.prototype.toBER.call(this,e,t);if(e)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return ot;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}}};Uo.NAME="BitStringValueBlock";var fu,Rr=class extends Ae{constructor({idBlock:e={},lenBlock:t={},...n}={}){var o,s;(o=n.isConstructed)!==null&&o!==void 0||(n.isConstructed=!!(!((s=n.value)===null||s===void 0)&&s.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},Uo),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 qt.prototype.onAsciiEncoding.call(this);{let e=[],t=this.valueBlock.valueHexView;for(let o of t)e.push(o.toString(2).padStart(8,"0"));let n=e.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};fu=Rr;D.BitString=fu;Rr.NAME=nu;var hu;function K0(r,e){let t=new Uint8Array([0]),n=new Uint8Array(r),o=new Uint8Array(e),s=n.slice(0),i=s.length-1,a=o.slice(0),c=a.length-1,l=0,u=c<i?i:c,f=0;for(let d=u;d>=0;d--,f++){switch(!0){case f<a.length:l=s[i-f]+a[c-f]+t[0];break;default:l=s[i-f]+t[0]}switch(t[0]=l/10,!0){case f>=s.length:s=Eo(new Uint8Array([l%10]),s);break;default:s[i-f]=l%10}}return t[0]>0&&(s=Eo(t,s)),s}function tu(r){if(r>=hn.length)for(let e=hn.length;e<=r;e++){let t=new Uint8Array([0]),n=hn[e-1].slice(0);for(let o=n.length-1;o>=0;o--){let s=new Uint8Array([(n[o]<<1)+t[0]]);t[0]=s[0]/10,n[o]=s[0]%10}t[0]>0&&(n=Eo(t,n)),hn.push(n)}return hn[r]}function $0(r,e){let t=0,n=new Uint8Array(r),o=new Uint8Array(e),s=n.slice(0),i=s.length-1,a=o.slice(0),c=a.length-1,l,u=0;for(let f=c;f>=0;f--,u++)switch(l=s[i-u]-a[c-u]-t,!0){case l<0:t=1,s[i-u]=l+10;break;default:t=0,s[i-u]=l}if(t>0)for(let f=i-c+1;f>=0;f--,u++)if(l=s[i-u]-t,l<0)t=1,s[i-u]=l+10;else{t=0,s[i-u]=l;break}return s.slice()}var mn=class extends kt(Ne){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=va.call(this)))}set valueDec(e){this._valueDec=e,this.isHexOnly=!1,this.valueHexView=new Uint8Array(Jl(e))}get valueDec(){return this._valueDec}fromDER(e,t,n,o=0){let s=this.fromBER(e,t,n);if(s===-1)return s;let i=this.valueHexView;return i[0]===0&&(i[1]&128)!==0?this.valueHexView=i.subarray(1):o!==0&&i.length<o&&(o-i.length>1&&(o=i.length+1),this.valueHexView=i.subarray(o-i.length)),s}toDER(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 o=super.fromBER(e,t,n);return o===-1||this.setValueHex(),o}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,o,s=this.valueHexView,i="",a=!1;for(let c=s.byteLength-1;c>=0;c--){o=s[c];for(let l=0;l<8;l++){if((o&1)===1)switch(n){case e:t=$0(tu(n),t),i="-";break;default:t=K0(t,tu(n))}n++,o>>=1}}for(let c=0;c<t.length;c++)t[c]&&(a=!0),a&&(i+=eu.charAt(t[c]));return a===!1&&(i+=eu.charAt(0)),i}};hu=mn;mn.NAME="IntegerValueBlock";Object.defineProperty(hu.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var du,Be=class r extends Ae{constructor(e={}){super(e,mn),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return vo(),BigInt(this.valueBlock.toString())}static fromBigInt(e){vo();let t=BigInt(e),n=new dn,o=t.toString(16).replace(/^-/,""),s=new Uint8Array(q.Convert.FromHex(o));if(t<0){let a=new Uint8Array(s.length+(s[0]&128?1:0));a[0]|=128;let l=BigInt(`0x${q.Convert.ToHex(a)}`)+t,u=q.BufferSourceConverter.toUint8Array(q.Convert.FromHex(l.toString(16)));u[0]|=128,n.write(u)}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()}`}};du=Be;D.Integer=du;Be.NAME="INTEGER";var pu,Do=class extends Be{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};pu=Do;D.Enumerated=pu;Do.NAME="ENUMERATED";var gn=class extends kt(Ne){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 o=q.BufferSourceConverter.toUint8Array(e);if(!Ct(this,o,t,n))return-1;let s=o.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)!==0);a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,(s[this.blockLength-1]&128)!==0?(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=ur(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}set valueBigInt(e){vo();let t=BigInt(e).toString(2);for(;t.length%7;)t="0"+t;let n=new Uint8Array(t.length/7);for(let o=0;o<n.length;o++)n[o]=parseInt(t.slice(o*7,o*7+7),2)+(o+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 o=this.valueHexView,s=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)s[i]=o[i]|128;return s[this.blockLength-1]=o[this.blockLength-1],s.buffer}let t=Wt(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",ot;let n=new Uint8Array(t.byteLength);if(!e){let o=new Uint8Array(t),s=t.byteLength-1;for(let i=0;i<s;i++)n[i]=o[i]|128;n[s]=o[s]}return n}toString(){let e="";if(this.isHexOnly)e=q.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}}};gn.NAME="sidBlock";var Po=class extends Ne{constructor({value:e=Dr,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let o=t;for(;n>0;){let s=new gn;if(o=s.fromBER(e,o,n),o===-1)return this.blockLength=0,this.error=s.error,o;this.value.length===0&&(s.isFirstSid=!0),this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return o}toBER(e){let t=[];for(let n=0;n<this.value.length;n++){let o=this.value[n].toBER(e);if(o.byteLength===0)return this.error=this.value[n].error,ot;t.push(o)}return Aa(t)}fromString(e){this.value=[];let t=0,n=0,o="",s=!1;do if(n=e.indexOf(".",t),n===-1?o=e.substring(t):o=e.substring(t,n),t=n+1,s){let i=this.value[0],a=0;switch(i.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(o,10);if(isNaN(c))return;i.valueDec=c+a,s=!1}else{let i=new gn;if(o>Number.MAX_SAFE_INTEGER){vo();let a=BigInt(o);i.valueBigInt=a}else if(i.valueDec=parseInt(o,10),isNaN(i.valueDec))return;this.value.length||(i.isFirstSid=!0,s=!0),this.value.push(i)}while(n!==-1)}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let o=this.value[n].toString();n!==0&&(e=`${e}.`),t?(o=`{${o}}`,this.value[n].isFirstSid?e=`2.{${o} - 80}`:e+=o):e+=o}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}};Po.NAME="ObjectIdentifierValueBlock";var mu,Ur=class extends Ae{constructor(e={}){super(e,Po),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()}}};mu=Ur;D.ObjectIdentifier=mu;Ur.NAME="OBJECT IDENTIFIER";var yn=class extends kt(Bt){constructor({valueDec:e=0,...t}={}){super(t),this.valueDec=e}fromBER(e,t,n){if(n===0)return t;let o=q.BufferSourceConverter.toUint8Array(e);if(!Ct(this,o,t,n))return-1;let s=o.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)!==0);a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,(s[this.blockLength-1]&128)!==0?(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=ur(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 o=this.valueHexView,s=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)s[i]=o[i]|128;return s[this.blockLength-1]=o[this.blockLength-1],s.buffer}let t=Wt(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",ot;let n=new Uint8Array(t.byteLength);if(!e){let o=new Uint8Array(t),s=t.byteLength-1;for(let i=0;i<s;i++)n[i]=o[i]|128;n[s]=o[s]}return n.buffer}toString(){let e="";return this.isHexOnly?e=q.Convert.ToHex(this.valueHexView):e=this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};yn.NAME="relativeSidBlock";var Oo=class extends Ne{constructor({value:e=Dr,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let o=t;for(;n>0;){let s=new yn;if(o=s.fromBER(e,o,n),o===-1)return this.blockLength=0,this.error=s.error,o;this.blockLength+=s.blockLength,n-=s.blockLength,this.value.push(s)}return o}toBER(e,t){let n=[];for(let o=0;o<this.value.length;o++){let s=this.value[o].toBER(e);if(s.byteLength===0)return this.error=this.value[o].error,ot;n.push(s)}return Aa(n)}fromString(e){this.value=[];let t=0,n=0,o="";do{n=e.indexOf(".",t),n===-1?o=e.substring(t):o=e.substring(t,n),t=n+1;let s=new yn;if(s.valueDec=parseInt(o,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 o=this.value[n].toString();n!==0&&(e=`${e}.`),t&&(o=`{${o}}`),e+=o}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}};Oo.NAME="RelativeObjectIdentifierValueBlock";var gu,Mo=class extends Ae{constructor(e={}){super(e,Oo),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()}}};gu=Mo;D.RelativeObjectIdentifier=gu;Mo.NAME="RelativeObjectIdentifier";var yu,St=class extends qt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};yu=St;D.Sequence=yu;St.NAME="SEQUENCE";var wu,Ho=class extends qt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};wu=Ho;D.Set=wu;Ho.NAME="SET";var Fo=class extends kt(Ne){constructor({...e}={}){super(e),this.isHexOnly=!0,this.value=Dr}toJSON(){return{...super.toJSON(),value:this.value}}};Fo.NAME="StringValueBlock";var Vo=class extends Fo{};Vo.NAME="SimpleStringValueBlock";var Oe=class extends So{constructor({...e}={}){super(e,Vo)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,q.BufferSourceConverter.toUint8Array(e))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t);for(let o=0;o<t;o++)n[o]=e.charCodeAt(o);this.valueBlock.value=e}};Oe.NAME="SIMPLE STRING";var Ko=class extends Oe{fromBuffer(e){this.valueBlock.valueHexView=q.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=q.Convert.ToUtf8String(e)}catch(t){this.warnings.push(`Error during "decodeURIComponent": ${t}, using raw string`),this.valueBlock.value=q.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(q.Convert.FromUtf8String(e)),this.valueBlock.value=e}};Ko.NAME="Utf8StringValueBlock";var bu,It=class extends Ko{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};bu=It;D.Utf8String=bu;It.NAME="UTF8String";var $o=class extends Oe{fromBuffer(e){this.valueBlock.value=q.Convert.ToUtf16String(e),this.valueBlock.valueHexView=q.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(q.Convert.FromUtf16String(e))}};$o.NAME="BmpStringValueBlock";var xu,Go=class extends $o{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};xu=Go;D.BmpString=xu;Go.NAME="BMPString";var Wo=class extends Oe{fromBuffer(e){let t=ArrayBuffer.isView(e)?e.slice().buffer:e.slice(0),n=new Uint8Array(t);for(let o=0;o<n.length;o+=4)n[o]=n[o+3],n[o+1]=n[o+2],n[o+2]=0,n[o+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(t))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t*4);for(let o=0;o<t;o++){let s=Wt(e.charCodeAt(o),8),i=new Uint8Array(s);if(i.length>4)continue;let a=4-i.length;for(let c=i.length-1;c>=0;c--)n[o*4+c+a]=i[c]}this.valueBlock.value=e}};Wo.NAME="UniversalStringValueBlock";var Eu,qo=class extends Wo{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};Eu=qo;D.UniversalString=Eu;qo.NAME="UniversalString";var vu,zo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};vu=zo;D.NumericString=vu;zo.NAME="NumericString";var Au,jo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};Au=jo;D.PrintableString=Au;jo.NAME="PrintableString";var Bu,Xo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};Bu=Xo;D.TeletexString=Bu;Xo.NAME="TeletexString";var Su,Zo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};Su=Zo;D.VideotexString=Su;Zo.NAME="VideotexString";var Iu,Yo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};Iu=Yo;D.IA5String=Iu;Yo.NAME="IA5String";var Cu,Jo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};Cu=Jo;D.GraphicString=Cu;Jo.NAME="GraphicString";var ku,wn=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};ku=wn;D.VisibleString=ku;wn.NAME="VisibleString";var Tu,Qo=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};Tu=Qo;D.GeneralString=Tu;Qo.NAME="GeneralString";var Lu,es=class extends Oe{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};Lu=es;D.CharacterString=Lu;es.NAME="CharacterString";var Nu,bn=class extends wn{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 o=0;o<e.length;o++)this.valueBlock.valueHexView[o]=e.charCodeAt(o)}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,q.BufferSourceConverter.toUint8Array(e)))}toBuffer(){let e=this.toString(),t=new ArrayBuffer(e.length),n=new Uint8Array(t);for(let o=0;o<e.length;o++)n[o]=e.charCodeAt(o);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 o=parseInt(n[1],10);o>=50?this.year=1900+o:this.year=2e3+o,this.month=parseInt(n[2],10),this.day=parseInt(n[3],10),this.hour=parseInt(n[4],10),this.minute=parseInt(n[5],10),this.second=parseInt(n[6],10)}toString(e="iso"){if(e==="iso"){let t=new Array(7);return t[0]=Fe(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=Fe(this.month,2),t[2]=Fe(this.day,2),t[3]=Fe(this.hour,2),t[4]=Fe(this.minute,2),t[5]=Fe(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}}};Nu=bn;D.UTCTime=Nu;bn.NAME="UTCTime";var _u,ts=class extends bn{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="",o="",s=0,i,a=0,c=0;if(e[e.length-1]==="Z")n=e.substring(0,e.length-1),t=!0;else{let f=new Number(e[e.length-1]);if(isNaN(f.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 f=1,d=n.indexOf("+"),m="";if(d===-1&&(d=n.indexOf("-"),f=-1),d!==-1){if(m=n.substring(d+1),n=n.substring(0,d),m.length!==2&&m.length!==4)throw new Error("Wrong input string for conversion");let y=parseInt(m.substring(0,2),10);if(isNaN(y.valueOf()))throw new Error("Wrong input string for conversion");if(a=f*y,m.length===4){if(y=parseInt(m.substring(2,4),10),isNaN(y.valueOf()))throw new Error("Wrong input string for conversion");c=f*y}}}let l=n.indexOf(".");if(l===-1&&(l=n.indexOf(",")),l!==-1){let f=new Number(`0${n.substring(l)}`);if(isNaN(f.valueOf()))throw new Error("Wrong input string for conversion");s=f.valueOf(),o=n.substring(0,l)}else o=n;switch(!0){case o.length===8:if(i=/(\d{4})(\d{2})(\d{2})/ig,l!==-1)throw new Error("Wrong input string for conversion");break;case o.length===10:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,l!==-1){let f=60*s;this.minute=Math.floor(f),f=60*(f-this.minute),this.second=Math.floor(f),f=1e3*(f-this.second),this.millisecond=Math.floor(f)}break;case o.length===12:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,l!==-1){let f=60*s;this.second=Math.floor(f),f=1e3*(f-this.second),this.millisecond=Math.floor(f)}break;case o.length===14:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,l!==-1){let f=1e3*s;this.millisecond=Math.floor(f)}break;default:throw new Error("Wrong input string for conversion")}let u=i.exec(o);if(u===null)throw new Error("Wrong input string for conversion");for(let f=1;f<u.length;f++)switch(f){case 1:this.year=parseInt(u[f],10);break;case 2:this.month=parseInt(u[f],10);break;case 3:this.day=parseInt(u[f],10);break;case 4:this.hour=parseInt(u[f],10)+a;break;case 5:this.minute=parseInt(u[f],10)+c;break;case 6:this.second=parseInt(u[f],10);break;default:throw new Error("Wrong input string for conversion")}if(t===!1){let f=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=f.getUTCFullYear(),this.month=f.getUTCMonth(),this.day=f.getUTCDay(),this.hour=f.getUTCHours(),this.minute=f.getUTCMinutes(),this.second=f.getUTCSeconds(),this.millisecond=f.getUTCMilliseconds()}}toString(e="iso"){if(e==="iso"){let t=[];return t.push(Fe(this.year,4)),t.push(Fe(this.month,2)),t.push(Fe(this.day,2)),t.push(Fe(this.hour,2)),t.push(Fe(this.minute,2)),t.push(Fe(this.second,2)),this.millisecond!==0&&(t.push("."),t.push(Fe(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(e)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};_u=ts;D.GeneralizedTime=_u;ts.NAME="GeneralizedTime";var Ru,rs=class extends It{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};Ru=rs;D.DATE=Ru;rs.NAME="DATE";var Uu,ns=class extends It{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};Uu=ns;D.TimeOfDay=Uu;ns.NAME="TimeOfDay";var Du,os=class extends It{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};Du=os;D.DateTime=Du;os.NAME="DateTime";var Pu,ss=class extends It{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Pu=ss;D.Duration=Pu;ss.NAME="Duration";var Ou,is=class extends It{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};Ou=is;D.TIME=Ou;is.NAME="TIME";function Z(r,e="utf8"){let t=go[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.encoder.encode(r).substring(1)}var xn=class extends Error{constructor(e="An error occurred while verifying a message"){super(e),this.name="VerificationError"}},cs=class extends Error{constructor(e="Missing Web Crypto API"){super(e),this.name="WebCryptoMissingError"}};var Mu={get(r=globalThis){let e=r.crypto;if(e?.subtle==null)throw new cs("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 zt=Mu;async function Hu(r){let e=await zt.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 W0(e);return{privateKey:t[0],publicKey:t[1]}}async function Fu(r,e){let t=await zt.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await zt.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},t,e instanceof Uint8Array?e:e.subarray());return new Uint8Array(n,0,n.byteLength)}async function Vu(r,e,t){let n=await zt.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return zt.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,e,t instanceof Uint8Array?t:t.subarray())}async function W0(r){if(r.privateKey==null||r.publicKey==null)throw new oe("Private and public key are required");return Promise.all([zt.get().subtle.exportKey("jwk",r.privateKey),zt.get().subtle.exportKey("jwk",r.publicKey)])}function Ia(r){if(r.kty!=="RSA")throw new oe("invalid key type");if(r.n==null)throw new oe("invalid key modulus");return Q(r.n,"base64url").length*8}var Pr=class{type="RSA";_key;_raw;_multihash;constructor(e,t){this._key=e,this._multihash=t}get raw(){return this._raw==null&&(this._raw=En.jwkToPkix(this._key)),this._raw}toMultihash(){return this._multihash}toCID(){return Ee.createV1(114,this._multihash)}toString(){return se.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:Pe(this.raw,e.raw)}verify(e,t){return Vu(this._key,t,e)}},vn=class{type="RSA";_key;_raw;publicKey;constructor(e,t){this._key=e,this.publicKey=t}get raw(){return this._raw==null&&(this._raw=En.jwkToPkcs1(this._key)),this._raw}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:Pe(this.raw,e.raw)}sign(e){return Fu(this._key,e)}};var ls=8192,Ca=18;function Ku(r){let{result:e}=Sa(r),t=e.valueBlock.value;return{n:ut(t[1]),e:ut(t[2]),d:ut(t[3]),p:ut(t[4]),q:ut(t[5]),dp:ut(t[6]),dq:ut(t[7]),qi:ut(t[8]),kty:"RSA",alg:"RS256"}}function q0(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 oe("JWK was missing components");let t=new St({value:[new Be({value:0}),Be.fromBigInt(ft(Q(r.n,"base64url"))),Be.fromBigInt(ft(Q(r.e,"base64url"))),Be.fromBigInt(ft(Q(r.d,"base64url"))),Be.fromBigInt(ft(Q(r.p,"base64url"))),Be.fromBigInt(ft(Q(r.q,"base64url"))),Be.fromBigInt(ft(Q(r.dp,"base64url"))),Be.fromBigInt(ft(Q(r.dq,"base64url"))),Be.fromBigInt(ft(Q(r.qi,"base64url")))]}).toBER();return new Uint8Array(t,0,t.byteLength)}function $u(r){let{result:e}=Sa(r),t=e.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:ut(t[0]),e:ut(t[1])}}function ka(r){if(r.n==null||r.e==null)throw new oe("JWK was missing components");let t=new St({value:[new St({value:[new Ur({value:"1.2.840.113549.1.1.1"}),new _r]}),new Rr({valueHex:new St({value:[Be.fromBigInt(ft(Q(r.n,"base64url"))),Be.fromBigInt(ft(Q(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(t,0,t.byteLength)}function ut(r){let e=r.valueBlock.valueHexView;for(;e[0]===0;)e=e.subarray(1);return Z(e,"base64url")}function ft(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 Gu(r){let e=Ku(r);return Wu(e)}function Ta(r){let e=$u(r);if(Ia(e)>ls)throw new yr("Key size is too large");let t=ct(at.encode({Type:we.RSA,Data:r})),n=ke(Ca,t);return new Pr(e,n)}function Wu(r){if(Ia(r)>ls)throw new oe("Key size is too large");let e=zu(r),t=ct(at.encode({Type:we.RSA,Data:ka(e.publicKey)})),n=ke(Ca,t);return new vn(e.privateKey,new Pr(e.publicKey,n))}async function qu(r){if(r>ls)throw new oe("Key size is too large");let e=await Hu(r),t=ct(at.encode({Type:we.RSA,Data:ka(e.publicKey)})),n=ke(Ca,t);return new vn(e.privateKey,new Pr(e.publicKey,n))}function zu(r){if(r==null)throw new oe("Missing key parameter");return{privateKey:r,publicKey:{kty:r.kty,n:r.n,e:r.e}}}var us=class extends Sr{constructor(e,t){super(),this.finished=!1,this.destroyed=!1,tn(e);let n=Pt(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 o=this.blockLen,s=new Uint8Array(o);s.set(n.length>o?e.create().update(n).digest():n);for(let i=0;i<s.length;i++)s[i]^=54;this.iHash.update(s),this.oHash=e.create();for(let i=0;i<s.length;i++)s[i]^=106;this.oHash.update(s),s.fill(0)}update(e){return Br(this),this.iHash.update(e),this}digestInto(e){Br(this),Ar(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:o,destroyed:s,blockLen:i,outputLen:a}=this;return e=e,e.finished=o,e.destroyed=s,e.blockLen=i,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()}},Or=(r,e,t)=>new us(r,e).update(t).digest();Or.create=(r,e)=>new us(r,e);function ju(r){r.lowS!==void 0&&Ye("lowS",r.lowS),r.prehash!==void 0&&Ye("prehash",r.prehash)}function z0(r){let e=sn(r);qe(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:o}=e;if(t){if(!n.eql(o,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:j0,hexToBytes:X0}=io,La=class extends Error{constructor(e=""){super(e)}},Tt={Err:La,_tlv:{encode:(r,e)=>{let{Err:t}=Tt;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,o=tr(n);if(o.length/2&128)throw new t("tlv.encode: long form length too big");let s=n>127?tr(o.length/2|128):"";return tr(r)+s+o+e},decode(r,e){let{Err:t}=Tt,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 o=e[n++],s=!!(o&128),i=0;if(!s)i=o;else{let c=o&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 l=e.subarray(n,n+c);if(l.length!==c)throw new t("tlv.decode: length bytes not complete");if(l[0]===0)throw new t("tlv.decode(long): zero leftmost byte");for(let u of l)i=i<<8|u;if(n+=c,i<128)throw new t("tlv.decode(long): not minimal encoding")}let a=e.subarray(n,n+i);if(a.length!==i)throw new t("tlv.decode: wrong value length");return{v:a,l:e.subarray(n+i)}}},_int:{encode(r){let{Err:e}=Tt;if(r<Lt)throw new e("integer: negative integers are not allowed");let t=tr(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}=Tt;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 j0(r)}},toSig(r){let{Err:e,_int:t,_tlv:n}=Tt,o=typeof r=="string"?X0(r):r;Cr(o);let{v:s,l:i}=n.decode(48,o);if(i.length)throw new e("invalid signature: left bytes after parsing");let{v:a,l:c}=n.decode(2,s),{v:l,l:u}=n.decode(2,c);if(u.length)throw new e("invalid signature: left bytes after parsing");return{r:t.decode(a),s:t.decode(l)}},hexFromSig(r){let{_tlv:e,_int:t}=Tt,n=e.encode(2,t.encode(r.r)),o=e.encode(2,t.encode(r.s)),s=n+o;return e.encode(48,s)}},Lt=BigInt(0),xe=BigInt(1),cx=BigInt(2),Xu=BigInt(3),lx=BigInt(4);function Z0(r){let e=z0(r),{Fp:t}=e,n=Vt(e.n,e.nBitLength),o=e.toBytes||((g,h,b)=>{let x=h.toAffine();return Et(Uint8Array.from([4]),t.toBytes(x.x),t.toBytes(x.y))}),s=e.fromBytes||(g=>{let h=g.subarray(1),b=t.fromBytes(h.subarray(0,t.BYTES)),x=t.fromBytes(h.subarray(t.BYTES,2*t.BYTES));return{x:b,y:x}});function i(g){let{a:h,b}=e,x=t.sqr(g),p=t.mul(x,g);return t.add(t.add(p,t.mul(g,h)),b)}if(!t.eql(t.sqr(e.Gy),i(e.Gx)))throw new Error("bad generator point: equation left != right");function a(g){return nn(g,xe,e.n)}function c(g){let{allowedPrivateKeyLengths:h,nByteLength:b,wrapPrivateKey:x,n:p}=e;if(h&&typeof g!="bigint"){if(Ht(g)&&(g=wt(g)),typeof g!="string"||!h.includes(g.length))throw new Error("invalid private key");g=g.padStart(b*2,"0")}let S;try{S=typeof g=="bigint"?g:bt(ie("private key",g,b))}catch{throw new Error("invalid private key, expected hex or "+b+" bytes, got "+typeof g)}return x&&(S=X(S,p)),ve("private key",S,xe,p),S}function l(g){if(!(g instanceof d))throw new Error("ProjectivePoint expected")}let u=nr((g,h)=>{let{px:b,py:x,pz:p}=g;if(t.eql(p,t.ONE))return{x:b,y:x};let S=g.is0();h==null&&(h=S?t.ONE:t.inv(p));let N=t.mul(b,h),L=t.mul(x,h),B=t.mul(p,h);if(S)return{x:t.ZERO,y:t.ZERO};if(!t.eql(B,t.ONE))throw new Error("invZ was invalid");return{x:N,y:L}}),f=nr(g=>{if(g.is0()){if(e.allowInfinityPoint&&!t.is0(g.py))return;throw new Error("bad point: ZERO")}let{x:h,y:b}=g.toAffine();if(!t.isValid(h)||!t.isValid(b))throw new Error("bad point: x or y not FE");let x=t.sqr(b),p=i(h);if(!t.eql(x,p))throw new Error("bad point: equation left != right");if(!g.isTorsionFree())throw new Error("bad point: not in prime-order subgroup");return!0});class d{constructor(h,b,x){if(this.px=h,this.py=b,this.pz=x,h==null||!t.isValid(h))throw new Error("x required");if(b==null||!t.isValid(b))throw new Error("y required");if(x==null||!t.isValid(x))throw new Error("z required");Object.freeze(this)}static fromAffine(h){let{x:b,y:x}=h||{};if(!h||!t.isValid(b)||!t.isValid(x))throw new Error("invalid affine point");if(h instanceof d)throw new Error("projective point not allowed");let p=S=>t.eql(S,t.ZERO);return p(b)&&p(x)?d.ZERO:new d(b,x,t.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(h){let b=t.invertBatch(h.map(x=>x.pz));return h.map((x,p)=>x.toAffine(b[p])).map(d.fromAffine)}static fromHex(h){let b=d.fromAffine(s(ie("pointHex",h)));return b.assertValidity(),b}static fromPrivateKey(h){return d.BASE.multiply(c(h))}static msm(h,b){return uo(d,n,h,b)}_setWindowSize(h){y.setWindowSize(this,h)}assertValidity(){f(this)}hasEvenY(){let{y:h}=this.toAffine();if(t.isOdd)return!t.isOdd(h);throw new Error("Field doesn't support isOdd")}equals(h){l(h);let{px:b,py:x,pz:p}=this,{px:S,py:N,pz:L}=h,B=t.eql(t.mul(b,L),t.mul(S,p)),T=t.eql(t.mul(x,L),t.mul(N,p));return B&&T}negate(){return new d(this.px,t.neg(this.py),this.pz)}double(){let{a:h,b}=e,x=t.mul(b,Xu),{px:p,py:S,pz:N}=this,L=t.ZERO,B=t.ZERO,T=t.ZERO,C=t.mul(p,p),H=t.mul(S,S),U=t.mul(N,N),M=t.mul(p,S);return M=t.add(M,M),T=t.mul(p,N),T=t.add(T,T),L=t.mul(h,T),B=t.mul(x,U),B=t.add(L,B),L=t.sub(H,B),B=t.add(H,B),B=t.mul(L,B),L=t.mul(M,L),T=t.mul(x,T),U=t.mul(h,U),M=t.sub(C,U),M=t.mul(h,M),M=t.add(M,T),T=t.add(C,C),C=t.add(T,C),C=t.add(C,U),C=t.mul(C,M),B=t.add(B,C),U=t.mul(S,N),U=t.add(U,U),C=t.mul(U,M),L=t.sub(L,C),T=t.mul(U,H),T=t.add(T,T),T=t.add(T,T),new d(L,B,T)}add(h){l(h);let{px:b,py:x,pz:p}=this,{px:S,py:N,pz:L}=h,B=t.ZERO,T=t.ZERO,C=t.ZERO,H=e.a,U=t.mul(e.b,Xu),M=t.mul(b,S),V=t.mul(x,N),I=t.mul(p,L),k=t.add(b,x),E=t.add(S,N);k=t.mul(k,E),E=t.add(M,V),k=t.sub(k,E),E=t.add(b,p);let w=t.add(S,L);return E=t.mul(E,w),w=t.add(M,I),E=t.sub(E,w),w=t.add(x,p),B=t.add(N,L),w=t.mul(w,B),B=t.add(V,I),w=t.sub(w,B),C=t.mul(H,E),B=t.mul(U,I),C=t.add(B,C),B=t.sub(V,C),C=t.add(V,C),T=t.mul(B,C),V=t.add(M,M),V=t.add(V,M),I=t.mul(H,I),E=t.mul(U,E),V=t.add(V,I),I=t.sub(M,I),I=t.mul(H,I),E=t.add(E,I),M=t.mul(V,E),T=t.add(T,M),M=t.mul(w,E),B=t.mul(k,B),B=t.sub(B,M),M=t.mul(k,V),C=t.mul(w,C),C=t.add(C,M),new d(B,T,C)}subtract(h){return this.add(h.negate())}is0(){return this.equals(d.ZERO)}wNAF(h){return y.wNAFCached(this,h,d.normalizeZ)}multiplyUnsafe(h){let{endo:b,n:x}=e;ve("scalar",h,Lt,x);let p=d.ZERO;if(h===Lt)return p;if(this.is0()||h===xe)return this;if(!b||y.hasPrecomputes(this))return y.wNAFCachedUnsafe(this,h,d.normalizeZ);let{k1neg:S,k1:N,k2neg:L,k2:B}=b.splitScalar(h),T=p,C=p,H=this;for(;N>Lt||B>Lt;)N&xe&&(T=T.add(H)),B&xe&&(C=C.add(H)),H=H.double(),N>>=xe,B>>=xe;return S&&(T=T.negate()),L&&(C=C.negate()),C=new d(t.mul(C.px,b.beta),C.py,C.pz),T.add(C)}multiply(h){let{endo:b,n:x}=e;ve("scalar",h,xe,x);let p,S;if(b){let{k1neg:N,k1:L,k2neg:B,k2:T}=b.splitScalar(h),{p:C,f:H}=this.wNAF(L),{p:U,f:M}=this.wNAF(T);C=y.constTimeNegate(N,C),U=y.constTimeNegate(B,U),U=new d(t.mul(U.px,b.beta),U.py,U.pz),p=C.add(U),S=H.add(M)}else{let{p:N,f:L}=this.wNAF(h);p=N,S=L}return d.normalizeZ([p,S])[0]}multiplyAndAddUnsafe(h,b,x){let p=d.BASE,S=(L,B)=>B===Lt||B===xe||!L.equals(p)?L.multiplyUnsafe(B):L.multiply(B),N=S(this,b).add(S(h,x));return N.is0()?void 0:N}toAffine(h){return u(this,h)}isTorsionFree(){let{h,isTorsionFree:b}=e;if(h===xe)return!0;if(b)return b(d,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h,clearCofactor:b}=e;return h===xe?this:b?b(d,this):this.multiplyUnsafe(e.h)}toRawBytes(h=!0){return Ye("isCompressed",h),this.assertValidity(),o(d,this,h)}toHex(h=!0){return Ye("isCompressed",h),wt(this.toRawBytes(h))}}d.BASE=new d(e.Gx,e.Gy,t.ONE),d.ZERO=new d(t.ZERO,t.ONE,t.ZERO);let m=e.nBitLength,y=lo(d,e.endo?Math.ceil(m/2):m);return{CURVE:e,ProjectivePoint:d,normPrivateKeyToScalar:c,weierstrassEquation:i,isWithinCurveOrder:a}}function Y0(r){let e=sn(r);return qe(e,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...e})}function Zu(r){let e=Y0(r),{Fp:t,n}=e,o=t.BYTES+1,s=2*t.BYTES+1;function i(I){return X(I,n)}function a(I){return ao(I,n)}let{ProjectivePoint:c,normPrivateKeyToScalar:l,weierstrassEquation:u,isWithinCurveOrder:f}=Z0({...e,toBytes(I,k,E){let w=k.toAffine(),A=t.toBytes(w.x),v=Et;return Ye("isCompressed",E),E?v(Uint8Array.from([k.hasEvenY()?2:3]),A):v(Uint8Array.from([4]),A,t.toBytes(w.y))},fromBytes(I){let k=I.length,E=I[0],w=I.subarray(1);if(k===o&&(E===2||E===3)){let A=bt(w);if(!nn(A,xe,t.ORDER))throw new Error("Point is not on curve");let v=u(A),_;try{_=t.sqrt(v)}catch(K){let F=K instanceof Error?": "+K.message:"";throw new Error("Point is not on curve"+F)}let R=(_&xe)===xe;return(E&1)===1!==R&&(_=t.neg(_)),{x:A,y:_}}else if(k===s&&E===4){let A=t.fromBytes(w.subarray(0,t.BYTES)),v=t.fromBytes(w.subarray(t.BYTES,2*t.BYTES));return{x:A,y:v}}else{let A=o,v=s;throw new Error("invalid Point, expected length of "+A+", or uncompressed "+v+", got "+k)}}}),d=I=>wt(Ft(I,e.nByteLength));function m(I){let k=n>>xe;return I>k}function y(I){return m(I)?i(-I):I}let g=(I,k,E)=>bt(I.slice(k,E));class h{constructor(k,E,w){this.r=k,this.s=E,this.recovery=w,this.assertValidity()}static fromCompact(k){let E=e.nByteLength;return k=ie("compactSignature",k,E*2),new h(g(k,0,E),g(k,E,2*E))}static fromDER(k){let{r:E,s:w}=Tt.toSig(ie("DER",k));return new h(E,w)}assertValidity(){ve("r",this.r,xe,n),ve("s",this.s,xe,n)}addRecoveryBit(k){return new h(this.r,this.s,k)}recoverPublicKey(k){let{r:E,s:w,recovery:A}=this,v=L(ie("msgHash",k));if(A==null||![0,1,2,3].includes(A))throw new Error("recovery id invalid");let _=A===2||A===3?E+e.n:E;if(_>=t.ORDER)throw new Error("recovery id 2 or 3 invalid");let R=(A&1)===0?"02":"03",O=c.fromHex(R+d(_)),K=a(_),F=i(-v*K),G=i(w*K),j=c.BASE.multiplyAndAddUnsafe(O,F,G);if(!j)throw new Error("point at infinify");return j.assertValidity(),j}hasHighS(){return m(this.s)}normalizeS(){return this.hasHighS()?new h(this.r,i(-this.s),this.recovery):this}toDERRawBytes(){return rr(this.toDERHex())}toDERHex(){return Tt.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return rr(this.toCompactHex())}toCompactHex(){return d(this.r)+d(this.s)}}let b={isValidPrivateKey(I){try{return l(I),!0}catch{return!1}},normPrivateKeyToScalar:l,randomPrivateKey:()=>{let I=Pi(e.n);return Bl(e.randomBytes(I),e.n)},precompute(I=8,k=c.BASE){return k._setWindowSize(I),k.multiply(BigInt(3)),k}};function x(I,k=!0){return c.fromPrivateKey(I).toRawBytes(k)}function p(I){let k=Ht(I),E=typeof I=="string",w=(k||E)&&I.length;return k?w===o||w===s:E?w===2*o||w===2*s:I instanceof c}function S(I,k,E=!0){if(p(I))throw new Error("first arg must be private key");if(!p(k))throw new Error("second arg must be public key");return c.fromHex(k).multiply(l(I)).toRawBytes(E)}let N=e.bits2int||function(I){if(I.length>8192)throw new Error("input is too large");let k=bt(I),E=I.length*8-e.nBitLength;return E>0?k>>BigInt(E):k},L=e.bits2int_modN||function(I){return i(N(I))},B=on(e.nBitLength);function T(I){return ve("num < 2^"+e.nBitLength,I,Lt,B),Ft(I,e.nByteLength)}function C(I,k,E=H){if(["recovered","canonical"].some(ce=>ce in E))throw new Error("sign() legacy options not supported");let{hash:w,randomBytes:A}=e,{lowS:v,prehash:_,extraEntropy:R}=E;v==null&&(v=!0),I=ie("msgHash",I),ju(E),_&&(I=ie("prehashed msgHash",w(I)));let O=L(I),K=l(k),F=[T(K),T(O)];if(R!=null&&R!==!1){let ce=R===!0?A(t.BYTES):R;F.push(ie("extraEntropy",ce))}let G=Et(...F),j=O;function ae(ce){let fe=N(ce);if(!f(fe))return;let Ie=a(fe),Me=c.BASE.multiply(fe).toAffine(),De=i(Me.x);if(De===Lt)return;let it=i(Ie*i(j+De*K));if(it===Lt)return;let dt=(Me.x===De?0:2)|Number(Me.y&xe),Zr=it;return v&&m(it)&&(Zr=y(it),dt^=1),new h(De,Zr,dt)}return{seed:G,k2sig:ae}}let H={lowS:e.lowS,prehash:!1},U={lowS:e.lowS,prehash:!1};function M(I,k,E=H){let{seed:w,k2sig:A}=C(I,k,E),v=e;return Ni(v.hash.outputLen,v.nByteLength,v.hmac)(w,A)}c.BASE._setWindowSize(8);function V(I,k,E,w=U){let A=I;k=ie("msgHash",k),E=ie("publicKey",E);let{lowS:v,prehash:_,format:R}=w;if(ju(w),"strict"in w)throw new Error("options.strict was renamed to lowS");if(R!==void 0&&R!=="compact"&&R!=="der")throw new Error("format must be compact or der");let O=typeof A=="string"||Ht(A),K=!O&&!R&&typeof A=="object"&&A!==null&&typeof A.r=="bigint"&&typeof A.s=="bigint";if(!O&&!K)throw new Error("invalid signature, expected Uint8Array, hex string or Signature instance");let F,G;try{if(K&&(F=new h(A.r,A.s)),O){try{R!=="compact"&&(F=h.fromDER(A))}catch(dt){if(!(dt instanceof Tt.Err))throw dt}!F&&R!=="der"&&(F=h.fromCompact(A))}G=c.fromHex(E)}catch{return!1}if(!F||v&&F.hasHighS())return!1;_&&(k=e.hash(k));let{r:j,s:ae}=F,ce=L(k),fe=a(ae),Ie=i(ce*fe),Me=i(j*fe),De=c.BASE.multiplyAndAddUnsafe(G,Ie,Me)?.toAffine();return De?i(De.x)===j:!1}return{CURVE:e,getPublicKey:x,getSharedSecret:S,sign:M,verify:V,ProjectivePoint:c,Signature:h,utils:b}}function J0(r){return{hash:r,hmac:(e,...t)=>Or(r,e,Bi(...t)),randomBytes:rn}}function Yu(r,e){let t=n=>Zu({...r,...J0(n)});return{...t(e),create:t}}var ef=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),Ju=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),Q0=BigInt(1),Na=BigInt(2),Qu=(r,e)=>(r+e/Na)/e;function em(r){let e=ef,t=BigInt(3),n=BigInt(6),o=BigInt(11),s=BigInt(22),i=BigInt(23),a=BigInt(44),c=BigInt(88),l=r*r*r%e,u=l*l*r%e,f=le(u,t,e)*u%e,d=le(f,t,e)*u%e,m=le(d,Na,e)*l%e,y=le(m,o,e)*m%e,g=le(y,s,e)*y%e,h=le(g,a,e)*g%e,b=le(h,c,e)*h%e,x=le(b,a,e)*g%e,p=le(x,t,e)*u%e,S=le(p,i,e)*y%e,N=le(S,n,e)*l%e,L=le(N,Na,e);if(!_a.eql(_a.sqr(L),r))throw new Error("Cannot find square root");return L}var _a=Vt(ef,void 0,void 0,{sqrt:em}),fr=Yu({a:BigInt(0),b:BigInt(7),Fp:_a,n:Ju,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let e=Ju,t=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-Q0*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),o=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),s=t,i=BigInt("0x100000000000000000000000000000000"),a=Qu(s*r,e),c=Qu(-n*r,e),l=X(r-a*t-c*o,e),u=X(-a*n-c*s,e),f=l>i,d=u>i;if(f&&(l=e-l),d&&(u=e-u),l>i||u>i)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:f,k1:l,k2neg:d,k2:u}}}},ct),wx=BigInt(0);var bx=fr.ProjectivePoint;function be(r,e){e==null&&(e=r.reduce((o,s)=>o+s.length,0));let t=me(e),n=0;for(let o of r)t.set(o,n),n+=o.length;return t}function tf(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function rf(r,e,t){let n=vt.digest(t instanceof Uint8Array?t:t.subarray());if(tf(n))return n.then(({digest:o})=>fr.verify(e,o,r)).catch(o=>{throw new xn(String(o))});try{return fr.verify(e,n.digest,r)}catch(o){throw new xn(String(o))}}var fs=class{type="secp256k1";raw;_key;constructor(e){this._key=of(e),this.raw=nf(this._key)}toMultihash(){return gt.digest(Tr(this))}toCID(){return Ee.createV1(114,this.toMultihash())}toString(){return se.encode(this.toMultihash().bytes).substring(1)}equals(e){return e==null||!(e.raw instanceof Uint8Array)?!1:Pe(this.raw,e.raw)}verify(e,t){return rf(this._key,t,e)}};function Ra(r){return new fs(r)}function nf(r){return fr.ProjectivePoint.fromHex(r).toRawBytes(!0)}function of(r){try{return fr.ProjectivePoint.fromHex(r),r}catch(e){throw new yr(String(e))}}function An(r){let{Type:e,Data:t}=at.decode(r),n=t??new Uint8Array;switch(e){case we.RSA:return Ta(n);case we.Ed25519:return $i(n);case we.secp256k1:return Ra(n);default:throw new Jt}}function sf(r){let{Type:e,Data:t}=at.decode(r.digest),n=t??new Uint8Array;switch(e){case we.Ed25519:return $i(n);case we.secp256k1:return Ra(n);default:throw new Jt}}function Tr(r){return at.encode({Type:we[r.type],Data:r.raw})}var af=Symbol.for("nodejs.util.inspect.custom"),rm=114,Bn=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()})`}[hi]=!0;toString(){return this.string==null&&(this.string=se.encode(this.multihash.bytes).slice(1)),this.string}toMultihash(){return this.multihash}toCID(){return Ee.createV1(rm,this.multihash)}toJSON(){return this.toString()}equals(e){if(e==null)return!1;if(e instanceof Uint8Array)return Pe(this.multihash.bytes,e);if(typeof e=="string")return this.toString()===e;if(e?.toMultihash()?.bytes!=null)return Pe(this.multihash.bytes,e.toMultihash().bytes);throw new Error("not valid Id")}[af](){return`PeerId(${this.toString()})`}},Sn=class extends Bn{type="RSA";publicKey;constructor(e){super({...e,type:"RSA"}),this.publicKey=e.publicKey}},In=class extends Bn{type="Ed25519";publicKey;constructor(e){super({...e,type:"Ed25519"}),this.publicKey=e.publicKey}},Cn=class extends Bn{type="secp256k1";publicKey;constructor(e){super({...e,type:"secp256k1"}),this.publicKey=e.publicKey}},nm=2336,hs=class{type="url";multihash;publicKey;url;constructor(e){this.url=e.toString(),this.multihash=gt.digest(Q(this.url))}[af](){return`PeerId(${this.url})`}[hi]=!0;toString(){return this.toCID().toString()}toMultihash(){return this.multihash}toCID(){return Ee.createV1(nm,this.toMultihash())}toJSON(){return this.toString()}equals(e){return e==null?!1:(e instanceof Uint8Array&&(e=Z(e)),e.toString()===this.toString())}};function Mr(r,e){let t;if(r.charAt(0)==="1"||r.charAt(0)==="Q")t=Dt(se.decode(`z${r}`));else{if(e==null)throw new oe('Please pass a multibase decoder for strings that do not start with "1" or "Q"');t=Dt(e.decode(r))}return om(t)}function Ua(r){if(r.type==="Ed25519")return new In({multihash:r.toCID().multihash,publicKey:r});if(r.type==="secp256k1")return new Cn({multihash:r.toCID().multihash,publicKey:r});if(r.type==="RSA")return new Sn({multihash:r.toCID().multihash,publicKey:r});throw new Jt}function om(r){if(im(r))return new Sn({multihash:r});if(sm(r))try{let e=sf(r);if(e.type==="Ed25519")return new In({multihash:r,publicKey:e});if(e.type==="secp256k1")return new Cn({multihash:r,publicKey:e})}catch{let t=Z(r.digest);return new hs(new URL(t))}throw new Zn("Supplied PeerID Multihash is invalid")}function sm(r){return r.code===gt.code}function im(r){return r.code===vt.code}var ds=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,o){return this.readAtomically(()=>{let s=0,i=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",l=2**(8*o)-1;for(;;){let u=this.readAtomically(()=>{let f=this.readChar();if(f===void 0)return;let d=Number.parseInt(f,e);if(!Number.isNaN(d))return d});if(u===void 0)break;if(s*=e,s+=u,s>l||(i+=1,t!==void 0&&i>t))return}if(i!==0)return!n&&c&&i>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 o=n*2;if(n<t.length-3){let i=this.readSeparator(":",n,()=>this.readIPv4Addr());if(i!==void 0)return t[o]=i[0],t[o+1]=i[1],t[o+2]=i[2],t[o+3]=i[3],[o+4,!0]}let s=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(s===void 0)return[o,!1];t[o]=s>>8,t[o+1]=s&255}return[t.length,!1]};return this.readAtomically(()=>{let t=new Uint8Array(16),[n,o]=e(t);if(n===16)return t;if(o||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let s=new Uint8Array(14),i=16-(n+2),[a]=e(s.subarray(0,i));return t.set(s.subarray(0,a),16-a),t})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var cf=45,am=15,Hr=new ds;function Da(r){if(!(r.length>am))return Hr.new(r).parseWith(()=>Hr.readIPv4Addr())}function Pa(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>cf))return Hr.new(r).parseWith(()=>Hr.readIPv6Addr())}function ps(r,e=!1){if(r.includes("%")&&(r=r.split("%")[0]),r.length>cf)return;let t=Hr.new(r).parseWith(()=>Hr.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 U1=parseInt("0xFFFF",16),D1=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);function ms(r){return!!Da(r)}function gs(r){return!!Pa(r)}function ys(r){return!!ps(r)}var ff=ms,hm=gs,Oa=function(r){let e=0;if(r=r.toString().trim(),ff(r)){let t=new Uint8Array(e+4);return r.split(/\./g).forEach(n=>{t[e++]=parseInt(n,10)&255}),t}if(hm(r)){let t=r.split(":",8),n;for(n=0;n<t.length;n++){let s=ff(t[n]),i;s&&(i=Oa(t[n]),t[n]=Z(i.slice(0,2),"base16")),i!=null&&++n<8&&t.splice(n,0,Z(i.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 o=new Uint8Array(e+16);for(n=0;n<t.length;n++){let s=parseInt(t[n],16);o[e++]=s>>8&255,o[e++]=s&255}return o}throw new Error("invalid ip address")},hf=function(r,e=0,t){e=~~e,t=t??r.length-e;let n=new DataView(r.buffer);if(t===4){let o=[];for(let s=0;s<t;s++)o.push(r[e+s]);return o.join(".")}if(t===16){let o=[];for(let s=0;s<t;s+=2)o.push(n.getUint16(e+s).toString(16));return o.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var Fr={},Ma={},pm=[[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"]];pm.forEach(r=>{let e=mm(...r);Ma[e.code]=e,Fr[e.name]=e});function mm(r,e,t,n,o){return{code:r,size:e,name:t,resolvable:!!n,path:!!o}}function ne(r){if(typeof r=="number"){if(Ma[r]!=null)return Ma[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(Fr[r]!=null)return Fr[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var w2=ne("ip4"),b2=ne("ip6"),x2=ne("ipcidr");function Ka(r,e){switch(ne(r).code){case 4:case 41:return ym(e);case 42:return Va(e);case 43:return Z(e,"base10");case 6:case 273:case 33:case 132:return mf(e).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return Va(e);case 421:return Em(e);case 444:return pf(e);case 445:return pf(e);case 466:return xm(e);case 481:return globalThis.encodeURIComponent(Va(e));default:return Z(e,"base16")}}function $a(r,e){switch(ne(r).code){case 4:return df(e);case 41:return df(e);case 42:return Fa(e);case 43:return Q(e,"base10");case 6:case 273:case 33:case 132:return Ga(parseInt(e,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return Fa(e);case 421:return wm(e);case 444:return vm(e);case 445:return Am(e);case 466:return bm(e);case 481:return Fa(globalThis.decodeURIComponent(e));default:return Q(e,"base16")}}var Ha=Object.values(ar).map(r=>r.decoder),gm=function(){let r=Ha[0].or(Ha[1]);return Ha.slice(2).forEach(e=>r=r.or(e)),r}();function df(r){if(!ys(r))throw new Error("invalid ip address");return Oa(r)}function ym(r){let e=hf(r,0,r.length);if(e==null)throw new Error("ipBuff is required");if(!ys(e))throw new Error("invalid ip address");return e}function Ga(r){let e=new ArrayBuffer(2);return new DataView(e).setUint16(0,r),new Uint8Array(e)}function mf(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function Fa(r){let e=Q(r),t=Uint8Array.from(ze(e.length));return be([t,e],t.length+e.length)}function Va(r){let e=Ke(r);if(r=r.slice(ee(e)),r.length!==e)throw new Error("inconsistent lengths");return Z(r)}function wm(r){let e;r[0]==="Q"||r[0]==="1"?e=Dt(se.decode(`z${r}`)).bytes:e=Ee.parse(r).multihash.bytes;let t=Uint8Array.from(ze(e.length));return be([t,e],t.length+e.length)}function bm(r){let e=gm.decode(r),t=Uint8Array.from(ze(e.length));return be([t,e],t.length+e.length)}function xm(r){let e=Ke(r),t=r.slice(ee(e));if(t.length!==e)throw new Error("inconsistent lengths");return"u"+Z(t,"base64url")}function Em(r){let e=Ke(r),t=r.slice(ee(e));if(t.length!==e)throw new Error("inconsistent lengths");return Z(t,"base58btc")}function vm(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=mt.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 o=Ga(n);return be([t,o],t.length+o.length)}function Am(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=mt.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 o=Ga(n);return be([t,o],t.length+o.length)}function pf(r){let e=r.slice(0,r.length-2),t=r.slice(r.length-2),n=Z(e,"base32"),o=mf(t);return`${n}:${o}`}function gf(r){r=Wa(r);let e=[],t=[],n=null,o=r.split("/").slice(1);if(o.length===1&&o[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let s=0;s<o.length;s++){let i=o[s],a=ne(i);if(a.size===0){e.push([a.code]),t.push([a.code]);continue}if(s++,s>=o.length)throw new ws("invalid address: "+r);if(a.path===!0){n=Wa(o.slice(s).join("/")),e.push([a.code,$a(a.code,n)]),t.push([a.code,n]);break}let c=$a(a.code,o[s]);e.push([a.code,c]),t.push([a.code,Ka(a.code,c)])}return{string:yf(t),bytes:bs(e),tuples:e,stringTuples:t,path:n}}function qa(r){let e=[],t=[],n=null,o=0;for(;o<r.length;){let s=Ke(r,o),i=ee(s),a=ne(s),c=Bm(a,r.slice(o+i));if(c===0){e.push([s]),t.push([s]),o+=i;continue}let l=r.slice(o+i,o+i+c);if(o+=c+i,o>r.length)throw new ws("Invalid address Uint8Array: "+Z(r,"base16"));e.push([s,l]);let u=Ka(s,l);if(t.push([s,u]),a.path===!0){n=u;break}}return{bytes:Uint8Array.from(r),string:yf(t),tuples:e,stringTuples:t,path:n}}function yf(r){let e=[];return r.map(t=>{let n=ne(t[0]);return e.push(n.name),t.length>1&&t[1]!=null&&e.push(t[1]),null}),Wa(e.join("/"))}function bs(r){return be(r.map(e=>{let t=ne(e[0]),n=Uint8Array.from(ze(t.code));return e.length>1&&e[1]!=null&&(n=be([n,e[1]])),n}))}function Bm(r,e){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let t=Ke(e instanceof Uint8Array?e:Uint8Array.from(e));return t+ee(t)}}function Wa(r){return"/"+r.trim().split("/").filter(e=>e).join("/")}var ws=class extends Error{static name="ParseError";name="ParseError";constructor(e){super(`Error parsing address: ${e}`)}};var Sm=Symbol.for("nodejs.util.inspect.custom"),ja=Symbol.for("@multiformats/js-multiaddr/multiaddr"),Im=[ne("dns").code,ne("dns4").code,ne("dns6").code,ne("dnsaddr").code],za=class extends Error{constructor(e="No available resolver"){super(e),this.name="NoAvailableResolverError"}},xs=class r{bytes;#e;#t;#r;#n;[ja]=!0;constructor(e){e==null&&(e="");let t;if(e instanceof Uint8Array)t=qa(e);else if(typeof e=="string"){if(e.length>0&&e.charAt(0)!=="/")throw new Error(`multiaddr "${e}" must start with a "/"`);t=gf(e)}else if(bf(e))t=qa(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,o,s="",i=ne("tcp"),a=ne("udp"),c=ne("ip4"),l=ne("ip6"),u=ne("dns6"),f=ne("ip6zone");for(let[m,y]of this.stringTuples())m===f.code&&(s=`%${y??""}`),Im.includes(m)&&(t=i.name==="tcp"?"tcp":"udp",o=443,n=`${y??""}${s}`,e=m===u.code?6:4),(m===i.code||m===a.code)&&(t=ne(m).name==="tcp"?"tcp":"udp",o=parseInt(y??"")),(m===c.code||m===l.code)&&(t=ne(m).name==="tcp"?"tcp":"udp",n=`${y??""}${s}`,e=m===l.code?6:4);if(e==null||t==null||n==null||o==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:e,host:n,transport:t,port:o}}protos(){return this.#t.map(([e])=>Object.assign({},ne(e)))}protoCodes(){return this.#t.map(([e])=>e)}protoNames(){return this.#t.map(([e])=>ne(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(),o=n.lastIndexOf(t);if(o<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${e.toString()}`);return new r(n.slice(0,o))}decapsulateCode(e){let t=this.tuples();for(let n=t.length-1;n>=0;n--)if(t[n][0]===e)return new r(bs(t.slice(0,n)));return this}getPeerId(){try{let e=[];this.stringTuples().forEach(([n,o])=>{n===Fr.p2p.code&&e.push([n,o]),n===Fr["p2p-circuit"].code&&(e=[])});let t=e.pop();if(t?.[1]!=null){let n=t[1];return n[0]==="Q"||n[0]==="1"?Z(se.decode(`z${n}`),"base58btc"):Z(Ee.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#n}equals(e){return Pe(this.bytes,e.bytes)}async resolve(e){let t=this.protos().find(s=>s.resolvable);if(t==null)return[this];let n=wf.get(t.name);if(n==null)throw new za(`no available resolver for ${t.name}`);return(await n(this,e)).map(s=>ht(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)}[Sm](){return`Multiaddr(${this.#e})`}};var wf=new Map;function bf(r){return!!r?.[ja]}function ht(r){return new xs(r)}var Cm=r=>r.toString().split("/").slice(1),Vr=r=>({match:e=>e.length<1?!1:r(e[0])?e.slice(1):!1,pattern:"fn"}),W=r=>({match:e=>Vr(t=>t===r).match(e),pattern:r}),hr=()=>({match:r=>Vr(e=>typeof e=="string").match(r),pattern:"{string}"}),kn=()=>({match:r=>Vr(e=>!isNaN(parseInt(e))).match(r),pattern:"{number}"}),te=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{se.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),Tn=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{ln.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),Y=r=>({match:e=>{let t=r.match(e);return t===!1?e:t},pattern:`optional(${r.pattern})`}),_e=(...r)=>({match:e=>{let t;for(let n of r){let o=n.match(e);o!==!1&&(t==null||o.length<t.length)&&(t=o)}return t??!1},pattern:`or(${r.map(e=>e.pattern).join(", ")})`}),z=(...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 ue(...r){function e(o){let s=Cm(o);for(let i of r){let a=i.match(s);if(a===!1)return!1;s=a}return s}function t(o){return e(o)!==!1}function n(o){let s=e(o);return s===!1?!1:s.length===0}return{matchers:r,matches:t,exactMatch:n}}var vs=z(W("dns4"),hr()),As=z(W("dns6"),hr()),Bs=z(W("dnsaddr"),hr()),Za=z(W("dns"),hr()),Y2=ue(vs,Y(te())),J2=ue(As,Y(te())),Q2=ue(Bs,Y(te())),eE=ue(_e(Za,Bs,vs,As),Y(te())),xf=z(W("ip4"),Vr(ms)),Ef=z(W("ip6"),Vr(gs)),Ya=_e(xf,Ef),Nt=_e(Ya,Za,vs,As,Bs),tE=ue(_e(Ya,z(_e(Za,Bs,vs,As),Y(te())))),rE=ue(xf),nE=ue(Ef),oE=ue(Ya),Ja=z(Nt,W("tcp"),kn()),Ln=z(Nt,W("udp"),kn()),sE=ue(z(Ja,Y(te()))),iE=ue(Ln),Qa=z(Ln,W("quic"),Y(te())),Ss=z(Ln,W("quic-v1"),Y(te())),km=_e(Qa,Ss),aE=ue(Qa),cE=ue(Ss),Xa=_e(Nt,Ja,Ln,Qa,Ss),vf=_e(z(Xa,W("ws"),Y(te()))),lE=ue(vf),Af=_e(z(Xa,W("wss"),Y(te())),z(Xa,W("tls"),Y(z(W("sni"),hr())),W("ws"),Y(te()))),uE=ue(Af),Bf=z(Ln,W("webrtc-direct"),Y(Tn()),Y(Tn()),Y(te())),Sf=ue(Bf),If=z(Ss,W("webtransport"),Y(Tn()),Y(Tn()),Y(te())),fE=ue(If),Es=_e(vf,Af,z(Ja,Y(te())),z(km,Y(te())),z(Nt,Y(te())),Bf,If,te()),Cf=ue(Es),Tm=z(Es,W("p2p-circuit"),te()),hE=ue(Tm),Lm=_e(z(Es,W("p2p-circuit"),W("webrtc"),Y(te())),z(Es,W("webrtc"),Y(te())),z(W("webrtc"),Y(te()))),kf=ue(Lm),Nm=_e(z(Nt,W("tcp"),kn(),W("http"),Y(te())),z(Nt,W("http"),Y(te()))),dE=ue(Nm),_m=_e(z(Nt,W("tcp"),_e(z(W("443"),W("http")),z(kn(),W("https"))),Y(te())),z(Nt,W("tls"),W("http"),Y(te())),z(Nt,W("https"),Y(te()))),pE=ue(_m),Rm=_e(z(W("memory"),hr(),Y(te()))),mE=ue(Rm);var Re;(function(r){let e;(function(o){o.FIN="FIN",o.STOP_SENDING="STOP_SENDING",o.RESET="RESET",o.FIN_ACK="FIN_ACK"})(e=r.Flag||(r.Flag={}));let t;(function(o){o[o.FIN=0]="FIN",o[o.STOP_SENDING=1]="STOP_SENDING",o[o.RESET=2]="RESET",o[o.FIN_ACK=3]="FIN_ACK"})(t||(t={})),function(o){o.codec=()=>lr(t)}(e=r.Flag||(r.Flag={}));let n;r.codec=()=>(n==null&&(n=nt((o,s,i={})=>{i.lengthDelimited!==!1&&s.fork(),o.flag!=null&&(s.uint32(8),r.Flag.codec().encode(o.flag,s)),o.message!=null&&(s.uint32(18),s.bytes(o.message)),i.lengthDelimited!==!1&&s.ldelim()},(o,s,i={})=>{let a={},c=s==null?o.len:o.pos+s;for(;o.pos<c;){let l=o.uint32();switch(l>>>3){case 1:{a.flag=r.Flag.codec().decode(o);break}case 2:{a.message=o.bytes();break}default:{o.skipType(l&7);break}}}return a})),n),r.encode=o=>rt(o,r.codec()),r.decode=(o,s)=>tt(o,r.codec(),s)})(Re||(Re={}));var Tf=["stun:stun.l.google.com:19302","stun:global.stun.twilio.com:3478","stun:stun.cloudflare.com:3478","stun:stun.services.mozilla.com:3478"],ec=Array.from("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"),Lf="libp2p+webrtc+v1/";var Nf=466,_f=2*1024*1024,Rf=30*1e3,Kr=16*1024;function Um(r=Kr){let e=ee(r-ee(r)),t=1+ee(Object.keys(Re.Flag).length-1),n=1,o=r-e-t-n,s=ee(o);return e+t+n+s}var Uf=Um(),Df=5e3,Pf=5e3,Of=301e3,tc="/webrtc",Nn="/webrtc-signaling/0.0.1";var Mf=function(r,e,t){if(t||arguments.length===2)for(var n=0,o=e.length,s;n<o;n++)(s||!(n in e))&&(s||(s=Array.prototype.slice.call(e,0,n)),s[n]=e[n]);return r.concat(s||Array.prototype.slice.call(e))},Dm=function(){function r(e,t,n){this.name=e,this.version=t,this.os=n,this.type="browser"}return r}();var Pm=function(){function r(e){this.version=e,this.type="node",this.name="node",this.os=process.platform}return r}();var Om=function(){function r(e,t,n,o){this.name=e,this.version=t,this.os=n,this.bot=o,this.type="bot-device"}return r}();var Mm=function(){function r(){this.type="bot",this.bot=!0,this.name="bot",this.version=null,this.os=null}return r}();var Hm=function(){function r(){this.type="react-native",this.name="react-native",this.version=null,this.os=null}return r}();var Fm=/alexa|bot|crawl(er|ing)|facebookexternalhit|feedburner|google web preview|nagios|postrank|pingdom|slurp|spider|yahoo!|yandex/,Vm=/(nuhk|curl|Googlebot|Yammybot|Openbot|Slurp|MSNBot|Ask\ Jeeves\/Teoma|ia_archiver)/,Hf=3,Km=[["aol",/AOLShield\/([0-9\._]+)/],["edge",/Edge\/([0-9\._]+)/],["edge-ios",/EdgiOS\/([0-9\._]+)/],["yandexbrowser",/YaBrowser\/([0-9\._]+)/],["kakaotalk",/KAKAOTALK\s([0-9\.]+)/],["samsung",/SamsungBrowser\/([0-9\.]+)/],["silk",/\bSilk\/([0-9._-]+)\b/],["miui",/MiuiBrowser\/([0-9\.]+)$/],["beaker",/BeakerBrowser\/([0-9\.]+)/],["edge-chromium",/EdgA?\/([0-9\.]+)/],["chromium-webview",/(?!Chrom.*OPR)wv\).*Chrom(?:e|ium)\/([0-9\.]+)(:?\s|$)/],["chrome",/(?!Chrom.*OPR)Chrom(?:e|ium)\/([0-9\.]+)(:?\s|$)/],["phantomjs",/PhantomJS\/([0-9\.]+)(:?\s|$)/],["crios",/CriOS\/([0-9\.]+)(:?\s|$)/],["firefox",/Firefox\/([0-9\.]+)(?:\s|$)/],["fxios",/FxiOS\/([0-9\.]+)/],["opera-mini",/Opera Mini.*Version\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)(?:\s|$)/],["opera",/OPR\/([0-9\.]+)(:?\s|$)/],["pie",/^Microsoft Pocket Internet Explorer\/(\d+\.\d+)$/],["pie",/^Mozilla\/\d\.\d+\s\(compatible;\s(?:MSP?IE|MSInternet Explorer) (\d+\.\d+);.*Windows CE.*\)$/],["netfront",/^Mozilla\/\d\.\d+.*NetFront\/(\d.\d)/],["ie",/Trident\/7\.0.*rv\:([0-9\.]+).*\).*Gecko$/],["ie",/MSIE\s([0-9\.]+);.*Trident\/[4-7].0/],["ie",/MSIE\s(7\.0)/],["bb10",/BB10;\sTouch.*Version\/([0-9\.]+)/],["android",/Android\s([0-9\.]+)/],["ios",/Version\/([0-9\._]+).*Mobile.*Safari.*/],["safari",/Version\/([0-9\._]+).*Safari/],["facebook",/FB[AS]V\/([0-9\.]+)/],["instagram",/Instagram\s([0-9\.]+)/],["ios-webview",/AppleWebKit\/([0-9\.]+).*Mobile/],["ios-webview",/AppleWebKit\/([0-9\.]+).*Gecko\)$/],["curl",/^curl\/([0-9\.]+)$/],["searchbot",Fm]],Ff=[["iOS",/iP(hone|od|ad)/],["Android OS",/Android/],["BlackBerry OS",/BlackBerry|BB10/],["Windows Mobile",/IEMobile/],["Amazon OS",/Kindle/],["Windows 3.11",/Win16/],["Windows 95",/(Windows 95)|(Win95)|(Windows_95)/],["Windows 98",/(Windows 98)|(Win98)/],["Windows 2000",/(Windows NT 5.0)|(Windows 2000)/],["Windows XP",/(Windows NT 5.1)|(Windows XP)/],["Windows Server 2003",/(Windows NT 5.2)/],["Windows Vista",/(Windows NT 6.0)/],["Windows 7",/(Windows NT 6.1)/],["Windows 8",/(Windows NT 6.2)/],["Windows 8.1",/(Windows NT 6.3)/],["Windows 10",/(Windows NT 10.0)/],["Windows ME",/Windows ME/],["Windows CE",/Windows CE|WinCE|Microsoft Pocket Internet Explorer/],["Open BSD",/OpenBSD/],["Sun OS",/SunOS/],["Chrome OS",/CrOS/],["Linux",/(Linux)|(X11)/],["Mac OS",/(Mac_PowerPC)|(Macintosh)/],["QNX",/QNX/],["BeOS",/BeOS/],["OS/2",/OS\/2/]];function Kf(r){return r?Vf(r):typeof document>"u"&&typeof navigator<"u"&&navigator.product==="ReactNative"?new Hm:typeof navigator<"u"?Vf(navigator.userAgent):Wm()}function $m(r){return r!==""&&Km.reduce(function(e,t){var n=t[0],o=t[1];if(e)return e;var s=o.exec(r);return!!s&&[n,s]},!1)}function Vf(r){var e=$m(r);if(!e)return null;var t=e[0],n=e[1];if(t==="searchbot")return new Mm;var o=n[1]&&n[1].split(".").join("_").split("_").slice(0,3);o?o.length<Hf&&(o=Mf(Mf([],o,!0),qm(Hf-o.length),!0)):o=[];var s=o.join("."),i=Gm(r),a=Vm.exec(r);return a&&a[1]?new Om(t,s,i,a[1]):new Dm(t,s,i)}function Gm(r){for(var e=0,t=Ff.length;e<t;e++){var n=Ff[e],o=n[0],s=n[1],i=s.exec(r);if(i)return o}return null}function Wm(){var r=typeof process<"u"&&process.version;return r?new Pm(process.version.slice(1)):null}function qm(r){for(var e=[],t=0;t<r;t++)e.push("0");return e}function pe(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var rc=class extends Error{constructor(e){super(e),this.name="TimeoutError"}},nc=class extends Error{constructor(e){super(),this.name="AbortError",this.message=e}},$f=r=>globalThis.DOMException===void 0?new nc(r):new DOMException(r),Gf=r=>{let e=r.reason===void 0?$f("This operation was aborted."):r.reason;return e instanceof Error?e:$f(e)};function _n(r,e){let{milliseconds:t,fallback:n,message:o,customTimers:s={setTimeout,clearTimeout}}=e,i,a,l=new Promise((u,f)=>{if(typeof t!="number"||Math.sign(t)!==1)throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${t}\``);if(e.signal){let{signal:m}=e;m.aborted&&f(Gf(m)),a=()=>{f(Gf(m))},m.addEventListener("abort",a,{once:!0})}if(t===Number.POSITIVE_INFINITY){r.then(u,f);return}let d=new rc;i=s.setTimeout.call(void 0,()=>{if(n){try{u(n())}catch(m){f(m)}return}typeof r.cancel=="function"&&r.cancel(),o===!1?u():o instanceof Error?f(o):(d.message=o??`Promise timed out after ${t} milliseconds`,f(d))},t),(async()=>{try{u(await r)}catch(m){f(m)}})()}).finally(()=>{l.clear(),a&&e.signal&&e.signal.removeEventListener("abort",a)});return l.clear=()=>{s.clearTimeout.call(void 0,i),i=void 0},l}var Wf=Kf(),Rn=Wf!=null&&Wf.name==="firefox",Is=async function*(){},Cs=async r=>{};function qf(r,e,t=Of,n){r.readyState==="open"&&Promise.resolve().then(async()=>{if(r.bufferedAmount>0){n.log("%s drain channel with %d buffered bytes",e,r.bufferedAmount);let o=pe(),s=!1;r.bufferedAmountLowThreshold=0;let i=()=>{s||(n.log("%s drain channel closed before drain",e),o.resolve())};r.addEventListener("close",i,{once:!0}),r.addEventListener("bufferedamountlow",()=>{s=!0,r.removeEventListener("close",i),o.resolve()}),await _n(o.promise,{milliseconds:t})}}).then(async()=>{r.readyState==="open"&&r.close()}).catch(o=>{n.log.error("error closing outbound stream",o)})}async function oc(r){return r=r??{},typeof r=="function"&&(r=await r()),r.iceServers=r.iceServers??Tf.map(e=>({urls:[e]})),r}var zf=(r=32)=>Lf+[...Array(r)].map(()=>ec.at(Math.floor(Math.random()*ec.length))).join("");var dr=class{log;peerConnection;remoteAddr;timeline;metrics;source=Is();sink=Cs;constructor(e,t){this.log=e.logger.forComponent("libp2p:webrtc:maconn"),this.remoteAddr=t.remoteAddr,this.timeline=t.timeline,this.peerConnection=t.peerConnection;let n=this.peerConnection,o=n.connectionState;this.peerConnection.onconnectionstatechange=()=>{this.log.trace("peer connection state change",n.connectionState,"initial state",o),(n.connectionState==="disconnected"||n.connectionState==="failed"||n.connectionState==="closed")&&(this.timeline.close=Date.now())}}async close(e){this.log.trace("closing connection"),this.peerConnection.close(),this.timeline.close=Date.now(),this.metrics?.increment({close:!0})}abort(e){this.log.error("closing connection due to error",e),this.peerConnection.close(),this.timeline.close=Date.now(),this.metrics?.increment({abort:!0})}};var ks=class{buffer;mask;top;btm;next;constructor(e){if(!(e>0)||(e-1&e)!==0)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}},$r=class{size;hwm;head;tail;constructor(e={}){this.hwm=e.splitLimit??16,this.head=new ks(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 ks(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 sc=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.code=t??"ABORT_ERR"}};function jt(r={}){return zm(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 zm(r,e){e=e??{};let t=e.onEnd,n=new $r,o,s,i,a=pe(),c=async()=>{try{return n.isEmpty()?i?{done:!0}:await new Promise((h,b)=>{s=x=>{s=null,n.push(x);try{h(r(n))}catch(p){b(p)}return o}}):r(n)}finally{n.isEmpty()&&queueMicrotask(()=>{a.resolve(),a=pe()})}},l=h=>s!=null?s(h):(n.push(h),o),u=h=>(n=new $r,s!=null?s({error:h}):(n.push({error:h}),o)),f=h=>{if(i)return o;if(e?.objectMode!==!0&&h?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return l({done:!1,value:h})},d=h=>i?o:(i=!0,h!=null?u(h):l({done:!0})),m=()=>(n=new $r,d(),{done:!0}),y=h=>(d(h),{done:!0});if(o={[Symbol.asyncIterator](){return this},next:c,return:m,throw:y,push:f,end:d,get readableLength(){return n.size},onEmpty:async h=>{let b=h?.signal;if(b?.throwIfAborted(),n.isEmpty())return;let x,p;b!=null&&(x=new Promise((S,N)=>{p=()=>{N(new sc)},b.addEventListener("abort",p)}));try{await Promise.race([a.promise,x])}finally{p!=null&&b!=null&&b?.removeEventListener("abort",p)}}},t==null)return o;let g=o;return o={[Symbol.asyncIterator](){return this},next(){return g.next()},throw(h){return g.throw(h),t!=null&&(t(h),t=void 0),{done:!0}},return(){return g.return(),t!=null&&(t(),t=void 0),{done:!0}},push:f,end(h){return g.end(h),t!=null&&(t(h),t=void 0),o},get readableLength(){return g.readableLength},onEmpty:h=>g.onEmpty(h)},o}var Ts=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 st(r,e,t){if(e==null)return r;if(e.aborted)return r.catch(()=>{}),Promise.reject(new Ts(t?.errorMessage,t?.errorCode,t?.errorName));let n,o=new Ts(t?.errorMessage,t?.errorCode,t?.errorName);try{return await Promise.race([r,new Promise((s,i)=>{n=()=>{i(o)},e.addEventListener("abort",n)})])}finally{n!=null&&e.removeEventListener("abort",n)}}var Xf=Symbol.for("@achingbrain/uint8arraylist");function jf(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let o=t+n.byteLength;if(e<o)return{buf:n,index:e-t};t=o}throw new RangeError("index is out of bounds")}function Ls(r){return!!r?.[Xf]}var re=class r{bufs;length;[Xf]=!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(Ls(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(Ls(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=jf(this.bufs,e);return t.buf[t.index]}set(e,t){let n=jf(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(Ls(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:o}=this._subList(e,t);return be(n,o)}subarray(e,t){let{bufs:n,length:o}=this._subList(e,t);return n.length===1?n[0]:be(n,o)}sublist(e,t){let{bufs:n,length:o}=this._subList(e,t),s=new r;return s.length=o,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=[],o=0;for(let s=0;s<this.bufs.length;s++){let i=this.bufs[s],a=o,c=a+i.byteLength;if(o=c,e>=c)continue;let l=e>=a&&e<c,u=t>a&&t<=c;if(l&&u){if(e===a&&t===c){n.push(i);break}let f=e-a;n.push(i.subarray(f,f+(t-e)));break}if(l){if(e===0){n.push(i);continue}n.push(i.subarray(e-a));continue}if(u){if(t===c){n.push(i);break}n.push(i.subarray(0,t-a));break}n.push(i)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!Ls(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 o=n.byteLength;if(o===0)throw new TypeError("search must be at least 1 byte long");let s=256,i=new Int32Array(s);for(let f=0;f<s;f++)i[f]=-1;for(let f=0;f<o;f++)i[n[f]]=f;let a=i,c=this.byteLength-n.byteLength,l=n.byteLength-1,u;for(let f=t;f<=c;f+=u){u=0;for(let d=l;d>=0;d--){let m=this.get(f+d);if(n[d]!==m){u=Math.max(1,d-a[m]);break}}if(u===0)return f}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=me(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 o=ye(2);new DataView(o.buffer,o.byteOffset,o.byteLength).setInt16(0,t,n),this.write(o,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 o=ye(4);new DataView(o.buffer,o.byteOffset,o.byteLength).setInt32(0,t,n),this.write(o,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 o=ye(8);new DataView(o.buffer,o.byteOffset,o.byteLength).setBigInt64(0,t,n),this.write(o,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=me(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 o=ye(2);new DataView(o.buffer,o.byteOffset,o.byteLength).setUint16(0,t,n),this.write(o,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 o=ye(4);new DataView(o.buffer,o.byteOffset,o.byteLength).setUint32(0,t,n),this.write(o,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 o=ye(8);new DataView(o.buffer,o.byteOffset,o.byteLength).setBigUint64(0,t,n),this.write(o,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 o=ye(4);new DataView(o.buffer,o.byteOffset,o.byteLength).setFloat32(0,t,n),this.write(o,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 o=ye(8);new DataView(o.buffer,o.byteOffset,o.byteLength).setFloat64(0,t,n),this.write(o,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(!Pe(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((o,s)=>o+s.byteLength,0)),n.length=t,n}};function Zf(r){if(r!=null){if(typeof r[Symbol.iterator]=="function")return r[Symbol.iterator]();if(typeof r[Symbol.asyncIterator]=="function")return r[Symbol.asyncIterator]();if(typeof r.next=="function")return r}throw new Error("argument is not an iterator or iterable")}function Yf(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function Jf(r,e){let t=Zf(r).return?.();Yf(t)&&t.catch(n=>{e.error("could not cause iterator to return",n)})}var jm=5e3;function ic(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}var Ns=class{id;direction;timeline;protocol;metadata;source;status;readStatus;writeStatus;log;sinkController;sinkEnd;closed;endErr;streamSource;onEnd;onCloseRead;onCloseWrite;onReset;onAbort;sendCloseWriteTimeout;sendingData;constructor(e){this.sinkController=new AbortController,this.sinkEnd=pe(),this.closed=pe(),this.log=e.log,this.status="open",this.readStatus="ready",this.writeStatus="ready",this.id=e.id,this.metadata=e.metadata??{},this.direction=e.direction,this.timeline={open:Date.now()},this.sendCloseWriteTimeout=e.sendCloseWriteTimeout??jm,this.onEnd=e.onEnd,this.onCloseRead=e?.onCloseRead,this.onCloseWrite=e?.onCloseWrite,this.onReset=e?.onReset,this.onAbort=e?.onAbort,this.source=this.streamSource=jt({onEnd:t=>{t!=null?this.log.trace("source ended with error",t):this.log.trace("source ended"),this.onSourceEnd(t)}}),this.sink=this.sink.bind(this)}async sink(e){if(this.writeStatus!=="ready")throw new Yt(`writable end state is "${this.writeStatus}" not "ready"`);try{this.writeStatus="writing";let t={signal:this.sinkController.signal};if(this.direction==="outbound"){let o=this.sendNewStream(t);ic(o)&&await o}let n=()=>{Jf(e,this.log)};try{this.sinkController.signal.addEventListener("abort",n),this.log.trace("sink reading from source");for await(let o of e){o=o instanceof Uint8Array?new re(o):o;let s=this.sendData(o,t);ic(s)&&(this.sendingData=pe(),await s,this.sendingData.resolve(),this.sendingData=void 0)}}finally{this.sinkController.signal.removeEventListener("abort",n)}this.log.trace('sink finished reading from source, write status is "%s"',this.writeStatus),this.writeStatus==="writing"&&(this.writeStatus="closing",this.log.trace("send close write to remote"),await this.sendCloseWrite({signal:AbortSignal.timeout(this.sendCloseWriteTimeout)}),this.writeStatus="closed"),this.onSinkEnd()}catch(t){throw this.log.trace("sink ended with error, calling abort with error",t),this.abort(t),t}finally{this.log.trace("resolve sink end"),this.sinkEnd.resolve()}}onSourceEnd(e){this.timeline.closeRead==null&&(this.timeline.closeRead=Date.now(),this.readStatus="closed",e!=null&&this.endErr==null&&(this.endErr=e),this.onCloseRead?.(),this.timeline.closeWrite!=null?(this.log.trace("source and sink ended"),this.timeline.close=Date.now(),this.status!=="aborted"&&this.status!=="reset"&&(this.status="closed"),this.onEnd!=null&&this.onEnd(this.endErr),this.closed.resolve()):this.log.trace("source ended, waiting for sink to end"))}onSinkEnd(e){this.timeline.closeWrite==null&&(this.timeline.closeWrite=Date.now(),this.writeStatus="closed",e!=null&&this.endErr==null&&(this.endErr=e),this.onCloseWrite?.(),this.timeline.closeRead!=null?(this.log.trace("sink and source ended"),this.timeline.close=Date.now(),this.status!=="aborted"&&this.status!=="reset"&&(this.status="closed"),this.onEnd!=null&&this.onEnd(this.endErr),this.closed.resolve()):this.log.trace("sink ended, waiting for source to end"))}async close(e){this.status==="open"&&(this.log.trace("closing gracefully"),this.status="closing",await st(Promise.all([this.closeWrite(e),this.closeRead(e),this.closed.promise]),e?.signal),this.status="closed",this.log.trace("closed gracefully"))}async closeRead(e={}){if(this.readStatus==="closing"||this.readStatus==="closed")return;this.log.trace('closing readable end of stream with starting read status "%s"',this.readStatus);let t=this.readStatus;this.readStatus="closing",this.status!=="reset"&&this.status!=="aborted"&&this.timeline.closeRead==null&&(this.log.trace("send close read to remote"),await this.sendCloseRead(e)),t==="ready"&&(this.log.trace("ending internal source queue with %d queued bytes",this.streamSource.readableLength),this.streamSource.end()),this.log.trace("closed readable end of stream")}async closeWrite(e={}){this.writeStatus==="closing"||this.writeStatus==="closed"||(this.log.trace('closing writable end of stream with starting write status "%s"',this.writeStatus),this.writeStatus==="ready"&&(this.log.trace("sink was never sunk, sink an empty array"),await st(this.sink([]),e.signal)),this.writeStatus==="writing"&&(this.sendingData!=null&&await st(this.sendingData.promise,e.signal),this.log.trace("aborting source passed to .sink"),this.sinkController.abort(),await st(this.sinkEnd.promise,e.signal)),this.writeStatus="closed",this.log.trace("closed writable end of stream"))}abort(e){if(this.status==="closed"||this.status==="aborted"||this.status==="reset")return;this.log("abort with error",e),this.log("try to send reset to remote");let t=this.sendReset();ic(t)&&t.catch(n=>{this.log.error("error sending reset message",n)}),this.status="aborted",this.timeline.abort=Date.now(),this._closeSinkAndSource(e),this.onAbort?.(e)}reset(){if(this.status==="closed"||this.status==="aborted"||this.status==="reset")return;let e=new Xn("stream reset");this.status="reset",this.timeline.reset=Date.now(),this._closeSinkAndSource(e),this.onReset?.()}_closeSinkAndSource(e){this._closeSink(e),this._closeSource(e)}_closeSink(e){this.writeStatus==="writing"&&(this.log.trace("end sink source"),this.sinkController.abort()),this.onSinkEnd(e)}_closeSource(e){this.readStatus!=="closing"&&this.readStatus!=="closed"&&(this.log.trace("ending source with %d bytes to be read by consumer",this.streamSource.readableLength),this.readStatus="closing",this.streamSource.end(e))}remoteCloseWrite(){if(this.readStatus==="closing"||this.readStatus==="closed"){this.log("received remote close write but local source is already closed");return}this.log.trace("remote close write"),this._closeSource()}remoteCloseRead(){if(this.writeStatus==="closing"||this.writeStatus==="closed"){this.log("received remote close read but local sink is already closed");return}this.log.trace("remote close read"),this._closeSink()}destroy(){if(this.status==="closed"||this.status==="aborted"||this.status==="reset"){this.log("received destroy but we are already closed");return}this.log.trace("stream destroyed"),this._closeSinkAndSource()}sourcePush(e){this.streamSource.push(e)}sourceReadableLength(){return this.streamSource.readableLength}};function ac(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 o=e.signal;return o.clear=n,o}var _s=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},Gr=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},Rs=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"},Un=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};function Us(r){return r[Symbol.asyncIterator]!=null}function Qf(r,e){if(r.byteLength>e)throw new Gr("Message length too long")}var Ps=r=>{let e=ee(r),t=me(e);return ze(r,t),Ps.bytes=e,t};Ps.bytes=0;function Dn(r,e){e=e??{};let t=e.lengthEncoder??Ps,n=e?.maxDataLength??4194304;function*o(s){Qf(s,n);let i=t(s.byteLength);i instanceof Uint8Array?yield i:yield*i,s instanceof Uint8Array?yield s:yield*s}return Us(r)?async function*(){for await(let s of r)yield*o(s)}():function*(){for(let s of r)yield*o(s)}()}Dn.single=(r,e)=>{e=e??{};let t=e.lengthEncoder??Ps,n=e?.maxDataLength??4194304;return Qf(r,n),new re(t(r.byteLength),r)};var pr;(function(r){r[r.LENGTH=0]="LENGTH",r[r.DATA=1]="DATA"})(pr||(pr={}));var cc=r=>{let e=Ke(r);return cc.bytes=ee(e),e};cc.bytes=0;function Pn(r,e){let t=new re,n=pr.LENGTH,o=-1,s=e?.lengthDecoder??cc,i=e?.maxLengthLength??8,a=e?.maxDataLength??4194304;function*c(){for(;t.byteLength>0;){if(n===pr.LENGTH)try{if(o=s(t),o<0)throw new _s("Invalid message length");if(o>a)throw new Gr("Message length too long");let l=s.bytes;t.consume(l),e?.onLength!=null&&e.onLength(o),n=pr.DATA}catch(l){if(l instanceof RangeError){if(t.byteLength>i)throw new Rs("Message length length too long");break}throw l}if(n===pr.DATA){if(t.byteLength<o)break;let l=t.sublist(0,o);t.consume(o),e?.onData!=null&&e.onData(l),yield l,n=pr.LENGTH}}}return Us(r)?async function*(){for await(let l of r)t.append(l),yield*c();if(t.byteLength>0)throw new Un("Unexpected end of input")}():function*(){for(let l of r)t.append(l),yield*c();if(t.byteLength>0)throw new Un("Unexpected end of input")}()}Pn.fromReader=(r,e)=>{let t=1,n=async function*(){for(;;)try{let{done:s,value:i}=await r.next(t);if(s===!0)return;i!=null&&(yield i)}catch(s){if(s.code==="ERR_UNDER_READ")return{done:!0,value:null};throw s}finally{t=1}}();return Pn(n,{...e??{},onLength:s=>{t=s}})};var lc=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 On(r,e,t,n){let o=new lc(n?.errorMessage,n?.errorCode);return t?.aborted===!0?Promise.reject(o):new Promise((s,i)=>{function a(){t?.removeEventListener("abort",u),r.removeEventListener(e,c),n?.errorEvent!=null&&r.removeEventListener(n.errorEvent,l)}let c=f=>{try{if(n?.filter?.(f)===!1)return}catch(d){a(),i(d);return}a(),s(f)},l=f=>{a(),i(f.detail)},u=()=>{a(),i(o)};t?.addEventListener("abort",u),r.addEventListener(e,c),n?.errorEvent!=null&&r.addEventListener(n.errorEvent,l)})}var uc=class extends Ns{channel;incomingData;maxBufferedAmount;bufferedAmountLowEventTimeout;maxMessageSize;receiveFinAck;finAckTimeout;openTimeout;closeController;constructor(e){let t=e.onEnd;switch(e.onEnd=o=>{this.log.trace("readable and writeable ends closed",this.status),Promise.resolve(async()=>{if(!(this.timeline.abort!=null||this.timeline.reset!==null))try{await _n(this.receiveFinAck.promise,{milliseconds:this.finAckTimeout})}catch(s){this.log.error("error receiving FIN_ACK",s)}}).then(()=>{this.incomingData.end(),this.channel.close(),t?.(o)}).catch(s=>{this.log.error("error ending stream",s)})},super(e),this.channel=e.channel,this.channel.binaryType="arraybuffer",this.incomingData=jt(),this.bufferedAmountLowEventTimeout=e.bufferedAmountLowEventTimeout??Rf,this.maxBufferedAmount=e.maxBufferedAmount??_f,this.maxMessageSize=(e.maxMessageSize??Kr)-Uf,this.receiveFinAck=pe(),this.finAckTimeout=e.closeTimeout??Df,this.openTimeout=e.openTimeout??Pf,this.closeController=new AbortController,this.channel.readyState){case"open":this.timeline.open=new Date().getTime();break;case"closed":case"closing":(this.timeline.close===void 0||this.timeline.close===0)&&(this.timeline.close=Date.now());break;case"connecting":break;default:throw this.log.error("unknown datachannel state %s",this.channel.readyState),new Yt("Unknown datachannel state")}this.channel.onopen=o=>{this.timeline.open=new Date().getTime()},this.channel.onclose=o=>{this.log.trace("received onclose event"),this.closeController.abort(),this.receiveFinAck.resolve(),this.close().catch(s=>{this.log.error("error closing stream after channel closed",s)})},this.channel.onerror=o=>{this.log.trace("received onerror event"),this.closeController.abort();let s=o.error;this.abort(s)},this.channel.onmessage=async o=>{let{data:s}=o;s===null||s.byteLength===0||this.incomingData.push(new Uint8Array(s,0,s.byteLength))};let n=this;Promise.resolve().then(async()=>{for await(let o of Pn(this.incomingData)){let s=n.processIncomingProtobuf(o);s!=null&&n.sourcePush(new re(s))}}).catch(o=>{this.log.error("error processing incoming data channel messages",o)})}sendNewStream(){}async _sendMessage(e,t=!0){if(this.channel.readyState==="closed"||this.channel.readyState==="closing")throw new Yt(`Invalid datachannel state - ${this.channel.readyState}`);if(this.channel.readyState!=="open"){let n=AbortSignal.timeout(this.openTimeout),o=ac([this.closeController.signal,n]);try{this.log('channel state is "%s" and not "open", waiting for "open" event before sending data',this.channel.readyState),await On(this.channel,"open",o)}finally{o.clear()}this.log('channel state is now "%s", sending data',this.channel.readyState)}if(t&&this.channel.bufferedAmount>this.maxBufferedAmount){let n=AbortSignal.timeout(this.bufferedAmountLowEventTimeout),o=ac([this.closeController.signal,n]);try{this.log('channel buffer is %d, wait for "bufferedamountlow" event',this.channel.bufferedAmount),await On(this.channel,"bufferedamountlow",o)}catch(s){throw n.aborted?new Jn(`Timed out waiting for DataChannel buffer to clear after ${this.bufferedAmountLowEventTimeout}ms`):s}finally{o.clear()}}try{this.channel.send(e.subarray())}catch(n){this.log.error("error while sending message",n)}}async sendData(e){for(this.log.trace("-> will send %d bytes",e.byteLength),e=e.sublist();e.byteLength>0;){let t=Math.min(e.byteLength,this.maxMessageSize),n=e.subarray(0,t),o=Re.encode({message:n}),s=Dn.single(o);this.log.trace("-> sending message %s",this.channel.readyState),await this._sendMessage(s),this.log.trace("-> sent message %s",this.channel.readyState),e.consume(t)}this.log.trace("-> sent data %s",this.channel.readyState)}async sendReset(){try{await this._sendFlag(Re.Flag.RESET)}catch(e){this.log.error("failed to send reset - %e",e)}}async sendCloseWrite(e){if(this.channel.readyState!=="open"){this.receiveFinAck.resolve();return}if(await this._sendFlag(Re.Flag.FIN)){this.log.trace("awaiting FIN_ACK");try{await st(this.receiveFinAck.promise,e?.signal,{errorMessage:"sending close-write was aborted before FIN_ACK was received",errorName:"FinAckNotReceivedError"})}catch(n){this.log.error("failed to await FIN_ACK",n)}}else this.log.trace("sending FIN failed, not awaiting FIN_ACK");this.receiveFinAck.resolve()}async sendCloseRead(){this.channel.readyState==="open"&&await this._sendFlag(Re.Flag.STOP_SENDING)}processIncomingProtobuf(e){let t=Re.decode(e);if(t.flag!==void 0&&(this.log.trace('incoming flag %s, write status "%s", read status "%s"',t.flag,this.writeStatus,this.readStatus),t.flag===Re.Flag.FIN&&(this.remoteCloseWrite(),this.log.trace("sending FIN_ACK"),this._sendFlag(Re.Flag.FIN_ACK).catch(n=>{this.log.error("error sending FIN_ACK immediately",n)})),t.flag===Re.Flag.RESET&&this.reset(),t.flag===Re.Flag.STOP_SENDING&&this.remoteCloseRead(),t.flag===Re.Flag.FIN_ACK&&(this.log.trace("received FIN_ACK"),this.receiveFinAck.resolve())),this.readStatus==="ready")return t.message}async _sendFlag(e){if(this.channel.readyState!=="open")return this.log.trace('not sending flag %s because channel is "%s" and not "open"',this.channel.readyState,e.toString()),!1;this.log.trace("sending flag %s",e.toString());let t=Re.encode({flag:e}),n=Dn.single(t);try{return await this._sendMessage(n,!1),!0}catch(o){this.log.error("could not send flag %s - %e",e.toString(),o)}return!1}};function Wr(r){let{channel:e,direction:t}=r;return new uc({id:t==="inbound"?`i${e.id}`:`r${e.id}`,log:r.logger.forComponent(`libp2p:webrtc:stream:${t}:${e.id}`),...r})}var Xt=class{protocol;peerConnection;bufferedStreams=[];metrics;dataChannelOptions;components;log;constructor(e,t){this.components=e,this.peerConnection=t.peerConnection,this.metrics=t.metrics,this.protocol=t.protocol??tc,this.dataChannelOptions=t.dataChannelOptions??{},this.log=e.logger.forComponent("libp2p:webrtc:muxerfactory"),this.peerConnection.ondatachannel=({channel:n})=>{if(this.log.trace('incoming early datachannel with channel id %d and label "%s"',n.id),n.label==="init"){this.log.trace("closing early init channel"),n.close();return}let o={},s=Wr({channel:n,direction:"inbound",onEnd:i=>{o.onEnd(i)},logger:e.logger,...this.dataChannelOptions});o.stream=s,o.channel=n,o.onEnd=()=>{this.bufferedStreams=this.bufferedStreams.filter(i=>i.stream.id!==s.id)},this.bufferedStreams.push(o)}}createStreamMuxer(e){return new fc(this.components,{...e,peerConnection:this.peerConnection,dataChannelOptions:this.dataChannelOptions,metrics:this.metrics,streams:this.bufferedStreams,protocol:this.protocol})}},fc=class{init;streams;protocol;log;peerConnection;dataChannelOptions;metrics;logger;constructor(e,t){this.init=t,this.log=e.logger.forComponent("libp2p:webrtc:muxer"),this.logger=e.logger,this.streams=t.streams.map(n=>n.stream),this.peerConnection=t.peerConnection,this.protocol=t.protocol??tc,this.metrics=t.metrics,this.dataChannelOptions=t.dataChannelOptions??{},this.peerConnection.ondatachannel=({channel:n})=>{if(this.log.trace("incoming datachannel with channel id %d",n.id),n.label==="init"){this.log.trace("closing init channel"),n.close();return}let o=n.id,s=Wr({channel:n,direction:"inbound",onEnd:()=>{this.#e(s,n),this.log("incoming channel %s ended",o)},logger:this.logger,...this.dataChannelOptions});this.streams.push(s),this.metrics?.increment({incoming_stream:!0}),t?.onIncomingStream?.(s)},this.init.streams.length>0&&queueMicrotask(()=>{this.init.streams.forEach(n=>{n.onEnd=()=>{this.log("incoming early channel %s ended with state %s",n.channel.id,n.channel.readyState),this.#e(n.stream,n.channel)},this.metrics?.increment({incoming_stream:!0}),this.init?.onIncomingStream?.(n.stream)})})}#e(e,t){this.log.trace("stream %s %s %s onEnd",e.direction,e.id,e.protocol),qf(t,`${e.direction} ${e.id} ${e.protocol}`,this.dataChannelOptions.drainTimeout,{log:this.log}),this.streams=this.streams.filter(n=>n.id!==e.id),this.metrics?.increment({stream_end:!0}),this.init?.onStreamEnd?.(e)}async close(e){try{await Promise.all(this.streams.map(async t=>t.close(e)))}catch(t){this.abort(t)}}abort(e){for(let t of this.streams)t.abort(e)}source=Is();sink=Cs;newStream(){let e=this.peerConnection.createDataChannel(""),t=e.id;this.log.trace("opened outgoing datachannel with channel id %s",t);let n=Wr({channel:e,direction:"outbound",onEnd:()=>{this.#e(n,e),this.log("outgoing channel %s ended",t)},logger:this.logger,...this.dataChannelOptions});return this.streams.push(n),this.metrics?.increment({outgoing_stream:!0}),n}};var Os=globalThis.RTCPeerConnection,Ms=globalThis.RTCSessionDescription,eh=globalThis.RTCIceCandidate;var hc=class{readNext;haveNext;ended;nextResult;constructor(){this.ended=!1,this.readNext=pe(),this.haveNext=pe()}[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=pe(),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=pe(),await st(this.readNext.promise,t?.signal,t)}};function th(){return new hc}var Hs=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};var dc=class extends Error{code;constructor(e,t){super(e),this.code=t}},pc=class extends dc{type;constructor(e){super(e,"ABORT_ERR"),this.type="aborted",this.name="AbortError"}};function rh(r,e){let t=th();r.sink(t).catch(async i=>{await t.end(i)}),r.sink=async i=>{for await(let a of i)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 o=new re;return{read:async(i,a)=>{a?.signal?.throwIfAborted();let c,l=new Promise((u,f)=>{c=()=>{f(new pc("Read aborted"))},a?.signal?.addEventListener("abort",c)});try{if(i==null){let{done:f,value:d}=await Promise.race([n.next(),l]);return f===!0?new re:d}for(;o.byteLength<i;){let{value:f,done:d}=await Promise.race([n.next(),l]);if(d===!0)throw new Hs("unexpected end of input");o.append(f)}let u=o.sublist(0,i);return o.consume(i),u}finally{c!=null&&a?.signal?.removeEventListener("abort",c)}},write:async(i,a)=>{a?.signal?.throwIfAborted(),i instanceof Uint8Array?await t.push(i,a):await t.push(i.subarray(),a)},unwrap:()=>{if(o.byteLength>0){let i=r.source;r.source=async function*(){e?.yieldBytes===!1?yield o:yield*o,yield*i}()}return r}}}var Fs=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},Vs=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},Ks=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"};function Mn(r,e={}){let t=rh(r,e);e.maxDataLength!=null&&e.maxLengthLength==null&&(e.maxLengthLength=ee(e.maxDataLength));let n=e?.lengthDecoder??Ke,o=e?.lengthEncoder??ze;return{read:async i=>{let a=-1,c=new re;for(;;){c.append(await t.read(1,i));try{a=n(c)}catch(l){if(l instanceof RangeError)continue;throw l}if(a<0)throw new Fs("Invalid message length");if(e?.maxLengthLength!=null&&c.byteLength>e.maxLengthLength)throw new Ks("message length length too long");if(a>-1)break}if(e?.maxDataLength!=null&&a>e.maxDataLength)throw new Vs("message length too long");return t.read(a,i)},write:async(i,a)=>{await t.write(new re(o(i.byteLength),i),a)},writeV:async(i,a)=>{let c=new re(...i.flatMap(l=>[o(l.byteLength),l]));await t.write(c,a)},unwrap:()=>t.unwrap()}}function $s(r,e){let t=Mn(r,e),n={read:async(o,s)=>{let i=await t.read(s);return o.decode(i)},write:async(o,s,i)=>{await t.write(s.encode(o),i)},writeV:async(o,s,i)=>{await t.writeV(o.map(a=>s.encode(a)),i)},pb:o=>({read:async s=>n.read(o,s),write:async(s,i)=>n.write(s,o,i),writeV:async(s,i)=>n.writeV(s,o,i),unwrap:()=>n}),unwrap:()=>t.unwrap()};return n}var Ge=class extends Event{type;detail;constructor(e,t){super(e),this.type=e,this.detail=t}};var Zt=class extends Error{constructor(e){super(`WebRTC transport error: ${e}`),this.name="WebRTCTransportError"}},Xe=class extends Zt{constructor(e="SDP handshake failed"){super(e),this.name="SDPHandshakeFailedError"}};var Gs=class extends Zt{constructor(e,t){super(`Invalid fingerprint "${e}" within ${t}`),this.name="WebRTC/InvalidFingerprintError"}};var Ws=class extends Zt{constructor(e){super(`A method (${e}) was called though it has been intentionally left unimplemented.`),this.name="WebRTC/UnimplementedError"}},qs=class extends Zt{constructor(e){super(`unsupported hash algorithm code: ${e} please see the codes at https://github.com/multiformats/multicodec/blob/master/table.csv `),this.name="WebRTC/UnsupportedHashAlgorithmError"}};var Ve;(function(r){let e;(function(o){o.SDP_OFFER="SDP_OFFER",o.SDP_ANSWER="SDP_ANSWER",o.ICE_CANDIDATE="ICE_CANDIDATE"})(e=r.Type||(r.Type={}));let t;(function(o){o[o.SDP_OFFER=0]="SDP_OFFER",o[o.SDP_ANSWER=1]="SDP_ANSWER",o[o.ICE_CANDIDATE=2]="ICE_CANDIDATE"})(t||(t={})),function(o){o.codec=()=>lr(t)}(e=r.Type||(r.Type={}));let n;r.codec=()=>(n==null&&(n=nt((o,s,i={})=>{i.lengthDelimited!==!1&&s.fork(),o.type!=null&&(s.uint32(8),r.Type.codec().encode(o.type,s)),o.data!=null&&(s.uint32(18),s.string(o.data)),i.lengthDelimited!==!1&&s.ldelim()},(o,s,i={})=>{let a={},c=s==null?o.len:o.pos+s;for(;o.pos<c;){let l=o.uint32();switch(l>>>3){case 1:{a.type=r.Type.codec().decode(o);break}case 2:{a.data=o.string();break}default:{o.skipType(l&7);break}}}return a})),n),r.encode=o=>rt(o,r.codec()),r.decode=(o,s)=>tt(o,r.codec(),s)})(Ve||(Ve={}));var zs=async(r,e,t)=>{try{let n=pe();for(Ym(r,n);;){let o=await Promise.race([n.promise,e.read({signal:t.signal}).catch(()=>{})]);if(o==null){t.signal?.throwIfAborted();break}if(o.type!==Ve.Type.ICE_CANDIDATE)throw new Yn("ICE candidate message expected");let s=JSON.parse(o.data??"null");if(s===""||s===null){t.onProgress?.(new Ge("webrtc:end-of-ice-candidates")),t.log.trace("end-of-candidates received");continue}let i=new eh(s);t.log.trace("%s received new ICE candidate %o",t.direction,s);try{t.onProgress?.(new Ge("webrtc:add-ice-candidate",i.candidate)),await r.addIceCandidate(i)}catch(a){t.log.error("%s bad candidate received",t.direction,s,a)}}}catch(n){if(t.log.error("%s error parsing ICE candidate",t.direction,n),t.signal?.aborted===!0&&js(r)!=="connected")throw n}};function js(r){return Rn?r.iceConnectionState:r.connectionState}function Ym(r,e){r[Rn?"oniceconnectionstatechange":"onconnectionstatechange"]=t=>{switch(js(r)){case"connected":e.resolve();break;case"failed":case"disconnected":case"closed":e.reject(new jn("RTCPeerConnection was closed"));break;default:break}}}async function nh({rtcConfiguration:r,dataChannel:e,signal:t,metrics:n,multiaddr:o,connectionManager:s,transportManager:i,log:a,logger:c,onProgress:l}){let{baseAddr:u}=oh(o);n?.dialerEvents.increment({open:!0}),a.trace("dialing base address: %a",u);let f=u.getPeerId();if(f==null)throw new oe("Relay peer was missing");let d=s.getConnections(Mr(f)),m,y=!1;d.length===0?(l?.(new Ge("webrtc:dial-relay")),m=await i.dial(u,{signal:t,onProgress:l}),y=!0):(l?.(new Ge("webrtc:reuse-relay-connection")),m=d[0]);try{l?.(new Ge("webrtc:open-signaling-stream"));let g=await m.newStream(Nn,{signal:t,runOnLimitedConnection:!0}),h=$s(g).pb(Ve),b=new Os(r),x=new Xt({logger:c},{peerConnection:b,dataChannelOptions:e});try{let p=b.createDataChannel("init");b.onicecandidate=({candidate:B})=>{let T=JSON.stringify(B?.toJSON()??null);a.trace("initiator sending ICE candidate %o",B),h.write({type:Ve.Type.ICE_CANDIDATE,data:T},{signal:t}).catch(C=>{a.error("error sending ICE candidate",C)})},b.onicecandidateerror=B=>{a.error("initiator ICE candidate error",B)};let S=await b.createOffer().catch(B=>{throw a.error("could not execute createOffer",B),new Xe("Failed to set createOffer")});a.trace("initiator send SDP offer %s",S.sdp),l?.(new Ge("webrtc:send-sdp-offer")),await h.write({type:Ve.Type.SDP_OFFER,data:S.sdp},{signal:t}),await b.setLocalDescription(S).catch(B=>{throw a.error("could not execute setLocalDescription",B),new Xe("Failed to set localDescription")}),l?.(new Ge("webrtc:read-sdp-answer")),a.trace("initiator read SDP answer");let N=await h.read({signal:t});if(N.type!==Ve.Type.SDP_ANSWER)throw new Xe("Remote should send an SDP answer");a.trace("initiator received SDP answer %s",N.data);let L=new Ms({type:"answer",sdp:N.data});return await b.setRemoteDescription(L).catch(B=>{throw a.error("could not execute setRemoteDescription",B),new Xe("Failed to set remoteDescription")}),a.trace("initiator read candidates until connected"),l?.(new Ge("webrtc:read-ice-candidates")),await zs(b,h,{direction:"initiator",signal:t,log:a,onProgress:l}),a.trace("initiator connected, closing init channel"),p.close(),l?.(new Ge("webrtc:close-signaling-stream")),a.trace("closing signaling channel"),await g.close({signal:t}),a.trace("initiator connected to remote address %s",o),{remoteAddress:o,peerConnection:b,muxerFactory:x}}catch(p){throw a.error("outgoing signaling error",p),b.close(),g.abort(p),p}finally{b.onicecandidate=null,b.onicecandidateerror=null}}finally{if(y)try{await m.close({signal:t})}catch(g){m.abort(g)}}}var sh=ue(Cf.matchers[0],W("p2p-circuit")),Xs=class r extends wr{transportManager;shutdownController;events;constructor(e,t){super(),this.transportManager=e.transportManager,this.events=e.events,this.shutdownController=t.shutdownController,this.onTransportListening=this.onTransportListening.bind(this)}async listen(){this.events.addEventListener("transport:listening",this.onTransportListening)}onTransportListening(e){e.detail.getAddrs().filter(n=>sh.exactMatch(n)).map(n=>n.encapsulate("/webrtc")).length>0&&this.safeDispatchEvent("listening")}getAddrs(){return this.transportManager.getListeners().filter(e=>!(e instanceof r)).map(e=>e.getAddrs().filter(t=>sh.exactMatch(t)).map(t=>t.encapsulate("/webrtc"))).flat()}updateAnnounceAddrs(){}async close(){this.events.removeEventListener("transport:listening",this.onTransportListening),this.shutdownController.abort(),queueMicrotask(()=>{this.safeDispatchEvent("close")})}};async function ih({peerConnection:r,stream:e,signal:t,connection:n,log:o}){o.trace("new inbound signaling stream");let s=$s(e).pb(Ve);try{r.onicecandidate=({candidate:u})=>{let f=JSON.stringify(u?.toJSON()??null);o.trace("recipient sending ICE candidate %s",f),s.write({type:Ve.Type.ICE_CANDIDATE,data:f},{signal:t}).catch(d=>{o.error("error sending ICE candidate",d)})},o.trace("recipient read SDP offer");let a=await s.read({signal:t});if(a.type!==Ve.Type.SDP_OFFER)throw new Xe(`expected message type SDP_OFFER, received: ${a.type??"undefined"} `);o.trace("recipient received SDP offer %s",a.data);let c=new Ms({type:"offer",sdp:a.data});await r.setRemoteDescription(c).catch(u=>{throw o.error("could not execute setRemoteDescription",u),new Xe("Failed to set remoteDescription")});let l=await r.createAnswer().catch(u=>{throw o.error("could not execute createAnswer",u),new Xe("Failed to create answer")});o.trace("recipient send SDP answer %s",l.sdp),await s.write({type:Ve.Type.SDP_ANSWER,data:l.sdp},{signal:t}),await r.setLocalDescription(l).catch(u=>{throw o.error("could not execute setLocalDescription",u),new Xe("Failed to set localDescription")}),o.trace("recipient read candidates until connected"),await zs(r,s,{direction:"recipient",signal:t,log:o})}catch(a){if(js(r)!=="connected")throw o.error("error while handling signaling stream from peer %a",n.remoteAddr,a),r.close(),a;o("error while handling signaling stream from peer %a, ignoring as the RTCPeerConnection is already connected",n.remoteAddr,a)}let i=ht(`/webrtc/p2p/${n.remoteAddr.getPeerId()}`);return o.trace("recipient connected to remote address %s",i),{remoteAddress:i}}var Zs=class{components;init;log;_started=!1;metrics;shutdownController;constructor(e,t={}){this.components=e,this.init=t,this.log=e.logger.forComponent("libp2p:webrtc"),this.shutdownController=new AbortController,this.shutdownController.signal,e.metrics!=null&&(this.metrics={dialerEvents:e.metrics.registerCounterGroup("libp2p_webrtc_dialer_events_total",{label:"event",help:"Total count of WebRTC dialer events by type"}),listenerEvents:e.metrics.registerCounterGroup("libp2p_webrtc_listener_events_total",{label:"event",help:"Total count of WebRTC listener events by type"})})}[qn]=!0;[Symbol.toStringTag]="@libp2p/webrtc";[br]=["@libp2p/transport"];[Yc]=["@libp2p/identify","@libp2p/circuit-relay-v2-transport"];isStarted(){return this._started}async start(){await this.components.registrar.handle(Nn,e=>{let t=this.components.upgrader.createInboundAbortSignal(this.shutdownController.signal);this._onProtocol(e,t).catch(n=>{this.log.error("failed to handle incoming connect from %p",e.connection.remotePeer,n)}).finally(()=>{t.clear()})},{runOnLimitedConnection:!0}),this._started=!0}async stop(){await this.components.registrar.unhandle(Nn),this._started=!1}createListener(e){return new Xs(this.components,{shutdownController:this.shutdownController})}listenFilter(e){return e.filter(kf.exactMatch)}dialFilter(e){return this.listenFilter(e)}async dial(e,t){this.log.trace("dialing address: %a",e);let{remoteAddress:n,peerConnection:o,muxerFactory:s}=await nh({rtcConfiguration:await oc(this.init.rtcConfiguration),dataChannel:this.init.dataChannel,multiaddr:e,dataChannelOptions:this.init.dataChannel,signal:t.signal,connectionManager:this.components.connectionManager,transportManager:this.components.transportManager,log:this.log,logger:this.components.logger,onProgress:t.onProgress}),i=new dr(this.components,{peerConnection:o,timeline:{open:Date.now()},remoteAddr:n,metrics:this.metrics?.dialerEvents}),a=await t.upgrader.upgradeOutbound(i,{skipProtection:!0,skipEncryption:!0,muxerFactory:s,onProgress:t.onProgress,signal:t.signal});return this._closeOnShutdown(o,i),a}async _onProtocol({connection:e,stream:t},n){let o=new Os(await oc(this.init.rtcConfiguration)),s=new Xt(this.components,{peerConnection:o,dataChannelOptions:this.init.dataChannel});try{let{remoteAddress:i}=await ih({peerConnection:o,connection:e,stream:t,signal:n,log:this.log});await t.close({signal:n});let a=new dr(this.components,{peerConnection:o,timeline:{open:new Date().getTime()},remoteAddr:i,metrics:this.metrics?.listenerEvents});await this.components.upgrader.upgradeInbound(a,{skipEncryption:!0,skipProtection:!0,muxerFactory:s,signal:n}),this._closeOnShutdown(o,a)}catch(i){throw this.log.error("incoming signaling error",i),o.close(),t.abort(i),i}}_closeOnShutdown(e,t){let n=()=>{t.close().catch(o=>{this.log.error("could not close WebRTCMultiaddrConnection",o)})};this.shutdownController.signal.addEventListener("abort",n),e.addEventListener("close",()=>{this.shutdownController.signal.removeEventListener("abort",n)})}};function oh(r){let e=r.toString().split("/webrtc/");if(e.length!==2)throw new oe("webrtc protocol was not present in multiaddr");if(!e[0].includes("/p2p-circuit"))throw new oe("p2p-circuit protocol was not present in multiaddr");let t=ht(e[0]),o=ht("/"+e[1]).getPeerId();if(o==null)throw new oe("destination peer id was missing");let s=t.protos().pop();if(s===void 0)throw new oe("invalid multiaddr");return s.name!=="p2p"&&(t=t.encapsulate(`/p2p/${o}`)),{baseAddr:t,peerId:Mr(o)}}var Ys=class extends wr{async listen(){throw new Ws("WebRTCTransport.createListener")}getAddrs(){return[]}updateAnnounceAddrs(){}async close(){}};function Js(r){return r[Symbol.asyncIterator]!=null}var Qs=r=>{let e=ee(r),t=me(e);return ze(r,t),Qs.bytes=e,t};Qs.bytes=0;function ah(r,e){e=e??{};let t=e.lengthEncoder??Qs;function*n(o){let s=t(o.byteLength);s instanceof Uint8Array?yield s:yield*s,o instanceof Uint8Array?yield o:yield*o}return Js(r)?async function*(){for await(let o of r)yield*n(o)}():function*(){for(let o of r)yield*n(o)}()}ah.single=(r,e)=>{e=e??{};let t=e.lengthEncoder??Qs;return new re(t(r.byteLength),r)};var ei=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},ti=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},ri=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"},Hn=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};var Jm=8,Qm=1024*1024*4,mr;(function(r){r[r.LENGTH=0]="LENGTH",r[r.DATA=1]="DATA"})(mr||(mr={}));var mc=r=>{let e=Ke(r);return mc.bytes=ee(e),e};mc.bytes=0;function Fn(r,e){let t=new re,n=mr.LENGTH,o=-1,s=e?.lengthDecoder??mc,i=e?.maxLengthLength??Jm,a=e?.maxDataLength??Qm;function*c(){for(;t.byteLength>0;){if(n===mr.LENGTH)try{if(o=s(t),o<0)throw new ei("Invalid message length");if(o>a)throw new ti("Message length too long");let l=s.bytes;t.consume(l),e?.onLength!=null&&e.onLength(o),n=mr.DATA}catch(l){if(l instanceof RangeError){if(t.byteLength>i)throw new ri("Message length length too long");break}throw l}if(n===mr.DATA){if(t.byteLength<o)break;let l=t.sublist(0,o);t.consume(o),e?.onData!=null&&e.onData(l),yield l,n=mr.LENGTH}}}return Js(r)?async function*(){for await(let l of r)t.append(l),yield*c();if(t.byteLength>0)throw new Hn("Unexpected end of input")}():function*(){for(let l of r)t.append(l),yield*c();if(t.byteLength>0)throw new Hn("Unexpected end of input")}()}Fn.fromReader=(r,e)=>{let t=1,n=async function*(){for(;;)try{let{done:s,value:i}=await r.next(t);if(s===!0)return;i!=null&&(yield i)}catch(s){if(s.code==="ERR_UNDER_READ")return{done:!0,value:null};throw s}finally{t=1}}();return Fn(n,{...e??{},onLength:s=>{t=s}})};function gc(){let r=pe(),e=!1;return{sink:async t=>{if(e)throw new Error("already piped");e=!0,r.resolve(t)},source:async function*(){yield*await r.promise}()}}function ch(){let r=gc(),e=gc();return[{source:r.source,sink:e.sink},{source:e.source,sink:r.sink}]}function eg(r){return r[Symbol.asyncIterator]!=null}function tg(...r){let e=[];for(let t of r)eg(t)||e.push(t);return e.length===r.length?function*(){for(let t of e)yield*t}():async function*(){let t=jt({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async n=>{for await(let o of n)t.push(o)})),t.end()}catch(n){t.end(n)}}),yield*t}()}var lh=tg;function uh(r,...e){if(r==null)throw new Error("Empty pipeline");if(yc(r)){let n=r;r=()=>n.source}else if(hh(r)||fh(r)){let n=r;r=()=>n}let t=[r,...e];if(t.length>1&&yc(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++)yc(t[n])&&(t[n]=ng(t[n]));return rg(...t)}var rg=(...r)=>{let e;for(;r.length>0;)e=r.shift()(e);return e},fh=r=>r?.[Symbol.asyncIterator]!=null,hh=r=>r?.[Symbol.iterator]!=null,yc=r=>r==null?!1:r.sink!=null&&r.source!=null,ng=r=>e=>{let t=r.sink(e);if(t?.then!=null){let n=jt({objectMode:!0});t.then(()=>{n.end()},i=>{n.end(i)});let o,s=r.source;if(fh(s))o=async function*(){yield*s,n.end()};else if(hh(s))o=function*(){yield*s,n.end()};else throw new Error("Unknown duplex source type - must be Iterable or AsyncIterable");return lh(n,o())}return r.source};var qr=!!globalThis.process?.env?.DUMP_SESSION_KEYS;function ni(r){if(!Number.isSafeInteger(r)||r<0)throw new Error("positive integer expected, got "+r)}function wc(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function Ue(r,...e){if(!wc(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 bc(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 dh(r,e){Ue(r);let t=e.outputLen;if(r.length<t)throw new Error("digestInto() expects output buffer of length at least "+t)}function xc(r){if(typeof r!="boolean")throw new Error(`boolean expected, not ${r}`)}var _t=r=>new Uint32Array(r.buffer,r.byteOffset,Math.floor(r.byteLength/4)),ph=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),og=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;if(!og)throw new Error("Non little-endian hardware is not supported");function sg(r){if(typeof r!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(r))}function oi(r){if(typeof r=="string")r=sg(r);else if(wc(r))r=si(r);else throw new Error("Uint8Array expected, got "+typeof r);return r}function mh(r,e){if(e==null||typeof e!="object")throw new Error("options must be defined");return Object.assign(r,e)}function gh(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}var Ec=(r,e)=>{function t(n,...o){if(Ue(n),r.nonceLength!==void 0){let u=o[0];if(!u)throw new Error("nonce / iv required");r.varSizeNonce?Ue(u):Ue(u,r.nonceLength)}let s=r.tagLength;s&&o[1]!==void 0&&Ue(o[1]);let i=e(n,...o),a=(u,f)=>{if(f!==void 0){if(u!==2)throw new Error("cipher output not supported");Ue(f)}},c=!1;return{encrypt(u,f){if(c)throw new Error("cannot encrypt() twice with same key + nonce");return c=!0,Ue(u),a(i.encrypt.length,f),i.encrypt(u,f)},decrypt(u,f){if(Ue(u),s&&u.length<s)throw new Error("invalid ciphertext length: smaller than tagLength="+s);return a(i.decrypt.length,f),i.decrypt(u,f)}}}return Object.assign(t,r),t};function vc(r,e,t=!0){if(e===void 0)return new Uint8Array(r);if(e.length!==r)throw new Error("invalid output length, expected "+r+", got: "+e.length);if(t&&!ig(e))throw new Error("invalid output, must be aligned");return e}function Ac(r,e,t,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,n);let o=BigInt(32),s=BigInt(4294967295),i=Number(t>>o&s),a=Number(t&s),c=n?4:0,l=n?0:4;r.setUint32(e+c,i,n),r.setUint32(e+l,a,n)}function ig(r){return r.byteOffset%4===0}function si(r){return Uint8Array.from(r)}function Rt(...r){for(let e=0;e<r.length;e++)r[e].fill(0)}var wh=r=>Uint8Array.from(r.split("").map(e=>e.charCodeAt(0))),ag=wh("expand 16-byte k"),cg=wh("expand 32-byte k"),lg=_t(ag),ug=_t(cg);function P(r,e){return r<<e|r>>>32-e}function Bc(r){return r.byteOffset%4===0}var ii=64,fg=16,bh=2**32-1,yh=new Uint32Array;function hg(r,e,t,n,o,s,i,a){let c=o.length,l=new Uint8Array(ii),u=_t(l),f=Bc(o)&&Bc(s),d=f?_t(o):yh,m=f?_t(s):yh;for(let y=0;y<c;i++){if(r(e,t,n,u,i,a),i>=bh)throw new Error("arx: counter overflow");let g=Math.min(ii,c-y);if(f&&g===ii){let h=y/4;if(y%4!==0)throw new Error("arx: invalid block position");for(let b=0,x;b<fg;b++)x=h+b,m[x]=d[x]^u[b];y+=ii;continue}for(let h=0,b;h<g;h++)b=y+h,s[b]=o[b]^l[h];y+=g}}function Sc(r,e){let{allowShortKeys:t,extendNonceFn:n,counterLength:o,counterRight:s,rounds:i}=mh({allowShortKeys:!1,counterLength:8,counterRight:!1,rounds:20},e);if(typeof r!="function")throw new Error("core must be a function");return ni(o),ni(i),xc(s),xc(t),(a,c,l,u,f=0)=>{Ue(a),Ue(c),Ue(l);let d=l.length;if(u===void 0&&(u=new Uint8Array(d)),Ue(u),ni(f),f<0||f>=bh)throw new Error("arx: counter overflow");if(u.length<d)throw new Error(`arx: output (${u.length}) is shorter than data (${d})`);let m=[],y=a.length,g,h;if(y===32)m.push(g=si(a)),h=ug;else if(y===16&&t)g=new Uint8Array(32),g.set(a),g.set(a,16),h=lg,m.push(g);else throw new Error(`arx: invalid 32-byte key, got length=${y}`);Bc(c)||m.push(c=si(c));let b=_t(g);if(n){if(c.length!==24)throw new Error("arx: extended nonce must be 24 bytes");n(h,b,_t(c.subarray(0,16)),b),c=c.subarray(16)}let x=16-o;if(x!==c.length)throw new Error(`arx: nonce must be ${x} or 16 bytes`);if(x!==12){let S=new Uint8Array(12);S.set(c,s?0:12-c.length),c=S,m.push(c)}let p=_t(c);return hg(r,h,b,p,l,u,f,i),Rt(...m),u}}var Se=(r,e)=>r[e++]&255|(r[e++]&255)<<8,Ic=class{constructor(e){this.blockLen=16,this.outputLen=16,this.buffer=new Uint8Array(16),this.r=new Uint16Array(10),this.h=new Uint16Array(10),this.pad=new Uint16Array(8),this.pos=0,this.finished=!1,e=oi(e),Ue(e,32);let t=Se(e,0),n=Se(e,2),o=Se(e,4),s=Se(e,6),i=Se(e,8),a=Se(e,10),c=Se(e,12),l=Se(e,14);this.r[0]=t&8191,this.r[1]=(t>>>13|n<<3)&8191,this.r[2]=(n>>>10|o<<6)&7939,this.r[3]=(o>>>7|s<<9)&8191,this.r[4]=(s>>>4|i<<12)&255,this.r[5]=i>>>1&8190,this.r[6]=(i>>>14|a<<2)&8191,this.r[7]=(a>>>11|c<<5)&8065,this.r[8]=(c>>>8|l<<8)&8191,this.r[9]=l>>>5&127;for(let u=0;u<8;u++)this.pad[u]=Se(e,16+2*u)}process(e,t,n=!1){let o=n?0:2048,{h:s,r:i}=this,a=i[0],c=i[1],l=i[2],u=i[3],f=i[4],d=i[5],m=i[6],y=i[7],g=i[8],h=i[9],b=Se(e,t+0),x=Se(e,t+2),p=Se(e,t+4),S=Se(e,t+6),N=Se(e,t+8),L=Se(e,t+10),B=Se(e,t+12),T=Se(e,t+14),C=s[0]+(b&8191),H=s[1]+((b>>>13|x<<3)&8191),U=s[2]+((x>>>10|p<<6)&8191),M=s[3]+((p>>>7|S<<9)&8191),V=s[4]+((S>>>4|N<<12)&8191),I=s[5]+(N>>>1&8191),k=s[6]+((N>>>14|L<<2)&8191),E=s[7]+((L>>>11|B<<5)&8191),w=s[8]+((B>>>8|T<<8)&8191),A=s[9]+(T>>>5|o),v=0,_=v+C*a+H*(5*h)+U*(5*g)+M*(5*y)+V*(5*m);v=_>>>13,_&=8191,_+=I*(5*d)+k*(5*f)+E*(5*u)+w*(5*l)+A*(5*c),v+=_>>>13,_&=8191;let R=v+C*c+H*a+U*(5*h)+M*(5*g)+V*(5*y);v=R>>>13,R&=8191,R+=I*(5*m)+k*(5*d)+E*(5*f)+w*(5*u)+A*(5*l),v+=R>>>13,R&=8191;let O=v+C*l+H*c+U*a+M*(5*h)+V*(5*g);v=O>>>13,O&=8191,O+=I*(5*y)+k*(5*m)+E*(5*d)+w*(5*f)+A*(5*u),v+=O>>>13,O&=8191;let K=v+C*u+H*l+U*c+M*a+V*(5*h);v=K>>>13,K&=8191,K+=I*(5*g)+k*(5*y)+E*(5*m)+w*(5*d)+A*(5*f),v+=K>>>13,K&=8191;let F=v+C*f+H*u+U*l+M*c+V*a;v=F>>>13,F&=8191,F+=I*(5*h)+k*(5*g)+E*(5*y)+w*(5*m)+A*(5*d),v+=F>>>13,F&=8191;let G=v+C*d+H*f+U*u+M*l+V*c;v=G>>>13,G&=8191,G+=I*a+k*(5*h)+E*(5*g)+w*(5*y)+A*(5*m),v+=G>>>13,G&=8191;let j=v+C*m+H*d+U*f+M*u+V*l;v=j>>>13,j&=8191,j+=I*c+k*a+E*(5*h)+w*(5*g)+A*(5*y),v+=j>>>13,j&=8191;let ae=v+C*y+H*m+U*d+M*f+V*u;v=ae>>>13,ae&=8191,ae+=I*l+k*c+E*a+w*(5*h)+A*(5*g),v+=ae>>>13,ae&=8191;let ce=v+C*g+H*y+U*m+M*d+V*f;v=ce>>>13,ce&=8191,ce+=I*u+k*l+E*c+w*a+A*(5*h),v+=ce>>>13,ce&=8191;let fe=v+C*h+H*g+U*y+M*m+V*d;v=fe>>>13,fe&=8191,fe+=I*f+k*u+E*l+w*c+A*a,v+=fe>>>13,fe&=8191,v=(v<<2)+v|0,v=v+_|0,_=v&8191,v=v>>>13,R+=v,s[0]=_,s[1]=R,s[2]=O,s[3]=K,s[4]=F,s[5]=G,s[6]=j,s[7]=ae,s[8]=ce,s[9]=fe}finalize(){let{h:e,pad:t}=this,n=new Uint16Array(10),o=e[1]>>>13;e[1]&=8191;for(let a=2;a<10;a++)e[a]+=o,o=e[a]>>>13,e[a]&=8191;e[0]+=o*5,o=e[0]>>>13,e[0]&=8191,e[1]+=o,o=e[1]>>>13,e[1]&=8191,e[2]+=o,n[0]=e[0]+5,o=n[0]>>>13,n[0]&=8191;for(let a=1;a<10;a++)n[a]=e[a]+o,o=n[a]>>>13,n[a]&=8191;n[9]-=8192;let s=(o^1)-1;for(let a=0;a<10;a++)n[a]&=s;s=~s;for(let a=0;a<10;a++)e[a]=e[a]&s|n[a];e[0]=(e[0]|e[1]<<13)&65535,e[1]=(e[1]>>>3|e[2]<<10)&65535,e[2]=(e[2]>>>6|e[3]<<7)&65535,e[3]=(e[3]>>>9|e[4]<<4)&65535,e[4]=(e[4]>>>12|e[5]<<1|e[6]<<14)&65535,e[5]=(e[6]>>>2|e[7]<<11)&65535,e[6]=(e[7]>>>5|e[8]<<8)&65535,e[7]=(e[8]>>>8|e[9]<<5)&65535;let i=e[0]+t[0];e[0]=i&65535;for(let a=1;a<8;a++)i=(e[a]+t[a]|0)+(i>>>16)|0,e[a]=i&65535;Rt(n)}update(e){bc(this);let{buffer:t,blockLen:n}=this;e=oi(e);let o=e.length;for(let s=0;s<o;){let i=Math.min(n-this.pos,o-s);if(i===n){for(;n<=o-s;s+=n)this.process(e,s);continue}t.set(e.subarray(s,s+i),this.pos),this.pos+=i,s+=i,this.pos===n&&(this.process(t,0,!1),this.pos=0)}return this}destroy(){Rt(this.h,this.r,this.buffer,this.pad)}digestInto(e){bc(this),dh(e,this),this.finished=!0;let{buffer:t,h:n}=this,{pos:o}=this;if(o){for(t[o++]=1;o<16;o++)t[o]=0;this.process(t,0,!0)}this.finalize();let s=0;for(let i=0;i<8;i++)e[s++]=n[i]>>>0,e[s++]=n[i]>>>8;return e}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let n=e.slice(0,t);return this.destroy(),n}};function dg(r){let e=(n,o)=>r(o).update(oi(n)).digest(),t=r(new Uint8Array(32));return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=n=>r(n),e}var xh=dg(r=>new Ic(r));function Ah(r,e,t,n,o,s=20){let i=r[0],a=r[1],c=r[2],l=r[3],u=e[0],f=e[1],d=e[2],m=e[3],y=e[4],g=e[5],h=e[6],b=e[7],x=o,p=t[0],S=t[1],N=t[2],L=i,B=a,T=c,C=l,H=u,U=f,M=d,V=m,I=y,k=g,E=h,w=b,A=x,v=p,_=S,R=N;for(let K=0;K<s;K+=2)L=L+H|0,A=P(A^L,16),I=I+A|0,H=P(H^I,12),L=L+H|0,A=P(A^L,8),I=I+A|0,H=P(H^I,7),B=B+U|0,v=P(v^B,16),k=k+v|0,U=P(U^k,12),B=B+U|0,v=P(v^B,8),k=k+v|0,U=P(U^k,7),T=T+M|0,_=P(_^T,16),E=E+_|0,M=P(M^E,12),T=T+M|0,_=P(_^T,8),E=E+_|0,M=P(M^E,7),C=C+V|0,R=P(R^C,16),w=w+R|0,V=P(V^w,12),C=C+V|0,R=P(R^C,8),w=w+R|0,V=P(V^w,7),L=L+U|0,R=P(R^L,16),E=E+R|0,U=P(U^E,12),L=L+U|0,R=P(R^L,8),E=E+R|0,U=P(U^E,7),B=B+M|0,A=P(A^B,16),w=w+A|0,M=P(M^w,12),B=B+M|0,A=P(A^B,8),w=w+A|0,M=P(M^w,7),T=T+V|0,v=P(v^T,16),I=I+v|0,V=P(V^I,12),T=T+V|0,v=P(v^T,8),I=I+v|0,V=P(V^I,7),C=C+H|0,_=P(_^C,16),k=k+_|0,H=P(H^k,12),C=C+H|0,_=P(_^C,8),k=k+_|0,H=P(H^k,7);let O=0;n[O++]=i+L|0,n[O++]=a+B|0,n[O++]=c+T|0,n[O++]=l+C|0,n[O++]=u+H|0,n[O++]=f+U|0,n[O++]=d+M|0,n[O++]=m+V|0,n[O++]=y+I|0,n[O++]=g+k|0,n[O++]=h+E|0,n[O++]=b+w|0,n[O++]=x+A|0,n[O++]=p+v|0,n[O++]=S+_|0,n[O++]=N+R|0}function pg(r,e,t,n){let o=r[0],s=r[1],i=r[2],a=r[3],c=e[0],l=e[1],u=e[2],f=e[3],d=e[4],m=e[5],y=e[6],g=e[7],h=t[0],b=t[1],x=t[2],p=t[3];for(let N=0;N<20;N+=2)o=o+c|0,h=P(h^o,16),d=d+h|0,c=P(c^d,12),o=o+c|0,h=P(h^o,8),d=d+h|0,c=P(c^d,7),s=s+l|0,b=P(b^s,16),m=m+b|0,l=P(l^m,12),s=s+l|0,b=P(b^s,8),m=m+b|0,l=P(l^m,7),i=i+u|0,x=P(x^i,16),y=y+x|0,u=P(u^y,12),i=i+u|0,x=P(x^i,8),y=y+x|0,u=P(u^y,7),a=a+f|0,p=P(p^a,16),g=g+p|0,f=P(f^g,12),a=a+f|0,p=P(p^a,8),g=g+p|0,f=P(f^g,7),o=o+l|0,p=P(p^o,16),y=y+p|0,l=P(l^y,12),o=o+l|0,p=P(p^o,8),y=y+p|0,l=P(l^y,7),s=s+u|0,h=P(h^s,16),g=g+h|0,u=P(u^g,12),s=s+u|0,h=P(h^s,8),g=g+h|0,u=P(u^g,7),i=i+f|0,b=P(b^i,16),d=d+b|0,f=P(f^d,12),i=i+f|0,b=P(b^i,8),d=d+b|0,f=P(f^d,7),a=a+c|0,x=P(x^a,16),m=m+x|0,c=P(c^m,12),a=a+c|0,x=P(x^a,8),m=m+x|0,c=P(c^m,7);let S=0;n[S++]=o,n[S++]=s,n[S++]=i,n[S++]=a,n[S++]=h,n[S++]=b,n[S++]=x,n[S++]=p}var mg=Sc(Ah,{counterRight:!1,counterLength:4,allowShortKeys:!1}),gg=Sc(Ah,{counterRight:!1,counterLength:8,extendNonceFn:pg,allowShortKeys:!1});var yg=new Uint8Array(16),Eh=(r,e)=>{r.update(e);let t=e.length%16;t&&r.update(yg.subarray(t))},wg=new Uint8Array(32);function vh(r,e,t,n,o){let s=r(e,t,wg),i=xh.create(s);o&&Eh(i,o),Eh(i,n);let a=new Uint8Array(16),c=ph(a);Ac(c,0,BigInt(o?o.length:0),!0),Ac(c,8,BigInt(n.length),!0),i.update(a);let l=i.digest();return Rt(s,a),l}var Bh=r=>(e,t,n)=>({encrypt(s,i){let a=s.length;i=vc(a+16,i,!1),i.set(s);let c=i.subarray(0,-16);r(e,t,c,c,1);let l=vh(r,e,t,c,n);return i.set(l,a),Rt(l),i},decrypt(s,i){i=vc(s.length-16,i,!1);let a=s.subarray(0,-16),c=s.subarray(-16),l=vh(r,e,t,a,n);if(!gh(c,l))throw new Error("invalid tag");return i.set(s.subarray(0,-16)),r(e,t,i,i,1),Rt(l),i}}),Cc=Ec({blockSize:64,nonceLength:12,tagLength:16},Bh(mg)),TB=Ec({blockSize:64,nonceLength:24,tagLength:16},Bh(gg));function Ih(r,e,t){return tn(r),t===void 0&&(t=new Uint8Array(r.outputLen)),Or(r,Pt(t),Pt(e))}var kc=new Uint8Array([0]),Sh=new Uint8Array;function Ch(r,e,t,n=32){if(tn(r),eo(n),n>255*r.outputLen)throw new Error("Length should be <= 255*HashLen");let o=Math.ceil(n/r.outputLen);t===void 0&&(t=Sh);let s=new Uint8Array(o*r.outputLen),i=Or.create(r,e),a=i._cloneInto(),c=new Uint8Array(i.outputLen);for(let l=0;l<o;l++)kc[0]=l+1,a.update(l===0?Sh:c).update(t).update(kc).digestInto(c),s.set(c,r.outputLen*l),i._cloneInto(a);return i.destroy(),a.destroy(),c.fill(0),kc.fill(0),s.slice(0,n)}var Tc={hashSHA256(r){return ct(r.subarray())},getHKDF(r,e){let t=Ih(ct,e,r),o=Ch(ct,t,void 0,96),s=o.subarray(0,32),i=o.subarray(32,64),a=o.subarray(64,96);return[s,i,a]},generateX25519KeyPair(){let r=cn.utils.randomPrivateKey();return{publicKey:cn.getPublicKey(r),privateKey:r}},generateX25519KeyPairFromSeed(r){return{publicKey:cn.getPublicKey(r),privateKey:r}},generateX25519SharedKey(r,e){return cn.getSharedSecret(r.subarray(),e.subarray())},chaCha20Poly1305Encrypt(r,e,t,n){return Cc(n,e,t).encrypt(r.subarray())},chaCha20Poly1305Decrypt(r,e,t,n,o){return Cc(n,e,t).decrypt(r.subarray(),o)}};var kh=Tc;function Th(r){return{generateKeypair:r.generateX25519KeyPair,dh:(e,t)=>r.generateX25519SharedKey(e.privateKey,t).subarray(0,32),encrypt:r.chaCha20Poly1305Encrypt,decrypt:r.chaCha20Poly1305Decrypt,hash:r.hashSHA256,hkdf:r.getHKDF}}var zr=r=>{let e=me(2);return e[0]=r>>8,e[1]=r,e};zr.bytes=2;var Vn=r=>{if(r.length<2)throw RangeError("Could not decode int16BE");if(r instanceof Uint8Array){let e=0;return e+=r[0]<<8,e+=r[1],e}return r.getUint16(0)};Vn.bytes=2;function Lh(r){return{xxHandshakeSuccesses:r.registerCounter("libp2p_noise_xxhandshake_successes_total",{help:"Total count of noise xxHandshakes successes_"}),xxHandshakeErrors:r.registerCounter("libp2p_noise_xxhandshake_error_total",{help:"Total count of noise xxHandshakes errors"}),encryptedPackets:r.registerCounter("libp2p_noise_encrypted_packets_total",{help:"Total count of noise encrypted packets successfully"}),decryptedPackets:r.registerCounter("libp2p_noise_decrypted_packets_total",{help:"Total count of noise decrypted packets"}),decryptErrors:r.registerCounter("libp2p_noise_decrypt_errors_total",{help:"Total count of noise decrypt errors"})}}function Lc(r,e){!e.enabled||!qr||(r?(e(`LOCAL_STATIC_PUBLIC_KEY ${Z(r.publicKey,"hex")}`),e(`LOCAL_STATIC_PRIVATE_KEY ${Z(r.privateKey,"hex")}`)):e("Missing local static keys."))}function Nc(r,e){!e.enabled||!qr||(r?(e(`LOCAL_PUBLIC_EPHEMERAL_KEY ${Z(r.publicKey,"hex")}`),e(`LOCAL_PRIVATE_EPHEMERAL_KEY ${Z(r.privateKey,"hex")}`)):e("Missing local ephemeral keys."))}function Nh(r,e){!e.enabled||!qr||e(r?`REMOTE_STATIC_PUBLIC_KEY ${Z(r.subarray(),"hex")}`:"Missing remote static public key.")}function _c(r,e){!e.enabled||!qr||e(r?`REMOTE_EPHEMERAL_PUBLIC_KEY ${Z(r.subarray(),"hex")}`:"Missing remote ephemeral keys.")}function Rc(r,e,t){!t.enabled||!qr||(t(`CIPHER_STATE_1 ${r.n.getUint64()} ${r.k&&Z(r.k,"hex")}`),t(`CIPHER_STATE_2 ${e.n.getUint64()} ${e.k&&Z(e.k,"hex")}`))}var jr=class r extends Error{code;constructor(e="Invalid crypto exchange"){super(e),this.code=r.code}static code="ERR_INVALID_CRYPTO_EXCHANGE"};var bg=0,xg=4294967295,Eg="Cipherstate has reached maximum n, a new handshake must be performed",ai=class{n;bytes;view;constructor(e=bg){this.n=e,this.bytes=ye(12),this.view=new DataView(this.bytes.buffer,this.bytes.byteOffset,this.bytes.byteLength),this.view.setUint32(4,e,!0)}increment(){this.n++,this.view.setUint32(4,this.n,!0)}getBytes(){return this.bytes}getUint64(){return this.n}assertValue(){if(this.n>xg)throw new Error(Eg)}};var gr=ye(0),Xr=class{k;n;crypto;constructor(e,t=void 0,n=0){this.crypto=e,this.k=t,this.n=new ai(n)}hasKey(){return!!this.k}encryptWithAd(e,t){if(!this.hasKey())return t;this.n.assertValue();let n=this.crypto.encrypt(t,this.n.getBytes(),e,this.k);return this.n.increment(),n}decryptWithAd(e,t,n){if(!this.hasKey())return t;this.n.assertValue();let o=this.crypto.decrypt(t,this.n.getBytes(),e,this.k,n);return this.n.increment(),o}},Uc=class{cs;ck;h;crypto;constructor(e,t){this.crypto=e;let n=Q(t,"utf-8");this.h=vg(e,n),this.ck=this.h,this.cs=new Xr(e)}mixKey(e){let[t,n]=this.crypto.hkdf(this.ck,e);this.ck=t,this.cs=new Xr(this.crypto,n)}mixHash(e){this.h=this.crypto.hash(new re(this.h,e))}encryptAndHash(e){let t=this.cs.encryptWithAd(this.h,e);return this.mixHash(t),t}decryptAndHash(e){let t=this.cs.decryptWithAd(this.h,e);return this.mixHash(e),t}split(){let[e,t]=this.crypto.hkdf(this.ck,gr);return[new Xr(this.crypto,e),new Xr(this.crypto,t)]}},Dc=class{ss;s;e;rs;re;initiator;crypto;constructor(e){let{crypto:t,protocolName:n,prologue:o,initiator:s,s:i,e:a,rs:c,re:l}=e;this.crypto=t,this.ss=new Uc(t,n),this.ss.mixHash(o),this.initiator=s,this.s=i,this.e=a,this.rs=c,this.re=l}writeE(){if(this.e)throw new Error("ephemeral keypair is already set");let e=this.crypto.generateKeypair();return this.ss.mixHash(e.publicKey),this.e=e,e.publicKey}writeS(){if(!this.s)throw new Error("static keypair is not set");return this.ss.encryptAndHash(this.s.publicKey)}writeEE(){if(!this.e)throw new Error("ephemeral keypair is not set");if(!this.re)throw new Error("remote ephemeral public key is not set");this.ss.mixKey(this.crypto.dh(this.e,this.re))}writeES(){if(this.initiator){if(!this.e)throw new Error("ephemeral keypair is not set");if(!this.rs)throw new Error("remote static public key is not set");this.ss.mixKey(this.crypto.dh(this.e,this.rs))}else{if(!this.s)throw new Error("static keypair is not set");if(!this.re)throw new Error("remote ephemeral public key is not set");this.ss.mixKey(this.crypto.dh(this.s,this.re))}}writeSE(){if(this.initiator){if(!this.s)throw new Error("static keypair is not set");if(!this.re)throw new Error("remote ephemeral public key is not set");this.ss.mixKey(this.crypto.dh(this.s,this.re))}else{if(!this.e)throw new Error("ephemeral keypair is not set");if(!this.rs)throw new Error("remote static public key is not set");this.ss.mixKey(this.crypto.dh(this.e,this.rs))}}readE(e,t=0){if(this.re)throw new Error("remote ephemeral public key is already set");if(e.byteLength<t+32)throw new Error("message is not long enough");this.re=e.sublist(t,t+32),this.ss.mixHash(this.re)}readS(e,t=0){if(this.rs)throw new Error("remote static public key is already set");let n=32+(this.ss.cs.hasKey()?16:0);if(e.byteLength<t+n)throw new Error("message is not long enough");let o=e.sublist(t,t+n);return this.rs=this.ss.decryptAndHash(o),n}readEE(){this.writeEE()}readES(){this.writeES()}readSE(){this.writeSE()}},Kn=class extends Dc{writeMessageA(e){return new re(this.writeE(),this.ss.encryptAndHash(e))}writeMessageB(e){let t=this.writeE();this.writeEE();let n=this.writeS();return this.writeES(),new re(t,n,this.ss.encryptAndHash(e))}writeMessageC(e){let t=this.writeS();return this.writeSE(),new re(t,this.ss.encryptAndHash(e))}readMessageA(e){try{return this.readE(e),this.ss.decryptAndHash(e.sublist(32))}catch(t){throw new jr(`handshake stage 0 validation fail: ${t.message}`)}}readMessageB(e){try{this.readE(e),this.readEE();let t=this.readS(e,32);return this.readES(),this.ss.decryptAndHash(e.sublist(32+t))}catch(t){throw new jr(`handshake stage 1 validation fail: ${t.message}`)}}readMessageC(e){try{let t=this.readS(e);return this.readSE(),this.ss.decryptAndHash(e.sublist(t))}catch(t){throw new jr(`handshake stage 2 validation fail: ${t.message}`)}}};function vg(r,e){if(e.length<=32){let t=ye(32);return t.set(e),t}else return r.hash(e)}var ci;(function(r){let e;r.codec=()=>(e==null&&(e=nt((t,n,o={})=>{if(o.lengthDelimited!==!1&&n.fork(),t.webtransportCerthashes!=null)for(let s of t.webtransportCerthashes)n.uint32(10),n.bytes(s);o.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let o={webtransportCerthashes:[]},s=n==null?t.len:t.pos+n;for(;t.pos<s;){let i=t.uint32();switch(i>>>3){case 1:{o.webtransportCerthashes.push(t.bytes());break}default:{t.skipType(i&7);break}}}return o})),e),r.encode=t=>rt(t,r.codec()),r.decode=t=>tt(t,r.codec())})(ci||(ci={}));var $n;(function(r){let e;r.codec=()=>(e==null&&(e=nt((t,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),t.identityKey!=null&&t.identityKey.byteLength>0&&(n.uint32(10),n.bytes(t.identityKey)),t.identitySig!=null&&t.identitySig.byteLength>0&&(n.uint32(18),n.bytes(t.identitySig)),t.extensions!=null&&(n.uint32(34),ci.codec().encode(t.extensions,n)),o.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let o={identityKey:ye(0),identitySig:ye(0)},s=n==null?t.len:t.pos+n;for(;t.pos<s;){let i=t.uint32();switch(i>>>3){case 1:{o.identityKey=t.bytes();break}case 2:{o.identitySig=t.bytes();break}case 4:{o.extensions=ci.codec().decode(t,t.uint32());break}default:{t.skipType(i&7);break}}}return o})),e),r.encode=t=>rt(t,r.codec()),r.decode=t=>tt(t,r.codec())})($n||($n={}));async function Pc(r,e,t){let n=await r.sign(_h(e));return $n.encode({identityKey:Tr(r.publicKey),identitySig:n,extensions:t})}async function Oc(r,e,t){try{let n=$n.decode(r),o=An(n.identityKey);if(t?.equals(o)===!1)throw new Error(`Payload identity key ${o} does not match expected remote identity key ${t}`);if(!e)throw new Error("Remote static does not exist");let s=_h(e);if(!await o.verify(s,n.identitySig))throw new Error("Invalid payload signature");return n}catch(n){throw new zn(n.message)}}function _h(r){let e=Q("noise-libp2p-static-key:");return r instanceof Uint8Array?be([e,r],e.length+r.length):(r.prepend(e),r)}async function Rh(r,e){let{log:t,connection:n,crypto:o,privateKey:s,prologue:i,s:a,remoteIdentityKey:c,extensions:l}=r,u=await Pc(s,a.publicKey,l),f=new Kn({crypto:o,protocolName:"Noise_XX_25519_ChaChaPoly_SHA256",initiator:!0,prologue:i,s:a});Lc(f.s,t),t.trace("Stage 0 - Initiator starting to send first message."),await n.write(f.writeMessageA(gr),e),t.trace("Stage 0 - Initiator finished sending first message."),Nc(f.e,t),t.trace("Stage 1 - Initiator waiting to receive first message from responder...");let d=f.readMessageB(await n.read(e));t.trace("Stage 1 - Initiator received the message."),_c(f.re,t),Nh(f.rs,t),t.trace("Initiator going to check remote's signature...");let m=await Oc(d,f.rs,c);t.trace("All good with the signature!"),t.trace("Stage 2 - Initiator sending third handshake message."),await n.write(f.writeMessageC(u),e),t.trace("Stage 2 - Initiator sent message with signed payload.");let[y,g]=f.ss.split();return Rc(y,g,t),{payload:m,encrypt:h=>y.encryptWithAd(gr,h),decrypt:(h,b)=>g.decryptWithAd(gr,h,b)}}async function Uh(r,e){let{log:t,connection:n,crypto:o,privateKey:s,prologue:i,s:a,remoteIdentityKey:c,extensions:l}=r,u=await Pc(s,a.publicKey,l),f=new Kn({crypto:o,protocolName:"Noise_XX_25519_ChaChaPoly_SHA256",initiator:!1,prologue:i,s:a});Lc(f.s,t),t.trace("Stage 0 - Responder waiting to receive first message."),f.readMessageA(await n.read(e)),t.trace("Stage 0 - Responder received first message."),_c(f.re,t),t.trace("Stage 1 - Responder sending out first message with signed payload and static key."),await n.write(f.writeMessageB(u),e),t.trace("Stage 1 - Responder sent the second handshake message with signed payload."),Nc(f.e,t),t.trace("Stage 2 - Responder waiting for third handshake message...");let d=f.readMessageC(await n.read(e));t.trace("Stage 2 - Responder received the message, finished handshake.");let m=await Oc(d,f.rs,c),[y,g]=f.ss.split();return Rc(y,g,t),{payload:m,encrypt:h=>g.encryptWithAd(gr,h),decrypt:(h,b)=>y.decryptWithAd(gr,h,b)}}var Ph=16;function Oh(r,e){return async function*(t){for await(let n of t)for(let o=0;o<n.length;o+=65519){let s=o+65519;s>n.length&&(s=n.length);let i;n instanceof Uint8Array?i=r.encrypt(n.subarray(o,s)):i=r.encrypt(n.sublist(o,s)),e?.encryptedPackets.increment(),yield new re(zr(i.byteLength),i)}}}function Mh(r,e){return async function*(t){for await(let n of t)for(let o=0;o<n.length;o+=65535){let s=o+65535;if(s>n.length&&(s=n.length),s-Ph<o)throw new Error("Invalid chunk");let i=n.sublist(o,s),a=n.subarray(o,s-Ph);try{let c=r.decrypt(i,a);e?.decryptedPackets.increment(),yield c}catch(c){throw e?.decryptErrors.increment(),c}}}}var li=class{protocol="/noise";crypto;prologue;staticKey;extensions;metrics;components;constructor(e,t={}){let{staticNoiseKey:n,extensions:o,crypto:s,prologueBytes:i}=t,{metrics:a}=e;this.components=e;let c=s??kh;this.crypto=Th(c),this.extensions=o,this.metrics=a?Lh(a):void 0,n?this.staticKey=c.generateX25519KeyPairFromSeed(n):this.staticKey=c.generateX25519KeyPair(),this.prologue=i??ye(0)}[Symbol.toStringTag]="@chainsafe/libp2p-noise";[br]=["@libp2p/connection-encryption","@chainsafe/libp2p-noise"];async secureOutbound(e,t){let n=Mn(e,{lengthEncoder:zr,lengthDecoder:Vn,maxDataLength:65535}),o=await this.performHandshakeInitiator(n,this.components.privateKey,t?.remotePeer?.publicKey,t),s=await this.createSecureConnection(n,o);e.source=s.source,e.sink=s.sink;let i=An(o.payload.identityKey);return{conn:e,remoteExtensions:o.payload.extensions,remotePeer:Ua(i)}}async secureInbound(e,t){let n=Mn(e,{lengthEncoder:zr,lengthDecoder:Vn,maxDataLength:65535}),o=await this.performHandshakeResponder(n,this.components.privateKey,t?.remotePeer?.publicKey,t),s=await this.createSecureConnection(n,o);e.source=s.source,e.sink=s.sink;let i=An(o.payload.identityKey);return{conn:e,remoteExtensions:o.payload.extensions,remotePeer:Ua(i)}}async performHandshakeInitiator(e,t,n,o){let s;try{s=await Rh({connection:e,privateKey:t,remoteIdentityKey:n,log:this.components.logger.forComponent("libp2p:noise:xxhandshake"),crypto:this.crypto,prologue:this.prologue,s:this.staticKey,extensions:this.extensions},o),this.metrics?.xxHandshakeSuccesses.increment()}catch(i){throw this.metrics?.xxHandshakeErrors.increment(),i}return s}async performHandshakeResponder(e,t,n,o){let s;try{s=await Uh({connection:e,privateKey:t,remoteIdentityKey:n,log:this.components.logger.forComponent("libp2p:noise:xxhandshake"),crypto:this.crypto,prologue:this.prologue,s:this.staticKey,extensions:this.extensions},o),this.metrics?.xxHandshakeSuccesses.increment()}catch(i){throw this.metrics?.xxHandshakeErrors.increment(),i}return s}async createSecureConnection(e,t){let[n,o]=ch(),s=e.unwrap();return await uh(n,Oh(t,this.metrics),s,i=>Fn(i,{lengthDecoder:Vn}),Mh(t,this.metrics),n),o}};function Hh(r={}){return e=>new li(e,r)}var Mc=Object.values(ar).map(r=>r.decoder).reduce((r,e)=>r.or(e)),Ag=/^a=fingerprint:(?:\w+-[0-9]+)\s(?<fingerprint>(:?[0-9a-fA-F]{2})+)$/m;function Fh(r){return r?.match(Ag)?.groups?.fingerprint}function Hc(r){let t=r.stringTuples().filter(n=>n[0]===Nf).map(n=>n[1])[0];if(t===void 0||t==="")throw new oe(`Couldn't find a certhash component of multiaddr: ${r.toString()}`);return t}function Bg(r){return We.decode(Mc.decode(r))}function Sg(r){let e=Bg(Hc(r)),t=Ig(e.code),n=e.digest.reduce((s,i)=>s+i.toString(16).padStart(2,"0"),""),o=n.match(/.{1,2}/g);if(o==null)throw new Gs(n,r.toString());return`${t} ${o.join(":").toUpperCase()}`}function Vh(r){let e=r.split(":").map(o=>parseInt(o,16)),t=Uint8Array.from(e),n=ke(vt.code,t);return ht(`/certhash/${ln.encode(n.bytes)}`)}function Ig(r){switch(r){case 17:return"sha-1";case 18:return"sha-256";case 19:return"sha-512";default:throw new qs(r)}}function Kh(r,e){let{host:t,port:n,family:o}=r.toOptions(),s=Sg(r);return{type:"answer",sdp:`v=0
7
- o=- 0 0 IN IP${o} ${t}
2
+ "use strict";var Libp2PWebrtc=(()=>{var zo=Object.defineProperty;var Xu=Object.getOwnPropertyDescriptor;var Zu=Object.getOwnPropertyNames;var Yu=Object.prototype.hasOwnProperty;var At=(r,t)=>{for(var e in t)zo(r,e,{get:t[e],enumerable:!0})},ju=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Zu(t))!Yu.call(r,o)&&o!==e&&zo(r,o,{get:()=>t[o],enumerable:!(n=Xu(t,o))||n.enumerable});return r};var Ju=r=>ju(zo({},"__esModule",{value:!0}),r);var gm={};At(gm,{webRTC:()=>mm,webRTCDirect:()=>pm});var Wo=Symbol.for("@libp2p/peer-id");var dn=Symbol.for("@libp2p/transport");var La;(function(r){r[r.FATAL_ALL=0]="FATAL_ALL",r[r.NO_FATAL=1]="NO_FATAL"})(La||(La={}));var pn=class extends Error{static name="UnexpectedPeerError";constructor(t="Unexpected Peer"){super(t),this.name="UnexpectedPeerError"}};var rt=class extends Error{static name="InvalidParametersError";constructor(t="Invalid parameters"){super(t),this.name="InvalidParametersError"}},je=class extends Error{static name="InvalidPublicKeyError";constructor(t="Invalid public key"){super(t),this.name="InvalidPublicKeyError"}};var mn=class extends Error{static name="ConnectionFailedError";constructor(t="Connection failed"){super(t),this.name="ConnectionFailedError"}};var gn=class extends Error{static name="StreamResetError";constructor(t="The stream has been reset"){super(t),this.name="StreamResetError"}},Pe=class extends Error{static name="StreamStateError";constructor(t="The stream is in an invalid state"){super(t),this.name="StreamStateError"}};var yn=class extends Error{static name="InvalidMultihashError";constructor(t="Invalid Multihash"){super(t),this.name="InvalidMultihashError"}};var wn=class extends Error{static name="InvalidMessageError";constructor(t="Invalid message"){super(t),this.name="InvalidMessageError"}};var bn=class extends Error{static name="TimeoutError";constructor(t="Timed out"){super(t),this.name="TimeoutError"}};var De=class extends Error{static name="UnsupportedKeyTypeError";constructor(t="Unsupported key type"){super(t),this.name="UnsupportedKeyTypeError"}};var Je=class extends EventTarget{#t=new Map;constructor(){super()}listenerCount(t){let e=this.#t.get(t);return e==null?0:e.length}addEventListener(t,e,n){super.addEventListener(t,e,n);let o=this.#t.get(t);o==null&&(o=[],this.#t.set(t,o)),o.push({callback:e,once:(n!==!0&&n!==!1&&n?.once)??!1})}removeEventListener(t,e,n){super.removeEventListener(t.toString(),e??null,n);let o=this.#t.get(t);o!=null&&(o=o.filter(({callback:s})=>s!==e),this.#t.set(t,o))}dispatchEvent(t){let e=super.dispatchEvent(t),n=this.#t.get(t.type);return n==null||(n=n.filter(({once:o})=>!o),this.#t.set(t.type,n)),e}safeDispatchEvent(t,e={}){return this.dispatchEvent(new CustomEvent(t,e))}};var Qe=Symbol.for("@libp2p/service-capabilities"),Ba=Symbol.for("@libp2p/service-dependencies");var jo={};At(jo,{base58btc:()=>nt,base58flickr:()=>of});var Gm=new Uint8Array(0);function Ca(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}function ne(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 _a(r){return new TextEncoder().encode(r)}function Ra(r){return new TextDecoder().decode(r)}function Qu(r,t){if(r.length>=255)throw new TypeError("Alphabet too long");for(var e=new Uint8Array(256),n=0;n<e.length;n++)e[n]=255;for(var o=0;o<r.length;o++){var s=r.charAt(o),i=s.charCodeAt(0);if(e[i]!==255)throw new TypeError(s+" is ambiguous");e[i]=o}var a=r.length,c=r.charAt(0),l=Math.log(a)/Math.log(256),u=Math.log(256)/Math.log(a);function f(b){if(b instanceof Uint8Array||(ArrayBuffer.isView(b)?b=new Uint8Array(b.buffer,b.byteOffset,b.byteLength):Array.isArray(b)&&(b=Uint8Array.from(b))),!(b instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(b.length===0)return"";for(var m=0,h=0,w=0,x=b.length;w!==x&&b[w]===0;)w++,m++;for(var p=(x-w)*u+1>>>0,I=new Uint8Array(p);w!==x;){for(var R=b[w],_=0,v=p-1;(R!==0||_<h)&&v!==-1;v--,_++)R+=256*I[v]>>>0,I[v]=R%a>>>0,R=R/a>>>0;if(R!==0)throw new Error("Non-zero carry");h=_,w++}for(var C=p-h;C!==p&&I[C]===0;)C++;for(var L=c.repeat(m);C<p;++C)L+=r.charAt(I[C]);return L}function d(b){if(typeof b!="string")throw new TypeError("Expected String");if(b.length===0)return new Uint8Array;var m=0;if(b[m]!==" "){for(var h=0,w=0;b[m]===c;)h++,m++;for(var x=(b.length-m)*l+1>>>0,p=new Uint8Array(x);b[m];){var I=e[b.charCodeAt(m)];if(I===255)return;for(var R=0,_=x-1;(I!==0||R<w)&&_!==-1;_--,R++)I+=a*p[_]>>>0,p[_]=I%256>>>0,I=I/256>>>0;if(I!==0)throw new Error("Non-zero carry");w=R,m++}if(b[m]!==" "){for(var v=x-w;v!==x&&p[v]===0;)v++;for(var C=new Uint8Array(h+(x-v)),L=h;v!==x;)C[L++]=p[v++];return C}}}function g(b){var m=d(b);if(m)return m;throw new Error(`Non-${t} character`)}return{encode:f,decodeUnsafe:d,decode:g}}var tf=Qu,ef=tf,Da=ef;var $o=class{name;prefix;baseEncode;constructor(t,e,n){this.name=t,this.prefix=e,this.baseEncode=n}encode(t){if(t instanceof Uint8Array)return`${this.prefix}${this.baseEncode(t)}`;throw Error("Unknown type, must be binary type")}},Xo=class{name;prefix;baseDecode;prefixCodePoint;constructor(t,e,n){this.name=t,this.prefix=e;let o=e.codePointAt(0);if(o===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=o,this.baseDecode=n}decode(t){if(typeof t=="string"){if(t.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(t)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(t.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(t){return Na(this,t)}},Zo=class{decoders;constructor(t){this.decoders=t}or(t){return Na(this,t)}decode(t){let e=t[0],n=this.decoders[e];if(n!=null)return n.decode(t);throw RangeError(`Unable to decode multibase string ${JSON.stringify(t)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function Na(r,t){return new Zo({...r.decoders??{[r.prefix]:r},...t.decoders??{[t.prefix]:t}})}var Yo=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(t,e,n,o){this.name=t,this.prefix=e,this.baseEncode=n,this.baseDecode=o,this.encoder=new $o(t,e,n),this.decoder=new Xo(t,e,o)}encode(t){return this.encoder.encode(t)}decode(t){return this.decoder.decode(t)}};function tr({name:r,prefix:t,encode:e,decode:n}){return new Yo(r,t,e,n)}function ye({name:r,prefix:t,alphabet:e}){let{encode:n,decode:o}=Da(e,r);return tr({prefix:t,name:r,encode:n,decode:s=>ne(o(s))})}function rf(r,t,e,n){let o={};for(let u=0;u<t.length;++u)o[t[u]]=u;let s=r.length;for(;r[s-1]==="=";)--s;let i=new Uint8Array(s*e/8|0),a=0,c=0,l=0;for(let u=0;u<s;++u){let f=o[r[u]];if(f===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<e|f,a+=e,a>=8&&(a-=8,i[l++]=255&c>>a)}if(a>=e||(255&c<<8-a)!==0)throw new SyntaxError("Unexpected end of data");return i}function nf(r,t,e){let n=t[t.length-1]==="=",o=(1<<e)-1,s="",i=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],i+=8;i>e;)i-=e,s+=t[o&a>>i];if(i!==0&&(s+=t[o&a<<e-i]),n)for(;(s.length*e&7)!==0;)s+="=";return s}function ft({name:r,prefix:t,bitsPerChar:e,alphabet:n}){return tr({prefix:t,name:r,encode(o){return nf(o,n,e)},decode(o){return rf(o,n,e,r)}})}var nt=ye({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),of=ye({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var Jo={};At(Jo,{base32:()=>oe,base32hex:()=>lf,base32hexpad:()=>ff,base32hexpadupper:()=>hf,base32hexupper:()=>uf,base32pad:()=>af,base32padupper:()=>cf,base32upper:()=>sf,base32z:()=>df});var oe=ft({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),sf=ft({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),af=ft({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),cf=ft({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),lf=ft({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),uf=ft({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),ff=ft({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),hf=ft({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),df=ft({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var Qo={};At(Qo,{base36:()=>Tr,base36upper:()=>pf});var Tr=ye({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),pf=ye({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var Mt={};At(Mt,{Digest:()=>Ne,create:()=>vt,decode:()=>we,equals:()=>es,hasCode:()=>Df});var mf=Oa,Ua=128,gf=127,yf=~gf,wf=Math.pow(2,31);function Oa(r,t,e){t=t||[],e=e||0;for(var n=e;r>=wf;)t[e++]=r&255|Ua,r/=128;for(;r&yf;)t[e++]=r&255|Ua,r>>>=7;return t[e]=r|0,Oa.bytes=e-n+1,t}var bf=ts,xf=128,ka=127;function ts(r,n){var e=0,n=n||0,o=0,s=n,i,a=r.length;do{if(s>=a)throw ts.bytes=0,new RangeError("Could not decode varint");i=r[s++],e+=o<28?(i&ka)<<o:(i&ka)*Math.pow(2,o),o+=7}while(i>=xf);return ts.bytes=s-n,e}var Ef=Math.pow(2,7),Sf=Math.pow(2,14),Af=Math.pow(2,21),vf=Math.pow(2,28),If=Math.pow(2,35),Tf=Math.pow(2,42),Lf=Math.pow(2,49),Bf=Math.pow(2,56),Cf=Math.pow(2,63),_f=function(r){return r<Ef?1:r<Sf?2:r<Af?3:r<vf?4:r<If?5:r<Tf?6:r<Lf?7:r<Bf?8:r<Cf?9:10},Rf={encode:mf,decode:bf,encodingLength:_f},Pf=Rf,Lr=Pf;function Br(r,t=0){return[Lr.decode(r,t),Lr.decode.bytes]}function er(r,t,e=0){return Lr.encode(r,t,e),t}function rr(r){return Lr.encodingLength(r)}function vt(r,t){let e=t.byteLength,n=rr(r),o=n+rr(e),s=new Uint8Array(o+e);return er(r,s,0),er(e,s,n),s.set(t,o),new Ne(r,e,t,s)}function we(r){let t=ne(r),[e,n]=Br(t),[o,s]=Br(t.subarray(n)),i=t.subarray(n+s);if(i.byteLength!==o)throw new Error("Incorrect length");return new Ne(e,o,i,t)}function es(r,t){if(r===t)return!0;{let e=t;return r.code===e.code&&r.size===e.size&&e.bytes instanceof Uint8Array&&Ca(r.bytes,e.bytes)}}var Ne=class{code;size;digest;bytes;constructor(t,e,n,o){this.code=t,this.size=e,this.digest=n,this.bytes=o}};function Df(r,t){return r.code===t}function Ma(r,t){let{bytes:e,version:n}=r;switch(n){case 0:return Uf(e,rs(r),t??nt.encoder);default:return kf(e,rs(r),t??oe.encoder)}}var Ka=new WeakMap;function rs(r){let t=Ka.get(r);if(t==null){let e=new Map;return Ka.set(r,e),e}return t}var bt=class r{code;version;multihash;bytes;"/";constructor(t,e,n,o){this.code=e,this.version=t,this.multihash=n,this.bytes=o,this["/"]=o}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:t,multihash:e}=this;if(t!==Cr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(e.code!==Of)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(e)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:t,digest:e}=this.multihash,n=vt(t,e);return r.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(t){return r.equals(this,t)}static equals(t,e){let n=e;return n!=null&&t.code===n.code&&t.version===n.version&&es(t.multihash,n.multihash)}toString(t){return Ma(this,t)}toJSON(){return{"/":Ma(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(t){if(t==null)return null;let e=t;if(e instanceof r)return e;if(e["/"]!=null&&e["/"]===e.bytes||e.asCID===e){let{version:n,code:o,multihash:s,bytes:i}=e;return new r(n,o,s,i??Fa(n,o,s.bytes))}else if(e[Mf]===!0){let{version:n,multihash:o,code:s}=e,i=we(o);return r.create(n,s,i)}else return null}static create(t,e,n){if(typeof e!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(t){case 0:{if(e!==Cr)throw new Error(`Version 0 CID must use dag-pb (code: ${Cr}) block encoding`);return new r(t,e,n,n.bytes)}case 1:{let o=Fa(t,e,n.bytes);return new r(t,e,n,o)}default:throw new Error("Invalid version")}}static createV0(t){return r.create(0,Cr,t)}static createV1(t,e){return r.create(1,t,e)}static decode(t){let[e,n]=r.decodeFirst(t);if(n.length!==0)throw new Error("Incorrect length");return e}static decodeFirst(t){let e=r.inspectBytes(t),n=e.size-e.multihashSize,o=ne(t.subarray(n,n+e.multihashSize));if(o.byteLength!==e.multihashSize)throw new Error("Incorrect length");let s=o.subarray(e.multihashSize-e.digestSize),i=new Ne(e.multihashCode,e.digestSize,s,o);return[e.version===0?r.createV0(i):r.createV1(e.codec,i),t.subarray(e.size)]}static inspectBytes(t){let e=0,n=()=>{let[f,d]=Br(t.subarray(e));return e+=d,f},o=n(),s=Cr;if(o===18?(o=0,e=0):s=n(),o!==0&&o!==1)throw new RangeError(`Invalid CID version ${o}`);let i=e,a=n(),c=n(),l=e+c,u=l-i;return{version:o,codec:s,multihashCode:a,digestSize:c,multihashSize:u,size:l}}static parse(t,e){let[n,o]=Nf(t,e),s=r.decode(o);if(s.version===0&&t[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return rs(s).set(n,t),s}};function Nf(r,t){switch(r[0]){case"Q":{let e=t??nt;return[nt.prefix,e.decode(`${nt.prefix}${r}`)]}case nt.prefix:{let e=t??nt;return[nt.prefix,e.decode(r)]}case oe.prefix:{let e=t??oe;return[oe.prefix,e.decode(r)]}case Tr.prefix:{let e=t??Tr;return[Tr.prefix,e.decode(r)]}default:{if(t==null)throw Error("To parse non base32, base36 or base58btc encoded CID multibase decoder must be provided");return[r[0],t.decode(r)]}}}function Uf(r,t,e){let{prefix:n}=e;if(n!==nt.prefix)throw Error(`Cannot string encode V0 in ${e.name} encoding`);let o=t.get(n);if(o==null){let s=e.encode(r).slice(1);return t.set(n,s),s}else return o}function kf(r,t,e){let{prefix:n}=e,o=t.get(n);if(o==null){let s=e.encode(r);return t.set(n,s),s}else return o}var Cr=112,Of=18;function Fa(r,t,e){let n=rr(r),o=n+rr(t),s=new Uint8Array(o+e.byteLength);return er(r,s,0),er(t,s,n),s.set(e,o),s}var Mf=Symbol.for("@ipld/js-cid/CID");var ns={};At(ns,{identity:()=>se});var Ha=0,Kf="identity",Va=ne;function Ff(r){return vt(Ha,Va(r))}var se={code:Ha,name:Kf,encode:Va,digest:Ff};function Rt(r,t){if(r===t)return!0;if(r.byteLength!==t.byteLength)return!1;for(let e=0;e<r.byteLength;e++)if(r[e]!==t[e])return!1;return!0}function En(r){if(!Number.isSafeInteger(r)||r<0)throw new Error("positive integer expected, got "+r)}function Hf(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function nr(r,...t){if(!Hf(r))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(r.length))throw new Error("Uint8Array expected of length "+t+", got length="+r.length)}function _r(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");En(r.outputLen),En(r.blockLen)}function or(r,t=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(t&&r.finished)throw new Error("Hash#digest() has already been called")}function qa(r,t){nr(r);let e=t.outputLen;if(r.length<e)throw new Error("digestInto() expects output buffer of length at least "+e)}var Ue=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;function Sn(r){return new DataView(r.buffer,r.byteOffset,r.byteLength)}function qt(r,t){return r<<32-t|r>>>t}function Ga(r){if(typeof r!="string")throw new Error("utf8ToBytes expected string, got "+typeof r);return new Uint8Array(new TextEncoder().encode(r))}function be(r){return typeof r=="string"&&(r=Ga(r)),nr(r),r}function os(...r){let t=0;for(let n=0;n<r.length;n++){let o=r[n];nr(o),t+=o.length}let e=new Uint8Array(t);for(let n=0,o=0;n<r.length;n++){let s=r[n];e.set(s,o),o+=s.length}return e}var sr=class{clone(){return this._cloneInto()}};function An(r){let t=n=>r().update(be(n)).digest(),e=r();return t.outputLen=e.outputLen,t.blockLen=e.blockLen,t.create=()=>r(),t}function Rr(r=32){if(Ue&&typeof Ue.getRandomValues=="function")return Ue.getRandomValues(new Uint8Array(r));if(Ue&&typeof Ue.randomBytes=="function")return Ue.randomBytes(r);throw new Error("crypto.getRandomValues must be defined")}function Vf(r,t,e,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(t,e,n);let o=BigInt(32),s=BigInt(4294967295),i=Number(e>>o&s),a=Number(e&s),c=n?4:0,l=n?0:4;r.setUint32(t+c,i,n),r.setUint32(t+l,a,n)}function za(r,t,e){return r&t^~r&e}function Wa(r,t,e){return r&t^r&e^t&e}var ir=class extends sr{constructor(t,e,n,o){super(),this.blockLen=t,this.outputLen=e,this.padOffset=n,this.isLE=o,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(t),this.view=Sn(this.buffer)}update(t){or(this);let{view:e,buffer:n,blockLen:o}=this;t=be(t);let s=t.length;for(let i=0;i<s;){let a=Math.min(o-this.pos,s-i);if(a===o){let c=Sn(t);for(;o<=s-i;i+=o)this.process(c,i);continue}n.set(t.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===o&&(this.process(e,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){or(this),qa(t,this),this.finished=!0;let{buffer:e,view:n,blockLen:o,isLE:s}=this,{pos:i}=this;e[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>o-i&&(this.process(n,0),i=0);for(let f=i;f<o;f++)e[f]=0;Vf(n,o-8,BigInt(this.length*8),s),this.process(n,0);let a=Sn(t),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let l=c/4,u=this.get();if(l>u.length)throw new Error("_sha2: outputLen bigger than state");for(let f=0;f<l;f++)a.setUint32(4*f,u[f],s)}digest(){let{buffer:t,outputLen:e}=this;this.digestInto(t);let n=t.slice(0,e);return this.destroy(),n}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());let{blockLen:e,buffer:n,length:o,finished:s,destroyed:i,pos:a}=this;return t.length=o,t.pos=a,t.finished=s,t.destroyed=i,o%e&&t.buffer.set(n),t}};var vn=BigInt(4294967295),ss=BigInt(32);function $a(r,t=!1){return t?{h:Number(r&vn),l:Number(r>>ss&vn)}:{h:Number(r>>ss&vn)|0,l:Number(r&vn)|0}}function qf(r,t=!1){let e=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let o=0;o<r.length;o++){let{h:s,l:i}=$a(r[o],t);[e[o],n[o]]=[s,i]}return[e,n]}var Gf=(r,t)=>BigInt(r>>>0)<<ss|BigInt(t>>>0),zf=(r,t,e)=>r>>>e,Wf=(r,t,e)=>r<<32-e|t>>>e,$f=(r,t,e)=>r>>>e|t<<32-e,Xf=(r,t,e)=>r<<32-e|t>>>e,Zf=(r,t,e)=>r<<64-e|t>>>e-32,Yf=(r,t,e)=>r>>>e-32|t<<64-e,jf=(r,t)=>t,Jf=(r,t)=>r,Qf=(r,t,e)=>r<<e|t>>>32-e,th=(r,t,e)=>t<<e|r>>>32-e,eh=(r,t,e)=>t<<e-32|r>>>64-e,rh=(r,t,e)=>r<<e-32|t>>>64-e;function nh(r,t,e,n){let o=(t>>>0)+(n>>>0);return{h:r+e+(o/2**32|0)|0,l:o|0}}var oh=(r,t,e)=>(r>>>0)+(t>>>0)+(e>>>0),sh=(r,t,e,n)=>t+e+n+(r/2**32|0)|0,ih=(r,t,e,n)=>(r>>>0)+(t>>>0)+(e>>>0)+(n>>>0),ah=(r,t,e,n,o)=>t+e+n+o+(r/2**32|0)|0,ch=(r,t,e,n,o)=>(r>>>0)+(t>>>0)+(e>>>0)+(n>>>0)+(o>>>0),lh=(r,t,e,n,o,s)=>t+e+n+o+s+(r/2**32|0)|0;var uh={fromBig:$a,split:qf,toBig:Gf,shrSH:zf,shrSL:Wf,rotrSH:$f,rotrSL:Xf,rotrBH:Zf,rotrBL:Yf,rotr32H:jf,rotr32L:Jf,rotlSH:Qf,rotlSL:th,rotlBH:eh,rotlBL:rh,add:nh,add3L:oh,add3H:sh,add4L:ih,add4H:ah,add5H:lh,add5L:ch},V=uh;var[fh,hh]=V.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))),xe=new Uint32Array(80),Ee=new Uint32Array(80),is=class extends ir{constructor(){super(128,64,16,!1),this.Ah=1779033703,this.Al=-205731576,this.Bh=-1150833019,this.Bl=-2067093701,this.Ch=1013904242,this.Cl=-23791573,this.Dh=-1521486534,this.Dl=1595750129,this.Eh=1359893119,this.El=-1377402159,this.Fh=-1694144372,this.Fl=725511199,this.Gh=528734635,this.Gl=-79577749,this.Hh=1541459225,this.Hl=327033209}get(){let{Ah:t,Al:e,Bh:n,Bl:o,Ch:s,Cl:i,Dh:a,Dl:c,Eh:l,El:u,Fh:f,Fl:d,Gh:g,Gl:b,Hh:m,Hl:h}=this;return[t,e,n,o,s,i,a,c,l,u,f,d,g,b,m,h]}set(t,e,n,o,s,i,a,c,l,u,f,d,g,b,m,h){this.Ah=t|0,this.Al=e|0,this.Bh=n|0,this.Bl=o|0,this.Ch=s|0,this.Cl=i|0,this.Dh=a|0,this.Dl=c|0,this.Eh=l|0,this.El=u|0,this.Fh=f|0,this.Fl=d|0,this.Gh=g|0,this.Gl=b|0,this.Hh=m|0,this.Hl=h|0}process(t,e){for(let p=0;p<16;p++,e+=4)xe[p]=t.getUint32(e),Ee[p]=t.getUint32(e+=4);for(let p=16;p<80;p++){let I=xe[p-15]|0,R=Ee[p-15]|0,_=V.rotrSH(I,R,1)^V.rotrSH(I,R,8)^V.shrSH(I,R,7),v=V.rotrSL(I,R,1)^V.rotrSL(I,R,8)^V.shrSL(I,R,7),C=xe[p-2]|0,L=Ee[p-2]|0,M=V.rotrSH(C,L,19)^V.rotrBH(C,L,61)^V.shrSH(C,L,6),N=V.rotrSL(C,L,19)^V.rotrBL(C,L,61)^V.shrSL(C,L,6),O=V.add4L(v,N,Ee[p-7],Ee[p-16]),F=V.add4H(O,_,M,xe[p-7],xe[p-16]);xe[p]=F|0,Ee[p]=O|0}let{Ah:n,Al:o,Bh:s,Bl:i,Ch:a,Cl:c,Dh:l,Dl:u,Eh:f,El:d,Fh:g,Fl:b,Gh:m,Gl:h,Hh:w,Hl:x}=this;for(let p=0;p<80;p++){let I=V.rotrSH(f,d,14)^V.rotrSH(f,d,18)^V.rotrBH(f,d,41),R=V.rotrSL(f,d,14)^V.rotrSL(f,d,18)^V.rotrBL(f,d,41),_=f&g^~f&m,v=d&b^~d&h,C=V.add5L(x,R,v,hh[p],Ee[p]),L=V.add5H(C,w,I,_,fh[p],xe[p]),M=C|0,N=V.rotrSH(n,o,28)^V.rotrBH(n,o,34)^V.rotrBH(n,o,39),O=V.rotrSL(n,o,28)^V.rotrBL(n,o,34)^V.rotrBL(n,o,39),F=n&s^n&a^s&a,T=o&i^o&c^i&c;w=m|0,x=h|0,m=g|0,h=b|0,g=f|0,b=d|0,{h:f,l:d}=V.add(l|0,u|0,L|0,M|0),l=a|0,u=c|0,a=s|0,c=i|0,s=n|0,i=o|0;let B=V.add3L(M,O,T);n=V.add3H(B,L,N,F),o=B|0}({h:n,l:o}=V.add(this.Ah|0,this.Al|0,n|0,o|0)),{h:s,l:i}=V.add(this.Bh|0,this.Bl|0,s|0,i|0),{h:a,l:c}=V.add(this.Ch|0,this.Cl|0,a|0,c|0),{h:l,l:u}=V.add(this.Dh|0,this.Dl|0,l|0,u|0),{h:f,l:d}=V.add(this.Eh|0,this.El|0,f|0,d|0),{h:g,l:b}=V.add(this.Fh|0,this.Fl|0,g|0,b|0),{h:m,l:h}=V.add(this.Gh|0,this.Gl|0,m|0,h|0),{h:w,l:x}=V.add(this.Hh|0,this.Hl|0,w|0,x|0),this.set(n,o,s,i,a,c,l,u,f,d,g,b,m,h,w,x)}roundClean(){xe.fill(0),Ee.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 Xa=An(()=>new is);var Ln={};At(Ln,{aInRange:()=>xt,abool:()=>Gt,abytes:()=>ar,bitGet:()=>wh,bitLen:()=>us,bitMask:()=>Dr,bitSet:()=>bh,bytesToHex:()=>ae,bytesToNumberBE:()=>ce,bytesToNumberLE:()=>zt,concatBytes:()=>ue,createHmacDrbg:()=>fs,ensureBytes:()=>ot,equalBytes:()=>gh,hexToBytes:()=>Oe,hexToNumber:()=>ls,inRange:()=>Pr,isBytes:()=>Se,memoized:()=>Me,notImplemented:()=>Eh,numberToBytesBE:()=>Ae,numberToBytesLE:()=>le,numberToHexUnpadded:()=>ke,numberToVarBytesBE:()=>mh,utf8ToBytes:()=>yh,validateObject:()=>Kt});var In=BigInt(0),Tn=BigInt(1),dh=BigInt(2);function Se(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function ar(r){if(!Se(r))throw new Error("Uint8Array expected")}function Gt(r,t){if(typeof t!="boolean")throw new Error(r+" boolean expected, got "+t)}var ph=Array.from({length:256},(r,t)=>t.toString(16).padStart(2,"0"));function ae(r){ar(r);let t="";for(let e=0;e<r.length;e++)t+=ph[r[e]];return t}function ke(r){let t=r.toString(16);return t.length&1?"0"+t:t}function ls(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return r===""?In:BigInt("0x"+r)}var ie={_0:48,_9:57,A:65,F:70,a:97,f:102};function Za(r){if(r>=ie._0&&r<=ie._9)return r-ie._0;if(r>=ie.A&&r<=ie.F)return r-(ie.A-10);if(r>=ie.a&&r<=ie.f)return r-(ie.a-10)}function Oe(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let t=r.length,e=t/2;if(t%2)throw new Error("hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(e);for(let o=0,s=0;o<e;o++,s+=2){let i=Za(r.charCodeAt(s)),a=Za(r.charCodeAt(s+1));if(i===void 0||a===void 0){let c=r[s]+r[s+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+s)}n[o]=i*16+a}return n}function ce(r){return ls(ae(r))}function zt(r){return ar(r),ls(ae(Uint8Array.from(r).reverse()))}function Ae(r,t){return Oe(r.toString(16).padStart(t*2,"0"))}function le(r,t){return Ae(r,t).reverse()}function mh(r){return Oe(ke(r))}function ot(r,t,e){let n;if(typeof t=="string")try{n=Oe(t)}catch(s){throw new Error(r+" must be hex string or Uint8Array, cause: "+s)}else if(Se(t))n=Uint8Array.from(t);else throw new Error(r+" must be hex string or Uint8Array");let o=n.length;if(typeof e=="number"&&o!==e)throw new Error(r+" of length "+e+" expected, got "+o);return n}function ue(...r){let t=0;for(let n=0;n<r.length;n++){let o=r[n];ar(o),t+=o.length}let e=new Uint8Array(t);for(let n=0,o=0;n<r.length;n++){let s=r[n];e.set(s,o),o+=s.length}return e}function gh(r,t){if(r.length!==t.length)return!1;let e=0;for(let n=0;n<r.length;n++)e|=r[n]^t[n];return e===0}function yh(r){if(typeof r!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(r))}var as=r=>typeof r=="bigint"&&In<=r;function Pr(r,t,e){return as(r)&&as(t)&&as(e)&&t<=r&&r<e}function xt(r,t,e,n){if(!Pr(t,e,n))throw new Error("expected valid "+r+": "+e+" <= n < "+n+", got "+t)}function us(r){let t;for(t=0;r>In;r>>=Tn,t+=1);return t}function wh(r,t){return r>>BigInt(t)&Tn}function bh(r,t,e){return r|(e?Tn:In)<<BigInt(t)}var Dr=r=>(dh<<BigInt(r-1))-Tn,cs=r=>new Uint8Array(r),Ya=r=>Uint8Array.from(r);function fs(r,t,e){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof t!="number"||t<2)throw new Error("qByteLen must be a number");if(typeof e!="function")throw new Error("hmacFn must be a function");let n=cs(r),o=cs(r),s=0,i=()=>{n.fill(1),o.fill(0),s=0},a=(...f)=>e(o,n,...f),c=(f=cs())=>{o=a(Ya([0]),f),n=a(),f.length!==0&&(o=a(Ya([1]),f),n=a())},l=()=>{if(s++>=1e3)throw new Error("drbg: tried 1000 values");let f=0,d=[];for(;f<t;){n=a();let g=n.slice();d.push(g),f+=n.length}return ue(...d)};return(f,d)=>{i(),c(f);let g;for(;!(g=d(l()));)c();return i(),g}}var xh={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"||Se(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,t)=>t.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function Kt(r,t,e={}){let n=(o,s,i)=>{let a=xh[s];if(typeof a!="function")throw new Error("invalid validator function");let c=r[o];if(!(i&&c===void 0)&&!a(c,r))throw new Error("param "+String(o)+" is invalid. Expected "+s+", got "+c)};for(let[o,s]of Object.entries(t))n(o,s,!1);for(let[o,s]of Object.entries(e))n(o,s,!0);return r}var Eh=()=>{throw new Error("not implemented")};function Me(r){let t=new WeakMap;return(e,...n)=>{let o=t.get(e);if(o!==void 0)return o;let s=r(e,...n);return t.set(e,s),s}}var pt=BigInt(0),ut=BigInt(1),Ke=BigInt(2),Sh=BigInt(3),hs=BigInt(4),ja=BigInt(5),Ja=BigInt(8),Ah=BigInt(9),vh=BigInt(16);function Z(r,t){let e=r%t;return e>=pt?e:t+e}function ds(r,t,e){if(t<pt)throw new Error("invalid exponent, negatives unsupported");if(e<=pt)throw new Error("invalid modulus");if(e===ut)return pt;let n=ut;for(;t>pt;)t&ut&&(n=n*r%e),r=r*r%e,t>>=ut;return n}function at(r,t,e){let n=r;for(;t-- >pt;)n*=n,n%=e;return n}function Bn(r,t){if(r===pt)throw new Error("invert: expected non-zero number");if(t<=pt)throw new Error("invert: expected positive modulus, got "+t);let e=Z(r,t),n=t,o=pt,s=ut,i=ut,a=pt;for(;e!==pt;){let l=n/e,u=n%e,f=o-i*l,d=s-a*l;n=e,e=u,o=i,s=a,i=f,a=d}if(n!==ut)throw new Error("invert: does not exist");return Z(o,t)}function Ih(r){let t=(r-ut)/Ke,e,n,o;for(e=r-ut,n=0;e%Ke===pt;e/=Ke,n++);for(o=Ke;o<r&&ds(o,t,r)!==r-ut;o++)if(o>1e3)throw new Error("Cannot find square root: likely non-prime P");if(n===1){let i=(r+ut)/hs;return function(c,l){let u=c.pow(l,i);if(!c.eql(c.sqr(u),l))throw new Error("Cannot find square root");return u}}let s=(e+ut)/Ke;return function(a,c){if(a.pow(c,t)===a.neg(a.ONE))throw new Error("Cannot find square root");let l=n,u=a.pow(a.mul(a.ONE,o),e),f=a.pow(c,s),d=a.pow(c,e);for(;!a.eql(d,a.ONE);){if(a.eql(d,a.ZERO))return a.ZERO;let g=1;for(let m=a.sqr(d);g<l&&!a.eql(m,a.ONE);g++)m=a.sqr(m);let b=a.pow(u,ut<<BigInt(l-g-1));u=a.sqr(b),f=a.mul(f,b),d=a.mul(d,u),l=g}return f}}function Th(r){if(r%hs===Sh){let t=(r+ut)/hs;return function(n,o){let s=n.pow(o,t);if(!n.eql(n.sqr(s),o))throw new Error("Cannot find square root");return s}}if(r%Ja===ja){let t=(r-ja)/Ja;return function(n,o){let s=n.mul(o,Ke),i=n.pow(s,t),a=n.mul(o,i),c=n.mul(n.mul(a,Ke),i),l=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(l),o))throw new Error("Cannot find square root");return l}}return r%vh,Ih(r)}var Qa=(r,t)=>(Z(r,t)&ut)===ut,Lh=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function ps(r){let t={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},e=Lh.reduce((n,o)=>(n[o]="function",n),t);return Kt(r,e)}function Bh(r,t,e){if(e<pt)throw new Error("invalid exponent, negatives unsupported");if(e===pt)return r.ONE;if(e===ut)return t;let n=r.ONE,o=t;for(;e>pt;)e&ut&&(n=r.mul(n,o)),o=r.sqr(o),e>>=ut;return n}function Ch(r,t){let e=new Array(t.length),n=t.reduce((s,i,a)=>r.is0(i)?s:(e[a]=s,r.mul(s,i)),r.ONE),o=r.inv(n);return t.reduceRight((s,i,a)=>r.is0(i)?s:(e[a]=r.mul(s,e[a]),r.mul(s,i)),o),e}function ms(r,t){let e=t!==void 0?t:r.toString(2).length,n=Math.ceil(e/8);return{nBitLength:e,nByteLength:n}}function ve(r,t,e=!1,n={}){if(r<=pt)throw new Error("invalid field: expected ORDER > 0, got "+r);let{nBitLength:o,nByteLength:s}=ms(r,t);if(s>2048)throw new Error("invalid field: expected ORDER of <= 2048 bytes");let i,a=Object.freeze({ORDER:r,isLE:e,BITS:o,BYTES:s,MASK:Dr(o),ZERO:pt,ONE:ut,create:c=>Z(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error("invalid field element: expected bigint, got "+typeof c);return pt<=c&&c<r},is0:c=>c===pt,isOdd:c=>(c&ut)===ut,neg:c=>Z(-c,r),eql:(c,l)=>c===l,sqr:c=>Z(c*c,r),add:(c,l)=>Z(c+l,r),sub:(c,l)=>Z(c-l,r),mul:(c,l)=>Z(c*l,r),pow:(c,l)=>Bh(a,c,l),div:(c,l)=>Z(c*Bn(l,r),r),sqrN:c=>c*c,addN:(c,l)=>c+l,subN:(c,l)=>c-l,mulN:(c,l)=>c*l,inv:c=>Bn(c,r),sqrt:n.sqrt||(c=>(i||(i=Th(r)),i(a,c))),invertBatch:c=>Ch(a,c),cmov:(c,l,u)=>u?l:c,toBytes:c=>e?le(c,s):Ae(c,s),fromBytes:c=>{if(c.length!==s)throw new Error("Field.fromBytes: expected "+s+" bytes, got "+c.length);return e?zt(c):ce(c)}});return Object.freeze(a)}function tc(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let t=r.toString(2).length;return Math.ceil(t/8)}function gs(r){let t=tc(r);return t+Math.ceil(t/2)}function ec(r,t,e=!1){let n=r.length,o=tc(t),s=gs(t);if(n<16||n<s||n>1024)throw new Error("expected "+s+"-1024 bytes of input, got "+n);let i=e?zt(r):ce(r),a=Z(i,t-ut)+ut;return e?le(a,o):Ae(a,o)}var rc=BigInt(0),Cn=BigInt(1);function ys(r,t){let e=t.negate();return r?e:t}function nc(r,t){if(!Number.isSafeInteger(r)||r<=0||r>t)throw new Error("invalid window size, expected [1.."+t+"], got W="+r)}function ws(r,t){nc(r,t);let e=Math.ceil(t/r)+1,n=2**(r-1);return{windows:e,windowSize:n}}function _h(r,t){if(!Array.isArray(r))throw new Error("array expected");r.forEach((e,n)=>{if(!(e instanceof t))throw new Error("invalid point at index "+n)})}function Rh(r,t){if(!Array.isArray(r))throw new Error("array of scalars expected");r.forEach((e,n)=>{if(!t.isValid(e))throw new Error("invalid scalar at index "+n)})}var bs=new WeakMap,oc=new WeakMap;function xs(r){return oc.get(r)||1}function _n(r,t){return{constTimeNegate:ys,hasPrecomputes(e){return xs(e)!==1},unsafeLadder(e,n,o=r.ZERO){let s=e;for(;n>rc;)n&Cn&&(o=o.add(s)),s=s.double(),n>>=Cn;return o},precomputeWindow(e,n){let{windows:o,windowSize:s}=ws(n,t),i=[],a=e,c=a;for(let l=0;l<o;l++){c=a,i.push(c);for(let u=1;u<s;u++)c=c.add(a),i.push(c);a=c.double()}return i},wNAF(e,n,o){let{windows:s,windowSize:i}=ws(e,t),a=r.ZERO,c=r.BASE,l=BigInt(2**e-1),u=2**e,f=BigInt(e);for(let d=0;d<s;d++){let g=d*i,b=Number(o&l);o>>=f,b>i&&(b-=u,o+=Cn);let m=g,h=g+Math.abs(b)-1,w=d%2!==0,x=b<0;b===0?c=c.add(ys(w,n[m])):a=a.add(ys(x,n[h]))}return{p:a,f:c}},wNAFUnsafe(e,n,o,s=r.ZERO){let{windows:i,windowSize:a}=ws(e,t),c=BigInt(2**e-1),l=2**e,u=BigInt(e);for(let f=0;f<i;f++){let d=f*a;if(o===rc)break;let g=Number(o&c);if(o>>=u,g>a&&(g-=l,o+=Cn),g===0)continue;let b=n[d+Math.abs(g)-1];g<0&&(b=b.negate()),s=s.add(b)}return s},getPrecomputes(e,n,o){let s=bs.get(n);return s||(s=this.precomputeWindow(n,e),e!==1&&bs.set(n,o(s))),s},wNAFCached(e,n,o){let s=xs(e);return this.wNAF(s,this.getPrecomputes(s,e,o),n)},wNAFCachedUnsafe(e,n,o,s){let i=xs(e);return i===1?this.unsafeLadder(e,n,s):this.wNAFUnsafe(i,this.getPrecomputes(i,e,o),n,s)},setWindowSize(e,n){nc(n,t),oc.set(e,n),bs.delete(e)}}}function Rn(r,t,e,n){if(_h(e,r),Rh(n,t),e.length!==n.length)throw new Error("arrays of points and scalars must have equal length");let o=r.ZERO,s=us(BigInt(e.length)),i=s>12?s-3:s>4?s-2:s?2:1,a=(1<<i)-1,c=new Array(a+1).fill(o),l=Math.floor((t.BITS-1)/i)*i,u=o;for(let f=l;f>=0;f-=i){c.fill(o);for(let g=0;g<n.length;g++){let b=n[g],m=Number(b>>BigInt(f)&BigInt(a));c[m]=c[m].add(e[g])}let d=o;for(let g=c.length-1,b=o;g>0;g--)b=b.add(c[g]),d=d.add(b);if(u=u.add(d),f!==0)for(let g=0;g<i;g++)u=u.double()}return u}function Nr(r){return ps(r.Fp),Kt(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...ms(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var Wt=BigInt(0),Dt=BigInt(1),Pn=BigInt(2),Ph=BigInt(8),Dh={zip215:!0};function Nh(r){let t=Nr(r);return Kt(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...t})}function sc(r){let t=Nh(r),{Fp:e,n,prehash:o,hash:s,randomBytes:i,nByteLength:a,h:c}=t,l=Pn<<BigInt(a*8)-Dt,u=e.create,f=ve(t.n,t.nBitLength),d=t.uvRatio||((E,y)=>{try{return{isValid:!0,value:e.sqrt(E*e.inv(y))}}catch{return{isValid:!1,value:Wt}}}),g=t.adjustScalarBytes||(E=>E),b=t.domain||((E,y,A)=>{if(Gt("phflag",A),y.length||A)throw new Error("Contexts/pre-hash are not supported");return E});function m(E,y){xt("coordinate "+E,y,Wt,l)}function h(E){if(!(E instanceof p))throw new Error("ExtendedPoint expected")}let w=Me((E,y)=>{let{ex:A,ey:S,ez:P}=E,D=E.is0();y==null&&(y=D?Ph:e.inv(P));let k=u(A*y),H=u(S*y),K=u(P*y);if(D)return{x:Wt,y:Dt};if(K!==Dt)throw new Error("invZ was invalid");return{x:k,y:H}}),x=Me(E=>{let{a:y,d:A}=t;if(E.is0())throw new Error("bad point: ZERO");let{ex:S,ey:P,ez:D,et:k}=E,H=u(S*S),K=u(P*P),G=u(D*D),X=u(G*G),st=u(H*y),it=u(G*u(st+K)),lt=u(X+u(A*u(H*K)));if(it!==lt)throw new Error("bad point: equation left != right (1)");let St=u(S*P),Pt=u(D*k);if(St!==Pt)throw new Error("bad point: equation left != right (2)");return!0});class p{constructor(y,A,S,P){this.ex=y,this.ey=A,this.ez=S,this.et=P,m("x",y),m("y",A),m("z",S),m("t",P),Object.freeze(this)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(y){if(y instanceof p)throw new Error("extended point not allowed");let{x:A,y:S}=y||{};return m("x",A),m("y",S),new p(A,S,Dt,u(A*S))}static normalizeZ(y){let A=e.invertBatch(y.map(S=>S.ez));return y.map((S,P)=>S.toAffine(A[P])).map(p.fromAffine)}static msm(y,A){return Rn(p,f,y,A)}_setWindowSize(y){_.setWindowSize(this,y)}assertValidity(){x(this)}equals(y){h(y);let{ex:A,ey:S,ez:P}=this,{ex:D,ey:k,ez:H}=y,K=u(A*H),G=u(D*P),X=u(S*H),st=u(k*P);return K===G&&X===st}is0(){return this.equals(p.ZERO)}negate(){return new p(u(-this.ex),this.ey,this.ez,u(-this.et))}double(){let{a:y}=t,{ex:A,ey:S,ez:P}=this,D=u(A*A),k=u(S*S),H=u(Pn*u(P*P)),K=u(y*D),G=A+S,X=u(u(G*G)-D-k),st=K+k,it=st-H,lt=K-k,St=u(X*it),Pt=u(st*lt),_t=u(X*lt),Jt=u(it*st);return new p(St,Pt,Jt,_t)}add(y){h(y);let{a:A,d:S}=t,{ex:P,ey:D,ez:k,et:H}=this,{ex:K,ey:G,ez:X,et:st}=y;if(A===BigInt(-1)){let xa=u((D-P)*(G+K)),Ea=u((D+P)*(G-K)),Go=u(Ea-xa);if(Go===Wt)return this.double();let Sa=u(k*Pn*st),Aa=u(H*Pn*X),va=Aa+Sa,Ia=Ea+xa,Ta=Aa-Sa,Gu=u(va*Go),zu=u(Ia*Ta),Wu=u(va*Ta),$u=u(Go*Ia);return new p(Gu,zu,$u,Wu)}let it=u(P*K),lt=u(D*G),St=u(H*S*st),Pt=u(k*X),_t=u((P+D)*(K+G)-it-lt),Jt=Pt-St,re=Pt+St,Ir=u(lt-A*it),Fu=u(_t*Jt),Hu=u(re*Ir),Vu=u(_t*Ir),qu=u(Jt*re);return new p(Fu,Hu,qu,Vu)}subtract(y){return this.add(y.negate())}wNAF(y){return _.wNAFCached(this,y,p.normalizeZ)}multiply(y){let A=y;xt("scalar",A,Dt,n);let{p:S,f:P}=this.wNAF(A);return p.normalizeZ([S,P])[0]}multiplyUnsafe(y,A=p.ZERO){let S=y;return xt("scalar",S,Wt,n),S===Wt?R:this.is0()||S===Dt?this:_.wNAFCachedUnsafe(this,S,p.normalizeZ,A)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return _.unsafeLadder(this,n).is0()}toAffine(y){return w(this,y)}clearCofactor(){let{h:y}=t;return y===Dt?this:this.multiplyUnsafe(y)}static fromHex(y,A=!1){let{d:S,a:P}=t,D=e.BYTES;y=ot("pointHex",y,D),Gt("zip215",A);let k=y.slice(),H=y[D-1];k[D-1]=H&-129;let K=zt(k),G=A?l:e.ORDER;xt("pointHex.y",K,Wt,G);let X=u(K*K),st=u(X-Dt),it=u(S*X-P),{isValid:lt,value:St}=d(st,it);if(!lt)throw new Error("Point.fromHex: invalid y coordinate");let Pt=(St&Dt)===Dt,_t=(H&128)!==0;if(!A&&St===Wt&&_t)throw new Error("Point.fromHex: x=0 and x_0=1");return _t!==Pt&&(St=u(-St)),p.fromAffine({x:St,y:K})}static fromPrivateKey(y){return L(y).point}toRawBytes(){let{x:y,y:A}=this.toAffine(),S=le(A,e.BYTES);return S[S.length-1]|=y&Dt?128:0,S}toHex(){return ae(this.toRawBytes())}}p.BASE=new p(t.Gx,t.Gy,Dt,u(t.Gx*t.Gy)),p.ZERO=new p(Wt,Dt,Dt,Wt);let{BASE:I,ZERO:R}=p,_=_n(p,a*8);function v(E){return Z(E,n)}function C(E){return v(zt(E))}function L(E){let y=e.BYTES;E=ot("private key",E,y);let A=ot("hashed private key",s(E),2*y),S=g(A.slice(0,y)),P=A.slice(y,2*y),D=C(S),k=I.multiply(D),H=k.toRawBytes();return{head:S,prefix:P,scalar:D,point:k,pointBytes:H}}function M(E){return L(E).pointBytes}function N(E=new Uint8Array,...y){let A=ue(...y);return C(s(b(A,ot("context",E),!!o)))}function O(E,y,A={}){E=ot("message",E),o&&(E=o(E));let{prefix:S,scalar:P,pointBytes:D}=L(y),k=N(A.context,S,E),H=I.multiply(k).toRawBytes(),K=N(A.context,H,D,E),G=v(k+K*P);xt("signature.s",G,Wt,n);let X=ue(H,le(G,e.BYTES));return ot("result",X,e.BYTES*2)}let F=Dh;function T(E,y,A,S=F){let{context:P,zip215:D}=S,k=e.BYTES;E=ot("signature",E,2*k),y=ot("message",y),A=ot("publicKey",A,k),D!==void 0&&Gt("zip215",D),o&&(y=o(y));let H=zt(E.slice(k,2*k)),K,G,X;try{K=p.fromHex(A,D),G=p.fromHex(E.slice(0,k),D),X=I.multiplyUnsafe(H)}catch{return!1}if(!D&&K.isSmallOrder())return!1;let st=N(P,G.toRawBytes(),K.toRawBytes(),y);return G.add(K.multiplyUnsafe(st)).subtract(X).clearCofactor().equals(p.ZERO)}return I._setWindowSize(8),{CURVE:t,getPublicKey:M,sign:O,verify:T,ExtendedPoint:p,utils:{getExtendedPublicKey:L,randomPrivateKey:()=>i(e.BYTES),precompute(E=8,y=p.BASE){return y._setWindowSize(E),y.multiply(BigInt(3)),y}}}}var cr=BigInt(0),Es=BigInt(1);function Uh(r){return Kt(r,{a:"bigint"},{montgomeryBits:"isSafeInteger",nByteLength:"isSafeInteger",adjustScalarBytes:"function",domain:"function",powPminus2:"function",Gu:"bigint"}),Object.freeze({...r})}function ic(r){let t=Uh(r),{P:e}=t,n=x=>Z(x,e),o=t.montgomeryBits,s=Math.ceil(o/8),i=t.nByteLength,a=t.adjustScalarBytes||(x=>x),c=t.powPminus2||(x=>ds(x,e-BigInt(2),e));function l(x,p,I){let R=n(x*(p-I));return p=n(p-R),I=n(I+R),[p,I]}let u=(t.a-BigInt(2))/BigInt(4);function f(x,p){xt("u",x,cr,e),xt("scalar",p,cr,e);let I=p,R=x,_=Es,v=cr,C=x,L=Es,M=cr,N;for(let F=BigInt(o-1);F>=cr;F--){let T=I>>F&Es;M^=T,N=l(M,_,C),_=N[0],C=N[1],N=l(M,v,L),v=N[0],L=N[1],M=T;let B=_+v,E=n(B*B),y=_-v,A=n(y*y),S=E-A,P=C+L,D=C-L,k=n(D*B),H=n(P*y),K=k+H,G=k-H;C=n(K*K),L=n(R*n(G*G)),_=n(E*A),v=n(S*(E+n(u*S)))}N=l(M,_,C),_=N[0],C=N[1],N=l(M,v,L),v=N[0],L=N[1];let O=c(v);return n(_*O)}function d(x){return le(n(x),s)}function g(x){let p=ot("u coordinate",x,s);return i===32&&(p[31]&=127),zt(p)}function b(x){let p=ot("scalar",x),I=p.length;if(I!==s&&I!==i){let R=""+s+" or "+i;throw new Error("invalid scalar, expected "+R+" bytes, got "+I)}return zt(a(p))}function m(x,p){let I=g(p),R=b(x),_=f(I,R);if(_===cr)throw new Error("invalid private or public key received");return d(_)}let h=d(t.Gu);function w(x){return m(x,h)}return{scalarMult:m,scalarMultBase:w,getSharedSecret:(x,p)=>m(x,p),getPublicKey:x=>w(x),utils:{randomPrivateKey:()=>t.randomBytes(t.nByteLength)},GuBytes:h}}var Ur=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),ac=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),F0=BigInt(0),kh=BigInt(1),cc=BigInt(2),Oh=BigInt(3),Mh=BigInt(5),Kh=BigInt(8);function lc(r){let t=BigInt(10),e=BigInt(20),n=BigInt(40),o=BigInt(80),s=Ur,a=r*r%s*r%s,c=at(a,cc,s)*a%s,l=at(c,kh,s)*r%s,u=at(l,Mh,s)*l%s,f=at(u,t,s)*u%s,d=at(f,e,s)*f%s,g=at(d,n,s)*d%s,b=at(g,o,s)*g%s,m=at(b,o,s)*g%s,h=at(m,t,s)*u%s;return{pow_p_5_8:at(h,cc,s)*r%s,b2:a}}function uc(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function Fh(r,t){let e=Ur,n=Z(t*t*t,e),o=Z(n*n*t,e),s=lc(r*o).pow_p_5_8,i=Z(r*n*s,e),a=Z(t*i*i,e),c=i,l=Z(i*ac,e),u=a===r,f=a===Z(-r,e),d=a===Z(-r*ac,e);return u&&(i=c),(f||d)&&(i=l),Qa(i,e)&&(i=Z(-i,e)),{isValid:u||f,value:i}}var Hh=ve(Ur,void 0,!0),Vh={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:Hh,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:Kh,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Xa,randomBytes:Rr,adjustScalarBytes:uc,uvRatio:Fh},fc=sc(Vh);var kr=ic({P:Ur,a:BigInt(486662),montgomeryBits:255,nByteLength:32,Gu:BigInt(9),powPminus2:r=>{let t=Ur,{pow_p_5_8:e,b2:n}=lc(r);return Z(at(e,Oh,t)*n,t)},adjustScalarBytes:uc,randomBytes:Rr});var Dn=32;function hc(r,t,e){return fc.verify(t,e instanceof Uint8Array?e:e.subarray(),r)}var Nn=class{type="Ed25519";raw;constructor(t){this.raw=Ss(t,Dn)}toMultihash(){return se.digest(lr(this))}toCID(){return bt.createV1(114,this.toMultihash())}toString(){return nt.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:Rt(this.raw,t.raw)}verify(t,e){return hc(this.raw,e,t)}};function As(r){return r=Ss(r,Dn),new Nn(r)}function Ss(r,t){if(r=Uint8Array.from(r??[]),r.length!==t)throw new rt(`Key must be a Uint8Array of length ${t}, got ${r.length}`);return r}function mt(r=0){return new Uint8Array(r)}function dt(r=0){return new Uint8Array(r)}var Gh=Math.pow(2,7),zh=Math.pow(2,14),Wh=Math.pow(2,21),vs=Math.pow(2,28),Is=Math.pow(2,35),Ts=Math.pow(2,42),Ls=Math.pow(2,49),j=128,It=127;function Q(r){if(r<Gh)return 1;if(r<zh)return 2;if(r<Wh)return 3;if(r<vs)return 4;if(r<Is)return 5;if(r<Ts)return 6;if(r<Ls)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function Bs(r,t,e=0){switch(Q(r)){case 8:t[e++]=r&255|j,r/=128;case 7:t[e++]=r&255|j,r/=128;case 6:t[e++]=r&255|j,r/=128;case 5:t[e++]=r&255|j,r/=128;case 4:t[e++]=r&255|j,r>>>=7;case 3:t[e++]=r&255|j,r>>>=7;case 2:t[e++]=r&255|j,r>>>=7;case 1:{t[e++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return t}function $h(r,t,e=0){switch(Q(r)){case 8:t.set(e++,r&255|j),r/=128;case 7:t.set(e++,r&255|j),r/=128;case 6:t.set(e++,r&255|j),r/=128;case 5:t.set(e++,r&255|j),r/=128;case 4:t.set(e++,r&255|j),r>>>=7;case 3:t.set(e++,r&255|j),r>>>=7;case 2:t.set(e++,r&255|j),r>>>=7;case 1:{t.set(e++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return t}function Cs(r,t){let e=r[t],n=0;if(n+=e&It,e<j||(e=r[t+1],n+=(e&It)<<7,e<j)||(e=r[t+2],n+=(e&It)<<14,e<j)||(e=r[t+3],n+=(e&It)<<21,e<j)||(e=r[t+4],n+=(e&It)*vs,e<j)||(e=r[t+5],n+=(e&It)*Is,e<j)||(e=r[t+6],n+=(e&It)*Ts,e<j)||(e=r[t+7],n+=(e&It)*Ls,e<j))return n;throw new RangeError("Could not decode varint")}function Xh(r,t){let e=r.get(t),n=0;if(n+=e&It,e<j||(e=r.get(t+1),n+=(e&It)<<7,e<j)||(e=r.get(t+2),n+=(e&It)<<14,e<j)||(e=r.get(t+3),n+=(e&It)<<21,e<j)||(e=r.get(t+4),n+=(e&It)*vs,e<j)||(e=r.get(t+5),n+=(e&It)*Is,e<j)||(e=r.get(t+6),n+=(e&It)*Ts,e<j)||(e=r.get(t+7),n+=(e&It)*Ls,e<j))return n;throw new RangeError("Could not decode varint")}function Ft(r,t,e=0){return t==null&&(t=dt(Q(r))),t instanceof Uint8Array?Bs(r,t,e):$h(r,t,e)}function Ut(r,t=0){return r instanceof Uint8Array?Cs(r,t):Xh(r,t)}var _s=new Float32Array([-0]),Ie=new Uint8Array(_s.buffer);function pc(r,t,e){_s[0]=r,t[e]=Ie[0],t[e+1]=Ie[1],t[e+2]=Ie[2],t[e+3]=Ie[3]}function mc(r,t){return Ie[0]=r[t],Ie[1]=r[t+1],Ie[2]=r[t+2],Ie[3]=r[t+3],_s[0]}var Rs=new Float64Array([-0]),Tt=new Uint8Array(Rs.buffer);function gc(r,t,e){Rs[0]=r,t[e]=Tt[0],t[e+1]=Tt[1],t[e+2]=Tt[2],t[e+3]=Tt[3],t[e+4]=Tt[4],t[e+5]=Tt[5],t[e+6]=Tt[6],t[e+7]=Tt[7]}function yc(r,t){return Tt[0]=r[t],Tt[1]=r[t+1],Tt[2]=r[t+2],Tt[3]=r[t+3],Tt[4]=r[t+4],Tt[5]=r[t+5],Tt[6]=r[t+6],Tt[7]=r[t+7],Rs[0]}var Zh=BigInt(Number.MAX_SAFE_INTEGER),Yh=BigInt(Number.MIN_SAFE_INTEGER),kt=class r{lo;hi;constructor(t,e){this.lo=t|0,this.hi=e|0}toNumber(t=!1){if(!t&&this.hi>>>31>0){let e=~this.lo+1>>>0,n=~this.hi>>>0;return e===0&&(n=n+1>>>0),-(e+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(t=!1){if(t)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let e=~this.lo+1>>>0,n=~this.hi>>>0;return e===0&&(n=n+1>>>0),-(BigInt(e)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(t=!1){return this.toBigInt(t).toString()}zzEncode(){let t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this}zzDecode(){let t=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this}length(){let t=this.lo,e=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?e===0?t<16384?t<128?1:2:t<2097152?3:4:e<16384?e<128?5:6:e<2097152?7:8:n<128?9:10}static fromBigInt(t){if(t===0n)return He;if(t<Zh&&t>Yh)return this.fromNumber(Number(t));let e=t<0n;e&&(t=-t);let n=t>>32n,o=t-(n<<32n);return e&&(n=~n|0n,o=~o|0n,++o>wc&&(o=0n,++n>wc&&(n=0n))),new r(Number(o),Number(n))}static fromNumber(t){if(t===0)return He;let e=t<0;e&&(t=-t);let n=t>>>0,o=(t-n)/4294967296>>>0;return e&&(o=~o>>>0,n=~n>>>0,++n>4294967295&&(n=0,++o>4294967295&&(o=0))),new r(n,o)}static from(t){return typeof t=="number"?r.fromNumber(t):typeof t=="bigint"?r.fromBigInt(t):typeof t=="string"?r.fromBigInt(BigInt(t)):t.low!=null||t.high!=null?new r(t.low>>>0,t.high>>>0):He}},He=new kt(0,0);He.toBigInt=function(){return 0n};He.zzEncode=He.zzDecode=function(){return this};He.length=function(){return 1};var wc=4294967296n;function bc(r){let t=0,e=0;for(let n=0;n<r.length;++n)e=r.charCodeAt(n),e<128?t+=1:e<2048?t+=2:(e&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,t+=4):t+=3;return t}function xc(r,t,e){if(e-t<1)return"";let o,s=[],i=0,a;for(;t<e;)a=r[t++],a<128?s[i++]=a:a>191&&a<224?s[i++]=(a&31)<<6|r[t++]&63:a>239&&a<365?(a=((a&7)<<18|(r[t++]&63)<<12|(r[t++]&63)<<6|r[t++]&63)-65536,s[i++]=55296+(a>>10),s[i++]=56320+(a&1023)):s[i++]=(a&15)<<12|(r[t++]&63)<<6|r[t++]&63,i>8191&&((o??(o=[])).push(String.fromCharCode.apply(String,s)),i=0);return o!=null?(i>0&&o.push(String.fromCharCode.apply(String,s.slice(0,i))),o.join("")):String.fromCharCode.apply(String,s.slice(0,i))}function Ps(r,t,e){let n=e,o,s;for(let i=0;i<r.length;++i)o=r.charCodeAt(i),o<128?t[e++]=o:o<2048?(t[e++]=o>>6|192,t[e++]=o&63|128):(o&64512)===55296&&((s=r.charCodeAt(i+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++i,t[e++]=o>>18|240,t[e++]=o>>12&63|128,t[e++]=o>>6&63|128,t[e++]=o&63|128):(t[e++]=o>>12|224,t[e++]=o>>6&63|128,t[e++]=o&63|128);return e-n}function $t(r,t){return RangeError(`index out of range: ${r.pos} + ${t??1} > ${r.len}`)}function Un(r,t){return(r[t-4]|r[t-3]<<8|r[t-2]<<16|r[t-1]<<24)>>>0}var Ds=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(t){this.buf=t,this.pos=0,this.len=t.length}uint32(){let t=4294967295;if(t=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(t=(t|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(t=(t|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return t;if((this.pos+=5)>this.len)throw this.pos=this.len,$t(this,10);return t}int32(){return this.uint32()|0}sint32(){let t=this.uint32();return t>>>1^-(t&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw $t(this,4);return Un(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw $t(this,4);return Un(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw $t(this,4);let t=mc(this.buf,this.pos);return this.pos+=4,t}double(){if(this.pos+8>this.len)throw $t(this,4);let t=yc(this.buf,this.pos);return this.pos+=8,t}bytes(){let t=this.uint32(),e=this.pos,n=this.pos+t;if(n>this.len)throw $t(this,t);return this.pos+=t,e===n?new Uint8Array(0):this.buf.subarray(e,n)}string(){let t=this.bytes();return xc(t,0,t.length)}skip(t){if(typeof t=="number"){if(this.pos+t>this.len)throw $t(this,t);this.pos+=t}else do if(this.pos>=this.len)throw $t(this);while((this.buf[this.pos++]&128)!==0);return this}skipType(t){switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(t=this.uint32()&7)!==4;)this.skipType(t);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${t} at offset ${this.pos}`)}return this}readLongVarint(){let t=new kt(0,0),e=0;if(this.len-this.pos>4){for(;e<4;++e)if(t.lo=(t.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return t;if(t.lo=(t.lo|(this.buf[this.pos]&127)<<28)>>>0,t.hi=(t.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return t;e=0}else{for(;e<3;++e){if(this.pos>=this.len)throw $t(this);if(t.lo=(t.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return t}return t.lo=(t.lo|(this.buf[this.pos++]&127)<<e*7)>>>0,t}if(this.len-this.pos>4){for(;e<5;++e)if(t.hi=(t.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return t}else for(;e<5;++e){if(this.pos>=this.len)throw $t(this);if(t.hi=(t.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return t}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw $t(this,8);let t=Un(this.buf,this.pos+=4),e=Un(this.buf,this.pos+=4);return new kt(t,e)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let t=Cs(this.buf,this.pos);return this.pos+=Q(t),t}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}};function Ns(r){return new Ds(r instanceof Uint8Array?r:r.subarray())}function Xt(r,t,e){let n=Ns(r);return t.decode(n,void 0,e)}var Us={};At(Us,{base10:()=>jh});var jh=ye({prefix:"9",name:"base10",alphabet:"0123456789"});var ks={};At(ks,{base16:()=>Jh,base16upper:()=>Qh});var Jh=ft({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Qh=ft({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var Os={};At(Os,{base2:()=>td});var td=ft({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var Ms={};At(Ms,{base256emoji:()=>sd});var Sc=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}"),ed=Sc.reduce((r,t,e)=>(r[e]=t,r),[]),rd=Sc.reduce((r,t,e)=>{let n=t.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${t}`);return r[n]=e,r},[]);function nd(r){return r.reduce((t,e)=>(t+=ed[e],t),"")}function od(r){let t=[];for(let e of r){let n=e.codePointAt(0);if(n==null)throw new Error(`Invalid character: ${e}`);let o=rd[n];if(o==null)throw new Error(`Non-base256emoji character: ${e}`);t.push(o)}return new Uint8Array(t)}var sd=tr({prefix:"\u{1F680}",name:"base256emoji",encode:nd,decode:od});var Ks={};At(Ks,{base64:()=>id,base64pad:()=>ad,base64url:()=>Or,base64urlpad:()=>cd});var id=ft({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),ad=ft({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),Or=ft({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),cd=ft({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var Fs={};At(Fs,{base8:()=>ld});var ld=ft({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var Hs={};At(Hs,{identity:()=>ud});var ud=tr({prefix:"\0",name:"identity",encode:r=>Ra(r),decode:r=>_a(r)});var Sg=new TextEncoder,Ag=new TextDecoder;var Gs={};At(Gs,{sha256:()=>fe,sha512:()=>dd});function qs({name:r,code:t,encode:e}){return new Vs(r,t,e)}var Vs=class{name;code;encode;constructor(t,e,n){this.name=t,this.code=e,this.encode=n}digest(t){if(t instanceof Uint8Array){let e=this.encode(t);return e instanceof Uint8Array?vt(this.code,e):e.then(n=>vt(this.code,n))}else throw Error("Unknown type, must be binary type")}};function vc(r){return async t=>new Uint8Array(await crypto.subtle.digest(r,t))}var fe=qs({name:"sha2-256",code:18,encode:vc("SHA-256")}),dd=qs({name:"sha2-512",code:19,encode:vc("SHA-512")});var Ve={...Hs,...Os,...Fs,...Us,...ks,...Jo,...Qo,...jo,...Ks,...Ms},Ug={...Gs,...ns};function Tc(r,t,e,n){return{name:r,prefix:t,encoder:{name:r,prefix:t,encode:e},decoder:{decode:n}}}var Ic=Tc("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),zs=Tc("ascii","a",r=>{let t="a";for(let e=0;e<r.length;e++)t+=String.fromCharCode(r[e]);return t},r=>{r=r.substring(1);let t=dt(r.length);for(let e=0;e<r.length;e++)t[e]=r.charCodeAt(e);return t}),pd={utf8:Ic,"utf-8":Ic,hex:Ve.base16,latin1:zs,ascii:zs,binary:zs,...Ve},kn=pd;function J(r,t="utf8"){let e=kn[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return e.decoder.decode(`${e.prefix}${r}`)}function Ws(r){let t=r??8192,e=t>>>1,n,o=t;return function(i){if(i<1||i>e)return dt(i);o+i>t&&(n=dt(t),o=0);let a=n.subarray(o,o+=i);return(o&7)!==0&&(o=(o|7)+1),a}}var qe=class{fn;len;next;val;constructor(t,e,n){this.fn=t,this.len=e,this.next=void 0,this.val=n}};function $s(){}var Zs=class{head;tail;len;next;constructor(t){this.head=t.head,this.tail=t.tail,this.len=t.len,this.next=t.states}},md=Ws();function gd(r){return globalThis.Buffer!=null?dt(r):md(r)}var Kr=class{len;head;tail;states;constructor(){this.len=0,this.head=new qe($s,0,0),this.tail=this.head,this.states=null}_push(t,e,n){return this.tail=this.tail.next=new qe(t,e,n),this.len+=e,this}uint32(t){return this.len+=(this.tail=this.tail.next=new Ys((t=t>>>0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this}int32(t){return t<0?this._push(On,10,kt.fromNumber(t)):this.uint32(t)}sint32(t){return this.uint32((t<<1^t>>31)>>>0)}uint64(t){let e=kt.fromBigInt(t);return this._push(On,e.length(),e)}uint64Number(t){return this._push(Bs,Q(t),t)}uint64String(t){return this.uint64(BigInt(t))}int64(t){return this.uint64(t)}int64Number(t){return this.uint64Number(t)}int64String(t){return this.uint64String(t)}sint64(t){let e=kt.fromBigInt(t).zzEncode();return this._push(On,e.length(),e)}sint64Number(t){let e=kt.fromNumber(t).zzEncode();return this._push(On,e.length(),e)}sint64String(t){return this.sint64(BigInt(t))}bool(t){return this._push(Xs,1,t?1:0)}fixed32(t){return this._push(Mr,4,t>>>0)}sfixed32(t){return this.fixed32(t)}fixed64(t){let e=kt.fromBigInt(t);return this._push(Mr,4,e.lo)._push(Mr,4,e.hi)}fixed64Number(t){let e=kt.fromNumber(t);return this._push(Mr,4,e.lo)._push(Mr,4,e.hi)}fixed64String(t){return this.fixed64(BigInt(t))}sfixed64(t){return this.fixed64(t)}sfixed64Number(t){return this.fixed64Number(t)}sfixed64String(t){return this.fixed64String(t)}float(t){return this._push(pc,4,t)}double(t){return this._push(gc,8,t)}bytes(t){let e=t.length>>>0;return e===0?this._push(Xs,1,0):this.uint32(e)._push(wd,e,t)}string(t){let e=bc(t);return e!==0?this.uint32(e)._push(Ps,e,t):this._push(Xs,1,0)}fork(){return this.states=new Zs(this),this.head=this.tail=new qe($s,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 qe($s,0,0),this.len=0),this}ldelim(){let t=this.head,e=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=t.next,this.tail=e,this.len+=n),this}finish(){let t=this.head.next,e=gd(this.len),n=0;for(;t!=null;)t.fn(t.val,e,n),n+=t.len,t=t.next;return e}};function Xs(r,t,e){t[e]=r&255}function yd(r,t,e){for(;r>127;)t[e++]=r&127|128,r>>>=7;t[e]=r}var Ys=class extends qe{next;constructor(t,e){super(yd,t,e),this.next=void 0}};function On(r,t,e){for(;r.hi!==0;)t[e++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)t[e++]=r.lo&127|128,r.lo=r.lo>>>7;t[e++]=r.lo}function Mr(r,t,e){t[e]=r&255,t[e+1]=r>>>8&255,t[e+2]=r>>>16&255,t[e+3]=r>>>24}function wd(r,t,e){t.set(r,e)}globalThis.Buffer!=null&&(Kr.prototype.bytes=function(r){let t=r.length>>>0;return this.uint32(t),t>0&&this._push(bd,t,r),this},Kr.prototype.string=function(r){let t=globalThis.Buffer.byteLength(r);return this.uint32(t),t>0&&this._push(xd,t,r),this});function bd(r,t,e){t.set(r,e)}function xd(r,t,e){r.length<40?Ps(r,t,e):t.utf8Write!=null?t.utf8Write(r,e):t.set(J(r),e)}function js(){return new Kr}function Zt(r,t){let e=js();return t.encode(r,e,{lengthDelimited:!1}),e.finish()}var ur;(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"})(ur||(ur={}));function Mn(r,t,e,n){return{name:r,type:t,encode:e,decode:n}}function Ge(r){function t(o){if(r[o.toString()]==null)throw new Error("Invalid enum value");return r[o]}let e=function(s,i){let a=t(s);i.int32(a)},n=function(s){let i=s.int32();return t(i)};return Mn("enum",ur.VARINT,e,n)}function Yt(r,t){return Mn("message",ur.LENGTH_DELIMITED,r,t)}var gt;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.secp256k1="secp256k1"})(gt||(gt={}));var Js;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.secp256k1=2]="secp256k1"})(Js||(Js={}));(function(r){r.codec=()=>Ge(Js)})(gt||(gt={}));var Qt;(function(r){let t;r.codec=()=>(t==null&&(t=Yt((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.Type!=null&&(n.uint32(8),gt.codec().encode(e.Type,n)),e.Data!=null&&(n.uint32(18),n.bytes(e.Data)),o.lengthDelimited!==!1&&n.ldelim()},(e,n,o={})=>{let s={},i=n==null?e.len:e.pos+n;for(;e.pos<i;){let a=e.uint32();switch(a>>>3){case 1:{s.Type=gt.codec().decode(e);break}case 2:{s.Data=e.bytes();break}default:{e.skipType(a&7);break}}}return s})),t),r.encode=e=>Zt(e,r.codec()),r.decode=(e,n)=>Xt(e,r.codec(),n)})(Qt||(Qt={}));var Qs;(function(r){let t;r.codec=()=>(t==null&&(t=Yt((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.Type!=null&&(n.uint32(8),gt.codec().encode(e.Type,n)),e.Data!=null&&(n.uint32(18),n.bytes(e.Data)),o.lengthDelimited!==!1&&n.ldelim()},(e,n,o={})=>{let s={},i=n==null?e.len:e.pos+n;for(;e.pos<i;){let a=e.uint32();switch(a>>>3){case 1:{s.Type=gt.codec().decode(e);break}case 2:{s.Data=e.bytes();break}default:{e.skipType(a&7);break}}}return s})),t),r.encode=e=>Zt(e,r.codec()),r.decode=(e,n)=>Xt(e,r.codec(),n)})(Qs||(Qs={}));var Vr={};At(Vr,{MAX_RSA_KEY_SIZE:()=>oi,generateRSAKeyPair:()=>Hc,jwkToJWKKeyPair:()=>Vc,jwkToPkcs1:()=>Dd,jwkToPkix:()=>ii,jwkToRSAPrivateKey:()=>Fc,pkcs1ToJwk:()=>Oc,pkcs1ToRSAPrivateKey:()=>Kc,pkixToJwk:()=>Mc,pkixToRSAPublicKey:()=>ai});var Ed=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]),Te=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),Le=new Uint32Array(64),ti=class extends ir{constructor(){super(64,32,8,!1),this.A=Te[0]|0,this.B=Te[1]|0,this.C=Te[2]|0,this.D=Te[3]|0,this.E=Te[4]|0,this.F=Te[5]|0,this.G=Te[6]|0,this.H=Te[7]|0}get(){let{A:t,B:e,C:n,D:o,E:s,F:i,G:a,H:c}=this;return[t,e,n,o,s,i,a,c]}set(t,e,n,o,s,i,a,c){this.A=t|0,this.B=e|0,this.C=n|0,this.D=o|0,this.E=s|0,this.F=i|0,this.G=a|0,this.H=c|0}process(t,e){for(let f=0;f<16;f++,e+=4)Le[f]=t.getUint32(e,!1);for(let f=16;f<64;f++){let d=Le[f-15],g=Le[f-2],b=qt(d,7)^qt(d,18)^d>>>3,m=qt(g,17)^qt(g,19)^g>>>10;Le[f]=m+Le[f-7]+b+Le[f-16]|0}let{A:n,B:o,C:s,D:i,E:a,F:c,G:l,H:u}=this;for(let f=0;f<64;f++){let d=qt(a,6)^qt(a,11)^qt(a,25),g=u+d+za(a,c,l)+Ed[f]+Le[f]|0,m=(qt(n,2)^qt(n,13)^qt(n,22))+Wa(n,o,s)|0;u=l,l=c,c=a,a=i+g|0,i=s,s=o,o=n,n=g+m|0}n=n+this.A|0,o=o+this.B|0,s=s+this.C|0,i=i+this.D|0,a=a+this.E|0,c=c+this.F|0,l=l+this.G|0,u=u+this.H|0,this.set(n,o,s,i,a,c,l,u)}roundClean(){Le.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var te=An(()=>new ti);function q(r,t="utf8"){let e=kn[t];if(e==null)throw new Error(`Unsupported encoding "${t}"`);return e.encoder.encode(r).substring(1)}function yt(r,t){t==null&&(t=r.reduce((o,s)=>o+s.length,0));let e=dt(t),n=0;for(let o of r)e.set(o,n),n+=o.length;return e}var Cc=Symbol.for("@achingbrain/uint8arraylist");function Bc(r,t){if(t==null||t<0)throw new RangeError("index is out of bounds");let e=0;for(let n of r){let o=e+n.byteLength;if(t<o)return{buf:n,index:t-e};e=o}throw new RangeError("index is out of bounds")}function Kn(r){return!!r?.[Cc]}var z=class r{bufs;length;[Cc]=!0;constructor(...t){this.bufs=[],this.length=0,t.length>0&&this.appendAll(t)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...t){this.appendAll(t)}appendAll(t){let e=0;for(let n of t)if(n instanceof Uint8Array)e+=n.byteLength,this.bufs.push(n);else if(Kn(n))e+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=e}prepend(...t){this.prependAll(t)}prependAll(t){let e=0;for(let n of t.reverse())if(n instanceof Uint8Array)e+=n.byteLength,this.bufs.unshift(n);else if(Kn(n))e+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=e}get(t){let e=Bc(this.bufs,t);return e.buf[e.index]}set(t,e){let n=Bc(this.bufs,t);n.buf[n.index]=e}write(t,e=0){if(t instanceof Uint8Array)for(let n=0;n<t.length;n++)this.set(e+n,t[n]);else if(Kn(t))for(let n=0;n<t.length;n++)this.set(e+n,t.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(t){if(t=Math.trunc(t),!(Number.isNaN(t)||t<=0)){if(t===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(t>=this.bufs[0].byteLength)t-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(t),this.length-=t;break}}}slice(t,e){let{bufs:n,length:o}=this._subList(t,e);return yt(n,o)}subarray(t,e){let{bufs:n,length:o}=this._subList(t,e);return n.length===1?n[0]:yt(n,o)}sublist(t,e){let{bufs:n,length:o}=this._subList(t,e),s=new r;return s.length=o,s.bufs=[...n],s}_subList(t,e){if(t=t??0,e=e??this.length,t<0&&(t=this.length+t),e<0&&(e=this.length+e),t<0||e>this.length)throw new RangeError("index is out of bounds");if(t===e)return{bufs:[],length:0};if(t===0&&e===this.length)return{bufs:this.bufs,length:this.length};let n=[],o=0;for(let s=0;s<this.bufs.length;s++){let i=this.bufs[s],a=o,c=a+i.byteLength;if(o=c,t>=c)continue;let l=t>=a&&t<c,u=e>a&&e<=c;if(l&&u){if(t===a&&e===c){n.push(i);break}let f=t-a;n.push(i.subarray(f,f+(e-t)));break}if(l){if(t===0){n.push(i);continue}n.push(i.subarray(t-a));continue}if(u){if(e===c){n.push(i);break}n.push(i.subarray(0,e-a));break}n.push(i)}return{bufs:n,length:e-t}}indexOf(t,e=0){if(!Kn(t)&&!(t instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=t instanceof Uint8Array?t:t.subarray();if(e=Number(e??0),isNaN(e)&&(e=0),e<0&&(e=this.length+e),e<0&&(e=0),t.length===0)return e>this.length?this.length:e;let o=n.byteLength;if(o===0)throw new TypeError("search must be at least 1 byte long");let s=256,i=new Int32Array(s);for(let f=0;f<s;f++)i[f]=-1;for(let f=0;f<o;f++)i[n[f]]=f;let a=i,c=this.byteLength-n.byteLength,l=n.byteLength-1,u;for(let f=e;f<=c;f+=u){u=0;for(let d=l;d>=0;d--){let g=this.get(f+d);if(n[d]!==g){u=Math.max(1,d-a[g]);break}}if(u===0)return f}return-1}getInt8(t){let e=this.subarray(t,t+1);return new DataView(e.buffer,e.byteOffset,e.byteLength).getInt8(0)}setInt8(t,e){let n=dt(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,e),this.write(n,t)}getInt16(t,e){let n=this.subarray(t,t+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,e)}setInt16(t,e,n){let o=mt(2);new DataView(o.buffer,o.byteOffset,o.byteLength).setInt16(0,e,n),this.write(o,t)}getInt32(t,e){let n=this.subarray(t,t+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,e)}setInt32(t,e,n){let o=mt(4);new DataView(o.buffer,o.byteOffset,o.byteLength).setInt32(0,e,n),this.write(o,t)}getBigInt64(t,e){let n=this.subarray(t,t+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,e)}setBigInt64(t,e,n){let o=mt(8);new DataView(o.buffer,o.byteOffset,o.byteLength).setBigInt64(0,e,n),this.write(o,t)}getUint8(t){let e=this.subarray(t,t+1);return new DataView(e.buffer,e.byteOffset,e.byteLength).getUint8(0)}setUint8(t,e){let n=dt(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,e),this.write(n,t)}getUint16(t,e){let n=this.subarray(t,t+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,e)}setUint16(t,e,n){let o=mt(2);new DataView(o.buffer,o.byteOffset,o.byteLength).setUint16(0,e,n),this.write(o,t)}getUint32(t,e){let n=this.subarray(t,t+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,e)}setUint32(t,e,n){let o=mt(4);new DataView(o.buffer,o.byteOffset,o.byteLength).setUint32(0,e,n),this.write(o,t)}getBigUint64(t,e){let n=this.subarray(t,t+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,e)}setBigUint64(t,e,n){let o=mt(8);new DataView(o.buffer,o.byteOffset,o.byteLength).setBigUint64(0,e,n),this.write(o,t)}getFloat32(t,e){let n=this.subarray(t,t+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,e)}setFloat32(t,e,n){let o=mt(4);new DataView(o.buffer,o.byteOffset,o.byteLength).setFloat32(0,e,n),this.write(o,t)}getFloat64(t,e){let n=this.subarray(t,t+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,e)}setFloat64(t,e,n){let o=mt(8);new DataView(o.buffer,o.byteOffset,o.byteLength).setFloat64(0,e,n),this.write(o,t)}equals(t){if(t==null||!(t instanceof r)||t.bufs.length!==this.bufs.length)return!1;for(let e=0;e<this.bufs.length;e++)if(!Rt(this.bufs[e],t.bufs[e]))return!1;return!0}static fromUint8Arrays(t,e){let n=new r;return n.bufs=t,e==null&&(e=t.reduce((o,s)=>o+s.byteLength,0)),n.length=e,n}};var Ad=parseInt("11111",2),ri=parseInt("10000000",2),vd=parseInt("01111111",2),_c={2:Id,3:Bd,5:Ld,6:Td,16:ei,22:ei,48:ei};function Fr(r,t={offset:0}){let e=r[t.offset]&Ad;if(t.offset++,_c[e]!=null)return _c[e](r,t);throw new Error("No decoder for tag "+e)}function Fn(r,t){let e=0;if((r[t.offset]&ri)===ri){let n=r[t.offset]&vd,o="0x";t.offset++;for(let s=0;s<n;s++,t.offset++)o+=r[t.offset].toString(16).padStart(2,"0");e=parseInt(o,16)}else e=r[t.offset],t.offset++;return e}function ei(r,t){Fn(r,t);let e=[];for(;!(t.offset>=r.byteLength);){let n=Fr(r,t);if(n===null)break;e.push(n)}return e}function Id(r,t){let e=Fn(r,t),n=t.offset,o=t.offset+e,s=[];for(let i=n;i<o;i++)i===n&&r[i]===0||s.push(r[i]);return t.offset+=e,Uint8Array.from(s)}function Td(r,t){let e=Fn(r,t);return t.offset+=e,["oid-unimplemented"]}function Ld(r,t){return t.offset++,null}function Bd(r,t){let e=Fn(r,t),n=r[t.offset];t.offset++;let o=r.subarray(t.offset,t.offset+e);if(t.offset+=e,n!==0)throw new Error("Unused bits in bit string is unimplemented");return Fr(o,{offset:0})}function Cd(r){let t=r.toString(16);t.length%2===1&&(t="0"+t);let e=new z;for(let n=0;n<t.length;n+=2)e.append(Uint8Array.from([parseInt(`${t[n]}${t[n+1]}`,16)]));return e}function ni(r){if(r.byteLength<128)return Uint8Array.from([r.byteLength]);let t=Cd(r.byteLength);return new z(Uint8Array.from([t.byteLength|ri]),t)}function Ht(r){let t=new z,e=parseInt("10000000",2);return(r.subarray()[0]&e)===e&&t.append(Uint8Array.from([0])),t.append(r),new z(Uint8Array.from([2]),ni(t),t)}function Rc(r){let t=Uint8Array.from([0]),e=new z(t,r);return new z(Uint8Array.from([3]),ni(e),e)}function Hn(r){let t=new z;for(let e of r)t.append(e);return new z(Uint8Array.from([48]),ni(t),t)}var Hr=class extends Error{constructor(t="An error occurred while verifying a message"){super(t),this.name="VerificationError"}},Vn=class extends Error{constructor(t="Missing Web Crypto API"){super(t),this.name="WebCryptoMissingError"}};var Pc={get(r=globalThis){let t=r.crypto;if(t?.subtle==null)throw new Vn("Missing Web Crypto API. The most likely cause of this error is that this page is being accessed from an insecure context (i.e. not HTTPS). For more information and possible resolutions see https://github.com/libp2p/js-libp2p/blob/main/packages/crypto/README.md#web-crypto-api");return t}};var Be=Pc;async function Dc(r){let t=await Be.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),e=await _d(t);return{privateKey:e[0],publicKey:e[1]}}async function Nc(r,t){let e=await Be.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await Be.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},e,t instanceof Uint8Array?t:t.subarray());return new Uint8Array(n,0,n.byteLength)}async function Uc(r,t,e){let n=await Be.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return Be.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,t,e instanceof Uint8Array?e:e.subarray())}async function _d(r){if(r.privateKey==null||r.publicKey==null)throw new rt("Private and public key are required");return Promise.all([Be.get().subtle.exportKey("jwk",r.privateKey),Be.get().subtle.exportKey("jwk",r.publicKey)])}function kc(r){if(r.kty!=="RSA")throw new rt("invalid key type");if(r.n==null)throw new rt("invalid key modulus");return J(r.n,"base64url").length*8}var fr=class{type="RSA";_key;_raw;_multihash;constructor(t,e){this._key=t,this._multihash=e}get raw(){return this._raw==null&&(this._raw=Vr.jwkToPkix(this._key)),this._raw}toMultihash(){return this._multihash}toCID(){return bt.createV1(114,this._multihash)}toString(){return nt.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:Rt(this.raw,t.raw)}verify(t,e){return Uc(this._key,e,t)}},qr=class{type="RSA";_key;_raw;publicKey;constructor(t,e){this._key=t,this.publicKey=e}get raw(){return this._raw==null&&(this._raw=Vr.jwkToPkcs1(this._key)),this._raw}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:Rt(this.raw,t.raw)}sign(t){return Nc(this._key,t)}};var oi=8192,si=18,Rd=1062,Pd=Uint8Array.from([48,13,6,9,42,134,72,134,247,13,1,1,1,5,0]);function Oc(r){let t=Fr(r);return{n:q(t[1],"base64url"),e:q(t[2],"base64url"),d:q(t[3],"base64url"),p:q(t[4],"base64url"),q:q(t[5],"base64url"),dp:q(t[6],"base64url"),dq:q(t[7],"base64url"),qi:q(t[8],"base64url"),kty:"RSA"}}function Dd(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 rt("JWK was missing components");return Hn([Ht(Uint8Array.from([0])),Ht(J(r.n,"base64url")),Ht(J(r.e,"base64url")),Ht(J(r.d,"base64url")),Ht(J(r.p,"base64url")),Ht(J(r.q,"base64url")),Ht(J(r.dp,"base64url")),Ht(J(r.dq,"base64url")),Ht(J(r.qi,"base64url"))]).subarray()}function Mc(r){let t=Fr(r,{offset:0});return{kty:"RSA",n:q(t[1][0],"base64url"),e:q(t[1][1],"base64url")}}function ii(r){if(r.n==null||r.e==null)throw new rt("JWK was missing components");return Hn([Pd,Rc(Hn([Ht(J(r.n,"base64url")),Ht(J(r.e,"base64url"))]))]).subarray()}function Kc(r){let t=Oc(r);return Fc(t)}function ai(r,t){if(r.byteLength>=Rd)throw new je("Key size is too large");let e=Mc(r);if(t==null){let n=te(Qt.encode({Type:gt.RSA,Data:r}));t=vt(si,n)}return new fr(e,t)}function Fc(r){if(kc(r)>oi)throw new rt("Key size is too large");let t=Vc(r),e=te(Qt.encode({Type:gt.RSA,Data:ii(t.publicKey)})),n=vt(si,e);return new qr(t.privateKey,new fr(t.publicKey,n))}async function Hc(r){if(r>oi)throw new rt("Key size is too large");let t=await Dc(r),e=te(Qt.encode({Type:gt.RSA,Data:ii(t.publicKey)})),n=vt(si,e);return new qr(t.privateKey,new fr(t.publicKey,n))}function Vc(r){if(r==null)throw new rt("Missing key parameter");return{privateKey:r,publicKey:{kty:r.kty,n:r.n,e:r.e}}}var qn=class extends sr{constructor(t,e){super(),this.finished=!1,this.destroyed=!1,_r(t);let n=be(e);if(this.iHash=t.create(),typeof this.iHash.update!="function")throw new Error("Expected instance of class which extends utils.Hash");this.blockLen=this.iHash.blockLen,this.outputLen=this.iHash.outputLen;let o=this.blockLen,s=new Uint8Array(o);s.set(n.length>o?t.create().update(n).digest():n);for(let i=0;i<s.length;i++)s[i]^=54;this.iHash.update(s),this.oHash=t.create();for(let i=0;i<s.length;i++)s[i]^=106;this.oHash.update(s),s.fill(0)}update(t){return or(this),this.iHash.update(t),this}digestInto(t){or(this),nr(t,this.outputLen),this.finished=!0,this.iHash.digestInto(t),this.oHash.update(t),this.oHash.digestInto(t),this.destroy()}digest(){let t=new Uint8Array(this.oHash.outputLen);return this.digestInto(t),t}_cloneInto(t){t||(t=Object.create(Object.getPrototypeOf(this),{}));let{oHash:e,iHash:n,finished:o,destroyed:s,blockLen:i,outputLen:a}=this;return t=t,t.finished=o,t.destroyed=s,t.blockLen=i,t.outputLen=a,t.oHash=e._cloneInto(t.oHash),t.iHash=n._cloneInto(t.iHash),t}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},hr=(r,t,e)=>new qn(r,t).update(e).digest();hr.create=(r,t)=>new qn(r,t);function qc(r){r.lowS!==void 0&&Gt("lowS",r.lowS),r.prehash!==void 0&&Gt("prehash",r.prehash)}function Nd(r){let t=Nr(r);Kt(t,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:e,Fp:n,a:o}=t;if(e){if(!n.eql(o,n.ZERO))throw new Error("invalid endomorphism, can only be defined for Koblitz curves that have a=0");if(typeof e!="object"||typeof e.beta!="bigint"||typeof e.splitScalar!="function")throw new Error("invalid endomorphism, expected beta: bigint and splitScalar: function")}return Object.freeze({...t})}var{bytesToNumberBE:Ud,hexToBytes:kd}=Ln,ci=class extends Error{constructor(t=""){super(t)}},he={Err:ci,_tlv:{encode:(r,t)=>{let{Err:e}=he;if(r<0||r>256)throw new e("tlv.encode: wrong tag");if(t.length&1)throw new e("tlv.encode: unpadded data");let n=t.length/2,o=ke(n);if(o.length/2&128)throw new e("tlv.encode: long form length too big");let s=n>127?ke(o.length/2|128):"";return ke(r)+s+o+t},decode(r,t){let{Err:e}=he,n=0;if(r<0||r>256)throw new e("tlv.encode: wrong tag");if(t.length<2||t[n++]!==r)throw new e("tlv.decode: wrong tlv");let o=t[n++],s=!!(o&128),i=0;if(!s)i=o;else{let c=o&127;if(!c)throw new e("tlv.decode(long): indefinite length not supported");if(c>4)throw new e("tlv.decode(long): byte length is too big");let l=t.subarray(n,n+c);if(l.length!==c)throw new e("tlv.decode: length bytes not complete");if(l[0]===0)throw new e("tlv.decode(long): zero leftmost byte");for(let u of l)i=i<<8|u;if(n+=c,i<128)throw new e("tlv.decode(long): not minimal encoding")}let a=t.subarray(n,n+i);if(a.length!==i)throw new e("tlv.decode: wrong value length");return{v:a,l:t.subarray(n+i)}}},_int:{encode(r){let{Err:t}=he;if(r<de)throw new t("integer: negative integers are not allowed");let e=ke(r);if(Number.parseInt(e[0],16)&8&&(e="00"+e),e.length&1)throw new t("unexpected DER parsing assertion: unpadded hex");return e},decode(r){let{Err:t}=he;if(r[0]&128)throw new t("invalid signature integer: negative");if(r[0]===0&&!(r[1]&128))throw new t("invalid signature integer: unnecessary leading zero");return Ud(r)}},toSig(r){let{Err:t,_int:e,_tlv:n}=he,o=typeof r=="string"?kd(r):r;ar(o);let{v:s,l:i}=n.decode(48,o);if(i.length)throw new t("invalid signature: left bytes after parsing");let{v:a,l:c}=n.decode(2,s),{v:l,l:u}=n.decode(2,c);if(u.length)throw new t("invalid signature: left bytes after parsing");return{r:e.decode(a),s:e.decode(l)}},hexFromSig(r){let{_tlv:t,_int:e}=he,n=t.encode(2,e.encode(r.r)),o=t.encode(2,e.encode(r.s)),s=n+o;return t.encode(48,s)}},de=BigInt(0),wt=BigInt(1),rw=BigInt(2),Gc=BigInt(3),nw=BigInt(4);function Od(r){let t=Nd(r),{Fp:e}=t,n=ve(t.n,t.nBitLength),o=t.toBytes||((m,h,w)=>{let x=h.toAffine();return ue(Uint8Array.from([4]),e.toBytes(x.x),e.toBytes(x.y))}),s=t.fromBytes||(m=>{let h=m.subarray(1),w=e.fromBytes(h.subarray(0,e.BYTES)),x=e.fromBytes(h.subarray(e.BYTES,2*e.BYTES));return{x:w,y:x}});function i(m){let{a:h,b:w}=t,x=e.sqr(m),p=e.mul(x,m);return e.add(e.add(p,e.mul(m,h)),w)}if(!e.eql(e.sqr(t.Gy),i(t.Gx)))throw new Error("bad generator point: equation left != right");function a(m){return Pr(m,wt,t.n)}function c(m){let{allowedPrivateKeyLengths:h,nByteLength:w,wrapPrivateKey:x,n:p}=t;if(h&&typeof m!="bigint"){if(Se(m)&&(m=ae(m)),typeof m!="string"||!h.includes(m.length))throw new Error("invalid private key");m=m.padStart(w*2,"0")}let I;try{I=typeof m=="bigint"?m:ce(ot("private key",m,w))}catch{throw new Error("invalid private key, expected hex or "+w+" bytes, got "+typeof m)}return x&&(I=Z(I,p)),xt("private key",I,wt,p),I}function l(m){if(!(m instanceof d))throw new Error("ProjectivePoint expected")}let u=Me((m,h)=>{let{px:w,py:x,pz:p}=m;if(e.eql(p,e.ONE))return{x:w,y:x};let I=m.is0();h==null&&(h=I?e.ONE:e.inv(p));let R=e.mul(w,h),_=e.mul(x,h),v=e.mul(p,h);if(I)return{x:e.ZERO,y:e.ZERO};if(!e.eql(v,e.ONE))throw new Error("invZ was invalid");return{x:R,y:_}}),f=Me(m=>{if(m.is0()){if(t.allowInfinityPoint&&!e.is0(m.py))return;throw new Error("bad point: ZERO")}let{x:h,y:w}=m.toAffine();if(!e.isValid(h)||!e.isValid(w))throw new Error("bad point: x or y not FE");let x=e.sqr(w),p=i(h);if(!e.eql(x,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 d{constructor(h,w,x){if(this.px=h,this.py=w,this.pz=x,h==null||!e.isValid(h))throw new Error("x required");if(w==null||!e.isValid(w))throw new Error("y required");if(x==null||!e.isValid(x))throw new Error("z required");Object.freeze(this)}static fromAffine(h){let{x:w,y:x}=h||{};if(!h||!e.isValid(w)||!e.isValid(x))throw new Error("invalid affine point");if(h instanceof d)throw new Error("projective point not allowed");let p=I=>e.eql(I,e.ZERO);return p(w)&&p(x)?d.ZERO:new d(w,x,e.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(h){let w=e.invertBatch(h.map(x=>x.pz));return h.map((x,p)=>x.toAffine(w[p])).map(d.fromAffine)}static fromHex(h){let w=d.fromAffine(s(ot("pointHex",h)));return w.assertValidity(),w}static fromPrivateKey(h){return d.BASE.multiply(c(h))}static msm(h,w){return Rn(d,n,h,w)}_setWindowSize(h){b.setWindowSize(this,h)}assertValidity(){f(this)}hasEvenY(){let{y:h}=this.toAffine();if(e.isOdd)return!e.isOdd(h);throw new Error("Field doesn't support isOdd")}equals(h){l(h);let{px:w,py:x,pz:p}=this,{px:I,py:R,pz:_}=h,v=e.eql(e.mul(w,_),e.mul(I,p)),C=e.eql(e.mul(x,_),e.mul(R,p));return v&&C}negate(){return new d(this.px,e.neg(this.py),this.pz)}double(){let{a:h,b:w}=t,x=e.mul(w,Gc),{px:p,py:I,pz:R}=this,_=e.ZERO,v=e.ZERO,C=e.ZERO,L=e.mul(p,p),M=e.mul(I,I),N=e.mul(R,R),O=e.mul(p,I);return O=e.add(O,O),C=e.mul(p,R),C=e.add(C,C),_=e.mul(h,C),v=e.mul(x,N),v=e.add(_,v),_=e.sub(M,v),v=e.add(M,v),v=e.mul(_,v),_=e.mul(O,_),C=e.mul(x,C),N=e.mul(h,N),O=e.sub(L,N),O=e.mul(h,O),O=e.add(O,C),C=e.add(L,L),L=e.add(C,L),L=e.add(L,N),L=e.mul(L,O),v=e.add(v,L),N=e.mul(I,R),N=e.add(N,N),L=e.mul(N,O),_=e.sub(_,L),C=e.mul(N,M),C=e.add(C,C),C=e.add(C,C),new d(_,v,C)}add(h){l(h);let{px:w,py:x,pz:p}=this,{px:I,py:R,pz:_}=h,v=e.ZERO,C=e.ZERO,L=e.ZERO,M=t.a,N=e.mul(t.b,Gc),O=e.mul(w,I),F=e.mul(x,R),T=e.mul(p,_),B=e.add(w,x),E=e.add(I,R);B=e.mul(B,E),E=e.add(O,F),B=e.sub(B,E),E=e.add(w,p);let y=e.add(I,_);return E=e.mul(E,y),y=e.add(O,T),E=e.sub(E,y),y=e.add(x,p),v=e.add(R,_),y=e.mul(y,v),v=e.add(F,T),y=e.sub(y,v),L=e.mul(M,E),v=e.mul(N,T),L=e.add(v,L),v=e.sub(F,L),L=e.add(F,L),C=e.mul(v,L),F=e.add(O,O),F=e.add(F,O),T=e.mul(M,T),E=e.mul(N,E),F=e.add(F,T),T=e.sub(O,T),T=e.mul(M,T),E=e.add(E,T),O=e.mul(F,E),C=e.add(C,O),O=e.mul(y,E),v=e.mul(B,v),v=e.sub(v,O),O=e.mul(B,F),L=e.mul(y,L),L=e.add(L,O),new d(v,C,L)}subtract(h){return this.add(h.negate())}is0(){return this.equals(d.ZERO)}wNAF(h){return b.wNAFCached(this,h,d.normalizeZ)}multiplyUnsafe(h){let{endo:w,n:x}=t;xt("scalar",h,de,x);let p=d.ZERO;if(h===de)return p;if(this.is0()||h===wt)return this;if(!w||b.hasPrecomputes(this))return b.wNAFCachedUnsafe(this,h,d.normalizeZ);let{k1neg:I,k1:R,k2neg:_,k2:v}=w.splitScalar(h),C=p,L=p,M=this;for(;R>de||v>de;)R&wt&&(C=C.add(M)),v&wt&&(L=L.add(M)),M=M.double(),R>>=wt,v>>=wt;return I&&(C=C.negate()),_&&(L=L.negate()),L=new d(e.mul(L.px,w.beta),L.py,L.pz),C.add(L)}multiply(h){let{endo:w,n:x}=t;xt("scalar",h,wt,x);let p,I;if(w){let{k1neg:R,k1:_,k2neg:v,k2:C}=w.splitScalar(h),{p:L,f:M}=this.wNAF(_),{p:N,f:O}=this.wNAF(C);L=b.constTimeNegate(R,L),N=b.constTimeNegate(v,N),N=new d(e.mul(N.px,w.beta),N.py,N.pz),p=L.add(N),I=M.add(O)}else{let{p:R,f:_}=this.wNAF(h);p=R,I=_}return d.normalizeZ([p,I])[0]}multiplyAndAddUnsafe(h,w,x){let p=d.BASE,I=(_,v)=>v===de||v===wt||!_.equals(p)?_.multiplyUnsafe(v):_.multiply(v),R=I(this,w).add(I(h,x));return R.is0()?void 0:R}toAffine(h){return u(this,h)}isTorsionFree(){let{h,isTorsionFree:w}=t;if(h===wt)return!0;if(w)return w(d,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h,clearCofactor:w}=t;return h===wt?this:w?w(d,this):this.multiplyUnsafe(t.h)}toRawBytes(h=!0){return Gt("isCompressed",h),this.assertValidity(),o(d,this,h)}toHex(h=!0){return Gt("isCompressed",h),ae(this.toRawBytes(h))}}d.BASE=new d(t.Gx,t.Gy,e.ONE),d.ZERO=new d(e.ZERO,e.ONE,e.ZERO);let g=t.nBitLength,b=_n(d,t.endo?Math.ceil(g/2):g);return{CURVE:t,ProjectivePoint:d,normPrivateKeyToScalar:c,weierstrassEquation:i,isWithinCurveOrder:a}}function Md(r){let t=Nr(r);return Kt(t,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...t})}function zc(r){let t=Md(r),{Fp:e,n}=t,o=e.BYTES+1,s=2*e.BYTES+1;function i(T){return Z(T,n)}function a(T){return Bn(T,n)}let{ProjectivePoint:c,normPrivateKeyToScalar:l,weierstrassEquation:u,isWithinCurveOrder:f}=Od({...t,toBytes(T,B,E){let y=B.toAffine(),A=e.toBytes(y.x),S=ue;return Gt("isCompressed",E),E?S(Uint8Array.from([B.hasEvenY()?2:3]),A):S(Uint8Array.from([4]),A,e.toBytes(y.y))},fromBytes(T){let B=T.length,E=T[0],y=T.subarray(1);if(B===o&&(E===2||E===3)){let A=ce(y);if(!Pr(A,wt,e.ORDER))throw new Error("Point is not on curve");let S=u(A),P;try{P=e.sqrt(S)}catch(H){let K=H instanceof Error?": "+H.message:"";throw new Error("Point is not on curve"+K)}let D=(P&wt)===wt;return(E&1)===1!==D&&(P=e.neg(P)),{x:A,y:P}}else if(B===s&&E===4){let A=e.fromBytes(y.subarray(0,e.BYTES)),S=e.fromBytes(y.subarray(e.BYTES,2*e.BYTES));return{x:A,y:S}}else{let A=o,S=s;throw new Error("invalid Point, expected length of "+A+", or uncompressed "+S+", got "+B)}}}),d=T=>ae(Ae(T,t.nByteLength));function g(T){let B=n>>wt;return T>B}function b(T){return g(T)?i(-T):T}let m=(T,B,E)=>ce(T.slice(B,E));class h{constructor(B,E,y){this.r=B,this.s=E,this.recovery=y,this.assertValidity()}static fromCompact(B){let E=t.nByteLength;return B=ot("compactSignature",B,E*2),new h(m(B,0,E),m(B,E,2*E))}static fromDER(B){let{r:E,s:y}=he.toSig(ot("DER",B));return new h(E,y)}assertValidity(){xt("r",this.r,wt,n),xt("s",this.s,wt,n)}addRecoveryBit(B){return new h(this.r,this.s,B)}recoverPublicKey(B){let{r:E,s:y,recovery:A}=this,S=_(ot("msgHash",B));if(A==null||![0,1,2,3].includes(A))throw new Error("recovery id invalid");let P=A===2||A===3?E+t.n:E;if(P>=e.ORDER)throw new Error("recovery id 2 or 3 invalid");let D=(A&1)===0?"02":"03",k=c.fromHex(D+d(P)),H=a(P),K=i(-S*H),G=i(y*H),X=c.BASE.multiplyAndAddUnsafe(k,K,G);if(!X)throw new Error("point at infinify");return X.assertValidity(),X}hasHighS(){return g(this.s)}normalizeS(){return this.hasHighS()?new h(this.r,i(-this.s),this.recovery):this}toDERRawBytes(){return Oe(this.toDERHex())}toDERHex(){return he.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return Oe(this.toCompactHex())}toCompactHex(){return d(this.r)+d(this.s)}}let w={isValidPrivateKey(T){try{return l(T),!0}catch{return!1}},normPrivateKeyToScalar:l,randomPrivateKey:()=>{let T=gs(t.n);return ec(t.randomBytes(T),t.n)},precompute(T=8,B=c.BASE){return B._setWindowSize(T),B.multiply(BigInt(3)),B}};function x(T,B=!0){return c.fromPrivateKey(T).toRawBytes(B)}function p(T){let B=Se(T),E=typeof T=="string",y=(B||E)&&T.length;return B?y===o||y===s:E?y===2*o||y===2*s:T instanceof c}function I(T,B,E=!0){if(p(T))throw new Error("first arg must be private key");if(!p(B))throw new Error("second arg must be public key");return c.fromHex(B).multiply(l(T)).toRawBytes(E)}let R=t.bits2int||function(T){if(T.length>8192)throw new Error("input is too large");let B=ce(T),E=T.length*8-t.nBitLength;return E>0?B>>BigInt(E):B},_=t.bits2int_modN||function(T){return i(R(T))},v=Dr(t.nBitLength);function C(T){return xt("num < 2^"+t.nBitLength,T,de,v),Ae(T,t.nByteLength)}function L(T,B,E=M){if(["recovered","canonical"].some(it=>it in E))throw new Error("sign() legacy options not supported");let{hash:y,randomBytes:A}=t,{lowS:S,prehash:P,extraEntropy:D}=E;S==null&&(S=!0),T=ot("msgHash",T),qc(E),P&&(T=ot("prehashed msgHash",y(T)));let k=_(T),H=l(B),K=[C(H),C(k)];if(D!=null&&D!==!1){let it=D===!0?A(e.BYTES):D;K.push(ot("extraEntropy",it))}let G=ue(...K),X=k;function st(it){let lt=R(it);if(!f(lt))return;let St=a(lt),Pt=c.BASE.multiply(lt).toAffine(),_t=i(Pt.x);if(_t===de)return;let Jt=i(St*i(X+_t*H));if(Jt===de)return;let re=(Pt.x===_t?0:2)|Number(Pt.y&wt),Ir=Jt;return S&&g(Jt)&&(Ir=b(Jt),re^=1),new h(_t,Ir,re)}return{seed:G,k2sig:st}}let M={lowS:t.lowS,prehash:!1},N={lowS:t.lowS,prehash:!1};function O(T,B,E=M){let{seed:y,k2sig:A}=L(T,B,E),S=t;return fs(S.hash.outputLen,S.nByteLength,S.hmac)(y,A)}c.BASE._setWindowSize(8);function F(T,B,E,y=N){let A=T;B=ot("msgHash",B),E=ot("publicKey",E);let{lowS:S,prehash:P,format:D}=y;if(qc(y),"strict"in y)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 k=typeof A=="string"||Se(A),H=!k&&!D&&typeof A=="object"&&A!==null&&typeof A.r=="bigint"&&typeof A.s=="bigint";if(!k&&!H)throw new Error("invalid signature, expected Uint8Array, hex string or Signature instance");let K,G;try{if(H&&(K=new h(A.r,A.s)),k){try{D!=="compact"&&(K=h.fromDER(A))}catch(re){if(!(re instanceof he.Err))throw re}!K&&D!=="der"&&(K=h.fromCompact(A))}G=c.fromHex(E)}catch{return!1}if(!K||S&&K.hasHighS())return!1;P&&(B=t.hash(B));let{r:X,s:st}=K,it=_(B),lt=a(st),St=i(it*lt),Pt=i(X*lt),_t=c.BASE.multiplyAndAddUnsafe(G,St,Pt)?.toAffine();return _t?i(_t.x)===X:!1}return{CURVE:t,getPublicKey:x,getSharedSecret:I,sign:O,verify:F,ProjectivePoint:c,Signature:h,utils:w}}function Kd(r){return{hash:r,hmac:(t,...e)=>hr(r,t,os(...e)),randomBytes:Rr}}function Wc(r,t){let e=n=>zc({...r,...Kd(n)});return{...e(t),create:e}}var Zc=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),$c=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),Fd=BigInt(1),li=BigInt(2),Xc=(r,t)=>(r+t/li)/t;function Hd(r){let t=Zc,e=BigInt(3),n=BigInt(6),o=BigInt(11),s=BigInt(22),i=BigInt(23),a=BigInt(44),c=BigInt(88),l=r*r*r%t,u=l*l*r%t,f=at(u,e,t)*u%t,d=at(f,e,t)*u%t,g=at(d,li,t)*l%t,b=at(g,o,t)*g%t,m=at(b,s,t)*b%t,h=at(m,a,t)*m%t,w=at(h,c,t)*h%t,x=at(w,a,t)*m%t,p=at(x,e,t)*u%t,I=at(p,i,t)*b%t,R=at(I,n,t)*l%t,_=at(R,li,t);if(!ui.eql(ui.sqr(_),r))throw new Error("Cannot find square root");return _}var ui=ve(Zc,void 0,void 0,{sqrt:Hd}),ze=Wc({a:BigInt(0),b:BigInt(7),Fp:ui,n:$c,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let t=$c,e=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-Fd*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),o=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),s=e,i=BigInt("0x100000000000000000000000000000000"),a=Xc(s*r,t),c=Xc(-n*r,t),l=Z(r-a*e-c*o,t),u=Z(-a*n-c*s,t),f=l>i,d=u>i;if(f&&(l=t-l),d&&(u=t-u),l>i||u>i)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:f,k1:l,k2neg:d,k2:u}}}},te),hw=BigInt(0);var dw=ze.ProjectivePoint;function Yc(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function jc(r,t,e){let n=fe.digest(e instanceof Uint8Array?e:e.subarray());if(Yc(n))return n.then(({digest:o})=>ze.verify(t,o,r)).catch(o=>{throw new Hr(String(o))});try{return ze.verify(t,n.digest,r)}catch(o){throw new Hr(String(o))}}var Gn=class{type="secp256k1";raw;_key;constructor(t){this._key=Qc(t),this.raw=Jc(this._key)}toMultihash(){return se.digest(lr(this))}toCID(){return bt.createV1(114,this.toMultihash())}toString(){return nt.encode(this.toMultihash().bytes).substring(1)}equals(t){return t==null||!(t.raw instanceof Uint8Array)?!1:Rt(this.raw,t.raw)}verify(t,e){return jc(this._key,e,t)}};function fi(r){return new Gn(r)}function Jc(r){return ze.ProjectivePoint.fromHex(r).toRawBytes(!0)}function Qc(r){try{return ze.ProjectivePoint.fromHex(r),r}catch(t){throw new je(String(t))}}function Gr(r,t){let{Type:e,Data:n}=Qt.decode(r),o=n??new Uint8Array;switch(e){case gt.RSA:return ai(o,t);case gt.Ed25519:return As(o);case gt.secp256k1:return fi(o);default:throw new De}}function tl(r){let{Type:t,Data:e}=Qt.decode(r.digest),n=e??new Uint8Array;switch(t){case gt.Ed25519:return As(n);case gt.secp256k1:return fi(n);default:throw new De}}function lr(r){return Qt.encode({Type:gt[r.type],Data:r.raw})}var el=Symbol.for("nodejs.util.inspect.custom"),Vd=114,zr=class{type;multihash;publicKey;string;constructor(t){this.type=t.type,this.multihash=t.multihash,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Wo]=!0;toString(){return this.string==null&&(this.string=nt.encode(this.multihash.bytes).slice(1)),this.string}toMultihash(){return this.multihash}toCID(){return bt.createV1(Vd,this.multihash)}toJSON(){return this.toString()}equals(t){if(t==null)return!1;if(t instanceof Uint8Array)return Rt(this.multihash.bytes,t);if(typeof t=="string")return this.toString()===t;if(t?.toMultihash()?.bytes!=null)return Rt(this.multihash.bytes,t.toMultihash().bytes);throw new Error("not valid Id")}[el](){return`PeerId(${this.toString()})`}},Wr=class extends zr{type="RSA";publicKey;constructor(t){super({...t,type:"RSA"}),this.publicKey=t.publicKey}},$r=class extends zr{type="Ed25519";publicKey;constructor(t){super({...t,type:"Ed25519"}),this.publicKey=t.publicKey}},Xr=class extends zr{type="secp256k1";publicKey;constructor(t){super({...t,type:"secp256k1"}),this.publicKey=t.publicKey}},qd=2336,zn=class{type="url";multihash;publicKey;url;constructor(t){this.url=t.toString(),this.multihash=se.digest(J(this.url))}[el](){return`PeerId(${this.url})`}[Wo]=!0;toString(){return this.toCID().toString()}toMultihash(){return this.multihash}toCID(){return bt.createV1(qd,this.toMultihash())}toJSON(){return this.toString()}equals(t){return t==null?!1:(t instanceof Uint8Array&&(t=q(t)),t.toString()===this.toString())}};function dr(r,t){let e;if(r.charAt(0)==="1"||r.charAt(0)==="Q")e=we(nt.decode(`z${r}`));else{if(t==null)throw new rt('Please pass a multibase decoder for strings that do not start with "1" or "Q"');e=we(t.decode(r))}return Gd(e)}function hi(r){if(r.type==="Ed25519")return new $r({multihash:r.toCID().multihash,publicKey:r});if(r.type==="secp256k1")return new Xr({multihash:r.toCID().multihash,publicKey:r});if(r.type==="RSA")return new Wr({multihash:r.toCID().multihash,publicKey:r});throw new De}function Gd(r){if(Wd(r))return new Wr({multihash:r});if(zd(r))try{let t=tl(r);if(t.type==="Ed25519")return new $r({multihash:r,publicKey:t});if(t.type==="secp256k1")return new Xr({multihash:r,publicKey:t})}catch{let e=q(r.digest);return new zn(new URL(e))}throw new yn("Supplied PeerID Multihash is invalid")}function zd(r){return r.code===se.code}function Wd(r){return r.code===fe.code}var Wn=class{index=0;input="";new(t){return this.index=0,this.input=t,this}readAtomically(t){let e=this.index,n=t();return n===void 0&&(this.index=e),n}parseWith(t){let e=t();if(this.index===this.input.length)return e}peekChar(){if(!(this.index>=this.input.length))return this.input[this.index]}readChar(){if(!(this.index>=this.input.length))return this.input[this.index++]}readGivenChar(t){return this.readAtomically(()=>{let e=this.readChar();if(e===t)return e})}readSeparator(t,e,n){return this.readAtomically(()=>{if(!(e>0&&this.readGivenChar(t)===void 0))return n()})}readNumber(t,e,n,o){return this.readAtomically(()=>{let s=0,i=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",l=2**(8*o)-1;for(;;){let u=this.readAtomically(()=>{let f=this.readChar();if(f===void 0)return;let d=Number.parseInt(f,t);if(!Number.isNaN(d))return d});if(u===void 0)break;if(s*=t,s+=u,s>l||(i+=1,e!==void 0&&i>e))return}if(i!==0)return!n&&c&&i>1?void 0:s})}readIPv4Addr(){return this.readAtomically(()=>{let t=new Uint8Array(4);for(let e=0;e<t.length;e++){let n=this.readSeparator(".",e,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;t[e]=n}return t})}readIPv6Addr(){let t=e=>{for(let n=0;n<e.length/2;n++){let o=n*2;if(n<e.length-3){let i=this.readSeparator(":",n,()=>this.readIPv4Addr());if(i!==void 0)return e[o]=i[0],e[o+1]=i[1],e[o+2]=i[2],e[o+3]=i[3],[o+4,!0]}let s=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(s===void 0)return[o,!1];e[o]=s>>8,e[o+1]=s&255}return[e.length,!1]};return this.readAtomically(()=>{let e=new Uint8Array(16),[n,o]=t(e);if(n===16)return e;if(o||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let s=new Uint8Array(14),i=16-(n+2),[a]=t(s.subarray(0,i));return e.set(s.subarray(0,a),16-a),e})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var rl=45,$d=15,pr=new Wn;function di(r){if(!(r.length>$d))return pr.new(r).parseWith(()=>pr.readIPv4Addr())}function pi(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>rl))return pr.new(r).parseWith(()=>pr.readIPv6Addr())}function $n(r,t=!1){if(r.includes("%")&&(r=r.split("%")[0]),r.length>rl)return;let e=pr.new(r).parseWith(()=>pr.readIPAddr());if(e)return t&&e.length===4?Uint8Array.from([0,0,0,0,0,0,0,0,0,0,255,255,e[0],e[1],e[2],e[3]]):e}var vb=parseInt("0xFFFF",16),Ib=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);function Xn(r){return!!di(r)}function Zn(r){return!!pi(r)}function Yn(r){return!!$n(r)}var sl=Xn,Jd=Zn,mi=function(r){let t=0;if(r=r.toString().trim(),sl(r)){let e=new Uint8Array(t+4);return r.split(/\./g).forEach(n=>{e[t++]=parseInt(n,10)&255}),e}if(Jd(r)){let e=r.split(":",8),n;for(n=0;n<e.length;n++){let s=sl(e[n]),i;s&&(i=mi(e[n]),e[n]=q(i.slice(0,2),"base16")),i!=null&&++n<8&&e.splice(n,0,q(i.slice(2,4),"base16"))}if(e[0]==="")for(;e.length<8;)e.unshift("0");else if(e[e.length-1]==="")for(;e.length<8;)e.push("0");else if(e.length<8){for(n=0;n<e.length&&e[n]!=="";n++);let s=[n,1];for(n=9-e.length;n>0;n--)s.push("0");e.splice.apply(e,s)}let o=new Uint8Array(t+16);for(n=0;n<e.length;n++){let s=parseInt(e[n],16);o[t++]=s>>8&255,o[t++]=s&255}return o}throw new Error("invalid ip address")},il=function(r,t=0,e){t=~~t,e=e??r.length-t;let n=new DataView(r.buffer);if(e===4){let o=[];for(let s=0;s<e;s++)o.push(r[t+s]);return o.join(".")}if(e===16){let o=[];for(let s=0;s<e;s+=2)o.push(n.getUint16(t+s).toString(16));return o.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var mr={},gi={},tp=[[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"]];tp.forEach(r=>{let t=ep(...r);gi[t.code]=t,mr[t.name]=t});function ep(r,t,e,n,o){return{code:r,size:t,name:e,resolvable:!!n,path:!!o}}function et(r){if(typeof r=="number"){if(gi[r]!=null)return gi[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(mr[r]!=null)return mr[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var cx=et("ip4"),lx=et("ip6"),ux=et("ipcidr");function xi(r,t){switch(et(r).code){case 4:case 41:return np(t);case 42:return bi(t);case 43:return q(t,"base10");case 6:case 273:case 33:case 132:return ll(t).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return bi(t);case 421:return ap(t);case 444:return cl(t);case 445:return cl(t);case 466:return ip(t);case 481:return globalThis.encodeURIComponent(bi(t));default:return q(t,"base16")}}function Ei(r,t){switch(et(r).code){case 4:return al(t);case 41:return al(t);case 42:return wi(t);case 43:return J(t,"base10");case 6:case 273:case 33:case 132:return Si(parseInt(t,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return wi(t);case 421:return op(t);case 444:return cp(t);case 445:return lp(t);case 466:return sp(t);case 481:return wi(globalThis.decodeURIComponent(t));default:return J(t,"base16")}}var yi=Object.values(Ve).map(r=>r.decoder),rp=function(){let r=yi[0].or(yi[1]);return yi.slice(2).forEach(t=>r=r.or(t)),r}();function al(r){if(!Yn(r))throw new Error("invalid ip address");return mi(r)}function np(r){let t=il(r,0,r.length);if(t==null)throw new Error("ipBuff is required");if(!Yn(t))throw new Error("invalid ip address");return t}function Si(r){let t=new ArrayBuffer(2);return new DataView(t).setUint16(0,r),new Uint8Array(t)}function ll(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function wi(r){let t=J(r),e=Uint8Array.from(Ft(t.length));return yt([e,t],e.length+t.length)}function bi(r){let t=Ut(r);if(r=r.slice(Q(t)),r.length!==t)throw new Error("inconsistent lengths");return q(r)}function op(r){let t;r[0]==="Q"||r[0]==="1"?t=we(nt.decode(`z${r}`)).bytes:t=bt.parse(r).multihash.bytes;let e=Uint8Array.from(Ft(t.length));return yt([e,t],e.length+t.length)}function sp(r){let t=rp.decode(r),e=Uint8Array.from(Ft(t.length));return yt([e,t],e.length+t.length)}function ip(r){let t=Ut(r),e=r.slice(Q(t));if(e.length!==t)throw new Error("inconsistent lengths");return"u"+q(e,"base64url")}function ap(r){let t=Ut(r),e=r.slice(Q(t));if(e.length!==t)throw new Error("inconsistent lengths");return q(e,"base58btc")}function cp(r){let t=r.split(":");if(t.length!==2)throw new Error(`failed to parse onion addr: ["'${t.join('", "')}'"]' does not contain a port number`);if(t[0].length!==16)throw new Error(`failed to parse onion addr: ${t[0]} not a Tor onion address.`);let e=oe.decode("b"+t[0]),n=parseInt(t[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let o=Si(n);return yt([e,o],e.length+o.length)}function lp(r){let t=r.split(":");if(t.length!==2)throw new Error(`failed to parse onion addr: ["'${t.join('", "')}'"]' does not contain a port number`);if(t[0].length!==56)throw new Error(`failed to parse onion addr: ${t[0]} not a Tor onion3 address.`);let e=oe.decode(`b${t[0]}`),n=parseInt(t[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let o=Si(n);return yt([e,o],e.length+o.length)}function cl(r){let t=r.slice(0,r.length-2),e=r.slice(r.length-2),n=q(t,"base32"),o=ll(e);return`${n}:${o}`}function ul(r){r=Ai(r);let t=[],e=[],n=null,o=r.split("/").slice(1);if(o.length===1&&o[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let s=0;s<o.length;s++){let i=o[s],a=et(i);if(a.size===0){t.push([a.code]),e.push([a.code]);continue}if(s++,s>=o.length)throw new jn("invalid address: "+r);if(a.path===!0){n=Ai(o.slice(s).join("/")),t.push([a.code,Ei(a.code,n)]),e.push([a.code,n]);break}let c=Ei(a.code,o[s]);t.push([a.code,c]),e.push([a.code,xi(a.code,c)])}return{string:fl(e),bytes:Jn(t),tuples:t,stringTuples:e,path:n}}function vi(r){let t=[],e=[],n=null,o=0;for(;o<r.length;){let s=Ut(r,o),i=Q(s),a=et(s),c=up(a,r.slice(o+i));if(c===0){t.push([s]),e.push([s]),o+=i;continue}let l=r.slice(o+i,o+i+c);if(o+=c+i,o>r.length)throw new jn("Invalid address Uint8Array: "+q(r,"base16"));t.push([s,l]);let u=xi(s,l);if(e.push([s,u]),a.path===!0){n=u;break}}return{bytes:Uint8Array.from(r),string:fl(e),tuples:t,stringTuples:e,path:n}}function fl(r){let t=[];return r.map(e=>{let n=et(e[0]);return t.push(n.name),e.length>1&&e[1]!=null&&t.push(e[1]),null}),Ai(t.join("/"))}function Jn(r){return yt(r.map(t=>{let e=et(t[0]),n=Uint8Array.from(Ft(e.code));return t.length>1&&t[1]!=null&&(n=yt([n,t[1]])),n}))}function up(r,t){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let e=Ut(t instanceof Uint8Array?t:Uint8Array.from(t));return e+Q(e)}}function Ai(r){return"/"+r.trim().split("/").filter(t=>t).join("/")}var jn=class extends Error{static name="ParseError";name="ParseError";constructor(t){super(`Error parsing address: ${t}`)}};var fp=Symbol.for("nodejs.util.inspect.custom"),Ti=Symbol.for("@multiformats/js-multiaddr/multiaddr"),hp=[et("dns").code,et("dns4").code,et("dns6").code,et("dnsaddr").code],Ii=class extends Error{constructor(t="No available resolver"){super(t),this.name="NoAvailableResolverError"}},Qn=class r{bytes;#t;#e;#r;#n;[Ti]=!0;constructor(t){t==null&&(t="");let e;if(t instanceof Uint8Array)e=vi(t);else if(typeof t=="string"){if(t.length>0&&t.charAt(0)!=="/")throw new Error(`multiaddr "${t}" must start with a "/"`);e=ul(t)}else if(dl(t))e=vi(t.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=e.bytes,this.#t=e.string,this.#e=e.tuples,this.#r=e.stringTuples,this.#n=e.path}toString(){return this.#t}toJSON(){return this.toString()}toOptions(){let t,e,n,o,s="",i=et("tcp"),a=et("udp"),c=et("ip4"),l=et("ip6"),u=et("dns6"),f=et("ip6zone");for(let[g,b]of this.stringTuples())g===f.code&&(s=`%${b??""}`),hp.includes(g)&&(e=i.name==="tcp"?"tcp":"udp",o=443,n=`${b??""}${s}`,t=g===u.code?6:4),(g===i.code||g===a.code)&&(e=et(g).name==="tcp"?"tcp":"udp",o=parseInt(b??"")),(g===c.code||g===l.code)&&(e=et(g).name==="tcp"?"tcp":"udp",n=`${b??""}${s}`,t=g===l.code?6:4);if(t==null||e==null||n==null||o==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:t,host:n,transport:e,port:o}}protos(){return this.#e.map(([t])=>Object.assign({},et(t)))}protoCodes(){return this.#e.map(([t])=>t)}protoNames(){return this.#e.map(([t])=>et(t).name)}tuples(){return this.#e.map(([t,e])=>e==null?[t]:[t,e])}stringTuples(){return this.#r.map(([t,e])=>e==null?[t]:[t,e])}encapsulate(t){return t=new r(t),new r(this.toString()+t.toString())}decapsulate(t){let e=t.toString(),n=this.toString(),o=n.lastIndexOf(e);if(o<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${t.toString()}`);return new r(n.slice(0,o))}decapsulateCode(t){let e=this.tuples();for(let n=e.length-1;n>=0;n--)if(e[n][0]===t)return new r(Jn(e.slice(0,n)));return this}getPeerId(){try{let t=[];this.stringTuples().forEach(([n,o])=>{n===mr.p2p.code&&t.push([n,o]),n===mr["p2p-circuit"].code&&(t=[])});let e=t.pop();if(e?.[1]!=null){let n=e[1];return n[0]==="Q"||n[0]==="1"?q(nt.decode(`z${n}`),"base58btc"):q(bt.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#n}equals(t){return Rt(this.bytes,t.bytes)}async resolve(t){let e=this.protos().find(s=>s.resolvable);if(e==null)return[this];let n=hl.get(e.name);if(n==null)throw new Ii(`no available resolver for ${e.name}`);return(await n(this,t)).map(s=>ee(s))}nodeAddress(){let t=this.toOptions();if(t.transport!=="tcp"&&t.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${t.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:t.family,address:t.host,port:t.port}}isThinWaistAddress(t){let e=(t??this).protos();return!(e.length!==2||e[0].code!==4&&e[0].code!==41||e[1].code!==6&&e[1].code!==273)}[fp](){return`Multiaddr(${this.#t})`}};var hl=new Map;function dl(r){return!!r?.[Ti]}function ee(r){return new Qn(r)}var dp=r=>r.toString().split("/").slice(1),gr=r=>({match:t=>t.length<1?!1:r(t[0])?t.slice(1):!1,pattern:"fn"}),W=r=>({match:t=>gr(e=>e===r).match(t),pattern:r}),We=()=>({match:r=>gr(t=>typeof t=="string").match(r),pattern:"{string}"}),Zr=()=>({match:r=>gr(t=>!isNaN(parseInt(t))).match(r),pattern:"{number}"}),tt=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{nt.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),Yr=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{Or.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),Y=r=>({match:t=>{let e=r.match(t);return e===!1?t:e},pattern:`optional(${r.pattern})`}),Lt=(...r)=>({match:t=>{let e;for(let n of r){let o=n.match(t);o!==!1&&(e==null||o.length<e.length)&&(e=o)}return e??!1},pattern:`or(${r.map(t=>t.pattern).join(", ")})`}),$=(...r)=>({match:t=>{for(let e of r){let n=e.match(t);if(n===!1)return!1;t=n}return t},pattern:`and(${r.map(t=>t.pattern).join(", ")})`});function ct(...r){function t(o){let s=dp(o);for(let i of r){let a=i.match(s);if(a===!1)return!1;s=a}return s}function e(o){return t(o)!==!1}function n(o){let s=t(o);return s===!1?!1:s.length===0}return{matchers:r,matches:e,exactMatch:n}}var eo=$(W("dns4"),We()),ro=$(W("dns6"),We()),no=$(W("dnsaddr"),We()),Bi=$(W("dns"),We()),Hx=ct(eo,Y(tt())),Vx=ct(ro,Y(tt())),qx=ct(no,Y(tt())),Gx=ct(Lt(Bi,no,eo,ro),Y(tt())),pl=$(W("ip4"),gr(Xn)),ml=$(W("ip6"),gr(Zn)),Ci=Lt(pl,ml),pe=Lt(Ci,Bi,eo,ro,no),zx=ct(Lt(Ci,$(Lt(Bi,no,eo,ro),Y(tt())))),Wx=ct(pl),$x=ct(ml),Xx=ct(Ci),_i=$(pe,W("tcp"),Zr()),jr=$(pe,W("udp"),Zr()),Zx=ct($(_i,Y(tt()))),Yx=ct(jr),Ri=$(jr,W("quic"),Y(tt())),oo=$(jr,W("quic-v1"),Y(tt())),pp=Lt(Ri,oo),jx=ct(Ri),Jx=ct(oo),Li=Lt(pe,_i,jr,Ri,oo),gl=Lt($(Li,W("ws"),Y(tt()))),Qx=ct(gl),yl=Lt($(Li,W("wss"),Y(tt())),$(Li,W("tls"),Y($(W("sni"),We())),W("ws"),Y(tt()))),t1=ct(yl),wl=$(jr,W("webrtc-direct"),Y(Yr()),Y(Yr()),Y(tt())),bl=ct(wl),xl=$(oo,W("webtransport"),Y(Yr()),Y(Yr()),Y(tt())),e1=ct(xl),to=Lt(gl,yl,$(_i,Y(tt())),$(pp,Y(tt())),$(pe,Y(tt())),wl,xl,tt()),El=ct(to),mp=$(to,W("p2p-circuit"),tt()),r1=ct(mp),gp=Lt($(to,W("p2p-circuit"),W("webrtc"),Y(tt())),$(to,W("webrtc"),Y(tt())),$(W("webrtc"),Y(tt()))),Sl=ct(gp),yp=Lt($(pe,W("tcp"),Zr(),W("http"),Y(tt())),$(pe,W("http"),Y(tt()))),n1=ct(yp),wp=Lt($(pe,W("tcp"),Lt($(W("443"),W("http")),$(Zr(),W("https"))),Y(tt())),$(pe,W("tls"),W("http"),Y(tt())),$(pe,W("https"),Y(tt()))),o1=ct(wp),bp=Lt($(W("memory"),We(),Y(tt()))),s1=ct(bp);var Bt;(function(r){let t;(function(o){o.FIN="FIN",o.STOP_SENDING="STOP_SENDING",o.RESET="RESET",o.FIN_ACK="FIN_ACK"})(t=r.Flag||(r.Flag={}));let e;(function(o){o[o.FIN=0]="FIN",o[o.STOP_SENDING=1]="STOP_SENDING",o[o.RESET=2]="RESET",o[o.FIN_ACK=3]="FIN_ACK"})(e||(e={})),function(o){o.codec=()=>Ge(e)}(t=r.Flag||(r.Flag={}));let n;r.codec=()=>(n==null&&(n=Yt((o,s,i={})=>{i.lengthDelimited!==!1&&s.fork(),o.flag!=null&&(s.uint32(8),r.Flag.codec().encode(o.flag,s)),o.message!=null&&(s.uint32(18),s.bytes(o.message)),i.lengthDelimited!==!1&&s.ldelim()},(o,s,i={})=>{let a={},c=s==null?o.len:o.pos+s;for(;o.pos<c;){let l=o.uint32();switch(l>>>3){case 1:{a.flag=r.Flag.codec().decode(o);break}case 2:{a.message=o.bytes();break}default:{o.skipType(l&7);break}}}return a})),n),r.encode=o=>Zt(o,r.codec()),r.decode=(o,s)=>Xt(o,r.codec(),s)})(Bt||(Bt={}));var Al=["stun:stun.l.google.com:19302","stun:global.stun.twilio.com:3478","stun:stun.cloudflare.com:3478","stun:stun.services.mozilla.com:3478"],Pi=Array.from("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"),vl="libp2p+webrtc+v1/";var Il=466,Tl=2*1024*1024,Ll=30*1e3,yr=16*1024;function xp(r=yr){let t=Q(r-Q(r)),e=1+Q(Object.keys(Bt.Flag).length-1),n=1,o=r-t-e-n,s=Q(o);return t+e+n+s}var Bl=xp(),Cl=5e3,_l=5e3,Rl=301e3,Di="/webrtc",Jr="/webrtc-signaling/0.0.1";var Pl=function(r,t,e){if(e||arguments.length===2)for(var n=0,o=t.length,s;n<o;n++)(s||!(n in t))&&(s||(s=Array.prototype.slice.call(t,0,n)),s[n]=t[n]);return r.concat(s||Array.prototype.slice.call(t))},Ep=function(){function r(t,e,n){this.name=t,this.version=e,this.os=n,this.type="browser"}return r}();var Sp=function(){function r(t){this.version=t,this.type="node",this.name="node",this.os=process.platform}return r}();var Ap=function(){function r(t,e,n,o){this.name=t,this.version=e,this.os=n,this.bot=o,this.type="bot-device"}return r}();var vp=function(){function r(){this.type="bot",this.bot=!0,this.name="bot",this.version=null,this.os=null}return r}();var Ip=function(){function r(){this.type="react-native",this.name="react-native",this.version=null,this.os=null}return r}();var Tp=/alexa|bot|crawl(er|ing)|facebookexternalhit|feedburner|google web preview|nagios|postrank|pingdom|slurp|spider|yahoo!|yandex/,Lp=/(nuhk|curl|Googlebot|Yammybot|Openbot|Slurp|MSNBot|Ask\ Jeeves\/Teoma|ia_archiver)/,Dl=3,Bp=[["aol",/AOLShield\/([0-9\._]+)/],["edge",/Edge\/([0-9\._]+)/],["edge-ios",/EdgiOS\/([0-9\._]+)/],["yandexbrowser",/YaBrowser\/([0-9\._]+)/],["kakaotalk",/KAKAOTALK\s([0-9\.]+)/],["samsung",/SamsungBrowser\/([0-9\.]+)/],["silk",/\bSilk\/([0-9._-]+)\b/],["miui",/MiuiBrowser\/([0-9\.]+)$/],["beaker",/BeakerBrowser\/([0-9\.]+)/],["edge-chromium",/EdgA?\/([0-9\.]+)/],["chromium-webview",/(?!Chrom.*OPR)wv\).*Chrom(?:e|ium)\/([0-9\.]+)(:?\s|$)/],["chrome",/(?!Chrom.*OPR)Chrom(?:e|ium)\/([0-9\.]+)(:?\s|$)/],["phantomjs",/PhantomJS\/([0-9\.]+)(:?\s|$)/],["crios",/CriOS\/([0-9\.]+)(:?\s|$)/],["firefox",/Firefox\/([0-9\.]+)(?:\s|$)/],["fxios",/FxiOS\/([0-9\.]+)/],["opera-mini",/Opera Mini.*Version\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)(?:\s|$)/],["opera",/OPR\/([0-9\.]+)(:?\s|$)/],["pie",/^Microsoft Pocket Internet Explorer\/(\d+\.\d+)$/],["pie",/^Mozilla\/\d\.\d+\s\(compatible;\s(?:MSP?IE|MSInternet Explorer) (\d+\.\d+);.*Windows CE.*\)$/],["netfront",/^Mozilla\/\d\.\d+.*NetFront\/(\d.\d)/],["ie",/Trident\/7\.0.*rv\:([0-9\.]+).*\).*Gecko$/],["ie",/MSIE\s([0-9\.]+);.*Trident\/[4-7].0/],["ie",/MSIE\s(7\.0)/],["bb10",/BB10;\sTouch.*Version\/([0-9\.]+)/],["android",/Android\s([0-9\.]+)/],["ios",/Version\/([0-9\._]+).*Mobile.*Safari.*/],["safari",/Version\/([0-9\._]+).*Safari/],["facebook",/FB[AS]V\/([0-9\.]+)/],["instagram",/Instagram\s([0-9\.]+)/],["ios-webview",/AppleWebKit\/([0-9\.]+).*Mobile/],["ios-webview",/AppleWebKit\/([0-9\.]+).*Gecko\)$/],["curl",/^curl\/([0-9\.]+)$/],["searchbot",Tp]],Nl=[["iOS",/iP(hone|od|ad)/],["Android OS",/Android/],["BlackBerry OS",/BlackBerry|BB10/],["Windows Mobile",/IEMobile/],["Amazon OS",/Kindle/],["Windows 3.11",/Win16/],["Windows 95",/(Windows 95)|(Win95)|(Windows_95)/],["Windows 98",/(Windows 98)|(Win98)/],["Windows 2000",/(Windows NT 5.0)|(Windows 2000)/],["Windows XP",/(Windows NT 5.1)|(Windows XP)/],["Windows Server 2003",/(Windows NT 5.2)/],["Windows Vista",/(Windows NT 6.0)/],["Windows 7",/(Windows NT 6.1)/],["Windows 8",/(Windows NT 6.2)/],["Windows 8.1",/(Windows NT 6.3)/],["Windows 10",/(Windows NT 10.0)/],["Windows ME",/Windows ME/],["Windows CE",/Windows CE|WinCE|Microsoft Pocket Internet Explorer/],["Open BSD",/OpenBSD/],["Sun OS",/SunOS/],["Chrome OS",/CrOS/],["Linux",/(Linux)|(X11)/],["Mac OS",/(Mac_PowerPC)|(Macintosh)/],["QNX",/QNX/],["BeOS",/BeOS/],["OS/2",/OS\/2/]];function kl(r){return r?Ul(r):typeof document>"u"&&typeof navigator<"u"&&navigator.product==="ReactNative"?new Ip:typeof navigator<"u"?Ul(navigator.userAgent):Rp()}function Cp(r){return r!==""&&Bp.reduce(function(t,e){var n=e[0],o=e[1];if(t)return t;var s=o.exec(r);return!!s&&[n,s]},!1)}function Ul(r){var t=Cp(r);if(!t)return null;var e=t[0],n=t[1];if(e==="searchbot")return new vp;var o=n[1]&&n[1].split(".").join("_").split("_").slice(0,3);o?o.length<Dl&&(o=Pl(Pl([],o,!0),Pp(Dl-o.length),!0)):o=[];var s=o.join("."),i=_p(r),a=Lp.exec(r);return a&&a[1]?new Ap(e,s,i,a[1]):new Ep(e,s,i)}function _p(r){for(var t=0,e=Nl.length;t<e;t++){var n=Nl[t],o=n[0],s=n[1],i=s.exec(r);if(i)return o}return null}function Rp(){var r=typeof process<"u"&&process.version;return r?new Sp(process.version.slice(1)):null}function Pp(r){for(var t=[],e=0;e<r;e++)t.push("0");return t}function ht(){let r={};return r.promise=new Promise((t,e)=>{r.resolve=t,r.reject=e}),r}var Ni=class extends Error{constructor(t){super(t),this.name="TimeoutError"}},Ui=class extends Error{constructor(t){super(),this.name="AbortError",this.message=t}},Ol=r=>globalThis.DOMException===void 0?new Ui(r):new DOMException(r),Ml=r=>{let t=r.reason===void 0?Ol("This operation was aborted."):r.reason;return t instanceof Error?t:Ol(t)};function Qr(r,t){let{milliseconds:e,fallback:n,message:o,customTimers:s={setTimeout,clearTimeout}}=t,i,a,l=new Promise((u,f)=>{if(typeof e!="number"||Math.sign(e)!==1)throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${e}\``);if(t.signal){let{signal:g}=t;g.aborted&&f(Ml(g)),a=()=>{f(Ml(g))},g.addEventListener("abort",a,{once:!0})}if(e===Number.POSITIVE_INFINITY){r.then(u,f);return}let d=new Ni;i=s.setTimeout.call(void 0,()=>{if(n){try{u(n())}catch(g){f(g)}return}typeof r.cancel=="function"&&r.cancel(),o===!1?u():o instanceof Error?f(o):(d.message=o??`Promise timed out after ${e} milliseconds`,f(d))},e),(async()=>{try{u(await r)}catch(g){f(g)}})()}).finally(()=>{l.clear(),a&&t.signal&&t.signal.removeEventListener("abort",a)});return l.clear=()=>{s.clearTimeout.call(void 0,i),i=void 0},l}var Kl=kl(),tn=Kl!=null&&Kl.name==="firefox",so=async function*(){},io=async r=>{};function Fl(r,t,e=Rl,n){r.readyState==="open"&&Promise.resolve().then(async()=>{if(r.bufferedAmount>0){n.log("%s drain channel with %d buffered bytes",t,r.bufferedAmount);let o=ht(),s=!1;r.bufferedAmountLowThreshold=0;let i=()=>{s||(n.log("%s drain channel closed before drain",t),o.resolve())};r.addEventListener("close",i,{once:!0}),r.addEventListener("bufferedamountlow",()=>{s=!0,r.removeEventListener("close",i),o.resolve()}),await Qr(o.promise,{milliseconds:e})}}).then(async()=>{r.readyState==="open"&&r.close()}).catch(o=>{n.log.error("error closing outbound stream",o)})}async function ki(r){return r=r??{},typeof r=="function"&&(r=await r()),r.iceServers=r.iceServers??Al.map(t=>({urls:[t]})),r}var Hl=(r=32)=>vl+[...Array(r)].map(()=>Pi.at(Math.floor(Math.random()*Pi.length))).join("");var $e=class{log;peerConnection;remoteAddr;timeline;metrics;source=so();sink=io;constructor(t,e){this.log=t.logger.forComponent("libp2p:webrtc:maconn"),this.remoteAddr=e.remoteAddr,this.timeline=e.timeline,this.peerConnection=e.peerConnection;let n=this.peerConnection,o=n.connectionState;this.peerConnection.onconnectionstatechange=()=>{this.log.trace("peer connection state change",n.connectionState,"initial state",o),(n.connectionState==="disconnected"||n.connectionState==="failed"||n.connectionState==="closed")&&(this.timeline.close=Date.now())}}async close(t){this.log.trace("closing connection"),this.peerConnection.close(),this.timeline.close=Date.now(),this.metrics?.increment({close:!0})}abort(t){this.log.error("closing connection due to error",t),this.peerConnection.close(),this.timeline.close=Date.now(),this.metrics?.increment({abort:!0})}};var ao=class{buffer;mask;top;btm;next;constructor(t){if(!(t>0)||(t-1&t)!==0)throw new Error("Max size for a FixedFIFO should be a power of two");this.buffer=new Array(t),this.mask=t-1,this.top=0,this.btm=0,this.next=null}push(t){return this.buffer[this.top]!==void 0?!1:(this.buffer[this.top]=t,this.top=this.top+1&this.mask,!0)}shift(){let t=this.buffer[this.btm];if(t!==void 0)return this.buffer[this.btm]=void 0,this.btm=this.btm+1&this.mask,t}isEmpty(){return this.buffer[this.btm]===void 0}},wr=class{size;hwm;head;tail;constructor(t={}){this.hwm=t.splitLimit??16,this.head=new ao(this.hwm),this.tail=this.head,this.size=0}calculateSize(t){return t?.byteLength!=null?t.byteLength:1}push(t){if(t?.value!=null&&(this.size+=this.calculateSize(t.value)),!this.head.push(t)){let e=this.head;this.head=e.next=new ao(2*this.head.buffer.length),this.head.push(t)}}shift(){let t=this.tail.shift();if(t===void 0&&this.tail.next!=null){let e=this.tail.next;this.tail.next=null,this.tail=e,t=this.tail.shift()}return t?.value!=null&&(this.size-=this.calculateSize(t.value)),t}isEmpty(){return this.head.isEmpty()}};var Oi=class extends Error{type;code;constructor(t,e){super(t??"The operation was aborted"),this.type="aborted",this.code=e??"ABORT_ERR"}};function Ce(r={}){return Dp(e=>{let n=e.shift();if(n==null)return{done:!0};if(n.error!=null)throw n.error;return{done:n.done===!0,value:n.value}},r)}function Dp(r,t){t=t??{};let e=t.onEnd,n=new wr,o,s,i,a=ht(),c=async()=>{try{return n.isEmpty()?i?{done:!0}:await new Promise((h,w)=>{s=x=>{s=null,n.push(x);try{h(r(n))}catch(p){w(p)}return o}}):r(n)}finally{n.isEmpty()&&queueMicrotask(()=>{a.resolve(),a=ht()})}},l=h=>s!=null?s(h):(n.push(h),o),u=h=>(n=new wr,s!=null?s({error:h}):(n.push({error:h}),o)),f=h=>{if(i)return o;if(t?.objectMode!==!0&&h?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return l({done:!1,value:h})},d=h=>i?o:(i=!0,h!=null?u(h):l({done:!0})),g=()=>(n=new wr,d(),{done:!0}),b=h=>(d(h),{done:!0});if(o={[Symbol.asyncIterator](){return this},next:c,return:g,throw:b,push:f,end:d,get readableLength(){return n.size},onEmpty:async h=>{let w=h?.signal;if(w?.throwIfAborted(),n.isEmpty())return;let x,p;w!=null&&(x=new Promise((I,R)=>{p=()=>{R(new Oi)},w.addEventListener("abort",p)}));try{await Promise.race([a.promise,x])}finally{p!=null&&w!=null&&w?.removeEventListener("abort",p)}}},e==null)return o;let m=o;return o={[Symbol.asyncIterator](){return this},next(){return m.next()},throw(h){return m.throw(h),e!=null&&(e(h),e=void 0),{done:!0}},return(){return m.return(),e!=null&&(e(),e=void 0),{done:!0}},push:f,end(h){return m.end(h),e!=null&&(e(h),e=void 0),o},get readableLength(){return m.readableLength},onEmpty:h=>m.onEmpty(h)},o}var co=class extends Error{type;code;constructor(t,e,n){super(t??"The operation was aborted"),this.type="aborted",this.name=n??"AbortError",this.code=e??"ABORT_ERR"}};async function jt(r,t,e){if(t==null)return r;if(t.aborted)return r.catch(()=>{}),Promise.reject(new co(e?.errorMessage,e?.errorCode,e?.errorName));let n,o=new co(e?.errorMessage,e?.errorCode,e?.errorName);try{return await Promise.race([r,new Promise((s,i)=>{n=()=>{i(o)},t.addEventListener("abort",n)})])}finally{n!=null&&t.removeEventListener("abort",n)}}function Vl(r){if(r!=null){if(typeof r[Symbol.iterator]=="function")return r[Symbol.iterator]();if(typeof r[Symbol.asyncIterator]=="function")return r[Symbol.asyncIterator]();if(typeof r.next=="function")return r}throw new Error("argument is not an iterator or iterable")}function ql(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function Gl(r,t){let e=Vl(r).return?.();ql(e)&&e.catch(n=>{t.error("could not cause iterator to return",n)})}var Np=5e3;function Mi(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}var lo=class{id;direction;timeline;protocol;metadata;source;status;readStatus;writeStatus;log;sinkController;sinkEnd;closed;endErr;streamSource;onEnd;onCloseRead;onCloseWrite;onReset;onAbort;sendCloseWriteTimeout;sendingData;constructor(t){this.sinkController=new AbortController,this.sinkEnd=ht(),this.closed=ht(),this.log=t.log,this.status="open",this.readStatus="ready",this.writeStatus="ready",this.id=t.id,this.metadata=t.metadata??{},this.direction=t.direction,this.timeline={open:Date.now()},this.sendCloseWriteTimeout=t.sendCloseWriteTimeout??Np,this.onEnd=t.onEnd,this.onCloseRead=t?.onCloseRead,this.onCloseWrite=t?.onCloseWrite,this.onReset=t?.onReset,this.onAbort=t?.onAbort,this.source=this.streamSource=Ce({onEnd:e=>{e!=null?this.log.trace("source ended with error",e):this.log.trace("source ended"),this.onSourceEnd(e)}}),this.sink=this.sink.bind(this)}async sink(t){if(this.writeStatus!=="ready")throw new Pe(`writable end state is "${this.writeStatus}" not "ready"`);try{this.writeStatus="writing";let e={signal:this.sinkController.signal};if(this.direction==="outbound"){let o=this.sendNewStream(e);Mi(o)&&await o}let n=()=>{Gl(t,this.log)};try{this.sinkController.signal.addEventListener("abort",n),this.log.trace("sink reading from source");for await(let o of t){o=o instanceof Uint8Array?new z(o):o;let s=this.sendData(o,e);Mi(s)&&(this.sendingData=ht(),await s,this.sendingData.resolve(),this.sendingData=void 0)}}finally{this.sinkController.signal.removeEventListener("abort",n)}this.log.trace('sink finished reading from source, write status is "%s"',this.writeStatus),this.writeStatus==="writing"&&(this.writeStatus="closing",this.log.trace("send close write to remote"),await this.sendCloseWrite({signal:AbortSignal.timeout(this.sendCloseWriteTimeout)}),this.writeStatus="closed"),this.onSinkEnd()}catch(e){throw this.log.trace("sink ended with error, calling abort with error",e),this.abort(e),e}finally{this.log.trace("resolve sink end"),this.sinkEnd.resolve()}}onSourceEnd(t){this.timeline.closeRead==null&&(this.timeline.closeRead=Date.now(),this.readStatus="closed",t!=null&&this.endErr==null&&(this.endErr=t),this.onCloseRead?.(),this.timeline.closeWrite!=null?(this.log.trace("source and sink ended"),this.timeline.close=Date.now(),this.status!=="aborted"&&this.status!=="reset"&&(this.status="closed"),this.onEnd!=null&&this.onEnd(this.endErr),this.closed.resolve()):this.log.trace("source ended, waiting for sink to end"))}onSinkEnd(t){this.timeline.closeWrite==null&&(this.timeline.closeWrite=Date.now(),this.writeStatus="closed",t!=null&&this.endErr==null&&(this.endErr=t),this.onCloseWrite?.(),this.timeline.closeRead!=null?(this.log.trace("sink and source ended"),this.timeline.close=Date.now(),this.status!=="aborted"&&this.status!=="reset"&&(this.status="closed"),this.onEnd!=null&&this.onEnd(this.endErr),this.closed.resolve()):this.log.trace("sink ended, waiting for source to end"))}async close(t){this.status==="open"&&(this.log.trace("closing gracefully"),this.status="closing",await jt(Promise.all([this.closeWrite(t),this.closeRead(t),this.closed.promise]),t?.signal),this.status="closed",this.log.trace("closed gracefully"))}async closeRead(t={}){if(this.readStatus==="closing"||this.readStatus==="closed")return;this.log.trace('closing readable end of stream with starting read status "%s"',this.readStatus);let e=this.readStatus;this.readStatus="closing",this.status!=="reset"&&this.status!=="aborted"&&this.timeline.closeRead==null&&(this.log.trace("send close read to remote"),await this.sendCloseRead(t)),e==="ready"&&(this.log.trace("ending internal source queue with %d queued bytes",this.streamSource.readableLength),this.streamSource.end()),this.log.trace("closed readable end of stream")}async closeWrite(t={}){this.writeStatus==="closing"||this.writeStatus==="closed"||(this.log.trace('closing writable end of stream with starting write status "%s"',this.writeStatus),this.writeStatus==="ready"&&(this.log.trace("sink was never sunk, sink an empty array"),await jt(this.sink([]),t.signal)),this.writeStatus==="writing"&&(this.sendingData!=null&&await jt(this.sendingData.promise,t.signal),this.log.trace("aborting source passed to .sink"),this.sinkController.abort(),await jt(this.sinkEnd.promise,t.signal)),this.writeStatus="closed",this.log.trace("closed writable end of stream"))}abort(t){if(this.status==="closed"||this.status==="aborted"||this.status==="reset")return;this.log("abort with error",t),this.log("try to send reset to remote");let e=this.sendReset();Mi(e)&&e.catch(n=>{this.log.error("error sending reset message",n)}),this.status="aborted",this.timeline.abort=Date.now(),this._closeSinkAndSource(t),this.onAbort?.(t)}reset(){if(this.status==="closed"||this.status==="aborted"||this.status==="reset")return;let t=new gn("stream reset");this.status="reset",this.timeline.reset=Date.now(),this._closeSinkAndSource(t),this.onReset?.()}_closeSinkAndSource(t){this._closeSink(t),this._closeSource(t)}_closeSink(t){this.writeStatus==="writing"&&(this.log.trace("end sink source"),this.sinkController.abort()),this.onSinkEnd(t)}_closeSource(t){this.readStatus!=="closing"&&this.readStatus!=="closed"&&(this.log.trace("ending source with %d bytes to be read by consumer",this.streamSource.readableLength),this.readStatus="closing",this.streamSource.end(t))}remoteCloseWrite(){if(this.readStatus==="closing"||this.readStatus==="closed"){this.log("received remote close write but local source is already closed");return}this.log.trace("remote close write"),this._closeSource()}remoteCloseRead(){if(this.writeStatus==="closing"||this.writeStatus==="closed"){this.log("received remote close read but local sink is already closed");return}this.log.trace("remote close read"),this._closeSink()}destroy(){if(this.status==="closed"||this.status==="aborted"||this.status==="reset"){this.log("received destroy but we are already closed");return}this.log.trace("stream destroyed"),this._closeSinkAndSource()}sourcePush(t){this.streamSource.push(t)}sourceReadableLength(){return this.streamSource.readableLength}};function Ki(r){let t=new globalThis.AbortController;function e(){t.abort();for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",e)}for(let s of r){if(s?.aborted===!0){e();break}s?.addEventListener!=null&&s.addEventListener("abort",e)}function n(){for(let s of r)s?.removeEventListener!=null&&s.removeEventListener("abort",e)}let o=t.signal;return o.clear=n,o}var uo=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},br=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},fo=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"},en=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};function ho(r){return r[Symbol.asyncIterator]!=null}function zl(r,t){if(r.byteLength>t)throw new br("Message length too long")}var mo=r=>{let t=Q(r),e=dt(t);return Ft(r,e),mo.bytes=t,e};mo.bytes=0;function rn(r,t){t=t??{};let e=t.lengthEncoder??mo,n=t?.maxDataLength??4194304;function*o(s){zl(s,n);let i=e(s.byteLength);i instanceof Uint8Array?yield i:yield*i,s instanceof Uint8Array?yield s:yield*s}return ho(r)?async function*(){for await(let s of r)yield*o(s)}():function*(){for(let s of r)yield*o(s)}()}rn.single=(r,t)=>{t=t??{};let e=t.lengthEncoder??mo,n=t?.maxDataLength??4194304;return zl(r,n),new z(e(r.byteLength),r)};var Xe;(function(r){r[r.LENGTH=0]="LENGTH",r[r.DATA=1]="DATA"})(Xe||(Xe={}));var Fi=r=>{let t=Ut(r);return Fi.bytes=Q(t),t};Fi.bytes=0;function nn(r,t){let e=new z,n=Xe.LENGTH,o=-1,s=t?.lengthDecoder??Fi,i=t?.maxLengthLength??8,a=t?.maxDataLength??4194304;function*c(){for(;e.byteLength>0;){if(n===Xe.LENGTH)try{if(o=s(e),o<0)throw new uo("Invalid message length");if(o>a)throw new br("Message length too long");let l=s.bytes;e.consume(l),t?.onLength!=null&&t.onLength(o),n=Xe.DATA}catch(l){if(l instanceof RangeError){if(e.byteLength>i)throw new fo("Message length length too long");break}throw l}if(n===Xe.DATA){if(e.byteLength<o)break;let l=e.sublist(0,o);e.consume(o),t?.onData!=null&&t.onData(l),yield l,n=Xe.LENGTH}}}return ho(r)?async function*(){for await(let l of r)e.append(l),yield*c();if(e.byteLength>0)throw new en("Unexpected end of input")}():function*(){for(let l of r)e.append(l),yield*c();if(e.byteLength>0)throw new en("Unexpected end of input")}()}nn.fromReader=(r,t)=>{let e=1,n=async function*(){for(;;)try{let{done:s,value:i}=await r.next(e);if(s===!0)return;i!=null&&(yield i)}catch(s){if(s.code==="ERR_UNDER_READ")return{done:!0,value:null};throw s}finally{e=1}}();return nn(n,{...t??{},onLength:s=>{e=s}})};var Hi=class extends Error{type;code;constructor(t,e){super(t??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=e??"ABORT_ERR"}};async function on(r,t,e,n){let o=new Hi(n?.errorMessage,n?.errorCode);return e?.aborted===!0?Promise.reject(o):new Promise((s,i)=>{function a(){e?.removeEventListener("abort",u),r.removeEventListener(t,c),n?.errorEvent!=null&&r.removeEventListener(n.errorEvent,l)}let c=f=>{try{if(n?.filter?.(f)===!1)return}catch(d){a(),i(d);return}a(),s(f)},l=f=>{a(),i(f.detail)},u=()=>{a(),i(o)};e?.addEventListener("abort",u),r.addEventListener(t,c),n?.errorEvent!=null&&r.addEventListener(n.errorEvent,l)})}var Vi=class extends lo{channel;incomingData;maxBufferedAmount;bufferedAmountLowEventTimeout;maxMessageSize;receiveFinAck;finAckTimeout;openTimeout;closeController;constructor(t){let e=t.onEnd;switch(t.onEnd=o=>{this.log.trace("readable and writeable ends closed",this.status),Promise.resolve(async()=>{if(!(this.timeline.abort!=null||this.timeline.reset!==null))try{await Qr(this.receiveFinAck.promise,{milliseconds:this.finAckTimeout})}catch(s){this.log.error("error receiving FIN_ACK",s)}}).then(()=>{this.incomingData.end(),this.channel.close(),e?.(o)}).catch(s=>{this.log.error("error ending stream",s)})},super(t),this.channel=t.channel,this.channel.binaryType="arraybuffer",this.incomingData=Ce(),this.bufferedAmountLowEventTimeout=t.bufferedAmountLowEventTimeout??Ll,this.maxBufferedAmount=t.maxBufferedAmount??Tl,this.maxMessageSize=(t.maxMessageSize??yr)-Bl,this.receiveFinAck=ht(),this.finAckTimeout=t.closeTimeout??Cl,this.openTimeout=t.openTimeout??_l,this.closeController=new AbortController,this.channel.readyState){case"open":this.timeline.open=new Date().getTime();break;case"closed":case"closing":(this.timeline.close===void 0||this.timeline.close===0)&&(this.timeline.close=Date.now());break;case"connecting":break;default:throw this.log.error("unknown datachannel state %s",this.channel.readyState),new Pe("Unknown datachannel state")}this.channel.onopen=o=>{this.timeline.open=new Date().getTime()},this.channel.onclose=o=>{this.log.trace("received onclose event"),this.closeController.abort(),this.receiveFinAck.resolve(),this.close().catch(s=>{this.log.error("error closing stream after channel closed",s)})},this.channel.onerror=o=>{this.log.trace("received onerror event"),this.closeController.abort();let s=o.error;this.abort(s)},this.channel.onmessage=async o=>{let{data:s}=o;s===null||s.byteLength===0||this.incomingData.push(new Uint8Array(s,0,s.byteLength))};let n=this;Promise.resolve().then(async()=>{for await(let o of nn(this.incomingData)){let s=n.processIncomingProtobuf(o);s!=null&&n.sourcePush(new z(s))}}).catch(o=>{this.log.error("error processing incoming data channel messages",o)})}sendNewStream(){}async _sendMessage(t,e=!0){if(this.channel.readyState==="closed"||this.channel.readyState==="closing")throw new Pe(`Invalid datachannel state - ${this.channel.readyState}`);if(this.channel.readyState!=="open"){let n=AbortSignal.timeout(this.openTimeout),o=Ki([this.closeController.signal,n]);try{this.log('channel state is "%s" and not "open", waiting for "open" event before sending data',this.channel.readyState),await on(this.channel,"open",o)}finally{o.clear()}this.log('channel state is now "%s", sending data',this.channel.readyState)}if(e&&this.channel.bufferedAmount>this.maxBufferedAmount){let n=AbortSignal.timeout(this.bufferedAmountLowEventTimeout),o=Ki([this.closeController.signal,n]);try{this.log('channel buffer is %d, wait for "bufferedamountlow" event',this.channel.bufferedAmount),await on(this.channel,"bufferedamountlow",o)}catch(s){throw n.aborted?new bn(`Timed out waiting for DataChannel buffer to clear after ${this.bufferedAmountLowEventTimeout}ms`):s}finally{o.clear()}}try{this.channel.send(t.subarray())}catch(n){this.log.error("error while sending message",n)}}async sendData(t){for(this.log.trace("-> will send %d bytes",t.byteLength),t=t.sublist();t.byteLength>0;){let e=Math.min(t.byteLength,this.maxMessageSize),n=t.subarray(0,e),o=Bt.encode({message:n}),s=rn.single(o);this.log.trace("-> sending message %s",this.channel.readyState),await this._sendMessage(s),this.log.trace("-> sent message %s",this.channel.readyState),t.consume(e)}this.log.trace("-> sent data %s",this.channel.readyState)}async sendReset(){try{await this._sendFlag(Bt.Flag.RESET)}catch(t){this.log.error("failed to send reset - %e",t)}}async sendCloseWrite(t){if(this.channel.readyState!=="open"){this.receiveFinAck.resolve();return}if(await this._sendFlag(Bt.Flag.FIN)){this.log.trace("awaiting FIN_ACK");try{await jt(this.receiveFinAck.promise,t?.signal,{errorMessage:"sending close-write was aborted before FIN_ACK was received",errorName:"FinAckNotReceivedError"})}catch(n){this.log.error("failed to await FIN_ACK",n)}}else this.log.trace("sending FIN failed, not awaiting FIN_ACK");this.receiveFinAck.resolve()}async sendCloseRead(){this.channel.readyState==="open"&&await this._sendFlag(Bt.Flag.STOP_SENDING)}processIncomingProtobuf(t){let e=Bt.decode(t);if(e.flag!==void 0&&(this.log.trace('incoming flag %s, write status "%s", read status "%s"',e.flag,this.writeStatus,this.readStatus),e.flag===Bt.Flag.FIN&&(this.remoteCloseWrite(),this.log.trace("sending FIN_ACK"),this._sendFlag(Bt.Flag.FIN_ACK).catch(n=>{this.log.error("error sending FIN_ACK immediately",n)})),e.flag===Bt.Flag.RESET&&this.reset(),e.flag===Bt.Flag.STOP_SENDING&&this.remoteCloseRead(),e.flag===Bt.Flag.FIN_ACK&&(this.log.trace("received FIN_ACK"),this.receiveFinAck.resolve())),this.readStatus==="ready")return e.message}async _sendFlag(t){if(this.channel.readyState!=="open")return this.log.trace('not sending flag %s because channel is "%s" and not "open"',this.channel.readyState,t.toString()),!1;this.log.trace("sending flag %s",t.toString());let e=Bt.encode({flag:t}),n=rn.single(e);try{return await this._sendMessage(n,!1),!0}catch(o){this.log.error("could not send flag %s - %e",t.toString(),o)}return!1}};function xr(r){let{channel:t,direction:e}=r;return new Vi({id:e==="inbound"?`i${t.id}`:`r${t.id}`,log:r.logger.forComponent(`libp2p:webrtc:stream:${e}:${t.id}`),...r})}var _e=class{protocol;peerConnection;bufferedStreams=[];metrics;dataChannelOptions;components;log;constructor(t,e){this.components=t,this.peerConnection=e.peerConnection,this.metrics=e.metrics,this.protocol=e.protocol??Di,this.dataChannelOptions=e.dataChannelOptions??{},this.log=t.logger.forComponent("libp2p:webrtc:muxerfactory"),this.peerConnection.ondatachannel=({channel:n})=>{if(this.log.trace('incoming early datachannel with channel id %d and label "%s"',n.id),n.label==="init"){this.log.trace("closing early init channel"),n.close();return}let o={},s=xr({channel:n,direction:"inbound",onEnd:i=>{o.onEnd(i)},logger:t.logger,...this.dataChannelOptions});o.stream=s,o.channel=n,o.onEnd=()=>{this.bufferedStreams=this.bufferedStreams.filter(i=>i.stream.id!==s.id)},this.bufferedStreams.push(o)}}createStreamMuxer(t){return new qi(this.components,{...t,peerConnection:this.peerConnection,dataChannelOptions:this.dataChannelOptions,metrics:this.metrics,streams:this.bufferedStreams,protocol:this.protocol})}},qi=class{init;streams;protocol;log;peerConnection;dataChannelOptions;metrics;logger;constructor(t,e){this.init=e,this.log=t.logger.forComponent("libp2p:webrtc:muxer"),this.logger=t.logger,this.streams=e.streams.map(n=>n.stream),this.peerConnection=e.peerConnection,this.protocol=e.protocol??Di,this.metrics=e.metrics,this.dataChannelOptions=e.dataChannelOptions??{},this.peerConnection.ondatachannel=({channel:n})=>{if(this.log.trace("incoming datachannel with channel id %d",n.id),n.label==="init"){this.log.trace("closing init channel"),n.close();return}let o=n.id,s=xr({channel:n,direction:"inbound",onEnd:()=>{this.#t(s,n),this.log("incoming channel %s ended",o)},logger:this.logger,...this.dataChannelOptions});this.streams.push(s),this.metrics?.increment({incoming_stream:!0}),e?.onIncomingStream?.(s)},this.init.streams.length>0&&queueMicrotask(()=>{this.init.streams.forEach(n=>{n.onEnd=()=>{this.log("incoming early channel %s ended with state %s",n.channel.id,n.channel.readyState),this.#t(n.stream,n.channel)},this.metrics?.increment({incoming_stream:!0}),this.init?.onIncomingStream?.(n.stream)})})}#t(t,e){this.log.trace("stream %s %s %s onEnd",t.direction,t.id,t.protocol),Fl(e,`${t.direction} ${t.id} ${t.protocol}`,this.dataChannelOptions.drainTimeout,{log:this.log}),this.streams=this.streams.filter(n=>n.id!==t.id),this.metrics?.increment({stream_end:!0}),this.init?.onStreamEnd?.(t)}async close(t){try{await Promise.all(this.streams.map(async e=>e.close(t)))}catch(e){this.abort(e)}}abort(t){for(let e of this.streams)e.abort(t)}source=so();sink=io;newStream(){let t=this.peerConnection.createDataChannel(""),e=t.id;this.log.trace("opened outgoing datachannel with channel id %s",e);let n=xr({channel:t,direction:"outbound",onEnd:()=>{this.#t(n,t),this.log("outgoing channel %s ended",e)},logger:this.logger,...this.dataChannelOptions});return this.streams.push(n),this.metrics?.increment({outgoing_stream:!0}),n}};var go=globalThis.RTCPeerConnection,yo=globalThis.RTCSessionDescription,Wl=globalThis.RTCIceCandidate;var Gi=class{readNext;haveNext;ended;nextResult;constructor(){this.ended=!1,this.readNext=ht(),this.haveNext=ht()}[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 t=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=ht(),t}async throw(t){return this.ended=!0,t!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(t)),{done:!0,value:void 0}}async return(){let t={done:!0,value:void 0};return await this._push(void 0),t}async push(t,e){await this._push(t,e)}async end(t,e){t!=null?await this.throw(t):await this._push(void 0,e)}async _push(t,e){if(t!=null&&this.ended)throw new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;t!=null?this.nextResult={done:!1,value:t}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=ht(),await jt(this.readNext.promise,e?.signal,e)}};function $l(){return new Gi}var wo=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};var zi=class extends Error{code;constructor(t,e){super(t),this.code=e}},Wi=class extends zi{type;constructor(t){super(t,"ABORT_ERR"),this.type="aborted",this.name="AbortError"}};function Xl(r,t){let e=$l();r.sink(e).catch(async i=>{await e.end(i)}),r.sink=async i=>{for await(let a of i)await e.push(a);await e.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 o=new z;return{read:async(i,a)=>{a?.signal?.throwIfAborted();let c,l=new Promise((u,f)=>{c=()=>{f(new Wi("Read aborted"))},a?.signal?.addEventListener("abort",c)});try{if(i==null){let{done:f,value:d}=await Promise.race([n.next(),l]);return f===!0?new z:d}for(;o.byteLength<i;){let{value:f,done:d}=await Promise.race([n.next(),l]);if(d===!0)throw new wo("unexpected end of input");o.append(f)}let u=o.sublist(0,i);return o.consume(i),u}finally{c!=null&&a?.signal?.removeEventListener("abort",c)}},write:async(i,a)=>{a?.signal?.throwIfAborted(),i instanceof Uint8Array?await e.push(i,a):await e.push(i.subarray(),a)},unwrap:()=>{if(o.byteLength>0){let i=r.source;r.source=async function*(){t?.yieldBytes===!1?yield o:yield*o,yield*i}()}return r}}}var bo=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},xo=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},Eo=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"};function sn(r,t={}){let e=Xl(r,t);t.maxDataLength!=null&&t.maxLengthLength==null&&(t.maxLengthLength=Q(t.maxDataLength));let n=t?.lengthDecoder??Ut,o=t?.lengthEncoder??Ft;return{read:async i=>{let a=-1,c=new z;for(;;){c.append(await e.read(1,i));try{a=n(c)}catch(l){if(l instanceof RangeError)continue;throw l}if(a<0)throw new bo("Invalid message length");if(t?.maxLengthLength!=null&&c.byteLength>t.maxLengthLength)throw new Eo("message length length too long");if(a>-1)break}if(t?.maxDataLength!=null&&a>t.maxDataLength)throw new xo("message length too long");return e.read(a,i)},write:async(i,a)=>{await e.write(new z(o(i.byteLength),i),a)},writeV:async(i,a)=>{let c=new z(...i.flatMap(l=>[o(l.byteLength),l]));await e.write(c,a)},unwrap:()=>e.unwrap()}}function So(r,t){let e=sn(r,t),n={read:async(o,s)=>{let i=await e.read(s);return o.decode(i)},write:async(o,s,i)=>{await e.write(s.encode(o),i)},writeV:async(o,s,i)=>{await e.writeV(o.map(a=>s.encode(a)),i)},pb:o=>({read:async s=>n.read(o,s),write:async(s,i)=>n.write(s,o,i),writeV:async(s,i)=>n.writeV(s,o,i),unwrap:()=>n}),unwrap:()=>e.unwrap()};return n}var Ot=class extends Event{type;detail;constructor(t,e){super(t),this.type=t,this.detail=e}};var Re=class extends Error{constructor(t){super(`WebRTC transport error: ${t}`),this.name="WebRTCTransportError"}},Vt=class extends Re{constructor(t="SDP handshake failed"){super(t),this.name="SDPHandshakeFailedError"}};var Ao=class extends Re{constructor(t,e){super(`Invalid fingerprint "${t}" within ${e}`),this.name="WebRTC/InvalidFingerprintError"}};var vo=class extends Re{constructor(t){super(`A method (${t}) was called though it has been intentionally left unimplemented.`),this.name="WebRTC/UnimplementedError"}},Io=class extends Re{constructor(t){super(`unsupported hash algorithm code: ${t} please see the codes at https://github.com/multiformats/multicodec/blob/master/table.csv `),this.name="WebRTC/UnsupportedHashAlgorithmError"}};var Nt;(function(r){let t;(function(o){o.SDP_OFFER="SDP_OFFER",o.SDP_ANSWER="SDP_ANSWER",o.ICE_CANDIDATE="ICE_CANDIDATE"})(t=r.Type||(r.Type={}));let e;(function(o){o[o.SDP_OFFER=0]="SDP_OFFER",o[o.SDP_ANSWER=1]="SDP_ANSWER",o[o.ICE_CANDIDATE=2]="ICE_CANDIDATE"})(e||(e={})),function(o){o.codec=()=>Ge(e)}(t=r.Type||(r.Type={}));let n;r.codec=()=>(n==null&&(n=Yt((o,s,i={})=>{i.lengthDelimited!==!1&&s.fork(),o.type!=null&&(s.uint32(8),r.Type.codec().encode(o.type,s)),o.data!=null&&(s.uint32(18),s.string(o.data)),i.lengthDelimited!==!1&&s.ldelim()},(o,s,i={})=>{let a={},c=s==null?o.len:o.pos+s;for(;o.pos<c;){let l=o.uint32();switch(l>>>3){case 1:{a.type=r.Type.codec().decode(o);break}case 2:{a.data=o.string();break}default:{o.skipType(l&7);break}}}return a})),n),r.encode=o=>Zt(o,r.codec()),r.decode=(o,s)=>Xt(o,r.codec(),s)})(Nt||(Nt={}));var To=async(r,t,e)=>{try{let n=ht();for(Op(r,n);;){let o=await Promise.race([n.promise,t.read({signal:e.signal}).catch(()=>{})]);if(o==null){e.signal?.throwIfAborted();break}if(o.type!==Nt.Type.ICE_CANDIDATE)throw new wn("ICE candidate message expected");let s=JSON.parse(o.data??"null");if(s===""||s===null){e.onProgress?.(new Ot("webrtc:end-of-ice-candidates")),e.log.trace("end-of-candidates received");continue}let i=new Wl(s);e.log.trace("%s received new ICE candidate %o",e.direction,s);try{e.onProgress?.(new Ot("webrtc:add-ice-candidate",i.candidate)),await r.addIceCandidate(i)}catch(a){e.log.error("%s bad candidate received",e.direction,s,a)}}}catch(n){if(e.log.error("%s error parsing ICE candidate",e.direction,n),e.signal?.aborted===!0&&Lo(r)!=="connected")throw n}};function Lo(r){return tn?r.iceConnectionState:r.connectionState}function Op(r,t){r[tn?"oniceconnectionstatechange":"onconnectionstatechange"]=e=>{switch(Lo(r)){case"connected":t.resolve();break;case"failed":case"disconnected":case"closed":t.reject(new mn("RTCPeerConnection was closed"));break;default:break}}}async function Zl({rtcConfiguration:r,dataChannel:t,signal:e,metrics:n,multiaddr:o,connectionManager:s,transportManager:i,log:a,logger:c,onProgress:l}){let{baseAddr:u}=Yl(o);n?.dialerEvents.increment({open:!0}),a.trace("dialing base address: %a",u);let f=u.getPeerId();if(f==null)throw new rt("Relay peer was missing");let d=s.getConnections(dr(f)),g,b=!1;d.length===0?(l?.(new Ot("webrtc:dial-relay")),g=await i.dial(u,{signal:e,onProgress:l}),b=!0):(l?.(new Ot("webrtc:reuse-relay-connection")),g=d[0]);try{l?.(new Ot("webrtc:open-signaling-stream"));let m=await g.newStream(Jr,{signal:e,runOnLimitedConnection:!0}),h=So(m).pb(Nt),w=new go(r),x=new _e({logger:c},{peerConnection:w,dataChannelOptions:t});try{let p=w.createDataChannel("init");w.onicecandidate=({candidate:v})=>{let C=JSON.stringify(v?.toJSON()??null);a.trace("initiator sending ICE candidate %o",v),h.write({type:Nt.Type.ICE_CANDIDATE,data:C},{signal:e}).catch(L=>{a.error("error sending ICE candidate",L)})},w.onicecandidateerror=v=>{a.error("initiator ICE candidate error",v)};let I=await w.createOffer().catch(v=>{throw a.error("could not execute createOffer",v),new Vt("Failed to set createOffer")});a.trace("initiator send SDP offer %s",I.sdp),l?.(new Ot("webrtc:send-sdp-offer")),await h.write({type:Nt.Type.SDP_OFFER,data:I.sdp},{signal:e}),await w.setLocalDescription(I).catch(v=>{throw a.error("could not execute setLocalDescription",v),new Vt("Failed to set localDescription")}),l?.(new Ot("webrtc:read-sdp-answer")),a.trace("initiator read SDP answer");let R=await h.read({signal:e});if(R.type!==Nt.Type.SDP_ANSWER)throw new Vt("Remote should send an SDP answer");a.trace("initiator received SDP answer %s",R.data);let _=new yo({type:"answer",sdp:R.data});return await w.setRemoteDescription(_).catch(v=>{throw a.error("could not execute setRemoteDescription",v),new Vt("Failed to set remoteDescription")}),a.trace("initiator read candidates until connected"),l?.(new Ot("webrtc:read-ice-candidates")),await To(w,h,{direction:"initiator",signal:e,log:a,onProgress:l}),a.trace("initiator connected, closing init channel"),p.close(),l?.(new Ot("webrtc:close-signaling-stream")),a.trace("closing signaling channel"),await m.close({signal:e}),a.trace("initiator connected to remote address %s",o),{remoteAddress:o,peerConnection:w,muxerFactory:x}}catch(p){throw a.error("outgoing signaling error",p),w.close(),m.abort(p),p}finally{w.onicecandidate=null,w.onicecandidateerror=null}}finally{if(b)try{await g.close({signal:e})}catch(m){g.abort(m)}}}var jl=ct(El.matchers[0],W("p2p-circuit")),Bo=class r extends Je{transportManager;shutdownController;events;constructor(t,e){super(),this.transportManager=t.transportManager,this.events=t.events,this.shutdownController=e.shutdownController,this.onTransportListening=this.onTransportListening.bind(this)}async listen(){this.events.addEventListener("transport:listening",this.onTransportListening)}onTransportListening(t){t.detail.getAddrs().filter(n=>jl.exactMatch(n)).map(n=>n.encapsulate("/webrtc")).length>0&&this.safeDispatchEvent("listening")}getAddrs(){return this.transportManager.getListeners().filter(t=>!(t instanceof r)).map(t=>t.getAddrs().filter(e=>jl.exactMatch(e)).map(e=>e.encapsulate("/webrtc"))).flat()}updateAnnounceAddrs(){}async close(){this.events.removeEventListener("transport:listening",this.onTransportListening),this.shutdownController.abort(),queueMicrotask(()=>{this.safeDispatchEvent("close")})}};async function Jl({peerConnection:r,stream:t,signal:e,connection:n,log:o}){o.trace("new inbound signaling stream");let s=So(t).pb(Nt);try{r.onicecandidate=({candidate:u})=>{let f=JSON.stringify(u?.toJSON()??null);o.trace("recipient sending ICE candidate %s",f),s.write({type:Nt.Type.ICE_CANDIDATE,data:f},{signal:e}).catch(d=>{o.error("error sending ICE candidate",d)})},o.trace("recipient read SDP offer");let a=await s.read({signal:e});if(a.type!==Nt.Type.SDP_OFFER)throw new Vt(`expected message type SDP_OFFER, received: ${a.type??"undefined"} `);o.trace("recipient received SDP offer %s",a.data);let c=new yo({type:"offer",sdp:a.data});await r.setRemoteDescription(c).catch(u=>{throw o.error("could not execute setRemoteDescription",u),new Vt("Failed to set remoteDescription")});let l=await r.createAnswer().catch(u=>{throw o.error("could not execute createAnswer",u),new Vt("Failed to create answer")});o.trace("recipient send SDP answer %s",l.sdp),await s.write({type:Nt.Type.SDP_ANSWER,data:l.sdp},{signal:e}),await r.setLocalDescription(l).catch(u=>{throw o.error("could not execute setLocalDescription",u),new Vt("Failed to set localDescription")}),o.trace("recipient read candidates until connected"),await To(r,s,{direction:"recipient",signal:e,log:o})}catch(a){if(Lo(r)!=="connected")throw o.error("error while handling signaling stream from peer %a",n.remoteAddr,a),r.close(),a;o("error while handling signaling stream from peer %a, ignoring as the RTCPeerConnection is already connected",n.remoteAddr,a)}let i=ee(`/webrtc/p2p/${n.remoteAddr.getPeerId()}`);return o.trace("recipient connected to remote address %s",i),{remoteAddress:i}}var Co=class{components;init;log;_started=!1;metrics;shutdownController;constructor(t,e={}){this.components=t,this.init=e,this.log=t.logger.forComponent("libp2p:webrtc"),this.shutdownController=new AbortController,this.shutdownController.signal,t.metrics!=null&&(this.metrics={dialerEvents:t.metrics.registerCounterGroup("libp2p_webrtc_dialer_events_total",{label:"event",help:"Total count of WebRTC dialer events by type"}),listenerEvents:t.metrics.registerCounterGroup("libp2p_webrtc_listener_events_total",{label:"event",help:"Total count of WebRTC listener events by type"})})}[dn]=!0;[Symbol.toStringTag]="@libp2p/webrtc";[Qe]=["@libp2p/transport"];[Ba]=["@libp2p/identify","@libp2p/circuit-relay-v2-transport"];isStarted(){return this._started}async start(){await this.components.registrar.handle(Jr,t=>{let e=this.components.upgrader.createInboundAbortSignal(this.shutdownController.signal);this._onProtocol(t,e).catch(n=>{this.log.error("failed to handle incoming connect from %p",t.connection.remotePeer,n)}).finally(()=>{e.clear()})},{runOnLimitedConnection:!0}),this._started=!0}async stop(){await this.components.registrar.unhandle(Jr),this._started=!1}createListener(t){return new Bo(this.components,{shutdownController:this.shutdownController})}listenFilter(t){return t.filter(Sl.exactMatch)}dialFilter(t){return this.listenFilter(t)}async dial(t,e){this.log.trace("dialing address: %a",t);let{remoteAddress:n,peerConnection:o,muxerFactory:s}=await Zl({rtcConfiguration:await ki(this.init.rtcConfiguration),dataChannel:this.init.dataChannel,multiaddr:t,dataChannelOptions:this.init.dataChannel,signal:e.signal,connectionManager:this.components.connectionManager,transportManager:this.components.transportManager,log:this.log,logger:this.components.logger,onProgress:e.onProgress}),i=new $e(this.components,{peerConnection:o,timeline:{open:Date.now()},remoteAddr:n,metrics:this.metrics?.dialerEvents}),a=await e.upgrader.upgradeOutbound(i,{skipProtection:!0,skipEncryption:!0,muxerFactory:s,onProgress:e.onProgress,signal:e.signal});return this._closeOnShutdown(o,i),a}async _onProtocol({connection:t,stream:e},n){let o=new go(await ki(this.init.rtcConfiguration)),s=new _e(this.components,{peerConnection:o,dataChannelOptions:this.init.dataChannel});try{let{remoteAddress:i}=await Jl({peerConnection:o,connection:t,stream:e,signal:n,log:this.log});await e.close({signal:n});let a=new $e(this.components,{peerConnection:o,timeline:{open:new Date().getTime()},remoteAddr:i,metrics:this.metrics?.listenerEvents});await this.components.upgrader.upgradeInbound(a,{skipEncryption:!0,skipProtection:!0,muxerFactory:s,signal:n}),this._closeOnShutdown(o,a)}catch(i){throw this.log.error("incoming signaling error",i),o.close(),e.abort(i),i}}_closeOnShutdown(t,e){let n=()=>{e.close().catch(o=>{this.log.error("could not close WebRTCMultiaddrConnection",o)})};this.shutdownController.signal.addEventListener("abort",n),t.addEventListener("close",()=>{this.shutdownController.signal.removeEventListener("abort",n)})}};function Yl(r){let t=r.toString().split("/webrtc/");if(t.length!==2)throw new rt("webrtc protocol was not present in multiaddr");if(!t[0].includes("/p2p-circuit"))throw new rt("p2p-circuit protocol was not present in multiaddr");let e=ee(t[0]),o=ee("/"+t[1]).getPeerId();if(o==null)throw new rt("destination peer id was missing");let s=e.protos().pop();if(s===void 0)throw new rt("invalid multiaddr");return s.name!=="p2p"&&(e=e.encapsulate(`/p2p/${o}`)),{baseAddr:e,peerId:dr(o)}}var _o=class extends Je{async listen(){throw new vo("WebRTCTransport.createListener")}getAddrs(){return[]}updateAnnounceAddrs(){}async close(){}};function Ro(r){return r[Symbol.asyncIterator]!=null}var Po=r=>{let t=Q(r),e=dt(t);return Ft(r,e),Po.bytes=t,e};Po.bytes=0;function Ql(r,t){t=t??{};let e=t.lengthEncoder??Po;function*n(o){let s=e(o.byteLength);s instanceof Uint8Array?yield s:yield*s,o instanceof Uint8Array?yield o:yield*o}return Ro(r)?async function*(){for await(let o of r)yield*n(o)}():function*(){for(let o of r)yield*n(o)}()}Ql.single=(r,t)=>{t=t??{};let e=t.lengthEncoder??Po;return new z(e(r.byteLength),r)};var Do=class extends Error{name="InvalidMessageLengthError";code="ERR_INVALID_MSG_LENGTH"},No=class extends Error{name="InvalidDataLengthError";code="ERR_MSG_DATA_TOO_LONG"},Uo=class extends Error{name="InvalidDataLengthLengthError";code="ERR_MSG_LENGTH_TOO_LONG"},an=class extends Error{name="UnexpectedEOFError";code="ERR_UNEXPECTED_EOF"};var Mp=8,Kp=1024*1024*4,Ze;(function(r){r[r.LENGTH=0]="LENGTH",r[r.DATA=1]="DATA"})(Ze||(Ze={}));var $i=r=>{let t=Ut(r);return $i.bytes=Q(t),t};$i.bytes=0;function cn(r,t){let e=new z,n=Ze.LENGTH,o=-1,s=t?.lengthDecoder??$i,i=t?.maxLengthLength??Mp,a=t?.maxDataLength??Kp;function*c(){for(;e.byteLength>0;){if(n===Ze.LENGTH)try{if(o=s(e),o<0)throw new Do("Invalid message length");if(o>a)throw new No("Message length too long");let l=s.bytes;e.consume(l),t?.onLength!=null&&t.onLength(o),n=Ze.DATA}catch(l){if(l instanceof RangeError){if(e.byteLength>i)throw new Uo("Message length length too long");break}throw l}if(n===Ze.DATA){if(e.byteLength<o)break;let l=e.sublist(0,o);e.consume(o),t?.onData!=null&&t.onData(l),yield l,n=Ze.LENGTH}}}return Ro(r)?async function*(){for await(let l of r)e.append(l),yield*c();if(e.byteLength>0)throw new an("Unexpected end of input")}():function*(){for(let l of r)e.append(l),yield*c();if(e.byteLength>0)throw new an("Unexpected end of input")}()}cn.fromReader=(r,t)=>{let e=1,n=async function*(){for(;;)try{let{done:s,value:i}=await r.next(e);if(s===!0)return;i!=null&&(yield i)}catch(s){if(s.code==="ERR_UNDER_READ")return{done:!0,value:null};throw s}finally{e=1}}();return cn(n,{...t??{},onLength:s=>{e=s}})};function Xi(){let r=ht(),t=!1;return{sink:async e=>{if(t)throw new Error("already piped");t=!0,r.resolve(e)},source:async function*(){yield*await r.promise}()}}function tu(){let r=Xi(),t=Xi();return[{source:r.source,sink:t.sink},{source:t.source,sink:r.sink}]}function Fp(r){return r[Symbol.asyncIterator]!=null}function Hp(...r){let t=[];for(let e of r)Fp(e)||t.push(e);return t.length===r.length?function*(){for(let e of t)yield*e}():async function*(){let e=Ce({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async n=>{for await(let o of n)e.push(o)})),e.end()}catch(n){e.end(n)}}),yield*e}()}var eu=Hp;function ru(r,...t){if(r==null)throw new Error("Empty pipeline");if(Zi(r)){let n=r;r=()=>n.source}else if(ou(r)||nu(r)){let n=r;r=()=>n}let e=[r,...t];if(e.length>1&&Zi(e[e.length-1])&&(e[e.length-1]=e[e.length-1].sink),e.length>2)for(let n=1;n<e.length-1;n++)Zi(e[n])&&(e[n]=qp(e[n]));return Vp(...e)}var Vp=(...r)=>{let t;for(;r.length>0;)t=r.shift()(t);return t},nu=r=>r?.[Symbol.asyncIterator]!=null,ou=r=>r?.[Symbol.iterator]!=null,Zi=r=>r==null?!1:r.sink!=null&&r.source!=null,qp=r=>t=>{let e=r.sink(t);if(e?.then!=null){let n=Ce({objectMode:!0});e.then(()=>{n.end()},i=>{n.end(i)});let o,s=r.source;if(nu(s))o=async function*(){yield*s,n.end()};else if(ou(s))o=function*(){yield*s,n.end()};else throw new Error("Unknown duplex source type - must be Iterable or AsyncIterable");return eu(n,o())}return r.source};var Er=!!globalThis.process?.env?.DUMP_SESSION_KEYS;function ko(r){if(!Number.isSafeInteger(r)||r<0)throw new Error("positive integer expected, got "+r)}function Yi(r){return r instanceof Uint8Array||ArrayBuffer.isView(r)&&r.constructor.name==="Uint8Array"}function Ct(r,...t){if(!Yi(r))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(r.length))throw new Error("Uint8Array expected of length "+t+", got length="+r.length)}function ji(r,t=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(t&&r.finished)throw new Error("Hash#digest() has already been called")}function su(r,t){Ct(r);let e=t.outputLen;if(r.length<e)throw new Error("digestInto() expects output buffer of length at least "+e)}function Ji(r){if(typeof r!="boolean")throw new Error(`boolean expected, not ${r}`)}var me=r=>new Uint32Array(r.buffer,r.byteOffset,Math.floor(r.byteLength/4)),iu=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),Gp=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;if(!Gp)throw new Error("Non little-endian hardware is not supported");function zp(r){if(typeof r!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(r))}function Oo(r){if(typeof r=="string")r=zp(r);else if(Yi(r))r=Mo(r);else throw new Error("Uint8Array expected, got "+typeof r);return r}function au(r,t){if(t==null||typeof t!="object")throw new Error("options must be defined");return Object.assign(r,t)}function cu(r,t){if(r.length!==t.length)return!1;let e=0;for(let n=0;n<r.length;n++)e|=r[n]^t[n];return e===0}var Qi=(r,t)=>{function e(n,...o){if(Ct(n),r.nonceLength!==void 0){let u=o[0];if(!u)throw new Error("nonce / iv required");r.varSizeNonce?Ct(u):Ct(u,r.nonceLength)}let s=r.tagLength;s&&o[1]!==void 0&&Ct(o[1]);let i=t(n,...o),a=(u,f)=>{if(f!==void 0){if(u!==2)throw new Error("cipher output not supported");Ct(f)}},c=!1;return{encrypt(u,f){if(c)throw new Error("cannot encrypt() twice with same key + nonce");return c=!0,Ct(u),a(i.encrypt.length,f),i.encrypt(u,f)},decrypt(u,f){if(Ct(u),s&&u.length<s)throw new Error("invalid ciphertext length: smaller than tagLength="+s);return a(i.decrypt.length,f),i.decrypt(u,f)}}}return Object.assign(e,r),e};function ta(r,t,e=!0){if(t===void 0)return new Uint8Array(r);if(t.length!==r)throw new Error("invalid output length, expected "+r+", got: "+t.length);if(e&&!Wp(t))throw new Error("invalid output, must be aligned");return t}function ea(r,t,e,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(t,e,n);let o=BigInt(32),s=BigInt(4294967295),i=Number(e>>o&s),a=Number(e&s),c=n?4:0,l=n?0:4;r.setUint32(t+c,i,n),r.setUint32(t+l,a,n)}function Wp(r){return r.byteOffset%4===0}function Mo(r){return Uint8Array.from(r)}function ge(...r){for(let t=0;t<r.length;t++)r[t].fill(0)}var uu=r=>Uint8Array.from(r.split("").map(t=>t.charCodeAt(0))),$p=uu("expand 16-byte k"),Xp=uu("expand 32-byte k"),Zp=me($p),Yp=me(Xp);function U(r,t){return r<<t|r>>>32-t}function ra(r){return r.byteOffset%4===0}var Ko=64,jp=16,fu=2**32-1,lu=new Uint32Array;function Jp(r,t,e,n,o,s,i,a){let c=o.length,l=new Uint8Array(Ko),u=me(l),f=ra(o)&&ra(s),d=f?me(o):lu,g=f?me(s):lu;for(let b=0;b<c;i++){if(r(t,e,n,u,i,a),i>=fu)throw new Error("arx: counter overflow");let m=Math.min(Ko,c-b);if(f&&m===Ko){let h=b/4;if(b%4!==0)throw new Error("arx: invalid block position");for(let w=0,x;w<jp;w++)x=h+w,g[x]=d[x]^u[w];b+=Ko;continue}for(let h=0,w;h<m;h++)w=b+h,s[w]=o[w]^l[h];b+=m}}function na(r,t){let{allowShortKeys:e,extendNonceFn:n,counterLength:o,counterRight:s,rounds:i}=au({allowShortKeys:!1,counterLength:8,counterRight:!1,rounds:20},t);if(typeof r!="function")throw new Error("core must be a function");return ko(o),ko(i),Ji(s),Ji(e),(a,c,l,u,f=0)=>{Ct(a),Ct(c),Ct(l);let d=l.length;if(u===void 0&&(u=new Uint8Array(d)),Ct(u),ko(f),f<0||f>=fu)throw new Error("arx: counter overflow");if(u.length<d)throw new Error(`arx: output (${u.length}) is shorter than data (${d})`);let g=[],b=a.length,m,h;if(b===32)g.push(m=Mo(a)),h=Yp;else if(b===16&&e)m=new Uint8Array(32),m.set(a),m.set(a,16),h=Zp,g.push(m);else throw new Error(`arx: invalid 32-byte key, got length=${b}`);ra(c)||g.push(c=Mo(c));let w=me(m);if(n){if(c.length!==24)throw new Error("arx: extended nonce must be 24 bytes");n(h,w,me(c.subarray(0,16)),w),c=c.subarray(16)}let x=16-o;if(x!==c.length)throw new Error(`arx: nonce must be ${x} or 16 bytes`);if(x!==12){let I=new Uint8Array(12);I.set(c,s?0:12-c.length),c=I,g.push(c)}let p=me(c);return Jp(r,h,w,p,l,u,f,i),ge(...g),u}}var Et=(r,t)=>r[t++]&255|(r[t++]&255)<<8,oa=class{constructor(t){this.blockLen=16,this.outputLen=16,this.buffer=new Uint8Array(16),this.r=new Uint16Array(10),this.h=new Uint16Array(10),this.pad=new Uint16Array(8),this.pos=0,this.finished=!1,t=Oo(t),Ct(t,32);let e=Et(t,0),n=Et(t,2),o=Et(t,4),s=Et(t,6),i=Et(t,8),a=Et(t,10),c=Et(t,12),l=Et(t,14);this.r[0]=e&8191,this.r[1]=(e>>>13|n<<3)&8191,this.r[2]=(n>>>10|o<<6)&7939,this.r[3]=(o>>>7|s<<9)&8191,this.r[4]=(s>>>4|i<<12)&255,this.r[5]=i>>>1&8190,this.r[6]=(i>>>14|a<<2)&8191,this.r[7]=(a>>>11|c<<5)&8065,this.r[8]=(c>>>8|l<<8)&8191,this.r[9]=l>>>5&127;for(let u=0;u<8;u++)this.pad[u]=Et(t,16+2*u)}process(t,e,n=!1){let o=n?0:2048,{h:s,r:i}=this,a=i[0],c=i[1],l=i[2],u=i[3],f=i[4],d=i[5],g=i[6],b=i[7],m=i[8],h=i[9],w=Et(t,e+0),x=Et(t,e+2),p=Et(t,e+4),I=Et(t,e+6),R=Et(t,e+8),_=Et(t,e+10),v=Et(t,e+12),C=Et(t,e+14),L=s[0]+(w&8191),M=s[1]+((w>>>13|x<<3)&8191),N=s[2]+((x>>>10|p<<6)&8191),O=s[3]+((p>>>7|I<<9)&8191),F=s[4]+((I>>>4|R<<12)&8191),T=s[5]+(R>>>1&8191),B=s[6]+((R>>>14|_<<2)&8191),E=s[7]+((_>>>11|v<<5)&8191),y=s[8]+((v>>>8|C<<8)&8191),A=s[9]+(C>>>5|o),S=0,P=S+L*a+M*(5*h)+N*(5*m)+O*(5*b)+F*(5*g);S=P>>>13,P&=8191,P+=T*(5*d)+B*(5*f)+E*(5*u)+y*(5*l)+A*(5*c),S+=P>>>13,P&=8191;let D=S+L*c+M*a+N*(5*h)+O*(5*m)+F*(5*b);S=D>>>13,D&=8191,D+=T*(5*g)+B*(5*d)+E*(5*f)+y*(5*u)+A*(5*l),S+=D>>>13,D&=8191;let k=S+L*l+M*c+N*a+O*(5*h)+F*(5*m);S=k>>>13,k&=8191,k+=T*(5*b)+B*(5*g)+E*(5*d)+y*(5*f)+A*(5*u),S+=k>>>13,k&=8191;let H=S+L*u+M*l+N*c+O*a+F*(5*h);S=H>>>13,H&=8191,H+=T*(5*m)+B*(5*b)+E*(5*g)+y*(5*d)+A*(5*f),S+=H>>>13,H&=8191;let K=S+L*f+M*u+N*l+O*c+F*a;S=K>>>13,K&=8191,K+=T*(5*h)+B*(5*m)+E*(5*b)+y*(5*g)+A*(5*d),S+=K>>>13,K&=8191;let G=S+L*d+M*f+N*u+O*l+F*c;S=G>>>13,G&=8191,G+=T*a+B*(5*h)+E*(5*m)+y*(5*b)+A*(5*g),S+=G>>>13,G&=8191;let X=S+L*g+M*d+N*f+O*u+F*l;S=X>>>13,X&=8191,X+=T*c+B*a+E*(5*h)+y*(5*m)+A*(5*b),S+=X>>>13,X&=8191;let st=S+L*b+M*g+N*d+O*f+F*u;S=st>>>13,st&=8191,st+=T*l+B*c+E*a+y*(5*h)+A*(5*m),S+=st>>>13,st&=8191;let it=S+L*m+M*b+N*g+O*d+F*f;S=it>>>13,it&=8191,it+=T*u+B*l+E*c+y*a+A*(5*h),S+=it>>>13,it&=8191;let lt=S+L*h+M*m+N*b+O*g+F*d;S=lt>>>13,lt&=8191,lt+=T*f+B*u+E*l+y*c+A*a,S+=lt>>>13,lt&=8191,S=(S<<2)+S|0,S=S+P|0,P=S&8191,S=S>>>13,D+=S,s[0]=P,s[1]=D,s[2]=k,s[3]=H,s[4]=K,s[5]=G,s[6]=X,s[7]=st,s[8]=it,s[9]=lt}finalize(){let{h:t,pad:e}=this,n=new Uint16Array(10),o=t[1]>>>13;t[1]&=8191;for(let a=2;a<10;a++)t[a]+=o,o=t[a]>>>13,t[a]&=8191;t[0]+=o*5,o=t[0]>>>13,t[0]&=8191,t[1]+=o,o=t[1]>>>13,t[1]&=8191,t[2]+=o,n[0]=t[0]+5,o=n[0]>>>13,n[0]&=8191;for(let a=1;a<10;a++)n[a]=t[a]+o,o=n[a]>>>13,n[a]&=8191;n[9]-=8192;let s=(o^1)-1;for(let a=0;a<10;a++)n[a]&=s;s=~s;for(let a=0;a<10;a++)t[a]=t[a]&s|n[a];t[0]=(t[0]|t[1]<<13)&65535,t[1]=(t[1]>>>3|t[2]<<10)&65535,t[2]=(t[2]>>>6|t[3]<<7)&65535,t[3]=(t[3]>>>9|t[4]<<4)&65535,t[4]=(t[4]>>>12|t[5]<<1|t[6]<<14)&65535,t[5]=(t[6]>>>2|t[7]<<11)&65535,t[6]=(t[7]>>>5|t[8]<<8)&65535,t[7]=(t[8]>>>8|t[9]<<5)&65535;let i=t[0]+e[0];t[0]=i&65535;for(let a=1;a<8;a++)i=(t[a]+e[a]|0)+(i>>>16)|0,t[a]=i&65535;ge(n)}update(t){ji(this);let{buffer:e,blockLen:n}=this;t=Oo(t);let o=t.length;for(let s=0;s<o;){let i=Math.min(n-this.pos,o-s);if(i===n){for(;n<=o-s;s+=n)this.process(t,s);continue}e.set(t.subarray(s,s+i),this.pos),this.pos+=i,s+=i,this.pos===n&&(this.process(e,0,!1),this.pos=0)}return this}destroy(){ge(this.h,this.r,this.buffer,this.pad)}digestInto(t){ji(this),su(t,this),this.finished=!0;let{buffer:e,h:n}=this,{pos:o}=this;if(o){for(e[o++]=1;o<16;o++)e[o]=0;this.process(e,0,!0)}this.finalize();let s=0;for(let i=0;i<8;i++)t[s++]=n[i]>>>0,t[s++]=n[i]>>>8;return t}digest(){let{buffer:t,outputLen:e}=this;this.digestInto(t);let n=t.slice(0,e);return this.destroy(),n}};function Qp(r){let t=(n,o)=>r(o).update(Oo(n)).digest(),e=r(new Uint8Array(32));return t.outputLen=e.outputLen,t.blockLen=e.blockLen,t.create=n=>r(n),t}var hu=Qp(r=>new oa(r));function mu(r,t,e,n,o,s=20){let i=r[0],a=r[1],c=r[2],l=r[3],u=t[0],f=t[1],d=t[2],g=t[3],b=t[4],m=t[5],h=t[6],w=t[7],x=o,p=e[0],I=e[1],R=e[2],_=i,v=a,C=c,L=l,M=u,N=f,O=d,F=g,T=b,B=m,E=h,y=w,A=x,S=p,P=I,D=R;for(let H=0;H<s;H+=2)_=_+M|0,A=U(A^_,16),T=T+A|0,M=U(M^T,12),_=_+M|0,A=U(A^_,8),T=T+A|0,M=U(M^T,7),v=v+N|0,S=U(S^v,16),B=B+S|0,N=U(N^B,12),v=v+N|0,S=U(S^v,8),B=B+S|0,N=U(N^B,7),C=C+O|0,P=U(P^C,16),E=E+P|0,O=U(O^E,12),C=C+O|0,P=U(P^C,8),E=E+P|0,O=U(O^E,7),L=L+F|0,D=U(D^L,16),y=y+D|0,F=U(F^y,12),L=L+F|0,D=U(D^L,8),y=y+D|0,F=U(F^y,7),_=_+N|0,D=U(D^_,16),E=E+D|0,N=U(N^E,12),_=_+N|0,D=U(D^_,8),E=E+D|0,N=U(N^E,7),v=v+O|0,A=U(A^v,16),y=y+A|0,O=U(O^y,12),v=v+O|0,A=U(A^v,8),y=y+A|0,O=U(O^y,7),C=C+F|0,S=U(S^C,16),T=T+S|0,F=U(F^T,12),C=C+F|0,S=U(S^C,8),T=T+S|0,F=U(F^T,7),L=L+M|0,P=U(P^L,16),B=B+P|0,M=U(M^B,12),L=L+M|0,P=U(P^L,8),B=B+P|0,M=U(M^B,7);let k=0;n[k++]=i+_|0,n[k++]=a+v|0,n[k++]=c+C|0,n[k++]=l+L|0,n[k++]=u+M|0,n[k++]=f+N|0,n[k++]=d+O|0,n[k++]=g+F|0,n[k++]=b+T|0,n[k++]=m+B|0,n[k++]=h+E|0,n[k++]=w+y|0,n[k++]=x+A|0,n[k++]=p+S|0,n[k++]=I+P|0,n[k++]=R+D|0}function tm(r,t,e,n){let o=r[0],s=r[1],i=r[2],a=r[3],c=t[0],l=t[1],u=t[2],f=t[3],d=t[4],g=t[5],b=t[6],m=t[7],h=e[0],w=e[1],x=e[2],p=e[3];for(let R=0;R<20;R+=2)o=o+c|0,h=U(h^o,16),d=d+h|0,c=U(c^d,12),o=o+c|0,h=U(h^o,8),d=d+h|0,c=U(c^d,7),s=s+l|0,w=U(w^s,16),g=g+w|0,l=U(l^g,12),s=s+l|0,w=U(w^s,8),g=g+w|0,l=U(l^g,7),i=i+u|0,x=U(x^i,16),b=b+x|0,u=U(u^b,12),i=i+u|0,x=U(x^i,8),b=b+x|0,u=U(u^b,7),a=a+f|0,p=U(p^a,16),m=m+p|0,f=U(f^m,12),a=a+f|0,p=U(p^a,8),m=m+p|0,f=U(f^m,7),o=o+l|0,p=U(p^o,16),b=b+p|0,l=U(l^b,12),o=o+l|0,p=U(p^o,8),b=b+p|0,l=U(l^b,7),s=s+u|0,h=U(h^s,16),m=m+h|0,u=U(u^m,12),s=s+u|0,h=U(h^s,8),m=m+h|0,u=U(u^m,7),i=i+f|0,w=U(w^i,16),d=d+w|0,f=U(f^d,12),i=i+f|0,w=U(w^i,8),d=d+w|0,f=U(f^d,7),a=a+c|0,x=U(x^a,16),g=g+x|0,c=U(c^g,12),a=a+c|0,x=U(x^a,8),g=g+x|0,c=U(c^g,7);let I=0;n[I++]=o,n[I++]=s,n[I++]=i,n[I++]=a,n[I++]=h,n[I++]=w,n[I++]=x,n[I++]=p}var em=na(mu,{counterRight:!1,counterLength:4,allowShortKeys:!1}),rm=na(mu,{counterRight:!1,counterLength:8,extendNonceFn:tm,allowShortKeys:!1});var nm=new Uint8Array(16),du=(r,t)=>{r.update(t);let e=t.length%16;e&&r.update(nm.subarray(e))},om=new Uint8Array(32);function pu(r,t,e,n,o){let s=r(t,e,om),i=hu.create(s);o&&du(i,o),du(i,n);let a=new Uint8Array(16),c=iu(a);ea(c,0,BigInt(o?o.length:0),!0),ea(c,8,BigInt(n.length),!0),i.update(a);let l=i.digest();return ge(s,a),l}var gu=r=>(t,e,n)=>({encrypt(s,i){let a=s.length;i=ta(a+16,i,!1),i.set(s);let c=i.subarray(0,-16);r(t,e,c,c,1);let l=pu(r,t,e,c,n);return i.set(l,a),ge(l),i},decrypt(s,i){i=ta(s.length-16,i,!1);let a=s.subarray(0,-16),c=s.subarray(-16),l=pu(r,t,e,a,n);if(!cu(c,l))throw new Error("invalid tag");return i.set(s.subarray(0,-16)),r(t,e,i,i,1),ge(l),i}}),sa=Qi({blockSize:64,nonceLength:12,tagLength:16},gu(em)),mS=Qi({blockSize:64,nonceLength:24,tagLength:16},gu(rm));function wu(r,t,e){return _r(r),e===void 0&&(e=new Uint8Array(r.outputLen)),hr(r,be(e),be(t))}var ia=new Uint8Array([0]),yu=new Uint8Array;function bu(r,t,e,n=32){if(_r(r),En(n),n>255*r.outputLen)throw new Error("Length should be <= 255*HashLen");let o=Math.ceil(n/r.outputLen);e===void 0&&(e=yu);let s=new Uint8Array(o*r.outputLen),i=hr.create(r,t),a=i._cloneInto(),c=new Uint8Array(i.outputLen);for(let l=0;l<o;l++)ia[0]=l+1,a.update(l===0?yu:c).update(e).update(ia).digestInto(c),s.set(c,r.outputLen*l),i._cloneInto(a);return i.destroy(),a.destroy(),c.fill(0),ia.fill(0),s.slice(0,n)}var aa={hashSHA256(r){return te(r.subarray())},getHKDF(r,t){let e=wu(te,t,r),o=bu(te,e,void 0,96),s=o.subarray(0,32),i=o.subarray(32,64),a=o.subarray(64,96);return[s,i,a]},generateX25519KeyPair(){let r=kr.utils.randomPrivateKey();return{publicKey:kr.getPublicKey(r),privateKey:r}},generateX25519KeyPairFromSeed(r){return{publicKey:kr.getPublicKey(r),privateKey:r}},generateX25519SharedKey(r,t){return kr.getSharedSecret(r.subarray(),t.subarray())},chaCha20Poly1305Encrypt(r,t,e,n){return sa(n,t,e).encrypt(r.subarray())},chaCha20Poly1305Decrypt(r,t,e,n,o){return sa(n,t,e).decrypt(r.subarray(),o)}};var xu=aa;function Eu(r){return{generateKeypair:r.generateX25519KeyPair,dh:(t,e)=>r.generateX25519SharedKey(t.privateKey,e).subarray(0,32),encrypt:r.chaCha20Poly1305Encrypt,decrypt:r.chaCha20Poly1305Decrypt,hash:r.hashSHA256,hkdf:r.getHKDF}}var Sr=r=>{let t=dt(2);return t[0]=r>>8,t[1]=r,t};Sr.bytes=2;var ln=r=>{if(r.length<2)throw RangeError("Could not decode int16BE");if(r instanceof Uint8Array){let t=0;return t+=r[0]<<8,t+=r[1],t}return r.getUint16(0)};ln.bytes=2;function Su(r){return{xxHandshakeSuccesses:r.registerCounter("libp2p_noise_xxhandshake_successes_total",{help:"Total count of noise xxHandshakes successes_"}),xxHandshakeErrors:r.registerCounter("libp2p_noise_xxhandshake_error_total",{help:"Total count of noise xxHandshakes errors"}),encryptedPackets:r.registerCounter("libp2p_noise_encrypted_packets_total",{help:"Total count of noise encrypted packets successfully"}),decryptedPackets:r.registerCounter("libp2p_noise_decrypted_packets_total",{help:"Total count of noise decrypted packets"}),decryptErrors:r.registerCounter("libp2p_noise_decrypt_errors_total",{help:"Total count of noise decrypt errors"})}}function ca(r,t){!t.enabled||!Er||(r?(t(`LOCAL_STATIC_PUBLIC_KEY ${q(r.publicKey,"hex")}`),t(`LOCAL_STATIC_PRIVATE_KEY ${q(r.privateKey,"hex")}`)):t("Missing local static keys."))}function la(r,t){!t.enabled||!Er||(r?(t(`LOCAL_PUBLIC_EPHEMERAL_KEY ${q(r.publicKey,"hex")}`),t(`LOCAL_PRIVATE_EPHEMERAL_KEY ${q(r.privateKey,"hex")}`)):t("Missing local ephemeral keys."))}function Au(r,t){!t.enabled||!Er||t(r?`REMOTE_STATIC_PUBLIC_KEY ${q(r.subarray(),"hex")}`:"Missing remote static public key.")}function ua(r,t){!t.enabled||!Er||t(r?`REMOTE_EPHEMERAL_PUBLIC_KEY ${q(r.subarray(),"hex")}`:"Missing remote ephemeral keys.")}function fa(r,t,e){!e.enabled||!Er||(e(`CIPHER_STATE_1 ${r.n.getUint64()} ${r.k&&q(r.k,"hex")}`),e(`CIPHER_STATE_2 ${t.n.getUint64()} ${t.k&&q(t.k,"hex")}`))}var Ar=class r extends Error{code;constructor(t="Invalid crypto exchange"){super(t),this.code=r.code}static code="ERR_INVALID_CRYPTO_EXCHANGE"};var sm=0,im=4294967295,am="Cipherstate has reached maximum n, a new handshake must be performed",Fo=class{n;bytes;view;constructor(t=sm){this.n=t,this.bytes=mt(12),this.view=new DataView(this.bytes.buffer,this.bytes.byteOffset,this.bytes.byteLength),this.view.setUint32(4,t,!0)}increment(){this.n++,this.view.setUint32(4,this.n,!0)}getBytes(){return this.bytes}getUint64(){return this.n}assertValue(){if(this.n>im)throw new Error(am)}};var Ye=mt(0),vr=class{k;n;crypto;constructor(t,e=void 0,n=0){this.crypto=t,this.k=e,this.n=new Fo(n)}hasKey(){return!!this.k}encryptWithAd(t,e){if(!this.hasKey())return e;this.n.assertValue();let n=this.crypto.encrypt(e,this.n.getBytes(),t,this.k);return this.n.increment(),n}decryptWithAd(t,e,n){if(!this.hasKey())return e;this.n.assertValue();let o=this.crypto.decrypt(e,this.n.getBytes(),t,this.k,n);return this.n.increment(),o}},ha=class{cs;ck;h;crypto;constructor(t,e){this.crypto=t;let n=J(e,"utf-8");this.h=cm(t,n),this.ck=this.h,this.cs=new vr(t)}mixKey(t){let[e,n]=this.crypto.hkdf(this.ck,t);this.ck=e,this.cs=new vr(this.crypto,n)}mixHash(t){this.h=this.crypto.hash(new z(this.h,t))}encryptAndHash(t){let e=this.cs.encryptWithAd(this.h,t);return this.mixHash(e),e}decryptAndHash(t){let e=this.cs.decryptWithAd(this.h,t);return this.mixHash(t),e}split(){let[t,e]=this.crypto.hkdf(this.ck,Ye);return[new vr(this.crypto,t),new vr(this.crypto,e)]}},da=class{ss;s;e;rs;re;initiator;crypto;constructor(t){let{crypto:e,protocolName:n,prologue:o,initiator:s,s:i,e:a,rs:c,re:l}=t;this.crypto=e,this.ss=new ha(e,n),this.ss.mixHash(o),this.initiator=s,this.s=i,this.e=a,this.rs=c,this.re=l}writeE(){if(this.e)throw new Error("ephemeral keypair is already set");let t=this.crypto.generateKeypair();return this.ss.mixHash(t.publicKey),this.e=t,t.publicKey}writeS(){if(!this.s)throw new Error("static keypair is not set");return this.ss.encryptAndHash(this.s.publicKey)}writeEE(){if(!this.e)throw new Error("ephemeral keypair is not set");if(!this.re)throw new Error("remote ephemeral public key is not set");this.ss.mixKey(this.crypto.dh(this.e,this.re))}writeES(){if(this.initiator){if(!this.e)throw new Error("ephemeral keypair is not set");if(!this.rs)throw new Error("remote static public key is not set");this.ss.mixKey(this.crypto.dh(this.e,this.rs))}else{if(!this.s)throw new Error("static keypair is not set");if(!this.re)throw new Error("remote ephemeral public key is not set");this.ss.mixKey(this.crypto.dh(this.s,this.re))}}writeSE(){if(this.initiator){if(!this.s)throw new Error("static keypair is not set");if(!this.re)throw new Error("remote ephemeral public key is not set");this.ss.mixKey(this.crypto.dh(this.s,this.re))}else{if(!this.e)throw new Error("ephemeral keypair is not set");if(!this.rs)throw new Error("remote static public key is not set");this.ss.mixKey(this.crypto.dh(this.e,this.rs))}}readE(t,e=0){if(this.re)throw new Error("remote ephemeral public key is already set");if(t.byteLength<e+32)throw new Error("message is not long enough");this.re=t.sublist(e,e+32),this.ss.mixHash(this.re)}readS(t,e=0){if(this.rs)throw new Error("remote static public key is already set");let n=32+(this.ss.cs.hasKey()?16:0);if(t.byteLength<e+n)throw new Error("message is not long enough");let o=t.sublist(e,e+n);return this.rs=this.ss.decryptAndHash(o),n}readEE(){this.writeEE()}readES(){this.writeES()}readSE(){this.writeSE()}},un=class extends da{writeMessageA(t){return new z(this.writeE(),this.ss.encryptAndHash(t))}writeMessageB(t){let e=this.writeE();this.writeEE();let n=this.writeS();return this.writeES(),new z(e,n,this.ss.encryptAndHash(t))}writeMessageC(t){let e=this.writeS();return this.writeSE(),new z(e,this.ss.encryptAndHash(t))}readMessageA(t){try{return this.readE(t),this.ss.decryptAndHash(t.sublist(32))}catch(e){throw new Ar(`handshake stage 0 validation fail: ${e.message}`)}}readMessageB(t){try{this.readE(t),this.readEE();let e=this.readS(t,32);return this.readES(),this.ss.decryptAndHash(t.sublist(32+e))}catch(e){throw new Ar(`handshake stage 1 validation fail: ${e.message}`)}}readMessageC(t){try{let e=this.readS(t);return this.readSE(),this.ss.decryptAndHash(t.sublist(e))}catch(e){throw new Ar(`handshake stage 2 validation fail: ${e.message}`)}}};function cm(r,t){if(t.length<=32){let e=mt(32);return e.set(t),e}else return r.hash(t)}var Ho;(function(r){let t;r.codec=()=>(t==null&&(t=Yt((e,n,o={})=>{if(o.lengthDelimited!==!1&&n.fork(),e.webtransportCerthashes!=null)for(let s of e.webtransportCerthashes)n.uint32(10),n.bytes(s);o.lengthDelimited!==!1&&n.ldelim()},(e,n)=>{let o={webtransportCerthashes:[]},s=n==null?e.len:e.pos+n;for(;e.pos<s;){let i=e.uint32();switch(i>>>3){case 1:{o.webtransportCerthashes.push(e.bytes());break}default:{e.skipType(i&7);break}}}return o})),t),r.encode=e=>Zt(e,r.codec()),r.decode=e=>Xt(e,r.codec())})(Ho||(Ho={}));var fn;(function(r){let t;r.codec=()=>(t==null&&(t=Yt((e,n,o={})=>{o.lengthDelimited!==!1&&n.fork(),e.identityKey!=null&&e.identityKey.byteLength>0&&(n.uint32(10),n.bytes(e.identityKey)),e.identitySig!=null&&e.identitySig.byteLength>0&&(n.uint32(18),n.bytes(e.identitySig)),e.extensions!=null&&(n.uint32(34),Ho.codec().encode(e.extensions,n)),o.lengthDelimited!==!1&&n.ldelim()},(e,n)=>{let o={identityKey:mt(0),identitySig:mt(0)},s=n==null?e.len:e.pos+n;for(;e.pos<s;){let i=e.uint32();switch(i>>>3){case 1:{o.identityKey=e.bytes();break}case 2:{o.identitySig=e.bytes();break}case 4:{o.extensions=Ho.codec().decode(e,e.uint32());break}default:{e.skipType(i&7);break}}}return o})),t),r.encode=e=>Zt(e,r.codec()),r.decode=e=>Xt(e,r.codec())})(fn||(fn={}));async function pa(r,t,e){let n=await r.sign(vu(t));return fn.encode({identityKey:lr(r.publicKey),identitySig:n,extensions:e})}async function ma(r,t,e){try{let n=fn.decode(r),o=Gr(n.identityKey);if(e?.equals(o)===!1)throw new Error(`Payload identity key ${o} does not match expected remote identity key ${e}`);if(!t)throw new Error("Remote static does not exist");let s=vu(t);if(!await o.verify(s,n.identitySig))throw new Error("Invalid payload signature");return n}catch(n){throw new pn(n.message)}}function vu(r){let t=J("noise-libp2p-static-key:");return r instanceof Uint8Array?yt([t,r],t.length+r.length):(r.prepend(t),r)}async function Iu(r,t){let{log:e,connection:n,crypto:o,privateKey:s,prologue:i,s:a,remoteIdentityKey:c,extensions:l}=r,u=await pa(s,a.publicKey,l),f=new un({crypto:o,protocolName:"Noise_XX_25519_ChaChaPoly_SHA256",initiator:!0,prologue:i,s:a});ca(f.s,e),e.trace("Stage 0 - Initiator starting to send first message."),await n.write(f.writeMessageA(Ye),t),e.trace("Stage 0 - Initiator finished sending first message."),la(f.e,e),e.trace("Stage 1 - Initiator waiting to receive first message from responder...");let d=f.readMessageB(await n.read(t));e.trace("Stage 1 - Initiator received the message."),ua(f.re,e),Au(f.rs,e),e.trace("Initiator going to check remote's signature...");let g=await ma(d,f.rs,c);e.trace("All good with the signature!"),e.trace("Stage 2 - Initiator sending third handshake message."),await n.write(f.writeMessageC(u),t),e.trace("Stage 2 - Initiator sent message with signed payload.");let[b,m]=f.ss.split();return fa(b,m,e),{payload:g,encrypt:h=>b.encryptWithAd(Ye,h),decrypt:(h,w)=>m.decryptWithAd(Ye,h,w)}}async function Tu(r,t){let{log:e,connection:n,crypto:o,privateKey:s,prologue:i,s:a,remoteIdentityKey:c,extensions:l}=r,u=await pa(s,a.publicKey,l),f=new un({crypto:o,protocolName:"Noise_XX_25519_ChaChaPoly_SHA256",initiator:!1,prologue:i,s:a});ca(f.s,e),e.trace("Stage 0 - Responder waiting to receive first message."),f.readMessageA(await n.read(t)),e.trace("Stage 0 - Responder received first message."),ua(f.re,e),e.trace("Stage 1 - Responder sending out first message with signed payload and static key."),await n.write(f.writeMessageB(u),t),e.trace("Stage 1 - Responder sent the second handshake message with signed payload."),la(f.e,e),e.trace("Stage 2 - Responder waiting for third handshake message...");let d=f.readMessageC(await n.read(t));e.trace("Stage 2 - Responder received the message, finished handshake.");let g=await ma(d,f.rs,c),[b,m]=f.ss.split();return fa(b,m,e),{payload:g,encrypt:h=>m.encryptWithAd(Ye,h),decrypt:(h,w)=>b.decryptWithAd(Ye,h,w)}}var Bu=16;function Cu(r,t){return async function*(e){for await(let n of e)for(let o=0;o<n.length;o+=65519){let s=o+65519;s>n.length&&(s=n.length);let i;n instanceof Uint8Array?i=r.encrypt(n.subarray(o,s)):i=r.encrypt(n.sublist(o,s)),t?.encryptedPackets.increment(),yield new z(Sr(i.byteLength),i)}}}function _u(r,t){return async function*(e){for await(let n of e)for(let o=0;o<n.length;o+=65535){let s=o+65535;if(s>n.length&&(s=n.length),s-Bu<o)throw new Error("Invalid chunk");let i=n.sublist(o,s),a=n.subarray(o,s-Bu);try{let c=r.decrypt(i,a);t?.decryptedPackets.increment(),yield c}catch(c){throw t?.decryptErrors.increment(),c}}}}var Vo=class{protocol="/noise";crypto;prologue;staticKey;extensions;metrics;components;constructor(t,e={}){let{staticNoiseKey:n,extensions:o,crypto:s,prologueBytes:i}=e,{metrics:a}=t;this.components=t;let c=s??xu;this.crypto=Eu(c),this.extensions=o,this.metrics=a?Su(a):void 0,n?this.staticKey=c.generateX25519KeyPairFromSeed(n):this.staticKey=c.generateX25519KeyPair(),this.prologue=i??mt(0)}[Symbol.toStringTag]="@chainsafe/libp2p-noise";[Qe]=["@libp2p/connection-encryption","@chainsafe/libp2p-noise"];async secureOutbound(t,e){let n=sn(t,{lengthEncoder:Sr,lengthDecoder:ln,maxDataLength:65535}),o=await this.performHandshakeInitiator(n,this.components.privateKey,e?.remotePeer?.publicKey,e),s=await this.createSecureConnection(n,o);t.source=s.source,t.sink=s.sink;let i=Gr(o.payload.identityKey);return{conn:t,remoteExtensions:o.payload.extensions,remotePeer:hi(i)}}async secureInbound(t,e){let n=sn(t,{lengthEncoder:Sr,lengthDecoder:ln,maxDataLength:65535}),o=await this.performHandshakeResponder(n,this.components.privateKey,e?.remotePeer?.publicKey,e),s=await this.createSecureConnection(n,o);t.source=s.source,t.sink=s.sink;let i=Gr(o.payload.identityKey);return{conn:t,remoteExtensions:o.payload.extensions,remotePeer:hi(i)}}async performHandshakeInitiator(t,e,n,o){let s;try{s=await Iu({connection:t,privateKey:e,remoteIdentityKey:n,log:this.components.logger.forComponent("libp2p:noise:xxhandshake"),crypto:this.crypto,prologue:this.prologue,s:this.staticKey,extensions:this.extensions},o),this.metrics?.xxHandshakeSuccesses.increment()}catch(i){throw this.metrics?.xxHandshakeErrors.increment(),i}return s}async performHandshakeResponder(t,e,n,o){let s;try{s=await Tu({connection:t,privateKey:e,remoteIdentityKey:n,log:this.components.logger.forComponent("libp2p:noise:xxhandshake"),crypto:this.crypto,prologue:this.prologue,s:this.staticKey,extensions:this.extensions},o),this.metrics?.xxHandshakeSuccesses.increment()}catch(i){throw this.metrics?.xxHandshakeErrors.increment(),i}return s}async createSecureConnection(t,e){let[n,o]=tu(),s=t.unwrap();return await ru(n,Cu(e,this.metrics),s,i=>cn(i,{lengthDecoder:ln}),_u(e,this.metrics),n),o}};function Ru(r={}){return t=>new Vo(t,r)}var ga=Object.values(Ve).map(r=>r.decoder).reduce((r,t)=>r.or(t)),lm=/^a=fingerprint:(?:\w+-[0-9]+)\s(?<fingerprint>(:?[0-9a-fA-F]{2})+)$/m;function Pu(r){return r?.match(lm)?.groups?.fingerprint}function ya(r){let e=r.stringTuples().filter(n=>n[0]===Il).map(n=>n[1])[0];if(e===void 0||e==="")throw new rt(`Couldn't find a certhash component of multiaddr: ${r.toString()}`);return e}function um(r){return Mt.decode(ga.decode(r))}function fm(r){let t=um(ya(r)),e=hm(t.code),n=t.digest.reduce((s,i)=>s+i.toString(16).padStart(2,"0"),""),o=n.match(/.{1,2}/g);if(o==null)throw new Ao(n,r.toString());return`${e} ${o.join(":").toUpperCase()}`}function Du(r){let t=r.split(":").map(o=>parseInt(o,16)),e=Uint8Array.from(t),n=vt(fe.code,e);return ee(`/certhash/${Or.encode(n.bytes)}`)}function hm(r){switch(r){case 17:return"sha-1";case 18:return"sha-256";case 19:return"sha-512";default:throw new Io(r)}}function Nu(r,t){let{host:e,port:n,family:o}=r.toOptions(),s=fm(r);return{type:"answer",sdp:`v=0
3
+ o=- 0 0 IN IP${o} ${e}
8
4
  s=-
9
5
  t=0 0
10
6
  a=ice-lite
11
7
  m=application ${n} UDP/DTLS/SCTP webrtc-datachannel
12
- c=IN IP${o} ${t}
8
+ c=IN IP${o} ${e}
13
9
  a=mid:0
14
10
  a=ice-options:ice2
15
- a=ice-ufrag:${e}
16
- a=ice-pwd:${e}
11
+ a=ice-ufrag:${t}
12
+ a=ice-pwd:${t}
17
13
  a=fingerprint:${s}
18
14
  a=setup:passive
19
15
  a=sctp-port:5000
20
- a=max-message-size:${Kr}
21
- a=candidate:1467250027 1 UDP 1467250027 ${t} ${n} typ host
16
+ a=max-message-size:${yr}
17
+ a=candidate:1467250027 1 UDP 1467250027 ${e} ${n} typ host
22
18
  a=end-of-candidates
23
- `}}function $h(r,e){let{host:t,port:n,family:o}=r.toOptions();return{type:"offer",sdp:`v=0
24
- o=- 0 0 IN IP${o} ${t}
19
+ `}}function Uu(r,t){let{host:e,port:n,family:o}=r.toOptions();return{type:"offer",sdp:`v=0
20
+ o=- 0 0 IN IP${o} ${e}
25
21
  s=-
26
- c=IN IP${o} ${t}
22
+ c=IN IP${o} ${e}
27
23
  t=0 0
28
24
  a=ice-options:ice2,trickle
29
25
  m=application ${n} UDP/DTLS/SCTP webrtc-datachannel
30
26
  a=mid:0
31
27
  a=setup:active
32
- a=ice-ufrag:${e}
33
- a=ice-pwd:${e}
28
+ a=ice-ufrag:${t}
29
+ a=ice-pwd:${t}
34
30
  a=fingerprint:sha-256 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00
35
31
  a=sctp-port:5000
36
- a=max-message-size:${Kr}
37
- a=candidate:1467250027 1 UDP 1467250027 ${t} ${n} typ host
32
+ a=max-message-size:${yr}
33
+ a=candidate:1467250027 1 UDP 1467250027 ${e} ${n} typ host
38
34
  a=end-of-candidates
39
- `}}function Fc(r,e){if(r.sdp===void 0)throw new oe("Can't munge a missing SDP");let t=r.sdp.includes(`\r
35
+ `}}function wa(r,t){if(r.sdp===void 0)throw new rt("Can't munge a missing SDP");let e=r.sdp.includes(`\r
40
36
  `)?`\r
41
37
  `:`
42
38
  `;return r.sdp=r.sdp.replace(/\na=ice-ufrag:[^\n]*\n/,`
43
- a=ice-ufrag:`+e+t).replace(/\na=ice-pwd:[^\n]*\n/,`
44
- a=ice-pwd:`+e+t),r}var Vc=Q("libp2p-webrtc-noise:");function Wh(r,e,t){let n=r.trim().toLowerCase().replaceAll(":",""),o=Q(n,"hex"),s=ke(vt.code,o),i=Mc.decode(Hc(e)),a=Vc.byteLength+s.bytes.byteLength+i.byteLength;return t==="server"?be([Vc,i,s.bytes],a):be([Vc,s.bytes,i],a)}var Cg=Rn?"iceconnectionstatechange":"connectionstatechange";async function qh(r,e,t){let n=r.createDataChannel("",{negotiated:!0,id:0});if(t.role==="client"){t.log.trace("client creating local offer");let d=await r.createOffer();t.log.trace("client created local offer %s",d.sdp);let m=Fc(d,e);t.log.trace("client setting local offer %s",m.sdp),await r.setLocalDescription(m);let y=Kh(t.remoteAddr,e);t.log.trace("client setting server description %s",y.sdp),await r.setRemoteDescription(y)}else{let d=$h(t.remoteAddr,e);t.log.trace("server setting client %s %s",d.type,d.sdp),await r.setRemoteDescription(d),t.log.trace("server creating local answer");let m=await r.createAnswer();t.log.trace("server created local answer");let y=Fc(m,e);t.log.trace("server setting local description %s",m.sdp),await r.setLocalDescription(y)}if(t.log.trace("%s wait for handshake channel to open",t.role),await On(n,"open",t.signal),t.log.trace("%s handshake channel opened",t.role),t.role==="server"){let d=r.remoteFingerprint()?.value??"";t.remoteAddr=t.remoteAddr.encapsulate(Vh(d))}let o=Fh(r.localDescription?.sdp);if(o==null)throw new Zt("Could not get fingerprint from local description sdp");t.log.trace("%s performing noise handshake",t.role);let s=Wh(o,t.remoteAddr,t.role),i=Hh({prologueBytes:s})(t),a=Wr({channel:n,direction:"inbound",logger:t.logger,...t.dataChannel??{}}),c={...a,sink:a.sink.bind(a),source:async function*(){for await(let d of a.source)for(let m of d)yield m}()},l=new dr(t,{peerConnection:r,remoteAddr:t.remoteAddr,timeline:{open:Date.now()},metrics:t.events});r.addEventListener(Cg,()=>{switch(r.connectionState){case"failed":case"disconnected":case"closed":l.close().catch(d=>{t.log.error("error closing connection",d),l.abort(d)});break;default:break}}),t.events?.increment({peer_connection:!0});let u=new Xt(t,{peerConnection:r,metrics:t.events,dataChannelOptions:t.dataChannel});if(t.role==="client")return t.log.trace("%s secure inbound",t.role),await i.secureInbound(c,{remotePeer:t.remotePeerId,signal:t.signal}),t.log.trace("%s upgrade outbound",t.role),t.upgrader.upgradeOutbound(l,{skipProtection:!0,skipEncryption:!0,muxerFactory:u,signal:t.signal});t.log.trace("%s secure outbound",t.role);let f=await i.secureOutbound(c,{remotePeer:t.remotePeerId,signal:t.signal});l.remoteAddr=l.remoteAddr.encapsulate(`/p2p/${f.remotePeer}`),t.log.trace("%s upgrade inbound",t.role),await t.upgrader.upgradeInbound(l,{skipProtection:!0,skipEncryption:!0,muxerFactory:u,signal:t.signal})}async function zh(r,e,t,n){n==null&&(n=await RTCPeerConnection.generateCertificate({name:"ECDSA",namedCurve:"P-256"}));let o=typeof t=="function"?await t():t;return new RTCPeerConnection({...o??{},certificates:[n]})}var ui=class{log;metrics;components;init;constructor(e,t={}){this.log=e.logger.forComponent("libp2p:webrtc-direct"),this.components=e,this.init=t,e.metrics!=null&&(this.metrics={dialerEvents:e.metrics.registerCounterGroup("libp2p_webrtc-direct_dialer_events_total",{label:"event",help:"Total count of WebRTC-direct dial events by type"})})}[qn]=!0;[Symbol.toStringTag]="@libp2p/webrtc-direct";[br]=["@libp2p/transport"];async dial(e,t){let n=await this._connect(e,t);return this.log("dialing address: %a",e),n}createListener(e){return new Ys(this.components,{...this.init,...e})}listenFilter(e){return e.filter(Sf.exactMatch)}dialFilter(e){return this.listenFilter(e)}async _connect(e,t){t.signal.throwIfAborted();let n,o=e.getPeerId();o!=null&&(n=Mr(o));let s=zf(),i=await zh("client",s,typeof this.init.rtcConfiguration=="function"?await this.init.rtcConfiguration():this.init.rtcConfiguration??{});try{return await st(qh(i,s,{role:"client",log:this.log,logger:this.components.logger,metrics:this.components.metrics,events:this.metrics?.dialerEvents,signal:t.signal,remoteAddr:e,dataChannel:this.init.dataChannel,upgrader:t.upgrader,peerId:this.components.peerId,remotePeerId:n,privateKey:this.components.privateKey}),t.signal)}catch(a){throw i.close(),a}}};function kg(r){return e=>new ui(e,r)}function Tg(r){return e=>new Zs(e,r)}return ld(Lg);})();
39
+ a=ice-ufrag:`+t+e).replace(/\na=ice-pwd:[^\n]*\n/,`
40
+ a=ice-pwd:`+t+e),r}var ba=J("libp2p-webrtc-noise:");function Ou(r,t,e){let n=r.trim().toLowerCase().replaceAll(":",""),o=J(n,"hex"),s=vt(fe.code,o),i=ga.decode(ya(t)),a=ba.byteLength+s.bytes.byteLength+i.byteLength;return e==="server"?yt([ba,i,s.bytes],a):yt([ba,s.bytes,i],a)}var dm=tn?"iceconnectionstatechange":"connectionstatechange";async function Mu(r,t,e){let n=r.createDataChannel("",{negotiated:!0,id:0});if(e.role==="client"){e.log.trace("client creating local offer");let d=await r.createOffer();e.log.trace("client created local offer %s",d.sdp);let g=wa(d,t);e.log.trace("client setting local offer %s",g.sdp),await r.setLocalDescription(g);let b=Nu(e.remoteAddr,t);e.log.trace("client setting server description %s",b.sdp),await r.setRemoteDescription(b)}else{let d=Uu(e.remoteAddr,t);e.log.trace("server setting client %s %s",d.type,d.sdp),await r.setRemoteDescription(d),e.log.trace("server creating local answer");let g=await r.createAnswer();e.log.trace("server created local answer");let b=wa(g,t);e.log.trace("server setting local description %s",g.sdp),await r.setLocalDescription(b)}if(e.log.trace("%s wait for handshake channel to open",e.role),await on(n,"open",e.signal),e.log.trace("%s handshake channel opened",e.role),e.role==="server"){let d=r.remoteFingerprint()?.value??"";e.remoteAddr=e.remoteAddr.encapsulate(Du(d))}let o=Pu(r.localDescription?.sdp);if(o==null)throw new Re("Could not get fingerprint from local description sdp");e.log.trace("%s performing noise handshake",e.role);let s=Ou(o,e.remoteAddr,e.role),i=Ru({prologueBytes:s})(e),a=xr({channel:n,direction:"inbound",logger:e.logger,...e.dataChannel??{}}),c={...a,sink:a.sink.bind(a),source:async function*(){for await(let d of a.source)for(let g of d)yield g}()},l=new $e(e,{peerConnection:r,remoteAddr:e.remoteAddr,timeline:{open:Date.now()},metrics:e.events});r.addEventListener(dm,()=>{switch(r.connectionState){case"failed":case"disconnected":case"closed":l.close().catch(d=>{e.log.error("error closing connection",d),l.abort(d)});break;default:break}}),e.events?.increment({peer_connection:!0});let u=new _e(e,{peerConnection:r,metrics:e.events,dataChannelOptions:e.dataChannel});if(e.role==="client")return e.log.trace("%s secure inbound",e.role),await i.secureInbound(c,{remotePeer:e.remotePeerId,signal:e.signal}),e.log.trace("%s upgrade outbound",e.role),e.upgrader.upgradeOutbound(l,{skipProtection:!0,skipEncryption:!0,muxerFactory:u,signal:e.signal});e.log.trace("%s secure outbound",e.role);let f=await i.secureOutbound(c,{remotePeer:e.remotePeerId,signal:e.signal});l.remoteAddr=l.remoteAddr.encapsulate(`/p2p/${f.remotePeer}`),e.log.trace("%s upgrade inbound",e.role),await e.upgrader.upgradeInbound(l,{skipProtection:!0,skipEncryption:!0,muxerFactory:u,signal:e.signal})}async function Ku(r,t,e,n){n==null&&(n=await RTCPeerConnection.generateCertificate({name:"ECDSA",namedCurve:"P-256"}));let o=typeof e=="function"?await e():e;return new RTCPeerConnection({...o??{},certificates:[n]})}var qo=class{log;metrics;components;init;constructor(t,e={}){this.log=t.logger.forComponent("libp2p:webrtc-direct"),this.components=t,this.init=e,t.metrics!=null&&(this.metrics={dialerEvents:t.metrics.registerCounterGroup("libp2p_webrtc-direct_dialer_events_total",{label:"event",help:"Total count of WebRTC-direct dial events by type"})})}[dn]=!0;[Symbol.toStringTag]="@libp2p/webrtc-direct";[Qe]=["@libp2p/transport"];async dial(t,e){let n=await this._connect(t,e);return this.log("dialing address: %a",t),n}createListener(t){return new _o(this.components,{...this.init,...t})}listenFilter(t){return t.filter(bl.exactMatch)}dialFilter(t){return this.listenFilter(t)}async _connect(t,e){e.signal.throwIfAborted();let n,o=t.getPeerId();o!=null&&(n=dr(o));let s=Hl(),i=await Ku("client",s,typeof this.init.rtcConfiguration=="function"?await this.init.rtcConfiguration():this.init.rtcConfiguration??{});try{return await jt(Mu(i,s,{role:"client",log:this.log,logger:this.components.logger,metrics:this.components.metrics,events:this.metrics?.dialerEvents,signal:e.signal,remoteAddr:t,dataChannel:this.init.dataChannel,upgrader:e.upgrader,peerId:this.components.peerId,remotePeerId:n,privateKey:this.components.privateKey}),e.signal)}catch(a){throw i.close(),a}}};function pm(r){return t=>new qo(t,r)}function mm(r){return t=>new Co(t,r)}return Ju(gm);})();
45
41
  /*! Bundled license information:
46
42
 
47
- pvtsutils/build/index.js:
48
- (*!
49
- * MIT License
50
- *
51
- * Copyright (c) 2017-2024 Peculiar Ventures, LLC
52
- *
53
- * Permission is hereby granted, free of charge, to any person obtaining a copy
54
- * of this software and associated documentation files (the "Software"), to deal
55
- * in the Software without restriction, including without limitation the rights
56
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
57
- * copies of the Software, and to permit persons to whom the Software is
58
- * furnished to do so, subject to the following conditions:
59
- *
60
- * The above copyright notice and this permission notice shall be included in all
61
- * copies or substantial portions of the Software.
62
- *
63
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
64
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
66
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
67
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
68
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
69
- * SOFTWARE.
70
- *
71
- *)
72
-
73
43
  @noble/hashes/esm/utils.js:
74
44
  (*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
75
45
 
@@ -91,46 +61,6 @@ pvtsutils/build/index.js:
91
61
  @noble/curves/esm/ed25519.js:
92
62
  (*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
93
63
 
94
- pvutils/build/utils.es.js:
95
- (*!
96
- Copyright (c) Peculiar Ventures, LLC
97
- *)
98
-
99
- asn1js/build/index.es.js:
100
- (*!
101
- * Copyright (c) 2014, GMO GlobalSign
102
- * Copyright (c) 2015-2022, Peculiar Ventures
103
- * All rights reserved.
104
- *
105
- * Author 2014-2019, Yury Strozhevsky
106
- *
107
- * Redistribution and use in source and binary forms, with or without modification,
108
- * are permitted provided that the following conditions are met:
109
- *
110
- * * Redistributions of source code must retain the above copyright notice, this
111
- * list of conditions and the following disclaimer.
112
- *
113
- * * Redistributions in binary form must reproduce the above copyright notice, this
114
- * list of conditions and the following disclaimer in the documentation and/or
115
- * other materials provided with the distribution.
116
- *
117
- * * Neither the name of the copyright holder nor the names of its
118
- * contributors may be used to endorse or promote products derived from
119
- * this software without specific prior written permission.
120
- *
121
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
122
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
123
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
124
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
125
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
126
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
127
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
128
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
129
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
130
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
131
- *
132
- *)
133
-
134
64
  @noble/curves/esm/abstract/weierstrass.js:
135
65
  (*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
136
66