@elizaos/client 1.6.0-beta.1 → 1.6.1-alpha.2

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.
@@ -113,18 +113,22 @@
113
113
  --color-yellow-500: oklch(79.5% .184 86.047);
114
114
  --color-yellow-600: oklch(68.1% .162 75.834);
115
115
  --color-yellow-700: oklch(55.4% .135 66.442);
116
+ --color-yellow-800: oklch(47.6% .114 61.907);
116
117
  --color-yellow-900: oklch(42.1% .095 57.708);
117
118
  --color-green-100: oklch(96.2% .044 156.743);
119
+ --color-green-300: oklch(87.1% .15 154.449);
118
120
  --color-green-400: oklch(79.2% .209 151.711);
119
121
  --color-green-500: oklch(72.3% .219 149.579);
120
122
  --color-green-600: oklch(62.7% .194 149.214);
121
123
  --color-green-700: oklch(52.7% .154 150.069);
124
+ --color-green-800: oklch(44.8% .119 151.328);
122
125
  --color-green-900: oklch(39.3% .095 152.535);
123
126
  --color-emerald-500: oklch(69.6% .17 162.48);
124
127
  --color-emerald-600: oklch(59.6% .145 163.225);
125
128
  --color-blue-50: oklch(97% .014 254.604);
126
129
  --color-blue-100: oklch(93.2% .032 255.585);
127
130
  --color-blue-200: oklch(88.2% .059 254.128);
131
+ --color-blue-300: oklch(80.9% .105 251.813);
128
132
  --color-blue-400: oklch(70.7% .165 254.624);
129
133
  --color-blue-500: oklch(62.3% .214 259.815);
130
134
  --color-blue-600: oklch(54.6% .245 262.881);
@@ -912,6 +916,10 @@
912
916
  margin-left: calc(var(--spacing) * 2);
913
917
  }
914
918
 
919
+ .ml-4 {
920
+ margin-left: calc(var(--spacing) * 4);
921
+ }
922
+
915
923
  .ml-6 {
916
924
  margin-left: calc(var(--spacing) * 6);
917
925
  }
@@ -2107,6 +2115,10 @@
2107
2115
  border-color: var(--color-blue-200);
2108
2116
  }
2109
2117
 
2118
+ .border-blue-300 {
2119
+ border-color: var(--color-blue-300);
2120
+ }
2121
+
2110
2122
  .border-border, .border-border\/50 {
2111
2123
  border-color: hsl(var(--border));
2112
2124
  }
@@ -2131,6 +2143,10 @@
2131
2143
  }
2132
2144
  }
2133
2145
 
2146
+ .border-green-300 {
2147
+ border-color: var(--color-green-300);
2148
+ }
2149
+
2134
2150
  .border-input {
2135
2151
  border-color: hsl(var(--input));
2136
2152
  }
@@ -2227,6 +2243,10 @@
2227
2243
  border-color: var(--color-white);
2228
2244
  }
2229
2245
 
2246
+ .border-yellow-300 {
2247
+ border-color: var(--color-yellow-300);
2248
+ }
2249
+
2230
2250
  .border-yellow-700 {
2231
2251
  border-color: var(--color-yellow-700);
2232
2252
  }
@@ -2357,10 +2377,16 @@
2357
2377
  }
2358
2378
  }
2359
2379
 
2360
- .bg-destructive {
2380
+ .bg-destructive, .bg-destructive\/80 {
2361
2381
  background-color: hsl(var(--destructive));
2362
2382
  }
2363
2383
 
2384
+ @supports (color: color-mix(in lab, red, red)) {
2385
+ .bg-destructive\/80 {
2386
+ background-color: color-mix(in oklab, hsl(var(--destructive)) 80%, transparent);
2387
+ }
2388
+ }
2389
+
2364
2390
  .bg-emerald-500 {
2365
2391
  background-color: var(--color-emerald-500);
2366
2392
  }
@@ -2507,6 +2533,36 @@
2507
2533
  }
2508
2534
  }
2509
2535
 
2536
+ .bg-primary\/60 {
2537
+ background-color: hsl(var(--primary));
2538
+ }
2539
+
2540
+ @supports (color: color-mix(in lab, red, red)) {
2541
+ .bg-primary\/60 {
2542
+ background-color: color-mix(in oklab, hsl(var(--primary)) 60%, transparent);
2543
+ }
2544
+ }
2545
+
2546
+ .bg-primary\/70 {
2547
+ background-color: hsl(var(--primary));
2548
+ }
2549
+
2550
+ @supports (color: color-mix(in lab, red, red)) {
2551
+ .bg-primary\/70 {
2552
+ background-color: color-mix(in oklab, hsl(var(--primary)) 70%, transparent);
2553
+ }
2554
+ }
2555
+
2556
+ .bg-primary\/80 {
2557
+ background-color: hsl(var(--primary));
2558
+ }
2559
+
2560
+ @supports (color: color-mix(in lab, red, red)) {
2561
+ .bg-primary\/80 {
2562
+ background-color: color-mix(in oklab, hsl(var(--primary)) 80%, transparent);
2563
+ }
2564
+ }
2565
+
2510
2566
  .bg-red-50 {
2511
2567
  background-color: var(--color-red-50);
2512
2568
  }
@@ -2581,6 +2637,10 @@
2581
2637
  background-color: var(--color-white);
2582
2638
  }
2583
2639
 
2640
+ .bg-yellow-100 {
2641
+ background-color: var(--color-yellow-100);
2642
+ }
2643
+
2584
2644
  .bg-yellow-500 {
2585
2645
  background-color: var(--color-yellow-500);
2586
2646
  }
@@ -3282,6 +3342,10 @@
3282
3342
  color: var(--color-yellow-500);
3283
3343
  }
3284
3344
 
3345
+ .text-yellow-700 {
3346
+ color: var(--color-yellow-700);
3347
+ }
3348
+
3285
3349
  .uppercase {
3286
3350
  text-transform: uppercase;
3287
3351
  }
@@ -5112,10 +5176,22 @@
5112
5176
  border-color: hsl(var(--destructive));
5113
5177
  }
5114
5178
 
5179
+ .dark\:border-green-800:is(.dark *) {
5180
+ border-color: var(--color-green-800);
5181
+ }
5182
+
5183
+ .dark\:border-red-800:is(.dark *) {
5184
+ border-color: var(--color-red-800);
5185
+ }
5186
+
5115
5187
  .dark\:border-red-950:is(.dark *) {
5116
5188
  border-color: var(--color-red-950);
5117
5189
  }
5118
5190
 
5191
+ .dark\:border-yellow-800:is(.dark *) {
5192
+ border-color: var(--color-yellow-800);
5193
+ }
5194
+
5119
5195
  .dark\:bg-amber-950\/50:is(.dark *) {
5120
5196
  background-color: #46190180;
5121
5197
  }
@@ -5234,6 +5310,20 @@
5234
5310
  }
5235
5311
  }
5236
5312
 
5313
+ .dark\:bg-yellow-600:is(.dark *) {
5314
+ background-color: var(--color-yellow-600);
5315
+ }
5316
+
5317
+ .dark\:bg-yellow-900\/30:is(.dark *) {
5318
+ background-color: #733e0a4d;
5319
+ }
5320
+
5321
+ @supports (color: color-mix(in lab, red, red)) {
5322
+ .dark\:bg-yellow-900\/30:is(.dark *) {
5323
+ background-color: color-mix(in oklab, var(--color-yellow-900) 30%, transparent);
5324
+ }
5325
+ }
5326
+
5237
5327
  .dark\:text-amber-200:is(.dark *) {
5238
5328
  color: var(--color-amber-200);
5239
5329
  }
@@ -5278,6 +5368,10 @@
5278
5368
  color: var(--color-white);
5279
5369
  }
5280
5370
 
5371
+ .dark\:text-yellow-400:is(.dark *) {
5372
+ color: var(--color-yellow-400);
5373
+ }
5374
+
5281
5375
  @media (hover: hover) {
5282
5376
  .dark\:hover\:bg-red-950\/50:is(.dark *):hover {
5283
5377
  background-color: #46080980;
@@ -5566,6 +5660,30 @@
5566
5660
  background-color: #6b7280;
5567
5661
  }
5568
5662
 
5663
+ .vis-item.timeline-item-success {
5664
+ color: #166534;
5665
+ background-color: #22c55e33;
5666
+ border-color: #22c55e;
5667
+ }
5668
+
5669
+ .vis-item.timeline-item-error {
5670
+ color: #b91c1c;
5671
+ background-color: #f8717133;
5672
+ border-color: #dc2626;
5673
+ }
5674
+
5675
+ .vis-item.timeline-item-warning {
5676
+ color: #92400e;
5677
+ background-color: #fbbf2433;
5678
+ border-color: #d97706;
5679
+ }
5680
+
5681
+ .vis-item.timeline-item-neutral {
5682
+ color: #1e293b;
5683
+ background-color: #94a3b833;
5684
+ border-color: #94a3b8;
5685
+ }
5686
+
5569
5687
  @keyframes enter {
5570
5688
  from {
5571
5689
  opacity: var(--tw-enter-opacity, 1);
@@ -1,8 +1,8 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/main-eWX6ruOp.js","assets/react-vendor-D5Td5IIA.js","assets/ui-vendor-B7JxFfFk.js","assets/main-CkbfKgca.css"])))=>i.map(i=>d[i]);
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/main-BNtEiK3o.js","assets/react-vendor-pe76PXQl.js","assets/ui-vendor-B7JxFfFk.js","assets/main-BOBWcKWW.css"])))=>i.map(i=>d[i]);
2
2
  var Sr=Object.defineProperty;var c=(x,l)=>Sr(x,"name",{value:l,configurable:!0});c(function(){const l=document.createElement("link").relList;if(l&&l.supports&&l.supports("modulepreload"))return;for(const p of document.querySelectorAll('link[rel="modulepreload"]'))S(p);new MutationObserver(p=>{for(const w of p)if(w.type==="childList")for(const s of w.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&S(s)}).observe(document,{childList:!0,subtree:!0});function U(p){const w={};return p.integrity&&(w.integrity=p.integrity),p.referrerPolicy&&(w.referrerPolicy=p.referrerPolicy),p.crossOrigin==="use-credentials"?w.credentials="include":p.crossOrigin==="anonymous"?w.credentials="omit":w.credentials="same-origin",w}c(U,"getFetchOpts");function S(p){if(p.ep)return;p.ep=!0;const w=U(p);fetch(p.href,w)}c(S,"processPreload")},"polyfill")();var X={},W={},cr;function _r(){if(cr)return W;cr=1,W.byteLength=o,W.toByteArray=I,W.fromByteArray=R;for(var x=[],l=[],U=typeof Uint8Array<"u"?Uint8Array:Array,S="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",p=0,w=S.length;p<w;++p)x[p]=S[p],l[S.charCodeAt(p)]=p;l[45]=62,l[95]=63;function s(h){var y=h.length;if(y%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var d=h.indexOf("=");d===-1&&(d=y);var L=d===y?0:4-d%4;return[d,L]}c(s,"getLens");function o(h){var y=s(h),d=y[0],L=y[1];return(d+L)*3/4-L}c(o,"byteLength");function b(h,y,d){return(y+d)*3/4-d}c(b,"_byteLength");function I(h){var y,d=s(h),L=d[0],N=d[1],C=new U(b(h,L,N)),P=0,$=N>0?L-4:L,T;for(T=0;T<$;T+=4)y=l[h.charCodeAt(T)]<<18|l[h.charCodeAt(T+1)]<<12|l[h.charCodeAt(T+2)]<<6|l[h.charCodeAt(T+3)],C[P++]=y>>16&255,C[P++]=y>>8&255,C[P++]=y&255;return N===2&&(y=l[h.charCodeAt(T)]<<2|l[h.charCodeAt(T+1)]>>4,C[P++]=y&255),N===1&&(y=l[h.charCodeAt(T)]<<10|l[h.charCodeAt(T+1)]<<4|l[h.charCodeAt(T+2)]>>2,C[P++]=y>>8&255,C[P++]=y&255),C}c(I,"toByteArray");function E(h){return x[h>>18&63]+x[h>>12&63]+x[h>>6&63]+x[h&63]}c(E,"tripletToBase64");function m(h,y,d){for(var L,N=[],C=y;C<d;C+=3)L=(h[C]<<16&16711680)+(h[C+1]<<8&65280)+(h[C+2]&255),N.push(E(L));return N.join("")}c(m,"encodeChunk");function R(h){for(var y,d=h.length,L=d%3,N=[],C=16383,P=0,$=d-L;P<$;P+=C)N.push(m(h,P,P+C>$?$:P+C));return L===1?(y=h[d-1],N.push(x[y>>2]+x[y<<4&63]+"==")):L===2&&(y=(h[d-2]<<8)+h[d-1],N.push(x[y>>10]+x[y>>4&63]+x[y<<2&63]+"=")),N.join("")}return c(R,"fromByteArray"),W}c(_r,"requireBase64Js");var j={};/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */var fr;function br(){return fr||(fr=1,j.read=function(x,l,U,S,p){var w,s,o=p*8-S-1,b=(1<<o)-1,I=b>>1,E=-7,m=U?p-1:0,R=U?-1:1,h=x[l+m];for(m+=R,w=h&(1<<-E)-1,h>>=-E,E+=o;E>0;w=w*256+x[l+m],m+=R,E-=8);for(s=w&(1<<-E)-1,w>>=-E,E+=S;E>0;s=s*256+x[l+m],m+=R,E-=8);if(w===0)w=1-I;else{if(w===b)return s?NaN:(h?-1:1)*(1/0);s=s+Math.pow(2,S),w=w-I}return(h?-1:1)*s*Math.pow(2,w-S)},j.write=function(x,l,U,S,p,w){var s,o,b,I=w*8-p-1,E=(1<<I)-1,m=E>>1,R=p===23?Math.pow(2,-24)-Math.pow(2,-77):0,h=S?0:w-1,y=S?1:-1,d=l<0||l===0&&1/l<0?1:0;for(l=Math.abs(l),isNaN(l)||l===1/0?(o=isNaN(l)?1:0,s=E):(s=Math.floor(Math.log(l)/Math.LN2),l*(b=Math.pow(2,-s))<1&&(s--,b*=2),s+m>=1?l+=R/b:l+=R*Math.pow(2,1-m),l*b>=2&&(s++,b/=2),s+m>=E?(o=0,s=E):s+m>=1?(o=(l*b-1)*Math.pow(2,p),s=s+m):(o=l*Math.pow(2,m-1)*Math.pow(2,p),s=0));p>=8;x[U+h]=o&255,h+=y,o/=256,p-=8);for(s=s<<p|o,I+=p;I>0;x[U+h]=s&255,h+=y,s/=256,I-=8);x[U+h-y]|=d*128}),j}c(br,"requireIeee754");/*!
3
3
  * The buffer module from node.js, for the browser.
4
4
  *
5
5
  * @author Feross Aboukhadijeh <https://feross.org>
6
6
  * @license MIT
7
- */var hr;function Lr(){return hr||(hr=1,(function(x){const l=_r(),U=br(),S=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;x.Buffer=o,x.SlowBuffer=C,x.INSPECT_MAX_BYTES=50;const p=2147483647;x.kMaxLength=p,o.TYPED_ARRAY_SUPPORT=w(),!o.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function w(){try{const e=new Uint8Array(1),r={foo:c(function(){return 42},"foo")};return Object.setPrototypeOf(r,Uint8Array.prototype),Object.setPrototypeOf(e,r),e.foo()===42}catch{return!1}}c(w,"typedArraySupport"),Object.defineProperty(o.prototype,"parent",{enumerable:!0,get:c(function(){if(o.isBuffer(this))return this.buffer},"get")}),Object.defineProperty(o.prototype,"offset",{enumerable:!0,get:c(function(){if(o.isBuffer(this))return this.byteOffset},"get")});function s(e){if(e>p)throw new RangeError('The value "'+e+'" is invalid for option "size"');const r=new Uint8Array(e);return Object.setPrototypeOf(r,o.prototype),r}c(s,"createBuffer");function o(e,r,t){if(typeof e=="number"){if(typeof r=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return m(e)}return b(e,r,t)}c(o,"Buffer"),o.poolSize=8192;function b(e,r,t){if(typeof e=="string")return R(e,r);if(ArrayBuffer.isView(e))return y(e);if(e==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(D(e,ArrayBuffer)||e&&D(e.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(D(e,SharedArrayBuffer)||e&&D(e.buffer,SharedArrayBuffer)))return d(e,r,t);if(typeof e=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const i=e.valueOf&&e.valueOf();if(i!=null&&i!==e)return o.from(i,r,t);const n=L(e);if(n)return n;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof e[Symbol.toPrimitive]=="function")return o.from(e[Symbol.toPrimitive]("string"),r,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}c(b,"from"),o.from=function(e,r,t){return b(e,r,t)},Object.setPrototypeOf(o.prototype,Uint8Array.prototype),Object.setPrototypeOf(o,Uint8Array);function I(e){if(typeof e!="number")throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}c(I,"assertSize");function E(e,r,t){return I(e),e<=0?s(e):r!==void 0?typeof t=="string"?s(e).fill(r,t):s(e).fill(r):s(e)}c(E,"alloc"),o.alloc=function(e,r,t){return E(e,r,t)};function m(e){return I(e),s(e<0?0:N(e)|0)}c(m,"allocUnsafe"),o.allocUnsafe=function(e){return m(e)},o.allocUnsafeSlow=function(e){return m(e)};function R(e,r){if((typeof r!="string"||r==="")&&(r="utf8"),!o.isEncoding(r))throw new TypeError("Unknown encoding: "+r);const t=P(e,r)|0;let i=s(t);const n=i.write(e,r);return n!==t&&(i=i.slice(0,n)),i}c(R,"fromString");function h(e){const r=e.length<0?0:N(e.length)|0,t=s(r);for(let i=0;i<r;i+=1)t[i]=e[i]&255;return t}c(h,"fromArrayLike");function y(e){if(D(e,Uint8Array)){const r=new Uint8Array(e);return d(r.buffer,r.byteOffset,r.byteLength)}return h(e)}c(y,"fromArrayView");function d(e,r,t){if(r<0||e.byteLength<r)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<r+(t||0))throw new RangeError('"length" is outside of buffer bounds');let i;return r===void 0&&t===void 0?i=new Uint8Array(e):t===void 0?i=new Uint8Array(e,r):i=new Uint8Array(e,r,t),Object.setPrototypeOf(i,o.prototype),i}c(d,"fromArrayBuffer");function L(e){if(o.isBuffer(e)){const r=N(e.length)|0,t=s(r);return t.length===0||e.copy(t,0,0,r),t}if(e.length!==void 0)return typeof e.length!="number"||H(e.length)?s(0):h(e);if(e.type==="Buffer"&&Array.isArray(e.data))return h(e.data)}c(L,"fromObject");function N(e){if(e>=p)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+p.toString(16)+" bytes");return e|0}c(N,"checked");function C(e){return+e!=e&&(e=0),o.alloc(+e)}c(C,"SlowBuffer"),o.isBuffer=c(function(r){return r!=null&&r._isBuffer===!0&&r!==o.prototype},"isBuffer"),o.compare=c(function(r,t){if(D(r,Uint8Array)&&(r=o.from(r,r.offset,r.byteLength)),D(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),!o.isBuffer(r)||!o.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(r===t)return 0;let i=r.length,n=t.length;for(let u=0,f=Math.min(i,n);u<f;++u)if(r[u]!==t[u]){i=r[u],n=t[u];break}return i<n?-1:n<i?1:0},"compare"),o.isEncoding=c(function(r){switch(String(r).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},"isEncoding"),o.concat=c(function(r,t){if(!Array.isArray(r))throw new TypeError('"list" argument must be an Array of Buffers');if(r.length===0)return o.alloc(0);let i;if(t===void 0)for(t=0,i=0;i<r.length;++i)t+=r[i].length;const n=o.allocUnsafe(t);let u=0;for(i=0;i<r.length;++i){let f=r[i];if(D(f,Uint8Array))u+f.length>n.length?(o.isBuffer(f)||(f=o.from(f)),f.copy(n,u)):Uint8Array.prototype.set.call(n,f,u);else if(o.isBuffer(f))f.copy(n,u);else throw new TypeError('"list" argument must be an Array of Buffers');u+=f.length}return n},"concat");function P(e,r){if(o.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||D(e,ArrayBuffer))return e.byteLength;if(typeof e!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);const t=e.length,i=arguments.length>2&&arguments[2]===!0;if(!i&&t===0)return 0;let n=!1;for(;;)switch(r){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return V(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return t*2;case"hex":return t>>>1;case"base64":return ur(e).length;default:if(n)return i?-1:V(e).length;r=(""+r).toLowerCase(),n=!0}}c(P,"byteLength"),o.byteLength=P;function $(e,r,t){let i=!1;if((r===void 0||r<0)&&(r=0),r>this.length||((t===void 0||t>this.length)&&(t=this.length),t<=0)||(t>>>=0,r>>>=0,t<=r))return"";for(e||(e="utf8");;)switch(e){case"hex":return mr(this,r,t);case"utf8":case"utf-8":return Z(this,r,t);case"ascii":return Br(this,r,t);case"latin1":case"binary":return Er(this,r,t);case"base64":return xr(this,r,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return gr(this,r,t);default:if(i)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),i=!0}}c($,"slowToString"),o.prototype._isBuffer=!0;function T(e,r,t){const i=e[r];e[r]=e[t],e[t]=i}c(T,"swap"),o.prototype.swap16=c(function(){const r=this.length;if(r%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let t=0;t<r;t+=2)T(this,t,t+1);return this},"swap16"),o.prototype.swap32=c(function(){const r=this.length;if(r%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let t=0;t<r;t+=4)T(this,t,t+3),T(this,t+1,t+2);return this},"swap32"),o.prototype.swap64=c(function(){const r=this.length;if(r%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let t=0;t<r;t+=8)T(this,t,t+7),T(this,t+1,t+6),T(this,t+2,t+5),T(this,t+3,t+4);return this},"swap64"),o.prototype.toString=c(function(){const r=this.length;return r===0?"":arguments.length===0?Z(this,0,r):$.apply(this,arguments)},"toString"),o.prototype.toLocaleString=o.prototype.toString,o.prototype.equals=c(function(r){if(!o.isBuffer(r))throw new TypeError("Argument must be a Buffer");return this===r?!0:o.compare(this,r)===0},"equals"),o.prototype.inspect=c(function(){let r="";const t=x.INSPECT_MAX_BYTES;return r=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(r+=" ... "),"<Buffer "+r+">"},"inspect"),S&&(o.prototype[S]=o.prototype.inspect),o.prototype.compare=c(function(r,t,i,n,u){if(D(r,Uint8Array)&&(r=o.from(r,r.offset,r.byteLength)),!o.isBuffer(r))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof r);if(t===void 0&&(t=0),i===void 0&&(i=r?r.length:0),n===void 0&&(n=0),u===void 0&&(u=this.length),t<0||i>r.length||n<0||u>this.length)throw new RangeError("out of range index");if(n>=u&&t>=i)return 0;if(n>=u)return-1;if(t>=i)return 1;if(t>>>=0,i>>>=0,n>>>=0,u>>>=0,this===r)return 0;let f=u-n,a=i-t;const F=Math.min(f,a),g=this.slice(n,u),A=r.slice(t,i);for(let B=0;B<F;++B)if(g[B]!==A[B]){f=g[B],a=A[B];break}return f<a?-1:a<f?1:0},"compare");function z(e,r,t,i,n){if(e.length===0)return-1;if(typeof t=="string"?(i=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),t=+t,H(t)&&(t=n?0:e.length-1),t<0&&(t=e.length+t),t>=e.length){if(n)return-1;t=e.length-1}else if(t<0)if(n)t=0;else return-1;if(typeof r=="string"&&(r=o.from(r,i)),o.isBuffer(r))return r.length===0?-1:K(e,r,t,i,n);if(typeof r=="number")return r=r&255,typeof Uint8Array.prototype.indexOf=="function"?n?Uint8Array.prototype.indexOf.call(e,r,t):Uint8Array.prototype.lastIndexOf.call(e,r,t):K(e,[r],t,i,n);throw new TypeError("val must be string, number or Buffer")}c(z,"bidirectionalIndexOf");function K(e,r,t,i,n){let u=1,f=e.length,a=r.length;if(i!==void 0&&(i=String(i).toLowerCase(),i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")){if(e.length<2||r.length<2)return-1;u=2,f/=2,a/=2,t/=2}function F(A,B){return u===1?A[B]:A.readUInt16BE(B*u)}c(F,"read");let g;if(n){let A=-1;for(g=t;g<f;g++)if(F(e,g)===F(r,A===-1?0:g-A)){if(A===-1&&(A=g),g-A+1===a)return A*u}else A!==-1&&(g-=g-A),A=-1}else for(t+a>f&&(t=f-a),g=t;g>=0;g--){let A=!0;for(let B=0;B<a;B++)if(F(e,g+B)!==F(r,B)){A=!1;break}if(A)return g}return-1}c(K,"arrayIndexOf"),o.prototype.includes=c(function(r,t,i){return this.indexOf(r,t,i)!==-1},"includes"),o.prototype.indexOf=c(function(r,t,i){return z(this,r,t,i,!0)},"indexOf"),o.prototype.lastIndexOf=c(function(r,t,i){return z(this,r,t,i,!1)},"lastIndexOf");function lr(e,r,t,i){t=Number(t)||0;const n=e.length-t;i?(i=Number(i),i>n&&(i=n)):i=n;const u=r.length;i>u/2&&(i=u/2);let f;for(f=0;f<i;++f){const a=parseInt(r.substr(f*2,2),16);if(H(a))return f;e[t+f]=a}return f}c(lr,"hexWrite");function pr(e,r,t,i){return Y(V(r,e.length-t),e,t,i)}c(pr,"utf8Write");function ar(e,r,t,i){return Y(Ur(r),e,t,i)}c(ar,"asciiWrite");function yr(e,r,t,i){return Y(ur(r),e,t,i)}c(yr,"base64Write");function wr(e,r,t,i){return Y(Tr(r,e.length-t),e,t,i)}c(wr,"ucs2Write"),o.prototype.write=c(function(r,t,i,n){if(t===void 0)n="utf8",i=this.length,t=0;else if(i===void 0&&typeof t=="string")n=t,i=this.length,t=0;else if(isFinite(t))t=t>>>0,isFinite(i)?(i=i>>>0,n===void 0&&(n="utf8")):(n=i,i=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const u=this.length-t;if((i===void 0||i>u)&&(i=u),r.length>0&&(i<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");let f=!1;for(;;)switch(n){case"hex":return lr(this,r,t,i);case"utf8":case"utf-8":return pr(this,r,t,i);case"ascii":case"latin1":case"binary":return ar(this,r,t,i);case"base64":return yr(this,r,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return wr(this,r,t,i);default:if(f)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),f=!0}},"write"),o.prototype.toJSON=c(function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},"toJSON");function xr(e,r,t){return r===0&&t===e.length?l.fromByteArray(e):l.fromByteArray(e.slice(r,t))}c(xr,"base64Slice");function Z(e,r,t){t=Math.min(e.length,t);const i=[];let n=r;for(;n<t;){const u=e[n];let f=null,a=u>239?4:u>223?3:u>191?2:1;if(n+a<=t){let F,g,A,B;switch(a){case 1:u<128&&(f=u);break;case 2:F=e[n+1],(F&192)===128&&(B=(u&31)<<6|F&63,B>127&&(f=B));break;case 3:F=e[n+1],g=e[n+2],(F&192)===128&&(g&192)===128&&(B=(u&15)<<12|(F&63)<<6|g&63,B>2047&&(B<55296||B>57343)&&(f=B));break;case 4:F=e[n+1],g=e[n+2],A=e[n+3],(F&192)===128&&(g&192)===128&&(A&192)===128&&(B=(u&15)<<18|(F&63)<<12|(g&63)<<6|A&63,B>65535&&B<1114112&&(f=B))}}f===null?(f=65533,a=1):f>65535&&(f-=65536,i.push(f>>>10&1023|55296),f=56320|f&1023),i.push(f),n+=a}return dr(i)}c(Z,"utf8Slice");const Q=4096;function dr(e){const r=e.length;if(r<=Q)return String.fromCharCode.apply(String,e);let t="",i=0;for(;i<r;)t+=String.fromCharCode.apply(String,e.slice(i,i+=Q));return t}c(dr,"decodeCodePointsArray");function Br(e,r,t){let i="";t=Math.min(e.length,t);for(let n=r;n<t;++n)i+=String.fromCharCode(e[n]&127);return i}c(Br,"asciiSlice");function Er(e,r,t){let i="";t=Math.min(e.length,t);for(let n=r;n<t;++n)i+=String.fromCharCode(e[n]);return i}c(Er,"latin1Slice");function mr(e,r,t){const i=e.length;(!r||r<0)&&(r=0),(!t||t<0||t>i)&&(t=i);let n="";for(let u=r;u<t;++u)n+=Rr[e[u]];return n}c(mr,"hexSlice");function gr(e,r,t){const i=e.slice(r,t);let n="";for(let u=0;u<i.length-1;u+=2)n+=String.fromCharCode(i[u]+i[u+1]*256);return n}c(gr,"utf16leSlice"),o.prototype.slice=c(function(r,t){const i=this.length;r=~~r,t=t===void 0?i:~~t,r<0?(r+=i,r<0&&(r=0)):r>i&&(r=i),t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),t<r&&(t=r);const n=this.subarray(r,t);return Object.setPrototypeOf(n,o.prototype),n},"slice");function _(e,r,t){if(e%1!==0||e<0)throw new RangeError("offset is not uint");if(e+r>t)throw new RangeError("Trying to access beyond buffer length")}c(_,"checkOffset"),o.prototype.readUintLE=o.prototype.readUIntLE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=this[r],u=1,f=0;for(;++f<t&&(u*=256);)n+=this[r+f]*u;return n},"readUIntLE"),o.prototype.readUintBE=o.prototype.readUIntBE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=this[r+--t],u=1;for(;t>0&&(u*=256);)n+=this[r+--t]*u;return n},"readUIntBE"),o.prototype.readUint8=o.prototype.readUInt8=c(function(r,t){return r=r>>>0,t||_(r,1,this.length),this[r]},"readUInt8"),o.prototype.readUint16LE=o.prototype.readUInt16LE=c(function(r,t){return r=r>>>0,t||_(r,2,this.length),this[r]|this[r+1]<<8},"readUInt16LE"),o.prototype.readUint16BE=o.prototype.readUInt16BE=c(function(r,t){return r=r>>>0,t||_(r,2,this.length),this[r]<<8|this[r+1]},"readUInt16BE"),o.prototype.readUint32LE=o.prototype.readUInt32LE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),(this[r]|this[r+1]<<8|this[r+2]<<16)+this[r+3]*16777216},"readUInt32LE"),o.prototype.readUint32BE=o.prototype.readUInt32BE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),this[r]*16777216+(this[r+1]<<16|this[r+2]<<8|this[r+3])},"readUInt32BE"),o.prototype.readBigUInt64LE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=t+this[++r]*2**8+this[++r]*2**16+this[++r]*2**24,u=this[++r]+this[++r]*2**8+this[++r]*2**16+i*2**24;return BigInt(n)+(BigInt(u)<<BigInt(32))},"readBigUInt64LE")),o.prototype.readBigUInt64BE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=t*2**24+this[++r]*2**16+this[++r]*2**8+this[++r],u=this[++r]*2**24+this[++r]*2**16+this[++r]*2**8+i;return(BigInt(n)<<BigInt(32))+BigInt(u)},"readBigUInt64BE")),o.prototype.readIntLE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=this[r],u=1,f=0;for(;++f<t&&(u*=256);)n+=this[r+f]*u;return u*=128,n>=u&&(n-=Math.pow(2,8*t)),n},"readIntLE"),o.prototype.readIntBE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=t,u=1,f=this[r+--n];for(;n>0&&(u*=256);)f+=this[r+--n]*u;return u*=128,f>=u&&(f-=Math.pow(2,8*t)),f},"readIntBE"),o.prototype.readInt8=c(function(r,t){return r=r>>>0,t||_(r,1,this.length),this[r]&128?(255-this[r]+1)*-1:this[r]},"readInt8"),o.prototype.readInt16LE=c(function(r,t){r=r>>>0,t||_(r,2,this.length);const i=this[r]|this[r+1]<<8;return i&32768?i|4294901760:i},"readInt16LE"),o.prototype.readInt16BE=c(function(r,t){r=r>>>0,t||_(r,2,this.length);const i=this[r+1]|this[r]<<8;return i&32768?i|4294901760:i},"readInt16BE"),o.prototype.readInt32LE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),this[r]|this[r+1]<<8|this[r+2]<<16|this[r+3]<<24},"readInt32LE"),o.prototype.readInt32BE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),this[r]<<24|this[r+1]<<16|this[r+2]<<8|this[r+3]},"readInt32BE"),o.prototype.readBigInt64LE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=this[r+4]+this[r+5]*2**8+this[r+6]*2**16+(i<<24);return(BigInt(n)<<BigInt(32))+BigInt(t+this[++r]*2**8+this[++r]*2**16+this[++r]*2**24)},"readBigInt64LE")),o.prototype.readBigInt64BE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=(t<<24)+this[++r]*2**16+this[++r]*2**8+this[++r];return(BigInt(n)<<BigInt(32))+BigInt(this[++r]*2**24+this[++r]*2**16+this[++r]*2**8+i)},"readBigInt64BE")),o.prototype.readFloatLE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),U.read(this,r,!0,23,4)},"readFloatLE"),o.prototype.readFloatBE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),U.read(this,r,!1,23,4)},"readFloatBE"),o.prototype.readDoubleLE=c(function(r,t){return r=r>>>0,t||_(r,8,this.length),U.read(this,r,!0,52,8)},"readDoubleLE"),o.prototype.readDoubleBE=c(function(r,t){return r=r>>>0,t||_(r,8,this.length),U.read(this,r,!1,52,8)},"readDoubleBE");function M(e,r,t,i,n,u){if(!o.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>n||r<u)throw new RangeError('"value" argument is out of bounds');if(t+i>e.length)throw new RangeError("Index out of range")}c(M,"checkInt"),o.prototype.writeUintLE=o.prototype.writeUIntLE=c(function(r,t,i,n){if(r=+r,t=t>>>0,i=i>>>0,!n){const a=Math.pow(2,8*i)-1;M(this,r,t,i,a,0)}let u=1,f=0;for(this[t]=r&255;++f<i&&(u*=256);)this[t+f]=r/u&255;return t+i},"writeUIntLE"),o.prototype.writeUintBE=o.prototype.writeUIntBE=c(function(r,t,i,n){if(r=+r,t=t>>>0,i=i>>>0,!n){const a=Math.pow(2,8*i)-1;M(this,r,t,i,a,0)}let u=i-1,f=1;for(this[t+u]=r&255;--u>=0&&(f*=256);)this[t+u]=r/f&255;return t+i},"writeUIntBE"),o.prototype.writeUint8=o.prototype.writeUInt8=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,1,255,0),this[t]=r&255,t+1},"writeUInt8"),o.prototype.writeUint16LE=o.prototype.writeUInt16LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,65535,0),this[t]=r&255,this[t+1]=r>>>8,t+2},"writeUInt16LE"),o.prototype.writeUint16BE=o.prototype.writeUInt16BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,65535,0),this[t]=r>>>8,this[t+1]=r&255,t+2},"writeUInt16BE"),o.prototype.writeUint32LE=o.prototype.writeUInt32LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,4294967295,0),this[t+3]=r>>>24,this[t+2]=r>>>16,this[t+1]=r>>>8,this[t]=r&255,t+4},"writeUInt32LE"),o.prototype.writeUint32BE=o.prototype.writeUInt32BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,4294967295,0),this[t]=r>>>24,this[t+1]=r>>>16,this[t+2]=r>>>8,this[t+3]=r&255,t+4},"writeUInt32BE");function v(e,r,t,i,n){or(r,i,n,e,t,7);let u=Number(r&BigInt(4294967295));e[t++]=u,u=u>>8,e[t++]=u,u=u>>8,e[t++]=u,u=u>>8,e[t++]=u;let f=Number(r>>BigInt(32)&BigInt(4294967295));return e[t++]=f,f=f>>8,e[t++]=f,f=f>>8,e[t++]=f,f=f>>8,e[t++]=f,t}c(v,"wrtBigUInt64LE");function rr(e,r,t,i,n){or(r,i,n,e,t,7);let u=Number(r&BigInt(4294967295));e[t+7]=u,u=u>>8,e[t+6]=u,u=u>>8,e[t+5]=u,u=u>>8,e[t+4]=u;let f=Number(r>>BigInt(32)&BigInt(4294967295));return e[t+3]=f,f=f>>8,e[t+2]=f,f=f>>8,e[t+1]=f,f=f>>8,e[t]=f,t+8}c(rr,"wrtBigUInt64BE"),o.prototype.writeBigUInt64LE=k(c(function(r,t=0){return v(this,r,t,BigInt(0),BigInt("0xffffffffffffffff"))},"writeBigUInt64LE")),o.prototype.writeBigUInt64BE=k(c(function(r,t=0){return rr(this,r,t,BigInt(0),BigInt("0xffffffffffffffff"))},"writeBigUInt64BE")),o.prototype.writeIntLE=c(function(r,t,i,n){if(r=+r,t=t>>>0,!n){const F=Math.pow(2,8*i-1);M(this,r,t,i,F-1,-F)}let u=0,f=1,a=0;for(this[t]=r&255;++u<i&&(f*=256);)r<0&&a===0&&this[t+u-1]!==0&&(a=1),this[t+u]=(r/f>>0)-a&255;return t+i},"writeIntLE"),o.prototype.writeIntBE=c(function(r,t,i,n){if(r=+r,t=t>>>0,!n){const F=Math.pow(2,8*i-1);M(this,r,t,i,F-1,-F)}let u=i-1,f=1,a=0;for(this[t+u]=r&255;--u>=0&&(f*=256);)r<0&&a===0&&this[t+u+1]!==0&&(a=1),this[t+u]=(r/f>>0)-a&255;return t+i},"writeIntBE"),o.prototype.writeInt8=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,1,127,-128),r<0&&(r=255+r+1),this[t]=r&255,t+1},"writeInt8"),o.prototype.writeInt16LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,32767,-32768),this[t]=r&255,this[t+1]=r>>>8,t+2},"writeInt16LE"),o.prototype.writeInt16BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,32767,-32768),this[t]=r>>>8,this[t+1]=r&255,t+2},"writeInt16BE"),o.prototype.writeInt32LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,2147483647,-2147483648),this[t]=r&255,this[t+1]=r>>>8,this[t+2]=r>>>16,this[t+3]=r>>>24,t+4},"writeInt32LE"),o.prototype.writeInt32BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,2147483647,-2147483648),r<0&&(r=4294967295+r+1),this[t]=r>>>24,this[t+1]=r>>>16,this[t+2]=r>>>8,this[t+3]=r&255,t+4},"writeInt32BE"),o.prototype.writeBigInt64LE=k(c(function(r,t=0){return v(this,r,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))},"writeBigInt64LE")),o.prototype.writeBigInt64BE=k(c(function(r,t=0){return rr(this,r,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))},"writeBigInt64BE"));function tr(e,r,t,i,n,u){if(t+i>e.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}c(tr,"checkIEEE754");function er(e,r,t,i,n){return r=+r,t=t>>>0,n||tr(e,r,t,4),U.write(e,r,t,i,23,4),t+4}c(er,"writeFloat"),o.prototype.writeFloatLE=c(function(r,t,i){return er(this,r,t,!0,i)},"writeFloatLE"),o.prototype.writeFloatBE=c(function(r,t,i){return er(this,r,t,!1,i)},"writeFloatBE");function ir(e,r,t,i,n){return r=+r,t=t>>>0,n||tr(e,r,t,8),U.write(e,r,t,i,52,8),t+8}c(ir,"writeDouble"),o.prototype.writeDoubleLE=c(function(r,t,i){return ir(this,r,t,!0,i)},"writeDoubleLE"),o.prototype.writeDoubleBE=c(function(r,t,i){return ir(this,r,t,!1,i)},"writeDoubleBE"),o.prototype.copy=c(function(r,t,i,n){if(!o.isBuffer(r))throw new TypeError("argument should be a Buffer");if(i||(i=0),!n&&n!==0&&(n=this.length),t>=r.length&&(t=r.length),t||(t=0),n>0&&n<i&&(n=i),n===i||r.length===0||this.length===0)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(i<0||i>=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),r.length-t<n-i&&(n=r.length-t+i);const u=n-i;return this===r&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(t,i,n):Uint8Array.prototype.set.call(r,this.subarray(i,n),t),u},"copy"),o.prototype.fill=c(function(r,t,i,n){if(typeof r=="string"){if(typeof t=="string"?(n=t,t=0,i=this.length):typeof i=="string"&&(n=i,i=this.length),n!==void 0&&typeof n!="string")throw new TypeError("encoding must be a string");if(typeof n=="string"&&!o.isEncoding(n))throw new TypeError("Unknown encoding: "+n);if(r.length===1){const f=r.charCodeAt(0);(n==="utf8"&&f<128||n==="latin1")&&(r=f)}}else typeof r=="number"?r=r&255:typeof r=="boolean"&&(r=Number(r));if(t<0||this.length<t||this.length<i)throw new RangeError("Out of range index");if(i<=t)return this;t=t>>>0,i=i===void 0?this.length:i>>>0,r||(r=0);let u;if(typeof r=="number")for(u=t;u<i;++u)this[u]=r;else{const f=o.isBuffer(r)?r:o.from(r,n),a=f.length;if(a===0)throw new TypeError('The value "'+r+'" is invalid for argument "value"');for(u=0;u<i-t;++u)this[u+t]=f[u%a]}return this},"fill");const O={};function J(e,r,t){O[e]=class extends t{static{c(this,"NodeError")}constructor(){super(),Object.defineProperty(this,"message",{value:r.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${e}]`,this.stack,delete this.name}get code(){return e}set code(n){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:n,writable:!0})}toString(){return`${this.name} [${e}]: ${this.message}`}}}c(J,"E"),J("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?`${e} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),J("ERR_INVALID_ARG_TYPE",function(e,r){return`The "${e}" argument must be of type number. Received type ${typeof r}`},TypeError),J("ERR_OUT_OF_RANGE",function(e,r,t){let i=`The value of "${e}" is out of range.`,n=t;return Number.isInteger(t)&&Math.abs(t)>2**32?n=nr(String(t)):typeof t=="bigint"&&(n=String(t),(t>BigInt(2)**BigInt(32)||t<-(BigInt(2)**BigInt(32)))&&(n=nr(n)),n+="n"),i+=` It must be ${r}. Received ${n}`,i},RangeError);function nr(e){let r="",t=e.length;const i=e[0]==="-"?1:0;for(;t>=i+4;t-=3)r=`_${e.slice(t-3,t)}${r}`;return`${e.slice(0,t)}${r}`}c(nr,"addNumericalSeparator");function Ir(e,r,t){q(r,"offset"),(e[r]===void 0||e[r+t]===void 0)&&G(r,e.length-(t+1))}c(Ir,"checkBounds");function or(e,r,t,i,n,u){if(e>t||e<r){const f=typeof r=="bigint"?"n":"";let a;throw r===0||r===BigInt(0)?a=`>= 0${f} and < 2${f} ** ${(u+1)*8}${f}`:a=`>= -(2${f} ** ${(u+1)*8-1}${f}) and < 2 ** ${(u+1)*8-1}${f}`,new O.ERR_OUT_OF_RANGE("value",a,e)}Ir(i,n,u)}c(or,"checkIntBI");function q(e,r){if(typeof e!="number")throw new O.ERR_INVALID_ARG_TYPE(r,"number",e)}c(q,"validateNumber");function G(e,r,t){throw Math.floor(e)!==e?(q(e,t),new O.ERR_OUT_OF_RANGE("offset","an integer",e)):r<0?new O.ERR_BUFFER_OUT_OF_BOUNDS:new O.ERR_OUT_OF_RANGE("offset",`>= 0 and <= ${r}`,e)}c(G,"boundsError");const Fr=/[^+/0-9A-Za-z-_]/g;function Ar(e){if(e=e.split("=")[0],e=e.trim().replace(Fr,""),e.length<2)return"";for(;e.length%4!==0;)e=e+"=";return e}c(Ar,"base64clean");function V(e,r){r=r||1/0;let t;const i=e.length;let n=null;const u=[];for(let f=0;f<i;++f){if(t=e.charCodeAt(f),t>55295&&t<57344){if(!n){if(t>56319){(r-=3)>-1&&u.push(239,191,189);continue}else if(f+1===i){(r-=3)>-1&&u.push(239,191,189);continue}n=t;continue}if(t<56320){(r-=3)>-1&&u.push(239,191,189),n=t;continue}t=(n-55296<<10|t-56320)+65536}else n&&(r-=3)>-1&&u.push(239,191,189);if(n=null,t<128){if((r-=1)<0)break;u.push(t)}else if(t<2048){if((r-=2)<0)break;u.push(t>>6|192,t&63|128)}else if(t<65536){if((r-=3)<0)break;u.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((r-=4)<0)break;u.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else throw new Error("Invalid code point")}return u}c(V,"utf8ToBytes");function Ur(e){const r=[];for(let t=0;t<e.length;++t)r.push(e.charCodeAt(t)&255);return r}c(Ur,"asciiToBytes");function Tr(e,r){let t,i,n;const u=[];for(let f=0;f<e.length&&!((r-=2)<0);++f)t=e.charCodeAt(f),i=t>>8,n=t%256,u.push(n),u.push(i);return u}c(Tr,"utf16leToBytes");function ur(e){return l.toByteArray(Ar(e))}c(ur,"base64ToBytes");function Y(e,r,t,i){let n;for(n=0;n<i&&!(n+t>=r.length||n>=e.length);++n)r[n+t]=e[n];return n}c(Y,"blitBuffer");function D(e,r){return e instanceof r||e!=null&&e.constructor!=null&&e.constructor.name!=null&&e.constructor.name===r.name}c(D,"isInstance");function H(e){return e!==e}c(H,"numberIsNaN");const Rr=(function(){const e="0123456789abcdef",r=new Array(256);for(let t=0;t<16;++t){const i=t*16;for(let n=0;n<16;++n)r[i+n]=e[t]+e[n]}return r})();function k(e){return typeof BigInt>"u"?Cr:e}c(k,"defineBigIntMethod");function Cr(){throw new Error("BigInt not supported")}c(Cr,"BufferBigIntNotDefined")})(X)),X}c(Lr,"requireBuffer");var Nr=Lr();typeof globalThis.Buffer>"u"&&(globalThis.Buffer=Nr.Buffer);typeof globalThis.global>"u"&&(globalThis.global=globalThis);typeof globalThis.process>"u"&&(globalThis.process={env:{}});const Pr="modulepreload",Mr=c(function(x){return"/"+x},"assetsURL"),sr={},Dr=c(function(l,U,S){let p=Promise.resolve();if(U&&U.length>0){let s=c(function(I){return Promise.all(I.map(E=>Promise.resolve(E).then(m=>({status:"fulfilled",value:m}),m=>({status:"rejected",reason:m}))))},"allSettled2");document.getElementsByTagName("link");const o=document.querySelector("meta[property=csp-nonce]"),b=o?.nonce||o?.getAttribute("nonce");p=s(U.map(I=>{if(I=Mr(I),I in sr)return;sr[I]=!0;const E=I.endsWith(".css"),m=E?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${I}"]${m}`))return;const R=document.createElement("link");if(R.rel=E?"stylesheet":Pr,E||(R.as="script"),R.crossOrigin="",R.href=I,b&&R.setAttribute("nonce",b),document.head.appendChild(R),E)return new Promise((h,y)=>{R.addEventListener("load",h),R.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${I}`)))})}))}function w(s){const o=new Event("vite:preloadError",{cancelable:!0});if(o.payload=s,window.dispatchEvent(o),!o.defaultPrevented)throw s}return c(w,"handlePreloadError"),p.then(s=>{for(const o of s||[])o.status==="rejected"&&w(o.reason);return l().catch(w)})},"preload");Dr(()=>import("./main-eWX6ruOp.js"),__vite__mapDeps([0,1,2,3]));export{Lr as r};
8
- //# sourceMappingURL=main-BXR0yfv8.js.map
7
+ */var hr;function Lr(){return hr||(hr=1,(function(x){const l=_r(),U=br(),S=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;x.Buffer=o,x.SlowBuffer=C,x.INSPECT_MAX_BYTES=50;const p=2147483647;x.kMaxLength=p,o.TYPED_ARRAY_SUPPORT=w(),!o.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function w(){try{const e=new Uint8Array(1),r={foo:c(function(){return 42},"foo")};return Object.setPrototypeOf(r,Uint8Array.prototype),Object.setPrototypeOf(e,r),e.foo()===42}catch{return!1}}c(w,"typedArraySupport"),Object.defineProperty(o.prototype,"parent",{enumerable:!0,get:c(function(){if(o.isBuffer(this))return this.buffer},"get")}),Object.defineProperty(o.prototype,"offset",{enumerable:!0,get:c(function(){if(o.isBuffer(this))return this.byteOffset},"get")});function s(e){if(e>p)throw new RangeError('The value "'+e+'" is invalid for option "size"');const r=new Uint8Array(e);return Object.setPrototypeOf(r,o.prototype),r}c(s,"createBuffer");function o(e,r,t){if(typeof e=="number"){if(typeof r=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return m(e)}return b(e,r,t)}c(o,"Buffer"),o.poolSize=8192;function b(e,r,t){if(typeof e=="string")return R(e,r);if(ArrayBuffer.isView(e))return y(e);if(e==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(D(e,ArrayBuffer)||e&&D(e.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(D(e,SharedArrayBuffer)||e&&D(e.buffer,SharedArrayBuffer)))return d(e,r,t);if(typeof e=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const i=e.valueOf&&e.valueOf();if(i!=null&&i!==e)return o.from(i,r,t);const n=L(e);if(n)return n;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof e[Symbol.toPrimitive]=="function")return o.from(e[Symbol.toPrimitive]("string"),r,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}c(b,"from"),o.from=function(e,r,t){return b(e,r,t)},Object.setPrototypeOf(o.prototype,Uint8Array.prototype),Object.setPrototypeOf(o,Uint8Array);function I(e){if(typeof e!="number")throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}c(I,"assertSize");function E(e,r,t){return I(e),e<=0?s(e):r!==void 0?typeof t=="string"?s(e).fill(r,t):s(e).fill(r):s(e)}c(E,"alloc"),o.alloc=function(e,r,t){return E(e,r,t)};function m(e){return I(e),s(e<0?0:N(e)|0)}c(m,"allocUnsafe"),o.allocUnsafe=function(e){return m(e)},o.allocUnsafeSlow=function(e){return m(e)};function R(e,r){if((typeof r!="string"||r==="")&&(r="utf8"),!o.isEncoding(r))throw new TypeError("Unknown encoding: "+r);const t=P(e,r)|0;let i=s(t);const n=i.write(e,r);return n!==t&&(i=i.slice(0,n)),i}c(R,"fromString");function h(e){const r=e.length<0?0:N(e.length)|0,t=s(r);for(let i=0;i<r;i+=1)t[i]=e[i]&255;return t}c(h,"fromArrayLike");function y(e){if(D(e,Uint8Array)){const r=new Uint8Array(e);return d(r.buffer,r.byteOffset,r.byteLength)}return h(e)}c(y,"fromArrayView");function d(e,r,t){if(r<0||e.byteLength<r)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<r+(t||0))throw new RangeError('"length" is outside of buffer bounds');let i;return r===void 0&&t===void 0?i=new Uint8Array(e):t===void 0?i=new Uint8Array(e,r):i=new Uint8Array(e,r,t),Object.setPrototypeOf(i,o.prototype),i}c(d,"fromArrayBuffer");function L(e){if(o.isBuffer(e)){const r=N(e.length)|0,t=s(r);return t.length===0||e.copy(t,0,0,r),t}if(e.length!==void 0)return typeof e.length!="number"||H(e.length)?s(0):h(e);if(e.type==="Buffer"&&Array.isArray(e.data))return h(e.data)}c(L,"fromObject");function N(e){if(e>=p)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+p.toString(16)+" bytes");return e|0}c(N,"checked");function C(e){return+e!=e&&(e=0),o.alloc(+e)}c(C,"SlowBuffer"),o.isBuffer=c(function(r){return r!=null&&r._isBuffer===!0&&r!==o.prototype},"isBuffer"),o.compare=c(function(r,t){if(D(r,Uint8Array)&&(r=o.from(r,r.offset,r.byteLength)),D(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),!o.isBuffer(r)||!o.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(r===t)return 0;let i=r.length,n=t.length;for(let u=0,f=Math.min(i,n);u<f;++u)if(r[u]!==t[u]){i=r[u],n=t[u];break}return i<n?-1:n<i?1:0},"compare"),o.isEncoding=c(function(r){switch(String(r).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},"isEncoding"),o.concat=c(function(r,t){if(!Array.isArray(r))throw new TypeError('"list" argument must be an Array of Buffers');if(r.length===0)return o.alloc(0);let i;if(t===void 0)for(t=0,i=0;i<r.length;++i)t+=r[i].length;const n=o.allocUnsafe(t);let u=0;for(i=0;i<r.length;++i){let f=r[i];if(D(f,Uint8Array))u+f.length>n.length?(o.isBuffer(f)||(f=o.from(f)),f.copy(n,u)):Uint8Array.prototype.set.call(n,f,u);else if(o.isBuffer(f))f.copy(n,u);else throw new TypeError('"list" argument must be an Array of Buffers');u+=f.length}return n},"concat");function P(e,r){if(o.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||D(e,ArrayBuffer))return e.byteLength;if(typeof e!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);const t=e.length,i=arguments.length>2&&arguments[2]===!0;if(!i&&t===0)return 0;let n=!1;for(;;)switch(r){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return V(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return t*2;case"hex":return t>>>1;case"base64":return ur(e).length;default:if(n)return i?-1:V(e).length;r=(""+r).toLowerCase(),n=!0}}c(P,"byteLength"),o.byteLength=P;function $(e,r,t){let i=!1;if((r===void 0||r<0)&&(r=0),r>this.length||((t===void 0||t>this.length)&&(t=this.length),t<=0)||(t>>>=0,r>>>=0,t<=r))return"";for(e||(e="utf8");;)switch(e){case"hex":return mr(this,r,t);case"utf8":case"utf-8":return Z(this,r,t);case"ascii":return Br(this,r,t);case"latin1":case"binary":return Er(this,r,t);case"base64":return xr(this,r,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return gr(this,r,t);default:if(i)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),i=!0}}c($,"slowToString"),o.prototype._isBuffer=!0;function T(e,r,t){const i=e[r];e[r]=e[t],e[t]=i}c(T,"swap"),o.prototype.swap16=c(function(){const r=this.length;if(r%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let t=0;t<r;t+=2)T(this,t,t+1);return this},"swap16"),o.prototype.swap32=c(function(){const r=this.length;if(r%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let t=0;t<r;t+=4)T(this,t,t+3),T(this,t+1,t+2);return this},"swap32"),o.prototype.swap64=c(function(){const r=this.length;if(r%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let t=0;t<r;t+=8)T(this,t,t+7),T(this,t+1,t+6),T(this,t+2,t+5),T(this,t+3,t+4);return this},"swap64"),o.prototype.toString=c(function(){const r=this.length;return r===0?"":arguments.length===0?Z(this,0,r):$.apply(this,arguments)},"toString"),o.prototype.toLocaleString=o.prototype.toString,o.prototype.equals=c(function(r){if(!o.isBuffer(r))throw new TypeError("Argument must be a Buffer");return this===r?!0:o.compare(this,r)===0},"equals"),o.prototype.inspect=c(function(){let r="";const t=x.INSPECT_MAX_BYTES;return r=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(r+=" ... "),"<Buffer "+r+">"},"inspect"),S&&(o.prototype[S]=o.prototype.inspect),o.prototype.compare=c(function(r,t,i,n,u){if(D(r,Uint8Array)&&(r=o.from(r,r.offset,r.byteLength)),!o.isBuffer(r))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof r);if(t===void 0&&(t=0),i===void 0&&(i=r?r.length:0),n===void 0&&(n=0),u===void 0&&(u=this.length),t<0||i>r.length||n<0||u>this.length)throw new RangeError("out of range index");if(n>=u&&t>=i)return 0;if(n>=u)return-1;if(t>=i)return 1;if(t>>>=0,i>>>=0,n>>>=0,u>>>=0,this===r)return 0;let f=u-n,a=i-t;const F=Math.min(f,a),g=this.slice(n,u),A=r.slice(t,i);for(let B=0;B<F;++B)if(g[B]!==A[B]){f=g[B],a=A[B];break}return f<a?-1:a<f?1:0},"compare");function z(e,r,t,i,n){if(e.length===0)return-1;if(typeof t=="string"?(i=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),t=+t,H(t)&&(t=n?0:e.length-1),t<0&&(t=e.length+t),t>=e.length){if(n)return-1;t=e.length-1}else if(t<0)if(n)t=0;else return-1;if(typeof r=="string"&&(r=o.from(r,i)),o.isBuffer(r))return r.length===0?-1:K(e,r,t,i,n);if(typeof r=="number")return r=r&255,typeof Uint8Array.prototype.indexOf=="function"?n?Uint8Array.prototype.indexOf.call(e,r,t):Uint8Array.prototype.lastIndexOf.call(e,r,t):K(e,[r],t,i,n);throw new TypeError("val must be string, number or Buffer")}c(z,"bidirectionalIndexOf");function K(e,r,t,i,n){let u=1,f=e.length,a=r.length;if(i!==void 0&&(i=String(i).toLowerCase(),i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")){if(e.length<2||r.length<2)return-1;u=2,f/=2,a/=2,t/=2}function F(A,B){return u===1?A[B]:A.readUInt16BE(B*u)}c(F,"read");let g;if(n){let A=-1;for(g=t;g<f;g++)if(F(e,g)===F(r,A===-1?0:g-A)){if(A===-1&&(A=g),g-A+1===a)return A*u}else A!==-1&&(g-=g-A),A=-1}else for(t+a>f&&(t=f-a),g=t;g>=0;g--){let A=!0;for(let B=0;B<a;B++)if(F(e,g+B)!==F(r,B)){A=!1;break}if(A)return g}return-1}c(K,"arrayIndexOf"),o.prototype.includes=c(function(r,t,i){return this.indexOf(r,t,i)!==-1},"includes"),o.prototype.indexOf=c(function(r,t,i){return z(this,r,t,i,!0)},"indexOf"),o.prototype.lastIndexOf=c(function(r,t,i){return z(this,r,t,i,!1)},"lastIndexOf");function lr(e,r,t,i){t=Number(t)||0;const n=e.length-t;i?(i=Number(i),i>n&&(i=n)):i=n;const u=r.length;i>u/2&&(i=u/2);let f;for(f=0;f<i;++f){const a=parseInt(r.substr(f*2,2),16);if(H(a))return f;e[t+f]=a}return f}c(lr,"hexWrite");function pr(e,r,t,i){return Y(V(r,e.length-t),e,t,i)}c(pr,"utf8Write");function ar(e,r,t,i){return Y(Ur(r),e,t,i)}c(ar,"asciiWrite");function yr(e,r,t,i){return Y(ur(r),e,t,i)}c(yr,"base64Write");function wr(e,r,t,i){return Y(Tr(r,e.length-t),e,t,i)}c(wr,"ucs2Write"),o.prototype.write=c(function(r,t,i,n){if(t===void 0)n="utf8",i=this.length,t=0;else if(i===void 0&&typeof t=="string")n=t,i=this.length,t=0;else if(isFinite(t))t=t>>>0,isFinite(i)?(i=i>>>0,n===void 0&&(n="utf8")):(n=i,i=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const u=this.length-t;if((i===void 0||i>u)&&(i=u),r.length>0&&(i<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");let f=!1;for(;;)switch(n){case"hex":return lr(this,r,t,i);case"utf8":case"utf-8":return pr(this,r,t,i);case"ascii":case"latin1":case"binary":return ar(this,r,t,i);case"base64":return yr(this,r,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return wr(this,r,t,i);default:if(f)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),f=!0}},"write"),o.prototype.toJSON=c(function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},"toJSON");function xr(e,r,t){return r===0&&t===e.length?l.fromByteArray(e):l.fromByteArray(e.slice(r,t))}c(xr,"base64Slice");function Z(e,r,t){t=Math.min(e.length,t);const i=[];let n=r;for(;n<t;){const u=e[n];let f=null,a=u>239?4:u>223?3:u>191?2:1;if(n+a<=t){let F,g,A,B;switch(a){case 1:u<128&&(f=u);break;case 2:F=e[n+1],(F&192)===128&&(B=(u&31)<<6|F&63,B>127&&(f=B));break;case 3:F=e[n+1],g=e[n+2],(F&192)===128&&(g&192)===128&&(B=(u&15)<<12|(F&63)<<6|g&63,B>2047&&(B<55296||B>57343)&&(f=B));break;case 4:F=e[n+1],g=e[n+2],A=e[n+3],(F&192)===128&&(g&192)===128&&(A&192)===128&&(B=(u&15)<<18|(F&63)<<12|(g&63)<<6|A&63,B>65535&&B<1114112&&(f=B))}}f===null?(f=65533,a=1):f>65535&&(f-=65536,i.push(f>>>10&1023|55296),f=56320|f&1023),i.push(f),n+=a}return dr(i)}c(Z,"utf8Slice");const Q=4096;function dr(e){const r=e.length;if(r<=Q)return String.fromCharCode.apply(String,e);let t="",i=0;for(;i<r;)t+=String.fromCharCode.apply(String,e.slice(i,i+=Q));return t}c(dr,"decodeCodePointsArray");function Br(e,r,t){let i="";t=Math.min(e.length,t);for(let n=r;n<t;++n)i+=String.fromCharCode(e[n]&127);return i}c(Br,"asciiSlice");function Er(e,r,t){let i="";t=Math.min(e.length,t);for(let n=r;n<t;++n)i+=String.fromCharCode(e[n]);return i}c(Er,"latin1Slice");function mr(e,r,t){const i=e.length;(!r||r<0)&&(r=0),(!t||t<0||t>i)&&(t=i);let n="";for(let u=r;u<t;++u)n+=Rr[e[u]];return n}c(mr,"hexSlice");function gr(e,r,t){const i=e.slice(r,t);let n="";for(let u=0;u<i.length-1;u+=2)n+=String.fromCharCode(i[u]+i[u+1]*256);return n}c(gr,"utf16leSlice"),o.prototype.slice=c(function(r,t){const i=this.length;r=~~r,t=t===void 0?i:~~t,r<0?(r+=i,r<0&&(r=0)):r>i&&(r=i),t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),t<r&&(t=r);const n=this.subarray(r,t);return Object.setPrototypeOf(n,o.prototype),n},"slice");function _(e,r,t){if(e%1!==0||e<0)throw new RangeError("offset is not uint");if(e+r>t)throw new RangeError("Trying to access beyond buffer length")}c(_,"checkOffset"),o.prototype.readUintLE=o.prototype.readUIntLE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=this[r],u=1,f=0;for(;++f<t&&(u*=256);)n+=this[r+f]*u;return n},"readUIntLE"),o.prototype.readUintBE=o.prototype.readUIntBE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=this[r+--t],u=1;for(;t>0&&(u*=256);)n+=this[r+--t]*u;return n},"readUIntBE"),o.prototype.readUint8=o.prototype.readUInt8=c(function(r,t){return r=r>>>0,t||_(r,1,this.length),this[r]},"readUInt8"),o.prototype.readUint16LE=o.prototype.readUInt16LE=c(function(r,t){return r=r>>>0,t||_(r,2,this.length),this[r]|this[r+1]<<8},"readUInt16LE"),o.prototype.readUint16BE=o.prototype.readUInt16BE=c(function(r,t){return r=r>>>0,t||_(r,2,this.length),this[r]<<8|this[r+1]},"readUInt16BE"),o.prototype.readUint32LE=o.prototype.readUInt32LE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),(this[r]|this[r+1]<<8|this[r+2]<<16)+this[r+3]*16777216},"readUInt32LE"),o.prototype.readUint32BE=o.prototype.readUInt32BE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),this[r]*16777216+(this[r+1]<<16|this[r+2]<<8|this[r+3])},"readUInt32BE"),o.prototype.readBigUInt64LE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=t+this[++r]*2**8+this[++r]*2**16+this[++r]*2**24,u=this[++r]+this[++r]*2**8+this[++r]*2**16+i*2**24;return BigInt(n)+(BigInt(u)<<BigInt(32))},"readBigUInt64LE")),o.prototype.readBigUInt64BE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=t*2**24+this[++r]*2**16+this[++r]*2**8+this[++r],u=this[++r]*2**24+this[++r]*2**16+this[++r]*2**8+i;return(BigInt(n)<<BigInt(32))+BigInt(u)},"readBigUInt64BE")),o.prototype.readIntLE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=this[r],u=1,f=0;for(;++f<t&&(u*=256);)n+=this[r+f]*u;return u*=128,n>=u&&(n-=Math.pow(2,8*t)),n},"readIntLE"),o.prototype.readIntBE=c(function(r,t,i){r=r>>>0,t=t>>>0,i||_(r,t,this.length);let n=t,u=1,f=this[r+--n];for(;n>0&&(u*=256);)f+=this[r+--n]*u;return u*=128,f>=u&&(f-=Math.pow(2,8*t)),f},"readIntBE"),o.prototype.readInt8=c(function(r,t){return r=r>>>0,t||_(r,1,this.length),this[r]&128?(255-this[r]+1)*-1:this[r]},"readInt8"),o.prototype.readInt16LE=c(function(r,t){r=r>>>0,t||_(r,2,this.length);const i=this[r]|this[r+1]<<8;return i&32768?i|4294901760:i},"readInt16LE"),o.prototype.readInt16BE=c(function(r,t){r=r>>>0,t||_(r,2,this.length);const i=this[r+1]|this[r]<<8;return i&32768?i|4294901760:i},"readInt16BE"),o.prototype.readInt32LE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),this[r]|this[r+1]<<8|this[r+2]<<16|this[r+3]<<24},"readInt32LE"),o.prototype.readInt32BE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),this[r]<<24|this[r+1]<<16|this[r+2]<<8|this[r+3]},"readInt32BE"),o.prototype.readBigInt64LE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=this[r+4]+this[r+5]*2**8+this[r+6]*2**16+(i<<24);return(BigInt(n)<<BigInt(32))+BigInt(t+this[++r]*2**8+this[++r]*2**16+this[++r]*2**24)},"readBigInt64LE")),o.prototype.readBigInt64BE=k(c(function(r){r=r>>>0,q(r,"offset");const t=this[r],i=this[r+7];(t===void 0||i===void 0)&&G(r,this.length-8);const n=(t<<24)+this[++r]*2**16+this[++r]*2**8+this[++r];return(BigInt(n)<<BigInt(32))+BigInt(this[++r]*2**24+this[++r]*2**16+this[++r]*2**8+i)},"readBigInt64BE")),o.prototype.readFloatLE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),U.read(this,r,!0,23,4)},"readFloatLE"),o.prototype.readFloatBE=c(function(r,t){return r=r>>>0,t||_(r,4,this.length),U.read(this,r,!1,23,4)},"readFloatBE"),o.prototype.readDoubleLE=c(function(r,t){return r=r>>>0,t||_(r,8,this.length),U.read(this,r,!0,52,8)},"readDoubleLE"),o.prototype.readDoubleBE=c(function(r,t){return r=r>>>0,t||_(r,8,this.length),U.read(this,r,!1,52,8)},"readDoubleBE");function M(e,r,t,i,n,u){if(!o.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>n||r<u)throw new RangeError('"value" argument is out of bounds');if(t+i>e.length)throw new RangeError("Index out of range")}c(M,"checkInt"),o.prototype.writeUintLE=o.prototype.writeUIntLE=c(function(r,t,i,n){if(r=+r,t=t>>>0,i=i>>>0,!n){const a=Math.pow(2,8*i)-1;M(this,r,t,i,a,0)}let u=1,f=0;for(this[t]=r&255;++f<i&&(u*=256);)this[t+f]=r/u&255;return t+i},"writeUIntLE"),o.prototype.writeUintBE=o.prototype.writeUIntBE=c(function(r,t,i,n){if(r=+r,t=t>>>0,i=i>>>0,!n){const a=Math.pow(2,8*i)-1;M(this,r,t,i,a,0)}let u=i-1,f=1;for(this[t+u]=r&255;--u>=0&&(f*=256);)this[t+u]=r/f&255;return t+i},"writeUIntBE"),o.prototype.writeUint8=o.prototype.writeUInt8=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,1,255,0),this[t]=r&255,t+1},"writeUInt8"),o.prototype.writeUint16LE=o.prototype.writeUInt16LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,65535,0),this[t]=r&255,this[t+1]=r>>>8,t+2},"writeUInt16LE"),o.prototype.writeUint16BE=o.prototype.writeUInt16BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,65535,0),this[t]=r>>>8,this[t+1]=r&255,t+2},"writeUInt16BE"),o.prototype.writeUint32LE=o.prototype.writeUInt32LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,4294967295,0),this[t+3]=r>>>24,this[t+2]=r>>>16,this[t+1]=r>>>8,this[t]=r&255,t+4},"writeUInt32LE"),o.prototype.writeUint32BE=o.prototype.writeUInt32BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,4294967295,0),this[t]=r>>>24,this[t+1]=r>>>16,this[t+2]=r>>>8,this[t+3]=r&255,t+4},"writeUInt32BE");function v(e,r,t,i,n){or(r,i,n,e,t,7);let u=Number(r&BigInt(4294967295));e[t++]=u,u=u>>8,e[t++]=u,u=u>>8,e[t++]=u,u=u>>8,e[t++]=u;let f=Number(r>>BigInt(32)&BigInt(4294967295));return e[t++]=f,f=f>>8,e[t++]=f,f=f>>8,e[t++]=f,f=f>>8,e[t++]=f,t}c(v,"wrtBigUInt64LE");function rr(e,r,t,i,n){or(r,i,n,e,t,7);let u=Number(r&BigInt(4294967295));e[t+7]=u,u=u>>8,e[t+6]=u,u=u>>8,e[t+5]=u,u=u>>8,e[t+4]=u;let f=Number(r>>BigInt(32)&BigInt(4294967295));return e[t+3]=f,f=f>>8,e[t+2]=f,f=f>>8,e[t+1]=f,f=f>>8,e[t]=f,t+8}c(rr,"wrtBigUInt64BE"),o.prototype.writeBigUInt64LE=k(c(function(r,t=0){return v(this,r,t,BigInt(0),BigInt("0xffffffffffffffff"))},"writeBigUInt64LE")),o.prototype.writeBigUInt64BE=k(c(function(r,t=0){return rr(this,r,t,BigInt(0),BigInt("0xffffffffffffffff"))},"writeBigUInt64BE")),o.prototype.writeIntLE=c(function(r,t,i,n){if(r=+r,t=t>>>0,!n){const F=Math.pow(2,8*i-1);M(this,r,t,i,F-1,-F)}let u=0,f=1,a=0;for(this[t]=r&255;++u<i&&(f*=256);)r<0&&a===0&&this[t+u-1]!==0&&(a=1),this[t+u]=(r/f>>0)-a&255;return t+i},"writeIntLE"),o.prototype.writeIntBE=c(function(r,t,i,n){if(r=+r,t=t>>>0,!n){const F=Math.pow(2,8*i-1);M(this,r,t,i,F-1,-F)}let u=i-1,f=1,a=0;for(this[t+u]=r&255;--u>=0&&(f*=256);)r<0&&a===0&&this[t+u+1]!==0&&(a=1),this[t+u]=(r/f>>0)-a&255;return t+i},"writeIntBE"),o.prototype.writeInt8=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,1,127,-128),r<0&&(r=255+r+1),this[t]=r&255,t+1},"writeInt8"),o.prototype.writeInt16LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,32767,-32768),this[t]=r&255,this[t+1]=r>>>8,t+2},"writeInt16LE"),o.prototype.writeInt16BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,2,32767,-32768),this[t]=r>>>8,this[t+1]=r&255,t+2},"writeInt16BE"),o.prototype.writeInt32LE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,2147483647,-2147483648),this[t]=r&255,this[t+1]=r>>>8,this[t+2]=r>>>16,this[t+3]=r>>>24,t+4},"writeInt32LE"),o.prototype.writeInt32BE=c(function(r,t,i){return r=+r,t=t>>>0,i||M(this,r,t,4,2147483647,-2147483648),r<0&&(r=4294967295+r+1),this[t]=r>>>24,this[t+1]=r>>>16,this[t+2]=r>>>8,this[t+3]=r&255,t+4},"writeInt32BE"),o.prototype.writeBigInt64LE=k(c(function(r,t=0){return v(this,r,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))},"writeBigInt64LE")),o.prototype.writeBigInt64BE=k(c(function(r,t=0){return rr(this,r,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))},"writeBigInt64BE"));function tr(e,r,t,i,n,u){if(t+i>e.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}c(tr,"checkIEEE754");function er(e,r,t,i,n){return r=+r,t=t>>>0,n||tr(e,r,t,4),U.write(e,r,t,i,23,4),t+4}c(er,"writeFloat"),o.prototype.writeFloatLE=c(function(r,t,i){return er(this,r,t,!0,i)},"writeFloatLE"),o.prototype.writeFloatBE=c(function(r,t,i){return er(this,r,t,!1,i)},"writeFloatBE");function ir(e,r,t,i,n){return r=+r,t=t>>>0,n||tr(e,r,t,8),U.write(e,r,t,i,52,8),t+8}c(ir,"writeDouble"),o.prototype.writeDoubleLE=c(function(r,t,i){return ir(this,r,t,!0,i)},"writeDoubleLE"),o.prototype.writeDoubleBE=c(function(r,t,i){return ir(this,r,t,!1,i)},"writeDoubleBE"),o.prototype.copy=c(function(r,t,i,n){if(!o.isBuffer(r))throw new TypeError("argument should be a Buffer");if(i||(i=0),!n&&n!==0&&(n=this.length),t>=r.length&&(t=r.length),t||(t=0),n>0&&n<i&&(n=i),n===i||r.length===0||this.length===0)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(i<0||i>=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),r.length-t<n-i&&(n=r.length-t+i);const u=n-i;return this===r&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(t,i,n):Uint8Array.prototype.set.call(r,this.subarray(i,n),t),u},"copy"),o.prototype.fill=c(function(r,t,i,n){if(typeof r=="string"){if(typeof t=="string"?(n=t,t=0,i=this.length):typeof i=="string"&&(n=i,i=this.length),n!==void 0&&typeof n!="string")throw new TypeError("encoding must be a string");if(typeof n=="string"&&!o.isEncoding(n))throw new TypeError("Unknown encoding: "+n);if(r.length===1){const f=r.charCodeAt(0);(n==="utf8"&&f<128||n==="latin1")&&(r=f)}}else typeof r=="number"?r=r&255:typeof r=="boolean"&&(r=Number(r));if(t<0||this.length<t||this.length<i)throw new RangeError("Out of range index");if(i<=t)return this;t=t>>>0,i=i===void 0?this.length:i>>>0,r||(r=0);let u;if(typeof r=="number")for(u=t;u<i;++u)this[u]=r;else{const f=o.isBuffer(r)?r:o.from(r,n),a=f.length;if(a===0)throw new TypeError('The value "'+r+'" is invalid for argument "value"');for(u=0;u<i-t;++u)this[u+t]=f[u%a]}return this},"fill");const O={};function J(e,r,t){O[e]=class extends t{static{c(this,"NodeError")}constructor(){super(),Object.defineProperty(this,"message",{value:r.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${e}]`,this.stack,delete this.name}get code(){return e}set code(n){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:n,writable:!0})}toString(){return`${this.name} [${e}]: ${this.message}`}}}c(J,"E"),J("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?`${e} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),J("ERR_INVALID_ARG_TYPE",function(e,r){return`The "${e}" argument must be of type number. Received type ${typeof r}`},TypeError),J("ERR_OUT_OF_RANGE",function(e,r,t){let i=`The value of "${e}" is out of range.`,n=t;return Number.isInteger(t)&&Math.abs(t)>2**32?n=nr(String(t)):typeof t=="bigint"&&(n=String(t),(t>BigInt(2)**BigInt(32)||t<-(BigInt(2)**BigInt(32)))&&(n=nr(n)),n+="n"),i+=` It must be ${r}. Received ${n}`,i},RangeError);function nr(e){let r="",t=e.length;const i=e[0]==="-"?1:0;for(;t>=i+4;t-=3)r=`_${e.slice(t-3,t)}${r}`;return`${e.slice(0,t)}${r}`}c(nr,"addNumericalSeparator");function Ir(e,r,t){q(r,"offset"),(e[r]===void 0||e[r+t]===void 0)&&G(r,e.length-(t+1))}c(Ir,"checkBounds");function or(e,r,t,i,n,u){if(e>t||e<r){const f=typeof r=="bigint"?"n":"";let a;throw r===0||r===BigInt(0)?a=`>= 0${f} and < 2${f} ** ${(u+1)*8}${f}`:a=`>= -(2${f} ** ${(u+1)*8-1}${f}) and < 2 ** ${(u+1)*8-1}${f}`,new O.ERR_OUT_OF_RANGE("value",a,e)}Ir(i,n,u)}c(or,"checkIntBI");function q(e,r){if(typeof e!="number")throw new O.ERR_INVALID_ARG_TYPE(r,"number",e)}c(q,"validateNumber");function G(e,r,t){throw Math.floor(e)!==e?(q(e,t),new O.ERR_OUT_OF_RANGE("offset","an integer",e)):r<0?new O.ERR_BUFFER_OUT_OF_BOUNDS:new O.ERR_OUT_OF_RANGE("offset",`>= 0 and <= ${r}`,e)}c(G,"boundsError");const Fr=/[^+/0-9A-Za-z-_]/g;function Ar(e){if(e=e.split("=")[0],e=e.trim().replace(Fr,""),e.length<2)return"";for(;e.length%4!==0;)e=e+"=";return e}c(Ar,"base64clean");function V(e,r){r=r||1/0;let t;const i=e.length;let n=null;const u=[];for(let f=0;f<i;++f){if(t=e.charCodeAt(f),t>55295&&t<57344){if(!n){if(t>56319){(r-=3)>-1&&u.push(239,191,189);continue}else if(f+1===i){(r-=3)>-1&&u.push(239,191,189);continue}n=t;continue}if(t<56320){(r-=3)>-1&&u.push(239,191,189),n=t;continue}t=(n-55296<<10|t-56320)+65536}else n&&(r-=3)>-1&&u.push(239,191,189);if(n=null,t<128){if((r-=1)<0)break;u.push(t)}else if(t<2048){if((r-=2)<0)break;u.push(t>>6|192,t&63|128)}else if(t<65536){if((r-=3)<0)break;u.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((r-=4)<0)break;u.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else throw new Error("Invalid code point")}return u}c(V,"utf8ToBytes");function Ur(e){const r=[];for(let t=0;t<e.length;++t)r.push(e.charCodeAt(t)&255);return r}c(Ur,"asciiToBytes");function Tr(e,r){let t,i,n;const u=[];for(let f=0;f<e.length&&!((r-=2)<0);++f)t=e.charCodeAt(f),i=t>>8,n=t%256,u.push(n),u.push(i);return u}c(Tr,"utf16leToBytes");function ur(e){return l.toByteArray(Ar(e))}c(ur,"base64ToBytes");function Y(e,r,t,i){let n;for(n=0;n<i&&!(n+t>=r.length||n>=e.length);++n)r[n+t]=e[n];return n}c(Y,"blitBuffer");function D(e,r){return e instanceof r||e!=null&&e.constructor!=null&&e.constructor.name!=null&&e.constructor.name===r.name}c(D,"isInstance");function H(e){return e!==e}c(H,"numberIsNaN");const Rr=(function(){const e="0123456789abcdef",r=new Array(256);for(let t=0;t<16;++t){const i=t*16;for(let n=0;n<16;++n)r[i+n]=e[t]+e[n]}return r})();function k(e){return typeof BigInt>"u"?Cr:e}c(k,"defineBigIntMethod");function Cr(){throw new Error("BigInt not supported")}c(Cr,"BufferBigIntNotDefined")})(X)),X}c(Lr,"requireBuffer");var Nr=Lr();typeof globalThis.Buffer>"u"&&(globalThis.Buffer=Nr.Buffer);typeof globalThis.global>"u"&&(globalThis.global=globalThis);typeof globalThis.process>"u"&&(globalThis.process={env:{}});const Pr="modulepreload",Mr=c(function(x){return"/"+x},"assetsURL"),sr={},Dr=c(function(l,U,S){let p=Promise.resolve();if(U&&U.length>0){let s=c(function(I){return Promise.all(I.map(E=>Promise.resolve(E).then(m=>({status:"fulfilled",value:m}),m=>({status:"rejected",reason:m}))))},"allSettled2");document.getElementsByTagName("link");const o=document.querySelector("meta[property=csp-nonce]"),b=o?.nonce||o?.getAttribute("nonce");p=s(U.map(I=>{if(I=Mr(I),I in sr)return;sr[I]=!0;const E=I.endsWith(".css"),m=E?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${I}"]${m}`))return;const R=document.createElement("link");if(R.rel=E?"stylesheet":Pr,E||(R.as="script"),R.crossOrigin="",R.href=I,b&&R.setAttribute("nonce",b),document.head.appendChild(R),E)return new Promise((h,y)=>{R.addEventListener("load",h),R.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${I}`)))})}))}function w(s){const o=new Event("vite:preloadError",{cancelable:!0});if(o.payload=s,window.dispatchEvent(o),!o.defaultPrevented)throw s}return c(w,"handlePreloadError"),p.then(s=>{for(const o of s||[])o.status==="rejected"&&w(o.reason);return l().catch(w)})},"preload");Dr(()=>import("./main-BNtEiK3o.js"),__vite__mapDeps([0,1,2,3]));export{Lr as r};
8
+ //# sourceMappingURL=main-C4q5_rtN.js.map