tasmota-webserial-esptool 9.2.12 → 9.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esp_loader.d.ts +1 -2
- package/dist/esp_loader.js +10 -14
- package/dist/web/index.js +1 -1
- package/js/modules/esptool.js +1 -1
- package/package.json +1 -1
- package/src/esp_loader.ts +11 -15
package/dist/esp_loader.d.ts
CHANGED
|
@@ -403,9 +403,8 @@ export declare class ESPLoader extends EventTarget {
|
|
|
403
403
|
/**
|
|
404
404
|
* @name detectUsbConnectionType
|
|
405
405
|
* Detect if device is using USB-JTAG/Serial or USB-OTG (not external serial chip)
|
|
406
|
-
* Uses USB PID (Product ID) for reliable detection
|
|
406
|
+
* Uses USB PID (Product ID) for reliable detection - does NOT require chipFamily
|
|
407
407
|
* @returns true if USB-JTAG or USB-OTG, false if external serial chip
|
|
408
|
-
* @throws Error if chipFamily is not set
|
|
409
408
|
*/
|
|
410
409
|
detectUsbConnectionType(): Promise<boolean>;
|
|
411
410
|
/**
|
package/dist/esp_loader.js
CHANGED
|
@@ -2731,15 +2731,11 @@ export class ESPLoader extends EventTarget {
|
|
|
2731
2731
|
/**
|
|
2732
2732
|
* @name detectUsbConnectionType
|
|
2733
2733
|
* Detect if device is using USB-JTAG/Serial or USB-OTG (not external serial chip)
|
|
2734
|
-
* Uses USB PID (Product ID) for reliable detection
|
|
2734
|
+
* Uses USB PID (Product ID) for reliable detection - does NOT require chipFamily
|
|
2735
2735
|
* @returns true if USB-JTAG or USB-OTG, false if external serial chip
|
|
2736
|
-
* @throws Error if chipFamily is not set
|
|
2737
2736
|
*/
|
|
2738
2737
|
async detectUsbConnectionType() {
|
|
2739
|
-
|
|
2740
|
-
throw new Error("Cannot detect USB connection type: chipFamily not set");
|
|
2741
|
-
}
|
|
2742
|
-
// Use PID-based detection (most reliable method)
|
|
2738
|
+
// Use PID-based detection
|
|
2743
2739
|
const portInfo = this.port.getInfo();
|
|
2744
2740
|
const pid = portInfo.usbProductId;
|
|
2745
2741
|
const vid = portInfo.usbVendorId;
|
|
@@ -2750,13 +2746,12 @@ export class ESPLoader extends EventTarget {
|
|
|
2750
2746
|
this.logger.debug("Not Espressif VID - external serial chip");
|
|
2751
2747
|
return false;
|
|
2752
2748
|
}
|
|
2753
|
-
// ESP32-S2/S3/C3/C6/H2 USB-JTAG/OTG PIDs
|
|
2754
|
-
//
|
|
2755
|
-
//
|
|
2756
|
-
//
|
|
2757
|
-
//
|
|
2758
|
-
|
|
2759
|
-
const usbJtagPids = [0x1001, 0x0002, 0x1000, 0x4008, 0x4009];
|
|
2749
|
+
// ESP32-S2/S3/C3/C5/C6/C61/H2/P4 USB-JTAG/OTG PIDs
|
|
2750
|
+
// According to official Espressif documentation:
|
|
2751
|
+
// https://docs.espressif.com/projects/esp-iot-solution/en/latest/usb/usb_overview/usb_device_const_COM.html
|
|
2752
|
+
// 0x0002 = ESP32-S2 USB-OTG
|
|
2753
|
+
// 0x1001 = ESP32-S3, C3, C5, C6, C61, H2, P4 USB-Serial-JTAG
|
|
2754
|
+
const usbJtagPids = [0x0002, 0x1001];
|
|
2760
2755
|
const isUsbJtag = usbJtagPids.includes(pid || 0);
|
|
2761
2756
|
this.logger.debug(`USB-JTAG/OTG detection: ${isUsbJtag ? "YES" : "NO"} (PID=0x${pid === null || pid === void 0 ? void 0 : pid.toString(16)})`);
|
|
2762
2757
|
return isUsbJtag;
|
|
@@ -2771,11 +2766,12 @@ export class ESPLoader extends EventTarget {
|
|
|
2771
2766
|
// Set console mode flag
|
|
2772
2767
|
this._consoleMode = true;
|
|
2773
2768
|
// Re-detect USB connection type to ensure we have a definitive value
|
|
2774
|
-
// This handles cases where isUsbJtagOrOtg might be undefined
|
|
2775
2769
|
let isUsbJtag;
|
|
2776
2770
|
try {
|
|
2777
2771
|
isUsbJtag = await this.detectUsbConnectionType();
|
|
2778
2772
|
this.logger.debug(`USB connection type detected: ${isUsbJtag ? "USB-JTAG/OTG" : "External Serial Chip"}`);
|
|
2773
|
+
// CRITICAL: Set the cached value so _resetToFirmwareIfNeeded() can use it
|
|
2774
|
+
this._isUsbJtagOrOtg = isUsbJtag;
|
|
2779
2775
|
}
|
|
2780
2776
|
catch (err) {
|
|
2781
2777
|
// If detection fails, fall back to cached value or fail-fast
|
package/dist/web/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const t=t=>{let e=[192];for(const i of t)219==i?e=e.concat([219,221]):192==i?e=e.concat([219,220]):e.push(i);return e.push(192),e},e=t=>{const e=[];for(let i=0;i<t.length;i++){const s=t.charCodeAt(i);s<=255&&e.push(s)}return e},i=t=>"["+t.map(t=>s(t)).join(", ")+"]",s=(t,e=2)=>{const i=t.toString(16).toUpperCase();return i.startsWith("-")?"-0x"+i.substring(1).padStart(e,"0"):"0x"+i.padStart(e,"0")},a=t=>t.map(t=>t.toString(16).toUpperCase().padStart(2,"0")).join(":"),r=t=>new Promise(e=>setTimeout(e,t)),n={18:"256KB",19:"512KB",20:"1MB",21:"2MB",22:"4MB",23:"8MB",24:"16MB",25:"32MB",26:"64MB",27:"128MB",28:"256MB",32:"64MB",33:"128MB",34:"256MB",50:"256KB",51:"512KB",52:"1MB",53:"2MB",54:"4MB",55:"8MB",56:"16MB",57:"32MB",58:"64MB"},h=4096,o=115200,l=1061191976,d=1610645804,c=1070526796,u=1610647552,g=1343410176,_=1341390536,f=1341914824,p=e(" UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU"),w=33382,m=50,b=12882,S=12883,y=12994,R=12995,B=12997,v=12998,U=207969,T=12914,I=12916,C=12917,D=12928,x=12849,k={5:{name:"ESP32-C3",family:R},9:{name:"ESP32-S3",family:S},12:{name:"ESP32-C2",family:y},13:{name:"ESP32-C6",family:v},16:{name:"ESP32-H2",family:T},18:{name:"ESP32-P4",family:D},20:{name:"ESP32-C61",family:U},23:{name:"ESP32-C5",family:B},25:{name:"ESP32-H21",family:C},28:{name:"ESP32-H4",family:I},32:{name:"ESP32-S31",family:x}},F={4293968129:{name:"ESP8266",family:w},15736195:{name:"ESP32",family:m},1990:{name:"ESP32-S2",family:b}},O=2,E=3,W=4,z=5,A=6,$=7,P=8,M=9,L=10,N=208,V=209,J=210,Z=11,G=13,H=15,j=19,q=20,K=239,Y=16,X=17,Q=18,tt=5,et=2048,it=6144,st=3e3,at=15e4,rt=3e5,nt=100,ht=3e4,ot=500,lt=100,dt=(t,e)=>{const i=Math.floor(t*(e/486));return i<st?st:i},ct=t=>{switch(t){case m:return{regBase:1072963584,baseFuse:1073061888,macFuse:1073061888,usrOffs:28,usr1Offs:32,usr2Offs:36,mosiDlenOffs:40,misoDlenOffs:44,w0Offs:128,uartDateReg:1610612856,flashOffs:4096};case b:return{regBase:1061167104,baseFuse:1061265408,macFuse:1061265476,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612856,flashOffs:4096};case S:return{regBase:1610620928,usrOffs:24,baseFuse:1610641408,macFuse:1610641476,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612864,flashOffs:0};case w:return{regBase:1610613248,usrOffs:28,baseFuse:1072693328,macFuse:1072693328,usr1Offs:32,usr2Offs:36,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:64,uartDateReg:1610612856,flashOffs:0};case y:return{regBase:1610620928,baseFuse:u,macFuse:1610647616,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case R:return{regBase:1610620928,baseFuse:1610647552,macFuse:1610647620,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case B:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:8192};case v:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case U:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case T:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case I:return{regBase:1611239424,baseFuse:1611339776,macFuse:1611339844,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610686588,flashOffs:8192};case C:return{regBase:1610625024,baseFuse:1611350016,macFuse:1611350084,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case D:return{regBase:1342754816,baseFuse:g,macFuse:1343410244,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1343004812,flashOffs:8192};case x:return{regBase:542113792,baseFuse:544296960,macFuse:544297028,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:540582028,flashOffs:8192};default:return{regBase:-1,baseFuse:-1,macFuse:-1,usrOffs:-1,usr1Offs:-1,usr2Offs:-1,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:-1,uartDateReg:-1,flashOffs:-1}}};class ut extends Error{constructor(t){super(t),this.name="SlipReadError"}}const gt=async(t,i)=>{let s;if(t==I||t==C||t==x)return null;if(t==m)s=await import("./esp32-BRKoi17y.js");else if(t==b)s=await import("./esp32s2-iX3WoDbg.js");else if(t==S)s=await import("./esp32s3-DGwDVIgz.js");else if(t==w)s=await import("./esp8266-CUwxJpGa.js");else if(t==y)s=await import("./esp32c2-Btgr_lwh.js");else if(t==R)s=await import("./esp32c3-CHKfoI8W.js");else if(t==B)s=await import("./esp32c5-BDW4KtLo.js");else if(t==v)s=await import("./esp32c6-il8tTxAG.js");else if(t==U)s=await import("./esp32c61-thKzxBGf.js");else if(t==T)s=await import("./esp32h2-CxoUHv_P.js");else{if(t!=D)return null;s=null!=i&&i>=300?await import("./esp32p4r3-CqI71ojR.js"):await import("./esp32p4-D3jLP-jY.js")}return{...s,text:e(atob(s.text)),data:e(atob(s.data))}};function _t(t){let e=t.length;for(;--e>=0;)t[e]=0}const ft=256,pt=286,wt=30,mt=15,bt=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),St=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),yt=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),Rt=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Bt=new Array(576);_t(Bt);const vt=new Array(60);_t(vt);const Ut=new Array(512);_t(Ut);const Tt=new Array(256);_t(Tt);const It=new Array(29);_t(It);const Ct=new Array(wt);function Dt(t,e,i,s,a){this.static_tree=t,this.extra_bits=e,this.extra_base=i,this.elems=s,this.max_length=a,this.has_stree=t&&t.length}let xt,kt,Ft;function Ot(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}_t(Ct);const Et=t=>t<256?Ut[t]:Ut[256+(t>>>7)],Wt=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},zt=(t,e,i)=>{t.bi_valid>16-i?(t.bi_buf|=e<<t.bi_valid&65535,Wt(t,t.bi_buf),t.bi_buf=e>>16-t.bi_valid,t.bi_valid+=i-16):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=i)},At=(t,e,i)=>{zt(t,i[2*e],i[2*e+1])},$t=(t,e)=>{let i=0;do{i|=1&t,t>>>=1,i<<=1}while(--e>0);return i>>>1},Pt=(t,e,i)=>{const s=new Array(16);let a,r,n=0;for(a=1;a<=mt;a++)n=n+i[a-1]<<1,s[a]=n;for(r=0;r<=e;r++){let e=t[2*r+1];0!==e&&(t[2*r]=$t(s[e]++,e))}},Mt=t=>{let e;for(e=0;e<pt;e++)t.dyn_ltree[2*e]=0;for(e=0;e<wt;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},Lt=t=>{t.bi_valid>8?Wt(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},Nt=(t,e,i,s)=>{const a=2*e,r=2*i;return t[a]<t[r]||t[a]===t[r]&&s[e]<=s[i]},Vt=(t,e,i)=>{const s=t.heap[i];let a=i<<1;for(;a<=t.heap_len&&(a<t.heap_len&&Nt(e,t.heap[a+1],t.heap[a],t.depth)&&a++,!Nt(e,s,t.heap[a],t.depth));)t.heap[i]=t.heap[a],i=a,a<<=1;t.heap[i]=s},Jt=(t,e,i)=>{let s,a,r,n,h=0;if(0!==t.sym_next)do{s=255&t.pending_buf[t.sym_buf+h++],s+=(255&t.pending_buf[t.sym_buf+h++])<<8,a=t.pending_buf[t.sym_buf+h++],0===s?At(t,a,e):(r=Tt[a],At(t,r+ft+1,e),n=bt[r],0!==n&&(a-=It[r],zt(t,a,n)),s--,r=Et(s),At(t,r,i),n=St[r],0!==n&&(s-=Ct[r],zt(t,s,n)))}while(h<t.sym_next);At(t,256,e)},Zt=(t,e)=>{const i=e.dyn_tree,s=e.stat_desc.static_tree,a=e.stat_desc.has_stree,r=e.stat_desc.elems;let n,h,o,l=-1;for(t.heap_len=0,t.heap_max=573,n=0;n<r;n++)0!==i[2*n]?(t.heap[++t.heap_len]=l=n,t.depth[n]=0):i[2*n+1]=0;for(;t.heap_len<2;)o=t.heap[++t.heap_len]=l<2?++l:0,i[2*o]=1,t.depth[o]=0,t.opt_len--,a&&(t.static_len-=s[2*o+1]);for(e.max_code=l,n=t.heap_len>>1;n>=1;n--)Vt(t,i,n);o=r;do{n=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Vt(t,i,1),h=t.heap[1],t.heap[--t.heap_max]=n,t.heap[--t.heap_max]=h,i[2*o]=i[2*n]+i[2*h],t.depth[o]=(t.depth[n]>=t.depth[h]?t.depth[n]:t.depth[h])+1,i[2*n+1]=i[2*h+1]=o,t.heap[1]=o++,Vt(t,i,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const i=e.dyn_tree,s=e.max_code,a=e.stat_desc.static_tree,r=e.stat_desc.has_stree,n=e.stat_desc.extra_bits,h=e.stat_desc.extra_base,o=e.stat_desc.max_length;let l,d,c,u,g,_,f=0;for(u=0;u<=mt;u++)t.bl_count[u]=0;for(i[2*t.heap[t.heap_max]+1]=0,l=t.heap_max+1;l<573;l++)d=t.heap[l],u=i[2*i[2*d+1]+1]+1,u>o&&(u=o,f++),i[2*d+1]=u,d>s||(t.bl_count[u]++,g=0,d>=h&&(g=n[d-h]),_=i[2*d],t.opt_len+=_*(u+g),r&&(t.static_len+=_*(a[2*d+1]+g)));if(0!==f){do{for(u=o-1;0===t.bl_count[u];)u--;t.bl_count[u]--,t.bl_count[u+1]+=2,t.bl_count[o]--,f-=2}while(f>0);for(u=o;0!==u;u--)for(d=t.bl_count[u];0!==d;)c=t.heap[--l],c>s||(i[2*c+1]!==u&&(t.opt_len+=(u-i[2*c+1])*i[2*c],i[2*c+1]=u),d--)}})(t,e),Pt(i,l,t.bl_count)},Gt=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),e[2*(i+1)+1]=65535,s=0;s<=i;s++)a=n,n=e[2*(s+1)+1],++h<o&&a===n||(h<l?t.bl_tree[2*a]+=h:0!==a?(a!==r&&t.bl_tree[2*a]++,t.bl_tree[32]++):h<=10?t.bl_tree[34]++:t.bl_tree[36]++,h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4))},Ht=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),s=0;s<=i;s++)if(a=n,n=e[2*(s+1)+1],!(++h<o&&a===n)){if(h<l)do{At(t,a,t.bl_tree)}while(0!==--h);else 0!==a?(a!==r&&(At(t,a,t.bl_tree),h--),At(t,16,t.bl_tree),zt(t,h-3,2)):h<=10?(At(t,17,t.bl_tree),zt(t,h-3,3)):(At(t,18,t.bl_tree),zt(t,h-11,7));h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4)}};let jt=!1;const qt=(t,e,i,s)=>{zt(t,0+(s?1:0),3),Lt(t),Wt(t,i),Wt(t,~i),i&&t.pending_buf.set(t.window.subarray(e,e+i),t.pending),t.pending+=i};var Kt=(t,e,i,s)=>{let a,r,n=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,i=4093624447;for(e=0;e<=31;e++,i>>>=1)if(1&i&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<ft;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),Zt(t,t.l_desc),Zt(t,t.d_desc),n=(t=>{let e;for(Gt(t,t.dyn_ltree,t.l_desc.max_code),Gt(t,t.dyn_dtree,t.d_desc.max_code),Zt(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*Rt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),a=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=a&&(a=r)):a=r=i+5,i+4<=a&&-1!==e?qt(t,e,i,s):4===t.strategy||r===a?(zt(t,2+(s?1:0),3),Jt(t,Bt,vt)):(zt(t,4+(s?1:0),3),((t,e,i,s)=>{let a;for(zt(t,e-257,5),zt(t,i-1,5),zt(t,s-4,4),a=0;a<s;a++)zt(t,t.bl_tree[2*Rt[a]+1],3);Ht(t,t.dyn_ltree,e-1),Ht(t,t.dyn_dtree,i-1)})(t,t.l_desc.max_code+1,t.d_desc.max_code+1,n+1),Jt(t,t.dyn_ltree,t.dyn_dtree)),Mt(t),s&&Lt(t)},Yt={_tr_init:t=>{jt||((()=>{let t,e,i,s,a;const r=new Array(16);for(i=0,s=0;s<28;s++)for(It[s]=i,t=0;t<1<<bt[s];t++)Tt[i++]=s;for(Tt[i-1]=s,a=0,s=0;s<16;s++)for(Ct[s]=a,t=0;t<1<<St[s];t++)Ut[a++]=s;for(a>>=7;s<wt;s++)for(Ct[s]=a<<7,t=0;t<1<<St[s]-7;t++)Ut[256+a++]=s;for(e=0;e<=mt;e++)r[e]=0;for(t=0;t<=143;)Bt[2*t+1]=8,t++,r[8]++;for(;t<=255;)Bt[2*t+1]=9,t++,r[9]++;for(;t<=279;)Bt[2*t+1]=7,t++,r[7]++;for(;t<=287;)Bt[2*t+1]=8,t++,r[8]++;for(Pt(Bt,287,r),t=0;t<wt;t++)vt[2*t+1]=5,vt[2*t]=$t(t,5);xt=new Dt(Bt,bt,257,pt,mt),kt=new Dt(vt,St,0,wt,mt),Ft=new Dt(new Array(0),yt,0,19,7)})(),jt=!0),t.l_desc=new Ot(t.dyn_ltree,xt),t.d_desc=new Ot(t.dyn_dtree,kt),t.bl_desc=new Ot(t.bl_tree,Ft),t.bi_buf=0,t.bi_valid=0,Mt(t)},_tr_stored_block:qt,_tr_flush_block:Kt,_tr_tally:(t,e,i)=>(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=i,0===e?t.dyn_ltree[2*i]++:(t.matches++,e--,t.dyn_ltree[2*(Tt[i]+ft+1)]++,t.dyn_dtree[2*Et(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{zt(t,2,3),At(t,256,Bt),(t=>{16===t.bi_valid?(Wt(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}};var Xt=(t,e,i,s)=>{let a=65535&t,r=t>>>16&65535,n=0;for(;0!==i;){n=i>2e3?2e3:i,i-=n;do{a=a+e[s++]|0,r=r+a|0}while(--n);a%=65521,r%=65521}return a|r<<16};const Qt=new Uint32Array((()=>{let t,e=[];for(var i=0;i<256;i++){t=i;for(var s=0;s<8;s++)t=1&t?3988292384^t>>>1:t>>>1;e[i]=t}return e})());var te=(t,e,i,s)=>{const a=Qt,r=s+i;t^=-1;for(let i=s;i<r;i++)t=t>>>8^a[255&(t^e[i])];return-1^t},ee={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},ie={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_OK:0,Z_STREAM_END:1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:se,_tr_stored_block:ae,_tr_flush_block:re,_tr_tally:ne,_tr_align:he}=Yt,{Z_NO_FLUSH:oe,Z_PARTIAL_FLUSH:le,Z_FULL_FLUSH:de,Z_FINISH:ce,Z_BLOCK:ue,Z_OK:ge,Z_STREAM_END:_e,Z_STREAM_ERROR:fe,Z_DATA_ERROR:pe,Z_BUF_ERROR:we,Z_DEFAULT_COMPRESSION:me,Z_FILTERED:be,Z_HUFFMAN_ONLY:Se,Z_RLE:ye,Z_FIXED:Re,Z_DEFAULT_STRATEGY:Be,Z_UNKNOWN:ve,Z_DEFLATED:Ue}=ie,Te=258,Ie=262,Ce=42,De=113,xe=666,ke=(t,e)=>(t.msg=ee[e],e),Fe=t=>2*t-(t>4?9:0),Oe=t=>{let e=t.length;for(;--e>=0;)t[e]=0},Ee=t=>{let e,i,s,a=t.w_size;e=t.hash_size,s=e;do{i=t.head[--s],t.head[s]=i>=a?i-a:0}while(--e);e=a,s=e;do{i=t.prev[--s],t.prev[s]=i>=a?i-a:0}while(--e)};let We=(t,e,i)=>(e<<t.hash_shift^i)&t.hash_mask;const ze=t=>{const e=t.state;let i=e.pending;i>t.avail_out&&(i=t.avail_out),0!==i&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+i),t.next_out),t.next_out+=i,e.pending_out+=i,t.total_out+=i,t.avail_out-=i,e.pending-=i,0===e.pending&&(e.pending_out=0))},Ae=(t,e)=>{re(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,ze(t.strm)},$e=(t,e)=>{t.pending_buf[t.pending++]=e},Pe=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},Me=(t,e,i,s)=>{let a=t.avail_in;return a>s&&(a=s),0===a?0:(t.avail_in-=a,e.set(t.input.subarray(t.next_in,t.next_in+a),i),1===t.state.wrap?t.adler=Xt(t.adler,e,a,i):2===t.state.wrap&&(t.adler=te(t.adler,e,a,i)),t.next_in+=a,t.total_in+=a,a)},Le=(t,e)=>{let i,s,a=t.max_chain_length,r=t.strstart,n=t.prev_length,h=t.nice_match;const o=t.strstart>t.w_size-Ie?t.strstart-(t.w_size-Ie):0,l=t.window,d=t.w_mask,c=t.prev,u=t.strstart+Te;let g=l[r+n-1],_=l[r+n];t.prev_length>=t.good_match&&(a>>=2),h>t.lookahead&&(h=t.lookahead);do{if(i=e,l[i+n]===_&&l[i+n-1]===g&&l[i]===l[r]&&l[++i]===l[r+1]){r+=2,i++;do{}while(l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&r<u);if(s=Te-(u-r),r=u-Te,s>n){if(t.match_start=e,n=s,s>=h)break;g=l[r+n-1],_=l[r+n]}}}while((e=c[e&d])>o&&0!==--a);return n<=t.lookahead?n:t.lookahead},Ne=t=>{const e=t.w_size;let i,s,a;do{if(s=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Ie)&&(t.window.set(t.window.subarray(e,e+e-s),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),Ee(t),s+=e),0===t.strm.avail_in)break;if(i=Me(t.strm,t.window,t.strstart+t.lookahead,s),t.lookahead+=i,t.lookahead+t.insert>=3)for(a=t.strstart-t.insert,t.ins_h=t.window[a],t.ins_h=We(t,t.ins_h,t.window[a+1]);t.insert&&(t.ins_h=We(t,t.ins_h,t.window[a+3-1]),t.prev[a&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=a,a++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<Ie&&0!==t.strm.avail_in)},Ve=(t,e)=>{let i,s,a,r=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,n=0,h=t.strm.avail_in;do{if(i=65535,a=t.bi_valid+42>>3,t.strm.avail_out<a)break;if(a=t.strm.avail_out-a,s=t.strstart-t.block_start,i>s+t.strm.avail_in&&(i=s+t.strm.avail_in),i>a&&(i=a),i<r&&(0===i&&e!==ce||e===oe||i!==s+t.strm.avail_in))break;n=e===ce&&i===s+t.strm.avail_in?1:0,ae(t,0,0,n),t.pending_buf[t.pending-4]=i,t.pending_buf[t.pending-3]=i>>8,t.pending_buf[t.pending-2]=~i,t.pending_buf[t.pending-1]=~i>>8,ze(t.strm),s&&(s>i&&(s=i),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+s),t.strm.next_out),t.strm.next_out+=s,t.strm.avail_out-=s,t.strm.total_out+=s,t.block_start+=s,i-=s),i&&(Me(t.strm,t.strm.output,t.strm.next_out,i),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i)}while(0===n);return h-=t.strm.avail_in,h&&(h>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=h&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-h,t.strm.next_in),t.strstart),t.strstart+=h,t.insert+=h>t.w_size-t.insert?t.w_size-t.insert:h),t.block_start=t.strstart),t.high_water<t.strstart&&(t.high_water=t.strstart),n?4:e!==oe&&e!==ce&&0===t.strm.avail_in&&t.strstart===t.block_start?2:(a=t.window_size-t.strstart,t.strm.avail_in>a&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,a+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),a>t.strm.avail_in&&(a=t.strm.avail_in),a&&(Me(t.strm,t.window,t.strstart,a),t.strstart+=a,t.insert+=a>t.w_size-t.insert?t.w_size-t.insert:a),t.high_water<t.strstart&&(t.high_water=t.strstart),a=t.bi_valid+42>>3,a=t.pending_buf_size-a>65535?65535:t.pending_buf_size-a,r=a>t.w_size?t.w_size:a,s=t.strstart-t.block_start,(s>=r||(s||e===ce)&&e!==oe&&0===t.strm.avail_in&&s<=a)&&(i=s>a?a:s,n=e===ce&&0===t.strm.avail_in&&i===s?1:0,ae(t,t.block_start,i,n),t.block_start+=i,ze(t.strm)),n?3:1)},Je=(t,e)=>{let i,s;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==i&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i)),t.match_length>=3)if(s=ne(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!==--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=We(t,t.ins_h,t.window[t.strstart+1]);else s=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(s&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2},Ze=(t,e)=>{let i,s,a;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==i&&t.prev_length<t.max_lazy_match&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i),t.match_length<=5&&(t.strategy===be||3===t.match_length&&t.strstart-t.match_start>4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){a=t.strstart+t.lookahead-3,s=ne(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=a&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!==--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,s&&(Ae(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(s=ne(t,0,t.window[t.strstart-1]),s&&Ae(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(s=ne(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2};function Ge(t,e,i,s,a){this.good_length=t,this.max_lazy=e,this.nice_length=i,this.max_chain=s,this.func=a}const He=[new Ge(0,0,0,0,Ve),new Ge(4,4,8,4,Je),new Ge(4,5,16,8,Je),new Ge(4,6,32,32,Je),new Ge(4,4,16,16,Ze),new Ge(8,16,32,32,Ze),new Ge(8,16,128,128,Ze),new Ge(8,32,128,256,Ze),new Ge(32,128,258,1024,Ze),new Ge(32,258,258,4096,Ze)];function je(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Ue,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),Oe(this.dyn_ltree),Oe(this.dyn_dtree),Oe(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),Oe(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),Oe(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const qe=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==Ce&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==De&&e.status!==xe?1:0},Ke=t=>{if(qe(t))return ke(t,fe);t.total_in=t.total_out=0,t.data_type=ve;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?Ce:De,t.adler=2===e.wrap?0:1,e.last_flush=-2,se(e),ge},Ye=t=>{const e=Ke(t);var i;return e===ge&&((i=t.state).window_size=2*i.w_size,Oe(i.head),i.max_lazy_match=He[i.level].max_lazy,i.good_match=He[i.level].good_length,i.nice_match=He[i.level].nice_length,i.max_chain_length=He[i.level].max_chain,i.strstart=0,i.block_start=0,i.lookahead=0,i.insert=0,i.match_length=i.prev_length=2,i.match_available=0,i.ins_h=0),e},Xe=(t,e,i,s,a,r)=>{if(!t)return fe;let n=1;if(e===me&&(e=6),s<0?(n=0,s=-s):s>15&&(n=2,s-=16),a<1||a>9||i!==Ue||s<8||s>15||e<0||e>9||r<0||r>Re||8===s&&1!==n)return ke(t,fe);8===s&&(s=9);const h=new je;return t.state=h,h.strm=t,h.status=Ce,h.wrap=n,h.gzhead=null,h.w_bits=s,h.w_size=1<<h.w_bits,h.w_mask=h.w_size-1,h.hash_bits=a+7,h.hash_size=1<<h.hash_bits,h.hash_mask=h.hash_size-1,h.hash_shift=~~((h.hash_bits+3-1)/3),h.window=new Uint8Array(2*h.w_size),h.head=new Uint16Array(h.hash_size),h.prev=new Uint16Array(h.w_size),h.lit_bufsize=1<<a+6,h.pending_buf_size=4*h.lit_bufsize,h.pending_buf=new Uint8Array(h.pending_buf_size),h.sym_buf=h.lit_bufsize,h.sym_end=3*(h.lit_bufsize-1),h.level=e,h.strategy=r,h.method=i,Ye(t)};var Qe={deflateInit:(t,e)=>Xe(t,e,Ue,15,8,Be),deflateInit2:Xe,deflateReset:Ye,deflateResetKeep:Ke,deflateSetHeader:(t,e)=>qe(t)||2!==t.state.wrap?fe:(t.state.gzhead=e,ge),deflate:(t,e)=>{if(qe(t)||e>ue||e<0)return t?ke(t,fe):fe;const i=t.state;if(!t.output||0!==t.avail_in&&!t.input||i.status===xe&&e!==ce)return ke(t,0===t.avail_out?we:fe);const s=i.last_flush;if(i.last_flush=e,0!==i.pending){if(ze(t),0===t.avail_out)return i.last_flush=-1,ge}else if(0===t.avail_in&&Fe(e)<=Fe(s)&&e!==ce)return ke(t,we);if(i.status===xe&&0!==t.avail_in)return ke(t,we);if(i.status===Ce&&0===i.wrap&&(i.status=De),i.status===Ce){let e=Ue+(i.w_bits-8<<4)<<8,s=-1;if(s=i.strategy>=Se||i.level<2?0:i.level<6?1:6===i.level?2:3,e|=s<<6,0!==i.strstart&&(e|=32),e+=31-e%31,Pe(i,e),0!==i.strstart&&(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),t.adler=1,i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(57===i.status)if(t.adler=0,$e(i,31),$e(i,139),$e(i,8),i.gzhead)$e(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),$e(i,255&i.gzhead.time),$e(i,i.gzhead.time>>8&255),$e(i,i.gzhead.time>>16&255),$e(i,i.gzhead.time>>24&255),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&($e(i,255&i.gzhead.extra.length),$e(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=te(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69;else if($e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,3),i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge;if(69===i.status){if(i.gzhead.extra){let e=i.pending,s=(65535&i.gzhead.extra.length)-i.gzindex;for(;i.pending+s>i.pending_buf_size;){let a=i.pending_buf_size-i.pending;if(i.pending_buf.set(i.gzhead.extra.subarray(i.gzindex,i.gzindex+a),i.pending),i.pending=i.pending_buf_size,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex+=a,ze(t),0!==i.pending)return i.last_flush=-1,ge;e=0,s-=a}let a=new Uint8Array(i.gzhead.extra);i.pending_buf.set(a.subarray(i.gzindex,i.gzindex+s),i.pending),i.pending+=s,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex=0}i.status=73}if(73===i.status){if(i.gzhead.name){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),i.gzindex=0}i.status=91}if(91===i.status){if(i.gzhead.comment){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s))}i.status=103}if(103===i.status){if(i.gzhead.hcrc){if(i.pending+2>i.pending_buf_size&&(ze(t),0!==i.pending))return i.last_flush=-1,ge;$e(i,255&t.adler),$e(i,t.adler>>8&255),t.adler=0}if(i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(0!==t.avail_in||0!==i.lookahead||e!==oe&&i.status!==xe){let s=0===i.level?Ve(i,e):i.strategy===Se?((t,e)=>{let i;for(;;){if(0===t.lookahead&&(Ne(t),0===t.lookahead)){if(e===oe)return 1;break}if(t.match_length=0,i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):i.strategy===ye?((t,e)=>{let i,s,a,r;const n=t.window;for(;;){if(t.lookahead<=Te){if(Ne(t),t.lookahead<=Te&&e===oe)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(a=t.strstart-1,s=n[a],s===n[++a]&&s===n[++a]&&s===n[++a])){r=t.strstart+Te;do{}while(s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&a<r);t.match_length=Te-(r-a),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(i=ne(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):He[i.level].func(i,e);if(3!==s&&4!==s||(i.status=xe),1===s||3===s)return 0===t.avail_out&&(i.last_flush=-1),ge;if(2===s&&(e===le?he(i):e!==ue&&(ae(i,0,0,!1),e===de&&(Oe(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),ze(t),0===t.avail_out))return i.last_flush=-1,ge}return e!==ce?ge:i.wrap<=0?_e:(2===i.wrap?($e(i,255&t.adler),$e(i,t.adler>>8&255),$e(i,t.adler>>16&255),$e(i,t.adler>>24&255),$e(i,255&t.total_in),$e(i,t.total_in>>8&255),$e(i,t.total_in>>16&255),$e(i,t.total_in>>24&255)):(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),ze(t),i.wrap>0&&(i.wrap=-i.wrap),0!==i.pending?ge:_e)},deflateEnd:t=>{if(qe(t))return fe;const e=t.state.status;return t.state=null,e===De?ke(t,pe):ge},deflateSetDictionary:(t,e)=>{let i=e.length;if(qe(t))return fe;const s=t.state,a=s.wrap;if(2===a||1===a&&s.status!==Ce||s.lookahead)return fe;if(1===a&&(t.adler=Xt(t.adler,e,i,0)),s.wrap=0,i>=s.w_size){0===a&&(Oe(s.head),s.strstart=0,s.block_start=0,s.insert=0);let t=new Uint8Array(s.w_size);t.set(e.subarray(i-s.w_size,i),0),e=t,i=s.w_size}const r=t.avail_in,n=t.next_in,h=t.input;for(t.avail_in=i,t.next_in=0,t.input=e,Ne(s);s.lookahead>=3;){let t=s.strstart,e=s.lookahead-2;do{s.ins_h=We(s,s.ins_h,s.window[t+3-1]),s.prev[t&s.w_mask]=s.head[s.ins_h],s.head[s.ins_h]=t,t++}while(--e);s.strstart=t,s.lookahead=2,Ne(s)}return s.strstart+=s.lookahead,s.block_start=s.strstart,s.insert=s.lookahead,s.lookahead=0,s.match_length=s.prev_length=2,s.match_available=0,t.next_in=n,t.input=h,t.avail_in=r,s.wrap=a,ge},deflateInfo:"pako deflate (from Nodeca project)"};const ti=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var ei=function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const i=e.shift();if(i){if("object"!=typeof i)throw new TypeError(i+"must be non-object");for(const e in i)ti(i,e)&&(t[e]=i[e])}}return t},ii=t=>{let e=0;for(let i=0,s=t.length;i<s;i++)e+=t[i].length;const i=new Uint8Array(e);for(let e=0,s=0,a=t.length;e<a;e++){let a=t[e];i.set(a,s),s+=a.length}return i};let si=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){si=!1}const ai=new Uint8Array(256);for(let t=0;t<256;t++)ai[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;ai[254]=ai[254]=1;var ri=t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,i,s,a,r,n=t.length,h=0;for(a=0;a<n;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),h+=i<128?1:i<2048?2:i<65536?3:4;for(e=new Uint8Array(h),r=0,a=0;r<h;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),i<128?e[r++]=i:i<2048?(e[r++]=192|i>>>6,e[r++]=128|63&i):i<65536?(e[r++]=224|i>>>12,e[r++]=128|i>>>6&63,e[r++]=128|63&i):(e[r++]=240|i>>>18,e[r++]=128|i>>>12&63,e[r++]=128|i>>>6&63,e[r++]=128|63&i);return e};var ni=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const hi=Object.prototype.toString,{Z_NO_FLUSH:oi,Z_SYNC_FLUSH:li,Z_FULL_FLUSH:di,Z_FINISH:ci,Z_OK:ui,Z_STREAM_END:gi,Z_DEFAULT_COMPRESSION:_i,Z_DEFAULT_STRATEGY:fi,Z_DEFLATED:pi}=ie;function wi(t){this.options=ei({level:_i,method:pi,chunkSize:16384,windowBits:15,memLevel:8,strategy:fi},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new ni,this.strm.avail_out=0;let i=Qe.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(i!==ui)throw new Error(ee[i]);if(e.header&&Qe.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?ri(e.dictionary):"[object ArrayBuffer]"===hi.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,i=Qe.deflateSetDictionary(this.strm,t),i!==ui)throw new Error(ee[i]);this._dict_set=!0}}wi.prototype.push=function(t,e){const i=this.strm,s=this.options.chunkSize;let a,r;if(this.ended)return!1;for(r=e===~~e?e:!0===e?ci:oi,"string"==typeof t?i.input=ri(t):"[object ArrayBuffer]"===hi.call(t)?i.input=new Uint8Array(t):i.input=t,i.next_in=0,i.avail_in=i.input.length;;)if(0===i.avail_out&&(i.output=new Uint8Array(s),i.next_out=0,i.avail_out=s),(r===li||r===di)&&i.avail_out<=6)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else{if(a=Qe.deflate(i,r),a===gi)return i.next_out>0&&this.onData(i.output.subarray(0,i.next_out)),a=Qe.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===ui;if(0!==i.avail_out){if(r>0&&i.next_out>0)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else if(0===i.avail_in)break}else this.onData(i.output)}return!0},wi.prototype.onData=function(t){this.chunks.push(t)},wi.prototype.onEnd=function(t){t===ui&&(this.result=ii(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var mi={deflate:function(t,e){const i=new wi(e);if(i.push(t,!0),i.err)throw i.msg||ee[i.err];return i.result}};const{deflate:bi}=mi;var Si=bi;const yi={b:{u:DataView.prototype.getInt8,p:DataView.prototype.setInt8,bytes:1},B:{u:DataView.prototype.getUint8,p:DataView.prototype.setUint8,bytes:1},h:{u:DataView.prototype.getInt16,p:DataView.prototype.setInt16,bytes:2},H:{u:DataView.prototype.getUint16,p:DataView.prototype.setUint16,bytes:2},i:{u:DataView.prototype.getInt32,p:DataView.prototype.setInt32,bytes:4},I:{u:DataView.prototype.getUint32,p:DataView.prototype.setUint32,bytes:4}},Ri=(t,...e)=>{let i=0;if(t.replace(/[<>]/,"").length!=e.length)throw"Pack format to Argument count mismatch";const s=[];let a=!0;for(let s=0;s<t.length;s++)"<"==t[s]?a=!0:">"==t[s]?a=!1:(r(t[s],e[i]),i++);function r(t,e){if(!(t in yi))throw"Unhandled character '"+t+"' in pack format";const i=yi[t].bytes,r=new DataView(new ArrayBuffer(i));yi[t].p.bind(r)(0,e,a);for(let t=0;t<i;t++)s.push(r.getUint8(t))}return s},Bi=(t,e)=>{let i=0;const s=[];let a=!0;for(const e of t)"<"==e?a=!0:">"==e?a=!1:r(e);function r(t){if(!(t in yi))throw"Unhandled character '"+t+"' in unpack format";const r=yi[t].bytes,n=new DataView(new ArrayBuffer(r));for(let t=0;t<r;t++)n.setUint8(t,255&e[i+t]);const h=yi[t].u.bind(n);s.push(h(0,a)),i+=r}return s};class vi extends EventTarget{get isUsbJtagOrOtg(){return this._parent?this._parent._isUsbJtagOrOtg:this._isUsbJtagOrOtg}constructor(t,e,i){super(),this.port=t,this.logger=e,this._parent=i,this.__chipName=null,this.__chipRevision=null,this.__chipVariant=null,this._efuses=new Array(4).fill(0),this._flashsize=4194304,this.debug=!1,this.IS_STUB=!1,this.connected=!0,this.flashSize=null,this.currentBaudRate=o,this.SLIP_END=192,this.SLIP_ESC=219,this.SLIP_ESC_END=220,this.SLIP_ESC_ESC=221,this._isESP32S2NativeUSB=!1,this._initializationSucceeded=!1,this.__commandLock=Promise.resolve([0,[]]),this.__isReconfiguring=!1,this.__abandonCurrentOperation=!1,this._suppressDisconnect=!1,this.__consoleMode=!1,this._isUsbJtagOrOtg=void 0,this.__adaptiveBlockMultiplier=1,this.__adaptiveMaxInFlightMultiplier=1,this.__consecutiveSuccessfulChunks=0,this.__lastAdaptiveAdjustment=0,this.__isCDCDevice=!1,this.state_DTR=!1,this.state_RTS=!1,this.__writeChain=Promise.resolve()}get chipFamily(){return this._parent?this._parent.chipFamily:this.__chipFamily}set chipFamily(t){this._parent?this._parent.chipFamily=t:this.__chipFamily=t}get chipName(){return this._parent?this._parent.chipName:this.__chipName}set chipName(t){this._parent?this._parent.chipName=t:this.__chipName=t}get chipRevision(){return this._parent?this._parent.chipRevision:this.__chipRevision}set chipRevision(t){this._parent?this._parent.chipRevision=t:this.__chipRevision=t}get chipVariant(){return this._parent?this._parent.chipVariant:this.__chipVariant}set chipVariant(t){this._parent?this._parent.chipVariant=t:this.__chipVariant=t}get _consoleMode(){return this._parent?this._parent._consoleMode:this.__consoleMode}set _consoleMode(t){this._parent?this._parent._consoleMode=t:this.__consoleMode=t}setConsoleMode(t){this._consoleMode=t}get _inputBuffer(){if(this._parent)return this._parent._inputBuffer;if(void 0===this.__inputBuffer)throw new Error("_inputBuffer accessed before initialization");return this.__inputBuffer}get _inputBufferReadIndex(){return this._parent?this._parent._inputBufferReadIndex:this.__inputBufferReadIndex||0}set _inputBufferReadIndex(t){this._parent?this._parent._inputBufferReadIndex=t:this.__inputBufferReadIndex=t}get _inputBufferAvailable(){return this._inputBuffer.length-this._inputBufferReadIndex}_readByte(){if(!(this._inputBufferReadIndex>=this._inputBuffer.length))return this._inputBuffer[this._inputBufferReadIndex++]}_clearInputBuffer(){this._inputBuffer.length=0,this._inputBufferReadIndex=0}_compactInputBuffer(){this._inputBufferReadIndex>1e3&&this._inputBufferReadIndex>this._inputBuffer.length/2&&(this._inputBuffer.splice(0,this._inputBufferReadIndex),this._inputBufferReadIndex=0)}get _totalBytesRead(){return this._parent?this._parent._totalBytesRead:this.__totalBytesRead||0}set _totalBytesRead(t){this._parent?this._parent._totalBytesRead=t:this.__totalBytesRead=t}get _commandLock(){return this._parent?this._parent._commandLock:this.__commandLock}set _commandLock(t){this._parent?this._parent._commandLock=t:this.__commandLock=t}get _isReconfiguring(){return this._parent?this._parent._isReconfiguring:this.__isReconfiguring}set _isReconfiguring(t){this._parent?this._parent._isReconfiguring=t:this.__isReconfiguring=t}get _abandonCurrentOperation(){return this._parent?this._parent._abandonCurrentOperation:this.__abandonCurrentOperation}set _abandonCurrentOperation(t){this._parent?this._parent._abandonCurrentOperation=t:this.__abandonCurrentOperation=t}get _adaptiveBlockMultiplier(){return this._parent?this._parent._adaptiveBlockMultiplier:this.__adaptiveBlockMultiplier}set _adaptiveBlockMultiplier(t){this._parent?this._parent._adaptiveBlockMultiplier=t:this.__adaptiveBlockMultiplier=t}get _adaptiveMaxInFlightMultiplier(){return this._parent?this._parent._adaptiveMaxInFlightMultiplier:this.__adaptiveMaxInFlightMultiplier}set _adaptiveMaxInFlightMultiplier(t){this._parent?this._parent._adaptiveMaxInFlightMultiplier=t:this.__adaptiveMaxInFlightMultiplier=t}get _consecutiveSuccessfulChunks(){return this._parent?this._parent._consecutiveSuccessfulChunks:this.__consecutiveSuccessfulChunks}set _consecutiveSuccessfulChunks(t){this._parent?this._parent._consecutiveSuccessfulChunks=t:this.__consecutiveSuccessfulChunks=t}get _lastAdaptiveAdjustment(){return this._parent?this._parent._lastAdaptiveAdjustment:this.__lastAdaptiveAdjustment}set _lastAdaptiveAdjustment(t){this._parent?this._parent._lastAdaptiveAdjustment=t:this.__lastAdaptiveAdjustment=t}get _isCDCDevice(){return this._parent?this._parent._isCDCDevice:this.__isCDCDevice}set _isCDCDevice(t){this._parent?this._parent._isCDCDevice=t:this.__isCDCDevice=t}detectUSBSerialChip(t,e){const i={6790:{29986:{name:"CH340",maxBaudrate:460800},29987:{name:"CH340",maxBaudrate:460800},30084:{name:"CH340",maxBaudrate:460800},21795:{name:"CH341",maxBaudrate:2e6},21971:{name:"CH343",maxBaudrate:6e6},21972:{name:"CH9102",maxBaudrate:6e6},21976:{name:"CH9101",maxBaudrate:3e6}},4292:{6e4:{name:"CP2102(n)",maxBaudrate:3e6},60016:{name:"CP2105",maxBaudrate:2e6},60017:{name:"CP2108",maxBaudrate:2e6}},1027:{24577:{name:"FT232R",maxBaudrate:3e6},24592:{name:"FT2232",maxBaudrate:3e6},24593:{name:"FT4232",maxBaudrate:3e6},24596:{name:"FT232H",maxBaudrate:12e6},24597:{name:"FT230X",maxBaudrate:3e6}},12346:{2:{name:"ESP32-S2 Native USB",maxBaudrate:2e6},4097:{name:"ESP32 Native USB",maxBaudrate:2e6},4098:{name:"ESP32 Native USB",maxBaudrate:2e6},16386:{name:"ESP32 Native USB",maxBaudrate:2e6},4096:{name:"ESP32 Native USB",maxBaudrate:2e6}}}[t];return i&&i[e]?i[e]:{name:`Unknown (VID: 0x${t.toString(16)}, PID: 0x${e.toString(16)})`}}async initialize(){if(!this._parent){this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0;const t=this.port.getInfo();if(t.usbVendorId&&t.usbProductId){const e=this.detectUSBSerialChip(t.usbVendorId,t.usbProductId);this.logger.log(`USB-Serial: ${e.name} (VID: 0x${t.usbVendorId.toString(16)}, PID: 0x${t.usbProductId.toString(16)})`),e.maxBaudrate&&(this._maxUSBSerialBaudrate=e.maxBaudrate,this.logger.log(`Max baudrate: ${e.maxBaudrate}`)),12346===t.usbVendorId&&2===t.usbProductId&&(this._isESP32S2NativeUSB=!0),(12346===t.usbVendorId||6790===t.usbVendorId&&21971===t.usbProductId)&&(this._isCDCDevice=!0)}this.readLoop()}await this.connectWithResetStrategies(),await this.detectChip();try{this._isUsbJtagOrOtg=await this.detectUsbConnectionType(),this.logger.debug("USB connection type: "+(this._isUsbJtagOrOtg?"USB-JTAG/OTG":"External Serial Chip"))}catch(t){this.logger.debug(`Could not detect USB connection type: ${t}`)}const t=ct(this.getChipFamily()),e=t.macFuse;for(let t=0;t<4;t++)this._efuses[t]=await this.readRegister(e+4*t);this.logger.log(`Chip type ${this.chipName}`),this.logger.debug(`Bootloader flash offset: 0x${t.flashOffs.toString(16)}`),this._initializationSucceeded=!0}async detectChip(){try{const t=(await this.getSecurityInfo()).chipId,e=k[t];if(e)return this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-P4 revision: ${this.chipRevision}`),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-C3 revision: ${this.chipRevision}`)),void this.logger.debug(`Detected chip via IMAGE_CHIP_ID: ${t} (${this.chipName})`);this.logger.debug(`Unknown IMAGE_CHIP_ID: ${t}, falling back to magic value detection`)}catch(t){this.logger.debug(`GET_SECURITY_INFO failed, using magic value detection: ${t}`),await this.drainInputBuffer(200),this._clearInputBuffer(),await r(nt);try{await this.sync()}catch(t){this.logger.debug(`Re-sync after GET_SECURITY_INFO failure: ${t}`)}}const t=await this.readRegister(1073745920),e=F[t>>>0];if(void 0===e)throw new Error(`Unknown Chip: Hex: ${s(t>>>0,8).toLowerCase()} Number: ${t}`);this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision()),this.logger.debug(`Detected chip via magic value: ${s(t>>>0,8)} (${this.chipName})`)}async getChipRevision(){if(this.chipFamily===D){const t=await this.readRegister(1343410252);return 100*((t>>23&1)<<2|t>>4&3)+(15&t)}return this.chipFamily===R?await this.getChipRevisionC3():0}async getSecurityInfo(){const[,t]=await this.checkCommand(20,[],0);if(0===t.length)throw new Error("GET_SECURITY_INFO not supported or returned empty response");if(t.length<12)throw new Error(`Invalid security info response length: ${t.length} (expected at least 12 bytes)`);return{flags:Bi("<I",t.slice(0,4))[0],flashCryptCnt:t[4],keyPurposes:Array.from(t.slice(5,12)),chipId:t.length>=16?Bi("<I",t.slice(12,16))[0]:0,apiVersion:t.length>=20?Bi("<I",t.slice(16,20))[0]:0}}async getMacAddress(){if(!this._initializationSucceeded)throw new Error("getMacAddress() requires initialize() to have completed successfully");return this.macAddr().map(t=>t.toString(16).padStart(2,"0").toUpperCase()).join(":")}async readLoop(){this.debug&&this.logger.debug("Starting read loop"),this._reader=this.port.readable.getReader();try{let t=!0;for(;t;){const{value:e,done:i}=await this._reader.read();if(i){this._reader.releaseLock(),t=!1;break}if(!e||0===e.length)continue;const s=Array.from(e);Array.prototype.push.apply(this._inputBuffer,s),this._totalBytesRead+=e.length}}catch{}finally{if(this._isReconfiguring=!1,this._reader){try{this._reader.releaseLock(),this.logger.debug("Reader released in readLoop cleanup")}catch(t){this.logger.debug(`Reader release error in readLoop: ${t}`)}this._reader=void 0}}this.connected=!1,this._isESP32S2NativeUSB&&!this._initializationSucceeded&&(this.logger.log("ESP32-S2 Native USB detected - requesting port reselection"),this.dispatchEvent(new CustomEvent("esp32s2-usb-reconnect",{detail:{message:"ESP32-S2 Native USB requires port reselection"}}))),this._suppressDisconnect||this.dispatchEvent(new Event("disconnect")),this._suppressDisconnect=!1,this.logger.debug("Finished read loop")}sleep(t=100){return new Promise(e=>setTimeout(e,t))}async setRTS(t){await this.port.setSignals({requestToSend:t}),await this.setDTR(this.state_DTR)}async setDTR(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t})}async setDTRandRTS(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerial(){await this.setRTS(!1),await this.setDTR(!1),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(100),await this.setRTS(!0),await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!1),await this.setRTS(!1),await this.sleep(200)}async hardResetClassic(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(50),await this.setDTR(!1),await this.sleep(200)}async hardResetToFirmware(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),await this.sleep(50),await this.sleep(200)}async hardResetToFirmwareWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setRTSWebUSB(!1),await this.sleep(50),await this.sleep(200)}async hardResetUnixTight(){await this.setDTRandRTS(!0,!0),await this.setDTRandRTS(!1,!1),await this.setDTRandRTS(!1,!0),await this.sleep(100),await this.setDTRandRTS(!0,!1),await this.sleep(50),await this.setDTRandRTS(!1,!1),await this.setDTR(!1),await this.sleep(200)}async setRTSWebUSB(t){this.state_RTS=t,await this.port.setSignals({requestToSend:t,dataTerminalReady:this.state_DTR})}async setDTRWebUSB(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t,requestToSend:this.state_RTS})}async setDTRandRTSWebUSB(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerialWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetUSBJTAGSerialInvertedDTRWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetClassicWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetUnixTightWebUSB(){await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRandRTSWebUSB(!0,!0),await this.setDTRandRTSWebUSB(!1,!0),await this.sleep(100),await this.setDTRandRTSWebUSB(!0,!1),await this.sleep(50),await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetClassicLongDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(500),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200),await this.setDTRWebUSB(!1),await this.sleep(500)}async hardResetClassicShortDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(25),await this.setDTRWebUSB(!1),await this.sleep(100)}async hardResetInvertedWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedDTRWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedRTSWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}isWebUSB(){return!0===this.port.isWebUSB}async connectWithResetStrategies(){const t=this.port.getInfo(),e=4097===t.usbProductId,i=12346===t.usbVendorId,s=[],a=this,n=!e&&!i;if(this.isWebUSB()){const r=4292===t.usbVendorId,h=6790===t.usbVendorId,o=12346===t.usbVendorId&&2===t.usbProductId;(e||i)&&(o?(s.push({name:"USB-JTAG/Serial (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"UnixTight (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetClassicWebUSB()})):(s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"USB-JTAG/Serial (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"Inverted DTR Classic (WebUSB)",fn:async()=>await a.hardResetInvertedDTRWebUSB()}))),n&&(h?(s.push({name:"UnixTight (WebUSB) - CH34x",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CH34x",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):r?(s.push({name:"UnixTight (WebUSB) - CP2102",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CP2102",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):(s.push({name:"UnixTight (WebUSB)",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"Inverted Both (WebUSB)",fn:async function(){return await a.hardResetInvertedWebUSB()}}),s.push({name:"Inverted RTS (WebUSB)",fn:async function(){return await a.hardResetInvertedRTSWebUSB()}}),s.push({name:"Inverted DTR (WebUSB)",fn:async function(){return await a.hardResetInvertedDTRWebUSB()}}))),r||o||(6790!==t.usbVendorId&&s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"UnixTight (WebUSB)",fn:async function(){return await a.hardResetUnixTightWebUSB()}}),s.push({name:"Classic Long Delay (WebUSB)",fn:async function(){return await a.hardResetClassicLongDelayWebUSB()}}),s.push({name:"Classic Short Delay (WebUSB)",fn:async function(){return await a.hardResetClassicShortDelayWebUSB()}}),e||i||s.push({name:"USB-JTAG/Serial fallback (WebUSB)",fn:async function(){return await a.hardResetUSBJTAGSerialWebUSB()}}))}else(e||i)&&s.push({name:"USB-JTAG/Serial",fn:async function(){return await a.hardResetUSBJTAGSerial()}}),s.push({name:"UnixTight",fn:async function(){return await a.hardResetUnixTight()}}),e||i||s.push({name:"USB-JTAG/Serial (fallback)",fn:async function(){return await a.hardResetUSBJTAGSerial()}});let h=null;for(const t of s)try{if(!this.connected||!this.port.writable){this.logger.debug(`Port disconnected, skipping ${t.name} reset`);continue}if(this._abandonCurrentOperation=!1,await t.fn(),n){if(await this.syncWithTimeout(2e3))return void this.logger.log(`Connected USB Serial successfully with ${t.name} reset.`);throw new Error("Sync timeout or abandoned")}{const e=this.sync(),i=new Promise((t,e)=>setTimeout(()=>e(new Error("Sync timeout")),1e3));try{return await Promise.race([e,i]),void this.logger.log(`Connected CDC/JTAG successfully with ${t.name} reset.`)}catch(t){throw new Error("Sync timeout or abandoned")}}}catch(t){if(h=t,this._abandonCurrentOperation=!0,await r(100),!this.connected||!this.port.writable){this.logger.log("Port disconnected during reset attempt");break}this._clearInputBuffer(),await this.drainInputBuffer(200),await this.flushSerialBuffers()}throw this._abandonCurrentOperation=!1,new Error(`Couldn't sync to ESP. Try resetting manually. Last error: ${null==h?void 0:h.message}`)}async watchdogReset(){await this.rtcWdtResetChipSpecific()}async usingUsbOtg(){let t,e;if(this.chipFamily===b)t=1073741076,e=2;else if(this.chipFamily===S)t=c,e=3;else{if(this.chipFamily!==D)return!1;null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=5}return(255&await this.readRegister(t))===e}async usingUsbJtagSerial(){let t,e;if(this.chipFamily===S)t=c,e=4;else if(this.chipFamily===R){let i;null===this.chipRevision&&(this.chipRevision=await this.getChipRevisionC3()),i=this.chipRevision<101?1070461028:1070461024,t=i+24,e=3}else if(this.chipFamily===B)t=1082520852,e=3;else if(this.chipFamily===v)t=1082652032,e=3;else if(this.chipFamily===D)null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=6;else{if(this.chipFamily!==T)return!1;t=1082457852,e=3}return(255&await this.readRegister(t))===e}async getChipRevisionC3(){if(this.chipFamily!==R)return 0;const t=await this.readRegister(1610647632)>>18&7;return(await this.readRegister(1610647640)>>23&7)<<3|t}async rtcWdtResetChipSpecific(){let t,e,i,s;if(this.logger.debug("Hard resetting with watchdog timer..."),this.chipFamily===b)t=1061191852,e=1061191828,i=1061191832,s=1356348065;else if(this.chipFamily===S)t=1610645680,e=1610645656,i=1610645660,s=1356348065;else if(this.chipFamily===R)t=1610645672,e=1610645648,i=1610645652,s=1356348065;else if(this.chipFamily===B||this.chipFamily===v)t=1611340824,e=1611340800,i=1611340804,s=1356348065;else{if(this.chipFamily!==D)throw new Error(`rtcWdtResetChipSpecific() is not supported for ${this.chipFamily}`);t=1343315992,e=1343315968,i=1343315972,s=1356348065}if(await this.writeRegister(t,s,void 0,0),this.chipFamily===b)try{await this.writeRegister(l,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===S)try{await this.writeRegister(d,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===D)try{await this.writeRegister(1343291400,0,4,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}await this.writeRegister(i,2e3,void 0,0);await this.writeRegister(e,-805306110,void 0,0),await this.writeRegister(t,0,void 0,0),await this.sleep(500)}async tryUsbWdtReset(t,e,i,s,a){const r=await this.usingUsbOtg(),n=await this.usingUsbJtagSerial();if(r||n){const r=await this.readRegister(e),n=await this.readRegister(s);if(0===(r&i)&&0===(n&a))return await this.rtcWdtResetChipSpecific(),this.logger.debug(`${t}: RTC WDT reset (USB detected, GPIO0 low)`),!0}return!1}async hardResetS2(){await this.usingUsbOtg()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S2: RTC WDT reset (USB-OTG detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S2: Classic reset"))}async hardResetS3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S3: Classic reset"))}async hardResetC3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-C3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-C3: Classic reset"))}async hardReset(t=!1){if(this._consoleMode)return t?void this.logger.debug("Skipping bootloader reset - device is in console mode"):(this.logger.debug("Performing hardware reset (console mode)..."),this.isWebUSB()?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),void this.logger.debug("Hardware reset complete"));if(t)4097===this.port.getInfo().usbProductId?(await this.hardResetUSBJTAGSerial(),this.logger.debug("USB-JTAG/Serial reset.")):this.isWebUSB()?(await this.hardResetClassicWebUSB(),this.logger.debug("Classic reset (WebUSB/Android).")):(await this.hardResetClassic(),this.logger.debug("Classic reset."));else{if(this.chipFamily!==b||this._consoleMode){if(this.chipFamily===S&&!this._consoleMode){if(await this.tryUsbWdtReset("ESP32-S3",1610629176,8,d,1))return}}else{if(await this.tryUsbWdtReset("ESP32-S2",1061175352,8,l,1))return}this.isWebUSB()?(await this.setRTSWebUSB(!0),await this.sleep(200),await this.setRTSWebUSB(!1),await this.sleep(200),this.logger.debug("Hard reset (WebUSB).")):(await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),this.logger.debug("Hard reset."))}await new Promise(t=>setTimeout(t,1e3))}macAddr(){const t=new Array(6).fill(0),e=this._efuses[0],i=this._efuses[1],s=this._efuses[2],a=this._efuses[3];let r;if(this.chipFamily==w){if(0!=a)r=[a>>16&255,a>>8&255,255&a];else if(i>>16&255){if(1!=(i>>16&255))throw new Error("Couldnt determine OUI");r=[172,208,116]}else r=[24,254,52];t[0]=r[0],t[1]=r[1],t[2]=r[2],t[3]=i>>8&255,t[4]=255&i,t[5]=e>>24&255}else if(this.chipFamily==m)t[0]=s>>8&255,t[1]=255&s,t[2]=i>>24&255,t[3]=i>>16&255,t[4]=i>>8&255,t[5]=255&i;else{if(this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x)throw new Error("Unknown chip family");t[0]=i>>8&255,t[1]=255&i,t[2]=e>>24&255,t[3]=e>>16&255,t[4]=e>>8&255,t[5]=255&e}return t}async readRegister(t){this.debug&&this.logger.debug("Reading from Register "+s(t,8));const e=Ri("<I",t);await this.sendCommand(10,e);const[i]=await this.getResponse(10);return i}async checkCommand(t,e,i=0,a=3e3){const r=async()=>{a=Math.min(a,rt),await this.sendCommand(t,e,i);const[r,n]=await this.getResponse(t,a);if(null===n)throw new Error("Didn't get enough status bytes");let h=n,o=0;if(this.IS_STUB||this.chipFamily==w?o=2:[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)||20===t?o=4:[2,4].includes(h.length)?o=h.length:(o=2,this.logger.debug(`Unknown chip family, defaulting to 2-byte status (opcode: ${s(t)}, data.length: ${h.length})`)),h.length<o)throw new Error("Didn't get enough status bytes");const l=h.slice(-o,h.length);if(h=h.slice(0,-o),this.debug&&(this.logger.debug("status",l),this.logger.debug("value",r),this.logger.debug("data",h)),1==l[0])throw 5==l[1]?(await this.drainInputBuffer(200),new Error("Invalid (unsupported) command "+s(t))):new Error("Command failure error code "+s(l[1]));return[r,h]};return this._commandLock=this._commandLock.then(r,r),this._commandLock}async sendCommand(e,i,s=0){const a=t([...Ri("<BBHI",0,e,i.length,s),...i]);this.debug&&this.logger.debug(`Writing ${a.length} byte${1==a.length?"":"s"}:`,a),await this.writeToStream(a)}async readPacket(t){let e=null,a=!1;if(this._isCDCDevice){const n=Date.now();for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}if(0!==this._inputBufferAvailable)for(;this._inputBufferAvailable>0;){if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}const r=this._readByte();if(null===e){if(r!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(r)+")");e=[]}else if(a)if(a=!1,r==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(r!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(r)+")");e.push(this.SLIP_ESC)}else if(r==this.SLIP_ESC)a=!0;else{if(r==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(r)}}else await r(1)}}else{let n=[];for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");const h=Date.now();for(n=[];Date.now()-h<t;){if(this._inputBufferAvailable>0){n.push(this._readByte());break}await r(1)}if(0==n.length){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}this.debug&&this.logger.debug("Read "+n.length+" bytes: "+i(n));for(const t of n)if(null===e){if(t!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(t)+")");e=[]}else if(a)if(a=!1,t==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(t!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(t)+")");e.push(this.SLIP_ESC)}else if(t==this.SLIP_ESC)a=!0;else{if(t==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(t)}}}}async getResponse(t,e=3e3){for(let i=0;i<100;i++){const i=await this.readPacket(e);if(i.length<8)continue;const[a,r,,n]=Bi("<BBHI",i.slice(0,8));if(1!=a)continue;const h=i.slice(8);if(null==t||r==t)return[n,h];if(0!=h[0]&&5==h[1])throw await this.drainInputBuffer(200),new Error(`Invalid (unsupported) command ${s(t)}`)}throw new Error("Response doesn't match request")}checksum(t,e=239){for(const i of t)e^=i;return e}async setBaudrate(t){try{const e=Ri("<II",t,this.IS_STUB?o:0);await this.checkCommand(15,e)}catch(e){throw this.logger.error(`Baudrate change error: ${e}`),new Error(`Unable to change the baud rate to ${t}: No response from set baud rate command.`)}this._parent?await this._parent.reconfigurePort(t):await this.reconfigurePort(t),await r(nt),this._parent?this._parent.currentBaudRate=t:this.currentBaudRate=t;const e=this._parent?this._parent._maxUSBSerialBaudrate:this._maxUSBSerialBaudrate;e&&t>e&&(this.logger.log(`⚠️ WARNING: Baudrate ${t} exceeds USB-Serial chip limit (${e})!`),this.logger.log("⚠️ This may cause data corruption or connection failures!")),this.logger.log(`Changed baud rate to ${t}`)}async reconfigurePort(t){var e;this._isReconfiguring=!0;try{try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconfigure: ${t}`)}if(this.isWebUSB()){const e=this.port.getInfo(),i=6790===e.usbVendorId&&21971===e.usbProductId;if(!i&&"function"==typeof this.port.setBaudRate)return await this.port.setBaudRate(t),void await r(100)}if(this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconfigure: ${t}`)}this._writer=void 0}await(null===(e=this._reader)||void 0===e?void 0:e.cancel()),await this.port.close(),await this.port.open({baudRate:t}),await this.flushSerialBuffers(),this.readLoop()}catch(t){}finally{this._isReconfiguring=!1}}async syncWithTimeout(t){const e=Date.now();for(let i=0;i<5;i++){if(Date.now()-e>t)return!1;if(this._abandonCurrentOperation)return!1;this._clearInputBuffer();try{if(await this._sync())return await r(nt),!0}catch(t){if(this._abandonCurrentOperation)return!1}await r(nt)}return!1}async sync(){for(let t=0;t<5;t++){this._clearInputBuffer();if(await this._sync())return await r(nt),!0;await r(nt)}throw new Error("Couldn't sync to ESP. Try resetting.")}async _sync(){await this.sendCommand(8,p);for(let t=0;t<8;t++)try{const[,t]=await this.getResponse(8,nt);if(t.length>1&&0==t[0]&&0==t[1])return!0}catch(e){this.debug&&this.logger.debug(`Sync attempt ${t+1} failed: ${e}`)}return!1}getFlashWriteSize(){return this.IS_STUB?16384:1024}async flashData(t,e,i=0,a=!1){if(t.byteLength>=8){const e=Array.from(new Uint8Array(t,0,4)),i=e[0],a=e[2],r=e[3];this.logger.log(`Image header, Magic=${s(i)}, FlashMode=${s(a)}, FlashSizeFreq=${s(r)}`)}const r=t.byteLength;let n,h=0,o=st;a?(n=Si(new Uint8Array(t),{level:9}).buffer,h=n.byteLength,this.logger.log(`Writing data with filesize: ${r}. Compressed Size: ${h}`),o=await this.flashDeflBegin(r,h,i)):(this.logger.log(`Writing data with filesize: ${r}`),n=t,await this.flashBegin(r,i));let l=[],d=0,c=0,u=0;const g=Date.now(),_=this.getFlashWriteSize(),f=a?h:r;for(;f-u>0;)this.debug&&this.logger.log(`Writing at ${s(i+d*_,8)} `),f-u>=_?l=Array.from(new Uint8Array(n,u,_)):(l=Array.from(new Uint8Array(n,u,f-u)),a||(l=l.concat(new Array(_-l.length).fill(255)))),a?await this.flashDeflBlock(l,d,o):await this.flashBlock(l,d),d+=1,c+=a?Math.round(l.length*r/h):l.length,u+=_,e(Math.min(c,r),r);this.logger.log("Took "+(Date.now()-g)+"ms to write "+f+" bytes"),this.IS_STUB&&(await this.flashBegin(0,0),a?await this.flashDeflFinish():await this.flashFinish())}async flashBlock(t,e,i=3e3){await this.checkCommand(3,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashDeflBlock(t,e,i=3e3){await this.checkCommand(17,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashBegin(t=0,e=0,i=!1){let a;await this.flushSerialBuffers();const r=this.getFlashWriteSize();!this.IS_STUB&&[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)&&await this.checkCommand(13,new Array(8).fill(0));const n=Math.floor((t+r-1)/r);a=this.chipFamily!=w||this.IS_STUB?t:this.getEraseSize(e,t);const h=this.IS_STUB?st:dt(ht,t),o=Date.now();let l=Ri("<IIII",a,n,r,e);return this.chipFamily!=m&&this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x||(l=l.concat(Ri("<I",i?1:0))),this.logger.log("Erase size "+a+", blocks "+n+", block size "+s(r,4)+", offset "+s(e,4)+", encrypted "+(i?"yes":"no")),await this.checkCommand(2,l,0,h),0==t||this.IS_STUB||this.logger.log("Took "+(Date.now()-o)+"ms to erase "+n+" bytes"),n}async flashDeflBegin(t=0,e=0,i=0){const s=this.getFlashWriteSize(),a=Math.floor((e+s-1)/s),r=Math.floor((t+s-1)/s);let n=0,h=0;this.IS_STUB?(n=t,h=dt(ht,n)):(n=r*s,h=st);const o=Ri("<IIII",n,a,s,i);return await this.checkCommand(16,o,0,h),h}async flashFinish(){const t=Ri("<I",1);await this.checkCommand(4,t)}async flashDeflFinish(){const t=Ri("<I",1);await this.checkCommand(18,t)}getBootloaderOffset(){return ct(this.getChipFamily()).flashOffs}async flashId(){return await this.runSpiFlashCommand(159,[],24)}getChipFamily(){return this._parent?this._parent.chipFamily:this.chipFamily}async writeRegister(t,e,i=4294967295,s=0,a=0){let r=Ri("<IIII",t,e,i,s);a>0&&(r=r.concat(Ri("<IIII",ct(this.getChipFamily()).uartDateReg,0,0,a))),await this.checkCommand(9,r)}async setDataLengths(t,e,i){if(-1!=t.mosiDlenOffs){const s=t.regBase+t.mosiDlenOffs,a=t.regBase+t.misoDlenOffs;e>0&&await this.writeRegister(s,e-1),i>0&&await this.writeRegister(a,i-1)}else{const s=t.regBase+t.usr1Offs,a=(0==i?0:i-1)<<8|(0==e?0:e-1)<<17;await this.writeRegister(s,a)}}async waitDone(t,e){for(let i=0;i<10;i++){if(0==(await this.readRegister(t)&e))return}throw Error("SPI command did not complete in time")}async runSpiFlashCommand(t,e,i=0){const a=ct(this.getChipFamily()),r=a.regBase,n=r,h=r+a.usrOffs,o=r+a.usr2Offs,l=r+a.w0Offs,d=1<<18;if(i>32)throw new Error("Reading more than 32 bits back from a SPI flash operation is unsupported");if(e.length>64)throw new Error("Writing more than 64 bytes of data with one SPI command is unsupported");const c=8*e.length,u=await this.readRegister(h),g=await this.readRegister(o);let _=1<<31;if(i>0&&(_|=268435456),c>0&&(_|=134217728),await this.setDataLengths(a,c,i),await this.writeRegister(h,_),await this.writeRegister(o,7<<28|t),0==c)await this.writeRegister(l,0);else{const t=(4-e.length%4)%4;e=e.concat(new Array(t).fill(0));const i=Bi("I".repeat(Math.floor(e.length/4)),e);let a=l;this.logger.debug(`Words Length: ${i.length}`);for(const t of i)this.logger.debug(`Writing word ${s(t)} to register offset ${s(a)}`),await this.writeRegister(a,t),a+=4}await this.writeRegister(n,d),await this.waitDone(n,d);const f=await this.readRegister(l);return await this.writeRegister(h,u),await this.writeRegister(o,g),f}async detectFlashSize(){this.logger.log("Detecting Flash Size");const t=await this.flashId(),e=255&t,i=t>>16&255;this.logger.log(`FlashId: ${s(t)}`),this.logger.log(`Flash Manufacturer: ${e.toString(16)}`),this.logger.log(`Flash Device: ${(t>>8&255).toString(16)}${i.toString(16)}`),this.flashSize=n[i],this.logger.log(`Auto-detected Flash size: ${this.flashSize}`)}getEraseSize(t,e){const i=h,s=Math.floor((e+i-1)/i);let a=16-Math.floor(t/i)%16;return s<a&&(a=s),s<2*a?Math.floor((s+1)/2*i):(s-a)*i}async memBegin(t,e,i,s){return await this.checkCommand(5,Ri("<IIII",t,e,i,s))}async memBlock(t,e){return await this.checkCommand(7,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t))}async memFinish(t=0){const e=this.IS_STUB?st:500,i=Ri("<II",0==t?1:0,t);return await this.checkCommand(6,i,0,e)}async runStub(t=!1){const e=await gt(this.chipFamily,this.chipRevision);if(null===e)return this.logger.log(`Stub flasher is not yet supported on ${this.chipName}, using ROM loader`),this;const i=2048;this.logger.log("Uploading stub...");for(const t of["text","data"]){const s=e[t],a=e[`${t}_start`],r=s.length,n=Math.floor((r+i-1)/i);await this.memBegin(r,n,i,a);for(const t of Array(n).keys()){const e=t*i;let a=e+i;a>r&&(a=r),await this.memBlock(s.slice(e,a),t)}}await this.memFinish(e.entry);const s=await this.readPacket(500),a=String.fromCharCode(...s);if("OHAI"!=a)throw new Error("Failed to start stub. Unexpected response: "+a);this.logger.log("Stub is now running...");const r=new Ui(this.port,this.logger,this);return t||await r.detectFlashSize(),r}get _reader(){return this._parent?this._parent._reader:this.__reader}set _reader(t){this._parent?this._parent._reader=t:this.__reader=t}get _writer(){return this._parent?this._parent._writer:this.__writer}set _writer(t){this._parent?this._parent._writer=t:this.__writer=t}get _writeChain(){return this._parent?this._parent._writeChain:this.__writeChain}set _writeChain(t){this._parent?this._parent._writeChain=t:this.__writeChain=t}async writeToStream(t){if(this.port.writable){if(this._isReconfiguring)throw new Error("Cannot write during port reconfiguration");this._writeChain=this._writeChain.then(async()=>{if(!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.error(`Failed to get writer: ${t}`),t}await this._writer.write(new Uint8Array(t))},async()=>{if(this.logger.debug("Previous write failed, attempting recovery for current write"),!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.debug(`Failed to get writer in recovery: ${t}`),new Error("Cannot acquire writer lock")}await this._writer.write(new Uint8Array(t))}).catch(t=>{if(this.logger.error(`Write error: ${t}`),this._writer){try{this._writer.releaseLock()}catch{}this._writer=void 0}throw t}),await this._writeChain}else this.logger.debug("Port writable stream not available, skipping write")}async disconnect(){if(this._parent)await this._parent.disconnect();else if(this.port.writable){try{await this._writeChain}catch(t){}if(this._writer){try{await this._writer.close(),this._writer.releaseLock()}catch(t){}this._writer=void 0}else try{const t=this.port.writable.getWriter();await t.close(),t.releaseLock()}catch(t){}await new Promise(t=>{if(!this._reader)return void t(void 0);const e=setTimeout(()=>{this.logger.debug("Disconnect timeout - forcing resolution"),t(void 0)},1e3);this.addEventListener("disconnect",()=>{clearTimeout(e),t(void 0)},{once:!0});try{this._reader.cancel()}catch(i){clearTimeout(e),t(void 0)}}),this.connected=!1;try{await this.port.close(),this.logger.debug("Port closed successfully")}catch(t){this.logger.debug(`Port close error: ${t}`)}}}async releaseReaderWriter(){if(this._parent)return void await this._parent.releaseReaderWriter();if(!await this._resetToFirmwareIfNeeded()){try{await this._writeChain}catch(t){}if(this._writer){try{this._writer.releaseLock(),this.logger.debug("Writer released")}catch(t){this.logger.debug(`Writer release error: ${t}`)}this._writer=void 0}if(this._reader){const t=this._reader;try{this._suppressDisconnect=!0,await t.cancel(),this.logger.debug("Reader cancelled")}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}finally{try{t.releaseLock()}catch(t){this.logger.debug(`Reader release error: ${t}`)}}this._reader===t&&(this._reader=void 0)}}}async resetToFirmware(){return await this._resetToFirmwareIfNeeded()}async detectUsbConnectionType(){if(!this.chipFamily)throw new Error("Cannot detect USB connection type: chipFamily not set");const t=this.port.getInfo(),e=t.usbProductId,i=t.usbVendorId;this.logger.debug(`USB detection: VID=0x${null==i?void 0:i.toString(16)}, PID=0x${null==e?void 0:e.toString(16)}`);if(!(12346===i))return this.logger.debug("Not Espressif VID - external serial chip"),!1;const s=[4097,2,4096,16392,16393].includes(e||0);return this.logger.debug(`USB-JTAG/OTG detection: ${s?"YES":"NO"} (PID=0x${null==e?void 0:e.toString(16)})`),s}async enterConsoleMode(){let t;this._consoleMode=!0;try{t=await this.detectUsbConnectionType(),this.logger.debug("USB connection type detected: "+(t?"USB-JTAG/OTG":"External Serial Chip"))}catch(e){if(void 0===this.isUsbJtagOrOtg)throw new Error(`Cannot enter console mode: USB connection type unknown and detection failed: ${e}`);this.logger.debug(`USB detection failed, using cached value: ${this.isUsbJtagOrOtg}`),t=this.isUsbJtagOrOtg}if(t){return await this._resetToFirmwareIfNeeded()}try{await this.releaseReaderWriter(),await this.sleep(100)}catch(t){this.logger.debug(`Failed to release locks: ${t}`)}try{await this.hardReset(!1),this.logger.log("Device reset to firmware mode")}catch(t){this.logger.debug(`Could not reset device: ${t}`)}if(this.isWebUSB())try{await this.port.recreateStreams(),this.logger.debug("WebUSB streams recreated for console mode")}catch(t){this.logger.debug(`Failed to recreate WebUSB streams: ${t}`)}return!1}async _resetToFirmwareIfNeeded(){try{if(!0===this.isUsbJtagOrOtg){const t=this.chipFamily===b||this.chipFamily===S?"USB-JTAG/Serial or USB-OTG":"USB-JTAG/Serial";if(this.logger.log(`Resetting ${this.chipName||"device"} (${t}) to boot into firmware...`),this._consoleMode=!0,this.chipFamily===b||this.chipFamily===S){const t=this.chipFamily===b?l:d,e=(this.chipFamily,1);try{await this.writeRegister(t,0,e,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}}try{await this.rtcWdtResetChipSpecific(),this.logger.debug("Watchdog reset triggered successfully")}catch(t){this.logger.debug(`Watchdog reset initiated (connection lost as expected: ${t})`)}return this.logger.log("Waiting for device to boot into firmware..."),await this.sleep(1e3),this.connected=!1,this._writer=void 0,this._reader=void 0,this.logger.debug("Device reset to firmware mode (port closed)"),!0}}catch(t){this.logger.debug(`Could not reset device to firmware mode: ${t}`)}return!1}async reconnect(){if(this._parent)await this._parent.reconnect();else try{this.logger.log("Reconnecting serial port...");const t=this.currentBaudRate;this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1;const e=this.chipFamily,i=this.chipName,s=this.chipRevision,a=this.chipVariant,r=this.flashSize;if(await this.hardReset(!0),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await this.flushSerialBuffers(),await this.sync(),this.chipFamily=e,this.chipName=i,this.chipRevision=s,this.chipVariant=a,this.flashSize=r,this.logger.debug(`Reconnect complete (chip: ${this.chipName})`),!this.port.writable||!this.port.readable)throw new Error("Port not ready after reconnect");const n=await this.runStub(!0);if(this.logger.debug("Stub loaded"),t!==o&&(await n.setBaudrate(t),!this.port.writable||!this.port.readable))throw new Error(`Port not ready after baudrate change (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this.IS_STUB=!0,this.logger.debug("Reconnection successful")}catch(t){throw this._isReconfiguring=!1,t}}async reconnectToBootloader(){if(this._parent)await this._parent.reconnectToBootloader();else try{this.logger.log("Reconnecting to bootloader mode..."),this._consoleMode=!1,this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1,this.__chipFamily=void 0,this.chipName="Unknown Chip",this.chipRevision=null,this.chipVariant=null,this.IS_STUB=!1,this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await r(100),await this.connectWithResetStrategies(),await this.detectChip(),this.logger.log(`Reconnected to bootloader: ${this.chipName}`)}catch(t){throw this._isReconfiguring=!1,t}}async exitConsoleMode(){if(this._parent)return await this._parent.exitConsoleMode();this._consoleMode=!1;const t=this.chipFamily===b;let e=this._isUsbJtagOrOtg;if(t&&void 0===e)try{e=await this.detectUsbConnectionType()}catch(t){this.logger.debug(`USB detection failed, assuming USB-JTAG/OTG for ESP32-S2: ${t}`),e=!0}if(t&&e){this.logger.log("ESP32-S2 USB detected - reconnecting to bootloader");try{await this.reconnectToBootloader()}catch(t){this.logger.debug(`Reconnect error (expected for ESP32-S2): ${t}`)}return!0}return await this.reconnectToBootloader(),!1}isConsoleResetSupported(){if(this._parent)return this._parent.isConsoleResetSupported();return!(this.chipFamily===b&&(!0===this._isUsbJtagOrOtg||void 0===this._isUsbJtagOrOtg))}async resetInConsoleMode(){if(this._parent)return await this._parent.resetInConsoleMode();if(!this.isConsoleResetSupported())return void this.logger.debug("Console reset not supported for ESP32-S2 USB-JTAG/CDC");const t=!0===this.port.isWebUSB;try{this.logger.debug("Resetting device in console mode"),t?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),this.logger.debug("Device reset complete")}catch(t){throw this.logger.error(`Reset failed: ${t}`),t}}async drainInputBuffer(t=200){await r(t);let e=0;const i=Date.now();for(;e<112&&Date.now()-i<100;)if(this._inputBufferAvailable>0){void 0!==this._readByte()&&e++}else await r(1);e>0&&this.logger.debug(`Drained ${e} bytes from input buffer`),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0)}async flushSerialBuffers(){this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),await r(nt),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),this.logger.debug("Serial buffers flushed")}async readFlash(e,i,s,a){if(!this.IS_STUB)throw new Error("Reading flash is only supported in stub mode. Please run runStub() first.");let n;await this.flushSerialBuffers(),this.logger.log(`Reading ${i} bytes from flash at address 0x${e.toString(16)}...`),this.isWebUSB()&&(this._isCDCDevice?(this._adaptiveBlockMultiplier=8,this._adaptiveMaxInFlightMultiplier=8,this._consecutiveSuccessfulChunks=0,this.logger.debug(`CDC device - Initialized: blockMultiplier=${this._adaptiveBlockMultiplier}, maxInFlightMultiplier=${this._adaptiveMaxInFlightMultiplier}`)):(this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0,this.logger.debug("Non-CDC device - Fixed values: blockSize=31, maxInFlight=31"))),void 0!==(null==a?void 0:a.chunkSize)?(n=a.chunkSize,this.logger.log(`Using custom chunk size: 0x${n.toString(16)} bytes`)):n=this.isWebUSB()?16384:262144;let h=new Uint8Array(0),o=e,l=i;for(;l>0;){const e=Math.min(n,l);let d=!1,c=0;const u=5;let g=!1;for(;!d&&c<=u;){let i=new Uint8Array(0),s=0;try{let n,l;if(0===c&&this.logger.debug(`Reading chunk at 0x${o.toString(16)}, size: 0x${e.toString(16)}`),void 0!==(null==a?void 0:a.blockSize)&&void 0!==(null==a?void 0:a.maxInFlight))n=a.blockSize,l=a.maxInFlight,0===c&&this.logger.debug(`Using custom parameters: blockSize=${n}, maxInFlight=${l}`);else if(this.isWebUSB()){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2);n=e*this._adaptiveBlockMultiplier,l=e*this._adaptiveMaxInFlightMultiplier}else{const t=63;n=65*t,l=130*t}const u=Ri("<IIII",o,e,n,l),[g]=await this.checkCommand(210,u);if(0!=g)throw new Error("Failed to read memory: "+g);for(;i.length<e;){let a;try{a=await this.readPacket(100)}catch(t){if(t instanceof ut){this.logger.debug(`SLIP read error at ${i.length} bytes: ${t.message}`);try{const t=[this.SLIP_END,this.SLIP_END];await this.writeToStream(t),this.logger.debug("Sent abort frame to stub"),await r(50)}catch(t){this.logger.debug(`Abort frame error: ${t}`)}if(await this.drainInputBuffer(200),i.length>=e)break}throw t}if(a&&a.length>0){const r=new Uint8Array(a),n=new Uint8Array(i.length+r.length);n.set(i),n.set(r,i.length),i=n;if(i.length>=e||i.length>=s+l){const e=Ri("<I",i.length),a=t(e);await this.writeToStream(a),s=i.length}}}const _=new Uint8Array(h.length+i.length);if(_.set(h),_.set(i,h.length),h=_,d=!0,this.isWebUSB()&&this._isCDCDevice&&0===c&&(this._consecutiveSuccessfulChunks++,this._consecutiveSuccessfulChunks>=2)){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=8,s=8;let a=!1;if(this._adaptiveBlockMultiplier<i?(this._adaptiveBlockMultiplier=Math.min(2*this._adaptiveBlockMultiplier,i),a=!0):this._adaptiveMaxInFlightMultiplier<s&&(this._adaptiveMaxInFlightMultiplier=Math.min(2*this._adaptiveMaxInFlightMultiplier,s),a=!0),a){const t=e*this._adaptiveBlockMultiplier,i=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Speed increased: blockSize=${t}, maxInFlight=${i}`),this._lastAdaptiveAdjustment=Date.now()}this._consecutiveSuccessfulChunks=0}}catch(t){if(c++,this.isWebUSB()&&this._isCDCDevice&&1===c)if(this._adaptiveBlockMultiplier>1||this._adaptiveMaxInFlightMultiplier>1){this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0;const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=e*this._adaptiveBlockMultiplier,s=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Error at higher speed - reduced to minimum: blockSize=${i}, maxInFlight=${s}`)}else this.logger.debug("Error at minimum speed (blockSize=31, maxInFlight=31) - not a speed issue");if(!(t instanceof ut))throw t;if(c<=u){this.logger.debug(`${t.message} at 0x${o.toString(16)}. Draining buffer and retrying (attempt ${c}/${u})...`);try{await this.drainInputBuffer(200),await this.flushSerialBuffers(),await r(nt)}catch(t){this.logger.debug(`Buffer drain error: ${t}`)}}else{if(g)throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery attempt`);g=!0,this.logger.log(`All retries exhausted at 0x${o.toString(16)}. Attempting recovery (close and reopen port)...`);try{await this.reconnect(),this.logger.log("Deep recovery successful. Resuming read from current position..."),c=0;continue}catch(t){throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery failed: ${t}`)}}}}s&&s(new Uint8Array(e),h.length,i),o+=e,l-=e,this.logger.debug(`Total progress: 0x${h.length.toString(16)} from 0x${i.toString(16)} bytes`)}return h}}class Ui extends vi{constructor(){super(...arguments),this.IS_STUB=!0}async memBegin(t,e,i,a){const r=await gt(this.chipFamily,this.chipRevision);if(null===r)return[0,[]];const n=a,h=a+t;this.logger.debug(`Load range: ${s(n,8)}-${s(h,8)}`),this.logger.debug(`Stub data: ${s(r.data_start,8)}, len: ${r.data.length}, text: ${s(r.text_start,8)}, len: ${r.text.length}`);for(const[t,e]of[[r.data_start,r.data_start+r.data.length],[r.text_start,r.text_start+r.text.length]])if(n<e&&h>t)throw new Error("Software loader is resident at "+s(t,8)+"-"+s(e,8)+". Can't load binary at overlapping address range "+s(n,8)+"-"+s(h,8)+". Try changing the binary loading address.");return[0,[]]}async eraseFlash(){await this.checkCommand(208,[],0,at)}async eraseRegion(t,e){if(t<0)throw new Error(`Invalid offset: ${t} (must be non-negative)`);if(e<0)throw new Error(`Invalid size: ${e} (must be non-negative)`);if(0===e)return void this.logger.log("eraseRegion: size is 0, skipping erase");if(t%h!==0)throw new Error(`Offset ${t} (0x${t.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);if(e%h!==0)throw new Error(`Size ${e} (0x${e.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);const i=4294967295;if(t>i)throw new Error(`Offset ${t} exceeds maximum value 4294967295`);if(e>i)throw new Error(`Size ${e} exceeds maximum value 4294967295`);if(t+e>i)throw new Error(`Region end (offset + size = ${t+e}) exceeds maximum addressable range 4294967295`);const s=dt(ht,e),a=Ri("<II",t,e);await this.checkCommand(209,a,0,s)}}const Ti=async t=>{let e;const i=globalThis.requestSerialPort;if("function"==typeof i)e=await i();else{if(!navigator.serial)throw new Error("Web Serial API is not supported in this browser. Please use Chrome, Edge, or Opera on desktop, or Chrome on Android. Note: The page must be served over HTTPS or localhost.");e=await navigator.serial.requestPort()}return e.readable&&e.writable||await e.open({baudRate:o}),new vi(e,t)},Ii=async(t,e)=>{if(!t)throw new Error("Port is required");return t.readable&&t.writable||await t.open({baudRate:o}),new vi(t,e)};export{at as CHIP_ERASE_TIMEOUT,m as CHIP_FAMILY_ESP32,y as CHIP_FAMILY_ESP32C2,R as CHIP_FAMILY_ESP32C3,B as CHIP_FAMILY_ESP32C5,v as CHIP_FAMILY_ESP32C6,U as CHIP_FAMILY_ESP32C61,T as CHIP_FAMILY_ESP32H2,C as CHIP_FAMILY_ESP32H21,I as CHIP_FAMILY_ESP32H4,D as CHIP_FAMILY_ESP32P4,b as CHIP_FAMILY_ESP32S2,S as CHIP_FAMILY_ESP32S3,x as CHIP_FAMILY_ESP32S31,w as CHIP_FAMILY_ESP8266,st as DEFAULT_TIMEOUT,ht as ERASE_REGION_TIMEOUT_PER_MB,vi as ESPLoader,H as ESP_CHANGE_BAUDRATE,K as ESP_CHECKSUM_MAGIC,N as ESP_ERASE_FLASH,V as ESP_ERASE_REGION,O as ESP_FLASH_BEGIN,E as ESP_FLASH_DATA,Y as ESP_FLASH_DEFL_BEGIN,X as ESP_FLASH_DEFL_DATA,Q as ESP_FLASH_DEFL_END,W as ESP_FLASH_END,q as ESP_GET_SECURITY_INFO,z as ESP_MEM_BEGIN,$ as ESP_MEM_DATA,A as ESP_MEM_END,it as ESP_RAM_BLOCK,J as ESP_READ_FLASH,L as ESP_READ_REG,G as ESP_SPI_ATTACH,j as ESP_SPI_FLASH_MD5,Z as ESP_SPI_SET_PARAMS,P as ESP_SYNC,M as ESP_WRITE_REG,lt as FLASH_READ_TIMEOUT,rt as MAX_TIMEOUT,ot as MEM_END_ROM_TIMEOUT,tt as ROM_INVALID_RECV_MSG,nt as SYNC_TIMEOUT,et as USB_RAM_BLOCK,Ti as connect,Ii as connectWithPort,a as formatMacAddr,i as hexFormatter,r as sleep,s as toHex};
|
|
1
|
+
const t=t=>{let e=[192];for(const i of t)219==i?e=e.concat([219,221]):192==i?e=e.concat([219,220]):e.push(i);return e.push(192),e},e=t=>{const e=[];for(let i=0;i<t.length;i++){const s=t.charCodeAt(i);s<=255&&e.push(s)}return e},i=t=>"["+t.map(t=>s(t)).join(", ")+"]",s=(t,e=2)=>{const i=t.toString(16).toUpperCase();return i.startsWith("-")?"-0x"+i.substring(1).padStart(e,"0"):"0x"+i.padStart(e,"0")},a=t=>t.map(t=>t.toString(16).toUpperCase().padStart(2,"0")).join(":"),r=t=>new Promise(e=>setTimeout(e,t)),n={18:"256KB",19:"512KB",20:"1MB",21:"2MB",22:"4MB",23:"8MB",24:"16MB",25:"32MB",26:"64MB",27:"128MB",28:"256MB",32:"64MB",33:"128MB",34:"256MB",50:"256KB",51:"512KB",52:"1MB",53:"2MB",54:"4MB",55:"8MB",56:"16MB",57:"32MB",58:"64MB"},h=4096,o=115200,l=1061191976,d=1610645804,c=1070526796,u=1610647552,g=1343410176,_=1341390536,f=1341914824,p=e(" UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU"),w=33382,m=50,b=12882,S=12883,y=12994,R=12995,B=12997,v=12998,U=207969,T=12914,I=12916,C=12917,D=12928,x=12849,k={5:{name:"ESP32-C3",family:R},9:{name:"ESP32-S3",family:S},12:{name:"ESP32-C2",family:y},13:{name:"ESP32-C6",family:v},16:{name:"ESP32-H2",family:T},18:{name:"ESP32-P4",family:D},20:{name:"ESP32-C61",family:U},23:{name:"ESP32-C5",family:B},25:{name:"ESP32-H21",family:C},28:{name:"ESP32-H4",family:I},32:{name:"ESP32-S31",family:x}},F={4293968129:{name:"ESP8266",family:w},15736195:{name:"ESP32",family:m},1990:{name:"ESP32-S2",family:b}},O=2,E=3,W=4,z=5,A=6,$=7,P=8,M=9,L=10,N=208,V=209,J=210,Z=11,G=13,H=15,j=19,q=20,K=239,Y=16,X=17,Q=18,tt=5,et=2048,it=6144,st=3e3,at=15e4,rt=3e5,nt=100,ht=3e4,ot=500,lt=100,dt=(t,e)=>{const i=Math.floor(t*(e/486));return i<st?st:i},ct=t=>{switch(t){case m:return{regBase:1072963584,baseFuse:1073061888,macFuse:1073061888,usrOffs:28,usr1Offs:32,usr2Offs:36,mosiDlenOffs:40,misoDlenOffs:44,w0Offs:128,uartDateReg:1610612856,flashOffs:4096};case b:return{regBase:1061167104,baseFuse:1061265408,macFuse:1061265476,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612856,flashOffs:4096};case S:return{regBase:1610620928,usrOffs:24,baseFuse:1610641408,macFuse:1610641476,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612864,flashOffs:0};case w:return{regBase:1610613248,usrOffs:28,baseFuse:1072693328,macFuse:1072693328,usr1Offs:32,usr2Offs:36,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:64,uartDateReg:1610612856,flashOffs:0};case y:return{regBase:1610620928,baseFuse:u,macFuse:1610647616,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case R:return{regBase:1610620928,baseFuse:1610647552,macFuse:1610647620,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case B:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:8192};case v:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case U:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case T:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case I:return{regBase:1611239424,baseFuse:1611339776,macFuse:1611339844,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610686588,flashOffs:8192};case C:return{regBase:1610625024,baseFuse:1611350016,macFuse:1611350084,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case D:return{regBase:1342754816,baseFuse:g,macFuse:1343410244,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1343004812,flashOffs:8192};case x:return{regBase:542113792,baseFuse:544296960,macFuse:544297028,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:540582028,flashOffs:8192};default:return{regBase:-1,baseFuse:-1,macFuse:-1,usrOffs:-1,usr1Offs:-1,usr2Offs:-1,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:-1,uartDateReg:-1,flashOffs:-1}}};class ut extends Error{constructor(t){super(t),this.name="SlipReadError"}}const gt=async(t,i)=>{let s;if(t==I||t==C||t==x)return null;if(t==m)s=await import("./esp32-BRKoi17y.js");else if(t==b)s=await import("./esp32s2-iX3WoDbg.js");else if(t==S)s=await import("./esp32s3-DGwDVIgz.js");else if(t==w)s=await import("./esp8266-CUwxJpGa.js");else if(t==y)s=await import("./esp32c2-Btgr_lwh.js");else if(t==R)s=await import("./esp32c3-CHKfoI8W.js");else if(t==B)s=await import("./esp32c5-BDW4KtLo.js");else if(t==v)s=await import("./esp32c6-il8tTxAG.js");else if(t==U)s=await import("./esp32c61-thKzxBGf.js");else if(t==T)s=await import("./esp32h2-CxoUHv_P.js");else{if(t!=D)return null;s=null!=i&&i>=300?await import("./esp32p4r3-CqI71ojR.js"):await import("./esp32p4-D3jLP-jY.js")}return{...s,text:e(atob(s.text)),data:e(atob(s.data))}};function _t(t){let e=t.length;for(;--e>=0;)t[e]=0}const ft=256,pt=286,wt=30,mt=15,bt=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),St=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),yt=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),Rt=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Bt=new Array(576);_t(Bt);const vt=new Array(60);_t(vt);const Ut=new Array(512);_t(Ut);const Tt=new Array(256);_t(Tt);const It=new Array(29);_t(It);const Ct=new Array(wt);function Dt(t,e,i,s,a){this.static_tree=t,this.extra_bits=e,this.extra_base=i,this.elems=s,this.max_length=a,this.has_stree=t&&t.length}let xt,kt,Ft;function Ot(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}_t(Ct);const Et=t=>t<256?Ut[t]:Ut[256+(t>>>7)],Wt=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},zt=(t,e,i)=>{t.bi_valid>16-i?(t.bi_buf|=e<<t.bi_valid&65535,Wt(t,t.bi_buf),t.bi_buf=e>>16-t.bi_valid,t.bi_valid+=i-16):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=i)},At=(t,e,i)=>{zt(t,i[2*e],i[2*e+1])},$t=(t,e)=>{let i=0;do{i|=1&t,t>>>=1,i<<=1}while(--e>0);return i>>>1},Pt=(t,e,i)=>{const s=new Array(16);let a,r,n=0;for(a=1;a<=mt;a++)n=n+i[a-1]<<1,s[a]=n;for(r=0;r<=e;r++){let e=t[2*r+1];0!==e&&(t[2*r]=$t(s[e]++,e))}},Mt=t=>{let e;for(e=0;e<pt;e++)t.dyn_ltree[2*e]=0;for(e=0;e<wt;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},Lt=t=>{t.bi_valid>8?Wt(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},Nt=(t,e,i,s)=>{const a=2*e,r=2*i;return t[a]<t[r]||t[a]===t[r]&&s[e]<=s[i]},Vt=(t,e,i)=>{const s=t.heap[i];let a=i<<1;for(;a<=t.heap_len&&(a<t.heap_len&&Nt(e,t.heap[a+1],t.heap[a],t.depth)&&a++,!Nt(e,s,t.heap[a],t.depth));)t.heap[i]=t.heap[a],i=a,a<<=1;t.heap[i]=s},Jt=(t,e,i)=>{let s,a,r,n,h=0;if(0!==t.sym_next)do{s=255&t.pending_buf[t.sym_buf+h++],s+=(255&t.pending_buf[t.sym_buf+h++])<<8,a=t.pending_buf[t.sym_buf+h++],0===s?At(t,a,e):(r=Tt[a],At(t,r+ft+1,e),n=bt[r],0!==n&&(a-=It[r],zt(t,a,n)),s--,r=Et(s),At(t,r,i),n=St[r],0!==n&&(s-=Ct[r],zt(t,s,n)))}while(h<t.sym_next);At(t,256,e)},Zt=(t,e)=>{const i=e.dyn_tree,s=e.stat_desc.static_tree,a=e.stat_desc.has_stree,r=e.stat_desc.elems;let n,h,o,l=-1;for(t.heap_len=0,t.heap_max=573,n=0;n<r;n++)0!==i[2*n]?(t.heap[++t.heap_len]=l=n,t.depth[n]=0):i[2*n+1]=0;for(;t.heap_len<2;)o=t.heap[++t.heap_len]=l<2?++l:0,i[2*o]=1,t.depth[o]=0,t.opt_len--,a&&(t.static_len-=s[2*o+1]);for(e.max_code=l,n=t.heap_len>>1;n>=1;n--)Vt(t,i,n);o=r;do{n=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Vt(t,i,1),h=t.heap[1],t.heap[--t.heap_max]=n,t.heap[--t.heap_max]=h,i[2*o]=i[2*n]+i[2*h],t.depth[o]=(t.depth[n]>=t.depth[h]?t.depth[n]:t.depth[h])+1,i[2*n+1]=i[2*h+1]=o,t.heap[1]=o++,Vt(t,i,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const i=e.dyn_tree,s=e.max_code,a=e.stat_desc.static_tree,r=e.stat_desc.has_stree,n=e.stat_desc.extra_bits,h=e.stat_desc.extra_base,o=e.stat_desc.max_length;let l,d,c,u,g,_,f=0;for(u=0;u<=mt;u++)t.bl_count[u]=0;for(i[2*t.heap[t.heap_max]+1]=0,l=t.heap_max+1;l<573;l++)d=t.heap[l],u=i[2*i[2*d+1]+1]+1,u>o&&(u=o,f++),i[2*d+1]=u,d>s||(t.bl_count[u]++,g=0,d>=h&&(g=n[d-h]),_=i[2*d],t.opt_len+=_*(u+g),r&&(t.static_len+=_*(a[2*d+1]+g)));if(0!==f){do{for(u=o-1;0===t.bl_count[u];)u--;t.bl_count[u]--,t.bl_count[u+1]+=2,t.bl_count[o]--,f-=2}while(f>0);for(u=o;0!==u;u--)for(d=t.bl_count[u];0!==d;)c=t.heap[--l],c>s||(i[2*c+1]!==u&&(t.opt_len+=(u-i[2*c+1])*i[2*c],i[2*c+1]=u),d--)}})(t,e),Pt(i,l,t.bl_count)},Gt=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),e[2*(i+1)+1]=65535,s=0;s<=i;s++)a=n,n=e[2*(s+1)+1],++h<o&&a===n||(h<l?t.bl_tree[2*a]+=h:0!==a?(a!==r&&t.bl_tree[2*a]++,t.bl_tree[32]++):h<=10?t.bl_tree[34]++:t.bl_tree[36]++,h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4))},Ht=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),s=0;s<=i;s++)if(a=n,n=e[2*(s+1)+1],!(++h<o&&a===n)){if(h<l)do{At(t,a,t.bl_tree)}while(0!==--h);else 0!==a?(a!==r&&(At(t,a,t.bl_tree),h--),At(t,16,t.bl_tree),zt(t,h-3,2)):h<=10?(At(t,17,t.bl_tree),zt(t,h-3,3)):(At(t,18,t.bl_tree),zt(t,h-11,7));h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4)}};let jt=!1;const qt=(t,e,i,s)=>{zt(t,0+(s?1:0),3),Lt(t),Wt(t,i),Wt(t,~i),i&&t.pending_buf.set(t.window.subarray(e,e+i),t.pending),t.pending+=i};var Kt=(t,e,i,s)=>{let a,r,n=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,i=4093624447;for(e=0;e<=31;e++,i>>>=1)if(1&i&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<ft;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),Zt(t,t.l_desc),Zt(t,t.d_desc),n=(t=>{let e;for(Gt(t,t.dyn_ltree,t.l_desc.max_code),Gt(t,t.dyn_dtree,t.d_desc.max_code),Zt(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*Rt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),a=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=a&&(a=r)):a=r=i+5,i+4<=a&&-1!==e?qt(t,e,i,s):4===t.strategy||r===a?(zt(t,2+(s?1:0),3),Jt(t,Bt,vt)):(zt(t,4+(s?1:0),3),((t,e,i,s)=>{let a;for(zt(t,e-257,5),zt(t,i-1,5),zt(t,s-4,4),a=0;a<s;a++)zt(t,t.bl_tree[2*Rt[a]+1],3);Ht(t,t.dyn_ltree,e-1),Ht(t,t.dyn_dtree,i-1)})(t,t.l_desc.max_code+1,t.d_desc.max_code+1,n+1),Jt(t,t.dyn_ltree,t.dyn_dtree)),Mt(t),s&&Lt(t)},Yt={_tr_init:t=>{jt||((()=>{let t,e,i,s,a;const r=new Array(16);for(i=0,s=0;s<28;s++)for(It[s]=i,t=0;t<1<<bt[s];t++)Tt[i++]=s;for(Tt[i-1]=s,a=0,s=0;s<16;s++)for(Ct[s]=a,t=0;t<1<<St[s];t++)Ut[a++]=s;for(a>>=7;s<wt;s++)for(Ct[s]=a<<7,t=0;t<1<<St[s]-7;t++)Ut[256+a++]=s;for(e=0;e<=mt;e++)r[e]=0;for(t=0;t<=143;)Bt[2*t+1]=8,t++,r[8]++;for(;t<=255;)Bt[2*t+1]=9,t++,r[9]++;for(;t<=279;)Bt[2*t+1]=7,t++,r[7]++;for(;t<=287;)Bt[2*t+1]=8,t++,r[8]++;for(Pt(Bt,287,r),t=0;t<wt;t++)vt[2*t+1]=5,vt[2*t]=$t(t,5);xt=new Dt(Bt,bt,257,pt,mt),kt=new Dt(vt,St,0,wt,mt),Ft=new Dt(new Array(0),yt,0,19,7)})(),jt=!0),t.l_desc=new Ot(t.dyn_ltree,xt),t.d_desc=new Ot(t.dyn_dtree,kt),t.bl_desc=new Ot(t.bl_tree,Ft),t.bi_buf=0,t.bi_valid=0,Mt(t)},_tr_stored_block:qt,_tr_flush_block:Kt,_tr_tally:(t,e,i)=>(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=i,0===e?t.dyn_ltree[2*i]++:(t.matches++,e--,t.dyn_ltree[2*(Tt[i]+ft+1)]++,t.dyn_dtree[2*Et(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{zt(t,2,3),At(t,256,Bt),(t=>{16===t.bi_valid?(Wt(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}};var Xt=(t,e,i,s)=>{let a=65535&t,r=t>>>16&65535,n=0;for(;0!==i;){n=i>2e3?2e3:i,i-=n;do{a=a+e[s++]|0,r=r+a|0}while(--n);a%=65521,r%=65521}return a|r<<16};const Qt=new Uint32Array((()=>{let t,e=[];for(var i=0;i<256;i++){t=i;for(var s=0;s<8;s++)t=1&t?3988292384^t>>>1:t>>>1;e[i]=t}return e})());var te=(t,e,i,s)=>{const a=Qt,r=s+i;t^=-1;for(let i=s;i<r;i++)t=t>>>8^a[255&(t^e[i])];return-1^t},ee={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},ie={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_OK:0,Z_STREAM_END:1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:se,_tr_stored_block:ae,_tr_flush_block:re,_tr_tally:ne,_tr_align:he}=Yt,{Z_NO_FLUSH:oe,Z_PARTIAL_FLUSH:le,Z_FULL_FLUSH:de,Z_FINISH:ce,Z_BLOCK:ue,Z_OK:ge,Z_STREAM_END:_e,Z_STREAM_ERROR:fe,Z_DATA_ERROR:pe,Z_BUF_ERROR:we,Z_DEFAULT_COMPRESSION:me,Z_FILTERED:be,Z_HUFFMAN_ONLY:Se,Z_RLE:ye,Z_FIXED:Re,Z_DEFAULT_STRATEGY:Be,Z_UNKNOWN:ve,Z_DEFLATED:Ue}=ie,Te=258,Ie=262,Ce=42,De=113,xe=666,ke=(t,e)=>(t.msg=ee[e],e),Fe=t=>2*t-(t>4?9:0),Oe=t=>{let e=t.length;for(;--e>=0;)t[e]=0},Ee=t=>{let e,i,s,a=t.w_size;e=t.hash_size,s=e;do{i=t.head[--s],t.head[s]=i>=a?i-a:0}while(--e);e=a,s=e;do{i=t.prev[--s],t.prev[s]=i>=a?i-a:0}while(--e)};let We=(t,e,i)=>(e<<t.hash_shift^i)&t.hash_mask;const ze=t=>{const e=t.state;let i=e.pending;i>t.avail_out&&(i=t.avail_out),0!==i&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+i),t.next_out),t.next_out+=i,e.pending_out+=i,t.total_out+=i,t.avail_out-=i,e.pending-=i,0===e.pending&&(e.pending_out=0))},Ae=(t,e)=>{re(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,ze(t.strm)},$e=(t,e)=>{t.pending_buf[t.pending++]=e},Pe=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},Me=(t,e,i,s)=>{let a=t.avail_in;return a>s&&(a=s),0===a?0:(t.avail_in-=a,e.set(t.input.subarray(t.next_in,t.next_in+a),i),1===t.state.wrap?t.adler=Xt(t.adler,e,a,i):2===t.state.wrap&&(t.adler=te(t.adler,e,a,i)),t.next_in+=a,t.total_in+=a,a)},Le=(t,e)=>{let i,s,a=t.max_chain_length,r=t.strstart,n=t.prev_length,h=t.nice_match;const o=t.strstart>t.w_size-Ie?t.strstart-(t.w_size-Ie):0,l=t.window,d=t.w_mask,c=t.prev,u=t.strstart+Te;let g=l[r+n-1],_=l[r+n];t.prev_length>=t.good_match&&(a>>=2),h>t.lookahead&&(h=t.lookahead);do{if(i=e,l[i+n]===_&&l[i+n-1]===g&&l[i]===l[r]&&l[++i]===l[r+1]){r+=2,i++;do{}while(l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&r<u);if(s=Te-(u-r),r=u-Te,s>n){if(t.match_start=e,n=s,s>=h)break;g=l[r+n-1],_=l[r+n]}}}while((e=c[e&d])>o&&0!==--a);return n<=t.lookahead?n:t.lookahead},Ne=t=>{const e=t.w_size;let i,s,a;do{if(s=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Ie)&&(t.window.set(t.window.subarray(e,e+e-s),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),Ee(t),s+=e),0===t.strm.avail_in)break;if(i=Me(t.strm,t.window,t.strstart+t.lookahead,s),t.lookahead+=i,t.lookahead+t.insert>=3)for(a=t.strstart-t.insert,t.ins_h=t.window[a],t.ins_h=We(t,t.ins_h,t.window[a+1]);t.insert&&(t.ins_h=We(t,t.ins_h,t.window[a+3-1]),t.prev[a&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=a,a++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<Ie&&0!==t.strm.avail_in)},Ve=(t,e)=>{let i,s,a,r=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,n=0,h=t.strm.avail_in;do{if(i=65535,a=t.bi_valid+42>>3,t.strm.avail_out<a)break;if(a=t.strm.avail_out-a,s=t.strstart-t.block_start,i>s+t.strm.avail_in&&(i=s+t.strm.avail_in),i>a&&(i=a),i<r&&(0===i&&e!==ce||e===oe||i!==s+t.strm.avail_in))break;n=e===ce&&i===s+t.strm.avail_in?1:0,ae(t,0,0,n),t.pending_buf[t.pending-4]=i,t.pending_buf[t.pending-3]=i>>8,t.pending_buf[t.pending-2]=~i,t.pending_buf[t.pending-1]=~i>>8,ze(t.strm),s&&(s>i&&(s=i),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+s),t.strm.next_out),t.strm.next_out+=s,t.strm.avail_out-=s,t.strm.total_out+=s,t.block_start+=s,i-=s),i&&(Me(t.strm,t.strm.output,t.strm.next_out,i),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i)}while(0===n);return h-=t.strm.avail_in,h&&(h>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=h&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-h,t.strm.next_in),t.strstart),t.strstart+=h,t.insert+=h>t.w_size-t.insert?t.w_size-t.insert:h),t.block_start=t.strstart),t.high_water<t.strstart&&(t.high_water=t.strstart),n?4:e!==oe&&e!==ce&&0===t.strm.avail_in&&t.strstart===t.block_start?2:(a=t.window_size-t.strstart,t.strm.avail_in>a&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,a+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),a>t.strm.avail_in&&(a=t.strm.avail_in),a&&(Me(t.strm,t.window,t.strstart,a),t.strstart+=a,t.insert+=a>t.w_size-t.insert?t.w_size-t.insert:a),t.high_water<t.strstart&&(t.high_water=t.strstart),a=t.bi_valid+42>>3,a=t.pending_buf_size-a>65535?65535:t.pending_buf_size-a,r=a>t.w_size?t.w_size:a,s=t.strstart-t.block_start,(s>=r||(s||e===ce)&&e!==oe&&0===t.strm.avail_in&&s<=a)&&(i=s>a?a:s,n=e===ce&&0===t.strm.avail_in&&i===s?1:0,ae(t,t.block_start,i,n),t.block_start+=i,ze(t.strm)),n?3:1)},Je=(t,e)=>{let i,s;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==i&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i)),t.match_length>=3)if(s=ne(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!==--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=We(t,t.ins_h,t.window[t.strstart+1]);else s=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(s&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2},Ze=(t,e)=>{let i,s,a;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==i&&t.prev_length<t.max_lazy_match&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i),t.match_length<=5&&(t.strategy===be||3===t.match_length&&t.strstart-t.match_start>4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){a=t.strstart+t.lookahead-3,s=ne(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=a&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!==--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,s&&(Ae(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(s=ne(t,0,t.window[t.strstart-1]),s&&Ae(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(s=ne(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2};function Ge(t,e,i,s,a){this.good_length=t,this.max_lazy=e,this.nice_length=i,this.max_chain=s,this.func=a}const He=[new Ge(0,0,0,0,Ve),new Ge(4,4,8,4,Je),new Ge(4,5,16,8,Je),new Ge(4,6,32,32,Je),new Ge(4,4,16,16,Ze),new Ge(8,16,32,32,Ze),new Ge(8,16,128,128,Ze),new Ge(8,32,128,256,Ze),new Ge(32,128,258,1024,Ze),new Ge(32,258,258,4096,Ze)];function je(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Ue,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),Oe(this.dyn_ltree),Oe(this.dyn_dtree),Oe(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),Oe(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),Oe(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const qe=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==Ce&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==De&&e.status!==xe?1:0},Ke=t=>{if(qe(t))return ke(t,fe);t.total_in=t.total_out=0,t.data_type=ve;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?Ce:De,t.adler=2===e.wrap?0:1,e.last_flush=-2,se(e),ge},Ye=t=>{const e=Ke(t);var i;return e===ge&&((i=t.state).window_size=2*i.w_size,Oe(i.head),i.max_lazy_match=He[i.level].max_lazy,i.good_match=He[i.level].good_length,i.nice_match=He[i.level].nice_length,i.max_chain_length=He[i.level].max_chain,i.strstart=0,i.block_start=0,i.lookahead=0,i.insert=0,i.match_length=i.prev_length=2,i.match_available=0,i.ins_h=0),e},Xe=(t,e,i,s,a,r)=>{if(!t)return fe;let n=1;if(e===me&&(e=6),s<0?(n=0,s=-s):s>15&&(n=2,s-=16),a<1||a>9||i!==Ue||s<8||s>15||e<0||e>9||r<0||r>Re||8===s&&1!==n)return ke(t,fe);8===s&&(s=9);const h=new je;return t.state=h,h.strm=t,h.status=Ce,h.wrap=n,h.gzhead=null,h.w_bits=s,h.w_size=1<<h.w_bits,h.w_mask=h.w_size-1,h.hash_bits=a+7,h.hash_size=1<<h.hash_bits,h.hash_mask=h.hash_size-1,h.hash_shift=~~((h.hash_bits+3-1)/3),h.window=new Uint8Array(2*h.w_size),h.head=new Uint16Array(h.hash_size),h.prev=new Uint16Array(h.w_size),h.lit_bufsize=1<<a+6,h.pending_buf_size=4*h.lit_bufsize,h.pending_buf=new Uint8Array(h.pending_buf_size),h.sym_buf=h.lit_bufsize,h.sym_end=3*(h.lit_bufsize-1),h.level=e,h.strategy=r,h.method=i,Ye(t)};var Qe={deflateInit:(t,e)=>Xe(t,e,Ue,15,8,Be),deflateInit2:Xe,deflateReset:Ye,deflateResetKeep:Ke,deflateSetHeader:(t,e)=>qe(t)||2!==t.state.wrap?fe:(t.state.gzhead=e,ge),deflate:(t,e)=>{if(qe(t)||e>ue||e<0)return t?ke(t,fe):fe;const i=t.state;if(!t.output||0!==t.avail_in&&!t.input||i.status===xe&&e!==ce)return ke(t,0===t.avail_out?we:fe);const s=i.last_flush;if(i.last_flush=e,0!==i.pending){if(ze(t),0===t.avail_out)return i.last_flush=-1,ge}else if(0===t.avail_in&&Fe(e)<=Fe(s)&&e!==ce)return ke(t,we);if(i.status===xe&&0!==t.avail_in)return ke(t,we);if(i.status===Ce&&0===i.wrap&&(i.status=De),i.status===Ce){let e=Ue+(i.w_bits-8<<4)<<8,s=-1;if(s=i.strategy>=Se||i.level<2?0:i.level<6?1:6===i.level?2:3,e|=s<<6,0!==i.strstart&&(e|=32),e+=31-e%31,Pe(i,e),0!==i.strstart&&(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),t.adler=1,i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(57===i.status)if(t.adler=0,$e(i,31),$e(i,139),$e(i,8),i.gzhead)$e(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),$e(i,255&i.gzhead.time),$e(i,i.gzhead.time>>8&255),$e(i,i.gzhead.time>>16&255),$e(i,i.gzhead.time>>24&255),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&($e(i,255&i.gzhead.extra.length),$e(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=te(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69;else if($e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,3),i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge;if(69===i.status){if(i.gzhead.extra){let e=i.pending,s=(65535&i.gzhead.extra.length)-i.gzindex;for(;i.pending+s>i.pending_buf_size;){let a=i.pending_buf_size-i.pending;if(i.pending_buf.set(i.gzhead.extra.subarray(i.gzindex,i.gzindex+a),i.pending),i.pending=i.pending_buf_size,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex+=a,ze(t),0!==i.pending)return i.last_flush=-1,ge;e=0,s-=a}let a=new Uint8Array(i.gzhead.extra);i.pending_buf.set(a.subarray(i.gzindex,i.gzindex+s),i.pending),i.pending+=s,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex=0}i.status=73}if(73===i.status){if(i.gzhead.name){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),i.gzindex=0}i.status=91}if(91===i.status){if(i.gzhead.comment){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s))}i.status=103}if(103===i.status){if(i.gzhead.hcrc){if(i.pending+2>i.pending_buf_size&&(ze(t),0!==i.pending))return i.last_flush=-1,ge;$e(i,255&t.adler),$e(i,t.adler>>8&255),t.adler=0}if(i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(0!==t.avail_in||0!==i.lookahead||e!==oe&&i.status!==xe){let s=0===i.level?Ve(i,e):i.strategy===Se?((t,e)=>{let i;for(;;){if(0===t.lookahead&&(Ne(t),0===t.lookahead)){if(e===oe)return 1;break}if(t.match_length=0,i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):i.strategy===ye?((t,e)=>{let i,s,a,r;const n=t.window;for(;;){if(t.lookahead<=Te){if(Ne(t),t.lookahead<=Te&&e===oe)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(a=t.strstart-1,s=n[a],s===n[++a]&&s===n[++a]&&s===n[++a])){r=t.strstart+Te;do{}while(s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&a<r);t.match_length=Te-(r-a),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(i=ne(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):He[i.level].func(i,e);if(3!==s&&4!==s||(i.status=xe),1===s||3===s)return 0===t.avail_out&&(i.last_flush=-1),ge;if(2===s&&(e===le?he(i):e!==ue&&(ae(i,0,0,!1),e===de&&(Oe(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),ze(t),0===t.avail_out))return i.last_flush=-1,ge}return e!==ce?ge:i.wrap<=0?_e:(2===i.wrap?($e(i,255&t.adler),$e(i,t.adler>>8&255),$e(i,t.adler>>16&255),$e(i,t.adler>>24&255),$e(i,255&t.total_in),$e(i,t.total_in>>8&255),$e(i,t.total_in>>16&255),$e(i,t.total_in>>24&255)):(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),ze(t),i.wrap>0&&(i.wrap=-i.wrap),0!==i.pending?ge:_e)},deflateEnd:t=>{if(qe(t))return fe;const e=t.state.status;return t.state=null,e===De?ke(t,pe):ge},deflateSetDictionary:(t,e)=>{let i=e.length;if(qe(t))return fe;const s=t.state,a=s.wrap;if(2===a||1===a&&s.status!==Ce||s.lookahead)return fe;if(1===a&&(t.adler=Xt(t.adler,e,i,0)),s.wrap=0,i>=s.w_size){0===a&&(Oe(s.head),s.strstart=0,s.block_start=0,s.insert=0);let t=new Uint8Array(s.w_size);t.set(e.subarray(i-s.w_size,i),0),e=t,i=s.w_size}const r=t.avail_in,n=t.next_in,h=t.input;for(t.avail_in=i,t.next_in=0,t.input=e,Ne(s);s.lookahead>=3;){let t=s.strstart,e=s.lookahead-2;do{s.ins_h=We(s,s.ins_h,s.window[t+3-1]),s.prev[t&s.w_mask]=s.head[s.ins_h],s.head[s.ins_h]=t,t++}while(--e);s.strstart=t,s.lookahead=2,Ne(s)}return s.strstart+=s.lookahead,s.block_start=s.strstart,s.insert=s.lookahead,s.lookahead=0,s.match_length=s.prev_length=2,s.match_available=0,t.next_in=n,t.input=h,t.avail_in=r,s.wrap=a,ge},deflateInfo:"pako deflate (from Nodeca project)"};const ti=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var ei=function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const i=e.shift();if(i){if("object"!=typeof i)throw new TypeError(i+"must be non-object");for(const e in i)ti(i,e)&&(t[e]=i[e])}}return t},ii=t=>{let e=0;for(let i=0,s=t.length;i<s;i++)e+=t[i].length;const i=new Uint8Array(e);for(let e=0,s=0,a=t.length;e<a;e++){let a=t[e];i.set(a,s),s+=a.length}return i};let si=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){si=!1}const ai=new Uint8Array(256);for(let t=0;t<256;t++)ai[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;ai[254]=ai[254]=1;var ri=t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,i,s,a,r,n=t.length,h=0;for(a=0;a<n;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),h+=i<128?1:i<2048?2:i<65536?3:4;for(e=new Uint8Array(h),r=0,a=0;r<h;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),i<128?e[r++]=i:i<2048?(e[r++]=192|i>>>6,e[r++]=128|63&i):i<65536?(e[r++]=224|i>>>12,e[r++]=128|i>>>6&63,e[r++]=128|63&i):(e[r++]=240|i>>>18,e[r++]=128|i>>>12&63,e[r++]=128|i>>>6&63,e[r++]=128|63&i);return e};var ni=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const hi=Object.prototype.toString,{Z_NO_FLUSH:oi,Z_SYNC_FLUSH:li,Z_FULL_FLUSH:di,Z_FINISH:ci,Z_OK:ui,Z_STREAM_END:gi,Z_DEFAULT_COMPRESSION:_i,Z_DEFAULT_STRATEGY:fi,Z_DEFLATED:pi}=ie;function wi(t){this.options=ei({level:_i,method:pi,chunkSize:16384,windowBits:15,memLevel:8,strategy:fi},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new ni,this.strm.avail_out=0;let i=Qe.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(i!==ui)throw new Error(ee[i]);if(e.header&&Qe.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?ri(e.dictionary):"[object ArrayBuffer]"===hi.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,i=Qe.deflateSetDictionary(this.strm,t),i!==ui)throw new Error(ee[i]);this._dict_set=!0}}wi.prototype.push=function(t,e){const i=this.strm,s=this.options.chunkSize;let a,r;if(this.ended)return!1;for(r=e===~~e?e:!0===e?ci:oi,"string"==typeof t?i.input=ri(t):"[object ArrayBuffer]"===hi.call(t)?i.input=new Uint8Array(t):i.input=t,i.next_in=0,i.avail_in=i.input.length;;)if(0===i.avail_out&&(i.output=new Uint8Array(s),i.next_out=0,i.avail_out=s),(r===li||r===di)&&i.avail_out<=6)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else{if(a=Qe.deflate(i,r),a===gi)return i.next_out>0&&this.onData(i.output.subarray(0,i.next_out)),a=Qe.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===ui;if(0!==i.avail_out){if(r>0&&i.next_out>0)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else if(0===i.avail_in)break}else this.onData(i.output)}return!0},wi.prototype.onData=function(t){this.chunks.push(t)},wi.prototype.onEnd=function(t){t===ui&&(this.result=ii(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var mi={deflate:function(t,e){const i=new wi(e);if(i.push(t,!0),i.err)throw i.msg||ee[i.err];return i.result}};const{deflate:bi}=mi;var Si=bi;const yi={b:{u:DataView.prototype.getInt8,p:DataView.prototype.setInt8,bytes:1},B:{u:DataView.prototype.getUint8,p:DataView.prototype.setUint8,bytes:1},h:{u:DataView.prototype.getInt16,p:DataView.prototype.setInt16,bytes:2},H:{u:DataView.prototype.getUint16,p:DataView.prototype.setUint16,bytes:2},i:{u:DataView.prototype.getInt32,p:DataView.prototype.setInt32,bytes:4},I:{u:DataView.prototype.getUint32,p:DataView.prototype.setUint32,bytes:4}},Ri=(t,...e)=>{let i=0;if(t.replace(/[<>]/,"").length!=e.length)throw"Pack format to Argument count mismatch";const s=[];let a=!0;for(let s=0;s<t.length;s++)"<"==t[s]?a=!0:">"==t[s]?a=!1:(r(t[s],e[i]),i++);function r(t,e){if(!(t in yi))throw"Unhandled character '"+t+"' in pack format";const i=yi[t].bytes,r=new DataView(new ArrayBuffer(i));yi[t].p.bind(r)(0,e,a);for(let t=0;t<i;t++)s.push(r.getUint8(t))}return s},Bi=(t,e)=>{let i=0;const s=[];let a=!0;for(const e of t)"<"==e?a=!0:">"==e?a=!1:r(e);function r(t){if(!(t in yi))throw"Unhandled character '"+t+"' in unpack format";const r=yi[t].bytes,n=new DataView(new ArrayBuffer(r));for(let t=0;t<r;t++)n.setUint8(t,255&e[i+t]);const h=yi[t].u.bind(n);s.push(h(0,a)),i+=r}return s};class vi extends EventTarget{get isUsbJtagOrOtg(){return this._parent?this._parent._isUsbJtagOrOtg:this._isUsbJtagOrOtg}constructor(t,e,i){super(),this.port=t,this.logger=e,this._parent=i,this.__chipName=null,this.__chipRevision=null,this.__chipVariant=null,this._efuses=new Array(4).fill(0),this._flashsize=4194304,this.debug=!1,this.IS_STUB=!1,this.connected=!0,this.flashSize=null,this.currentBaudRate=o,this.SLIP_END=192,this.SLIP_ESC=219,this.SLIP_ESC_END=220,this.SLIP_ESC_ESC=221,this._isESP32S2NativeUSB=!1,this._initializationSucceeded=!1,this.__commandLock=Promise.resolve([0,[]]),this.__isReconfiguring=!1,this.__abandonCurrentOperation=!1,this._suppressDisconnect=!1,this.__consoleMode=!1,this._isUsbJtagOrOtg=void 0,this.__adaptiveBlockMultiplier=1,this.__adaptiveMaxInFlightMultiplier=1,this.__consecutiveSuccessfulChunks=0,this.__lastAdaptiveAdjustment=0,this.__isCDCDevice=!1,this.state_DTR=!1,this.state_RTS=!1,this.__writeChain=Promise.resolve()}get chipFamily(){return this._parent?this._parent.chipFamily:this.__chipFamily}set chipFamily(t){this._parent?this._parent.chipFamily=t:this.__chipFamily=t}get chipName(){return this._parent?this._parent.chipName:this.__chipName}set chipName(t){this._parent?this._parent.chipName=t:this.__chipName=t}get chipRevision(){return this._parent?this._parent.chipRevision:this.__chipRevision}set chipRevision(t){this._parent?this._parent.chipRevision=t:this.__chipRevision=t}get chipVariant(){return this._parent?this._parent.chipVariant:this.__chipVariant}set chipVariant(t){this._parent?this._parent.chipVariant=t:this.__chipVariant=t}get _consoleMode(){return this._parent?this._parent._consoleMode:this.__consoleMode}set _consoleMode(t){this._parent?this._parent._consoleMode=t:this.__consoleMode=t}setConsoleMode(t){this._consoleMode=t}get _inputBuffer(){if(this._parent)return this._parent._inputBuffer;if(void 0===this.__inputBuffer)throw new Error("_inputBuffer accessed before initialization");return this.__inputBuffer}get _inputBufferReadIndex(){return this._parent?this._parent._inputBufferReadIndex:this.__inputBufferReadIndex||0}set _inputBufferReadIndex(t){this._parent?this._parent._inputBufferReadIndex=t:this.__inputBufferReadIndex=t}get _inputBufferAvailable(){return this._inputBuffer.length-this._inputBufferReadIndex}_readByte(){if(!(this._inputBufferReadIndex>=this._inputBuffer.length))return this._inputBuffer[this._inputBufferReadIndex++]}_clearInputBuffer(){this._inputBuffer.length=0,this._inputBufferReadIndex=0}_compactInputBuffer(){this._inputBufferReadIndex>1e3&&this._inputBufferReadIndex>this._inputBuffer.length/2&&(this._inputBuffer.splice(0,this._inputBufferReadIndex),this._inputBufferReadIndex=0)}get _totalBytesRead(){return this._parent?this._parent._totalBytesRead:this.__totalBytesRead||0}set _totalBytesRead(t){this._parent?this._parent._totalBytesRead=t:this.__totalBytesRead=t}get _commandLock(){return this._parent?this._parent._commandLock:this.__commandLock}set _commandLock(t){this._parent?this._parent._commandLock=t:this.__commandLock=t}get _isReconfiguring(){return this._parent?this._parent._isReconfiguring:this.__isReconfiguring}set _isReconfiguring(t){this._parent?this._parent._isReconfiguring=t:this.__isReconfiguring=t}get _abandonCurrentOperation(){return this._parent?this._parent._abandonCurrentOperation:this.__abandonCurrentOperation}set _abandonCurrentOperation(t){this._parent?this._parent._abandonCurrentOperation=t:this.__abandonCurrentOperation=t}get _adaptiveBlockMultiplier(){return this._parent?this._parent._adaptiveBlockMultiplier:this.__adaptiveBlockMultiplier}set _adaptiveBlockMultiplier(t){this._parent?this._parent._adaptiveBlockMultiplier=t:this.__adaptiveBlockMultiplier=t}get _adaptiveMaxInFlightMultiplier(){return this._parent?this._parent._adaptiveMaxInFlightMultiplier:this.__adaptiveMaxInFlightMultiplier}set _adaptiveMaxInFlightMultiplier(t){this._parent?this._parent._adaptiveMaxInFlightMultiplier=t:this.__adaptiveMaxInFlightMultiplier=t}get _consecutiveSuccessfulChunks(){return this._parent?this._parent._consecutiveSuccessfulChunks:this.__consecutiveSuccessfulChunks}set _consecutiveSuccessfulChunks(t){this._parent?this._parent._consecutiveSuccessfulChunks=t:this.__consecutiveSuccessfulChunks=t}get _lastAdaptiveAdjustment(){return this._parent?this._parent._lastAdaptiveAdjustment:this.__lastAdaptiveAdjustment}set _lastAdaptiveAdjustment(t){this._parent?this._parent._lastAdaptiveAdjustment=t:this.__lastAdaptiveAdjustment=t}get _isCDCDevice(){return this._parent?this._parent._isCDCDevice:this.__isCDCDevice}set _isCDCDevice(t){this._parent?this._parent._isCDCDevice=t:this.__isCDCDevice=t}detectUSBSerialChip(t,e){const i={6790:{29986:{name:"CH340",maxBaudrate:460800},29987:{name:"CH340",maxBaudrate:460800},30084:{name:"CH340",maxBaudrate:460800},21795:{name:"CH341",maxBaudrate:2e6},21971:{name:"CH343",maxBaudrate:6e6},21972:{name:"CH9102",maxBaudrate:6e6},21976:{name:"CH9101",maxBaudrate:3e6}},4292:{6e4:{name:"CP2102(n)",maxBaudrate:3e6},60016:{name:"CP2105",maxBaudrate:2e6},60017:{name:"CP2108",maxBaudrate:2e6}},1027:{24577:{name:"FT232R",maxBaudrate:3e6},24592:{name:"FT2232",maxBaudrate:3e6},24593:{name:"FT4232",maxBaudrate:3e6},24596:{name:"FT232H",maxBaudrate:12e6},24597:{name:"FT230X",maxBaudrate:3e6}},12346:{2:{name:"ESP32-S2 Native USB",maxBaudrate:2e6},4097:{name:"ESP32 Native USB",maxBaudrate:2e6},4098:{name:"ESP32 Native USB",maxBaudrate:2e6},16386:{name:"ESP32 Native USB",maxBaudrate:2e6},4096:{name:"ESP32 Native USB",maxBaudrate:2e6}}}[t];return i&&i[e]?i[e]:{name:`Unknown (VID: 0x${t.toString(16)}, PID: 0x${e.toString(16)})`}}async initialize(){if(!this._parent){this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0;const t=this.port.getInfo();if(t.usbVendorId&&t.usbProductId){const e=this.detectUSBSerialChip(t.usbVendorId,t.usbProductId);this.logger.log(`USB-Serial: ${e.name} (VID: 0x${t.usbVendorId.toString(16)}, PID: 0x${t.usbProductId.toString(16)})`),e.maxBaudrate&&(this._maxUSBSerialBaudrate=e.maxBaudrate,this.logger.log(`Max baudrate: ${e.maxBaudrate}`)),12346===t.usbVendorId&&2===t.usbProductId&&(this._isESP32S2NativeUSB=!0),(12346===t.usbVendorId||6790===t.usbVendorId&&21971===t.usbProductId)&&(this._isCDCDevice=!0)}this.readLoop()}await this.connectWithResetStrategies(),await this.detectChip();try{this._isUsbJtagOrOtg=await this.detectUsbConnectionType(),this.logger.debug("USB connection type: "+(this._isUsbJtagOrOtg?"USB-JTAG/OTG":"External Serial Chip"))}catch(t){this.logger.debug(`Could not detect USB connection type: ${t}`)}const t=ct(this.getChipFamily()),e=t.macFuse;for(let t=0;t<4;t++)this._efuses[t]=await this.readRegister(e+4*t);this.logger.log(`Chip type ${this.chipName}`),this.logger.debug(`Bootloader flash offset: 0x${t.flashOffs.toString(16)}`),this._initializationSucceeded=!0}async detectChip(){try{const t=(await this.getSecurityInfo()).chipId,e=k[t];if(e)return this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-P4 revision: ${this.chipRevision}`),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-C3 revision: ${this.chipRevision}`)),void this.logger.debug(`Detected chip via IMAGE_CHIP_ID: ${t} (${this.chipName})`);this.logger.debug(`Unknown IMAGE_CHIP_ID: ${t}, falling back to magic value detection`)}catch(t){this.logger.debug(`GET_SECURITY_INFO failed, using magic value detection: ${t}`),await this.drainInputBuffer(200),this._clearInputBuffer(),await r(nt);try{await this.sync()}catch(t){this.logger.debug(`Re-sync after GET_SECURITY_INFO failure: ${t}`)}}const t=await this.readRegister(1073745920),e=F[t>>>0];if(void 0===e)throw new Error(`Unknown Chip: Hex: ${s(t>>>0,8).toLowerCase()} Number: ${t}`);this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision()),this.logger.debug(`Detected chip via magic value: ${s(t>>>0,8)} (${this.chipName})`)}async getChipRevision(){if(this.chipFamily===D){const t=await this.readRegister(1343410252);return 100*((t>>23&1)<<2|t>>4&3)+(15&t)}return this.chipFamily===R?await this.getChipRevisionC3():0}async getSecurityInfo(){const[,t]=await this.checkCommand(20,[],0);if(0===t.length)throw new Error("GET_SECURITY_INFO not supported or returned empty response");if(t.length<12)throw new Error(`Invalid security info response length: ${t.length} (expected at least 12 bytes)`);return{flags:Bi("<I",t.slice(0,4))[0],flashCryptCnt:t[4],keyPurposes:Array.from(t.slice(5,12)),chipId:t.length>=16?Bi("<I",t.slice(12,16))[0]:0,apiVersion:t.length>=20?Bi("<I",t.slice(16,20))[0]:0}}async getMacAddress(){if(!this._initializationSucceeded)throw new Error("getMacAddress() requires initialize() to have completed successfully");return this.macAddr().map(t=>t.toString(16).padStart(2,"0").toUpperCase()).join(":")}async readLoop(){this.debug&&this.logger.debug("Starting read loop"),this._reader=this.port.readable.getReader();try{let t=!0;for(;t;){const{value:e,done:i}=await this._reader.read();if(i){this._reader.releaseLock(),t=!1;break}if(!e||0===e.length)continue;const s=Array.from(e);Array.prototype.push.apply(this._inputBuffer,s),this._totalBytesRead+=e.length}}catch{}finally{if(this._isReconfiguring=!1,this._reader){try{this._reader.releaseLock(),this.logger.debug("Reader released in readLoop cleanup")}catch(t){this.logger.debug(`Reader release error in readLoop: ${t}`)}this._reader=void 0}}this.connected=!1,this._isESP32S2NativeUSB&&!this._initializationSucceeded&&(this.logger.log("ESP32-S2 Native USB detected - requesting port reselection"),this.dispatchEvent(new CustomEvent("esp32s2-usb-reconnect",{detail:{message:"ESP32-S2 Native USB requires port reselection"}}))),this._suppressDisconnect||this.dispatchEvent(new Event("disconnect")),this._suppressDisconnect=!1,this.logger.debug("Finished read loop")}sleep(t=100){return new Promise(e=>setTimeout(e,t))}async setRTS(t){await this.port.setSignals({requestToSend:t}),await this.setDTR(this.state_DTR)}async setDTR(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t})}async setDTRandRTS(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerial(){await this.setRTS(!1),await this.setDTR(!1),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(100),await this.setRTS(!0),await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!1),await this.setRTS(!1),await this.sleep(200)}async hardResetClassic(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(50),await this.setDTR(!1),await this.sleep(200)}async hardResetToFirmware(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),await this.sleep(50),await this.sleep(200)}async hardResetToFirmwareWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setRTSWebUSB(!1),await this.sleep(50),await this.sleep(200)}async hardResetUnixTight(){await this.setDTRandRTS(!0,!0),await this.setDTRandRTS(!1,!1),await this.setDTRandRTS(!1,!0),await this.sleep(100),await this.setDTRandRTS(!0,!1),await this.sleep(50),await this.setDTRandRTS(!1,!1),await this.setDTR(!1),await this.sleep(200)}async setRTSWebUSB(t){this.state_RTS=t,await this.port.setSignals({requestToSend:t,dataTerminalReady:this.state_DTR})}async setDTRWebUSB(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t,requestToSend:this.state_RTS})}async setDTRandRTSWebUSB(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerialWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetUSBJTAGSerialInvertedDTRWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetClassicWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetUnixTightWebUSB(){await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRandRTSWebUSB(!0,!0),await this.setDTRandRTSWebUSB(!1,!0),await this.sleep(100),await this.setDTRandRTSWebUSB(!0,!1),await this.sleep(50),await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetClassicLongDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(500),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200),await this.setDTRWebUSB(!1),await this.sleep(500)}async hardResetClassicShortDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(25),await this.setDTRWebUSB(!1),await this.sleep(100)}async hardResetInvertedWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedDTRWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedRTSWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}isWebUSB(){return!0===this.port.isWebUSB}async connectWithResetStrategies(){const t=this.port.getInfo(),e=4097===t.usbProductId,i=12346===t.usbVendorId,s=[],a=this,n=!e&&!i;if(this.isWebUSB()){const r=4292===t.usbVendorId,h=6790===t.usbVendorId,o=12346===t.usbVendorId&&2===t.usbProductId;(e||i)&&(o?(s.push({name:"USB-JTAG/Serial (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"UnixTight (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetClassicWebUSB()})):(s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"USB-JTAG/Serial (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"Inverted DTR Classic (WebUSB)",fn:async()=>await a.hardResetInvertedDTRWebUSB()}))),n&&(h?(s.push({name:"UnixTight (WebUSB) - CH34x",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CH34x",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):r?(s.push({name:"UnixTight (WebUSB) - CP2102",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CP2102",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):(s.push({name:"UnixTight (WebUSB)",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"Inverted Both (WebUSB)",fn:async function(){return await a.hardResetInvertedWebUSB()}}),s.push({name:"Inverted RTS (WebUSB)",fn:async function(){return await a.hardResetInvertedRTSWebUSB()}}),s.push({name:"Inverted DTR (WebUSB)",fn:async function(){return await a.hardResetInvertedDTRWebUSB()}}))),r||o||(6790!==t.usbVendorId&&s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"UnixTight (WebUSB)",fn:async function(){return await a.hardResetUnixTightWebUSB()}}),s.push({name:"Classic Long Delay (WebUSB)",fn:async function(){return await a.hardResetClassicLongDelayWebUSB()}}),s.push({name:"Classic Short Delay (WebUSB)",fn:async function(){return await a.hardResetClassicShortDelayWebUSB()}}),e||i||s.push({name:"USB-JTAG/Serial fallback (WebUSB)",fn:async function(){return await a.hardResetUSBJTAGSerialWebUSB()}}))}else(e||i)&&s.push({name:"USB-JTAG/Serial",fn:async function(){return await a.hardResetUSBJTAGSerial()}}),s.push({name:"UnixTight",fn:async function(){return await a.hardResetUnixTight()}}),e||i||s.push({name:"USB-JTAG/Serial (fallback)",fn:async function(){return await a.hardResetUSBJTAGSerial()}});let h=null;for(const t of s)try{if(!this.connected||!this.port.writable){this.logger.debug(`Port disconnected, skipping ${t.name} reset`);continue}if(this._abandonCurrentOperation=!1,await t.fn(),n){if(await this.syncWithTimeout(2e3))return void this.logger.log(`Connected USB Serial successfully with ${t.name} reset.`);throw new Error("Sync timeout or abandoned")}{const e=this.sync(),i=new Promise((t,e)=>setTimeout(()=>e(new Error("Sync timeout")),1e3));try{return await Promise.race([e,i]),void this.logger.log(`Connected CDC/JTAG successfully with ${t.name} reset.`)}catch(t){throw new Error("Sync timeout or abandoned")}}}catch(t){if(h=t,this._abandonCurrentOperation=!0,await r(100),!this.connected||!this.port.writable){this.logger.log("Port disconnected during reset attempt");break}this._clearInputBuffer(),await this.drainInputBuffer(200),await this.flushSerialBuffers()}throw this._abandonCurrentOperation=!1,new Error(`Couldn't sync to ESP. Try resetting manually. Last error: ${null==h?void 0:h.message}`)}async watchdogReset(){await this.rtcWdtResetChipSpecific()}async usingUsbOtg(){let t,e;if(this.chipFamily===b)t=1073741076,e=2;else if(this.chipFamily===S)t=c,e=3;else{if(this.chipFamily!==D)return!1;null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=5}return(255&await this.readRegister(t))===e}async usingUsbJtagSerial(){let t,e;if(this.chipFamily===S)t=c,e=4;else if(this.chipFamily===R){let i;null===this.chipRevision&&(this.chipRevision=await this.getChipRevisionC3()),i=this.chipRevision<101?1070461028:1070461024,t=i+24,e=3}else if(this.chipFamily===B)t=1082520852,e=3;else if(this.chipFamily===v)t=1082652032,e=3;else if(this.chipFamily===D)null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=6;else{if(this.chipFamily!==T)return!1;t=1082457852,e=3}return(255&await this.readRegister(t))===e}async getChipRevisionC3(){if(this.chipFamily!==R)return 0;const t=await this.readRegister(1610647632)>>18&7;return(await this.readRegister(1610647640)>>23&7)<<3|t}async rtcWdtResetChipSpecific(){let t,e,i,s;if(this.logger.debug("Hard resetting with watchdog timer..."),this.chipFamily===b)t=1061191852,e=1061191828,i=1061191832,s=1356348065;else if(this.chipFamily===S)t=1610645680,e=1610645656,i=1610645660,s=1356348065;else if(this.chipFamily===R)t=1610645672,e=1610645648,i=1610645652,s=1356348065;else if(this.chipFamily===B||this.chipFamily===v)t=1611340824,e=1611340800,i=1611340804,s=1356348065;else{if(this.chipFamily!==D)throw new Error(`rtcWdtResetChipSpecific() is not supported for ${this.chipFamily}`);t=1343315992,e=1343315968,i=1343315972,s=1356348065}if(await this.writeRegister(t,s,void 0,0),this.chipFamily===b)try{await this.writeRegister(l,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===S)try{await this.writeRegister(d,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===D)try{await this.writeRegister(1343291400,0,4,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}await this.writeRegister(i,2e3,void 0,0);await this.writeRegister(e,-805306110,void 0,0),await this.writeRegister(t,0,void 0,0),await this.sleep(500)}async tryUsbWdtReset(t,e,i,s,a){const r=await this.usingUsbOtg(),n=await this.usingUsbJtagSerial();if(r||n){const r=await this.readRegister(e),n=await this.readRegister(s);if(0===(r&i)&&0===(n&a))return await this.rtcWdtResetChipSpecific(),this.logger.debug(`${t}: RTC WDT reset (USB detected, GPIO0 low)`),!0}return!1}async hardResetS2(){await this.usingUsbOtg()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S2: RTC WDT reset (USB-OTG detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S2: Classic reset"))}async hardResetS3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S3: Classic reset"))}async hardResetC3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-C3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-C3: Classic reset"))}async hardReset(t=!1){if(this._consoleMode)return t?void this.logger.debug("Skipping bootloader reset - device is in console mode"):(this.logger.debug("Performing hardware reset (console mode)..."),this.isWebUSB()?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),void this.logger.debug("Hardware reset complete"));if(t)4097===this.port.getInfo().usbProductId?(await this.hardResetUSBJTAGSerial(),this.logger.debug("USB-JTAG/Serial reset.")):this.isWebUSB()?(await this.hardResetClassicWebUSB(),this.logger.debug("Classic reset (WebUSB/Android).")):(await this.hardResetClassic(),this.logger.debug("Classic reset."));else{if(this.chipFamily!==b||this._consoleMode){if(this.chipFamily===S&&!this._consoleMode){if(await this.tryUsbWdtReset("ESP32-S3",1610629176,8,d,1))return}}else{if(await this.tryUsbWdtReset("ESP32-S2",1061175352,8,l,1))return}this.isWebUSB()?(await this.setRTSWebUSB(!0),await this.sleep(200),await this.setRTSWebUSB(!1),await this.sleep(200),this.logger.debug("Hard reset (WebUSB).")):(await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),this.logger.debug("Hard reset."))}await new Promise(t=>setTimeout(t,1e3))}macAddr(){const t=new Array(6).fill(0),e=this._efuses[0],i=this._efuses[1],s=this._efuses[2],a=this._efuses[3];let r;if(this.chipFamily==w){if(0!=a)r=[a>>16&255,a>>8&255,255&a];else if(i>>16&255){if(1!=(i>>16&255))throw new Error("Couldnt determine OUI");r=[172,208,116]}else r=[24,254,52];t[0]=r[0],t[1]=r[1],t[2]=r[2],t[3]=i>>8&255,t[4]=255&i,t[5]=e>>24&255}else if(this.chipFamily==m)t[0]=s>>8&255,t[1]=255&s,t[2]=i>>24&255,t[3]=i>>16&255,t[4]=i>>8&255,t[5]=255&i;else{if(this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x)throw new Error("Unknown chip family");t[0]=i>>8&255,t[1]=255&i,t[2]=e>>24&255,t[3]=e>>16&255,t[4]=e>>8&255,t[5]=255&e}return t}async readRegister(t){this.debug&&this.logger.debug("Reading from Register "+s(t,8));const e=Ri("<I",t);await this.sendCommand(10,e);const[i]=await this.getResponse(10);return i}async checkCommand(t,e,i=0,a=3e3){const r=async()=>{a=Math.min(a,rt),await this.sendCommand(t,e,i);const[r,n]=await this.getResponse(t,a);if(null===n)throw new Error("Didn't get enough status bytes");let h=n,o=0;if(this.IS_STUB||this.chipFamily==w?o=2:[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)||20===t?o=4:[2,4].includes(h.length)?o=h.length:(o=2,this.logger.debug(`Unknown chip family, defaulting to 2-byte status (opcode: ${s(t)}, data.length: ${h.length})`)),h.length<o)throw new Error("Didn't get enough status bytes");const l=h.slice(-o,h.length);if(h=h.slice(0,-o),this.debug&&(this.logger.debug("status",l),this.logger.debug("value",r),this.logger.debug("data",h)),1==l[0])throw 5==l[1]?(await this.drainInputBuffer(200),new Error("Invalid (unsupported) command "+s(t))):new Error("Command failure error code "+s(l[1]));return[r,h]};return this._commandLock=this._commandLock.then(r,r),this._commandLock}async sendCommand(e,i,s=0){const a=t([...Ri("<BBHI",0,e,i.length,s),...i]);this.debug&&this.logger.debug(`Writing ${a.length} byte${1==a.length?"":"s"}:`,a),await this.writeToStream(a)}async readPacket(t){let e=null,a=!1;if(this._isCDCDevice){const n=Date.now();for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}if(0!==this._inputBufferAvailable)for(;this._inputBufferAvailable>0;){if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}const r=this._readByte();if(null===e){if(r!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(r)+")");e=[]}else if(a)if(a=!1,r==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(r!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(r)+")");e.push(this.SLIP_ESC)}else if(r==this.SLIP_ESC)a=!0;else{if(r==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(r)}}else await r(1)}}else{let n=[];for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");const h=Date.now();for(n=[];Date.now()-h<t;){if(this._inputBufferAvailable>0){n.push(this._readByte());break}await r(1)}if(0==n.length){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}this.debug&&this.logger.debug("Read "+n.length+" bytes: "+i(n));for(const t of n)if(null===e){if(t!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(t)+")");e=[]}else if(a)if(a=!1,t==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(t!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(t)+")");e.push(this.SLIP_ESC)}else if(t==this.SLIP_ESC)a=!0;else{if(t==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(t)}}}}async getResponse(t,e=3e3){for(let i=0;i<100;i++){const i=await this.readPacket(e);if(i.length<8)continue;const[a,r,,n]=Bi("<BBHI",i.slice(0,8));if(1!=a)continue;const h=i.slice(8);if(null==t||r==t)return[n,h];if(0!=h[0]&&5==h[1])throw await this.drainInputBuffer(200),new Error(`Invalid (unsupported) command ${s(t)}`)}throw new Error("Response doesn't match request")}checksum(t,e=239){for(const i of t)e^=i;return e}async setBaudrate(t){try{const e=Ri("<II",t,this.IS_STUB?o:0);await this.checkCommand(15,e)}catch(e){throw this.logger.error(`Baudrate change error: ${e}`),new Error(`Unable to change the baud rate to ${t}: No response from set baud rate command.`)}this._parent?await this._parent.reconfigurePort(t):await this.reconfigurePort(t),await r(nt),this._parent?this._parent.currentBaudRate=t:this.currentBaudRate=t;const e=this._parent?this._parent._maxUSBSerialBaudrate:this._maxUSBSerialBaudrate;e&&t>e&&(this.logger.log(`⚠️ WARNING: Baudrate ${t} exceeds USB-Serial chip limit (${e})!`),this.logger.log("⚠️ This may cause data corruption or connection failures!")),this.logger.log(`Changed baud rate to ${t}`)}async reconfigurePort(t){var e;this._isReconfiguring=!0;try{try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconfigure: ${t}`)}if(this.isWebUSB()){const e=this.port.getInfo(),i=6790===e.usbVendorId&&21971===e.usbProductId;if(!i&&"function"==typeof this.port.setBaudRate)return await this.port.setBaudRate(t),void await r(100)}if(this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconfigure: ${t}`)}this._writer=void 0}await(null===(e=this._reader)||void 0===e?void 0:e.cancel()),await this.port.close(),await this.port.open({baudRate:t}),await this.flushSerialBuffers(),this.readLoop()}catch(t){}finally{this._isReconfiguring=!1}}async syncWithTimeout(t){const e=Date.now();for(let i=0;i<5;i++){if(Date.now()-e>t)return!1;if(this._abandonCurrentOperation)return!1;this._clearInputBuffer();try{if(await this._sync())return await r(nt),!0}catch(t){if(this._abandonCurrentOperation)return!1}await r(nt)}return!1}async sync(){for(let t=0;t<5;t++){this._clearInputBuffer();if(await this._sync())return await r(nt),!0;await r(nt)}throw new Error("Couldn't sync to ESP. Try resetting.")}async _sync(){await this.sendCommand(8,p);for(let t=0;t<8;t++)try{const[,t]=await this.getResponse(8,nt);if(t.length>1&&0==t[0]&&0==t[1])return!0}catch(e){this.debug&&this.logger.debug(`Sync attempt ${t+1} failed: ${e}`)}return!1}getFlashWriteSize(){return this.IS_STUB?16384:1024}async flashData(t,e,i=0,a=!1){if(t.byteLength>=8){const e=Array.from(new Uint8Array(t,0,4)),i=e[0],a=e[2],r=e[3];this.logger.log(`Image header, Magic=${s(i)}, FlashMode=${s(a)}, FlashSizeFreq=${s(r)}`)}const r=t.byteLength;let n,h=0,o=st;a?(n=Si(new Uint8Array(t),{level:9}).buffer,h=n.byteLength,this.logger.log(`Writing data with filesize: ${r}. Compressed Size: ${h}`),o=await this.flashDeflBegin(r,h,i)):(this.logger.log(`Writing data with filesize: ${r}`),n=t,await this.flashBegin(r,i));let l=[],d=0,c=0,u=0;const g=Date.now(),_=this.getFlashWriteSize(),f=a?h:r;for(;f-u>0;)this.debug&&this.logger.log(`Writing at ${s(i+d*_,8)} `),f-u>=_?l=Array.from(new Uint8Array(n,u,_)):(l=Array.from(new Uint8Array(n,u,f-u)),a||(l=l.concat(new Array(_-l.length).fill(255)))),a?await this.flashDeflBlock(l,d,o):await this.flashBlock(l,d),d+=1,c+=a?Math.round(l.length*r/h):l.length,u+=_,e(Math.min(c,r),r);this.logger.log("Took "+(Date.now()-g)+"ms to write "+f+" bytes"),this.IS_STUB&&(await this.flashBegin(0,0),a?await this.flashDeflFinish():await this.flashFinish())}async flashBlock(t,e,i=3e3){await this.checkCommand(3,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashDeflBlock(t,e,i=3e3){await this.checkCommand(17,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashBegin(t=0,e=0,i=!1){let a;await this.flushSerialBuffers();const r=this.getFlashWriteSize();!this.IS_STUB&&[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)&&await this.checkCommand(13,new Array(8).fill(0));const n=Math.floor((t+r-1)/r);a=this.chipFamily!=w||this.IS_STUB?t:this.getEraseSize(e,t);const h=this.IS_STUB?st:dt(ht,t),o=Date.now();let l=Ri("<IIII",a,n,r,e);return this.chipFamily!=m&&this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x||(l=l.concat(Ri("<I",i?1:0))),this.logger.log("Erase size "+a+", blocks "+n+", block size "+s(r,4)+", offset "+s(e,4)+", encrypted "+(i?"yes":"no")),await this.checkCommand(2,l,0,h),0==t||this.IS_STUB||this.logger.log("Took "+(Date.now()-o)+"ms to erase "+n+" bytes"),n}async flashDeflBegin(t=0,e=0,i=0){const s=this.getFlashWriteSize(),a=Math.floor((e+s-1)/s),r=Math.floor((t+s-1)/s);let n=0,h=0;this.IS_STUB?(n=t,h=dt(ht,n)):(n=r*s,h=st);const o=Ri("<IIII",n,a,s,i);return await this.checkCommand(16,o,0,h),h}async flashFinish(){const t=Ri("<I",1);await this.checkCommand(4,t)}async flashDeflFinish(){const t=Ri("<I",1);await this.checkCommand(18,t)}getBootloaderOffset(){return ct(this.getChipFamily()).flashOffs}async flashId(){return await this.runSpiFlashCommand(159,[],24)}getChipFamily(){return this._parent?this._parent.chipFamily:this.chipFamily}async writeRegister(t,e,i=4294967295,s=0,a=0){let r=Ri("<IIII",t,e,i,s);a>0&&(r=r.concat(Ri("<IIII",ct(this.getChipFamily()).uartDateReg,0,0,a))),await this.checkCommand(9,r)}async setDataLengths(t,e,i){if(-1!=t.mosiDlenOffs){const s=t.regBase+t.mosiDlenOffs,a=t.regBase+t.misoDlenOffs;e>0&&await this.writeRegister(s,e-1),i>0&&await this.writeRegister(a,i-1)}else{const s=t.regBase+t.usr1Offs,a=(0==i?0:i-1)<<8|(0==e?0:e-1)<<17;await this.writeRegister(s,a)}}async waitDone(t,e){for(let i=0;i<10;i++){if(0==(await this.readRegister(t)&e))return}throw Error("SPI command did not complete in time")}async runSpiFlashCommand(t,e,i=0){const a=ct(this.getChipFamily()),r=a.regBase,n=r,h=r+a.usrOffs,o=r+a.usr2Offs,l=r+a.w0Offs,d=1<<18;if(i>32)throw new Error("Reading more than 32 bits back from a SPI flash operation is unsupported");if(e.length>64)throw new Error("Writing more than 64 bytes of data with one SPI command is unsupported");const c=8*e.length,u=await this.readRegister(h),g=await this.readRegister(o);let _=1<<31;if(i>0&&(_|=268435456),c>0&&(_|=134217728),await this.setDataLengths(a,c,i),await this.writeRegister(h,_),await this.writeRegister(o,7<<28|t),0==c)await this.writeRegister(l,0);else{const t=(4-e.length%4)%4;e=e.concat(new Array(t).fill(0));const i=Bi("I".repeat(Math.floor(e.length/4)),e);let a=l;this.logger.debug(`Words Length: ${i.length}`);for(const t of i)this.logger.debug(`Writing word ${s(t)} to register offset ${s(a)}`),await this.writeRegister(a,t),a+=4}await this.writeRegister(n,d),await this.waitDone(n,d);const f=await this.readRegister(l);return await this.writeRegister(h,u),await this.writeRegister(o,g),f}async detectFlashSize(){this.logger.log("Detecting Flash Size");const t=await this.flashId(),e=255&t,i=t>>16&255;this.logger.log(`FlashId: ${s(t)}`),this.logger.log(`Flash Manufacturer: ${e.toString(16)}`),this.logger.log(`Flash Device: ${(t>>8&255).toString(16)}${i.toString(16)}`),this.flashSize=n[i],this.logger.log(`Auto-detected Flash size: ${this.flashSize}`)}getEraseSize(t,e){const i=h,s=Math.floor((e+i-1)/i);let a=16-Math.floor(t/i)%16;return s<a&&(a=s),s<2*a?Math.floor((s+1)/2*i):(s-a)*i}async memBegin(t,e,i,s){return await this.checkCommand(5,Ri("<IIII",t,e,i,s))}async memBlock(t,e){return await this.checkCommand(7,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t))}async memFinish(t=0){const e=this.IS_STUB?st:500,i=Ri("<II",0==t?1:0,t);return await this.checkCommand(6,i,0,e)}async runStub(t=!1){const e=await gt(this.chipFamily,this.chipRevision);if(null===e)return this.logger.log(`Stub flasher is not yet supported on ${this.chipName}, using ROM loader`),this;const i=2048;this.logger.log("Uploading stub...");for(const t of["text","data"]){const s=e[t],a=e[`${t}_start`],r=s.length,n=Math.floor((r+i-1)/i);await this.memBegin(r,n,i,a);for(const t of Array(n).keys()){const e=t*i;let a=e+i;a>r&&(a=r),await this.memBlock(s.slice(e,a),t)}}await this.memFinish(e.entry);const s=await this.readPacket(500),a=String.fromCharCode(...s);if("OHAI"!=a)throw new Error("Failed to start stub. Unexpected response: "+a);this.logger.log("Stub is now running...");const r=new Ui(this.port,this.logger,this);return t||await r.detectFlashSize(),r}get _reader(){return this._parent?this._parent._reader:this.__reader}set _reader(t){this._parent?this._parent._reader=t:this.__reader=t}get _writer(){return this._parent?this._parent._writer:this.__writer}set _writer(t){this._parent?this._parent._writer=t:this.__writer=t}get _writeChain(){return this._parent?this._parent._writeChain:this.__writeChain}set _writeChain(t){this._parent?this._parent._writeChain=t:this.__writeChain=t}async writeToStream(t){if(this.port.writable){if(this._isReconfiguring)throw new Error("Cannot write during port reconfiguration");this._writeChain=this._writeChain.then(async()=>{if(!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.error(`Failed to get writer: ${t}`),t}await this._writer.write(new Uint8Array(t))},async()=>{if(this.logger.debug("Previous write failed, attempting recovery for current write"),!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.debug(`Failed to get writer in recovery: ${t}`),new Error("Cannot acquire writer lock")}await this._writer.write(new Uint8Array(t))}).catch(t=>{if(this.logger.error(`Write error: ${t}`),this._writer){try{this._writer.releaseLock()}catch{}this._writer=void 0}throw t}),await this._writeChain}else this.logger.debug("Port writable stream not available, skipping write")}async disconnect(){if(this._parent)await this._parent.disconnect();else if(this.port.writable){try{await this._writeChain}catch(t){}if(this._writer){try{await this._writer.close(),this._writer.releaseLock()}catch(t){}this._writer=void 0}else try{const t=this.port.writable.getWriter();await t.close(),t.releaseLock()}catch(t){}await new Promise(t=>{if(!this._reader)return void t(void 0);const e=setTimeout(()=>{this.logger.debug("Disconnect timeout - forcing resolution"),t(void 0)},1e3);this.addEventListener("disconnect",()=>{clearTimeout(e),t(void 0)},{once:!0});try{this._reader.cancel()}catch(i){clearTimeout(e),t(void 0)}}),this.connected=!1;try{await this.port.close(),this.logger.debug("Port closed successfully")}catch(t){this.logger.debug(`Port close error: ${t}`)}}}async releaseReaderWriter(){if(this._parent)return void await this._parent.releaseReaderWriter();if(!await this._resetToFirmwareIfNeeded()){try{await this._writeChain}catch(t){}if(this._writer){try{this._writer.releaseLock(),this.logger.debug("Writer released")}catch(t){this.logger.debug(`Writer release error: ${t}`)}this._writer=void 0}if(this._reader){const t=this._reader;try{this._suppressDisconnect=!0,await t.cancel(),this.logger.debug("Reader cancelled")}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}finally{try{t.releaseLock()}catch(t){this.logger.debug(`Reader release error: ${t}`)}}this._reader===t&&(this._reader=void 0)}}}async resetToFirmware(){return await this._resetToFirmwareIfNeeded()}async detectUsbConnectionType(){const t=this.port.getInfo(),e=t.usbProductId,i=t.usbVendorId;this.logger.debug(`USB detection: VID=0x${null==i?void 0:i.toString(16)}, PID=0x${null==e?void 0:e.toString(16)}`);if(!(12346===i))return this.logger.debug("Not Espressif VID - external serial chip"),!1;const s=[2,4097].includes(e||0);return this.logger.debug(`USB-JTAG/OTG detection: ${s?"YES":"NO"} (PID=0x${null==e?void 0:e.toString(16)})`),s}async enterConsoleMode(){let t;this._consoleMode=!0;try{t=await this.detectUsbConnectionType(),this.logger.debug("USB connection type detected: "+(t?"USB-JTAG/OTG":"External Serial Chip")),this._isUsbJtagOrOtg=t}catch(e){if(void 0===this.isUsbJtagOrOtg)throw new Error(`Cannot enter console mode: USB connection type unknown and detection failed: ${e}`);this.logger.debug(`USB detection failed, using cached value: ${this.isUsbJtagOrOtg}`),t=this.isUsbJtagOrOtg}if(t){return await this._resetToFirmwareIfNeeded()}try{await this.releaseReaderWriter(),await this.sleep(100)}catch(t){this.logger.debug(`Failed to release locks: ${t}`)}try{await this.hardReset(!1),this.logger.log("Device reset to firmware mode")}catch(t){this.logger.debug(`Could not reset device: ${t}`)}if(this.isWebUSB())try{await this.port.recreateStreams(),this.logger.debug("WebUSB streams recreated for console mode")}catch(t){this.logger.debug(`Failed to recreate WebUSB streams: ${t}`)}return!1}async _resetToFirmwareIfNeeded(){try{if(!0===this.isUsbJtagOrOtg){const t=this.chipFamily===b||this.chipFamily===S?"USB-JTAG/Serial or USB-OTG":"USB-JTAG/Serial";if(this.logger.log(`Resetting ${this.chipName||"device"} (${t}) to boot into firmware...`),this._consoleMode=!0,this.chipFamily===b||this.chipFamily===S){const t=this.chipFamily===b?l:d,e=(this.chipFamily,1);try{await this.writeRegister(t,0,e,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}}try{await this.rtcWdtResetChipSpecific(),this.logger.debug("Watchdog reset triggered successfully")}catch(t){this.logger.debug(`Watchdog reset initiated (connection lost as expected: ${t})`)}return this.logger.log("Waiting for device to boot into firmware..."),await this.sleep(1e3),this.connected=!1,this._writer=void 0,this._reader=void 0,this.logger.debug("Device reset to firmware mode (port closed)"),!0}}catch(t){this.logger.debug(`Could not reset device to firmware mode: ${t}`)}return!1}async reconnect(){if(this._parent)await this._parent.reconnect();else try{this.logger.log("Reconnecting serial port...");const t=this.currentBaudRate;this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1;const e=this.chipFamily,i=this.chipName,s=this.chipRevision,a=this.chipVariant,r=this.flashSize;if(await this.hardReset(!0),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await this.flushSerialBuffers(),await this.sync(),this.chipFamily=e,this.chipName=i,this.chipRevision=s,this.chipVariant=a,this.flashSize=r,this.logger.debug(`Reconnect complete (chip: ${this.chipName})`),!this.port.writable||!this.port.readable)throw new Error("Port not ready after reconnect");const n=await this.runStub(!0);if(this.logger.debug("Stub loaded"),t!==o&&(await n.setBaudrate(t),!this.port.writable||!this.port.readable))throw new Error(`Port not ready after baudrate change (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this.IS_STUB=!0,this.logger.debug("Reconnection successful")}catch(t){throw this._isReconfiguring=!1,t}}async reconnectToBootloader(){if(this._parent)await this._parent.reconnectToBootloader();else try{this.logger.log("Reconnecting to bootloader mode..."),this._consoleMode=!1,this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1,this.__chipFamily=void 0,this.chipName="Unknown Chip",this.chipRevision=null,this.chipVariant=null,this.IS_STUB=!1,this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await r(100),await this.connectWithResetStrategies(),await this.detectChip(),this.logger.log(`Reconnected to bootloader: ${this.chipName}`)}catch(t){throw this._isReconfiguring=!1,t}}async exitConsoleMode(){if(this._parent)return await this._parent.exitConsoleMode();this._consoleMode=!1;const t=this.chipFamily===b;let e=this._isUsbJtagOrOtg;if(t&&void 0===e)try{e=await this.detectUsbConnectionType()}catch(t){this.logger.debug(`USB detection failed, assuming USB-JTAG/OTG for ESP32-S2: ${t}`),e=!0}if(t&&e){this.logger.log("ESP32-S2 USB detected - reconnecting to bootloader");try{await this.reconnectToBootloader()}catch(t){this.logger.debug(`Reconnect error (expected for ESP32-S2): ${t}`)}return!0}return await this.reconnectToBootloader(),!1}isConsoleResetSupported(){if(this._parent)return this._parent.isConsoleResetSupported();return!(this.chipFamily===b&&(!0===this._isUsbJtagOrOtg||void 0===this._isUsbJtagOrOtg))}async resetInConsoleMode(){if(this._parent)return await this._parent.resetInConsoleMode();if(!this.isConsoleResetSupported())return void this.logger.debug("Console reset not supported for ESP32-S2 USB-JTAG/CDC");const t=!0===this.port.isWebUSB;try{this.logger.debug("Resetting device in console mode"),t?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),this.logger.debug("Device reset complete")}catch(t){throw this.logger.error(`Reset failed: ${t}`),t}}async drainInputBuffer(t=200){await r(t);let e=0;const i=Date.now();for(;e<112&&Date.now()-i<100;)if(this._inputBufferAvailable>0){void 0!==this._readByte()&&e++}else await r(1);e>0&&this.logger.debug(`Drained ${e} bytes from input buffer`),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0)}async flushSerialBuffers(){this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),await r(nt),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),this.logger.debug("Serial buffers flushed")}async readFlash(e,i,s,a){if(!this.IS_STUB)throw new Error("Reading flash is only supported in stub mode. Please run runStub() first.");let n;await this.flushSerialBuffers(),this.logger.log(`Reading ${i} bytes from flash at address 0x${e.toString(16)}...`),this.isWebUSB()&&(this._isCDCDevice?(this._adaptiveBlockMultiplier=8,this._adaptiveMaxInFlightMultiplier=8,this._consecutiveSuccessfulChunks=0,this.logger.debug(`CDC device - Initialized: blockMultiplier=${this._adaptiveBlockMultiplier}, maxInFlightMultiplier=${this._adaptiveMaxInFlightMultiplier}`)):(this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0,this.logger.debug("Non-CDC device - Fixed values: blockSize=31, maxInFlight=31"))),void 0!==(null==a?void 0:a.chunkSize)?(n=a.chunkSize,this.logger.log(`Using custom chunk size: 0x${n.toString(16)} bytes`)):n=this.isWebUSB()?16384:262144;let h=new Uint8Array(0),o=e,l=i;for(;l>0;){const e=Math.min(n,l);let d=!1,c=0;const u=5;let g=!1;for(;!d&&c<=u;){let i=new Uint8Array(0),s=0;try{let n,l;if(0===c&&this.logger.debug(`Reading chunk at 0x${o.toString(16)}, size: 0x${e.toString(16)}`),void 0!==(null==a?void 0:a.blockSize)&&void 0!==(null==a?void 0:a.maxInFlight))n=a.blockSize,l=a.maxInFlight,0===c&&this.logger.debug(`Using custom parameters: blockSize=${n}, maxInFlight=${l}`);else if(this.isWebUSB()){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2);n=e*this._adaptiveBlockMultiplier,l=e*this._adaptiveMaxInFlightMultiplier}else{const t=63;n=65*t,l=130*t}const u=Ri("<IIII",o,e,n,l),[g]=await this.checkCommand(210,u);if(0!=g)throw new Error("Failed to read memory: "+g);for(;i.length<e;){let a;try{a=await this.readPacket(100)}catch(t){if(t instanceof ut){this.logger.debug(`SLIP read error at ${i.length} bytes: ${t.message}`);try{const t=[this.SLIP_END,this.SLIP_END];await this.writeToStream(t),this.logger.debug("Sent abort frame to stub"),await r(50)}catch(t){this.logger.debug(`Abort frame error: ${t}`)}if(await this.drainInputBuffer(200),i.length>=e)break}throw t}if(a&&a.length>0){const r=new Uint8Array(a),n=new Uint8Array(i.length+r.length);n.set(i),n.set(r,i.length),i=n;if(i.length>=e||i.length>=s+l){const e=Ri("<I",i.length),a=t(e);await this.writeToStream(a),s=i.length}}}const _=new Uint8Array(h.length+i.length);if(_.set(h),_.set(i,h.length),h=_,d=!0,this.isWebUSB()&&this._isCDCDevice&&0===c&&(this._consecutiveSuccessfulChunks++,this._consecutiveSuccessfulChunks>=2)){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=8,s=8;let a=!1;if(this._adaptiveBlockMultiplier<i?(this._adaptiveBlockMultiplier=Math.min(2*this._adaptiveBlockMultiplier,i),a=!0):this._adaptiveMaxInFlightMultiplier<s&&(this._adaptiveMaxInFlightMultiplier=Math.min(2*this._adaptiveMaxInFlightMultiplier,s),a=!0),a){const t=e*this._adaptiveBlockMultiplier,i=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Speed increased: blockSize=${t}, maxInFlight=${i}`),this._lastAdaptiveAdjustment=Date.now()}this._consecutiveSuccessfulChunks=0}}catch(t){if(c++,this.isWebUSB()&&this._isCDCDevice&&1===c)if(this._adaptiveBlockMultiplier>1||this._adaptiveMaxInFlightMultiplier>1){this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0;const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=e*this._adaptiveBlockMultiplier,s=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Error at higher speed - reduced to minimum: blockSize=${i}, maxInFlight=${s}`)}else this.logger.debug("Error at minimum speed (blockSize=31, maxInFlight=31) - not a speed issue");if(!(t instanceof ut))throw t;if(c<=u){this.logger.debug(`${t.message} at 0x${o.toString(16)}. Draining buffer and retrying (attempt ${c}/${u})...`);try{await this.drainInputBuffer(200),await this.flushSerialBuffers(),await r(nt)}catch(t){this.logger.debug(`Buffer drain error: ${t}`)}}else{if(g)throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery attempt`);g=!0,this.logger.log(`All retries exhausted at 0x${o.toString(16)}. Attempting recovery (close and reopen port)...`);try{await this.reconnect(),this.logger.log("Deep recovery successful. Resuming read from current position..."),c=0;continue}catch(t){throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery failed: ${t}`)}}}}s&&s(new Uint8Array(e),h.length,i),o+=e,l-=e,this.logger.debug(`Total progress: 0x${h.length.toString(16)} from 0x${i.toString(16)} bytes`)}return h}}class Ui extends vi{constructor(){super(...arguments),this.IS_STUB=!0}async memBegin(t,e,i,a){const r=await gt(this.chipFamily,this.chipRevision);if(null===r)return[0,[]];const n=a,h=a+t;this.logger.debug(`Load range: ${s(n,8)}-${s(h,8)}`),this.logger.debug(`Stub data: ${s(r.data_start,8)}, len: ${r.data.length}, text: ${s(r.text_start,8)}, len: ${r.text.length}`);for(const[t,e]of[[r.data_start,r.data_start+r.data.length],[r.text_start,r.text_start+r.text.length]])if(n<e&&h>t)throw new Error("Software loader is resident at "+s(t,8)+"-"+s(e,8)+". Can't load binary at overlapping address range "+s(n,8)+"-"+s(h,8)+". Try changing the binary loading address.");return[0,[]]}async eraseFlash(){await this.checkCommand(208,[],0,at)}async eraseRegion(t,e){if(t<0)throw new Error(`Invalid offset: ${t} (must be non-negative)`);if(e<0)throw new Error(`Invalid size: ${e} (must be non-negative)`);if(0===e)return void this.logger.log("eraseRegion: size is 0, skipping erase");if(t%h!==0)throw new Error(`Offset ${t} (0x${t.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);if(e%h!==0)throw new Error(`Size ${e} (0x${e.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);const i=4294967295;if(t>i)throw new Error(`Offset ${t} exceeds maximum value 4294967295`);if(e>i)throw new Error(`Size ${e} exceeds maximum value 4294967295`);if(t+e>i)throw new Error(`Region end (offset + size = ${t+e}) exceeds maximum addressable range 4294967295`);const s=dt(ht,e),a=Ri("<II",t,e);await this.checkCommand(209,a,0,s)}}const Ti=async t=>{let e;const i=globalThis.requestSerialPort;if("function"==typeof i)e=await i();else{if(!navigator.serial)throw new Error("Web Serial API is not supported in this browser. Please use Chrome, Edge, or Opera on desktop, or Chrome on Android. Note: The page must be served over HTTPS or localhost.");e=await navigator.serial.requestPort()}return e.readable&&e.writable||await e.open({baudRate:o}),new vi(e,t)},Ii=async(t,e)=>{if(!t)throw new Error("Port is required");return t.readable&&t.writable||await t.open({baudRate:o}),new vi(t,e)};export{at as CHIP_ERASE_TIMEOUT,m as CHIP_FAMILY_ESP32,y as CHIP_FAMILY_ESP32C2,R as CHIP_FAMILY_ESP32C3,B as CHIP_FAMILY_ESP32C5,v as CHIP_FAMILY_ESP32C6,U as CHIP_FAMILY_ESP32C61,T as CHIP_FAMILY_ESP32H2,C as CHIP_FAMILY_ESP32H21,I as CHIP_FAMILY_ESP32H4,D as CHIP_FAMILY_ESP32P4,b as CHIP_FAMILY_ESP32S2,S as CHIP_FAMILY_ESP32S3,x as CHIP_FAMILY_ESP32S31,w as CHIP_FAMILY_ESP8266,st as DEFAULT_TIMEOUT,ht as ERASE_REGION_TIMEOUT_PER_MB,vi as ESPLoader,H as ESP_CHANGE_BAUDRATE,K as ESP_CHECKSUM_MAGIC,N as ESP_ERASE_FLASH,V as ESP_ERASE_REGION,O as ESP_FLASH_BEGIN,E as ESP_FLASH_DATA,Y as ESP_FLASH_DEFL_BEGIN,X as ESP_FLASH_DEFL_DATA,Q as ESP_FLASH_DEFL_END,W as ESP_FLASH_END,q as ESP_GET_SECURITY_INFO,z as ESP_MEM_BEGIN,$ as ESP_MEM_DATA,A as ESP_MEM_END,it as ESP_RAM_BLOCK,J as ESP_READ_FLASH,L as ESP_READ_REG,G as ESP_SPI_ATTACH,j as ESP_SPI_FLASH_MD5,Z as ESP_SPI_SET_PARAMS,P as ESP_SYNC,M as ESP_WRITE_REG,lt as FLASH_READ_TIMEOUT,rt as MAX_TIMEOUT,ot as MEM_END_ROM_TIMEOUT,tt as ROM_INVALID_RECV_MSG,nt as SYNC_TIMEOUT,et as USB_RAM_BLOCK,Ti as connect,Ii as connectWithPort,a as formatMacAddr,i as hexFormatter,r as sleep,s as toHex};
|
package/js/modules/esptool.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const t=t=>{let e=[192];for(const i of t)219==i?e=e.concat([219,221]):192==i?e=e.concat([219,220]):e.push(i);return e.push(192),e},e=t=>{const e=[];for(let i=0;i<t.length;i++){const s=t.charCodeAt(i);s<=255&&e.push(s)}return e},i=t=>"["+t.map(t=>s(t)).join(", ")+"]",s=(t,e=2)=>{const i=t.toString(16).toUpperCase();return i.startsWith("-")?"-0x"+i.substring(1).padStart(e,"0"):"0x"+i.padStart(e,"0")},a=t=>t.map(t=>t.toString(16).toUpperCase().padStart(2,"0")).join(":"),r=t=>new Promise(e=>setTimeout(e,t)),n={18:"256KB",19:"512KB",20:"1MB",21:"2MB",22:"4MB",23:"8MB",24:"16MB",25:"32MB",26:"64MB",27:"128MB",28:"256MB",32:"64MB",33:"128MB",34:"256MB",50:"256KB",51:"512KB",52:"1MB",53:"2MB",54:"4MB",55:"8MB",56:"16MB",57:"32MB",58:"64MB"},h=4096,o=115200,l=1061191976,d=1610645804,c=1070526796,u=1610647552,g=1343410176,_=1341390536,f=1341914824,p=e(" UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU"),w=33382,m=50,b=12882,S=12883,y=12994,R=12995,B=12997,v=12998,U=207969,T=12914,I=12916,C=12917,D=12928,x=12849,k={5:{name:"ESP32-C3",family:R},9:{name:"ESP32-S3",family:S},12:{name:"ESP32-C2",family:y},13:{name:"ESP32-C6",family:v},16:{name:"ESP32-H2",family:T},18:{name:"ESP32-P4",family:D},20:{name:"ESP32-C61",family:U},23:{name:"ESP32-C5",family:B},25:{name:"ESP32-H21",family:C},28:{name:"ESP32-H4",family:I},32:{name:"ESP32-S31",family:x}},F={4293968129:{name:"ESP8266",family:w},15736195:{name:"ESP32",family:m},1990:{name:"ESP32-S2",family:b}},O=2,E=3,W=4,z=5,A=6,$=7,P=8,M=9,L=10,N=208,V=209,J=210,Z=11,G=13,H=15,j=19,q=20,K=239,Y=16,X=17,Q=18,tt=5,et=2048,it=6144,st=3e3,at=15e4,rt=3e5,nt=100,ht=3e4,ot=500,lt=100,dt=(t,e)=>{const i=Math.floor(t*(e/486));return i<st?st:i},ct=t=>{switch(t){case m:return{regBase:1072963584,baseFuse:1073061888,macFuse:1073061888,usrOffs:28,usr1Offs:32,usr2Offs:36,mosiDlenOffs:40,misoDlenOffs:44,w0Offs:128,uartDateReg:1610612856,flashOffs:4096};case b:return{regBase:1061167104,baseFuse:1061265408,macFuse:1061265476,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612856,flashOffs:4096};case S:return{regBase:1610620928,usrOffs:24,baseFuse:1610641408,macFuse:1610641476,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612864,flashOffs:0};case w:return{regBase:1610613248,usrOffs:28,baseFuse:1072693328,macFuse:1072693328,usr1Offs:32,usr2Offs:36,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:64,uartDateReg:1610612856,flashOffs:0};case y:return{regBase:1610620928,baseFuse:u,macFuse:1610647616,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case R:return{regBase:1610620928,baseFuse:1610647552,macFuse:1610647620,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case B:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:8192};case v:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case U:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case T:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case I:return{regBase:1611239424,baseFuse:1611339776,macFuse:1611339844,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610686588,flashOffs:8192};case C:return{regBase:1610625024,baseFuse:1611350016,macFuse:1611350084,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case D:return{regBase:1342754816,baseFuse:g,macFuse:1343410244,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1343004812,flashOffs:8192};case x:return{regBase:542113792,baseFuse:544296960,macFuse:544297028,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:540582028,flashOffs:8192};default:return{regBase:-1,baseFuse:-1,macFuse:-1,usrOffs:-1,usr1Offs:-1,usr2Offs:-1,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:-1,uartDateReg:-1,flashOffs:-1}}};class ut extends Error{constructor(t){super(t),this.name="SlipReadError"}}const gt=async(t,i)=>{let s;if(t==I||t==C||t==x)return null;if(t==m)s=await import("./esp32-BRKoi17y.js");else if(t==b)s=await import("./esp32s2-iX3WoDbg.js");else if(t==S)s=await import("./esp32s3-DGwDVIgz.js");else if(t==w)s=await import("./esp8266-CUwxJpGa.js");else if(t==y)s=await import("./esp32c2-Btgr_lwh.js");else if(t==R)s=await import("./esp32c3-CHKfoI8W.js");else if(t==B)s=await import("./esp32c5-BDW4KtLo.js");else if(t==v)s=await import("./esp32c6-il8tTxAG.js");else if(t==U)s=await import("./esp32c61-thKzxBGf.js");else if(t==T)s=await import("./esp32h2-CxoUHv_P.js");else{if(t!=D)return null;s=null!=i&&i>=300?await import("./esp32p4r3-CqI71ojR.js"):await import("./esp32p4-D3jLP-jY.js")}return{...s,text:e(atob(s.text)),data:e(atob(s.data))}};function _t(t){let e=t.length;for(;--e>=0;)t[e]=0}const ft=256,pt=286,wt=30,mt=15,bt=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),St=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),yt=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),Rt=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Bt=new Array(576);_t(Bt);const vt=new Array(60);_t(vt);const Ut=new Array(512);_t(Ut);const Tt=new Array(256);_t(Tt);const It=new Array(29);_t(It);const Ct=new Array(wt);function Dt(t,e,i,s,a){this.static_tree=t,this.extra_bits=e,this.extra_base=i,this.elems=s,this.max_length=a,this.has_stree=t&&t.length}let xt,kt,Ft;function Ot(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}_t(Ct);const Et=t=>t<256?Ut[t]:Ut[256+(t>>>7)],Wt=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},zt=(t,e,i)=>{t.bi_valid>16-i?(t.bi_buf|=e<<t.bi_valid&65535,Wt(t,t.bi_buf),t.bi_buf=e>>16-t.bi_valid,t.bi_valid+=i-16):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=i)},At=(t,e,i)=>{zt(t,i[2*e],i[2*e+1])},$t=(t,e)=>{let i=0;do{i|=1&t,t>>>=1,i<<=1}while(--e>0);return i>>>1},Pt=(t,e,i)=>{const s=new Array(16);let a,r,n=0;for(a=1;a<=mt;a++)n=n+i[a-1]<<1,s[a]=n;for(r=0;r<=e;r++){let e=t[2*r+1];0!==e&&(t[2*r]=$t(s[e]++,e))}},Mt=t=>{let e;for(e=0;e<pt;e++)t.dyn_ltree[2*e]=0;for(e=0;e<wt;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},Lt=t=>{t.bi_valid>8?Wt(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},Nt=(t,e,i,s)=>{const a=2*e,r=2*i;return t[a]<t[r]||t[a]===t[r]&&s[e]<=s[i]},Vt=(t,e,i)=>{const s=t.heap[i];let a=i<<1;for(;a<=t.heap_len&&(a<t.heap_len&&Nt(e,t.heap[a+1],t.heap[a],t.depth)&&a++,!Nt(e,s,t.heap[a],t.depth));)t.heap[i]=t.heap[a],i=a,a<<=1;t.heap[i]=s},Jt=(t,e,i)=>{let s,a,r,n,h=0;if(0!==t.sym_next)do{s=255&t.pending_buf[t.sym_buf+h++],s+=(255&t.pending_buf[t.sym_buf+h++])<<8,a=t.pending_buf[t.sym_buf+h++],0===s?At(t,a,e):(r=Tt[a],At(t,r+ft+1,e),n=bt[r],0!==n&&(a-=It[r],zt(t,a,n)),s--,r=Et(s),At(t,r,i),n=St[r],0!==n&&(s-=Ct[r],zt(t,s,n)))}while(h<t.sym_next);At(t,256,e)},Zt=(t,e)=>{const i=e.dyn_tree,s=e.stat_desc.static_tree,a=e.stat_desc.has_stree,r=e.stat_desc.elems;let n,h,o,l=-1;for(t.heap_len=0,t.heap_max=573,n=0;n<r;n++)0!==i[2*n]?(t.heap[++t.heap_len]=l=n,t.depth[n]=0):i[2*n+1]=0;for(;t.heap_len<2;)o=t.heap[++t.heap_len]=l<2?++l:0,i[2*o]=1,t.depth[o]=0,t.opt_len--,a&&(t.static_len-=s[2*o+1]);for(e.max_code=l,n=t.heap_len>>1;n>=1;n--)Vt(t,i,n);o=r;do{n=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Vt(t,i,1),h=t.heap[1],t.heap[--t.heap_max]=n,t.heap[--t.heap_max]=h,i[2*o]=i[2*n]+i[2*h],t.depth[o]=(t.depth[n]>=t.depth[h]?t.depth[n]:t.depth[h])+1,i[2*n+1]=i[2*h+1]=o,t.heap[1]=o++,Vt(t,i,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const i=e.dyn_tree,s=e.max_code,a=e.stat_desc.static_tree,r=e.stat_desc.has_stree,n=e.stat_desc.extra_bits,h=e.stat_desc.extra_base,o=e.stat_desc.max_length;let l,d,c,u,g,_,f=0;for(u=0;u<=mt;u++)t.bl_count[u]=0;for(i[2*t.heap[t.heap_max]+1]=0,l=t.heap_max+1;l<573;l++)d=t.heap[l],u=i[2*i[2*d+1]+1]+1,u>o&&(u=o,f++),i[2*d+1]=u,d>s||(t.bl_count[u]++,g=0,d>=h&&(g=n[d-h]),_=i[2*d],t.opt_len+=_*(u+g),r&&(t.static_len+=_*(a[2*d+1]+g)));if(0!==f){do{for(u=o-1;0===t.bl_count[u];)u--;t.bl_count[u]--,t.bl_count[u+1]+=2,t.bl_count[o]--,f-=2}while(f>0);for(u=o;0!==u;u--)for(d=t.bl_count[u];0!==d;)c=t.heap[--l],c>s||(i[2*c+1]!==u&&(t.opt_len+=(u-i[2*c+1])*i[2*c],i[2*c+1]=u),d--)}})(t,e),Pt(i,l,t.bl_count)},Gt=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),e[2*(i+1)+1]=65535,s=0;s<=i;s++)a=n,n=e[2*(s+1)+1],++h<o&&a===n||(h<l?t.bl_tree[2*a]+=h:0!==a?(a!==r&&t.bl_tree[2*a]++,t.bl_tree[32]++):h<=10?t.bl_tree[34]++:t.bl_tree[36]++,h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4))},Ht=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),s=0;s<=i;s++)if(a=n,n=e[2*(s+1)+1],!(++h<o&&a===n)){if(h<l)do{At(t,a,t.bl_tree)}while(0!==--h);else 0!==a?(a!==r&&(At(t,a,t.bl_tree),h--),At(t,16,t.bl_tree),zt(t,h-3,2)):h<=10?(At(t,17,t.bl_tree),zt(t,h-3,3)):(At(t,18,t.bl_tree),zt(t,h-11,7));h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4)}};let jt=!1;const qt=(t,e,i,s)=>{zt(t,0+(s?1:0),3),Lt(t),Wt(t,i),Wt(t,~i),i&&t.pending_buf.set(t.window.subarray(e,e+i),t.pending),t.pending+=i};var Kt=(t,e,i,s)=>{let a,r,n=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,i=4093624447;for(e=0;e<=31;e++,i>>>=1)if(1&i&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<ft;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),Zt(t,t.l_desc),Zt(t,t.d_desc),n=(t=>{let e;for(Gt(t,t.dyn_ltree,t.l_desc.max_code),Gt(t,t.dyn_dtree,t.d_desc.max_code),Zt(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*Rt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),a=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=a&&(a=r)):a=r=i+5,i+4<=a&&-1!==e?qt(t,e,i,s):4===t.strategy||r===a?(zt(t,2+(s?1:0),3),Jt(t,Bt,vt)):(zt(t,4+(s?1:0),3),((t,e,i,s)=>{let a;for(zt(t,e-257,5),zt(t,i-1,5),zt(t,s-4,4),a=0;a<s;a++)zt(t,t.bl_tree[2*Rt[a]+1],3);Ht(t,t.dyn_ltree,e-1),Ht(t,t.dyn_dtree,i-1)})(t,t.l_desc.max_code+1,t.d_desc.max_code+1,n+1),Jt(t,t.dyn_ltree,t.dyn_dtree)),Mt(t),s&&Lt(t)},Yt={_tr_init:t=>{jt||((()=>{let t,e,i,s,a;const r=new Array(16);for(i=0,s=0;s<28;s++)for(It[s]=i,t=0;t<1<<bt[s];t++)Tt[i++]=s;for(Tt[i-1]=s,a=0,s=0;s<16;s++)for(Ct[s]=a,t=0;t<1<<St[s];t++)Ut[a++]=s;for(a>>=7;s<wt;s++)for(Ct[s]=a<<7,t=0;t<1<<St[s]-7;t++)Ut[256+a++]=s;for(e=0;e<=mt;e++)r[e]=0;for(t=0;t<=143;)Bt[2*t+1]=8,t++,r[8]++;for(;t<=255;)Bt[2*t+1]=9,t++,r[9]++;for(;t<=279;)Bt[2*t+1]=7,t++,r[7]++;for(;t<=287;)Bt[2*t+1]=8,t++,r[8]++;for(Pt(Bt,287,r),t=0;t<wt;t++)vt[2*t+1]=5,vt[2*t]=$t(t,5);xt=new Dt(Bt,bt,257,pt,mt),kt=new Dt(vt,St,0,wt,mt),Ft=new Dt(new Array(0),yt,0,19,7)})(),jt=!0),t.l_desc=new Ot(t.dyn_ltree,xt),t.d_desc=new Ot(t.dyn_dtree,kt),t.bl_desc=new Ot(t.bl_tree,Ft),t.bi_buf=0,t.bi_valid=0,Mt(t)},_tr_stored_block:qt,_tr_flush_block:Kt,_tr_tally:(t,e,i)=>(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=i,0===e?t.dyn_ltree[2*i]++:(t.matches++,e--,t.dyn_ltree[2*(Tt[i]+ft+1)]++,t.dyn_dtree[2*Et(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{zt(t,2,3),At(t,256,Bt),(t=>{16===t.bi_valid?(Wt(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}};var Xt=(t,e,i,s)=>{let a=65535&t,r=t>>>16&65535,n=0;for(;0!==i;){n=i>2e3?2e3:i,i-=n;do{a=a+e[s++]|0,r=r+a|0}while(--n);a%=65521,r%=65521}return a|r<<16};const Qt=new Uint32Array((()=>{let t,e=[];for(var i=0;i<256;i++){t=i;for(var s=0;s<8;s++)t=1&t?3988292384^t>>>1:t>>>1;e[i]=t}return e})());var te=(t,e,i,s)=>{const a=Qt,r=s+i;t^=-1;for(let i=s;i<r;i++)t=t>>>8^a[255&(t^e[i])];return-1^t},ee={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},ie={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_OK:0,Z_STREAM_END:1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:se,_tr_stored_block:ae,_tr_flush_block:re,_tr_tally:ne,_tr_align:he}=Yt,{Z_NO_FLUSH:oe,Z_PARTIAL_FLUSH:le,Z_FULL_FLUSH:de,Z_FINISH:ce,Z_BLOCK:ue,Z_OK:ge,Z_STREAM_END:_e,Z_STREAM_ERROR:fe,Z_DATA_ERROR:pe,Z_BUF_ERROR:we,Z_DEFAULT_COMPRESSION:me,Z_FILTERED:be,Z_HUFFMAN_ONLY:Se,Z_RLE:ye,Z_FIXED:Re,Z_DEFAULT_STRATEGY:Be,Z_UNKNOWN:ve,Z_DEFLATED:Ue}=ie,Te=258,Ie=262,Ce=42,De=113,xe=666,ke=(t,e)=>(t.msg=ee[e],e),Fe=t=>2*t-(t>4?9:0),Oe=t=>{let e=t.length;for(;--e>=0;)t[e]=0},Ee=t=>{let e,i,s,a=t.w_size;e=t.hash_size,s=e;do{i=t.head[--s],t.head[s]=i>=a?i-a:0}while(--e);e=a,s=e;do{i=t.prev[--s],t.prev[s]=i>=a?i-a:0}while(--e)};let We=(t,e,i)=>(e<<t.hash_shift^i)&t.hash_mask;const ze=t=>{const e=t.state;let i=e.pending;i>t.avail_out&&(i=t.avail_out),0!==i&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+i),t.next_out),t.next_out+=i,e.pending_out+=i,t.total_out+=i,t.avail_out-=i,e.pending-=i,0===e.pending&&(e.pending_out=0))},Ae=(t,e)=>{re(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,ze(t.strm)},$e=(t,e)=>{t.pending_buf[t.pending++]=e},Pe=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},Me=(t,e,i,s)=>{let a=t.avail_in;return a>s&&(a=s),0===a?0:(t.avail_in-=a,e.set(t.input.subarray(t.next_in,t.next_in+a),i),1===t.state.wrap?t.adler=Xt(t.adler,e,a,i):2===t.state.wrap&&(t.adler=te(t.adler,e,a,i)),t.next_in+=a,t.total_in+=a,a)},Le=(t,e)=>{let i,s,a=t.max_chain_length,r=t.strstart,n=t.prev_length,h=t.nice_match;const o=t.strstart>t.w_size-Ie?t.strstart-(t.w_size-Ie):0,l=t.window,d=t.w_mask,c=t.prev,u=t.strstart+Te;let g=l[r+n-1],_=l[r+n];t.prev_length>=t.good_match&&(a>>=2),h>t.lookahead&&(h=t.lookahead);do{if(i=e,l[i+n]===_&&l[i+n-1]===g&&l[i]===l[r]&&l[++i]===l[r+1]){r+=2,i++;do{}while(l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&r<u);if(s=Te-(u-r),r=u-Te,s>n){if(t.match_start=e,n=s,s>=h)break;g=l[r+n-1],_=l[r+n]}}}while((e=c[e&d])>o&&0!==--a);return n<=t.lookahead?n:t.lookahead},Ne=t=>{const e=t.w_size;let i,s,a;do{if(s=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Ie)&&(t.window.set(t.window.subarray(e,e+e-s),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),Ee(t),s+=e),0===t.strm.avail_in)break;if(i=Me(t.strm,t.window,t.strstart+t.lookahead,s),t.lookahead+=i,t.lookahead+t.insert>=3)for(a=t.strstart-t.insert,t.ins_h=t.window[a],t.ins_h=We(t,t.ins_h,t.window[a+1]);t.insert&&(t.ins_h=We(t,t.ins_h,t.window[a+3-1]),t.prev[a&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=a,a++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<Ie&&0!==t.strm.avail_in)},Ve=(t,e)=>{let i,s,a,r=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,n=0,h=t.strm.avail_in;do{if(i=65535,a=t.bi_valid+42>>3,t.strm.avail_out<a)break;if(a=t.strm.avail_out-a,s=t.strstart-t.block_start,i>s+t.strm.avail_in&&(i=s+t.strm.avail_in),i>a&&(i=a),i<r&&(0===i&&e!==ce||e===oe||i!==s+t.strm.avail_in))break;n=e===ce&&i===s+t.strm.avail_in?1:0,ae(t,0,0,n),t.pending_buf[t.pending-4]=i,t.pending_buf[t.pending-3]=i>>8,t.pending_buf[t.pending-2]=~i,t.pending_buf[t.pending-1]=~i>>8,ze(t.strm),s&&(s>i&&(s=i),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+s),t.strm.next_out),t.strm.next_out+=s,t.strm.avail_out-=s,t.strm.total_out+=s,t.block_start+=s,i-=s),i&&(Me(t.strm,t.strm.output,t.strm.next_out,i),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i)}while(0===n);return h-=t.strm.avail_in,h&&(h>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=h&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-h,t.strm.next_in),t.strstart),t.strstart+=h,t.insert+=h>t.w_size-t.insert?t.w_size-t.insert:h),t.block_start=t.strstart),t.high_water<t.strstart&&(t.high_water=t.strstart),n?4:e!==oe&&e!==ce&&0===t.strm.avail_in&&t.strstart===t.block_start?2:(a=t.window_size-t.strstart,t.strm.avail_in>a&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,a+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),a>t.strm.avail_in&&(a=t.strm.avail_in),a&&(Me(t.strm,t.window,t.strstart,a),t.strstart+=a,t.insert+=a>t.w_size-t.insert?t.w_size-t.insert:a),t.high_water<t.strstart&&(t.high_water=t.strstart),a=t.bi_valid+42>>3,a=t.pending_buf_size-a>65535?65535:t.pending_buf_size-a,r=a>t.w_size?t.w_size:a,s=t.strstart-t.block_start,(s>=r||(s||e===ce)&&e!==oe&&0===t.strm.avail_in&&s<=a)&&(i=s>a?a:s,n=e===ce&&0===t.strm.avail_in&&i===s?1:0,ae(t,t.block_start,i,n),t.block_start+=i,ze(t.strm)),n?3:1)},Je=(t,e)=>{let i,s;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==i&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i)),t.match_length>=3)if(s=ne(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!==--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=We(t,t.ins_h,t.window[t.strstart+1]);else s=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(s&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2},Ze=(t,e)=>{let i,s,a;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==i&&t.prev_length<t.max_lazy_match&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i),t.match_length<=5&&(t.strategy===be||3===t.match_length&&t.strstart-t.match_start>4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){a=t.strstart+t.lookahead-3,s=ne(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=a&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!==--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,s&&(Ae(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(s=ne(t,0,t.window[t.strstart-1]),s&&Ae(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(s=ne(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2};function Ge(t,e,i,s,a){this.good_length=t,this.max_lazy=e,this.nice_length=i,this.max_chain=s,this.func=a}const He=[new Ge(0,0,0,0,Ve),new Ge(4,4,8,4,Je),new Ge(4,5,16,8,Je),new Ge(4,6,32,32,Je),new Ge(4,4,16,16,Ze),new Ge(8,16,32,32,Ze),new Ge(8,16,128,128,Ze),new Ge(8,32,128,256,Ze),new Ge(32,128,258,1024,Ze),new Ge(32,258,258,4096,Ze)];function je(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Ue,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),Oe(this.dyn_ltree),Oe(this.dyn_dtree),Oe(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),Oe(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),Oe(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const qe=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==Ce&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==De&&e.status!==xe?1:0},Ke=t=>{if(qe(t))return ke(t,fe);t.total_in=t.total_out=0,t.data_type=ve;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?Ce:De,t.adler=2===e.wrap?0:1,e.last_flush=-2,se(e),ge},Ye=t=>{const e=Ke(t);var i;return e===ge&&((i=t.state).window_size=2*i.w_size,Oe(i.head),i.max_lazy_match=He[i.level].max_lazy,i.good_match=He[i.level].good_length,i.nice_match=He[i.level].nice_length,i.max_chain_length=He[i.level].max_chain,i.strstart=0,i.block_start=0,i.lookahead=0,i.insert=0,i.match_length=i.prev_length=2,i.match_available=0,i.ins_h=0),e},Xe=(t,e,i,s,a,r)=>{if(!t)return fe;let n=1;if(e===me&&(e=6),s<0?(n=0,s=-s):s>15&&(n=2,s-=16),a<1||a>9||i!==Ue||s<8||s>15||e<0||e>9||r<0||r>Re||8===s&&1!==n)return ke(t,fe);8===s&&(s=9);const h=new je;return t.state=h,h.strm=t,h.status=Ce,h.wrap=n,h.gzhead=null,h.w_bits=s,h.w_size=1<<h.w_bits,h.w_mask=h.w_size-1,h.hash_bits=a+7,h.hash_size=1<<h.hash_bits,h.hash_mask=h.hash_size-1,h.hash_shift=~~((h.hash_bits+3-1)/3),h.window=new Uint8Array(2*h.w_size),h.head=new Uint16Array(h.hash_size),h.prev=new Uint16Array(h.w_size),h.lit_bufsize=1<<a+6,h.pending_buf_size=4*h.lit_bufsize,h.pending_buf=new Uint8Array(h.pending_buf_size),h.sym_buf=h.lit_bufsize,h.sym_end=3*(h.lit_bufsize-1),h.level=e,h.strategy=r,h.method=i,Ye(t)};var Qe={deflateInit:(t,e)=>Xe(t,e,Ue,15,8,Be),deflateInit2:Xe,deflateReset:Ye,deflateResetKeep:Ke,deflateSetHeader:(t,e)=>qe(t)||2!==t.state.wrap?fe:(t.state.gzhead=e,ge),deflate:(t,e)=>{if(qe(t)||e>ue||e<0)return t?ke(t,fe):fe;const i=t.state;if(!t.output||0!==t.avail_in&&!t.input||i.status===xe&&e!==ce)return ke(t,0===t.avail_out?we:fe);const s=i.last_flush;if(i.last_flush=e,0!==i.pending){if(ze(t),0===t.avail_out)return i.last_flush=-1,ge}else if(0===t.avail_in&&Fe(e)<=Fe(s)&&e!==ce)return ke(t,we);if(i.status===xe&&0!==t.avail_in)return ke(t,we);if(i.status===Ce&&0===i.wrap&&(i.status=De),i.status===Ce){let e=Ue+(i.w_bits-8<<4)<<8,s=-1;if(s=i.strategy>=Se||i.level<2?0:i.level<6?1:6===i.level?2:3,e|=s<<6,0!==i.strstart&&(e|=32),e+=31-e%31,Pe(i,e),0!==i.strstart&&(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),t.adler=1,i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(57===i.status)if(t.adler=0,$e(i,31),$e(i,139),$e(i,8),i.gzhead)$e(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),$e(i,255&i.gzhead.time),$e(i,i.gzhead.time>>8&255),$e(i,i.gzhead.time>>16&255),$e(i,i.gzhead.time>>24&255),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&($e(i,255&i.gzhead.extra.length),$e(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=te(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69;else if($e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,3),i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge;if(69===i.status){if(i.gzhead.extra){let e=i.pending,s=(65535&i.gzhead.extra.length)-i.gzindex;for(;i.pending+s>i.pending_buf_size;){let a=i.pending_buf_size-i.pending;if(i.pending_buf.set(i.gzhead.extra.subarray(i.gzindex,i.gzindex+a),i.pending),i.pending=i.pending_buf_size,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex+=a,ze(t),0!==i.pending)return i.last_flush=-1,ge;e=0,s-=a}let a=new Uint8Array(i.gzhead.extra);i.pending_buf.set(a.subarray(i.gzindex,i.gzindex+s),i.pending),i.pending+=s,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex=0}i.status=73}if(73===i.status){if(i.gzhead.name){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),i.gzindex=0}i.status=91}if(91===i.status){if(i.gzhead.comment){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s))}i.status=103}if(103===i.status){if(i.gzhead.hcrc){if(i.pending+2>i.pending_buf_size&&(ze(t),0!==i.pending))return i.last_flush=-1,ge;$e(i,255&t.adler),$e(i,t.adler>>8&255),t.adler=0}if(i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(0!==t.avail_in||0!==i.lookahead||e!==oe&&i.status!==xe){let s=0===i.level?Ve(i,e):i.strategy===Se?((t,e)=>{let i;for(;;){if(0===t.lookahead&&(Ne(t),0===t.lookahead)){if(e===oe)return 1;break}if(t.match_length=0,i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):i.strategy===ye?((t,e)=>{let i,s,a,r;const n=t.window;for(;;){if(t.lookahead<=Te){if(Ne(t),t.lookahead<=Te&&e===oe)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(a=t.strstart-1,s=n[a],s===n[++a]&&s===n[++a]&&s===n[++a])){r=t.strstart+Te;do{}while(s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&a<r);t.match_length=Te-(r-a),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(i=ne(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):He[i.level].func(i,e);if(3!==s&&4!==s||(i.status=xe),1===s||3===s)return 0===t.avail_out&&(i.last_flush=-1),ge;if(2===s&&(e===le?he(i):e!==ue&&(ae(i,0,0,!1),e===de&&(Oe(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),ze(t),0===t.avail_out))return i.last_flush=-1,ge}return e!==ce?ge:i.wrap<=0?_e:(2===i.wrap?($e(i,255&t.adler),$e(i,t.adler>>8&255),$e(i,t.adler>>16&255),$e(i,t.adler>>24&255),$e(i,255&t.total_in),$e(i,t.total_in>>8&255),$e(i,t.total_in>>16&255),$e(i,t.total_in>>24&255)):(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),ze(t),i.wrap>0&&(i.wrap=-i.wrap),0!==i.pending?ge:_e)},deflateEnd:t=>{if(qe(t))return fe;const e=t.state.status;return t.state=null,e===De?ke(t,pe):ge},deflateSetDictionary:(t,e)=>{let i=e.length;if(qe(t))return fe;const s=t.state,a=s.wrap;if(2===a||1===a&&s.status!==Ce||s.lookahead)return fe;if(1===a&&(t.adler=Xt(t.adler,e,i,0)),s.wrap=0,i>=s.w_size){0===a&&(Oe(s.head),s.strstart=0,s.block_start=0,s.insert=0);let t=new Uint8Array(s.w_size);t.set(e.subarray(i-s.w_size,i),0),e=t,i=s.w_size}const r=t.avail_in,n=t.next_in,h=t.input;for(t.avail_in=i,t.next_in=0,t.input=e,Ne(s);s.lookahead>=3;){let t=s.strstart,e=s.lookahead-2;do{s.ins_h=We(s,s.ins_h,s.window[t+3-1]),s.prev[t&s.w_mask]=s.head[s.ins_h],s.head[s.ins_h]=t,t++}while(--e);s.strstart=t,s.lookahead=2,Ne(s)}return s.strstart+=s.lookahead,s.block_start=s.strstart,s.insert=s.lookahead,s.lookahead=0,s.match_length=s.prev_length=2,s.match_available=0,t.next_in=n,t.input=h,t.avail_in=r,s.wrap=a,ge},deflateInfo:"pako deflate (from Nodeca project)"};const ti=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var ei=function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const i=e.shift();if(i){if("object"!=typeof i)throw new TypeError(i+"must be non-object");for(const e in i)ti(i,e)&&(t[e]=i[e])}}return t},ii=t=>{let e=0;for(let i=0,s=t.length;i<s;i++)e+=t[i].length;const i=new Uint8Array(e);for(let e=0,s=0,a=t.length;e<a;e++){let a=t[e];i.set(a,s),s+=a.length}return i};let si=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){si=!1}const ai=new Uint8Array(256);for(let t=0;t<256;t++)ai[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;ai[254]=ai[254]=1;var ri=t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,i,s,a,r,n=t.length,h=0;for(a=0;a<n;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),h+=i<128?1:i<2048?2:i<65536?3:4;for(e=new Uint8Array(h),r=0,a=0;r<h;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),i<128?e[r++]=i:i<2048?(e[r++]=192|i>>>6,e[r++]=128|63&i):i<65536?(e[r++]=224|i>>>12,e[r++]=128|i>>>6&63,e[r++]=128|63&i):(e[r++]=240|i>>>18,e[r++]=128|i>>>12&63,e[r++]=128|i>>>6&63,e[r++]=128|63&i);return e};var ni=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const hi=Object.prototype.toString,{Z_NO_FLUSH:oi,Z_SYNC_FLUSH:li,Z_FULL_FLUSH:di,Z_FINISH:ci,Z_OK:ui,Z_STREAM_END:gi,Z_DEFAULT_COMPRESSION:_i,Z_DEFAULT_STRATEGY:fi,Z_DEFLATED:pi}=ie;function wi(t){this.options=ei({level:_i,method:pi,chunkSize:16384,windowBits:15,memLevel:8,strategy:fi},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new ni,this.strm.avail_out=0;let i=Qe.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(i!==ui)throw new Error(ee[i]);if(e.header&&Qe.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?ri(e.dictionary):"[object ArrayBuffer]"===hi.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,i=Qe.deflateSetDictionary(this.strm,t),i!==ui)throw new Error(ee[i]);this._dict_set=!0}}wi.prototype.push=function(t,e){const i=this.strm,s=this.options.chunkSize;let a,r;if(this.ended)return!1;for(r=e===~~e?e:!0===e?ci:oi,"string"==typeof t?i.input=ri(t):"[object ArrayBuffer]"===hi.call(t)?i.input=new Uint8Array(t):i.input=t,i.next_in=0,i.avail_in=i.input.length;;)if(0===i.avail_out&&(i.output=new Uint8Array(s),i.next_out=0,i.avail_out=s),(r===li||r===di)&&i.avail_out<=6)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else{if(a=Qe.deflate(i,r),a===gi)return i.next_out>0&&this.onData(i.output.subarray(0,i.next_out)),a=Qe.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===ui;if(0!==i.avail_out){if(r>0&&i.next_out>0)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else if(0===i.avail_in)break}else this.onData(i.output)}return!0},wi.prototype.onData=function(t){this.chunks.push(t)},wi.prototype.onEnd=function(t){t===ui&&(this.result=ii(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var mi={deflate:function(t,e){const i=new wi(e);if(i.push(t,!0),i.err)throw i.msg||ee[i.err];return i.result}};const{deflate:bi}=mi;var Si=bi;const yi={b:{u:DataView.prototype.getInt8,p:DataView.prototype.setInt8,bytes:1},B:{u:DataView.prototype.getUint8,p:DataView.prototype.setUint8,bytes:1},h:{u:DataView.prototype.getInt16,p:DataView.prototype.setInt16,bytes:2},H:{u:DataView.prototype.getUint16,p:DataView.prototype.setUint16,bytes:2},i:{u:DataView.prototype.getInt32,p:DataView.prototype.setInt32,bytes:4},I:{u:DataView.prototype.getUint32,p:DataView.prototype.setUint32,bytes:4}},Ri=(t,...e)=>{let i=0;if(t.replace(/[<>]/,"").length!=e.length)throw"Pack format to Argument count mismatch";const s=[];let a=!0;for(let s=0;s<t.length;s++)"<"==t[s]?a=!0:">"==t[s]?a=!1:(r(t[s],e[i]),i++);function r(t,e){if(!(t in yi))throw"Unhandled character '"+t+"' in pack format";const i=yi[t].bytes,r=new DataView(new ArrayBuffer(i));yi[t].p.bind(r)(0,e,a);for(let t=0;t<i;t++)s.push(r.getUint8(t))}return s},Bi=(t,e)=>{let i=0;const s=[];let a=!0;for(const e of t)"<"==e?a=!0:">"==e?a=!1:r(e);function r(t){if(!(t in yi))throw"Unhandled character '"+t+"' in unpack format";const r=yi[t].bytes,n=new DataView(new ArrayBuffer(r));for(let t=0;t<r;t++)n.setUint8(t,255&e[i+t]);const h=yi[t].u.bind(n);s.push(h(0,a)),i+=r}return s};class vi extends EventTarget{get isUsbJtagOrOtg(){return this._parent?this._parent._isUsbJtagOrOtg:this._isUsbJtagOrOtg}constructor(t,e,i){super(),this.port=t,this.logger=e,this._parent=i,this.__chipName=null,this.__chipRevision=null,this.__chipVariant=null,this._efuses=new Array(4).fill(0),this._flashsize=4194304,this.debug=!1,this.IS_STUB=!1,this.connected=!0,this.flashSize=null,this.currentBaudRate=o,this.SLIP_END=192,this.SLIP_ESC=219,this.SLIP_ESC_END=220,this.SLIP_ESC_ESC=221,this._isESP32S2NativeUSB=!1,this._initializationSucceeded=!1,this.__commandLock=Promise.resolve([0,[]]),this.__isReconfiguring=!1,this.__abandonCurrentOperation=!1,this._suppressDisconnect=!1,this.__consoleMode=!1,this._isUsbJtagOrOtg=void 0,this.__adaptiveBlockMultiplier=1,this.__adaptiveMaxInFlightMultiplier=1,this.__consecutiveSuccessfulChunks=0,this.__lastAdaptiveAdjustment=0,this.__isCDCDevice=!1,this.state_DTR=!1,this.state_RTS=!1,this.__writeChain=Promise.resolve()}get chipFamily(){return this._parent?this._parent.chipFamily:this.__chipFamily}set chipFamily(t){this._parent?this._parent.chipFamily=t:this.__chipFamily=t}get chipName(){return this._parent?this._parent.chipName:this.__chipName}set chipName(t){this._parent?this._parent.chipName=t:this.__chipName=t}get chipRevision(){return this._parent?this._parent.chipRevision:this.__chipRevision}set chipRevision(t){this._parent?this._parent.chipRevision=t:this.__chipRevision=t}get chipVariant(){return this._parent?this._parent.chipVariant:this.__chipVariant}set chipVariant(t){this._parent?this._parent.chipVariant=t:this.__chipVariant=t}get _consoleMode(){return this._parent?this._parent._consoleMode:this.__consoleMode}set _consoleMode(t){this._parent?this._parent._consoleMode=t:this.__consoleMode=t}setConsoleMode(t){this._consoleMode=t}get _inputBuffer(){if(this._parent)return this._parent._inputBuffer;if(void 0===this.__inputBuffer)throw new Error("_inputBuffer accessed before initialization");return this.__inputBuffer}get _inputBufferReadIndex(){return this._parent?this._parent._inputBufferReadIndex:this.__inputBufferReadIndex||0}set _inputBufferReadIndex(t){this._parent?this._parent._inputBufferReadIndex=t:this.__inputBufferReadIndex=t}get _inputBufferAvailable(){return this._inputBuffer.length-this._inputBufferReadIndex}_readByte(){if(!(this._inputBufferReadIndex>=this._inputBuffer.length))return this._inputBuffer[this._inputBufferReadIndex++]}_clearInputBuffer(){this._inputBuffer.length=0,this._inputBufferReadIndex=0}_compactInputBuffer(){this._inputBufferReadIndex>1e3&&this._inputBufferReadIndex>this._inputBuffer.length/2&&(this._inputBuffer.splice(0,this._inputBufferReadIndex),this._inputBufferReadIndex=0)}get _totalBytesRead(){return this._parent?this._parent._totalBytesRead:this.__totalBytesRead||0}set _totalBytesRead(t){this._parent?this._parent._totalBytesRead=t:this.__totalBytesRead=t}get _commandLock(){return this._parent?this._parent._commandLock:this.__commandLock}set _commandLock(t){this._parent?this._parent._commandLock=t:this.__commandLock=t}get _isReconfiguring(){return this._parent?this._parent._isReconfiguring:this.__isReconfiguring}set _isReconfiguring(t){this._parent?this._parent._isReconfiguring=t:this.__isReconfiguring=t}get _abandonCurrentOperation(){return this._parent?this._parent._abandonCurrentOperation:this.__abandonCurrentOperation}set _abandonCurrentOperation(t){this._parent?this._parent._abandonCurrentOperation=t:this.__abandonCurrentOperation=t}get _adaptiveBlockMultiplier(){return this._parent?this._parent._adaptiveBlockMultiplier:this.__adaptiveBlockMultiplier}set _adaptiveBlockMultiplier(t){this._parent?this._parent._adaptiveBlockMultiplier=t:this.__adaptiveBlockMultiplier=t}get _adaptiveMaxInFlightMultiplier(){return this._parent?this._parent._adaptiveMaxInFlightMultiplier:this.__adaptiveMaxInFlightMultiplier}set _adaptiveMaxInFlightMultiplier(t){this._parent?this._parent._adaptiveMaxInFlightMultiplier=t:this.__adaptiveMaxInFlightMultiplier=t}get _consecutiveSuccessfulChunks(){return this._parent?this._parent._consecutiveSuccessfulChunks:this.__consecutiveSuccessfulChunks}set _consecutiveSuccessfulChunks(t){this._parent?this._parent._consecutiveSuccessfulChunks=t:this.__consecutiveSuccessfulChunks=t}get _lastAdaptiveAdjustment(){return this._parent?this._parent._lastAdaptiveAdjustment:this.__lastAdaptiveAdjustment}set _lastAdaptiveAdjustment(t){this._parent?this._parent._lastAdaptiveAdjustment=t:this.__lastAdaptiveAdjustment=t}get _isCDCDevice(){return this._parent?this._parent._isCDCDevice:this.__isCDCDevice}set _isCDCDevice(t){this._parent?this._parent._isCDCDevice=t:this.__isCDCDevice=t}detectUSBSerialChip(t,e){const i={6790:{29986:{name:"CH340",maxBaudrate:460800},29987:{name:"CH340",maxBaudrate:460800},30084:{name:"CH340",maxBaudrate:460800},21795:{name:"CH341",maxBaudrate:2e6},21971:{name:"CH343",maxBaudrate:6e6},21972:{name:"CH9102",maxBaudrate:6e6},21976:{name:"CH9101",maxBaudrate:3e6}},4292:{6e4:{name:"CP2102(n)",maxBaudrate:3e6},60016:{name:"CP2105",maxBaudrate:2e6},60017:{name:"CP2108",maxBaudrate:2e6}},1027:{24577:{name:"FT232R",maxBaudrate:3e6},24592:{name:"FT2232",maxBaudrate:3e6},24593:{name:"FT4232",maxBaudrate:3e6},24596:{name:"FT232H",maxBaudrate:12e6},24597:{name:"FT230X",maxBaudrate:3e6}},12346:{2:{name:"ESP32-S2 Native USB",maxBaudrate:2e6},4097:{name:"ESP32 Native USB",maxBaudrate:2e6},4098:{name:"ESP32 Native USB",maxBaudrate:2e6},16386:{name:"ESP32 Native USB",maxBaudrate:2e6},4096:{name:"ESP32 Native USB",maxBaudrate:2e6}}}[t];return i&&i[e]?i[e]:{name:`Unknown (VID: 0x${t.toString(16)}, PID: 0x${e.toString(16)})`}}async initialize(){if(!this._parent){this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0;const t=this.port.getInfo();if(t.usbVendorId&&t.usbProductId){const e=this.detectUSBSerialChip(t.usbVendorId,t.usbProductId);this.logger.log(`USB-Serial: ${e.name} (VID: 0x${t.usbVendorId.toString(16)}, PID: 0x${t.usbProductId.toString(16)})`),e.maxBaudrate&&(this._maxUSBSerialBaudrate=e.maxBaudrate,this.logger.log(`Max baudrate: ${e.maxBaudrate}`)),12346===t.usbVendorId&&2===t.usbProductId&&(this._isESP32S2NativeUSB=!0),(12346===t.usbVendorId||6790===t.usbVendorId&&21971===t.usbProductId)&&(this._isCDCDevice=!0)}this.readLoop()}await this.connectWithResetStrategies(),await this.detectChip();try{this._isUsbJtagOrOtg=await this.detectUsbConnectionType(),this.logger.debug("USB connection type: "+(this._isUsbJtagOrOtg?"USB-JTAG/OTG":"External Serial Chip"))}catch(t){this.logger.debug(`Could not detect USB connection type: ${t}`)}const t=ct(this.getChipFamily()),e=t.macFuse;for(let t=0;t<4;t++)this._efuses[t]=await this.readRegister(e+4*t);this.logger.log(`Chip type ${this.chipName}`),this.logger.debug(`Bootloader flash offset: 0x${t.flashOffs.toString(16)}`),this._initializationSucceeded=!0}async detectChip(){try{const t=(await this.getSecurityInfo()).chipId,e=k[t];if(e)return this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-P4 revision: ${this.chipRevision}`),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-C3 revision: ${this.chipRevision}`)),void this.logger.debug(`Detected chip via IMAGE_CHIP_ID: ${t} (${this.chipName})`);this.logger.debug(`Unknown IMAGE_CHIP_ID: ${t}, falling back to magic value detection`)}catch(t){this.logger.debug(`GET_SECURITY_INFO failed, using magic value detection: ${t}`),await this.drainInputBuffer(200),this._clearInputBuffer(),await r(nt);try{await this.sync()}catch(t){this.logger.debug(`Re-sync after GET_SECURITY_INFO failure: ${t}`)}}const t=await this.readRegister(1073745920),e=F[t>>>0];if(void 0===e)throw new Error(`Unknown Chip: Hex: ${s(t>>>0,8).toLowerCase()} Number: ${t}`);this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision()),this.logger.debug(`Detected chip via magic value: ${s(t>>>0,8)} (${this.chipName})`)}async getChipRevision(){if(this.chipFamily===D){const t=await this.readRegister(1343410252);return 100*((t>>23&1)<<2|t>>4&3)+(15&t)}return this.chipFamily===R?await this.getChipRevisionC3():0}async getSecurityInfo(){const[,t]=await this.checkCommand(20,[],0);if(0===t.length)throw new Error("GET_SECURITY_INFO not supported or returned empty response");if(t.length<12)throw new Error(`Invalid security info response length: ${t.length} (expected at least 12 bytes)`);return{flags:Bi("<I",t.slice(0,4))[0],flashCryptCnt:t[4],keyPurposes:Array.from(t.slice(5,12)),chipId:t.length>=16?Bi("<I",t.slice(12,16))[0]:0,apiVersion:t.length>=20?Bi("<I",t.slice(16,20))[0]:0}}async getMacAddress(){if(!this._initializationSucceeded)throw new Error("getMacAddress() requires initialize() to have completed successfully");return this.macAddr().map(t=>t.toString(16).padStart(2,"0").toUpperCase()).join(":")}async readLoop(){this.debug&&this.logger.debug("Starting read loop"),this._reader=this.port.readable.getReader();try{let t=!0;for(;t;){const{value:e,done:i}=await this._reader.read();if(i){this._reader.releaseLock(),t=!1;break}if(!e||0===e.length)continue;const s=Array.from(e);Array.prototype.push.apply(this._inputBuffer,s),this._totalBytesRead+=e.length}}catch{}finally{if(this._isReconfiguring=!1,this._reader){try{this._reader.releaseLock(),this.logger.debug("Reader released in readLoop cleanup")}catch(t){this.logger.debug(`Reader release error in readLoop: ${t}`)}this._reader=void 0}}this.connected=!1,this._isESP32S2NativeUSB&&!this._initializationSucceeded&&(this.logger.log("ESP32-S2 Native USB detected - requesting port reselection"),this.dispatchEvent(new CustomEvent("esp32s2-usb-reconnect",{detail:{message:"ESP32-S2 Native USB requires port reselection"}}))),this._suppressDisconnect||this.dispatchEvent(new Event("disconnect")),this._suppressDisconnect=!1,this.logger.debug("Finished read loop")}sleep(t=100){return new Promise(e=>setTimeout(e,t))}async setRTS(t){await this.port.setSignals({requestToSend:t}),await this.setDTR(this.state_DTR)}async setDTR(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t})}async setDTRandRTS(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerial(){await this.setRTS(!1),await this.setDTR(!1),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(100),await this.setRTS(!0),await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!1),await this.setRTS(!1),await this.sleep(200)}async hardResetClassic(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(50),await this.setDTR(!1),await this.sleep(200)}async hardResetToFirmware(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),await this.sleep(50),await this.sleep(200)}async hardResetToFirmwareWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setRTSWebUSB(!1),await this.sleep(50),await this.sleep(200)}async hardResetUnixTight(){await this.setDTRandRTS(!0,!0),await this.setDTRandRTS(!1,!1),await this.setDTRandRTS(!1,!0),await this.sleep(100),await this.setDTRandRTS(!0,!1),await this.sleep(50),await this.setDTRandRTS(!1,!1),await this.setDTR(!1),await this.sleep(200)}async setRTSWebUSB(t){this.state_RTS=t,await this.port.setSignals({requestToSend:t,dataTerminalReady:this.state_DTR})}async setDTRWebUSB(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t,requestToSend:this.state_RTS})}async setDTRandRTSWebUSB(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerialWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetUSBJTAGSerialInvertedDTRWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetClassicWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetUnixTightWebUSB(){await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRandRTSWebUSB(!0,!0),await this.setDTRandRTSWebUSB(!1,!0),await this.sleep(100),await this.setDTRandRTSWebUSB(!0,!1),await this.sleep(50),await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetClassicLongDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(500),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200),await this.setDTRWebUSB(!1),await this.sleep(500)}async hardResetClassicShortDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(25),await this.setDTRWebUSB(!1),await this.sleep(100)}async hardResetInvertedWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedDTRWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedRTSWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}isWebUSB(){return!0===this.port.isWebUSB}async connectWithResetStrategies(){const t=this.port.getInfo(),e=4097===t.usbProductId,i=12346===t.usbVendorId,s=[],a=this,n=!e&&!i;if(this.isWebUSB()){const r=4292===t.usbVendorId,h=6790===t.usbVendorId,o=12346===t.usbVendorId&&2===t.usbProductId;(e||i)&&(o?(s.push({name:"USB-JTAG/Serial (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"UnixTight (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetClassicWebUSB()})):(s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"USB-JTAG/Serial (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"Inverted DTR Classic (WebUSB)",fn:async()=>await a.hardResetInvertedDTRWebUSB()}))),n&&(h?(s.push({name:"UnixTight (WebUSB) - CH34x",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CH34x",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):r?(s.push({name:"UnixTight (WebUSB) - CP2102",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CP2102",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):(s.push({name:"UnixTight (WebUSB)",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"Inverted Both (WebUSB)",fn:async function(){return await a.hardResetInvertedWebUSB()}}),s.push({name:"Inverted RTS (WebUSB)",fn:async function(){return await a.hardResetInvertedRTSWebUSB()}}),s.push({name:"Inverted DTR (WebUSB)",fn:async function(){return await a.hardResetInvertedDTRWebUSB()}}))),r||o||(6790!==t.usbVendorId&&s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"UnixTight (WebUSB)",fn:async function(){return await a.hardResetUnixTightWebUSB()}}),s.push({name:"Classic Long Delay (WebUSB)",fn:async function(){return await a.hardResetClassicLongDelayWebUSB()}}),s.push({name:"Classic Short Delay (WebUSB)",fn:async function(){return await a.hardResetClassicShortDelayWebUSB()}}),e||i||s.push({name:"USB-JTAG/Serial fallback (WebUSB)",fn:async function(){return await a.hardResetUSBJTAGSerialWebUSB()}}))}else(e||i)&&s.push({name:"USB-JTAG/Serial",fn:async function(){return await a.hardResetUSBJTAGSerial()}}),s.push({name:"UnixTight",fn:async function(){return await a.hardResetUnixTight()}}),e||i||s.push({name:"USB-JTAG/Serial (fallback)",fn:async function(){return await a.hardResetUSBJTAGSerial()}});let h=null;for(const t of s)try{if(!this.connected||!this.port.writable){this.logger.debug(`Port disconnected, skipping ${t.name} reset`);continue}if(this._abandonCurrentOperation=!1,await t.fn(),n){if(await this.syncWithTimeout(2e3))return void this.logger.log(`Connected USB Serial successfully with ${t.name} reset.`);throw new Error("Sync timeout or abandoned")}{const e=this.sync(),i=new Promise((t,e)=>setTimeout(()=>e(new Error("Sync timeout")),1e3));try{return await Promise.race([e,i]),void this.logger.log(`Connected CDC/JTAG successfully with ${t.name} reset.`)}catch(t){throw new Error("Sync timeout or abandoned")}}}catch(t){if(h=t,this._abandonCurrentOperation=!0,await r(100),!this.connected||!this.port.writable){this.logger.log("Port disconnected during reset attempt");break}this._clearInputBuffer(),await this.drainInputBuffer(200),await this.flushSerialBuffers()}throw this._abandonCurrentOperation=!1,new Error(`Couldn't sync to ESP. Try resetting manually. Last error: ${null==h?void 0:h.message}`)}async watchdogReset(){await this.rtcWdtResetChipSpecific()}async usingUsbOtg(){let t,e;if(this.chipFamily===b)t=1073741076,e=2;else if(this.chipFamily===S)t=c,e=3;else{if(this.chipFamily!==D)return!1;null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=5}return(255&await this.readRegister(t))===e}async usingUsbJtagSerial(){let t,e;if(this.chipFamily===S)t=c,e=4;else if(this.chipFamily===R){let i;null===this.chipRevision&&(this.chipRevision=await this.getChipRevisionC3()),i=this.chipRevision<101?1070461028:1070461024,t=i+24,e=3}else if(this.chipFamily===B)t=1082520852,e=3;else if(this.chipFamily===v)t=1082652032,e=3;else if(this.chipFamily===D)null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=6;else{if(this.chipFamily!==T)return!1;t=1082457852,e=3}return(255&await this.readRegister(t))===e}async getChipRevisionC3(){if(this.chipFamily!==R)return 0;const t=await this.readRegister(1610647632)>>18&7;return(await this.readRegister(1610647640)>>23&7)<<3|t}async rtcWdtResetChipSpecific(){let t,e,i,s;if(this.logger.debug("Hard resetting with watchdog timer..."),this.chipFamily===b)t=1061191852,e=1061191828,i=1061191832,s=1356348065;else if(this.chipFamily===S)t=1610645680,e=1610645656,i=1610645660,s=1356348065;else if(this.chipFamily===R)t=1610645672,e=1610645648,i=1610645652,s=1356348065;else if(this.chipFamily===B||this.chipFamily===v)t=1611340824,e=1611340800,i=1611340804,s=1356348065;else{if(this.chipFamily!==D)throw new Error(`rtcWdtResetChipSpecific() is not supported for ${this.chipFamily}`);t=1343315992,e=1343315968,i=1343315972,s=1356348065}if(await this.writeRegister(t,s,void 0,0),this.chipFamily===b)try{await this.writeRegister(l,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===S)try{await this.writeRegister(d,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===D)try{await this.writeRegister(1343291400,0,4,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}await this.writeRegister(i,2e3,void 0,0);await this.writeRegister(e,-805306110,void 0,0),await this.writeRegister(t,0,void 0,0),await this.sleep(500)}async tryUsbWdtReset(t,e,i,s,a){const r=await this.usingUsbOtg(),n=await this.usingUsbJtagSerial();if(r||n){const r=await this.readRegister(e),n=await this.readRegister(s);if(0===(r&i)&&0===(n&a))return await this.rtcWdtResetChipSpecific(),this.logger.debug(`${t}: RTC WDT reset (USB detected, GPIO0 low)`),!0}return!1}async hardResetS2(){await this.usingUsbOtg()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S2: RTC WDT reset (USB-OTG detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S2: Classic reset"))}async hardResetS3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S3: Classic reset"))}async hardResetC3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-C3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-C3: Classic reset"))}async hardReset(t=!1){if(this._consoleMode)return t?void this.logger.debug("Skipping bootloader reset - device is in console mode"):(this.logger.debug("Performing hardware reset (console mode)..."),this.isWebUSB()?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),void this.logger.debug("Hardware reset complete"));if(t)4097===this.port.getInfo().usbProductId?(await this.hardResetUSBJTAGSerial(),this.logger.debug("USB-JTAG/Serial reset.")):this.isWebUSB()?(await this.hardResetClassicWebUSB(),this.logger.debug("Classic reset (WebUSB/Android).")):(await this.hardResetClassic(),this.logger.debug("Classic reset."));else{if(this.chipFamily!==b||this._consoleMode){if(this.chipFamily===S&&!this._consoleMode){if(await this.tryUsbWdtReset("ESP32-S3",1610629176,8,d,1))return}}else{if(await this.tryUsbWdtReset("ESP32-S2",1061175352,8,l,1))return}this.isWebUSB()?(await this.setRTSWebUSB(!0),await this.sleep(200),await this.setRTSWebUSB(!1),await this.sleep(200),this.logger.debug("Hard reset (WebUSB).")):(await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),this.logger.debug("Hard reset."))}await new Promise(t=>setTimeout(t,1e3))}macAddr(){const t=new Array(6).fill(0),e=this._efuses[0],i=this._efuses[1],s=this._efuses[2],a=this._efuses[3];let r;if(this.chipFamily==w){if(0!=a)r=[a>>16&255,a>>8&255,255&a];else if(i>>16&255){if(1!=(i>>16&255))throw new Error("Couldnt determine OUI");r=[172,208,116]}else r=[24,254,52];t[0]=r[0],t[1]=r[1],t[2]=r[2],t[3]=i>>8&255,t[4]=255&i,t[5]=e>>24&255}else if(this.chipFamily==m)t[0]=s>>8&255,t[1]=255&s,t[2]=i>>24&255,t[3]=i>>16&255,t[4]=i>>8&255,t[5]=255&i;else{if(this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x)throw new Error("Unknown chip family");t[0]=i>>8&255,t[1]=255&i,t[2]=e>>24&255,t[3]=e>>16&255,t[4]=e>>8&255,t[5]=255&e}return t}async readRegister(t){this.debug&&this.logger.debug("Reading from Register "+s(t,8));const e=Ri("<I",t);await this.sendCommand(10,e);const[i]=await this.getResponse(10);return i}async checkCommand(t,e,i=0,a=3e3){const r=async()=>{a=Math.min(a,rt),await this.sendCommand(t,e,i);const[r,n]=await this.getResponse(t,a);if(null===n)throw new Error("Didn't get enough status bytes");let h=n,o=0;if(this.IS_STUB||this.chipFamily==w?o=2:[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)||20===t?o=4:[2,4].includes(h.length)?o=h.length:(o=2,this.logger.debug(`Unknown chip family, defaulting to 2-byte status (opcode: ${s(t)}, data.length: ${h.length})`)),h.length<o)throw new Error("Didn't get enough status bytes");const l=h.slice(-o,h.length);if(h=h.slice(0,-o),this.debug&&(this.logger.debug("status",l),this.logger.debug("value",r),this.logger.debug("data",h)),1==l[0])throw 5==l[1]?(await this.drainInputBuffer(200),new Error("Invalid (unsupported) command "+s(t))):new Error("Command failure error code "+s(l[1]));return[r,h]};return this._commandLock=this._commandLock.then(r,r),this._commandLock}async sendCommand(e,i,s=0){const a=t([...Ri("<BBHI",0,e,i.length,s),...i]);this.debug&&this.logger.debug(`Writing ${a.length} byte${1==a.length?"":"s"}:`,a),await this.writeToStream(a)}async readPacket(t){let e=null,a=!1;if(this._isCDCDevice){const n=Date.now();for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}if(0!==this._inputBufferAvailable)for(;this._inputBufferAvailable>0;){if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}const r=this._readByte();if(null===e){if(r!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(r)+")");e=[]}else if(a)if(a=!1,r==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(r!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(r)+")");e.push(this.SLIP_ESC)}else if(r==this.SLIP_ESC)a=!0;else{if(r==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(r)}}else await r(1)}}else{let n=[];for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");const h=Date.now();for(n=[];Date.now()-h<t;){if(this._inputBufferAvailable>0){n.push(this._readByte());break}await r(1)}if(0==n.length){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}this.debug&&this.logger.debug("Read "+n.length+" bytes: "+i(n));for(const t of n)if(null===e){if(t!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(t)+")");e=[]}else if(a)if(a=!1,t==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(t!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(t)+")");e.push(this.SLIP_ESC)}else if(t==this.SLIP_ESC)a=!0;else{if(t==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(t)}}}}async getResponse(t,e=3e3){for(let i=0;i<100;i++){const i=await this.readPacket(e);if(i.length<8)continue;const[a,r,,n]=Bi("<BBHI",i.slice(0,8));if(1!=a)continue;const h=i.slice(8);if(null==t||r==t)return[n,h];if(0!=h[0]&&5==h[1])throw await this.drainInputBuffer(200),new Error(`Invalid (unsupported) command ${s(t)}`)}throw new Error("Response doesn't match request")}checksum(t,e=239){for(const i of t)e^=i;return e}async setBaudrate(t){try{const e=Ri("<II",t,this.IS_STUB?o:0);await this.checkCommand(15,e)}catch(e){throw this.logger.error(`Baudrate change error: ${e}`),new Error(`Unable to change the baud rate to ${t}: No response from set baud rate command.`)}this._parent?await this._parent.reconfigurePort(t):await this.reconfigurePort(t),await r(nt),this._parent?this._parent.currentBaudRate=t:this.currentBaudRate=t;const e=this._parent?this._parent._maxUSBSerialBaudrate:this._maxUSBSerialBaudrate;e&&t>e&&(this.logger.log(`⚠️ WARNING: Baudrate ${t} exceeds USB-Serial chip limit (${e})!`),this.logger.log("⚠️ This may cause data corruption or connection failures!")),this.logger.log(`Changed baud rate to ${t}`)}async reconfigurePort(t){var e;this._isReconfiguring=!0;try{try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconfigure: ${t}`)}if(this.isWebUSB()){const e=this.port.getInfo(),i=6790===e.usbVendorId&&21971===e.usbProductId;if(!i&&"function"==typeof this.port.setBaudRate)return await this.port.setBaudRate(t),void await r(100)}if(this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconfigure: ${t}`)}this._writer=void 0}await(null===(e=this._reader)||void 0===e?void 0:e.cancel()),await this.port.close(),await this.port.open({baudRate:t}),await this.flushSerialBuffers(),this.readLoop()}catch(t){}finally{this._isReconfiguring=!1}}async syncWithTimeout(t){const e=Date.now();for(let i=0;i<5;i++){if(Date.now()-e>t)return!1;if(this._abandonCurrentOperation)return!1;this._clearInputBuffer();try{if(await this._sync())return await r(nt),!0}catch(t){if(this._abandonCurrentOperation)return!1}await r(nt)}return!1}async sync(){for(let t=0;t<5;t++){this._clearInputBuffer();if(await this._sync())return await r(nt),!0;await r(nt)}throw new Error("Couldn't sync to ESP. Try resetting.")}async _sync(){await this.sendCommand(8,p);for(let t=0;t<8;t++)try{const[,t]=await this.getResponse(8,nt);if(t.length>1&&0==t[0]&&0==t[1])return!0}catch(e){this.debug&&this.logger.debug(`Sync attempt ${t+1} failed: ${e}`)}return!1}getFlashWriteSize(){return this.IS_STUB?16384:1024}async flashData(t,e,i=0,a=!1){if(t.byteLength>=8){const e=Array.from(new Uint8Array(t,0,4)),i=e[0],a=e[2],r=e[3];this.logger.log(`Image header, Magic=${s(i)}, FlashMode=${s(a)}, FlashSizeFreq=${s(r)}`)}const r=t.byteLength;let n,h=0,o=st;a?(n=Si(new Uint8Array(t),{level:9}).buffer,h=n.byteLength,this.logger.log(`Writing data with filesize: ${r}. Compressed Size: ${h}`),o=await this.flashDeflBegin(r,h,i)):(this.logger.log(`Writing data with filesize: ${r}`),n=t,await this.flashBegin(r,i));let l=[],d=0,c=0,u=0;const g=Date.now(),_=this.getFlashWriteSize(),f=a?h:r;for(;f-u>0;)this.debug&&this.logger.log(`Writing at ${s(i+d*_,8)} `),f-u>=_?l=Array.from(new Uint8Array(n,u,_)):(l=Array.from(new Uint8Array(n,u,f-u)),a||(l=l.concat(new Array(_-l.length).fill(255)))),a?await this.flashDeflBlock(l,d,o):await this.flashBlock(l,d),d+=1,c+=a?Math.round(l.length*r/h):l.length,u+=_,e(Math.min(c,r),r);this.logger.log("Took "+(Date.now()-g)+"ms to write "+f+" bytes"),this.IS_STUB&&(await this.flashBegin(0,0),a?await this.flashDeflFinish():await this.flashFinish())}async flashBlock(t,e,i=3e3){await this.checkCommand(3,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashDeflBlock(t,e,i=3e3){await this.checkCommand(17,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashBegin(t=0,e=0,i=!1){let a;await this.flushSerialBuffers();const r=this.getFlashWriteSize();!this.IS_STUB&&[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)&&await this.checkCommand(13,new Array(8).fill(0));const n=Math.floor((t+r-1)/r);a=this.chipFamily!=w||this.IS_STUB?t:this.getEraseSize(e,t);const h=this.IS_STUB?st:dt(ht,t),o=Date.now();let l=Ri("<IIII",a,n,r,e);return this.chipFamily!=m&&this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x||(l=l.concat(Ri("<I",i?1:0))),this.logger.log("Erase size "+a+", blocks "+n+", block size "+s(r,4)+", offset "+s(e,4)+", encrypted "+(i?"yes":"no")),await this.checkCommand(2,l,0,h),0==t||this.IS_STUB||this.logger.log("Took "+(Date.now()-o)+"ms to erase "+n+" bytes"),n}async flashDeflBegin(t=0,e=0,i=0){const s=this.getFlashWriteSize(),a=Math.floor((e+s-1)/s),r=Math.floor((t+s-1)/s);let n=0,h=0;this.IS_STUB?(n=t,h=dt(ht,n)):(n=r*s,h=st);const o=Ri("<IIII",n,a,s,i);return await this.checkCommand(16,o,0,h),h}async flashFinish(){const t=Ri("<I",1);await this.checkCommand(4,t)}async flashDeflFinish(){const t=Ri("<I",1);await this.checkCommand(18,t)}getBootloaderOffset(){return ct(this.getChipFamily()).flashOffs}async flashId(){return await this.runSpiFlashCommand(159,[],24)}getChipFamily(){return this._parent?this._parent.chipFamily:this.chipFamily}async writeRegister(t,e,i=4294967295,s=0,a=0){let r=Ri("<IIII",t,e,i,s);a>0&&(r=r.concat(Ri("<IIII",ct(this.getChipFamily()).uartDateReg,0,0,a))),await this.checkCommand(9,r)}async setDataLengths(t,e,i){if(-1!=t.mosiDlenOffs){const s=t.regBase+t.mosiDlenOffs,a=t.regBase+t.misoDlenOffs;e>0&&await this.writeRegister(s,e-1),i>0&&await this.writeRegister(a,i-1)}else{const s=t.regBase+t.usr1Offs,a=(0==i?0:i-1)<<8|(0==e?0:e-1)<<17;await this.writeRegister(s,a)}}async waitDone(t,e){for(let i=0;i<10;i++){if(0==(await this.readRegister(t)&e))return}throw Error("SPI command did not complete in time")}async runSpiFlashCommand(t,e,i=0){const a=ct(this.getChipFamily()),r=a.regBase,n=r,h=r+a.usrOffs,o=r+a.usr2Offs,l=r+a.w0Offs,d=1<<18;if(i>32)throw new Error("Reading more than 32 bits back from a SPI flash operation is unsupported");if(e.length>64)throw new Error("Writing more than 64 bytes of data with one SPI command is unsupported");const c=8*e.length,u=await this.readRegister(h),g=await this.readRegister(o);let _=1<<31;if(i>0&&(_|=268435456),c>0&&(_|=134217728),await this.setDataLengths(a,c,i),await this.writeRegister(h,_),await this.writeRegister(o,7<<28|t),0==c)await this.writeRegister(l,0);else{const t=(4-e.length%4)%4;e=e.concat(new Array(t).fill(0));const i=Bi("I".repeat(Math.floor(e.length/4)),e);let a=l;this.logger.debug(`Words Length: ${i.length}`);for(const t of i)this.logger.debug(`Writing word ${s(t)} to register offset ${s(a)}`),await this.writeRegister(a,t),a+=4}await this.writeRegister(n,d),await this.waitDone(n,d);const f=await this.readRegister(l);return await this.writeRegister(h,u),await this.writeRegister(o,g),f}async detectFlashSize(){this.logger.log("Detecting Flash Size");const t=await this.flashId(),e=255&t,i=t>>16&255;this.logger.log(`FlashId: ${s(t)}`),this.logger.log(`Flash Manufacturer: ${e.toString(16)}`),this.logger.log(`Flash Device: ${(t>>8&255).toString(16)}${i.toString(16)}`),this.flashSize=n[i],this.logger.log(`Auto-detected Flash size: ${this.flashSize}`)}getEraseSize(t,e){const i=h,s=Math.floor((e+i-1)/i);let a=16-Math.floor(t/i)%16;return s<a&&(a=s),s<2*a?Math.floor((s+1)/2*i):(s-a)*i}async memBegin(t,e,i,s){return await this.checkCommand(5,Ri("<IIII",t,e,i,s))}async memBlock(t,e){return await this.checkCommand(7,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t))}async memFinish(t=0){const e=this.IS_STUB?st:500,i=Ri("<II",0==t?1:0,t);return await this.checkCommand(6,i,0,e)}async runStub(t=!1){const e=await gt(this.chipFamily,this.chipRevision);if(null===e)return this.logger.log(`Stub flasher is not yet supported on ${this.chipName}, using ROM loader`),this;const i=2048;this.logger.log("Uploading stub...");for(const t of["text","data"]){const s=e[t],a=e[`${t}_start`],r=s.length,n=Math.floor((r+i-1)/i);await this.memBegin(r,n,i,a);for(const t of Array(n).keys()){const e=t*i;let a=e+i;a>r&&(a=r),await this.memBlock(s.slice(e,a),t)}}await this.memFinish(e.entry);const s=await this.readPacket(500),a=String.fromCharCode(...s);if("OHAI"!=a)throw new Error("Failed to start stub. Unexpected response: "+a);this.logger.log("Stub is now running...");const r=new Ui(this.port,this.logger,this);return t||await r.detectFlashSize(),r}get _reader(){return this._parent?this._parent._reader:this.__reader}set _reader(t){this._parent?this._parent._reader=t:this.__reader=t}get _writer(){return this._parent?this._parent._writer:this.__writer}set _writer(t){this._parent?this._parent._writer=t:this.__writer=t}get _writeChain(){return this._parent?this._parent._writeChain:this.__writeChain}set _writeChain(t){this._parent?this._parent._writeChain=t:this.__writeChain=t}async writeToStream(t){if(this.port.writable){if(this._isReconfiguring)throw new Error("Cannot write during port reconfiguration");this._writeChain=this._writeChain.then(async()=>{if(!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.error(`Failed to get writer: ${t}`),t}await this._writer.write(new Uint8Array(t))},async()=>{if(this.logger.debug("Previous write failed, attempting recovery for current write"),!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.debug(`Failed to get writer in recovery: ${t}`),new Error("Cannot acquire writer lock")}await this._writer.write(new Uint8Array(t))}).catch(t=>{if(this.logger.error(`Write error: ${t}`),this._writer){try{this._writer.releaseLock()}catch{}this._writer=void 0}throw t}),await this._writeChain}else this.logger.debug("Port writable stream not available, skipping write")}async disconnect(){if(this._parent)await this._parent.disconnect();else if(this.port.writable){try{await this._writeChain}catch(t){}if(this._writer){try{await this._writer.close(),this._writer.releaseLock()}catch(t){}this._writer=void 0}else try{const t=this.port.writable.getWriter();await t.close(),t.releaseLock()}catch(t){}await new Promise(t=>{if(!this._reader)return void t(void 0);const e=setTimeout(()=>{this.logger.debug("Disconnect timeout - forcing resolution"),t(void 0)},1e3);this.addEventListener("disconnect",()=>{clearTimeout(e),t(void 0)},{once:!0});try{this._reader.cancel()}catch(i){clearTimeout(e),t(void 0)}}),this.connected=!1;try{await this.port.close(),this.logger.debug("Port closed successfully")}catch(t){this.logger.debug(`Port close error: ${t}`)}}}async releaseReaderWriter(){if(this._parent)return void await this._parent.releaseReaderWriter();if(!await this._resetToFirmwareIfNeeded()){try{await this._writeChain}catch(t){}if(this._writer){try{this._writer.releaseLock(),this.logger.debug("Writer released")}catch(t){this.logger.debug(`Writer release error: ${t}`)}this._writer=void 0}if(this._reader){const t=this._reader;try{this._suppressDisconnect=!0,await t.cancel(),this.logger.debug("Reader cancelled")}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}finally{try{t.releaseLock()}catch(t){this.logger.debug(`Reader release error: ${t}`)}}this._reader===t&&(this._reader=void 0)}}}async resetToFirmware(){return await this._resetToFirmwareIfNeeded()}async detectUsbConnectionType(){if(!this.chipFamily)throw new Error("Cannot detect USB connection type: chipFamily not set");const t=this.port.getInfo(),e=t.usbProductId,i=t.usbVendorId;this.logger.debug(`USB detection: VID=0x${null==i?void 0:i.toString(16)}, PID=0x${null==e?void 0:e.toString(16)}`);if(!(12346===i))return this.logger.debug("Not Espressif VID - external serial chip"),!1;const s=[4097,2,4096,16392,16393].includes(e||0);return this.logger.debug(`USB-JTAG/OTG detection: ${s?"YES":"NO"} (PID=0x${null==e?void 0:e.toString(16)})`),s}async enterConsoleMode(){let t;this._consoleMode=!0;try{t=await this.detectUsbConnectionType(),this.logger.debug("USB connection type detected: "+(t?"USB-JTAG/OTG":"External Serial Chip"))}catch(e){if(void 0===this.isUsbJtagOrOtg)throw new Error(`Cannot enter console mode: USB connection type unknown and detection failed: ${e}`);this.logger.debug(`USB detection failed, using cached value: ${this.isUsbJtagOrOtg}`),t=this.isUsbJtagOrOtg}if(t){return await this._resetToFirmwareIfNeeded()}try{await this.releaseReaderWriter(),await this.sleep(100)}catch(t){this.logger.debug(`Failed to release locks: ${t}`)}try{await this.hardReset(!1),this.logger.log("Device reset to firmware mode")}catch(t){this.logger.debug(`Could not reset device: ${t}`)}if(this.isWebUSB())try{await this.port.recreateStreams(),this.logger.debug("WebUSB streams recreated for console mode")}catch(t){this.logger.debug(`Failed to recreate WebUSB streams: ${t}`)}return!1}async _resetToFirmwareIfNeeded(){try{if(!0===this.isUsbJtagOrOtg){const t=this.chipFamily===b||this.chipFamily===S?"USB-JTAG/Serial or USB-OTG":"USB-JTAG/Serial";if(this.logger.log(`Resetting ${this.chipName||"device"} (${t}) to boot into firmware...`),this._consoleMode=!0,this.chipFamily===b||this.chipFamily===S){const t=this.chipFamily===b?l:d,e=(this.chipFamily,1);try{await this.writeRegister(t,0,e,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}}try{await this.rtcWdtResetChipSpecific(),this.logger.debug("Watchdog reset triggered successfully")}catch(t){this.logger.debug(`Watchdog reset initiated (connection lost as expected: ${t})`)}return this.logger.log("Waiting for device to boot into firmware..."),await this.sleep(1e3),this.connected=!1,this._writer=void 0,this._reader=void 0,this.logger.debug("Device reset to firmware mode (port closed)"),!0}}catch(t){this.logger.debug(`Could not reset device to firmware mode: ${t}`)}return!1}async reconnect(){if(this._parent)await this._parent.reconnect();else try{this.logger.log("Reconnecting serial port...");const t=this.currentBaudRate;this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1;const e=this.chipFamily,i=this.chipName,s=this.chipRevision,a=this.chipVariant,r=this.flashSize;if(await this.hardReset(!0),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await this.flushSerialBuffers(),await this.sync(),this.chipFamily=e,this.chipName=i,this.chipRevision=s,this.chipVariant=a,this.flashSize=r,this.logger.debug(`Reconnect complete (chip: ${this.chipName})`),!this.port.writable||!this.port.readable)throw new Error("Port not ready after reconnect");const n=await this.runStub(!0);if(this.logger.debug("Stub loaded"),t!==o&&(await n.setBaudrate(t),!this.port.writable||!this.port.readable))throw new Error(`Port not ready after baudrate change (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this.IS_STUB=!0,this.logger.debug("Reconnection successful")}catch(t){throw this._isReconfiguring=!1,t}}async reconnectToBootloader(){if(this._parent)await this._parent.reconnectToBootloader();else try{this.logger.log("Reconnecting to bootloader mode..."),this._consoleMode=!1,this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1,this.__chipFamily=void 0,this.chipName="Unknown Chip",this.chipRevision=null,this.chipVariant=null,this.IS_STUB=!1,this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await r(100),await this.connectWithResetStrategies(),await this.detectChip(),this.logger.log(`Reconnected to bootloader: ${this.chipName}`)}catch(t){throw this._isReconfiguring=!1,t}}async exitConsoleMode(){if(this._parent)return await this._parent.exitConsoleMode();this._consoleMode=!1;const t=this.chipFamily===b;let e=this._isUsbJtagOrOtg;if(t&&void 0===e)try{e=await this.detectUsbConnectionType()}catch(t){this.logger.debug(`USB detection failed, assuming USB-JTAG/OTG for ESP32-S2: ${t}`),e=!0}if(t&&e){this.logger.log("ESP32-S2 USB detected - reconnecting to bootloader");try{await this.reconnectToBootloader()}catch(t){this.logger.debug(`Reconnect error (expected for ESP32-S2): ${t}`)}return!0}return await this.reconnectToBootloader(),!1}isConsoleResetSupported(){if(this._parent)return this._parent.isConsoleResetSupported();return!(this.chipFamily===b&&(!0===this._isUsbJtagOrOtg||void 0===this._isUsbJtagOrOtg))}async resetInConsoleMode(){if(this._parent)return await this._parent.resetInConsoleMode();if(!this.isConsoleResetSupported())return void this.logger.debug("Console reset not supported for ESP32-S2 USB-JTAG/CDC");const t=!0===this.port.isWebUSB;try{this.logger.debug("Resetting device in console mode"),t?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),this.logger.debug("Device reset complete")}catch(t){throw this.logger.error(`Reset failed: ${t}`),t}}async drainInputBuffer(t=200){await r(t);let e=0;const i=Date.now();for(;e<112&&Date.now()-i<100;)if(this._inputBufferAvailable>0){void 0!==this._readByte()&&e++}else await r(1);e>0&&this.logger.debug(`Drained ${e} bytes from input buffer`),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0)}async flushSerialBuffers(){this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),await r(nt),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),this.logger.debug("Serial buffers flushed")}async readFlash(e,i,s,a){if(!this.IS_STUB)throw new Error("Reading flash is only supported in stub mode. Please run runStub() first.");let n;await this.flushSerialBuffers(),this.logger.log(`Reading ${i} bytes from flash at address 0x${e.toString(16)}...`),this.isWebUSB()&&(this._isCDCDevice?(this._adaptiveBlockMultiplier=8,this._adaptiveMaxInFlightMultiplier=8,this._consecutiveSuccessfulChunks=0,this.logger.debug(`CDC device - Initialized: blockMultiplier=${this._adaptiveBlockMultiplier}, maxInFlightMultiplier=${this._adaptiveMaxInFlightMultiplier}`)):(this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0,this.logger.debug("Non-CDC device - Fixed values: blockSize=31, maxInFlight=31"))),void 0!==(null==a?void 0:a.chunkSize)?(n=a.chunkSize,this.logger.log(`Using custom chunk size: 0x${n.toString(16)} bytes`)):n=this.isWebUSB()?16384:262144;let h=new Uint8Array(0),o=e,l=i;for(;l>0;){const e=Math.min(n,l);let d=!1,c=0;const u=5;let g=!1;for(;!d&&c<=u;){let i=new Uint8Array(0),s=0;try{let n,l;if(0===c&&this.logger.debug(`Reading chunk at 0x${o.toString(16)}, size: 0x${e.toString(16)}`),void 0!==(null==a?void 0:a.blockSize)&&void 0!==(null==a?void 0:a.maxInFlight))n=a.blockSize,l=a.maxInFlight,0===c&&this.logger.debug(`Using custom parameters: blockSize=${n}, maxInFlight=${l}`);else if(this.isWebUSB()){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2);n=e*this._adaptiveBlockMultiplier,l=e*this._adaptiveMaxInFlightMultiplier}else{const t=63;n=65*t,l=130*t}const u=Ri("<IIII",o,e,n,l),[g]=await this.checkCommand(210,u);if(0!=g)throw new Error("Failed to read memory: "+g);for(;i.length<e;){let a;try{a=await this.readPacket(100)}catch(t){if(t instanceof ut){this.logger.debug(`SLIP read error at ${i.length} bytes: ${t.message}`);try{const t=[this.SLIP_END,this.SLIP_END];await this.writeToStream(t),this.logger.debug("Sent abort frame to stub"),await r(50)}catch(t){this.logger.debug(`Abort frame error: ${t}`)}if(await this.drainInputBuffer(200),i.length>=e)break}throw t}if(a&&a.length>0){const r=new Uint8Array(a),n=new Uint8Array(i.length+r.length);n.set(i),n.set(r,i.length),i=n;if(i.length>=e||i.length>=s+l){const e=Ri("<I",i.length),a=t(e);await this.writeToStream(a),s=i.length}}}const _=new Uint8Array(h.length+i.length);if(_.set(h),_.set(i,h.length),h=_,d=!0,this.isWebUSB()&&this._isCDCDevice&&0===c&&(this._consecutiveSuccessfulChunks++,this._consecutiveSuccessfulChunks>=2)){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=8,s=8;let a=!1;if(this._adaptiveBlockMultiplier<i?(this._adaptiveBlockMultiplier=Math.min(2*this._adaptiveBlockMultiplier,i),a=!0):this._adaptiveMaxInFlightMultiplier<s&&(this._adaptiveMaxInFlightMultiplier=Math.min(2*this._adaptiveMaxInFlightMultiplier,s),a=!0),a){const t=e*this._adaptiveBlockMultiplier,i=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Speed increased: blockSize=${t}, maxInFlight=${i}`),this._lastAdaptiveAdjustment=Date.now()}this._consecutiveSuccessfulChunks=0}}catch(t){if(c++,this.isWebUSB()&&this._isCDCDevice&&1===c)if(this._adaptiveBlockMultiplier>1||this._adaptiveMaxInFlightMultiplier>1){this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0;const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=e*this._adaptiveBlockMultiplier,s=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Error at higher speed - reduced to minimum: blockSize=${i}, maxInFlight=${s}`)}else this.logger.debug("Error at minimum speed (blockSize=31, maxInFlight=31) - not a speed issue");if(!(t instanceof ut))throw t;if(c<=u){this.logger.debug(`${t.message} at 0x${o.toString(16)}. Draining buffer and retrying (attempt ${c}/${u})...`);try{await this.drainInputBuffer(200),await this.flushSerialBuffers(),await r(nt)}catch(t){this.logger.debug(`Buffer drain error: ${t}`)}}else{if(g)throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery attempt`);g=!0,this.logger.log(`All retries exhausted at 0x${o.toString(16)}. Attempting recovery (close and reopen port)...`);try{await this.reconnect(),this.logger.log("Deep recovery successful. Resuming read from current position..."),c=0;continue}catch(t){throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery failed: ${t}`)}}}}s&&s(new Uint8Array(e),h.length,i),o+=e,l-=e,this.logger.debug(`Total progress: 0x${h.length.toString(16)} from 0x${i.toString(16)} bytes`)}return h}}class Ui extends vi{constructor(){super(...arguments),this.IS_STUB=!0}async memBegin(t,e,i,a){const r=await gt(this.chipFamily,this.chipRevision);if(null===r)return[0,[]];const n=a,h=a+t;this.logger.debug(`Load range: ${s(n,8)}-${s(h,8)}`),this.logger.debug(`Stub data: ${s(r.data_start,8)}, len: ${r.data.length}, text: ${s(r.text_start,8)}, len: ${r.text.length}`);for(const[t,e]of[[r.data_start,r.data_start+r.data.length],[r.text_start,r.text_start+r.text.length]])if(n<e&&h>t)throw new Error("Software loader is resident at "+s(t,8)+"-"+s(e,8)+". Can't load binary at overlapping address range "+s(n,8)+"-"+s(h,8)+". Try changing the binary loading address.");return[0,[]]}async eraseFlash(){await this.checkCommand(208,[],0,at)}async eraseRegion(t,e){if(t<0)throw new Error(`Invalid offset: ${t} (must be non-negative)`);if(e<0)throw new Error(`Invalid size: ${e} (must be non-negative)`);if(0===e)return void this.logger.log("eraseRegion: size is 0, skipping erase");if(t%h!==0)throw new Error(`Offset ${t} (0x${t.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);if(e%h!==0)throw new Error(`Size ${e} (0x${e.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);const i=4294967295;if(t>i)throw new Error(`Offset ${t} exceeds maximum value 4294967295`);if(e>i)throw new Error(`Size ${e} exceeds maximum value 4294967295`);if(t+e>i)throw new Error(`Region end (offset + size = ${t+e}) exceeds maximum addressable range 4294967295`);const s=dt(ht,e),a=Ri("<II",t,e);await this.checkCommand(209,a,0,s)}}const Ti=async t=>{let e;const i=globalThis.requestSerialPort;if("function"==typeof i)e=await i();else{if(!navigator.serial)throw new Error("Web Serial API is not supported in this browser. Please use Chrome, Edge, or Opera on desktop, or Chrome on Android. Note: The page must be served over HTTPS or localhost.");e=await navigator.serial.requestPort()}return e.readable&&e.writable||await e.open({baudRate:o}),new vi(e,t)},Ii=async(t,e)=>{if(!t)throw new Error("Port is required");return t.readable&&t.writable||await t.open({baudRate:o}),new vi(t,e)};export{at as CHIP_ERASE_TIMEOUT,m as CHIP_FAMILY_ESP32,y as CHIP_FAMILY_ESP32C2,R as CHIP_FAMILY_ESP32C3,B as CHIP_FAMILY_ESP32C5,v as CHIP_FAMILY_ESP32C6,U as CHIP_FAMILY_ESP32C61,T as CHIP_FAMILY_ESP32H2,C as CHIP_FAMILY_ESP32H21,I as CHIP_FAMILY_ESP32H4,D as CHIP_FAMILY_ESP32P4,b as CHIP_FAMILY_ESP32S2,S as CHIP_FAMILY_ESP32S3,x as CHIP_FAMILY_ESP32S31,w as CHIP_FAMILY_ESP8266,st as DEFAULT_TIMEOUT,ht as ERASE_REGION_TIMEOUT_PER_MB,vi as ESPLoader,H as ESP_CHANGE_BAUDRATE,K as ESP_CHECKSUM_MAGIC,N as ESP_ERASE_FLASH,V as ESP_ERASE_REGION,O as ESP_FLASH_BEGIN,E as ESP_FLASH_DATA,Y as ESP_FLASH_DEFL_BEGIN,X as ESP_FLASH_DEFL_DATA,Q as ESP_FLASH_DEFL_END,W as ESP_FLASH_END,q as ESP_GET_SECURITY_INFO,z as ESP_MEM_BEGIN,$ as ESP_MEM_DATA,A as ESP_MEM_END,it as ESP_RAM_BLOCK,J as ESP_READ_FLASH,L as ESP_READ_REG,G as ESP_SPI_ATTACH,j as ESP_SPI_FLASH_MD5,Z as ESP_SPI_SET_PARAMS,P as ESP_SYNC,M as ESP_WRITE_REG,lt as FLASH_READ_TIMEOUT,rt as MAX_TIMEOUT,ot as MEM_END_ROM_TIMEOUT,tt as ROM_INVALID_RECV_MSG,nt as SYNC_TIMEOUT,et as USB_RAM_BLOCK,Ti as connect,Ii as connectWithPort,a as formatMacAddr,i as hexFormatter,r as sleep,s as toHex};
|
|
1
|
+
const t=t=>{let e=[192];for(const i of t)219==i?e=e.concat([219,221]):192==i?e=e.concat([219,220]):e.push(i);return e.push(192),e},e=t=>{const e=[];for(let i=0;i<t.length;i++){const s=t.charCodeAt(i);s<=255&&e.push(s)}return e},i=t=>"["+t.map(t=>s(t)).join(", ")+"]",s=(t,e=2)=>{const i=t.toString(16).toUpperCase();return i.startsWith("-")?"-0x"+i.substring(1).padStart(e,"0"):"0x"+i.padStart(e,"0")},a=t=>t.map(t=>t.toString(16).toUpperCase().padStart(2,"0")).join(":"),r=t=>new Promise(e=>setTimeout(e,t)),n={18:"256KB",19:"512KB",20:"1MB",21:"2MB",22:"4MB",23:"8MB",24:"16MB",25:"32MB",26:"64MB",27:"128MB",28:"256MB",32:"64MB",33:"128MB",34:"256MB",50:"256KB",51:"512KB",52:"1MB",53:"2MB",54:"4MB",55:"8MB",56:"16MB",57:"32MB",58:"64MB"},h=4096,o=115200,l=1061191976,d=1610645804,c=1070526796,u=1610647552,g=1343410176,_=1341390536,f=1341914824,p=e(" UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU"),w=33382,m=50,b=12882,S=12883,y=12994,R=12995,B=12997,v=12998,U=207969,T=12914,I=12916,C=12917,D=12928,x=12849,k={5:{name:"ESP32-C3",family:R},9:{name:"ESP32-S3",family:S},12:{name:"ESP32-C2",family:y},13:{name:"ESP32-C6",family:v},16:{name:"ESP32-H2",family:T},18:{name:"ESP32-P4",family:D},20:{name:"ESP32-C61",family:U},23:{name:"ESP32-C5",family:B},25:{name:"ESP32-H21",family:C},28:{name:"ESP32-H4",family:I},32:{name:"ESP32-S31",family:x}},F={4293968129:{name:"ESP8266",family:w},15736195:{name:"ESP32",family:m},1990:{name:"ESP32-S2",family:b}},O=2,E=3,W=4,z=5,A=6,$=7,P=8,M=9,L=10,N=208,V=209,J=210,Z=11,G=13,H=15,j=19,q=20,K=239,Y=16,X=17,Q=18,tt=5,et=2048,it=6144,st=3e3,at=15e4,rt=3e5,nt=100,ht=3e4,ot=500,lt=100,dt=(t,e)=>{const i=Math.floor(t*(e/486));return i<st?st:i},ct=t=>{switch(t){case m:return{regBase:1072963584,baseFuse:1073061888,macFuse:1073061888,usrOffs:28,usr1Offs:32,usr2Offs:36,mosiDlenOffs:40,misoDlenOffs:44,w0Offs:128,uartDateReg:1610612856,flashOffs:4096};case b:return{regBase:1061167104,baseFuse:1061265408,macFuse:1061265476,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612856,flashOffs:4096};case S:return{regBase:1610620928,usrOffs:24,baseFuse:1610641408,macFuse:1610641476,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612864,flashOffs:0};case w:return{regBase:1610613248,usrOffs:28,baseFuse:1072693328,macFuse:1072693328,usr1Offs:32,usr2Offs:36,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:64,uartDateReg:1610612856,flashOffs:0};case y:return{regBase:1610620928,baseFuse:u,macFuse:1610647616,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case R:return{regBase:1610620928,baseFuse:1610647552,macFuse:1610647620,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case B:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:8192};case v:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case U:return{regBase:1610625024,baseFuse:1611352064,macFuse:1611352132,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case T:return{regBase:1610625024,baseFuse:1611335680,macFuse:1611335748,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case I:return{regBase:1611239424,baseFuse:1611339776,macFuse:1611339844,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610686588,flashOffs:8192};case C:return{regBase:1610625024,baseFuse:1611350016,macFuse:1611350084,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1610612860,flashOffs:0};case D:return{regBase:1342754816,baseFuse:g,macFuse:1343410244,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:1343004812,flashOffs:8192};case x:return{regBase:542113792,baseFuse:544296960,macFuse:544297028,usrOffs:24,usr1Offs:28,usr2Offs:32,mosiDlenOffs:36,misoDlenOffs:40,w0Offs:88,uartDateReg:540582028,flashOffs:8192};default:return{regBase:-1,baseFuse:-1,macFuse:-1,usrOffs:-1,usr1Offs:-1,usr2Offs:-1,mosiDlenOffs:-1,misoDlenOffs:-1,w0Offs:-1,uartDateReg:-1,flashOffs:-1}}};class ut extends Error{constructor(t){super(t),this.name="SlipReadError"}}const gt=async(t,i)=>{let s;if(t==I||t==C||t==x)return null;if(t==m)s=await import("./esp32-BRKoi17y.js");else if(t==b)s=await import("./esp32s2-iX3WoDbg.js");else if(t==S)s=await import("./esp32s3-DGwDVIgz.js");else if(t==w)s=await import("./esp8266-CUwxJpGa.js");else if(t==y)s=await import("./esp32c2-Btgr_lwh.js");else if(t==R)s=await import("./esp32c3-CHKfoI8W.js");else if(t==B)s=await import("./esp32c5-BDW4KtLo.js");else if(t==v)s=await import("./esp32c6-il8tTxAG.js");else if(t==U)s=await import("./esp32c61-thKzxBGf.js");else if(t==T)s=await import("./esp32h2-CxoUHv_P.js");else{if(t!=D)return null;s=null!=i&&i>=300?await import("./esp32p4r3-CqI71ojR.js"):await import("./esp32p4-D3jLP-jY.js")}return{...s,text:e(atob(s.text)),data:e(atob(s.data))}};function _t(t){let e=t.length;for(;--e>=0;)t[e]=0}const ft=256,pt=286,wt=30,mt=15,bt=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),St=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),yt=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),Rt=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Bt=new Array(576);_t(Bt);const vt=new Array(60);_t(vt);const Ut=new Array(512);_t(Ut);const Tt=new Array(256);_t(Tt);const It=new Array(29);_t(It);const Ct=new Array(wt);function Dt(t,e,i,s,a){this.static_tree=t,this.extra_bits=e,this.extra_base=i,this.elems=s,this.max_length=a,this.has_stree=t&&t.length}let xt,kt,Ft;function Ot(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}_t(Ct);const Et=t=>t<256?Ut[t]:Ut[256+(t>>>7)],Wt=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},zt=(t,e,i)=>{t.bi_valid>16-i?(t.bi_buf|=e<<t.bi_valid&65535,Wt(t,t.bi_buf),t.bi_buf=e>>16-t.bi_valid,t.bi_valid+=i-16):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=i)},At=(t,e,i)=>{zt(t,i[2*e],i[2*e+1])},$t=(t,e)=>{let i=0;do{i|=1&t,t>>>=1,i<<=1}while(--e>0);return i>>>1},Pt=(t,e,i)=>{const s=new Array(16);let a,r,n=0;for(a=1;a<=mt;a++)n=n+i[a-1]<<1,s[a]=n;for(r=0;r<=e;r++){let e=t[2*r+1];0!==e&&(t[2*r]=$t(s[e]++,e))}},Mt=t=>{let e;for(e=0;e<pt;e++)t.dyn_ltree[2*e]=0;for(e=0;e<wt;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},Lt=t=>{t.bi_valid>8?Wt(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},Nt=(t,e,i,s)=>{const a=2*e,r=2*i;return t[a]<t[r]||t[a]===t[r]&&s[e]<=s[i]},Vt=(t,e,i)=>{const s=t.heap[i];let a=i<<1;for(;a<=t.heap_len&&(a<t.heap_len&&Nt(e,t.heap[a+1],t.heap[a],t.depth)&&a++,!Nt(e,s,t.heap[a],t.depth));)t.heap[i]=t.heap[a],i=a,a<<=1;t.heap[i]=s},Jt=(t,e,i)=>{let s,a,r,n,h=0;if(0!==t.sym_next)do{s=255&t.pending_buf[t.sym_buf+h++],s+=(255&t.pending_buf[t.sym_buf+h++])<<8,a=t.pending_buf[t.sym_buf+h++],0===s?At(t,a,e):(r=Tt[a],At(t,r+ft+1,e),n=bt[r],0!==n&&(a-=It[r],zt(t,a,n)),s--,r=Et(s),At(t,r,i),n=St[r],0!==n&&(s-=Ct[r],zt(t,s,n)))}while(h<t.sym_next);At(t,256,e)},Zt=(t,e)=>{const i=e.dyn_tree,s=e.stat_desc.static_tree,a=e.stat_desc.has_stree,r=e.stat_desc.elems;let n,h,o,l=-1;for(t.heap_len=0,t.heap_max=573,n=0;n<r;n++)0!==i[2*n]?(t.heap[++t.heap_len]=l=n,t.depth[n]=0):i[2*n+1]=0;for(;t.heap_len<2;)o=t.heap[++t.heap_len]=l<2?++l:0,i[2*o]=1,t.depth[o]=0,t.opt_len--,a&&(t.static_len-=s[2*o+1]);for(e.max_code=l,n=t.heap_len>>1;n>=1;n--)Vt(t,i,n);o=r;do{n=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Vt(t,i,1),h=t.heap[1],t.heap[--t.heap_max]=n,t.heap[--t.heap_max]=h,i[2*o]=i[2*n]+i[2*h],t.depth[o]=(t.depth[n]>=t.depth[h]?t.depth[n]:t.depth[h])+1,i[2*n+1]=i[2*h+1]=o,t.heap[1]=o++,Vt(t,i,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const i=e.dyn_tree,s=e.max_code,a=e.stat_desc.static_tree,r=e.stat_desc.has_stree,n=e.stat_desc.extra_bits,h=e.stat_desc.extra_base,o=e.stat_desc.max_length;let l,d,c,u,g,_,f=0;for(u=0;u<=mt;u++)t.bl_count[u]=0;for(i[2*t.heap[t.heap_max]+1]=0,l=t.heap_max+1;l<573;l++)d=t.heap[l],u=i[2*i[2*d+1]+1]+1,u>o&&(u=o,f++),i[2*d+1]=u,d>s||(t.bl_count[u]++,g=0,d>=h&&(g=n[d-h]),_=i[2*d],t.opt_len+=_*(u+g),r&&(t.static_len+=_*(a[2*d+1]+g)));if(0!==f){do{for(u=o-1;0===t.bl_count[u];)u--;t.bl_count[u]--,t.bl_count[u+1]+=2,t.bl_count[o]--,f-=2}while(f>0);for(u=o;0!==u;u--)for(d=t.bl_count[u];0!==d;)c=t.heap[--l],c>s||(i[2*c+1]!==u&&(t.opt_len+=(u-i[2*c+1])*i[2*c],i[2*c+1]=u),d--)}})(t,e),Pt(i,l,t.bl_count)},Gt=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),e[2*(i+1)+1]=65535,s=0;s<=i;s++)a=n,n=e[2*(s+1)+1],++h<o&&a===n||(h<l?t.bl_tree[2*a]+=h:0!==a?(a!==r&&t.bl_tree[2*a]++,t.bl_tree[32]++):h<=10?t.bl_tree[34]++:t.bl_tree[36]++,h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4))},Ht=(t,e,i)=>{let s,a,r=-1,n=e[1],h=0,o=7,l=4;for(0===n&&(o=138,l=3),s=0;s<=i;s++)if(a=n,n=e[2*(s+1)+1],!(++h<o&&a===n)){if(h<l)do{At(t,a,t.bl_tree)}while(0!==--h);else 0!==a?(a!==r&&(At(t,a,t.bl_tree),h--),At(t,16,t.bl_tree),zt(t,h-3,2)):h<=10?(At(t,17,t.bl_tree),zt(t,h-3,3)):(At(t,18,t.bl_tree),zt(t,h-11,7));h=0,r=a,0===n?(o=138,l=3):a===n?(o=6,l=3):(o=7,l=4)}};let jt=!1;const qt=(t,e,i,s)=>{zt(t,0+(s?1:0),3),Lt(t),Wt(t,i),Wt(t,~i),i&&t.pending_buf.set(t.window.subarray(e,e+i),t.pending),t.pending+=i};var Kt=(t,e,i,s)=>{let a,r,n=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,i=4093624447;for(e=0;e<=31;e++,i>>>=1)if(1&i&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<ft;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),Zt(t,t.l_desc),Zt(t,t.d_desc),n=(t=>{let e;for(Gt(t,t.dyn_ltree,t.l_desc.max_code),Gt(t,t.dyn_dtree,t.d_desc.max_code),Zt(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*Rt[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),a=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=a&&(a=r)):a=r=i+5,i+4<=a&&-1!==e?qt(t,e,i,s):4===t.strategy||r===a?(zt(t,2+(s?1:0),3),Jt(t,Bt,vt)):(zt(t,4+(s?1:0),3),((t,e,i,s)=>{let a;for(zt(t,e-257,5),zt(t,i-1,5),zt(t,s-4,4),a=0;a<s;a++)zt(t,t.bl_tree[2*Rt[a]+1],3);Ht(t,t.dyn_ltree,e-1),Ht(t,t.dyn_dtree,i-1)})(t,t.l_desc.max_code+1,t.d_desc.max_code+1,n+1),Jt(t,t.dyn_ltree,t.dyn_dtree)),Mt(t),s&&Lt(t)},Yt={_tr_init:t=>{jt||((()=>{let t,e,i,s,a;const r=new Array(16);for(i=0,s=0;s<28;s++)for(It[s]=i,t=0;t<1<<bt[s];t++)Tt[i++]=s;for(Tt[i-1]=s,a=0,s=0;s<16;s++)for(Ct[s]=a,t=0;t<1<<St[s];t++)Ut[a++]=s;for(a>>=7;s<wt;s++)for(Ct[s]=a<<7,t=0;t<1<<St[s]-7;t++)Ut[256+a++]=s;for(e=0;e<=mt;e++)r[e]=0;for(t=0;t<=143;)Bt[2*t+1]=8,t++,r[8]++;for(;t<=255;)Bt[2*t+1]=9,t++,r[9]++;for(;t<=279;)Bt[2*t+1]=7,t++,r[7]++;for(;t<=287;)Bt[2*t+1]=8,t++,r[8]++;for(Pt(Bt,287,r),t=0;t<wt;t++)vt[2*t+1]=5,vt[2*t]=$t(t,5);xt=new Dt(Bt,bt,257,pt,mt),kt=new Dt(vt,St,0,wt,mt),Ft=new Dt(new Array(0),yt,0,19,7)})(),jt=!0),t.l_desc=new Ot(t.dyn_ltree,xt),t.d_desc=new Ot(t.dyn_dtree,kt),t.bl_desc=new Ot(t.bl_tree,Ft),t.bi_buf=0,t.bi_valid=0,Mt(t)},_tr_stored_block:qt,_tr_flush_block:Kt,_tr_tally:(t,e,i)=>(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=i,0===e?t.dyn_ltree[2*i]++:(t.matches++,e--,t.dyn_ltree[2*(Tt[i]+ft+1)]++,t.dyn_dtree[2*Et(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{zt(t,2,3),At(t,256,Bt),(t=>{16===t.bi_valid?(Wt(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}};var Xt=(t,e,i,s)=>{let a=65535&t,r=t>>>16&65535,n=0;for(;0!==i;){n=i>2e3?2e3:i,i-=n;do{a=a+e[s++]|0,r=r+a|0}while(--n);a%=65521,r%=65521}return a|r<<16};const Qt=new Uint32Array((()=>{let t,e=[];for(var i=0;i<256;i++){t=i;for(var s=0;s<8;s++)t=1&t?3988292384^t>>>1:t>>>1;e[i]=t}return e})());var te=(t,e,i,s)=>{const a=Qt,r=s+i;t^=-1;for(let i=s;i<r;i++)t=t>>>8^a[255&(t^e[i])];return-1^t},ee={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},ie={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_OK:0,Z_STREAM_END:1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:se,_tr_stored_block:ae,_tr_flush_block:re,_tr_tally:ne,_tr_align:he}=Yt,{Z_NO_FLUSH:oe,Z_PARTIAL_FLUSH:le,Z_FULL_FLUSH:de,Z_FINISH:ce,Z_BLOCK:ue,Z_OK:ge,Z_STREAM_END:_e,Z_STREAM_ERROR:fe,Z_DATA_ERROR:pe,Z_BUF_ERROR:we,Z_DEFAULT_COMPRESSION:me,Z_FILTERED:be,Z_HUFFMAN_ONLY:Se,Z_RLE:ye,Z_FIXED:Re,Z_DEFAULT_STRATEGY:Be,Z_UNKNOWN:ve,Z_DEFLATED:Ue}=ie,Te=258,Ie=262,Ce=42,De=113,xe=666,ke=(t,e)=>(t.msg=ee[e],e),Fe=t=>2*t-(t>4?9:0),Oe=t=>{let e=t.length;for(;--e>=0;)t[e]=0},Ee=t=>{let e,i,s,a=t.w_size;e=t.hash_size,s=e;do{i=t.head[--s],t.head[s]=i>=a?i-a:0}while(--e);e=a,s=e;do{i=t.prev[--s],t.prev[s]=i>=a?i-a:0}while(--e)};let We=(t,e,i)=>(e<<t.hash_shift^i)&t.hash_mask;const ze=t=>{const e=t.state;let i=e.pending;i>t.avail_out&&(i=t.avail_out),0!==i&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+i),t.next_out),t.next_out+=i,e.pending_out+=i,t.total_out+=i,t.avail_out-=i,e.pending-=i,0===e.pending&&(e.pending_out=0))},Ae=(t,e)=>{re(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,ze(t.strm)},$e=(t,e)=>{t.pending_buf[t.pending++]=e},Pe=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},Me=(t,e,i,s)=>{let a=t.avail_in;return a>s&&(a=s),0===a?0:(t.avail_in-=a,e.set(t.input.subarray(t.next_in,t.next_in+a),i),1===t.state.wrap?t.adler=Xt(t.adler,e,a,i):2===t.state.wrap&&(t.adler=te(t.adler,e,a,i)),t.next_in+=a,t.total_in+=a,a)},Le=(t,e)=>{let i,s,a=t.max_chain_length,r=t.strstart,n=t.prev_length,h=t.nice_match;const o=t.strstart>t.w_size-Ie?t.strstart-(t.w_size-Ie):0,l=t.window,d=t.w_mask,c=t.prev,u=t.strstart+Te;let g=l[r+n-1],_=l[r+n];t.prev_length>=t.good_match&&(a>>=2),h>t.lookahead&&(h=t.lookahead);do{if(i=e,l[i+n]===_&&l[i+n-1]===g&&l[i]===l[r]&&l[++i]===l[r+1]){r+=2,i++;do{}while(l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&l[++r]===l[++i]&&r<u);if(s=Te-(u-r),r=u-Te,s>n){if(t.match_start=e,n=s,s>=h)break;g=l[r+n-1],_=l[r+n]}}}while((e=c[e&d])>o&&0!==--a);return n<=t.lookahead?n:t.lookahead},Ne=t=>{const e=t.w_size;let i,s,a;do{if(s=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Ie)&&(t.window.set(t.window.subarray(e,e+e-s),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),Ee(t),s+=e),0===t.strm.avail_in)break;if(i=Me(t.strm,t.window,t.strstart+t.lookahead,s),t.lookahead+=i,t.lookahead+t.insert>=3)for(a=t.strstart-t.insert,t.ins_h=t.window[a],t.ins_h=We(t,t.ins_h,t.window[a+1]);t.insert&&(t.ins_h=We(t,t.ins_h,t.window[a+3-1]),t.prev[a&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=a,a++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<Ie&&0!==t.strm.avail_in)},Ve=(t,e)=>{let i,s,a,r=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,n=0,h=t.strm.avail_in;do{if(i=65535,a=t.bi_valid+42>>3,t.strm.avail_out<a)break;if(a=t.strm.avail_out-a,s=t.strstart-t.block_start,i>s+t.strm.avail_in&&(i=s+t.strm.avail_in),i>a&&(i=a),i<r&&(0===i&&e!==ce||e===oe||i!==s+t.strm.avail_in))break;n=e===ce&&i===s+t.strm.avail_in?1:0,ae(t,0,0,n),t.pending_buf[t.pending-4]=i,t.pending_buf[t.pending-3]=i>>8,t.pending_buf[t.pending-2]=~i,t.pending_buf[t.pending-1]=~i>>8,ze(t.strm),s&&(s>i&&(s=i),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+s),t.strm.next_out),t.strm.next_out+=s,t.strm.avail_out-=s,t.strm.total_out+=s,t.block_start+=s,i-=s),i&&(Me(t.strm,t.strm.output,t.strm.next_out,i),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i)}while(0===n);return h-=t.strm.avail_in,h&&(h>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=h&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-h,t.strm.next_in),t.strstart),t.strstart+=h,t.insert+=h>t.w_size-t.insert?t.w_size-t.insert:h),t.block_start=t.strstart),t.high_water<t.strstart&&(t.high_water=t.strstart),n?4:e!==oe&&e!==ce&&0===t.strm.avail_in&&t.strstart===t.block_start?2:(a=t.window_size-t.strstart,t.strm.avail_in>a&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,a+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),a>t.strm.avail_in&&(a=t.strm.avail_in),a&&(Me(t.strm,t.window,t.strstart,a),t.strstart+=a,t.insert+=a>t.w_size-t.insert?t.w_size-t.insert:a),t.high_water<t.strstart&&(t.high_water=t.strstart),a=t.bi_valid+42>>3,a=t.pending_buf_size-a>65535?65535:t.pending_buf_size-a,r=a>t.w_size?t.w_size:a,s=t.strstart-t.block_start,(s>=r||(s||e===ce)&&e!==oe&&0===t.strm.avail_in&&s<=a)&&(i=s>a?a:s,n=e===ce&&0===t.strm.avail_in&&i===s?1:0,ae(t,t.block_start,i,n),t.block_start+=i,ze(t.strm)),n?3:1)},Je=(t,e)=>{let i,s;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==i&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i)),t.match_length>=3)if(s=ne(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!==--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=We(t,t.ins_h,t.window[t.strstart+1]);else s=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(s&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2},Ze=(t,e)=>{let i,s,a;for(;;){if(t.lookahead<Ie){if(Ne(t),t.lookahead<Ie&&e===oe)return 1;if(0===t.lookahead)break}if(i=0,t.lookahead>=3&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==i&&t.prev_length<t.max_lazy_match&&t.strstart-i<=t.w_size-Ie&&(t.match_length=Le(t,i),t.match_length<=5&&(t.strategy===be||3===t.match_length&&t.strstart-t.match_start>4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){a=t.strstart+t.lookahead-3,s=ne(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=a&&(t.ins_h=We(t,t.ins_h,t.window[t.strstart+3-1]),i=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!==--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,s&&(Ae(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(s=ne(t,0,t.window[t.strstart-1]),s&&Ae(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(s=ne(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2};function Ge(t,e,i,s,a){this.good_length=t,this.max_lazy=e,this.nice_length=i,this.max_chain=s,this.func=a}const He=[new Ge(0,0,0,0,Ve),new Ge(4,4,8,4,Je),new Ge(4,5,16,8,Je),new Ge(4,6,32,32,Je),new Ge(4,4,16,16,Ze),new Ge(8,16,32,32,Ze),new Ge(8,16,128,128,Ze),new Ge(8,32,128,256,Ze),new Ge(32,128,258,1024,Ze),new Ge(32,258,258,4096,Ze)];function je(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Ue,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),Oe(this.dyn_ltree),Oe(this.dyn_dtree),Oe(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),Oe(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),Oe(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const qe=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==Ce&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==De&&e.status!==xe?1:0},Ke=t=>{if(qe(t))return ke(t,fe);t.total_in=t.total_out=0,t.data_type=ve;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?Ce:De,t.adler=2===e.wrap?0:1,e.last_flush=-2,se(e),ge},Ye=t=>{const e=Ke(t);var i;return e===ge&&((i=t.state).window_size=2*i.w_size,Oe(i.head),i.max_lazy_match=He[i.level].max_lazy,i.good_match=He[i.level].good_length,i.nice_match=He[i.level].nice_length,i.max_chain_length=He[i.level].max_chain,i.strstart=0,i.block_start=0,i.lookahead=0,i.insert=0,i.match_length=i.prev_length=2,i.match_available=0,i.ins_h=0),e},Xe=(t,e,i,s,a,r)=>{if(!t)return fe;let n=1;if(e===me&&(e=6),s<0?(n=0,s=-s):s>15&&(n=2,s-=16),a<1||a>9||i!==Ue||s<8||s>15||e<0||e>9||r<0||r>Re||8===s&&1!==n)return ke(t,fe);8===s&&(s=9);const h=new je;return t.state=h,h.strm=t,h.status=Ce,h.wrap=n,h.gzhead=null,h.w_bits=s,h.w_size=1<<h.w_bits,h.w_mask=h.w_size-1,h.hash_bits=a+7,h.hash_size=1<<h.hash_bits,h.hash_mask=h.hash_size-1,h.hash_shift=~~((h.hash_bits+3-1)/3),h.window=new Uint8Array(2*h.w_size),h.head=new Uint16Array(h.hash_size),h.prev=new Uint16Array(h.w_size),h.lit_bufsize=1<<a+6,h.pending_buf_size=4*h.lit_bufsize,h.pending_buf=new Uint8Array(h.pending_buf_size),h.sym_buf=h.lit_bufsize,h.sym_end=3*(h.lit_bufsize-1),h.level=e,h.strategy=r,h.method=i,Ye(t)};var Qe={deflateInit:(t,e)=>Xe(t,e,Ue,15,8,Be),deflateInit2:Xe,deflateReset:Ye,deflateResetKeep:Ke,deflateSetHeader:(t,e)=>qe(t)||2!==t.state.wrap?fe:(t.state.gzhead=e,ge),deflate:(t,e)=>{if(qe(t)||e>ue||e<0)return t?ke(t,fe):fe;const i=t.state;if(!t.output||0!==t.avail_in&&!t.input||i.status===xe&&e!==ce)return ke(t,0===t.avail_out?we:fe);const s=i.last_flush;if(i.last_flush=e,0!==i.pending){if(ze(t),0===t.avail_out)return i.last_flush=-1,ge}else if(0===t.avail_in&&Fe(e)<=Fe(s)&&e!==ce)return ke(t,we);if(i.status===xe&&0!==t.avail_in)return ke(t,we);if(i.status===Ce&&0===i.wrap&&(i.status=De),i.status===Ce){let e=Ue+(i.w_bits-8<<4)<<8,s=-1;if(s=i.strategy>=Se||i.level<2?0:i.level<6?1:6===i.level?2:3,e|=s<<6,0!==i.strstart&&(e|=32),e+=31-e%31,Pe(i,e),0!==i.strstart&&(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),t.adler=1,i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(57===i.status)if(t.adler=0,$e(i,31),$e(i,139),$e(i,8),i.gzhead)$e(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),$e(i,255&i.gzhead.time),$e(i,i.gzhead.time>>8&255),$e(i,i.gzhead.time>>16&255),$e(i,i.gzhead.time>>24&255),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&($e(i,255&i.gzhead.extra.length),$e(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=te(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69;else if($e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,0),$e(i,9===i.level?2:i.strategy>=Se||i.level<2?4:0),$e(i,3),i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge;if(69===i.status){if(i.gzhead.extra){let e=i.pending,s=(65535&i.gzhead.extra.length)-i.gzindex;for(;i.pending+s>i.pending_buf_size;){let a=i.pending_buf_size-i.pending;if(i.pending_buf.set(i.gzhead.extra.subarray(i.gzindex,i.gzindex+a),i.pending),i.pending=i.pending_buf_size,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex+=a,ze(t),0!==i.pending)return i.last_flush=-1,ge;e=0,s-=a}let a=new Uint8Array(i.gzhead.extra);i.pending_buf.set(a.subarray(i.gzindex,i.gzindex+s),i.pending),i.pending+=s,i.gzhead.hcrc&&i.pending>e&&(t.adler=te(t.adler,i.pending_buf,i.pending-e,e)),i.gzindex=0}i.status=73}if(73===i.status){if(i.gzhead.name){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),i.gzindex=0}i.status=91}if(91===i.status){if(i.gzhead.comment){let e,s=i.pending;do{if(i.pending===i.pending_buf_size){if(i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s)),ze(t),0!==i.pending)return i.last_flush=-1,ge;s=0}e=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0,$e(i,e)}while(0!==e);i.gzhead.hcrc&&i.pending>s&&(t.adler=te(t.adler,i.pending_buf,i.pending-s,s))}i.status=103}if(103===i.status){if(i.gzhead.hcrc){if(i.pending+2>i.pending_buf_size&&(ze(t),0!==i.pending))return i.last_flush=-1,ge;$e(i,255&t.adler),$e(i,t.adler>>8&255),t.adler=0}if(i.status=De,ze(t),0!==i.pending)return i.last_flush=-1,ge}if(0!==t.avail_in||0!==i.lookahead||e!==oe&&i.status!==xe){let s=0===i.level?Ve(i,e):i.strategy===Se?((t,e)=>{let i;for(;;){if(0===t.lookahead&&(Ne(t),0===t.lookahead)){if(e===oe)return 1;break}if(t.match_length=0,i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):i.strategy===ye?((t,e)=>{let i,s,a,r;const n=t.window;for(;;){if(t.lookahead<=Te){if(Ne(t),t.lookahead<=Te&&e===oe)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(a=t.strstart-1,s=n[a],s===n[++a]&&s===n[++a]&&s===n[++a])){r=t.strstart+Te;do{}while(s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&s===n[++a]&&a<r);t.match_length=Te-(r-a),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(i=ne(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(i=ne(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),i&&(Ae(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===ce?(Ae(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(Ae(t,!1),0===t.strm.avail_out)?1:2})(i,e):He[i.level].func(i,e);if(3!==s&&4!==s||(i.status=xe),1===s||3===s)return 0===t.avail_out&&(i.last_flush=-1),ge;if(2===s&&(e===le?he(i):e!==ue&&(ae(i,0,0,!1),e===de&&(Oe(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),ze(t),0===t.avail_out))return i.last_flush=-1,ge}return e!==ce?ge:i.wrap<=0?_e:(2===i.wrap?($e(i,255&t.adler),$e(i,t.adler>>8&255),$e(i,t.adler>>16&255),$e(i,t.adler>>24&255),$e(i,255&t.total_in),$e(i,t.total_in>>8&255),$e(i,t.total_in>>16&255),$e(i,t.total_in>>24&255)):(Pe(i,t.adler>>>16),Pe(i,65535&t.adler)),ze(t),i.wrap>0&&(i.wrap=-i.wrap),0!==i.pending?ge:_e)},deflateEnd:t=>{if(qe(t))return fe;const e=t.state.status;return t.state=null,e===De?ke(t,pe):ge},deflateSetDictionary:(t,e)=>{let i=e.length;if(qe(t))return fe;const s=t.state,a=s.wrap;if(2===a||1===a&&s.status!==Ce||s.lookahead)return fe;if(1===a&&(t.adler=Xt(t.adler,e,i,0)),s.wrap=0,i>=s.w_size){0===a&&(Oe(s.head),s.strstart=0,s.block_start=0,s.insert=0);let t=new Uint8Array(s.w_size);t.set(e.subarray(i-s.w_size,i),0),e=t,i=s.w_size}const r=t.avail_in,n=t.next_in,h=t.input;for(t.avail_in=i,t.next_in=0,t.input=e,Ne(s);s.lookahead>=3;){let t=s.strstart,e=s.lookahead-2;do{s.ins_h=We(s,s.ins_h,s.window[t+3-1]),s.prev[t&s.w_mask]=s.head[s.ins_h],s.head[s.ins_h]=t,t++}while(--e);s.strstart=t,s.lookahead=2,Ne(s)}return s.strstart+=s.lookahead,s.block_start=s.strstart,s.insert=s.lookahead,s.lookahead=0,s.match_length=s.prev_length=2,s.match_available=0,t.next_in=n,t.input=h,t.avail_in=r,s.wrap=a,ge},deflateInfo:"pako deflate (from Nodeca project)"};const ti=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var ei=function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const i=e.shift();if(i){if("object"!=typeof i)throw new TypeError(i+"must be non-object");for(const e in i)ti(i,e)&&(t[e]=i[e])}}return t},ii=t=>{let e=0;for(let i=0,s=t.length;i<s;i++)e+=t[i].length;const i=new Uint8Array(e);for(let e=0,s=0,a=t.length;e<a;e++){let a=t[e];i.set(a,s),s+=a.length}return i};let si=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){si=!1}const ai=new Uint8Array(256);for(let t=0;t<256;t++)ai[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;ai[254]=ai[254]=1;var ri=t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,i,s,a,r,n=t.length,h=0;for(a=0;a<n;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),h+=i<128?1:i<2048?2:i<65536?3:4;for(e=new Uint8Array(h),r=0,a=0;r<h;a++)i=t.charCodeAt(a),55296==(64512&i)&&a+1<n&&(s=t.charCodeAt(a+1),56320==(64512&s)&&(i=65536+(i-55296<<10)+(s-56320),a++)),i<128?e[r++]=i:i<2048?(e[r++]=192|i>>>6,e[r++]=128|63&i):i<65536?(e[r++]=224|i>>>12,e[r++]=128|i>>>6&63,e[r++]=128|63&i):(e[r++]=240|i>>>18,e[r++]=128|i>>>12&63,e[r++]=128|i>>>6&63,e[r++]=128|63&i);return e};var ni=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const hi=Object.prototype.toString,{Z_NO_FLUSH:oi,Z_SYNC_FLUSH:li,Z_FULL_FLUSH:di,Z_FINISH:ci,Z_OK:ui,Z_STREAM_END:gi,Z_DEFAULT_COMPRESSION:_i,Z_DEFAULT_STRATEGY:fi,Z_DEFLATED:pi}=ie;function wi(t){this.options=ei({level:_i,method:pi,chunkSize:16384,windowBits:15,memLevel:8,strategy:fi},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new ni,this.strm.avail_out=0;let i=Qe.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(i!==ui)throw new Error(ee[i]);if(e.header&&Qe.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?ri(e.dictionary):"[object ArrayBuffer]"===hi.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,i=Qe.deflateSetDictionary(this.strm,t),i!==ui)throw new Error(ee[i]);this._dict_set=!0}}wi.prototype.push=function(t,e){const i=this.strm,s=this.options.chunkSize;let a,r;if(this.ended)return!1;for(r=e===~~e?e:!0===e?ci:oi,"string"==typeof t?i.input=ri(t):"[object ArrayBuffer]"===hi.call(t)?i.input=new Uint8Array(t):i.input=t,i.next_in=0,i.avail_in=i.input.length;;)if(0===i.avail_out&&(i.output=new Uint8Array(s),i.next_out=0,i.avail_out=s),(r===li||r===di)&&i.avail_out<=6)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else{if(a=Qe.deflate(i,r),a===gi)return i.next_out>0&&this.onData(i.output.subarray(0,i.next_out)),a=Qe.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===ui;if(0!==i.avail_out){if(r>0&&i.next_out>0)this.onData(i.output.subarray(0,i.next_out)),i.avail_out=0;else if(0===i.avail_in)break}else this.onData(i.output)}return!0},wi.prototype.onData=function(t){this.chunks.push(t)},wi.prototype.onEnd=function(t){t===ui&&(this.result=ii(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var mi={deflate:function(t,e){const i=new wi(e);if(i.push(t,!0),i.err)throw i.msg||ee[i.err];return i.result}};const{deflate:bi}=mi;var Si=bi;const yi={b:{u:DataView.prototype.getInt8,p:DataView.prototype.setInt8,bytes:1},B:{u:DataView.prototype.getUint8,p:DataView.prototype.setUint8,bytes:1},h:{u:DataView.prototype.getInt16,p:DataView.prototype.setInt16,bytes:2},H:{u:DataView.prototype.getUint16,p:DataView.prototype.setUint16,bytes:2},i:{u:DataView.prototype.getInt32,p:DataView.prototype.setInt32,bytes:4},I:{u:DataView.prototype.getUint32,p:DataView.prototype.setUint32,bytes:4}},Ri=(t,...e)=>{let i=0;if(t.replace(/[<>]/,"").length!=e.length)throw"Pack format to Argument count mismatch";const s=[];let a=!0;for(let s=0;s<t.length;s++)"<"==t[s]?a=!0:">"==t[s]?a=!1:(r(t[s],e[i]),i++);function r(t,e){if(!(t in yi))throw"Unhandled character '"+t+"' in pack format";const i=yi[t].bytes,r=new DataView(new ArrayBuffer(i));yi[t].p.bind(r)(0,e,a);for(let t=0;t<i;t++)s.push(r.getUint8(t))}return s},Bi=(t,e)=>{let i=0;const s=[];let a=!0;for(const e of t)"<"==e?a=!0:">"==e?a=!1:r(e);function r(t){if(!(t in yi))throw"Unhandled character '"+t+"' in unpack format";const r=yi[t].bytes,n=new DataView(new ArrayBuffer(r));for(let t=0;t<r;t++)n.setUint8(t,255&e[i+t]);const h=yi[t].u.bind(n);s.push(h(0,a)),i+=r}return s};class vi extends EventTarget{get isUsbJtagOrOtg(){return this._parent?this._parent._isUsbJtagOrOtg:this._isUsbJtagOrOtg}constructor(t,e,i){super(),this.port=t,this.logger=e,this._parent=i,this.__chipName=null,this.__chipRevision=null,this.__chipVariant=null,this._efuses=new Array(4).fill(0),this._flashsize=4194304,this.debug=!1,this.IS_STUB=!1,this.connected=!0,this.flashSize=null,this.currentBaudRate=o,this.SLIP_END=192,this.SLIP_ESC=219,this.SLIP_ESC_END=220,this.SLIP_ESC_ESC=221,this._isESP32S2NativeUSB=!1,this._initializationSucceeded=!1,this.__commandLock=Promise.resolve([0,[]]),this.__isReconfiguring=!1,this.__abandonCurrentOperation=!1,this._suppressDisconnect=!1,this.__consoleMode=!1,this._isUsbJtagOrOtg=void 0,this.__adaptiveBlockMultiplier=1,this.__adaptiveMaxInFlightMultiplier=1,this.__consecutiveSuccessfulChunks=0,this.__lastAdaptiveAdjustment=0,this.__isCDCDevice=!1,this.state_DTR=!1,this.state_RTS=!1,this.__writeChain=Promise.resolve()}get chipFamily(){return this._parent?this._parent.chipFamily:this.__chipFamily}set chipFamily(t){this._parent?this._parent.chipFamily=t:this.__chipFamily=t}get chipName(){return this._parent?this._parent.chipName:this.__chipName}set chipName(t){this._parent?this._parent.chipName=t:this.__chipName=t}get chipRevision(){return this._parent?this._parent.chipRevision:this.__chipRevision}set chipRevision(t){this._parent?this._parent.chipRevision=t:this.__chipRevision=t}get chipVariant(){return this._parent?this._parent.chipVariant:this.__chipVariant}set chipVariant(t){this._parent?this._parent.chipVariant=t:this.__chipVariant=t}get _consoleMode(){return this._parent?this._parent._consoleMode:this.__consoleMode}set _consoleMode(t){this._parent?this._parent._consoleMode=t:this.__consoleMode=t}setConsoleMode(t){this._consoleMode=t}get _inputBuffer(){if(this._parent)return this._parent._inputBuffer;if(void 0===this.__inputBuffer)throw new Error("_inputBuffer accessed before initialization");return this.__inputBuffer}get _inputBufferReadIndex(){return this._parent?this._parent._inputBufferReadIndex:this.__inputBufferReadIndex||0}set _inputBufferReadIndex(t){this._parent?this._parent._inputBufferReadIndex=t:this.__inputBufferReadIndex=t}get _inputBufferAvailable(){return this._inputBuffer.length-this._inputBufferReadIndex}_readByte(){if(!(this._inputBufferReadIndex>=this._inputBuffer.length))return this._inputBuffer[this._inputBufferReadIndex++]}_clearInputBuffer(){this._inputBuffer.length=0,this._inputBufferReadIndex=0}_compactInputBuffer(){this._inputBufferReadIndex>1e3&&this._inputBufferReadIndex>this._inputBuffer.length/2&&(this._inputBuffer.splice(0,this._inputBufferReadIndex),this._inputBufferReadIndex=0)}get _totalBytesRead(){return this._parent?this._parent._totalBytesRead:this.__totalBytesRead||0}set _totalBytesRead(t){this._parent?this._parent._totalBytesRead=t:this.__totalBytesRead=t}get _commandLock(){return this._parent?this._parent._commandLock:this.__commandLock}set _commandLock(t){this._parent?this._parent._commandLock=t:this.__commandLock=t}get _isReconfiguring(){return this._parent?this._parent._isReconfiguring:this.__isReconfiguring}set _isReconfiguring(t){this._parent?this._parent._isReconfiguring=t:this.__isReconfiguring=t}get _abandonCurrentOperation(){return this._parent?this._parent._abandonCurrentOperation:this.__abandonCurrentOperation}set _abandonCurrentOperation(t){this._parent?this._parent._abandonCurrentOperation=t:this.__abandonCurrentOperation=t}get _adaptiveBlockMultiplier(){return this._parent?this._parent._adaptiveBlockMultiplier:this.__adaptiveBlockMultiplier}set _adaptiveBlockMultiplier(t){this._parent?this._parent._adaptiveBlockMultiplier=t:this.__adaptiveBlockMultiplier=t}get _adaptiveMaxInFlightMultiplier(){return this._parent?this._parent._adaptiveMaxInFlightMultiplier:this.__adaptiveMaxInFlightMultiplier}set _adaptiveMaxInFlightMultiplier(t){this._parent?this._parent._adaptiveMaxInFlightMultiplier=t:this.__adaptiveMaxInFlightMultiplier=t}get _consecutiveSuccessfulChunks(){return this._parent?this._parent._consecutiveSuccessfulChunks:this.__consecutiveSuccessfulChunks}set _consecutiveSuccessfulChunks(t){this._parent?this._parent._consecutiveSuccessfulChunks=t:this.__consecutiveSuccessfulChunks=t}get _lastAdaptiveAdjustment(){return this._parent?this._parent._lastAdaptiveAdjustment:this.__lastAdaptiveAdjustment}set _lastAdaptiveAdjustment(t){this._parent?this._parent._lastAdaptiveAdjustment=t:this.__lastAdaptiveAdjustment=t}get _isCDCDevice(){return this._parent?this._parent._isCDCDevice:this.__isCDCDevice}set _isCDCDevice(t){this._parent?this._parent._isCDCDevice=t:this.__isCDCDevice=t}detectUSBSerialChip(t,e){const i={6790:{29986:{name:"CH340",maxBaudrate:460800},29987:{name:"CH340",maxBaudrate:460800},30084:{name:"CH340",maxBaudrate:460800},21795:{name:"CH341",maxBaudrate:2e6},21971:{name:"CH343",maxBaudrate:6e6},21972:{name:"CH9102",maxBaudrate:6e6},21976:{name:"CH9101",maxBaudrate:3e6}},4292:{6e4:{name:"CP2102(n)",maxBaudrate:3e6},60016:{name:"CP2105",maxBaudrate:2e6},60017:{name:"CP2108",maxBaudrate:2e6}},1027:{24577:{name:"FT232R",maxBaudrate:3e6},24592:{name:"FT2232",maxBaudrate:3e6},24593:{name:"FT4232",maxBaudrate:3e6},24596:{name:"FT232H",maxBaudrate:12e6},24597:{name:"FT230X",maxBaudrate:3e6}},12346:{2:{name:"ESP32-S2 Native USB",maxBaudrate:2e6},4097:{name:"ESP32 Native USB",maxBaudrate:2e6},4098:{name:"ESP32 Native USB",maxBaudrate:2e6},16386:{name:"ESP32 Native USB",maxBaudrate:2e6},4096:{name:"ESP32 Native USB",maxBaudrate:2e6}}}[t];return i&&i[e]?i[e]:{name:`Unknown (VID: 0x${t.toString(16)}, PID: 0x${e.toString(16)})`}}async initialize(){if(!this._parent){this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0;const t=this.port.getInfo();if(t.usbVendorId&&t.usbProductId){const e=this.detectUSBSerialChip(t.usbVendorId,t.usbProductId);this.logger.log(`USB-Serial: ${e.name} (VID: 0x${t.usbVendorId.toString(16)}, PID: 0x${t.usbProductId.toString(16)})`),e.maxBaudrate&&(this._maxUSBSerialBaudrate=e.maxBaudrate,this.logger.log(`Max baudrate: ${e.maxBaudrate}`)),12346===t.usbVendorId&&2===t.usbProductId&&(this._isESP32S2NativeUSB=!0),(12346===t.usbVendorId||6790===t.usbVendorId&&21971===t.usbProductId)&&(this._isCDCDevice=!0)}this.readLoop()}await this.connectWithResetStrategies(),await this.detectChip();try{this._isUsbJtagOrOtg=await this.detectUsbConnectionType(),this.logger.debug("USB connection type: "+(this._isUsbJtagOrOtg?"USB-JTAG/OTG":"External Serial Chip"))}catch(t){this.logger.debug(`Could not detect USB connection type: ${t}`)}const t=ct(this.getChipFamily()),e=t.macFuse;for(let t=0;t<4;t++)this._efuses[t]=await this.readRegister(e+4*t);this.logger.log(`Chip type ${this.chipName}`),this.logger.debug(`Bootloader flash offset: 0x${t.flashOffs.toString(16)}`),this._initializationSucceeded=!0}async detectChip(){try{const t=(await this.getSecurityInfo()).chipId,e=k[t];if(e)return this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-P4 revision: ${this.chipRevision}`),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision(),this.logger.debug(`ESP32-C3 revision: ${this.chipRevision}`)),void this.logger.debug(`Detected chip via IMAGE_CHIP_ID: ${t} (${this.chipName})`);this.logger.debug(`Unknown IMAGE_CHIP_ID: ${t}, falling back to magic value detection`)}catch(t){this.logger.debug(`GET_SECURITY_INFO failed, using magic value detection: ${t}`),await this.drainInputBuffer(200),this._clearInputBuffer(),await r(nt);try{await this.sync()}catch(t){this.logger.debug(`Re-sync after GET_SECURITY_INFO failure: ${t}`)}}const t=await this.readRegister(1073745920),e=F[t>>>0];if(void 0===e)throw new Error(`Unknown Chip: Hex: ${s(t>>>0,8).toLowerCase()} Number: ${t}`);this.chipName=e.name,this.chipFamily=e.family,this.chipFamily===D?(this.chipRevision=await this.getChipRevision(),this.chipRevision>=300?this.chipVariant="rev300":this.chipVariant="rev0",this.logger.debug(`ESP32-P4 variant: ${this.chipVariant}`)):this.chipFamily===R&&(this.chipRevision=await this.getChipRevision()),this.logger.debug(`Detected chip via magic value: ${s(t>>>0,8)} (${this.chipName})`)}async getChipRevision(){if(this.chipFamily===D){const t=await this.readRegister(1343410252);return 100*((t>>23&1)<<2|t>>4&3)+(15&t)}return this.chipFamily===R?await this.getChipRevisionC3():0}async getSecurityInfo(){const[,t]=await this.checkCommand(20,[],0);if(0===t.length)throw new Error("GET_SECURITY_INFO not supported or returned empty response");if(t.length<12)throw new Error(`Invalid security info response length: ${t.length} (expected at least 12 bytes)`);return{flags:Bi("<I",t.slice(0,4))[0],flashCryptCnt:t[4],keyPurposes:Array.from(t.slice(5,12)),chipId:t.length>=16?Bi("<I",t.slice(12,16))[0]:0,apiVersion:t.length>=20?Bi("<I",t.slice(16,20))[0]:0}}async getMacAddress(){if(!this._initializationSucceeded)throw new Error("getMacAddress() requires initialize() to have completed successfully");return this.macAddr().map(t=>t.toString(16).padStart(2,"0").toUpperCase()).join(":")}async readLoop(){this.debug&&this.logger.debug("Starting read loop"),this._reader=this.port.readable.getReader();try{let t=!0;for(;t;){const{value:e,done:i}=await this._reader.read();if(i){this._reader.releaseLock(),t=!1;break}if(!e||0===e.length)continue;const s=Array.from(e);Array.prototype.push.apply(this._inputBuffer,s),this._totalBytesRead+=e.length}}catch{}finally{if(this._isReconfiguring=!1,this._reader){try{this._reader.releaseLock(),this.logger.debug("Reader released in readLoop cleanup")}catch(t){this.logger.debug(`Reader release error in readLoop: ${t}`)}this._reader=void 0}}this.connected=!1,this._isESP32S2NativeUSB&&!this._initializationSucceeded&&(this.logger.log("ESP32-S2 Native USB detected - requesting port reselection"),this.dispatchEvent(new CustomEvent("esp32s2-usb-reconnect",{detail:{message:"ESP32-S2 Native USB requires port reselection"}}))),this._suppressDisconnect||this.dispatchEvent(new Event("disconnect")),this._suppressDisconnect=!1,this.logger.debug("Finished read loop")}sleep(t=100){return new Promise(e=>setTimeout(e,t))}async setRTS(t){await this.port.setSignals({requestToSend:t}),await this.setDTR(this.state_DTR)}async setDTR(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t})}async setDTRandRTS(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerial(){await this.setRTS(!1),await this.setDTR(!1),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(100),await this.setRTS(!0),await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!1),await this.setRTS(!1),await this.sleep(200)}async hardResetClassic(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setDTR(!0),await this.setRTS(!1),await this.sleep(50),await this.setDTR(!1),await this.sleep(200)}async hardResetToFirmware(){await this.setDTR(!1),await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),await this.sleep(50),await this.sleep(200)}async hardResetToFirmwareWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setRTSWebUSB(!1),await this.sleep(50),await this.sleep(200)}async hardResetUnixTight(){await this.setDTRandRTS(!0,!0),await this.setDTRandRTS(!1,!1),await this.setDTRandRTS(!1,!0),await this.sleep(100),await this.setDTRandRTS(!0,!1),await this.sleep(50),await this.setDTRandRTS(!1,!1),await this.setDTR(!1),await this.sleep(200)}async setRTSWebUSB(t){this.state_RTS=t,await this.port.setSignals({requestToSend:t,dataTerminalReady:this.state_DTR})}async setDTRWebUSB(t){this.state_DTR=t,await this.port.setSignals({dataTerminalReady:t,requestToSend:this.state_RTS})}async setDTRandRTSWebUSB(t,e){this.state_DTR=t,this.state_RTS=e,await this.port.setSignals({dataTerminalReady:t,requestToSend:e})}async hardResetUSBJTAGSerialWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetUSBJTAGSerialInvertedDTRWebUSB(){await this.setRTSWebUSB(!1),await this.setDTRWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setRTSWebUSB(!0),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200)}async hardResetClassicWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetUnixTightWebUSB(){await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRandRTSWebUSB(!0,!0),await this.setDTRandRTSWebUSB(!1,!0),await this.sleep(100),await this.setDTRandRTSWebUSB(!0,!1),await this.sleep(50),await this.setDTRandRTSWebUSB(!1,!1),await this.setDTRWebUSB(!1),await this.sleep(200)}async hardResetClassicLongDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(500),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(200),await this.setDTRWebUSB(!1),await this.sleep(500)}async hardResetClassicShortDelayWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(25),await this.setDTRWebUSB(!1),await this.sleep(100)}async hardResetInvertedWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedDTRWebUSB(){await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(100),await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(50),await this.setDTRWebUSB(!0),await this.sleep(200)}async hardResetInvertedRTSWebUSB(){await this.setDTRWebUSB(!1),await this.setRTSWebUSB(!1),await this.sleep(100),await this.setDTRWebUSB(!0),await this.setRTSWebUSB(!0),await this.sleep(50),await this.setDTRWebUSB(!1),await this.sleep(200)}isWebUSB(){return!0===this.port.isWebUSB}async connectWithResetStrategies(){const t=this.port.getInfo(),e=4097===t.usbProductId,i=12346===t.usbVendorId,s=[],a=this,n=!e&&!i;if(this.isWebUSB()){const r=4292===t.usbVendorId,h=6790===t.usbVendorId,o=12346===t.usbVendorId&&2===t.usbProductId;(e||i)&&(o?(s.push({name:"USB-JTAG/Serial (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB) - ESP32-S2",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"UnixTight (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - ESP32-S2 CDC",fn:async()=>await a.hardResetClassicWebUSB()})):(s.push({name:"USB-JTAG/Serial Inverted DTR (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialInvertedDTRWebUSB()}),s.push({name:"USB-JTAG/Serial (WebUSB)",fn:async()=>await a.hardResetUSBJTAGSerialWebUSB()}),s.push({name:"Inverted DTR Classic (WebUSB)",fn:async()=>await a.hardResetInvertedDTRWebUSB()}))),n&&(h?(s.push({name:"UnixTight (WebUSB) - CH34x",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CH34x",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CH34x",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):r?(s.push({name:"UnixTight (WebUSB) - CP2102",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB) - CP2102",fn:async()=>await a.hardResetClassicWebUSB()}),s.push({name:"Inverted Both (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedWebUSB()}),s.push({name:"Inverted RTS (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedRTSWebUSB()}),s.push({name:"Inverted DTR (WebUSB) - CP2102",fn:async()=>await a.hardResetInvertedDTRWebUSB()})):(s.push({name:"UnixTight (WebUSB)",fn:async()=>await a.hardResetUnixTightWebUSB()}),s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"Inverted Both (WebUSB)",fn:async function(){return await a.hardResetInvertedWebUSB()}}),s.push({name:"Inverted RTS (WebUSB)",fn:async function(){return await a.hardResetInvertedRTSWebUSB()}}),s.push({name:"Inverted DTR (WebUSB)",fn:async function(){return await a.hardResetInvertedDTRWebUSB()}}))),r||o||(6790!==t.usbVendorId&&s.push({name:"Classic (WebUSB)",fn:async function(){return await a.hardResetClassicWebUSB()}}),s.push({name:"UnixTight (WebUSB)",fn:async function(){return await a.hardResetUnixTightWebUSB()}}),s.push({name:"Classic Long Delay (WebUSB)",fn:async function(){return await a.hardResetClassicLongDelayWebUSB()}}),s.push({name:"Classic Short Delay (WebUSB)",fn:async function(){return await a.hardResetClassicShortDelayWebUSB()}}),e||i||s.push({name:"USB-JTAG/Serial fallback (WebUSB)",fn:async function(){return await a.hardResetUSBJTAGSerialWebUSB()}}))}else(e||i)&&s.push({name:"USB-JTAG/Serial",fn:async function(){return await a.hardResetUSBJTAGSerial()}}),s.push({name:"UnixTight",fn:async function(){return await a.hardResetUnixTight()}}),e||i||s.push({name:"USB-JTAG/Serial (fallback)",fn:async function(){return await a.hardResetUSBJTAGSerial()}});let h=null;for(const t of s)try{if(!this.connected||!this.port.writable){this.logger.debug(`Port disconnected, skipping ${t.name} reset`);continue}if(this._abandonCurrentOperation=!1,await t.fn(),n){if(await this.syncWithTimeout(2e3))return void this.logger.log(`Connected USB Serial successfully with ${t.name} reset.`);throw new Error("Sync timeout or abandoned")}{const e=this.sync(),i=new Promise((t,e)=>setTimeout(()=>e(new Error("Sync timeout")),1e3));try{return await Promise.race([e,i]),void this.logger.log(`Connected CDC/JTAG successfully with ${t.name} reset.`)}catch(t){throw new Error("Sync timeout or abandoned")}}}catch(t){if(h=t,this._abandonCurrentOperation=!0,await r(100),!this.connected||!this.port.writable){this.logger.log("Port disconnected during reset attempt");break}this._clearInputBuffer(),await this.drainInputBuffer(200),await this.flushSerialBuffers()}throw this._abandonCurrentOperation=!1,new Error(`Couldn't sync to ESP. Try resetting manually. Last error: ${null==h?void 0:h.message}`)}async watchdogReset(){await this.rtcWdtResetChipSpecific()}async usingUsbOtg(){let t,e;if(this.chipFamily===b)t=1073741076,e=2;else if(this.chipFamily===S)t=c,e=3;else{if(this.chipFamily!==D)return!1;null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=5}return(255&await this.readRegister(t))===e}async usingUsbJtagSerial(){let t,e;if(this.chipFamily===S)t=c,e=4;else if(this.chipFamily===R){let i;null===this.chipRevision&&(this.chipRevision=await this.getChipRevisionC3()),i=this.chipRevision<101?1070461028:1070461024,t=i+24,e=3}else if(this.chipFamily===B)t=1082520852,e=3;else if(this.chipFamily===v)t=1082652032,e=3;else if(this.chipFamily===D)null===this.chipRevision&&(this.chipRevision=await this.getChipRevision()),t=this.chipRevision<300?_:f,e=6;else{if(this.chipFamily!==T)return!1;t=1082457852,e=3}return(255&await this.readRegister(t))===e}async getChipRevisionC3(){if(this.chipFamily!==R)return 0;const t=await this.readRegister(1610647632)>>18&7;return(await this.readRegister(1610647640)>>23&7)<<3|t}async rtcWdtResetChipSpecific(){let t,e,i,s;if(this.logger.debug("Hard resetting with watchdog timer..."),this.chipFamily===b)t=1061191852,e=1061191828,i=1061191832,s=1356348065;else if(this.chipFamily===S)t=1610645680,e=1610645656,i=1610645660,s=1356348065;else if(this.chipFamily===R)t=1610645672,e=1610645648,i=1610645652,s=1356348065;else if(this.chipFamily===B||this.chipFamily===v)t=1611340824,e=1611340800,i=1611340804,s=1356348065;else{if(this.chipFamily!==D)throw new Error(`rtcWdtResetChipSpecific() is not supported for ${this.chipFamily}`);t=1343315992,e=1343315968,i=1343315972,s=1356348065}if(await this.writeRegister(t,s,void 0,0),this.chipFamily===b)try{await this.writeRegister(l,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===S)try{await this.writeRegister(d,0,1,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}else if(this.chipFamily===D)try{await this.writeRegister(1343291400,0,4,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}await this.writeRegister(i,2e3,void 0,0);await this.writeRegister(e,-805306110,void 0,0),await this.writeRegister(t,0,void 0,0),await this.sleep(500)}async tryUsbWdtReset(t,e,i,s,a){const r=await this.usingUsbOtg(),n=await this.usingUsbJtagSerial();if(r||n){const r=await this.readRegister(e),n=await this.readRegister(s);if(0===(r&i)&&0===(n&a))return await this.rtcWdtResetChipSpecific(),this.logger.debug(`${t}: RTC WDT reset (USB detected, GPIO0 low)`),!0}return!1}async hardResetS2(){await this.usingUsbOtg()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S2: RTC WDT reset (USB-OTG detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S2: Classic reset"))}async hardResetS3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-S3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-S3: Classic reset"))}async hardResetC3(){await this.usingUsbJtagSerial()?(await this.rtcWdtResetChipSpecific(),this.logger.debug("ESP32-C3: RTC WDT reset (USB-JTAG/Serial detected)")):(await this.hardResetClassic(),this.logger.debug("ESP32-C3: Classic reset"))}async hardReset(t=!1){if(this._consoleMode)return t?void this.logger.debug("Skipping bootloader reset - device is in console mode"):(this.logger.debug("Performing hardware reset (console mode)..."),this.isWebUSB()?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),void this.logger.debug("Hardware reset complete"));if(t)4097===this.port.getInfo().usbProductId?(await this.hardResetUSBJTAGSerial(),this.logger.debug("USB-JTAG/Serial reset.")):this.isWebUSB()?(await this.hardResetClassicWebUSB(),this.logger.debug("Classic reset (WebUSB/Android).")):(await this.hardResetClassic(),this.logger.debug("Classic reset."));else{if(this.chipFamily!==b||this._consoleMode){if(this.chipFamily===S&&!this._consoleMode){if(await this.tryUsbWdtReset("ESP32-S3",1610629176,8,d,1))return}}else{if(await this.tryUsbWdtReset("ESP32-S2",1061175352,8,l,1))return}this.isWebUSB()?(await this.setRTSWebUSB(!0),await this.sleep(200),await this.setRTSWebUSB(!1),await this.sleep(200),this.logger.debug("Hard reset (WebUSB).")):(await this.setRTS(!0),await this.sleep(100),await this.setRTS(!1),this.logger.debug("Hard reset."))}await new Promise(t=>setTimeout(t,1e3))}macAddr(){const t=new Array(6).fill(0),e=this._efuses[0],i=this._efuses[1],s=this._efuses[2],a=this._efuses[3];let r;if(this.chipFamily==w){if(0!=a)r=[a>>16&255,a>>8&255,255&a];else if(i>>16&255){if(1!=(i>>16&255))throw new Error("Couldnt determine OUI");r=[172,208,116]}else r=[24,254,52];t[0]=r[0],t[1]=r[1],t[2]=r[2],t[3]=i>>8&255,t[4]=255&i,t[5]=e>>24&255}else if(this.chipFamily==m)t[0]=s>>8&255,t[1]=255&s,t[2]=i>>24&255,t[3]=i>>16&255,t[4]=i>>8&255,t[5]=255&i;else{if(this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x)throw new Error("Unknown chip family");t[0]=i>>8&255,t[1]=255&i,t[2]=e>>24&255,t[3]=e>>16&255,t[4]=e>>8&255,t[5]=255&e}return t}async readRegister(t){this.debug&&this.logger.debug("Reading from Register "+s(t,8));const e=Ri("<I",t);await this.sendCommand(10,e);const[i]=await this.getResponse(10);return i}async checkCommand(t,e,i=0,a=3e3){const r=async()=>{a=Math.min(a,rt),await this.sendCommand(t,e,i);const[r,n]=await this.getResponse(t,a);if(null===n)throw new Error("Didn't get enough status bytes");let h=n,o=0;if(this.IS_STUB||this.chipFamily==w?o=2:[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)||20===t?o=4:[2,4].includes(h.length)?o=h.length:(o=2,this.logger.debug(`Unknown chip family, defaulting to 2-byte status (opcode: ${s(t)}, data.length: ${h.length})`)),h.length<o)throw new Error("Didn't get enough status bytes");const l=h.slice(-o,h.length);if(h=h.slice(0,-o),this.debug&&(this.logger.debug("status",l),this.logger.debug("value",r),this.logger.debug("data",h)),1==l[0])throw 5==l[1]?(await this.drainInputBuffer(200),new Error("Invalid (unsupported) command "+s(t))):new Error("Command failure error code "+s(l[1]));return[r,h]};return this._commandLock=this._commandLock.then(r,r),this._commandLock}async sendCommand(e,i,s=0){const a=t([...Ri("<BBHI",0,e,i.length,s),...i]);this.debug&&this.logger.debug(`Writing ${a.length} byte${1==a.length?"":"s"}:`,a),await this.writeToStream(a)}async readPacket(t){let e=null,a=!1;if(this._isCDCDevice){const n=Date.now();for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}if(0!==this._inputBufferAvailable)for(;this._inputBufferAvailable>0;){if(Date.now()-n>t){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}const r=this._readByte();if(null===e){if(r!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(r)+")");e=[]}else if(a)if(a=!1,r==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(r!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(r)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(r)+")");e.push(this.SLIP_ESC)}else if(r==this.SLIP_ESC)a=!0;else{if(r==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(r)}}else await r(1)}}else{let n=[];for(;;){if(this._abandonCurrentOperation)throw new ut("Operation abandoned (reset strategy timeout)");const h=Date.now();for(n=[];Date.now()-h<t;){if(this._inputBufferAvailable>0){n.push(this._readByte());break}await r(1)}if(0==n.length){throw new ut("Timed out waiting for packet "+(null===e?"header":"content"))}this.debug&&this.logger.debug("Read "+n.length+" bytes: "+i(n));for(const t of n)if(null===e){if(t!=this.SLIP_END)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid head of packet ("+s(t)+")");e=[]}else if(a)if(a=!1,t==this.SLIP_ESC_END)e.push(this.SLIP_END);else{if(t!=this.SLIP_ESC_ESC)throw this.debug&&(this.logger.debug("Read invalid data: "+s(t)),this.logger.debug("Remaining data in serial buffer: "+i(this._inputBuffer))),new ut("Invalid SLIP escape (0xdb, "+s(t)+")");e.push(this.SLIP_ESC)}else if(t==this.SLIP_ESC)a=!0;else{if(t==this.SLIP_END)return this.debug&&this.logger.debug("Received full packet: "+i(e)),this._compactInputBuffer(),e;e.push(t)}}}}async getResponse(t,e=3e3){for(let i=0;i<100;i++){const i=await this.readPacket(e);if(i.length<8)continue;const[a,r,,n]=Bi("<BBHI",i.slice(0,8));if(1!=a)continue;const h=i.slice(8);if(null==t||r==t)return[n,h];if(0!=h[0]&&5==h[1])throw await this.drainInputBuffer(200),new Error(`Invalid (unsupported) command ${s(t)}`)}throw new Error("Response doesn't match request")}checksum(t,e=239){for(const i of t)e^=i;return e}async setBaudrate(t){try{const e=Ri("<II",t,this.IS_STUB?o:0);await this.checkCommand(15,e)}catch(e){throw this.logger.error(`Baudrate change error: ${e}`),new Error(`Unable to change the baud rate to ${t}: No response from set baud rate command.`)}this._parent?await this._parent.reconfigurePort(t):await this.reconfigurePort(t),await r(nt),this._parent?this._parent.currentBaudRate=t:this.currentBaudRate=t;const e=this._parent?this._parent._maxUSBSerialBaudrate:this._maxUSBSerialBaudrate;e&&t>e&&(this.logger.log(`⚠️ WARNING: Baudrate ${t} exceeds USB-Serial chip limit (${e})!`),this.logger.log("⚠️ This may cause data corruption or connection failures!")),this.logger.log(`Changed baud rate to ${t}`)}async reconfigurePort(t){var e;this._isReconfiguring=!0;try{try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconfigure: ${t}`)}if(this.isWebUSB()){const e=this.port.getInfo(),i=6790===e.usbVendorId&&21971===e.usbProductId;if(!i&&"function"==typeof this.port.setBaudRate)return await this.port.setBaudRate(t),void await r(100)}if(this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconfigure: ${t}`)}this._writer=void 0}await(null===(e=this._reader)||void 0===e?void 0:e.cancel()),await this.port.close(),await this.port.open({baudRate:t}),await this.flushSerialBuffers(),this.readLoop()}catch(t){}finally{this._isReconfiguring=!1}}async syncWithTimeout(t){const e=Date.now();for(let i=0;i<5;i++){if(Date.now()-e>t)return!1;if(this._abandonCurrentOperation)return!1;this._clearInputBuffer();try{if(await this._sync())return await r(nt),!0}catch(t){if(this._abandonCurrentOperation)return!1}await r(nt)}return!1}async sync(){for(let t=0;t<5;t++){this._clearInputBuffer();if(await this._sync())return await r(nt),!0;await r(nt)}throw new Error("Couldn't sync to ESP. Try resetting.")}async _sync(){await this.sendCommand(8,p);for(let t=0;t<8;t++)try{const[,t]=await this.getResponse(8,nt);if(t.length>1&&0==t[0]&&0==t[1])return!0}catch(e){this.debug&&this.logger.debug(`Sync attempt ${t+1} failed: ${e}`)}return!1}getFlashWriteSize(){return this.IS_STUB?16384:1024}async flashData(t,e,i=0,a=!1){if(t.byteLength>=8){const e=Array.from(new Uint8Array(t,0,4)),i=e[0],a=e[2],r=e[3];this.logger.log(`Image header, Magic=${s(i)}, FlashMode=${s(a)}, FlashSizeFreq=${s(r)}`)}const r=t.byteLength;let n,h=0,o=st;a?(n=Si(new Uint8Array(t),{level:9}).buffer,h=n.byteLength,this.logger.log(`Writing data with filesize: ${r}. Compressed Size: ${h}`),o=await this.flashDeflBegin(r,h,i)):(this.logger.log(`Writing data with filesize: ${r}`),n=t,await this.flashBegin(r,i));let l=[],d=0,c=0,u=0;const g=Date.now(),_=this.getFlashWriteSize(),f=a?h:r;for(;f-u>0;)this.debug&&this.logger.log(`Writing at ${s(i+d*_,8)} `),f-u>=_?l=Array.from(new Uint8Array(n,u,_)):(l=Array.from(new Uint8Array(n,u,f-u)),a||(l=l.concat(new Array(_-l.length).fill(255)))),a?await this.flashDeflBlock(l,d,o):await this.flashBlock(l,d),d+=1,c+=a?Math.round(l.length*r/h):l.length,u+=_,e(Math.min(c,r),r);this.logger.log("Took "+(Date.now()-g)+"ms to write "+f+" bytes"),this.IS_STUB&&(await this.flashBegin(0,0),a?await this.flashDeflFinish():await this.flashFinish())}async flashBlock(t,e,i=3e3){await this.checkCommand(3,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashDeflBlock(t,e,i=3e3){await this.checkCommand(17,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t),i)}async flashBegin(t=0,e=0,i=!1){let a;await this.flushSerialBuffers();const r=this.getFlashWriteSize();!this.IS_STUB&&[m,b,S,y,R,B,v,U,T,I,C,D,x].includes(this.chipFamily)&&await this.checkCommand(13,new Array(8).fill(0));const n=Math.floor((t+r-1)/r);a=this.chipFamily!=w||this.IS_STUB?t:this.getEraseSize(e,t);const h=this.IS_STUB?st:dt(ht,t),o=Date.now();let l=Ri("<IIII",a,n,r,e);return this.chipFamily!=m&&this.chipFamily!=b&&this.chipFamily!=S&&this.chipFamily!=y&&this.chipFamily!=R&&this.chipFamily!=B&&this.chipFamily!=v&&this.chipFamily!=U&&this.chipFamily!=T&&this.chipFamily!=I&&this.chipFamily!=C&&this.chipFamily!=D&&this.chipFamily!=x||(l=l.concat(Ri("<I",i?1:0))),this.logger.log("Erase size "+a+", blocks "+n+", block size "+s(r,4)+", offset "+s(e,4)+", encrypted "+(i?"yes":"no")),await this.checkCommand(2,l,0,h),0==t||this.IS_STUB||this.logger.log("Took "+(Date.now()-o)+"ms to erase "+n+" bytes"),n}async flashDeflBegin(t=0,e=0,i=0){const s=this.getFlashWriteSize(),a=Math.floor((e+s-1)/s),r=Math.floor((t+s-1)/s);let n=0,h=0;this.IS_STUB?(n=t,h=dt(ht,n)):(n=r*s,h=st);const o=Ri("<IIII",n,a,s,i);return await this.checkCommand(16,o,0,h),h}async flashFinish(){const t=Ri("<I",1);await this.checkCommand(4,t)}async flashDeflFinish(){const t=Ri("<I",1);await this.checkCommand(18,t)}getBootloaderOffset(){return ct(this.getChipFamily()).flashOffs}async flashId(){return await this.runSpiFlashCommand(159,[],24)}getChipFamily(){return this._parent?this._parent.chipFamily:this.chipFamily}async writeRegister(t,e,i=4294967295,s=0,a=0){let r=Ri("<IIII",t,e,i,s);a>0&&(r=r.concat(Ri("<IIII",ct(this.getChipFamily()).uartDateReg,0,0,a))),await this.checkCommand(9,r)}async setDataLengths(t,e,i){if(-1!=t.mosiDlenOffs){const s=t.regBase+t.mosiDlenOffs,a=t.regBase+t.misoDlenOffs;e>0&&await this.writeRegister(s,e-1),i>0&&await this.writeRegister(a,i-1)}else{const s=t.regBase+t.usr1Offs,a=(0==i?0:i-1)<<8|(0==e?0:e-1)<<17;await this.writeRegister(s,a)}}async waitDone(t,e){for(let i=0;i<10;i++){if(0==(await this.readRegister(t)&e))return}throw Error("SPI command did not complete in time")}async runSpiFlashCommand(t,e,i=0){const a=ct(this.getChipFamily()),r=a.regBase,n=r,h=r+a.usrOffs,o=r+a.usr2Offs,l=r+a.w0Offs,d=1<<18;if(i>32)throw new Error("Reading more than 32 bits back from a SPI flash operation is unsupported");if(e.length>64)throw new Error("Writing more than 64 bytes of data with one SPI command is unsupported");const c=8*e.length,u=await this.readRegister(h),g=await this.readRegister(o);let _=1<<31;if(i>0&&(_|=268435456),c>0&&(_|=134217728),await this.setDataLengths(a,c,i),await this.writeRegister(h,_),await this.writeRegister(o,7<<28|t),0==c)await this.writeRegister(l,0);else{const t=(4-e.length%4)%4;e=e.concat(new Array(t).fill(0));const i=Bi("I".repeat(Math.floor(e.length/4)),e);let a=l;this.logger.debug(`Words Length: ${i.length}`);for(const t of i)this.logger.debug(`Writing word ${s(t)} to register offset ${s(a)}`),await this.writeRegister(a,t),a+=4}await this.writeRegister(n,d),await this.waitDone(n,d);const f=await this.readRegister(l);return await this.writeRegister(h,u),await this.writeRegister(o,g),f}async detectFlashSize(){this.logger.log("Detecting Flash Size");const t=await this.flashId(),e=255&t,i=t>>16&255;this.logger.log(`FlashId: ${s(t)}`),this.logger.log(`Flash Manufacturer: ${e.toString(16)}`),this.logger.log(`Flash Device: ${(t>>8&255).toString(16)}${i.toString(16)}`),this.flashSize=n[i],this.logger.log(`Auto-detected Flash size: ${this.flashSize}`)}getEraseSize(t,e){const i=h,s=Math.floor((e+i-1)/i);let a=16-Math.floor(t/i)%16;return s<a&&(a=s),s<2*a?Math.floor((s+1)/2*i):(s-a)*i}async memBegin(t,e,i,s){return await this.checkCommand(5,Ri("<IIII",t,e,i,s))}async memBlock(t,e){return await this.checkCommand(7,Ri("<IIII",t.length,e,0,0).concat(t),this.checksum(t))}async memFinish(t=0){const e=this.IS_STUB?st:500,i=Ri("<II",0==t?1:0,t);return await this.checkCommand(6,i,0,e)}async runStub(t=!1){const e=await gt(this.chipFamily,this.chipRevision);if(null===e)return this.logger.log(`Stub flasher is not yet supported on ${this.chipName}, using ROM loader`),this;const i=2048;this.logger.log("Uploading stub...");for(const t of["text","data"]){const s=e[t],a=e[`${t}_start`],r=s.length,n=Math.floor((r+i-1)/i);await this.memBegin(r,n,i,a);for(const t of Array(n).keys()){const e=t*i;let a=e+i;a>r&&(a=r),await this.memBlock(s.slice(e,a),t)}}await this.memFinish(e.entry);const s=await this.readPacket(500),a=String.fromCharCode(...s);if("OHAI"!=a)throw new Error("Failed to start stub. Unexpected response: "+a);this.logger.log("Stub is now running...");const r=new Ui(this.port,this.logger,this);return t||await r.detectFlashSize(),r}get _reader(){return this._parent?this._parent._reader:this.__reader}set _reader(t){this._parent?this._parent._reader=t:this.__reader=t}get _writer(){return this._parent?this._parent._writer:this.__writer}set _writer(t){this._parent?this._parent._writer=t:this.__writer=t}get _writeChain(){return this._parent?this._parent._writeChain:this.__writeChain}set _writeChain(t){this._parent?this._parent._writeChain=t:this.__writeChain=t}async writeToStream(t){if(this.port.writable){if(this._isReconfiguring)throw new Error("Cannot write during port reconfiguration");this._writeChain=this._writeChain.then(async()=>{if(!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.error(`Failed to get writer: ${t}`),t}await this._writer.write(new Uint8Array(t))},async()=>{if(this.logger.debug("Previous write failed, attempting recovery for current write"),!this.port.writable)throw new Error("Port became unavailable during write");if(!this._writer)try{this._writer=this.port.writable.getWriter()}catch(t){throw this.logger.debug(`Failed to get writer in recovery: ${t}`),new Error("Cannot acquire writer lock")}await this._writer.write(new Uint8Array(t))}).catch(t=>{if(this.logger.error(`Write error: ${t}`),this._writer){try{this._writer.releaseLock()}catch{}this._writer=void 0}throw t}),await this._writeChain}else this.logger.debug("Port writable stream not available, skipping write")}async disconnect(){if(this._parent)await this._parent.disconnect();else if(this.port.writable){try{await this._writeChain}catch(t){}if(this._writer){try{await this._writer.close(),this._writer.releaseLock()}catch(t){}this._writer=void 0}else try{const t=this.port.writable.getWriter();await t.close(),t.releaseLock()}catch(t){}await new Promise(t=>{if(!this._reader)return void t(void 0);const e=setTimeout(()=>{this.logger.debug("Disconnect timeout - forcing resolution"),t(void 0)},1e3);this.addEventListener("disconnect",()=>{clearTimeout(e),t(void 0)},{once:!0});try{this._reader.cancel()}catch(i){clearTimeout(e),t(void 0)}}),this.connected=!1;try{await this.port.close(),this.logger.debug("Port closed successfully")}catch(t){this.logger.debug(`Port close error: ${t}`)}}}async releaseReaderWriter(){if(this._parent)return void await this._parent.releaseReaderWriter();if(!await this._resetToFirmwareIfNeeded()){try{await this._writeChain}catch(t){}if(this._writer){try{this._writer.releaseLock(),this.logger.debug("Writer released")}catch(t){this.logger.debug(`Writer release error: ${t}`)}this._writer=void 0}if(this._reader){const t=this._reader;try{this._suppressDisconnect=!0,await t.cancel(),this.logger.debug("Reader cancelled")}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}finally{try{t.releaseLock()}catch(t){this.logger.debug(`Reader release error: ${t}`)}}this._reader===t&&(this._reader=void 0)}}}async resetToFirmware(){return await this._resetToFirmwareIfNeeded()}async detectUsbConnectionType(){const t=this.port.getInfo(),e=t.usbProductId,i=t.usbVendorId;this.logger.debug(`USB detection: VID=0x${null==i?void 0:i.toString(16)}, PID=0x${null==e?void 0:e.toString(16)}`);if(!(12346===i))return this.logger.debug("Not Espressif VID - external serial chip"),!1;const s=[2,4097].includes(e||0);return this.logger.debug(`USB-JTAG/OTG detection: ${s?"YES":"NO"} (PID=0x${null==e?void 0:e.toString(16)})`),s}async enterConsoleMode(){let t;this._consoleMode=!0;try{t=await this.detectUsbConnectionType(),this.logger.debug("USB connection type detected: "+(t?"USB-JTAG/OTG":"External Serial Chip")),this._isUsbJtagOrOtg=t}catch(e){if(void 0===this.isUsbJtagOrOtg)throw new Error(`Cannot enter console mode: USB connection type unknown and detection failed: ${e}`);this.logger.debug(`USB detection failed, using cached value: ${this.isUsbJtagOrOtg}`),t=this.isUsbJtagOrOtg}if(t){return await this._resetToFirmwareIfNeeded()}try{await this.releaseReaderWriter(),await this.sleep(100)}catch(t){this.logger.debug(`Failed to release locks: ${t}`)}try{await this.hardReset(!1),this.logger.log("Device reset to firmware mode")}catch(t){this.logger.debug(`Could not reset device: ${t}`)}if(this.isWebUSB())try{await this.port.recreateStreams(),this.logger.debug("WebUSB streams recreated for console mode")}catch(t){this.logger.debug(`Failed to recreate WebUSB streams: ${t}`)}return!1}async _resetToFirmwareIfNeeded(){try{if(!0===this.isUsbJtagOrOtg){const t=this.chipFamily===b||this.chipFamily===S?"USB-JTAG/Serial or USB-OTG":"USB-JTAG/Serial";if(this.logger.log(`Resetting ${this.chipName||"device"} (${t}) to boot into firmware...`),this._consoleMode=!0,this.chipFamily===b||this.chipFamily===S){const t=this.chipFamily===b?l:d,e=(this.chipFamily,1);try{await this.writeRegister(t,0,e,0),this.logger.debug("Cleared force download boot mask")}catch(t){this.logger.debug(`Expected error clearing force download boot mask: ${t}`)}}try{await this.rtcWdtResetChipSpecific(),this.logger.debug("Watchdog reset triggered successfully")}catch(t){this.logger.debug(`Watchdog reset initiated (connection lost as expected: ${t})`)}return this.logger.log("Waiting for device to boot into firmware..."),await this.sleep(1e3),this.connected=!1,this._writer=void 0,this._reader=void 0,this.logger.debug("Device reset to firmware mode (port closed)"),!0}}catch(t){this.logger.debug(`Could not reset device to firmware mode: ${t}`)}return!1}async reconnect(){if(this._parent)await this._parent.reconnect();else try{this.logger.log("Reconnecting serial port...");const t=this.currentBaudRate;this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1;const e=this.chipFamily,i=this.chipName,s=this.chipRevision,a=this.chipVariant,r=this.flashSize;if(await this.hardReset(!0),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await this.flushSerialBuffers(),await this.sync(),this.chipFamily=e,this.chipName=i,this.chipRevision=s,this.chipVariant=a,this.flashSize=r,this.logger.debug(`Reconnect complete (chip: ${this.chipName})`),!this.port.writable||!this.port.readable)throw new Error("Port not ready after reconnect");const n=await this.runStub(!0);if(this.logger.debug("Stub loaded"),t!==o&&(await n.setBaudrate(t),!this.port.writable||!this.port.readable))throw new Error(`Port not ready after baudrate change (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this.IS_STUB=!0,this.logger.debug("Reconnection successful")}catch(t){throw this._isReconfiguring=!1,t}}async reconnectToBootloader(){if(this._parent)await this._parent.reconnectToBootloader();else try{this.logger.log("Reconnecting to bootloader mode..."),this._consoleMode=!1,this.connected=!1,this.__inputBuffer=[],this.__inputBufferReadIndex=0;try{await this._writeChain}catch(t){this.logger.debug(`Pending write error during reconnect: ${t}`)}if(this._isReconfiguring=!0,this._writer){try{this._writer.releaseLock()}catch(t){this.logger.debug(`Writer release error during reconnect: ${t}`)}this._writer=void 0}if(this._reader){try{await this._reader.cancel()}catch(t){this.logger.debug(`Reader cancel error: ${t}`)}this._reader=void 0}try{await this.port.close(),this.logger.debug("Port closed")}catch(t){this.logger.debug(`Port close error: ${t}`)}this.logger.debug("Opening port...");try{await this.port.open({baudRate:o}),this.connected=!0,this.currentBaudRate=o}catch(t){throw new Error(`Failed to open port: ${t}`)}if(!this.port.readable||!this.port.writable)throw new Error(`Port streams not available after open (readable: ${!!this.port.readable}, writable: ${!!this.port.writable})`);this._isReconfiguring=!1,this.__chipFamily=void 0,this.chipName="Unknown Chip",this.chipRevision=null,this.chipVariant=null,this.IS_STUB=!1,this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0,this.__totalBytesRead=0,this.readLoop()),await r(100),await this.connectWithResetStrategies(),await this.detectChip(),this.logger.log(`Reconnected to bootloader: ${this.chipName}`)}catch(t){throw this._isReconfiguring=!1,t}}async exitConsoleMode(){if(this._parent)return await this._parent.exitConsoleMode();this._consoleMode=!1;const t=this.chipFamily===b;let e=this._isUsbJtagOrOtg;if(t&&void 0===e)try{e=await this.detectUsbConnectionType()}catch(t){this.logger.debug(`USB detection failed, assuming USB-JTAG/OTG for ESP32-S2: ${t}`),e=!0}if(t&&e){this.logger.log("ESP32-S2 USB detected - reconnecting to bootloader");try{await this.reconnectToBootloader()}catch(t){this.logger.debug(`Reconnect error (expected for ESP32-S2): ${t}`)}return!0}return await this.reconnectToBootloader(),!1}isConsoleResetSupported(){if(this._parent)return this._parent.isConsoleResetSupported();return!(this.chipFamily===b&&(!0===this._isUsbJtagOrOtg||void 0===this._isUsbJtagOrOtg))}async resetInConsoleMode(){if(this._parent)return await this._parent.resetInConsoleMode();if(!this.isConsoleResetSupported())return void this.logger.debug("Console reset not supported for ESP32-S2 USB-JTAG/CDC");const t=!0===this.port.isWebUSB;try{this.logger.debug("Resetting device in console mode"),t?await this.hardResetToFirmwareWebUSB():await this.hardResetToFirmware(),this.logger.debug("Device reset complete")}catch(t){throw this.logger.error(`Reset failed: ${t}`),t}}async drainInputBuffer(t=200){await r(t);let e=0;const i=Date.now();for(;e<112&&Date.now()-i<100;)if(this._inputBufferAvailable>0){void 0!==this._readByte()&&e++}else await r(1);e>0&&this.logger.debug(`Drained ${e} bytes from input buffer`),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0)}async flushSerialBuffers(){this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),await r(nt),this._parent||(this.__inputBuffer=[],this.__inputBufferReadIndex=0),this.logger.debug("Serial buffers flushed")}async readFlash(e,i,s,a){if(!this.IS_STUB)throw new Error("Reading flash is only supported in stub mode. Please run runStub() first.");let n;await this.flushSerialBuffers(),this.logger.log(`Reading ${i} bytes from flash at address 0x${e.toString(16)}...`),this.isWebUSB()&&(this._isCDCDevice?(this._adaptiveBlockMultiplier=8,this._adaptiveMaxInFlightMultiplier=8,this._consecutiveSuccessfulChunks=0,this.logger.debug(`CDC device - Initialized: blockMultiplier=${this._adaptiveBlockMultiplier}, maxInFlightMultiplier=${this._adaptiveMaxInFlightMultiplier}`)):(this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0,this.logger.debug("Non-CDC device - Fixed values: blockSize=31, maxInFlight=31"))),void 0!==(null==a?void 0:a.chunkSize)?(n=a.chunkSize,this.logger.log(`Using custom chunk size: 0x${n.toString(16)} bytes`)):n=this.isWebUSB()?16384:262144;let h=new Uint8Array(0),o=e,l=i;for(;l>0;){const e=Math.min(n,l);let d=!1,c=0;const u=5;let g=!1;for(;!d&&c<=u;){let i=new Uint8Array(0),s=0;try{let n,l;if(0===c&&this.logger.debug(`Reading chunk at 0x${o.toString(16)}, size: 0x${e.toString(16)}`),void 0!==(null==a?void 0:a.blockSize)&&void 0!==(null==a?void 0:a.maxInFlight))n=a.blockSize,l=a.maxInFlight,0===c&&this.logger.debug(`Using custom parameters: blockSize=${n}, maxInFlight=${l}`);else if(this.isWebUSB()){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2);n=e*this._adaptiveBlockMultiplier,l=e*this._adaptiveMaxInFlightMultiplier}else{const t=63;n=65*t,l=130*t}const u=Ri("<IIII",o,e,n,l),[g]=await this.checkCommand(210,u);if(0!=g)throw new Error("Failed to read memory: "+g);for(;i.length<e;){let a;try{a=await this.readPacket(100)}catch(t){if(t instanceof ut){this.logger.debug(`SLIP read error at ${i.length} bytes: ${t.message}`);try{const t=[this.SLIP_END,this.SLIP_END];await this.writeToStream(t),this.logger.debug("Sent abort frame to stub"),await r(50)}catch(t){this.logger.debug(`Abort frame error: ${t}`)}if(await this.drainInputBuffer(200),i.length>=e)break}throw t}if(a&&a.length>0){const r=new Uint8Array(a),n=new Uint8Array(i.length+r.length);n.set(i),n.set(r,i.length),i=n;if(i.length>=e||i.length>=s+l){const e=Ri("<I",i.length),a=t(e);await this.writeToStream(a),s=i.length}}}const _=new Uint8Array(h.length+i.length);if(_.set(h),_.set(i,h.length),h=_,d=!0,this.isWebUSB()&&this._isCDCDevice&&0===c&&(this._consecutiveSuccessfulChunks++,this._consecutiveSuccessfulChunks>=2)){const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=8,s=8;let a=!1;if(this._adaptiveBlockMultiplier<i?(this._adaptiveBlockMultiplier=Math.min(2*this._adaptiveBlockMultiplier,i),a=!0):this._adaptiveMaxInFlightMultiplier<s&&(this._adaptiveMaxInFlightMultiplier=Math.min(2*this._adaptiveMaxInFlightMultiplier,s),a=!0),a){const t=e*this._adaptiveBlockMultiplier,i=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Speed increased: blockSize=${t}, maxInFlight=${i}`),this._lastAdaptiveAdjustment=Date.now()}this._consecutiveSuccessfulChunks=0}}catch(t){if(c++,this.isWebUSB()&&this._isCDCDevice&&1===c)if(this._adaptiveBlockMultiplier>1||this._adaptiveMaxInFlightMultiplier>1){this._adaptiveBlockMultiplier=1,this._adaptiveMaxInFlightMultiplier=1,this._consecutiveSuccessfulChunks=0;const t=this.port.maxTransferSize||64,e=Math.floor((t-2)/2),i=e*this._adaptiveBlockMultiplier,s=e*this._adaptiveMaxInFlightMultiplier;this.logger.debug(`Error at higher speed - reduced to minimum: blockSize=${i}, maxInFlight=${s}`)}else this.logger.debug("Error at minimum speed (blockSize=31, maxInFlight=31) - not a speed issue");if(!(t instanceof ut))throw t;if(c<=u){this.logger.debug(`${t.message} at 0x${o.toString(16)}. Draining buffer and retrying (attempt ${c}/${u})...`);try{await this.drainInputBuffer(200),await this.flushSerialBuffers(),await r(nt)}catch(t){this.logger.debug(`Buffer drain error: ${t}`)}}else{if(g)throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery attempt`);g=!0,this.logger.log(`All retries exhausted at 0x${o.toString(16)}. Attempting recovery (close and reopen port)...`);try{await this.reconnect(),this.logger.log("Deep recovery successful. Resuming read from current position..."),c=0;continue}catch(t){throw new Error(`Failed to read chunk at 0x${o.toString(16)} after ${u} retries and recovery failed: ${t}`)}}}}s&&s(new Uint8Array(e),h.length,i),o+=e,l-=e,this.logger.debug(`Total progress: 0x${h.length.toString(16)} from 0x${i.toString(16)} bytes`)}return h}}class Ui extends vi{constructor(){super(...arguments),this.IS_STUB=!0}async memBegin(t,e,i,a){const r=await gt(this.chipFamily,this.chipRevision);if(null===r)return[0,[]];const n=a,h=a+t;this.logger.debug(`Load range: ${s(n,8)}-${s(h,8)}`),this.logger.debug(`Stub data: ${s(r.data_start,8)}, len: ${r.data.length}, text: ${s(r.text_start,8)}, len: ${r.text.length}`);for(const[t,e]of[[r.data_start,r.data_start+r.data.length],[r.text_start,r.text_start+r.text.length]])if(n<e&&h>t)throw new Error("Software loader is resident at "+s(t,8)+"-"+s(e,8)+". Can't load binary at overlapping address range "+s(n,8)+"-"+s(h,8)+". Try changing the binary loading address.");return[0,[]]}async eraseFlash(){await this.checkCommand(208,[],0,at)}async eraseRegion(t,e){if(t<0)throw new Error(`Invalid offset: ${t} (must be non-negative)`);if(e<0)throw new Error(`Invalid size: ${e} (must be non-negative)`);if(0===e)return void this.logger.log("eraseRegion: size is 0, skipping erase");if(t%h!==0)throw new Error(`Offset ${t} (0x${t.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);if(e%h!==0)throw new Error(`Size ${e} (0x${e.toString(16)}) is not aligned to flash sector size 4096 (0x${h.toString(16)})`);const i=4294967295;if(t>i)throw new Error(`Offset ${t} exceeds maximum value 4294967295`);if(e>i)throw new Error(`Size ${e} exceeds maximum value 4294967295`);if(t+e>i)throw new Error(`Region end (offset + size = ${t+e}) exceeds maximum addressable range 4294967295`);const s=dt(ht,e),a=Ri("<II",t,e);await this.checkCommand(209,a,0,s)}}const Ti=async t=>{let e;const i=globalThis.requestSerialPort;if("function"==typeof i)e=await i();else{if(!navigator.serial)throw new Error("Web Serial API is not supported in this browser. Please use Chrome, Edge, or Opera on desktop, or Chrome on Android. Note: The page must be served over HTTPS or localhost.");e=await navigator.serial.requestPort()}return e.readable&&e.writable||await e.open({baudRate:o}),new vi(e,t)},Ii=async(t,e)=>{if(!t)throw new Error("Port is required");return t.readable&&t.writable||await t.open({baudRate:o}),new vi(t,e)};export{at as CHIP_ERASE_TIMEOUT,m as CHIP_FAMILY_ESP32,y as CHIP_FAMILY_ESP32C2,R as CHIP_FAMILY_ESP32C3,B as CHIP_FAMILY_ESP32C5,v as CHIP_FAMILY_ESP32C6,U as CHIP_FAMILY_ESP32C61,T as CHIP_FAMILY_ESP32H2,C as CHIP_FAMILY_ESP32H21,I as CHIP_FAMILY_ESP32H4,D as CHIP_FAMILY_ESP32P4,b as CHIP_FAMILY_ESP32S2,S as CHIP_FAMILY_ESP32S3,x as CHIP_FAMILY_ESP32S31,w as CHIP_FAMILY_ESP8266,st as DEFAULT_TIMEOUT,ht as ERASE_REGION_TIMEOUT_PER_MB,vi as ESPLoader,H as ESP_CHANGE_BAUDRATE,K as ESP_CHECKSUM_MAGIC,N as ESP_ERASE_FLASH,V as ESP_ERASE_REGION,O as ESP_FLASH_BEGIN,E as ESP_FLASH_DATA,Y as ESP_FLASH_DEFL_BEGIN,X as ESP_FLASH_DEFL_DATA,Q as ESP_FLASH_DEFL_END,W as ESP_FLASH_END,q as ESP_GET_SECURITY_INFO,z as ESP_MEM_BEGIN,$ as ESP_MEM_DATA,A as ESP_MEM_END,it as ESP_RAM_BLOCK,J as ESP_READ_FLASH,L as ESP_READ_REG,G as ESP_SPI_ATTACH,j as ESP_SPI_FLASH_MD5,Z as ESP_SPI_SET_PARAMS,P as ESP_SYNC,M as ESP_WRITE_REG,lt as FLASH_READ_TIMEOUT,rt as MAX_TIMEOUT,ot as MEM_END_ROM_TIMEOUT,tt as ROM_INVALID_RECV_MSG,nt as SYNC_TIMEOUT,et as USB_RAM_BLOCK,Ti as connect,Ii as connectWithPort,a as formatMacAddr,i as hexFormatter,r as sleep,s as toHex};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tasmota-webserial-esptool",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.14",
|
|
4
4
|
"description": "World's first tool for flashing and reading ESP devices on Android mobile devices using WebUSB. Flash & Read ESP devices using WebSerial/WebUSB - up to 10x faster flash read than esptool.py",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
package/src/esp_loader.ts
CHANGED
|
@@ -3365,16 +3365,11 @@ export class ESPLoader extends EventTarget {
|
|
|
3365
3365
|
/**
|
|
3366
3366
|
* @name detectUsbConnectionType
|
|
3367
3367
|
* Detect if device is using USB-JTAG/Serial or USB-OTG (not external serial chip)
|
|
3368
|
-
* Uses USB PID (Product ID) for reliable detection
|
|
3368
|
+
* Uses USB PID (Product ID) for reliable detection - does NOT require chipFamily
|
|
3369
3369
|
* @returns true if USB-JTAG or USB-OTG, false if external serial chip
|
|
3370
|
-
* @throws Error if chipFamily is not set
|
|
3371
3370
|
*/
|
|
3372
3371
|
public async detectUsbConnectionType(): Promise<boolean> {
|
|
3373
|
-
|
|
3374
|
-
throw new Error("Cannot detect USB connection type: chipFamily not set");
|
|
3375
|
-
}
|
|
3376
|
-
|
|
3377
|
-
// Use PID-based detection (most reliable method)
|
|
3372
|
+
// Use PID-based detection
|
|
3378
3373
|
const portInfo = this.port.getInfo();
|
|
3379
3374
|
const pid = portInfo.usbProductId;
|
|
3380
3375
|
const vid = portInfo.usbVendorId;
|
|
@@ -3391,13 +3386,12 @@ export class ESPLoader extends EventTarget {
|
|
|
3391
3386
|
return false;
|
|
3392
3387
|
}
|
|
3393
3388
|
|
|
3394
|
-
// ESP32-S2/S3/C3/C6/H2 USB-JTAG/OTG PIDs
|
|
3395
|
-
//
|
|
3396
|
-
//
|
|
3397
|
-
//
|
|
3398
|
-
//
|
|
3399
|
-
|
|
3400
|
-
const usbJtagPids = [0x1001, 0x0002, 0x1000, 0x4008, 0x4009];
|
|
3389
|
+
// ESP32-S2/S3/C3/C5/C6/C61/H2/P4 USB-JTAG/OTG PIDs
|
|
3390
|
+
// According to official Espressif documentation:
|
|
3391
|
+
// https://docs.espressif.com/projects/esp-iot-solution/en/latest/usb/usb_overview/usb_device_const_COM.html
|
|
3392
|
+
// 0x0002 = ESP32-S2 USB-OTG
|
|
3393
|
+
// 0x1001 = ESP32-S3, C3, C5, C6, C61, H2, P4 USB-Serial-JTAG
|
|
3394
|
+
const usbJtagPids = [0x0002, 0x1001];
|
|
3401
3395
|
const isUsbJtag = usbJtagPids.includes(pid || 0);
|
|
3402
3396
|
|
|
3403
3397
|
this.logger.debug(
|
|
@@ -3418,13 +3412,15 @@ export class ESPLoader extends EventTarget {
|
|
|
3418
3412
|
this._consoleMode = true;
|
|
3419
3413
|
|
|
3420
3414
|
// Re-detect USB connection type to ensure we have a definitive value
|
|
3421
|
-
// This handles cases where isUsbJtagOrOtg might be undefined
|
|
3422
3415
|
let isUsbJtag: boolean;
|
|
3423
3416
|
try {
|
|
3424
3417
|
isUsbJtag = await this.detectUsbConnectionType();
|
|
3425
3418
|
this.logger.debug(
|
|
3426
3419
|
`USB connection type detected: ${isUsbJtag ? "USB-JTAG/OTG" : "External Serial Chip"}`,
|
|
3427
3420
|
);
|
|
3421
|
+
|
|
3422
|
+
// CRITICAL: Set the cached value so _resetToFirmwareIfNeeded() can use it
|
|
3423
|
+
this._isUsbJtagOrOtg = isUsbJtag;
|
|
3428
3424
|
} catch (err) {
|
|
3429
3425
|
// If detection fails, fall back to cached value or fail-fast
|
|
3430
3426
|
if (this.isUsbJtagOrOtg === undefined) {
|