You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NewEduCoderBuild/umi.ebc5efcd.js

1486 lines
2.9 MiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

(function(){var __webpack_modules__={30071:function(d,v,e){"use strict";e.r(v),e.d(v,{blue:function(){return oe},blueDark:function(){return je},cyan:function(){return ne},cyanDark:function(){return He},geekblue:function(){return q},geekblueDark:function(){return Dt},generate:function(){return A},gold:function(){return K},goldDark:function(){return ie},gray:function(){return ee},green:function(){return ae},greenDark:function(){return Ie},grey:function(){return se},greyDark:function(){return Zt},lime:function(){return W},limeDark:function(){return Se},magenta:function(){return V},magentaDark:function(){return It},orange:function(){return N},orangeDark:function(){return j},presetDarkPalettes:function(){return Rt},presetPalettes:function(){return J},presetPrimaryColors:function(){return P},purple:function(){return X},purpleDark:function(){return ht},red:function(){return M},redDark:function(){return le},volcano:function(){return B},volcanoDark:function(){return z},yellow:function(){return H},yellowDark:function(){return me}});var r=e(20068);const i=Math.round;function l(ar,$e){const gt=ar.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],Mt=gt.map(et=>parseFloat(et));for(let et=0;et<3;et+=1)Mt[et]=$e(Mt[et]||0,gt[et]||"",et);return gt[3]?Mt[3]=gt[3].includes("%")?Mt[3]/100:Mt[3]:Mt[3]=1,Mt}const c=(ar,$e,gt)=>gt===0?ar:ar/100;function f(ar,$e){const gt=$e||255;return ar>gt?gt:ar<0?0:ar}class o{constructor($e){(0,r.Z)(this,"isValid",!0),(0,r.Z)(this,"r",0),(0,r.Z)(this,"g",0),(0,r.Z)(this,"b",0),(0,r.Z)(this,"a",1),(0,r.Z)(this,"_h",void 0),(0,r.Z)(this,"_s",void 0),(0,r.Z)(this,"_l",void 0),(0,r.Z)(this,"_v",void 0),(0,r.Z)(this,"_max",void 0),(0,r.Z)(this,"_min",void 0),(0,r.Z)(this,"_brightness",void 0);function gt(Mt){return Mt[0]in $e&&Mt[1]in $e&&Mt[2]in $e}if($e)if(typeof $e=="string"){let et=function(ft){return Mt.startsWith(ft)};const Mt=$e.trim();/^#?[A-F\d]{3,8}$/i.test(Mt)?this.fromHexString(Mt):et("rgb")?this.fromRgbString(Mt):et("hsl")?this.fromHslString(Mt):(et("hsv")||et("hsb"))&&this.fromHsvString(Mt)}else if($e instanceof o)this.r=$e.r,this.g=$e.g,this.b=$e.b,this.a=$e.a,this._h=$e._h,this._s=$e._s,this._l=$e._l,this._v=$e._v;else if(gt("rgb"))this.r=f($e.r),this.g=f($e.g),this.b=f($e.b),this.a=typeof $e.a=="number"?f($e.a,1):1;else if(gt("hsl"))this.fromHsl($e);else if(gt("hsv"))this.fromHsv($e);else throw new Error("@ant-design/fast-color: unsupported input "+JSON.stringify($e))}setR($e){return this._sc("r",$e)}setG($e){return this._sc("g",$e)}setB($e){return this._sc("b",$e)}setA($e){return this._sc("a",$e,1)}setHue($e){const gt=this.toHsv();return gt.h=$e,this._c(gt)}getLuminance(){function $e(ft){const ot=ft/255;return ot<=.03928?ot/12.92:Math.pow((ot+.055)/1.055,2.4)}const gt=$e(this.r),Mt=$e(this.g),et=$e(this.b);return .2126*gt+.7152*Mt+.0722*et}getHue(){if(typeof this._h=="undefined"){const $e=this.getMax()-this.getMin();$e===0?this._h=0:this._h=i(60*(this.r===this.getMax()?(this.g-this.b)/$e+(this.g<this.b?6:0):this.g===this.getMax()?(this.b-this.r)/$e+2:(this.r-this.g)/$e+4))}return this._h}getSaturation(){if(typeof this._s=="undefined"){const $e=this.getMax()-this.getMin();$e===0?this._s=0:this._s=$e/this.getMax()}return this._s}getLightness(){return typeof this._l=="undefined"&&(this._l=(this.getMax()+this.getMin())/510),this._l}getValue(){return typeof this._v=="undefined"&&(this._v=this.getMax()/255),this._v}getBrightness(){return typeof this._brightness=="undefined"&&(this._brightness=(this.r*299+this.g*587+this.b*114)/1e3),this._brightness}darken($e=10){const gt=this.getHue(),Mt=this.getSaturation();let et=this.getLightness()-$e/100;return et<0&&(et=0),this._c({h:gt,s:Mt,l:et,a:this.a})}lighten($e=10){const gt=this.getHue(),Mt=this.getSaturation();let et=this.getLightness()+$e/100;return et>1&&(et=1),this._c({h:gt,s:Mt,l:et,a:this.a})}mix($e,gt=50){const Mt=this._c($e),et=gt/100,ft=Je=>(Mt[Je]-this[Je])*et+this[Je],ot={r:i(ft("r")),g:i(ft("g")),b:i(ft("b")),a:i(ft("a")*100)/100};return this._c(ot)}tint($e=10){return this.mix({r:255,g:255,b:255,a:1},$e)}shade($e=10){return this.mix({r:0,g:0,b:0,a:1},$e)}onBackground($e){const gt=this._c($e),Mt=this.a+gt.a*(1-this.a),et=ft=>i((this[ft]*this.a+gt[ft]*gt.a*(1-this.a))/Mt);return this._c({r:et("r"),g:et("g"),b:et("b"),a:Mt})}isDark(){return this.getBrightness()<128}isLight(){return this.getBrightness()>=128}equals($e){return this.r===$e.r&&this.g===$e.g&&this.b===$e.b&&this.a===$e.a}clone(){return this._c(this)}toHexString(){let $e="#";const gt=(this.r||0).toString(16);$e+=gt.length===2?gt:"0"+gt;const Mt=(this.g||0).toString(16);$e+=Mt.length===2?Mt:"0"+Mt;const et=(this.b||0).toString(16);if($e+=et.length===2?et:"0"+et,typeof this.a=="number"&&this.a>=0&&this.a<1){const ft=i(this.a*255).toString(16);$e+=ft.length===2?ft:"0"+ft}return $e}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){const $e=this.getHue(),gt=i(this.getSaturation()*100),Mt=i(this.getLightness()*100);return this.a!==1?`hsla(${$e},${gt}%,${Mt}%,${this.a})`:`hsl(${$e},${gt}%,${Mt}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return this.a!==1?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc($e,gt,Mt){const et=this.clone();return et[$e]=f(gt,Mt),et}_c($e){return new this.constructor($e)}getMax(){return typeof this._max=="undefined"&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return typeof this._min=="undefined"&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString($e){const gt=$e.replace("#","");function Mt(et,ft){return parseInt(gt[et]+gt[ft||et],16)}gt.length<6?(this.r=Mt(0),this.g=Mt(1),this.b=Mt(2),this.a=gt[3]?Mt(3)/255:1):(this.r=Mt(0,1),this.g=Mt(2,3),this.b=Mt(4,5),this.a=gt[6]?Mt(6,7)/255:1)}fromHsl({h:$e,s:gt,l:Mt,a:et}){if(this._h=$e%360,this._s=gt,this._l=Mt,this.a=typeof et=="number"?et:1,gt<=0){const We=i(Mt*255);this.r=We,this.g=We,this.b=We}let ft=0,ot=0,Je=0;const Ne=$e/60,ye=(1-Math.abs(2*Mt-1))*gt,ke=ye*(1-Math.abs(Ne%2-1));Ne>=0&&Ne<1?(ft=ye,ot=ke):Ne>=1&&Ne<2?(ft=ke,ot=ye):Ne>=2&&Ne<3?(ot=ye,Je=ke):Ne>=3&&Ne<4?(ot=ke,Je=ye):Ne>=4&&Ne<5?(ft=ke,Je=ye):Ne>=5&&Ne<6&&(ft=ye,Je=ke);const Ge=Mt-ye/2;this.r=i((ft+Ge)*255),this.g=i((ot+Ge)*255),this.b=i((Je+Ge)*255)}fromHsv({h:$e,s:gt,v:Mt,a:et}){this._h=$e%360,this._s=gt,this._v=Mt,this.a=typeof et=="number"?et:1;const ft=i(Mt*255);if(this.r=ft,this.g=ft,this.b=ft,gt<=0)return;const ot=$e/60,Je=Math.floor(ot),Ne=ot-Je,ye=i(Mt*(1-gt)*255),ke=i(Mt*(1-gt*Ne)*255),Ge=i(Mt*(1-gt*(1-Ne))*255);switch(Je){case 0:this.g=Ge,this.b=ye;break;case 1:this.r=ke,this.b=ye;break;case 2:this.r=ye,this.b=Ge;break;case 3:this.r=ye,this.g=ke;break;case 4:this.r=Ge,this.g=ye;break;case 5:default:this.g=ye,this.b=ke;break}}fromHsvString($e){const gt=l($e,c);this.fromHsv({h:gt[0],s:gt[1],v:gt[2],a:gt[3]})}fromHslString($e){const gt=l($e,c);this.fromHsl({h:gt[0],s:gt[1],l:gt[2],a:gt[3]})}fromRgbString($e){const gt=l($e,(Mt,et)=>et.includes("%")?i(Mt/100*255):Mt);this.r=gt[0],this.g=gt[1],this.b=gt[2],this.a=gt[3]}}var h=2,u=.16,a=.05,x=.05,p=.15,y=5,m=4,b=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function S(ar,$e,gt){var Mt;return Math.round(ar.h)>=60&&Math.round(ar.h)<=240?Mt=gt?Math.round(ar.h)-h*$e:Math.round(ar.h)+h*$e:Mt=gt?Math.round(ar.h)+h*$e:Math.round(ar.h)-h*$e,Mt<0?Mt+=360:Mt>=360&&(Mt-=360),Mt}function k(ar,$e,gt){if(ar.h===0&&ar.s===0)return ar.s;var Mt;return gt?Mt=ar.s-u*$e:$e===m?Mt=ar.s+u:Mt=ar.s+a*$e,Mt>1&&(Mt=1),gt&&$e===y&&Mt>.1&&(Mt=.1),Mt<.06&&(Mt=.06),Math.round(Mt*100)/100}function R(ar,$e,gt){var Mt;return gt?Mt=ar.v+x*$e:Mt=ar.v-p*$e,Mt=Math.max(0,Math.min(1,Mt)),Math.round(Mt*100)/100}function A(ar){for(var $e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},gt=[],Mt=new o(ar),et=Mt.toHsv(),ft=y;ft>0;ft-=1){var ot=new o({h:S(et,ft,!0),s:k(et,ft,!0),v:R(et,ft,!0)});gt.push(ot)}gt.push(Mt);for(var Je=1;Je<=m;Je+=1){var Ne=new o({h:S(et,Je),s:k(et,Je),v:R(et,Je)});gt.push(Ne)}return $e.theme==="dark"?b.map(function(ye){var ke=ye.index,Ge=ye.amount;return new o($e.backgroundColor||"#141414").mix(gt[ke],Ge).toHexString()}):gt.map(function(ye){return ye.toHexString()})}var P={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},M=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];M.primary=M[5];var B=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];B.primary=B[5];var N=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];N.primary=N[5];var K=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];K.primary=K[5];var H=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];H.primary=H[5];var W=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];W.primary=W[5];var ae=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];ae.primary=ae[5];var ne=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];ne.primary=ne[5];var oe=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];oe.primary=oe[5];var q=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];q.primary=q[5];var X=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];X.primary=X[5];var V=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];V.primary=V[5];var se=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];se.primary=se[5];var ee=se,J={red:M,volcano:B,orange:N,gold:K,yellow:H,lime:W,green:ae,cyan:ne,blue:oe,geekblue:q,purple:X,magenta:V,grey:se},le=["#2a1215","#431418","#58181c","#791a1f","#a61d24","#d32029","#e84749","#f37370","#f89f9a","#fac8c3"];le.primary=le[5];var z=["#2b1611","#441d12","#592716","#7c3118","#aa3e19","#d84a1b","#e87040","#f3956a","#f8b692","#fad4bc"];z.primary=z[5];var j=["#2b1d11","#442a11","#593815","#7c4a15","#aa6215","#d87a16","#e89a3c","#f3b765","#f8cf8d","#fae3b7"];j.primary=j[5];var ie=["#2b2111","#443111","#594214","#7c5914","#aa7714","#d89614","#e8b339","#f3cc62","#f8df8b","#faedb5"];ie.primary=ie[5];var me=["#2b2611","#443b11","#595014","#7c6e14","#aa9514","#d8bd14","#e8d639","#f3ea62","#f8f48b","#fafab5"];me.primary=me[5];var Se=["#1f2611","#2e3c10","#3e4f13","#536d13","#6f9412","#8bbb11","#a9d134","#c9e75d","#e4f88b","#f0fab5"];Se.primary=Se[5];var Ie=["#162312","#1d3712","#274916","#306317","#3c8618","#49aa19","#6abe39","#8fd460","#b2e58b","#d5f2bb"];Ie.primary=Ie[5];var He=["#112123","#113536","#144848","#146262","#138585","#13a8a8","#33bcb7","#58d1c9","#84e2d8","#b2f1e8"];He.primary=He[5];var je=["#111a2c","#112545","#15325b","#15417e","#1554ad","#1668dc","#3c89e8","#65a9f3","#8dc5f8","#b7dcfa"];je.primary=je[5];var Dt=["#131629","#161d40","#1c2755","#203175","#263ea0","#2b4acb","#5273e0","#7f9ef3","#a8c1f8","#d2e0fa"];Dt.primary=Dt[5];var ht=["#1a1325","#24163a","#301c4d","#3e2069","#51258f","#642ab5","#854eca","#ab7ae0","#cda8f0","#ebd7fa"];ht.primary=ht[5];var It=["#291321","#40162f","#551c3b","#75204f","#a02669","#cb2b83","#e0529c","#f37fb7","#f8a8cc","#fad2e3"];It.primary=It[5];var Zt=["#151515","#1f1f1f","#2d2d2d","#393939","#494949","#5a5a5a","#6a6a6a","#7b7b7b","#888888","#969696"];Zt.primary=Zt[5];var Rt={red:le,volcano:z,orange:j,gold:ie,yellow:me,lime:Se,green:Ie,cyan:He,blue:je,geekblue:Dt,purple:ht,magenta:It,grey:Zt}},36237:function(d,v,e){"use strict";e.r(v),e.d(v,{Keyframes:function(){return Fo},NaNLinter:function(){return ss},StyleContext:function(){return ne},StyleProvider:function(){return ae},Theme:function(){return It},_experimental:function(){return Ko},createCache:function(){return H},createTheme:function(){return Rt},extractStyle:function(){return rl},genCalc:function(){return Ie},getComputedToken:function(){return Lt},legacyLogicalPropertiesTransformer:function(){return Uu},legacyNotSelectorLinter:function(){return zs},logicalPropertiesLinter:function(){return ro},parentSelectorLinter:function(){return Os},px2remTransformer:function(){return gu},token2CSSVar:function(){return Me},unit:function(){return or},useCSSVarRegister:function(){return Mo},useCacheToken:function(){return Er},useStyleRegister:function(){return es}});var r=e(42978),i=e(20068),l=e(94480),c=e(33885);function f(rr){for(var gr=0,dr,vr=0,Tr=rr.length;Tr>=4;++vr,Tr-=4)dr=rr.charCodeAt(vr)&255|(rr.charCodeAt(++vr)&255)<<8|(rr.charCodeAt(++vr)&255)<<16|(rr.charCodeAt(++vr)&255)<<24,dr=(dr&65535)*1540483477+((dr>>>16)*59797<<16),dr^=dr>>>24,gr=(dr&65535)*1540483477+((dr>>>16)*59797<<16)^(gr&65535)*1540483477+((gr>>>16)*59797<<16);switch(Tr){case 3:gr^=(rr.charCodeAt(vr+2)&255)<<16;case 2:gr^=(rr.charCodeAt(vr+1)&255)<<8;case 1:gr^=rr.charCodeAt(vr)&255,gr=(gr&65535)*1540483477+((gr>>>16)*59797<<16)}return gr^=gr>>>13,gr=(gr&65535)*1540483477+((gr>>>16)*59797<<16),((gr^gr>>>15)>>>0).toString(36)}var o=f,h=e(810),u=e(59301),a=e.t(u,2),x=e(75931),p=e(80547),y=e(13697),m=e(67732),b=e(83652),S="%";function k(rr){return rr.join(S)}var R=function(){function rr(gr){(0,m.Z)(this,rr),(0,i.Z)(this,"instanceId",void 0),(0,i.Z)(this,"cache",new Map),(0,i.Z)(this,"extracted",new Set),this.instanceId=gr}return(0,b.Z)(rr,[{key:"get",value:function(dr){return this.opGet(k(dr))}},{key:"opGet",value:function(dr){return this.cache.get(dr)||null}},{key:"update",value:function(dr,vr){return this.opUpdate(k(dr),vr)}},{key:"opUpdate",value:function(dr,vr){var Tr=this.cache.get(dr),bn=vr(Tr);bn===null?this.cache.delete(dr):this.cache.set(dr,bn)}}]),rr}(),A=R,P=["children"],M="data-token-hash",B="data-css-hash",N="data-cache-path",K="__cssinjs_instance__";function H(){var rr=Math.random().toString(12).slice(2);if(typeof document!="undefined"&&document.head&&document.body){var gr=document.body.querySelectorAll("style[".concat(B,"]"))||[],dr=document.head.firstChild;Array.from(gr).forEach(function(Tr){Tr[K]=Tr[K]||rr,Tr[K]===rr&&document.head.insertBefore(Tr,dr)});var vr={};Array.from(document.querySelectorAll("style[".concat(B,"]"))).forEach(function(Tr){var bn=Tr.getAttribute(B);if(vr[bn]){if(Tr[K]===rr){var zn;(zn=Tr.parentNode)===null||zn===void 0||zn.removeChild(Tr)}}else vr[bn]=!0})}return new A(rr)}var W=u.createContext({hashPriority:"low",cache:H(),defaultCache:!0}),ae=function(gr){var dr=gr.children,vr=(0,x.Z)(gr,P),Tr=u.useContext(W),bn=(0,p.Z)(function(){var zn=(0,c.Z)({},Tr);Object.keys(vr).forEach(function(Zn){var ai=vr[Zn];vr[Zn]!==void 0&&(zn[Zn]=ai)});var Ln=vr.cache;return zn.cache=zn.cache||H(),zn.defaultCache=!Ln&&Tr.defaultCache,zn},[Tr,vr],function(zn,Ln){return!(0,y.Z)(zn[0],Ln[0],!0)||!(0,y.Z)(zn[1],Ln[1],!0)});return u.createElement(W.Provider,{value:bn},dr)},ne=W,oe=e(76190),q=e(47273),X=e(31226),V=e(42403),se=e(158),ee=(0,b.Z)(function rr(){(0,m.Z)(this,rr)}),J=ee,le="CALC_UNIT",z=new RegExp(le,"g");function j(rr){return typeof rr=="number"?"".concat(rr).concat(le):rr}var ie=function(rr){(0,V.Z)(dr,rr);var gr=(0,se.Z)(dr);function dr(vr,Tr){var bn;(0,m.Z)(this,dr),bn=gr.call(this),(0,i.Z)((0,X.Z)(bn),"result",""),(0,i.Z)((0,X.Z)(bn),"unitlessCssVar",void 0),(0,i.Z)((0,X.Z)(bn),"lowPriority",void 0);var zn=(0,oe.Z)(vr);return bn.unitlessCssVar=Tr,vr instanceof dr?bn.result="(".concat(vr.result,")"):zn==="number"?bn.result=j(vr):zn==="string"&&(bn.result=vr),bn}return(0,b.Z)(dr,[{key:"add",value:function(Tr){return Tr instanceof dr?this.result="".concat(this.result," + ").concat(Tr.getResult()):(typeof Tr=="number"||typeof Tr=="string")&&(this.result="".concat(this.result," + ").concat(j(Tr))),this.lowPriority=!0,this}},{key:"sub",value:function(Tr){return Tr instanceof dr?this.result="".concat(this.result," - ").concat(Tr.getResult()):(typeof Tr=="number"||typeof Tr=="string")&&(this.result="".concat(this.result," - ").concat(j(Tr))),this.lowPriority=!0,this}},{key:"mul",value:function(Tr){return this.lowPriority&&(this.result="(".concat(this.result,")")),Tr instanceof dr?this.result="".concat(this.result," * ").concat(Tr.getResult(!0)):(typeof Tr=="number"||typeof Tr=="string")&&(this.result="".concat(this.result," * ").concat(Tr)),this.lowPriority=!1,this}},{key:"div",value:function(Tr){return this.lowPriority&&(this.result="(".concat(this.result,")")),Tr instanceof dr?this.result="".concat(this.result," / ").concat(Tr.getResult(!0)):(typeof Tr=="number"||typeof Tr=="string")&&(this.result="".concat(this.result," / ").concat(Tr)),this.lowPriority=!1,this}},{key:"getResult",value:function(Tr){return this.lowPriority||Tr?"(".concat(this.result,")"):this.result}},{key:"equal",value:function(Tr){var bn=this,zn=Tr||{},Ln=zn.unit,Zn=!0;return typeof Ln=="boolean"?Zn=Ln:Array.from(this.unitlessCssVar).some(function(ai){return bn.result.includes(ai)})&&(Zn=!1),this.result=this.result.replace(z,Zn?"px":""),typeof this.lowPriority!="undefined"?"calc(".concat(this.result,")"):this.result}}]),dr}(J),me=function(rr){(0,V.Z)(dr,rr);var gr=(0,se.Z)(dr);function dr(vr){var Tr;return(0,m.Z)(this,dr),Tr=gr.call(this),(0,i.Z)((0,X.Z)(Tr),"result",0),vr instanceof dr?Tr.result=vr.result:typeof vr=="number"&&(Tr.result=vr),Tr}return(0,b.Z)(dr,[{key:"add",value:function(Tr){return Tr instanceof dr?this.result+=Tr.result:typeof Tr=="number"&&(this.result+=Tr),this}},{key:"sub",value:function(Tr){return Tr instanceof dr?this.result-=Tr.result:typeof Tr=="number"&&(this.result-=Tr),this}},{key:"mul",value:function(Tr){return Tr instanceof dr?this.result*=Tr.result:typeof Tr=="number"&&(this.result*=Tr),this}},{key:"div",value:function(Tr){return Tr instanceof dr?this.result/=Tr.result:typeof Tr=="number"&&(this.result/=Tr),this}},{key:"equal",value:function(){return this.result}}]),dr}(J),Se=function(gr,dr){var vr=gr==="css"?ie:me;return function(Tr){return new vr(Tr,dr)}},Ie=Se;function He(rr,gr){if(rr.length!==gr.length)return!1;for(var dr=0;dr<rr.length;dr++)if(rr[dr]!==gr[dr])return!1;return!0}var je=function(){function rr(){(0,m.Z)(this,rr),(0,i.Z)(this,"cache",void 0),(0,i.Z)(this,"keys",void 0),(0,i.Z)(this,"cacheCallTimes",void 0),this.cache=new Map,this.keys=[],this.cacheCallTimes=0}return(0,b.Z)(rr,[{key:"size",value:function(){return this.keys.length}},{key:"internalGet",value:function(dr){var vr,Tr,bn=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,zn={map:this.cache};return dr.forEach(function(Ln){if(!zn)zn=void 0;else{var Zn;zn=(Zn=zn)===null||Zn===void 0||(Zn=Zn.map)===null||Zn===void 0?void 0:Zn.get(Ln)}}),(vr=zn)!==null&&vr!==void 0&&vr.value&&bn&&(zn.value[1]=this.cacheCallTimes++),(Tr=zn)===null||Tr===void 0?void 0:Tr.value}},{key:"get",value:function(dr){var vr;return(vr=this.internalGet(dr,!0))===null||vr===void 0?void 0:vr[0]}},{key:"has",value:function(dr){return!!this.internalGet(dr)}},{key:"set",value:function(dr,vr){var Tr=this;if(!this.has(dr)){if(this.size()+1>rr.MAX_CACHE_SIZE+rr.MAX_CACHE_OFFSET){var bn=this.keys.reduce(function(ai,Jn){var mr=(0,r.Z)(ai,2),Fr=mr[1];return Tr.internalGet(Jn)[1]<Fr?[Jn,Tr.internalGet(Jn)[1]]:ai},[this.keys[0],this.cacheCallTimes]),zn=(0,r.Z)(bn,1),Ln=zn[0];this.delete(Ln)}this.keys.push(dr)}var Zn=this.cache;dr.forEach(function(ai,Jn){if(Jn===dr.length-1)Zn.set(ai,{value:[vr,Tr.cacheCallTimes++]});else{var mr=Zn.get(ai);mr?mr.map||(mr.map=new Map):Zn.set(ai,{map:new Map}),Zn=Zn.get(ai).map}})}},{key:"deleteByPath",value:function(dr,vr){var Tr=dr.get(vr[0]);if(vr.length===1){var bn;return Tr.map?dr.set(vr[0],{map:Tr.map}):dr.delete(vr[0]),(bn=Tr.value)===null||bn===void 0?void 0:bn[0]}var zn=this.deleteByPath(Tr.map,vr.slice(1));return(!Tr.map||Tr.map.size===0)&&!Tr.value&&dr.delete(vr[0]),zn}},{key:"delete",value:function(dr){if(this.has(dr))return this.keys=this.keys.filter(function(vr){return!He(vr,dr)}),this.deleteByPath(this.cache,dr)}}]),rr}();(0,i.Z)(je,"MAX_CACHE_SIZE",20),(0,i.Z)(je,"MAX_CACHE_OFFSET",5);var Dt=e(48736),ht=0,It=function(){function rr(gr){(0,m.Z)(this,rr),(0,i.Z)(this,"derivatives",void 0),(0,i.Z)(this,"id",void 0),this.derivatives=Array.isArray(gr)?gr:[gr],this.id=ht,gr.length===0&&(0,Dt.Kp)(gr.length>0,"[Ant Design CSS-in-JS] Theme should have at least one derivative function."),ht+=1}return(0,b.Z)(rr,[{key:"getDerivativeToken",value:function(dr){return this.derivatives.reduce(function(vr,Tr){return Tr(dr,vr)},void 0)}}]),rr}(),Zt=new je;function Rt(rr){var gr=Array.isArray(rr)?rr:[rr];return Zt.has(gr)||Zt.set(gr,new It(gr)),Zt.get(gr)}var ar=new WeakMap,$e={};function gt(rr,gr){for(var dr=ar,vr=0;vr<gr.length;vr+=1){var Tr=gr[vr];dr.has(Tr)||dr.set(Tr,new WeakMap),dr=dr.get(Tr)}return dr.has($e)||dr.set($e,rr()),dr.get($e)}var Mt=new WeakMap;function et(rr){var gr=Mt.get(rr)||"";return gr||(Object.keys(rr).forEach(function(dr){var vr=rr[dr];gr+=dr,vr instanceof It?gr+=vr.id:vr&&(0,oe.Z)(vr)==="object"?gr+=et(vr):gr+=vr}),gr=o(gr),Mt.set(rr,gr)),gr}function ft(rr,gr){return o("".concat(gr,"_").concat(et(rr)))}var ot="random-".concat(Date.now(),"-").concat(Math.random()).replace(/\./g,""),Je="_bAmBoO_";function Ne(rr,gr,dr){if((0,q.Z)()){var vr,Tr;(0,h.hq)(rr,ot);var bn=document.createElement("div");bn.style.position="fixed",bn.style.left="0",bn.style.top="0",gr==null||gr(bn),document.body.appendChild(bn);var zn=dr?dr(bn):(vr=getComputedStyle(bn).content)===null||vr===void 0?void 0:vr.includes(Je);return(Tr=bn.parentNode)===null||Tr===void 0||Tr.removeChild(bn),(0,h.jL)(ot),zn}return!1}var ye=null;function ke(){return ye===void 0&&(ye=Ne("@layer ".concat(ot," { .").concat(ot,' { content: "').concat(Je,'"!important; } }'),function(rr){rr.className=ot})),ye}var Ge=void 0;function We(){return Ge===void 0&&(Ge=Ne(":where(.".concat(ot,') { content: "').concat(Je,'"!important; }'),function(rr){rr.className=ot})),Ge}var Xe=void 0;function ut(){return Xe===void 0&&(Xe=Ne(".".concat(ot," { inset-block: 93px !important; }"),function(rr){rr.className=ot},function(rr){return getComputedStyle(rr).bottom==="93px"})),Xe}var pt=(0,q.Z)();function or(rr){return typeof rr=="number"?"".concat(rr,"px"):rr}function tr(rr,gr,dr){var vr=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},Tr=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(Tr)return rr;var bn=(0,c.Z)((0,c.Z)({},vr),{},(0,i.Z)((0,i.Z)({},M,gr),B,dr)),zn=Object.keys(bn).map(function(Ln){var Zn=bn[Ln];return Zn?"".concat(Ln,'="').concat(Zn,'"'):null}).filter(function(Ln){return Ln}).join(" ");return"<style ".concat(zn,">").concat(rr,"</style>")}var Me=function(gr){var dr=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";return"--".concat(dr?"".concat(dr,"-"):"").concat(gr).replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase()},tt=function(gr,dr,vr){return Object.keys(gr).length?".".concat(dr).concat(vr!=null&&vr.scope?".".concat(vr.scope):"","{").concat(Object.entries(gr).map(function(Tr){var bn=(0,r.Z)(Tr,2),zn=bn[0],Ln=bn[1];return"".concat(zn,":").concat(Ln,";")}).join(""),"}"):""},Yt=function(gr,dr,vr){var Tr={},bn={};return Object.entries(gr).forEach(function(zn){var Ln,Zn,ai=(0,r.Z)(zn,2),Jn=ai[0],mr=ai[1];if(vr!=null&&(Ln=vr.preserve)!==null&&Ln!==void 0&&Ln[Jn])bn[Jn]=mr;else if((typeof mr=="string"||typeof mr=="number")&&!(vr!=null&&(Zn=vr.ignore)!==null&&Zn!==void 0&&Zn[Jn])){var Fr,Br=Me(Jn,vr==null?void 0:vr.prefix);Tr[Br]=typeof mr=="number"&&!(vr!=null&&(Fr=vr.unitless)!==null&&Fr!==void 0&&Fr[Jn])?"".concat(mr,"px"):String(mr),bn[Jn]="var(".concat(Br,")")}}),[bn,tt(Tr,dr,{scope:vr==null?void 0:vr.scope})]},Ot=e(34280),zt=(0,c.Z)({},a),Ht=zt.useInsertionEffect,lr=function(gr,dr,vr){u.useMemo(gr,vr),(0,Ot.Z)(function(){return dr(!0)},vr)},Wt=Ht?function(rr,gr,dr){return Ht(function(){return rr(),gr()},dr)}:lr,Ce=Wt,ce=(0,c.Z)({},a),pe=ce.useInsertionEffect,Ct=function(gr){var dr=[],vr=!1;function Tr(bn){vr||dr.push(bn)}return u.useEffect(function(){return vr=!1,function(){vr=!0,dr.length&&dr.forEach(function(bn){return bn()})}},gr),Tr},Ae=function(){return function(gr){gr()}},st=typeof pe!="undefined"?Ct:Ae,Gt=st;function bt(){return!1}var Te=!1;function yt(){return Te}var ze=bt;if(0)var xe,dt;function Pt(rr,gr,dr,vr,Tr){var bn=u.useContext(ne),zn=bn.cache,Ln=[rr].concat((0,l.Z)(gr)),Zn=k(Ln),ai=Gt([Zn]),Jn=ze(),mr=function(In){zn.opUpdate(Zn,function(oi){var wi=oi||[void 0,void 0],Hn=(0,r.Z)(wi,2),ta=Hn[0],ra=ta===void 0?0:ta,gi=Hn[1],Et=gi,Xn=Et||dr(),Sa=[ra,Xn];return In?In(Sa):Sa})};u.useMemo(function(){mr()},[Zn]);var Fr=zn.opGet(Zn),Br=Fr[1];return Ce(function(){Tr==null||Tr(Br)},function(Tn){return mr(function(In){var oi=(0,r.Z)(In,2),wi=oi[0],Hn=oi[1];return Tn&&wi===0&&(Tr==null||Tr(Br)),[wi+1,Hn]}),function(){zn.opUpdate(Zn,function(In){var oi=In||[],wi=(0,r.Z)(oi,2),Hn=wi[0],ta=Hn===void 0?0:Hn,ra=wi[1],gi=ta-1;return gi===0?(ai(function(){(Tn||!zn.opGet(Zn))&&(vr==null||vr(ra,!1))}),null):[ta-1,ra]})}},[Zn]),Br}var Be={},Or="css",mt=new Map;function qr(rr){mt.set(rr,(mt.get(rr)||0)+1)}function an(rr,gr){if(typeof document!="undefined"){var dr=document.querySelectorAll("style[".concat(M,'="').concat(rr,'"]'));dr.forEach(function(vr){if(vr[K]===gr){var Tr;(Tr=vr.parentNode)===null||Tr===void 0||Tr.removeChild(vr)}})}}var Nt=0;function qt(rr,gr){mt.set(rr,(mt.get(rr)||0)-1);var dr=new Set;mt.forEach(function(vr,Tr){vr<=0&&dr.add(Tr)}),mt.size-dr.size>Nt&&dr.forEach(function(vr){an(vr,gr),mt.delete(vr)})}var Lt=function(gr,dr,vr,Tr){var bn=vr.getDerivativeToken(gr),zn=(0,c.Z)((0,c.Z)({},bn),dr);return Tr&&(zn=Tr(zn)),zn},Xt="token";function Er(rr,gr){var dr=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},vr=(0,u.useContext)(ne),Tr=vr.cache.instanceId,bn=vr.container,zn=dr.salt,Ln=zn===void 0?"":zn,Zn=dr.override,ai=Zn===void 0?Be:Zn,Jn=dr.formatToken,mr=dr.getComputedToken,Fr=dr.cssVar,Br=gt(function(){return Object.assign.apply(Object,[{}].concat((0,l.Z)(gr)))},gr),Tn=et(Br),In=et(ai),oi=Fr?et(Fr):"",wi=Pt(Xt,[Ln,rr.id,Tn,In,oi],function(){var Hn,ta=mr?mr(Br,ai,rr):Lt(Br,ai,rr,Jn),ra=(0,c.Z)({},ta),gi="";if(Fr){var Et=Yt(ta,Fr.key,{prefix:Fr.prefix,ignore:Fr.ignore,unitless:Fr.unitless,preserve:Fr.preserve}),Xn=(0,r.Z)(Et,2);ta=Xn[0],gi=Xn[1]}var Sa=ft(ta,Ln);ta._tokenKey=Sa,ra._tokenKey=ft(ra,Ln);var Ra=(Hn=Fr==null?void 0:Fr.key)!==null&&Hn!==void 0?Hn:Sa;ta._themeKey=Ra,qr(Ra);var Ys="".concat(Or,"-").concat(o(Sa));return ta._hashId=Ys,[ta,Ys,ra,gi,(Fr==null?void 0:Fr.key)||""]},function(Hn){qt(Hn[0]._themeKey,Tr)},function(Hn){var ta=(0,r.Z)(Hn,4),ra=ta[0],gi=ta[3];if(Fr&&gi){var Et=(0,h.hq)(gi,o("css-variables-".concat(ra._themeKey)),{mark:B,prepend:"queue",attachTo:bn,priority:-999});Et[K]=Tr,Et.setAttribute(M,ra._themeKey)}});return wi}var Pr=function(gr,dr,vr){var Tr=(0,r.Z)(gr,5),bn=Tr[2],zn=Tr[3],Ln=Tr[4],Zn=vr||{},ai=Zn.plain;if(!zn)return null;var Jn=bn._tokenKey,mr=-999,Fr={"data-rc-order":"prependQueue","data-rc-priority":"".concat(mr)},Br=tr(zn,Ln,Jn,Fr,ai);return[mr,Jn,Br]},At=e(54476),Kt={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},Bt=Kt,Jt="-ms-",br="-moz-",Xr="-webkit-",Wr="comm",jn="rule",wn="decl",Yn="@page",St="@media",Vr="@import",ii="@charset",Bi="@viewport",Gn="@supports",ci="@document",Oi="@namespace",$i="@keyframes",Ai="@font-face",ji="@counter-style",ha="@font-feature-values",ea="@layer",Yi="@scope",mi=Math.abs,zi=String.fromCharCode,Ca=Object.assign;function xt(rr,gr){return Hi(rr,0)^45?(((gr<<2^Hi(rr,0))<<2^Hi(rr,1))<<2^Hi(rr,2))<<2^Hi(rr,3):0}function xa(rr){return rr.trim()}function Zi(rr,gr){return(rr=gr.exec(rr))?rr[0]:rr}function _i(rr,gr,dr){return rr.replace(gr,dr)}function Da(rr,gr,dr){return rr.indexOf(gr,dr)}function Hi(rr,gr){return rr.charCodeAt(gr)|0}function ei(rr,gr,dr){return rr.slice(gr,dr)}function $n(rr){return rr.length}function Ee(rr){return rr.length}function nt(rr,gr){return gr.push(rr),rr}function qe(rr,gr){return rr.map(gr).join("")}function Tt(rr,gr){return rr.filter(function(dr){return!Zi(dr,gr)})}function lt(rr,gr){for(var dr="",vr=0;vr<rr.length;vr++)dr+=gr(rr[vr],vr,rr,gr)||"";return dr}function hr(rr,gr,dr,vr){switch(rr.type){case ea:if(rr.children.length)break;case Vr:case Oi:case wn:return rr.return=rr.return||rr.value;case Wr:return"";case $i:return rr.return=rr.value+"{"+lt(rr.children,vr)+"}";case jn:if(!$n(rr.value=rr.props.join(",")))return""}return $n(dr=lt(rr.children,vr))?rr.return=rr.value+"{"+dr+"}":""}var pr=1,Cr=1,$r=0,en=0,Nr=0,An="";function _r(rr,gr,dr,vr,Tr,bn,zn,Ln){return{value:rr,root:gr,parent:dr,type:vr,props:Tr,children:bn,line:pr,column:Cr,length:zn,return:"",siblings:Ln}}function Fn(rr,gr){return assign(_r("",null,null,"",null,null,0,rr.siblings),rr,{length:-rr.length},gr)}function Qn(rr){for(;rr.root;)rr=Fn(rr.root,{children:[rr]});append(rr,rr.siblings)}function Ke(){return Nr}function ct(){return Nr=en>0?Hi(An,--en):0,Cr--,Nr===10&&(Cr=1,pr--),Nr}function ge(){return Nr=en<$r?Hi(An,en++):0,Cr++,Nr===10&&(Cr=1,pr++),Nr}function sr(){return Hi(An,en)}function nr(){return en}function kr(rr,gr){return ei(An,rr,gr)}function Hr(rr){switch(rr){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Zr(rr){return pr=Cr=1,$r=$n(An=rr),en=0,[]}function hn(rr){return An="",rr}function Si(rr){return xa(kr(en-1,si(rr===91?rr+2:rr===40?rr+1:rr)))}function un(rr){return hn(Gr(Zr(rr)))}function yn(rr){for(;(Nr=sr())&&Nr<33;)ge();return Hr(rr)>2||Hr(Nr)>3?"":" "}function Gr(rr){for(;ge();)switch(Hr(Nr)){case 0:append(Js(en-1),rr);break;case 2:append(Si(Nr),rr);break;default:append(from(Nr),rr)}return rr}function kn(rr,gr){for(;--gr&&ge()&&!(Nr<48||Nr>102||Nr>57&&Nr<65||Nr>70&&Nr<97););return kr(rr,nr()+(gr<6&&sr()==32&&ge()==32))}function si(rr){for(;ge();)switch(Nr){case rr:return en;case 34:case 39:rr!==34&&rr!==39&&si(Nr);break;case 40:rr===41&&si(rr);break;case 92:ge();break}return en}function Ea(rr,gr){for(;ge()&&rr+Nr!==57;)if(rr+Nr===84&&sr()===47)break;return"/*"+kr(gr,en-1)+"*"+zi(rr===47?rr:ge())}function Js(rr){for(;!Hr(sr());)ge();return kr(rr,en)}function Ba(rr){return hn($s("",null,null,null,[""],rr=Zr(rr),0,[0],rr))}function $s(rr,gr,dr,vr,Tr,bn,zn,Ln,Zn){for(var ai=0,Jn=0,mr=zn,Fr=0,Br=0,Tn=0,In=1,oi=1,wi=1,Hn=0,ta="",ra=Tr,gi=bn,Et=vr,Xn=ta;oi;)switch(Tn=Hn,Hn=ge()){case 40:if(Tn!=108&&Hi(Xn,mr-1)==58){Da(Xn+=_i(Si(Hn),"&","&\f"),"&\f",mi(ai?Ln[ai-1]:0))!=-1&&(wi=-1);break}case 34:case 39:case 91:Xn+=Si(Hn);break;case 9:case 10:case 13:case 32:Xn+=yn(Tn);break;case 92:Xn+=kn(nr()-1,7);continue;case 47:switch(sr()){case 42:case 47:nt(as(Ea(ge(),nr()),gr,dr,Zn),Zn),(Hr(Tn||1)==5||Hr(sr()||1)==5)&&$n(Xn)&&ei(Xn,-1,void 0)!==" "&&(Xn+=" ");break;default:Xn+="/"}break;case 123*In:Ln[ai++]=$n(Xn)*wi;case 125*In:case 59:case 0:switch(Hn){case 0:case 125:oi=0;case 59+Jn:wi==-1&&(Xn=_i(Xn,/\f/g,"")),Br>0&&($n(Xn)-mr||In===0&&Tn===47)&&nt(Br>32?oo(Xn+";",vr,dr,mr-1,Zn):oo(_i(Xn," ","")+";",vr,dr,mr-2,Zn),Zn);break;case 59:Xn+=";";default:if(nt(Et=Ns(Xn,gr,dr,ai,Jn,Tr,Ln,ta,ra=[],gi=[],mr,bn),bn),Hn===123)if(Jn===0)$s(Xn,gr,Et,Et,ra,bn,mr,Ln,gi);else{switch(Fr){case 99:if(Hi(Xn,3)===110)break;case 108:if(Hi(Xn,2)===97)break;default:Jn=0;case 100:case 109:case 115:}Jn?$s(rr,Et,Et,vr&&nt(Ns(rr,Et,Et,0,0,Tr,Ln,ta,Tr,ra=[],mr,gi),gi),Tr,gi,mr,Ln,vr?ra:gi):$s(Xn,Et,Et,Et,[""],gi,0,Ln,gi)}}ai=Jn=Br=0,In=wi=1,ta=Xn="",mr=zn;break;case 58:mr=1+$n(Xn),Br=Tn;default:if(In<1){if(Hn==123)--In;else if(Hn==125&&In++==0&&ct()==125)continue}switch(Xn+=zi(Hn),Hn*In){case 38:wi=Jn>0?1:(Xn+="\f",-1);break;case 44:Ln[ai++]=($n(Xn)-1)*wi,wi=1;break;case 64:sr()===45&&(Xn+=Si(ge())),Fr=sr(),Jn=mr=$n(ta=Xn+=Js(nr())),Hn++;break;case 45:Tn===45&&$n(Xn)==2&&(In=0)}}return bn}function Ns(rr,gr,dr,vr,Tr,bn,zn,Ln,Zn,ai,Jn,mr){for(var Fr=Tr-1,Br=Tr===0?bn:[""],Tn=Ee(Br),In=0,oi=0,wi=0;In<vr;++In)for(var Hn=0,ta=ei(rr,Fr+1,Fr=mi(oi=zn[In])),ra=rr;Hn<Tn;++Hn)(ra=xa(oi>0?Br[Hn]+" "+ta:_i(ta,/&\f/g,Br[Hn])))&&(Zn[wi++]=ra);return _r(rr,gr,dr,Tr===0?jn:Ln,Zn,ai,Jn,mr)}function as(rr,gr,dr,vr){return _r(rr,gr,dr,Wr,zi(Ke()),ei(rr,2,-2),0,vr)}function oo(rr,gr,dr,vr,Tr){return _r(rr,gr,dr,wn,ei(rr,0,vr),ei(rr,vr+1,-1),vr,Tr)}function Aa(rr,gr){var dr=gr.path,vr=gr.parentSelectors;(0,Dt.ZP)(!1,"[Ant Design CSS-in-JS] ".concat(dr?"Error in ".concat(dr,": "):"").concat(rr).concat(vr.length?" Selector: ".concat(vr.join(" | ")):""))}var Is=function(gr,dr,vr){if(gr==="content"){var Tr=/(attr|counters?|url|(((repeating-)?(linear|radial))|conic)-gradient)\(|(no-)?(open|close)-quote/,bn=["normal","none","initial","inherit","unset"];(typeof dr!="string"||bn.indexOf(dr)===-1&&!Tr.test(dr)&&(dr.charAt(0)!==dr.charAt(dr.length-1)||dr.charAt(0)!=='"'&&dr.charAt(0)!=="'"))&&lintWarning("You seem to be using a value for 'content' without quotes, try replacing it with `content: '\"".concat(dr,"\"'`."),vr)}},ps=null,po=function(gr,dr,vr){gr==="animation"&&vr.hashId&&dr!=="none"&&lintWarning("You seem to be using hashed animation '".concat(dr,"', in which case 'animationName' with Keyframe as value is recommended."),vr)},Ji=null;function to(rr){var gr,dr=((gr=rr.match(/:not\(([^)]*)\)/))===null||gr===void 0?void 0:gr[1])||"",vr=dr.split(/(\[[^[]*])|(?=[.#])/).filter(function(Tr){return Tr});return vr.length>1}function zo(rr){return rr.parentSelectors.reduce(function(gr,dr){return gr?dr.includes("&")?dr.replace(/&/g,gr):"".concat(gr," ").concat(dr):dr},"")}var Na=function(gr,dr,vr){var Tr=zo(vr),bn=Tr.match(/:not\([^)]*\)/g)||[];bn.length>0&&bn.some(to)&&Aa("Concat ':not' selector not support in legacy browsers.",vr)},zs=Na,di=function(gr,dr,vr){switch(gr){case"marginLeft":case"marginRight":case"paddingLeft":case"paddingRight":case"left":case"right":case"borderLeft":case"borderLeftWidth":case"borderLeftStyle":case"borderLeftColor":case"borderRight":case"borderRightWidth":case"borderRightStyle":case"borderRightColor":case"borderTopLeftRadius":case"borderTopRightRadius":case"borderBottomLeftRadius":case"borderBottomRightRadius":Aa("You seem to be using non-logical property '".concat(gr,"' which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),vr);return;case"margin":case"padding":case"borderWidth":case"borderStyle":if(typeof dr=="string"){var Tr=dr.split(" ").map(function(Ln){return Ln.trim()});Tr.length===4&&Tr[1]!==Tr[3]&&Aa("You seem to be using '".concat(gr,"' property with different left ").concat(gr," and right ").concat(gr,", which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),vr)}return;case"clear":case"textAlign":(dr==="left"||dr==="right")&&Aa("You seem to be using non-logical value '".concat(dr,"' of ").concat(gr,", which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),vr);return;case"borderRadius":if(typeof dr=="string"){var bn=dr.split("/").map(function(Ln){return Ln.trim()}),zn=bn.reduce(function(Ln,Zn){if(Ln)return Ln;var ai=Zn.split(" ").map(function(Jn){return Jn.trim()});return ai.length>=2&&ai[0]!==ai[1]||ai.length===3&&ai[1]!==ai[2]||ai.length===4&&ai[2]!==ai[3]?!0:Ln},!1);zn&&Aa("You seem to be using non-logical value '".concat(dr,"' of ").concat(gr,", which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),vr)}return;default:}},ro=di,Rn=function(gr,dr,vr){(typeof dr=="string"&&/NaN/g.test(dr)||Number.isNaN(dr))&&Aa("Unexpected 'NaN' in property '".concat(gr,": ").concat(dr,"'."),vr)},ss=Rn,Ps=function(gr,dr,vr){vr.parentSelectors.some(function(Tr){var bn=Tr.split(",");return bn.some(function(zn){return zn.split("&").length>2})})&&Aa("Should not use more than one `&` in a selector.",vr)},Os=Ps,Qi="data-ant-cssinjs-cache-path",Ka="_FILE_STYLE__";function Ni(rr){return Object.keys(rr).map(function(gr){var dr=rr[gr];return"".concat(gr,":").concat(dr)}).join(";")}var Ds,xo=!0;function Zo(rr){var gr=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;Ds=rr,xo=gr}function Qo(){if(!Ds&&(Ds={},(0,q.Z)())){var rr=document.createElement("div");rr.className=Qi,rr.style.position="fixed",rr.style.visibility="hidden",rr.style.top="-9999px",document.body.appendChild(rr);var gr=getComputedStyle(rr).content||"";gr=gr.replace(/^"/,"").replace(/"$/,""),gr.split(";").forEach(function(Tr){var bn=Tr.split(":"),zn=(0,r.Z)(bn,2),Ln=zn[0],Zn=zn[1];Ds[Ln]=Zn});var dr=document.querySelector("style[".concat(Qi,"]"));if(dr){var vr;xo=!1,(vr=dr.parentNode)===null||vr===void 0||vr.removeChild(dr)}document.body.removeChild(rr)}}function mu(rr){return Qo(),!!Ds[rr]}function _u(rr){var gr=Ds[rr],dr=null;if(gr&&(0,q.Z)())if(xo)dr=Ka;else{var vr=document.querySelector("style[".concat(B,'="').concat(Ds[rr],'"]'));vr?dr=vr.innerHTML:delete Ds[rr]}return[dr,gr]}var vo="_skip_check_",Wo="_multi_value_";function Oo(rr){var gr=lt(Ba(rr),hr);return gr.replace(/\{%%%\:[^;];}/g,";")}function nu(rr){return(0,oe.Z)(rr)==="object"&&rr&&(vo in rr||Wo in rr)}function Xo(rr,gr,dr){if(!gr)return rr;var vr=".".concat(gr),Tr=dr==="low"?":where(".concat(vr,")"):vr,bn=rr.split(",").map(function(zn){var Ln,Zn=zn.trim().split(/\s+/),ai=Zn[0]||"",Jn=((Ln=ai.match(/^\w+/))===null||Ln===void 0?void 0:Ln[0])||"";return ai="".concat(Jn).concat(Tr).concat(ai.slice(Jn.length)),[ai].concat((0,l.Z)(Zn.slice(1))).join(" ")});return bn.join(",")}var hi=function rr(gr){var dr=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},vr=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{root:!0,parentSelectors:[]},Tr=vr.root,bn=vr.injectHash,zn=vr.parentSelectors,Ln=dr.hashId,Zn=dr.layer,ai=dr.path,Jn=dr.hashPriority,mr=dr.transformers,Fr=mr===void 0?[]:mr,Br=dr.linters,Tn=Br===void 0?[]:Br,In="",oi={};function wi(ra){var gi=ra.getName(Ln);if(!oi[gi]){var Et=rr(ra.style,dr,{root:!1,parentSelectors:zn}),Xn=(0,r.Z)(Et,1),Sa=Xn[0];oi[gi]="@keyframes ".concat(ra.getName(Ln)).concat(Sa)}}function Hn(ra){var gi=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[];return ra.forEach(function(Et){Array.isArray(Et)?Hn(Et,gi):Et&&gi.push(Et)}),gi}var ta=Hn(Array.isArray(gr)?gr:[gr]);return ta.forEach(function(ra){var gi=typeof ra=="string"&&!Tr?{}:ra;if(typeof gi=="string")In+="".concat(gi,`
`);else if(gi._keyframe)wi(gi);else{var Et=Fr.reduce(function(Xn,Sa){var Ra;return(Sa==null||(Ra=Sa.visit)===null||Ra===void 0?void 0:Ra.call(Sa,Xn))||Xn},gi);Object.keys(Et).forEach(function(Xn){var Sa=Et[Xn];if((0,oe.Z)(Sa)==="object"&&Sa&&(Xn!=="animationName"||!Sa._keyframe)&&!nu(Sa)){var Ra=!1,Ys=Xn.trim(),sn=!1;(Tr||bn)&&Ln?Ys.startsWith("@")?Ra=!0:Ys==="&"?Ys=Xo("",Ln,Jn):Ys=Xo(Xn,Ln,Jn):Tr&&!Ln&&(Ys==="&"||Ys==="")&&(Ys="",sn=!0);var Do=rr(Sa,dr,{root:sn,injectHash:Ra,parentSelectors:[].concat((0,l.Z)(zn),[Ys])}),lo=(0,r.Z)(Do,2),Rs=lo[0],no=lo[1];oi=(0,c.Z)((0,c.Z)({},oi),no),In+="".concat(Ys).concat(Rs)}else{let cs=function(ja,os){var Qe=ja.replace(/[A-Z]/g,function(Ft){return"-".concat(Ft.toLowerCase())}),Pe=os;!Bt[ja]&&typeof Pe=="number"&&Pe!==0&&(Pe="".concat(Pe,"px")),ja==="animationName"&&os!==null&&os!==void 0&&os._keyframe&&(wi(os),Pe=os.getName(Ln)),In+="".concat(Qe,":").concat(Pe,";")};var io,ts=(io=Sa==null?void 0:Sa.value)!==null&&io!==void 0?io:Sa;(0,oe.Z)(Sa)==="object"&&Sa!==null&&Sa!==void 0&&Sa[Wo]&&Array.isArray(ts)?ts.forEach(function(ja){cs(Xn,ja)}):cs(Xn,ts)}})}}),Tr?Zn&&(In&&(In="@layer ".concat(Zn.name," {").concat(In,"}")),Zn.dependencies&&(oi["@layer ".concat(Zn.name)]=Zn.dependencies.map(function(ra){return"@layer ".concat(ra,", ").concat(Zn.name,";")}).join(`
`))):In="{".concat(In,"}"),[In,oi]};function vi(rr,gr){return o("".concat(rr.join("%")).concat(gr))}function qa(){return null}var ls="style";function es(rr,gr){var dr=rr.token,vr=rr.path,Tr=rr.hashId,bn=rr.layer,zn=rr.nonce,Ln=rr.clientOnly,Zn=rr.order,ai=Zn===void 0?0:Zn,Jn=u.useContext(ne),mr=Jn.autoClear,Fr=Jn.mock,Br=Jn.defaultCache,Tn=Jn.hashPriority,In=Jn.container,oi=Jn.ssrInline,wi=Jn.transformers,Hn=Jn.linters,ta=Jn.cache,ra=Jn.layer,gi=dr._tokenKey,Et=[gi];ra&&Et.push("layer"),Et.push.apply(Et,(0,l.Z)(vr));var Xn=pt,Sa=Pt(ls,Et,function(){var lo=Et.join("|");if(mu(lo)){var Rs=_u(lo),no=(0,r.Z)(Rs,2),io=no[0],ts=no[1];if(io)return[io,gi,ts,{},Ln,ai]}var cs=gr(),ja=hi(cs,{hashId:Tr,hashPriority:Tn,layer:ra?bn:void 0,path:vr.join("-"),transformers:wi,linters:Hn}),os=(0,r.Z)(ja,2),Qe=os[0],Pe=os[1],Ft=Oo(Qe),_t=vi(Et,Ft);return[Ft,gi,_t,Pe,Ln,ai]},function(lo,Rs){var no=(0,r.Z)(lo,3),io=no[2];(Rs||mr)&&pt&&(0,h.jL)(io,{mark:B,attachTo:In})},function(lo){var Rs=(0,r.Z)(lo,4),no=Rs[0],io=Rs[1],ts=Rs[2],cs=Rs[3];if(Xn&&no!==Ka){var ja={mark:B,prepend:ra?!1:"queue",attachTo:In,priority:ai},os=typeof zn=="function"?zn():zn;os&&(ja.csp={nonce:os});var Qe=[],Pe=[];Object.keys(cs).forEach(function(_t){_t.startsWith("@layer")?Qe.push(_t):Pe.push(_t)}),Qe.forEach(function(_t){(0,h.hq)(Oo(cs[_t]),"_layer-".concat(_t),(0,c.Z)((0,c.Z)({},ja),{},{prepend:!0}))});var Ft=(0,h.hq)(no,ts,ja);Ft[K]=ta.instanceId,Ft.setAttribute(M,gi),Pe.forEach(function(_t){(0,h.hq)(Oo(cs[_t]),"_effect-".concat(_t),ja)})}}),Ra=(0,r.Z)(Sa,3),Ys=Ra[0],sn=Ra[1],Do=Ra[2];return function(lo){var Rs;return!oi||Xn||!Br?Rs=u.createElement(qa,null):Rs=u.createElement("style",(0,At.Z)({},(0,i.Z)((0,i.Z)({},M,sn),B,Do),{dangerouslySetInnerHTML:{__html:Ys}})),u.createElement(u.Fragment,null,Rs,lo)}}var Wa=function(gr,dr,vr){var Tr=(0,r.Z)(gr,6),bn=Tr[0],zn=Tr[1],Ln=Tr[2],Zn=Tr[3],ai=Tr[4],Jn=Tr[5],mr=vr||{},Fr=mr.plain;if(ai)return null;var Br=bn,Tn={"data-rc-order":"prependQueue","data-rc-priority":"".concat(Jn)};return Br=tr(bn,zn,Ln,Tn,Fr),Zn&&Object.keys(Zn).forEach(function(In){if(!dr[In]){dr[In]=!0;var oi=Oo(Zn[In]),wi=tr(oi,zn,"_effect-".concat(In),Tn,Fr);In.startsWith("@layer")?Br=wi+Br:Br+=wi}}),[Jn,Ln,Br]},ms="cssVar",Jo=function(gr,dr){var vr=gr.key,Tr=gr.prefix,bn=gr.unitless,zn=gr.ignore,Ln=gr.token,Zn=gr.scope,ai=Zn===void 0?"":Zn,Jn=(0,u.useContext)(ne),mr=Jn.cache.instanceId,Fr=Jn.container,Br=Ln._tokenKey,Tn=[].concat((0,l.Z)(gr.path),[vr,ai,Br]),In=Pt(ms,Tn,function(){var oi=dr(),wi=Yt(oi,vr,{prefix:Tr,unitless:bn,ignore:zn,scope:ai}),Hn=(0,r.Z)(wi,2),ta=Hn[0],ra=Hn[1],gi=vi(Tn,ra);return[ta,ra,gi,vr]},function(oi){var wi=(0,r.Z)(oi,3),Hn=wi[2];pt&&(0,h.jL)(Hn,{mark:B,attachTo:Fr})},function(oi){var wi=(0,r.Z)(oi,3),Hn=wi[1],ta=wi[2];if(Hn){var ra=(0,h.hq)(Hn,ta,{mark:B,prepend:"queue",attachTo:Fr,priority:-999});ra[K]=mr,ra.setAttribute(M,vr)}});return In},ks=function(gr,dr,vr){var Tr=(0,r.Z)(gr,4),bn=Tr[1],zn=Tr[2],Ln=Tr[3],Zn=vr||{},ai=Zn.plain;if(!bn)return null;var Jn=-999,mr={"data-rc-order":"prependQueue","data-rc-priority":"".concat(Jn)},Fr=tr(bn,Ln,zn,mr,ai);return[Jn,zn,Fr]},Mo=Jo,Eu=(0,i.Z)((0,i.Z)((0,i.Z)({},ls,Wa),Xt,Pr),ms,ks);function Pu(rr){return rr!==null}function rl(rr,gr){var dr=typeof gr=="boolean"?{plain:gr}:gr||{},vr=dr.plain,Tr=vr===void 0?!1:vr,bn=dr.types,zn=bn===void 0?["style","token","cssVar"]:bn,Ln=dr.once,Zn=Ln===void 0?!1:Ln,ai=new RegExp("^(".concat((typeof zn=="string"?[zn]:zn).join("|"),")%")),Jn=Array.from(rr.cache.keys()).filter(function(Tn){return ai.test(Tn)}),mr={},Fr={},Br="";return Jn.map(function(Tn){if(Zn&&rr.extracted.has(Tn))return null;var In=Tn.replace(ai,"").replace(/%/g,"|"),oi=Tn.split("%"),wi=(0,r.Z)(oi,1),Hn=wi[0],ta=Eu[Hn],ra=ta(rr.cache.get(Tn)[1],mr,{plain:Tr});if(!ra)return null;var gi=(0,r.Z)(ra,3),Et=gi[0],Xn=gi[1],Sa=gi[2];return Tn.startsWith("style")&&(Fr[In]=Xn),rr.extracted.add(Tn),[Et,Sa]}).filter(Pu).sort(function(Tn,In){var oi=(0,r.Z)(Tn,1),wi=oi[0],Hn=(0,r.Z)(In,1),ta=Hn[0];return wi-ta}).forEach(function(Tn){var In=(0,r.Z)(Tn,2),oi=In[1];Br+=oi}),Br+=tr(".".concat(Qi,'{content:"').concat(Ni(Fr),'";}'),void 0,void 0,(0,i.Z)({},Qi,Qi),Tr),Br}var dl=function(){function rr(gr,dr){(0,m.Z)(this,rr),(0,i.Z)(this,"name",void 0),(0,i.Z)(this,"style",void 0),(0,i.Z)(this,"_keyframe",!0),this.name=gr,this.style=dr}return(0,b.Z)(rr,[{key:"getName",value:function(){var dr=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return dr?"".concat(dr,"-").concat(this.name):this.name}}]),rr}(),Fo=dl;function uo(rr){if(typeof rr=="number")return[[rr],!1];var gr=String(rr).trim(),dr=gr.match(/(.*)(!important)/),vr=(dr?dr[1]:gr).trim().split(/\s+/),Tr=[],bn=0;return[vr.reduce(function(zn,Ln){if(Ln.includes("(")||Ln.includes(")")){var Zn=Ln.split("(").length-1,ai=Ln.split(")").length-1;bn+=Zn-ai}return bn>=0&&Tr.push(Ln),bn===0&&(zn.push(Tr.join(" ")),Tr=[]),zn},[]),!!dr]}function Ho(rr){return rr.notSplit=!0,rr}var Hu={inset:["top","right","bottom","left"],insetBlock:["top","bottom"],insetBlockStart:["top"],insetBlockEnd:["bottom"],insetInline:["left","right"],insetInlineStart:["left"],insetInlineEnd:["right"],marginBlock:["marginTop","marginBottom"],marginBlockStart:["marginTop"],marginBlockEnd:["marginBottom"],marginInline:["marginLeft","marginRight"],marginInlineStart:["marginLeft"],marginInlineEnd:["marginRight"],paddingBlock:["paddingTop","paddingBottom"],paddingBlockStart:["paddingTop"],paddingBlockEnd:["paddingBottom"],paddingInline:["paddingLeft","paddingRight"],paddingInlineStart:["paddingLeft"],paddingInlineEnd:["paddingRight"],borderBlock:Ho(["borderTop","borderBottom"]),borderBlockStart:Ho(["borderTop"]),borderBlockEnd:Ho(["borderBottom"]),borderInline:Ho(["borderLeft","borderRight"]),borderInlineStart:Ho(["borderLeft"]),borderInlineEnd:Ho(["borderRight"]),borderBlockWidth:["borderTopWidth","borderBottomWidth"],borderBlockStartWidth:["borderTopWidth"],borderBlockEndWidth:["borderBottomWidth"],borderInlineWidth:["borderLeftWidth","borderRightWidth"],borderInlineStartWidth:["borderLeftWidth"],borderInlineEndWidth:["borderRightWidth"],borderBlockStyle:["borderTopStyle","borderBottomStyle"],borderBlockStartStyle:["borderTopStyle"],borderBlockEndStyle:["borderBottomStyle"],borderInlineStyle:["borderLeftStyle","borderRightStyle"],borderInlineStartStyle:["borderLeftStyle"],borderInlineEndStyle:["borderRightStyle"],borderBlockColor:["borderTopColor","borderBottomColor"],borderBlockStartColor:["borderTopColor"],borderBlockEndColor:["borderBottomColor"],borderInlineColor:["borderLeftColor","borderRightColor"],borderInlineStartColor:["borderLeftColor"],borderInlineEndColor:["borderRightColor"],borderStartStartRadius:["borderTopLeftRadius"],borderStartEndRadius:["borderTopRightRadius"],borderEndStartRadius:["borderBottomLeftRadius"],borderEndEndRadius:["borderBottomRightRadius"]};function Bo(rr,gr){var dr=rr;return gr&&(dr="".concat(dr," !important")),{_skip_check_:!0,value:dr}}var Go={visit:function(gr){var dr={};return Object.keys(gr).forEach(function(vr){var Tr=gr[vr],bn=Hu[vr];if(bn&&(typeof Tr=="number"||typeof Tr=="string")){var zn=uo(Tr),Ln=(0,r.Z)(zn,2),Zn=Ln[0],ai=Ln[1];bn.length&&bn.notSplit?bn.forEach(function(Jn){dr[Jn]=Bo(Tr,ai)}):bn.length===1?dr[bn[0]]=Bo(Zn[0],ai):bn.length===2?bn.forEach(function(Jn,mr){var Fr;dr[Jn]=Bo((Fr=Zn[mr])!==null&&Fr!==void 0?Fr:Zn[0],ai)}):bn.length===4?bn.forEach(function(Jn,mr){var Fr,Br;dr[Jn]=Bo((Fr=(Br=Zn[mr])!==null&&Br!==void 0?Br:Zn[mr-2])!==null&&Fr!==void 0?Fr:Zn[0],ai)}):dr[vr]=Tr}else dr[vr]=Tr}),dr}},Uu=Go,iu=/url\([^)]+\)|var\([^)]+\)|(\d*\.?\d+)px/g;function vu(rr,gr){var dr=Math.pow(10,gr+1),vr=Math.floor(rr*dr);return Math.round(vr/10)*10/dr}var No=function(){var gr=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},dr=gr.rootValue,vr=dr===void 0?16:dr,Tr=gr.precision,bn=Tr===void 0?5:Tr,zn=gr.mediaQuery,Ln=zn===void 0?!1:zn,Zn=function(mr,Fr){if(!Fr)return mr;var Br=parseFloat(Fr);if(Br<=1)return mr;var Tn=vu(Br/vr,bn);return"".concat(Tn,"rem")},ai=function(mr){var Fr=(0,c.Z)({},mr);return Object.entries(mr).forEach(function(Br){var Tn=(0,r.Z)(Br,2),In=Tn[0],oi=Tn[1];if(typeof oi=="string"&&oi.includes("px")){var wi=oi.replace(iu,Zn);Fr[In]=wi}!Bt[In]&&typeof oi=="number"&&oi!==0&&(Fr[In]="".concat(oi,"px").replace(iu,Zn));var Hn=In.trim();if(Hn.startsWith("@")&&Hn.includes("px")&&Ln){var ta=In.replace(iu,Zn);Fr[ta]=Fr[In],delete Fr[In]}}),Fr};return{visit:ai}},gu=No,Ko={supportModernCSS:function(){return We()&&ut()}}},7657:function(d,v,e){"use strict";e.d(v,{Z:function(){return le}});var r=e(54476),i=e(42978),l=e(20068),c=e(75931),f=e(59301),o=e(92310),h=e.n(o),u=e(30071),a=e(18418),x=e(33885),p=e(76190),y=e(810),m=e(96452),b=e(48736);function S(z){return z.replace(/-(.)/g,function(j,ie){return ie.toUpperCase()})}function k(z,j){(0,b.ZP)(z,"[@ant-design/icons] ".concat(j))}function R(z){return(0,p.Z)(z)==="object"&&typeof z.name=="string"&&typeof z.theme=="string"&&((0,p.Z)(z.icon)==="object"||typeof z.icon=="function")}function A(){var z=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return Object.keys(z).reduce(function(j,ie){var me=z[ie];switch(ie){case"class":j.className=me,delete j.class;break;default:delete j[ie],j[S(ie)]=me}return j},{})}function P(z,j,ie){return ie?f.createElement(z.tag,(0,x.Z)((0,x.Z)({key:j},A(z.attrs)),ie),(z.children||[]).map(function(me,Se){return P(me,"".concat(j,"-").concat(z.tag,"-").concat(Se))})):f.createElement(z.tag,(0,x.Z)({key:j},A(z.attrs)),(z.children||[]).map(function(me,Se){return P(me,"".concat(j,"-").concat(z.tag,"-").concat(Se))}))}function M(z){return(0,u.generate)(z)[0]}function B(z){return z?Array.isArray(z)?z:[z]:[]}var N={width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",focusable:"false"},K=`
.anticon {
display: inline-flex;
align-items: center;
color: inherit;
font-style: normal;
line-height: 0;
text-align: center;
text-transform: none;
vertical-align: -0.125em;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.anticon > * {
line-height: 1;
}
.anticon svg {
display: inline-block;
}
.anticon::before {
display: none;
}
.anticon .anticon-icon {
display: block;
}
.anticon[tabindex] {
cursor: pointer;
}
.anticon-spin::before,
.anticon-spin {
display: inline-block;
-webkit-animation: loadingCircle 1s infinite linear;
animation: loadingCircle 1s infinite linear;
}
@-webkit-keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
`,H=function(j){var ie=(0,f.useContext)(a.Z),me=ie.csp,Se=ie.prefixCls,Ie=ie.layer,He=K;Se&&(He=He.replace(/anticon/g,Se)),Ie&&(He="@layer ".concat(Ie,` {
`).concat(He,`
}`)),(0,f.useEffect)(function(){var je=j.current,Dt=(0,m.A)(je);(0,y.hq)(He,"@ant-design-icons",{prepend:!Ie,csp:me,attachTo:Dt})},[])},W=["icon","className","onClick","style","primaryColor","secondaryColor"],ae={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1};function ne(z){var j=z.primaryColor,ie=z.secondaryColor;ae.primaryColor=j,ae.secondaryColor=ie||M(j),ae.calculated=!!ie}function oe(){return(0,x.Z)({},ae)}var q=function(j){var ie=j.icon,me=j.className,Se=j.onClick,Ie=j.style,He=j.primaryColor,je=j.secondaryColor,Dt=(0,c.Z)(j,W),ht=f.useRef(),It=ae;if(He&&(It={primaryColor:He,secondaryColor:je||M(He)}),H(ht),k(R(ie),"icon should be icon definiton, but got ".concat(ie)),!R(ie))return null;var Zt=ie;return Zt&&typeof Zt.icon=="function"&&(Zt=(0,x.Z)((0,x.Z)({},Zt),{},{icon:Zt.icon(It.primaryColor,It.secondaryColor)})),P(Zt.icon,"svg-".concat(Zt.name),(0,x.Z)((0,x.Z)({className:me,onClick:Se,style:Ie,"data-icon":Zt.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},Dt),{},{ref:ht}))};q.displayName="IconReact",q.getTwoToneColors=oe,q.setTwoToneColors=ne;var X=q;function V(z){var j=B(z),ie=(0,i.Z)(j,2),me=ie[0],Se=ie[1];return X.setTwoToneColors({primaryColor:me,secondaryColor:Se})}function se(){var z=X.getTwoToneColors();return z.calculated?[z.primaryColor,z.secondaryColor]:z.primaryColor}var ee=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];V(u.blue.primary);var J=f.forwardRef(function(z,j){var ie=z.className,me=z.icon,Se=z.spin,Ie=z.rotate,He=z.tabIndex,je=z.onClick,Dt=z.twoToneColor,ht=(0,c.Z)(z,ee),It=f.useContext(a.Z),Zt=It.prefixCls,Rt=Zt===void 0?"anticon":Zt,ar=It.rootClassName,$e=h()(ar,Rt,(0,l.Z)((0,l.Z)({},"".concat(Rt,"-").concat(me.name),!!me.name),"".concat(Rt,"-spin"),!!Se||me.name==="loading"),ie),gt=He;gt===void 0&&je&&(gt=-1);var Mt=Ie?{msTransform:"rotate(".concat(Ie,"deg)"),transform:"rotate(".concat(Ie,"deg)")}:void 0,et=B(Dt),ft=(0,i.Z)(et,2),ot=ft[0],Je=ft[1];return f.createElement("span",(0,r.Z)({role:"img","aria-label":me.name},ht,{ref:j,tabIndex:gt,onClick:je,className:$e}),f.createElement(X,{icon:me,primaryColor:ot,secondaryColor:Je,style:Mt}))});J.displayName="AntdIcon",J.getTwoToneColor=se,J.setTwoToneColor=V;var le=J},18418:function(d,v,e){"use strict";var r=e(59301),i=(0,r.createContext)({});v.Z=i},29679:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(54476),i=e(59301),l={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 01-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"}}]},name:"check-circle",theme:"filled"},c=l,f=e(7657),o=function(x,p){return i.createElement(f.Z,(0,r.Z)({},x,{ref:p,icon:c}))},h=i.forwardRef(o),u=h},19248:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(54476),i=e(59301),l={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z"}}]},name:"close-circle",theme:"filled"},c=l,f=e(7657),o=function(x,p){return i.createElement(f.Z,(0,r.Z)({},x,{ref:p,icon:c}))},h=i.forwardRef(o),u=h},99267:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(54476),i=e(59301),l={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z"}}]},name:"close",theme:"outlined"},c=l,f=e(7657),o=function(x,p){return i.createElement(f.Z,(0,r.Z)({},x,{ref:p,icon:c}))},h=i.forwardRef(o),u=h},96512:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(54476),i=e(59301),l={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296zm32 440a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"exclamation-circle",theme:"filled"},c=l,f=e(7657),o=function(x,p){return i.createElement(f.Z,(0,r.Z)({},x,{ref:p,icon:c}))},h=i.forwardRef(o),u=h},78987:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(54476),i=e(59301),l={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm32 664c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V456c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272zm-32-344a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"info-circle",theme:"filled"},c=l,f=e(7657),o=function(x,p){return i.createElement(f.Z,(0,r.Z)({},x,{ref:p,icon:c}))},h=i.forwardRef(o),u=h},58617:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(54476),i=e(59301),l={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"}}]},name:"loading",theme:"outlined"},c=l,f=e(7657),o=function(x,p){return i.createElement(f.Z,(0,r.Z)({},x,{ref:p,icon:c}))},h=i.forwardRef(o),u=h},12722:function(d,v,e){"use strict";e.d(v,{GC:function(){return x},T6:function(){return y},VD:function(){return m},WE:function(){return h},Wl:function(){return p},Yt:function(){return b},lC:function(){return l},py:function(){return o},rW:function(){return i},s:function(){return a},ve:function(){return f},vq:function(){return u}});var r=e(12187);function i(S,k,R){return{r:(0,r.sh)(S,255)*255,g:(0,r.sh)(k,255)*255,b:(0,r.sh)(R,255)*255}}function l(S,k,R){S=(0,r.sh)(S,255),k=(0,r.sh)(k,255),R=(0,r.sh)(R,255);var A=Math.max(S,k,R),P=Math.min(S,k,R),M=0,B=0,N=(A+P)/2;if(A===P)B=0,M=0;else{var K=A-P;switch(B=N>.5?K/(2-A-P):K/(A+P),A){case S:M=(k-R)/K+(k<R?6:0);break;case k:M=(R-S)/K+2;break;case R:M=(S-k)/K+4;break;default:break}M/=6}return{h:M,s:B,l:N}}function c(S,k,R){return R<0&&(R+=1),R>1&&(R-=1),R<.16666666666666666?S+(k-S)*(6*R):R<.5?k:R<.6666666666666666?S+(k-S)*(.6666666666666666-R)*6:S}function f(S,k,R){var A,P,M;if(S=(0,r.sh)(S,360),k=(0,r.sh)(k,100),R=(0,r.sh)(R,100),k===0)P=R,M=R,A=R;else{var B=R<.5?R*(1+k):R+k-R*k,N=2*R-B;A=c(N,B,S+.3333333333333333),P=c(N,B,S),M=c(N,B,S-.3333333333333333)}return{r:A*255,g:P*255,b:M*255}}function o(S,k,R){S=(0,r.sh)(S,255),k=(0,r.sh)(k,255),R=(0,r.sh)(R,255);var A=Math.max(S,k,R),P=Math.min(S,k,R),M=0,B=A,N=A-P,K=A===0?0:N/A;if(A===P)M=0;else{switch(A){case S:M=(k-R)/N+(k<R?6:0);break;case k:M=(R-S)/N+2;break;case R:M=(S-k)/N+4;break;default:break}M/=6}return{h:M,s:K,v:B}}function h(S,k,R){S=(0,r.sh)(S,360)*6,k=(0,r.sh)(k,100),R=(0,r.sh)(R,100);var A=Math.floor(S),P=S-A,M=R*(1-k),B=R*(1-P*k),N=R*(1-(1-P)*k),K=A%6,H=[R,B,M,M,N,R][K],W=[N,R,R,B,M,M][K],ae=[M,M,N,R,R,B][K];return{r:H*255,g:W*255,b:ae*255}}function u(S,k,R,A){var P=[(0,r.FZ)(Math.round(S).toString(16)),(0,r.FZ)(Math.round(k).toString(16)),(0,r.FZ)(Math.round(R).toString(16))];return A&&P[0].startsWith(P[0].charAt(1))&&P[1].startsWith(P[1].charAt(1))&&P[2].startsWith(P[2].charAt(1))?P[0].charAt(0)+P[1].charAt(0)+P[2].charAt(0):P.join("")}function a(S,k,R,A,P){var M=[(0,r.FZ)(Math.round(S).toString(16)),(0,r.FZ)(Math.round(k).toString(16)),(0,r.FZ)(Math.round(R).toString(16)),(0,r.FZ)(p(A))];return P&&M[0].startsWith(M[0].charAt(1))&&M[1].startsWith(M[1].charAt(1))&&M[2].startsWith(M[2].charAt(1))&&M[3].startsWith(M[3].charAt(1))?M[0].charAt(0)+M[1].charAt(0)+M[2].charAt(0)+M[3].charAt(0):M.join("")}function x(S,k,R,A){var P=[(0,r.FZ)(p(A)),(0,r.FZ)(Math.round(S).toString(16)),(0,r.FZ)(Math.round(k).toString(16)),(0,r.FZ)(Math.round(R).toString(16))];return P.join("")}function p(S){return Math.round(parseFloat(S)*255).toString(16)}function y(S){return m(S)/255}function m(S){return parseInt(S,16)}function b(S){return{r:S>>16,g:(S&65280)>>8,b:S&255}}},93796:function(d,v,e){"use strict";e.d(v,{R:function(){return r}});var r={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},9915:function(d,v,e){"use strict";e.d(v,{ky:function(){return y},uA:function(){return c},uz:function(){return p}});var r=e(12722),i=e(93796),l=e(12187);function c(m){var b={r:0,g:0,b:0},S=1,k=null,R=null,A=null,P=!1,M=!1;return typeof m=="string"&&(m=p(m)),typeof m=="object"&&(y(m.r)&&y(m.g)&&y(m.b)?(b=(0,r.rW)(m.r,m.g,m.b),P=!0,M=String(m.r).substr(-1)==="%"?"prgb":"rgb"):y(m.h)&&y(m.s)&&y(m.v)?(k=(0,l.JX)(m.s),R=(0,l.JX)(m.v),b=(0,r.WE)(m.h,k,R),P=!0,M="hsv"):y(m.h)&&y(m.s)&&y(m.l)&&(k=(0,l.JX)(m.s),A=(0,l.JX)(m.l),b=(0,r.ve)(m.h,k,A),P=!0,M="hsl"),Object.prototype.hasOwnProperty.call(m,"a")&&(S=m.a)),S=(0,l.Yq)(S),{ok:P,format:m.format||M,r:Math.min(255,Math.max(b.r,0)),g:Math.min(255,Math.max(b.g,0)),b:Math.min(255,Math.max(b.b,0)),a:S}}var f="[-\\+]?\\d+%?",o="[-\\+]?\\d*\\.\\d+%?",h="(?:".concat(o,")|(?:").concat(f,")"),u="[\\s|\\(]+(".concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")\\s*\\)?"),a="[\\s|\\(]+(".concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")[,|\\s]+(").concat(h,")\\s*\\)?"),x={CSS_UNIT:new RegExp(h),rgb:new RegExp("rgb"+u),rgba:new RegExp("rgba"+a),hsl:new RegExp("hsl"+u),hsla:new RegExp("hsla"+a),hsv:new RegExp("hsv"+u),hsva:new RegExp("hsva"+a),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function p(m){if(m=m.trim().toLowerCase(),m.length===0)return!1;var b=!1;if(i.R[m])m=i.R[m],b=!0;else if(m==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var S=x.rgb.exec(m);return S?{r:S[1],g:S[2],b:S[3]}:(S=x.rgba.exec(m),S?{r:S[1],g:S[2],b:S[3],a:S[4]}:(S=x.hsl.exec(m),S?{h:S[1],s:S[2],l:S[3]}:(S=x.hsla.exec(m),S?{h:S[1],s:S[2],l:S[3],a:S[4]}:(S=x.hsv.exec(m),S?{h:S[1],s:S[2],v:S[3]}:(S=x.hsva.exec(m),S?{h:S[1],s:S[2],v:S[3],a:S[4]}:(S=x.hex8.exec(m),S?{r:(0,r.VD)(S[1]),g:(0,r.VD)(S[2]),b:(0,r.VD)(S[3]),a:(0,r.T6)(S[4]),format:b?"name":"hex8"}:(S=x.hex6.exec(m),S?{r:(0,r.VD)(S[1]),g:(0,r.VD)(S[2]),b:(0,r.VD)(S[3]),format:b?"name":"hex"}:(S=x.hex4.exec(m),S?{r:(0,r.VD)(S[1]+S[1]),g:(0,r.VD)(S[2]+S[2]),b:(0,r.VD)(S[3]+S[3]),a:(0,r.T6)(S[4]+S[4]),format:b?"name":"hex8"}:(S=x.hex3.exec(m),S?{r:(0,r.VD)(S[1]+S[1]),g:(0,r.VD)(S[2]+S[2]),b:(0,r.VD)(S[3]+S[3]),format:b?"name":"hex"}:!1)))))))))}function y(m){return!!x.CSS_UNIT.exec(String(m))}},64993:function(d,v,e){"use strict";e.d(v,{C:function(){return f},H:function(){return o}});var r=e(12722),i=e(93796),l=e(9915),c=e(12187),f=function(){function h(u,a){u===void 0&&(u=""),a===void 0&&(a={});var x;if(u instanceof h)return u;typeof u=="number"&&(u=(0,r.Yt)(u)),this.originalInput=u;var p=(0,l.uA)(u);this.originalInput=u,this.r=p.r,this.g=p.g,this.b=p.b,this.a=p.a,this.roundA=Math.round(100*this.a)/100,this.format=(x=a.format)!==null&&x!==void 0?x:p.format,this.gradientType=a.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=p.ok}return h.prototype.isDark=function(){return this.getBrightness()<128},h.prototype.isLight=function(){return!this.isDark()},h.prototype.getBrightness=function(){var u=this.toRgb();return(u.r*299+u.g*587+u.b*114)/1e3},h.prototype.getLuminance=function(){var u=this.toRgb(),a,x,p,y=u.r/255,m=u.g/255,b=u.b/255;return y<=.03928?a=y/12.92:a=Math.pow((y+.055)/1.055,2.4),m<=.03928?x=m/12.92:x=Math.pow((m+.055)/1.055,2.4),b<=.03928?p=b/12.92:p=Math.pow((b+.055)/1.055,2.4),.2126*a+.7152*x+.0722*p},h.prototype.getAlpha=function(){return this.a},h.prototype.setAlpha=function(u){return this.a=(0,c.Yq)(u),this.roundA=Math.round(100*this.a)/100,this},h.prototype.isMonochrome=function(){var u=this.toHsl().s;return u===0},h.prototype.toHsv=function(){var u=(0,r.py)(this.r,this.g,this.b);return{h:u.h*360,s:u.s,v:u.v,a:this.a}},h.prototype.toHsvString=function(){var u=(0,r.py)(this.r,this.g,this.b),a=Math.round(u.h*360),x=Math.round(u.s*100),p=Math.round(u.v*100);return this.a===1?"hsv(".concat(a,", ").concat(x,"%, ").concat(p,"%)"):"hsva(".concat(a,", ").concat(x,"%, ").concat(p,"%, ").concat(this.roundA,")")},h.prototype.toHsl=function(){var u=(0,r.lC)(this.r,this.g,this.b);return{h:u.h*360,s:u.s,l:u.l,a:this.a}},h.prototype.toHslString=function(){var u=(0,r.lC)(this.r,this.g,this.b),a=Math.round(u.h*360),x=Math.round(u.s*100),p=Math.round(u.l*100);return this.a===1?"hsl(".concat(a,", ").concat(x,"%, ").concat(p,"%)"):"hsla(".concat(a,", ").concat(x,"%, ").concat(p,"%, ").concat(this.roundA,")")},h.prototype.toHex=function(u){return u===void 0&&(u=!1),(0,r.vq)(this.r,this.g,this.b,u)},h.prototype.toHexString=function(u){return u===void 0&&(u=!1),"#"+this.toHex(u)},h.prototype.toHex8=function(u){return u===void 0&&(u=!1),(0,r.s)(this.r,this.g,this.b,this.a,u)},h.prototype.toHex8String=function(u){return u===void 0&&(u=!1),"#"+this.toHex8(u)},h.prototype.toHexShortString=function(u){return u===void 0&&(u=!1),this.a===1?this.toHexString(u):this.toHex8String(u)},h.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},h.prototype.toRgbString=function(){var u=Math.round(this.r),a=Math.round(this.g),x=Math.round(this.b);return this.a===1?"rgb(".concat(u,", ").concat(a,", ").concat(x,")"):"rgba(".concat(u,", ").concat(a,", ").concat(x,", ").concat(this.roundA,")")},h.prototype.toPercentageRgb=function(){var u=function(a){return"".concat(Math.round((0,c.sh)(a,255)*100),"%")};return{r:u(this.r),g:u(this.g),b:u(this.b),a:this.a}},h.prototype.toPercentageRgbString=function(){var u=function(a){return Math.round((0,c.sh)(a,255)*100)};return this.a===1?"rgb(".concat(u(this.r),"%, ").concat(u(this.g),"%, ").concat(u(this.b),"%)"):"rgba(".concat(u(this.r),"%, ").concat(u(this.g),"%, ").concat(u(this.b),"%, ").concat(this.roundA,")")},h.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var u="#"+(0,r.vq)(this.r,this.g,this.b,!1),a=0,x=Object.entries(i.R);a<x.length;a++){var p=x[a],y=p[0],m=p[1];if(u===m)return y}return!1},h.prototype.toString=function(u){var a=!!u;u=u!=null?u:this.format;var x=!1,p=this.a<1&&this.a>=0,y=!a&&p&&(u.startsWith("hex")||u==="name");return y?u==="name"&&this.a===0?this.toName():this.toRgbString():(u==="rgb"&&(x=this.toRgbString()),u==="prgb"&&(x=this.toPercentageRgbString()),(u==="hex"||u==="hex6")&&(x=this.toHexString()),u==="hex3"&&(x=this.toHexString(!0)),u==="hex4"&&(x=this.toHex8String(!0)),u==="hex8"&&(x=this.toHex8String()),u==="name"&&(x=this.toName()),u==="hsl"&&(x=this.toHslString()),u==="hsv"&&(x=this.toHsvString()),x||this.toHexString())},h.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},h.prototype.clone=function(){return new h(this.toString())},h.prototype.lighten=function(u){u===void 0&&(u=10);var a=this.toHsl();return a.l+=u/100,a.l=(0,c.V2)(a.l),new h(a)},h.prototype.brighten=function(u){u===void 0&&(u=10);var a=this.toRgb();return a.r=Math.max(0,Math.min(255,a.r-Math.round(255*-(u/100)))),a.g=Math.max(0,Math.min(255,a.g-Math.round(255*-(u/100)))),a.b=Math.max(0,Math.min(255,a.b-Math.round(255*-(u/100)))),new h(a)},h.prototype.darken=function(u){u===void 0&&(u=10);var a=this.toHsl();return a.l-=u/100,a.l=(0,c.V2)(a.l),new h(a)},h.prototype.tint=function(u){return u===void 0&&(u=10),this.mix("white",u)},h.prototype.shade=function(u){return u===void 0&&(u=10),this.mix("black",u)},h.prototype.desaturate=function(u){u===void 0&&(u=10);var a=this.toHsl();return a.s-=u/100,a.s=(0,c.V2)(a.s),new h(a)},h.prototype.saturate=function(u){u===void 0&&(u=10);var a=this.toHsl();return a.s+=u/100,a.s=(0,c.V2)(a.s),new h(a)},h.prototype.greyscale=function(){return this.desaturate(100)},h.prototype.spin=function(u){var a=this.toHsl(),x=(a.h+u)%360;return a.h=x<0?360+x:x,new h(a)},h.prototype.mix=function(u,a){a===void 0&&(a=50);var x=this.toRgb(),p=new h(u).toRgb(),y=a/100,m={r:(p.r-x.r)*y+x.r,g:(p.g-x.g)*y+x.g,b:(p.b-x.b)*y+x.b,a:(p.a-x.a)*y+x.a};return new h(m)},h.prototype.analogous=function(u,a){u===void 0&&(u=6),a===void 0&&(a=30);var x=this.toHsl(),p=360/a,y=[this];for(x.h=(x.h-(p*u>>1)+720)%360;--u;)x.h=(x.h+p)%360,y.push(new h(x));return y},h.prototype.complement=function(){var u=this.toHsl();return u.h=(u.h+180)%360,new h(u)},h.prototype.monochromatic=function(u){u===void 0&&(u=6);for(var a=this.toHsv(),x=a.h,p=a.s,y=a.v,m=[],b=1/u;u--;)m.push(new h({h:x,s:p,v:y})),y=(y+b)%1;return m},h.prototype.splitcomplement=function(){var u=this.toHsl(),a=u.h;return[this,new h({h:(a+72)%360,s:u.s,l:u.l}),new h({h:(a+216)%360,s:u.s,l:u.l})]},h.prototype.onBackground=function(u){var a=this.toRgb(),x=new h(u).toRgb(),p=a.a+x.a*(1-a.a);return new h({r:(a.r*a.a+x.r*x.a*(1-a.a))/p,g:(a.g*a.a+x.g*x.a*(1-a.a))/p,b:(a.b*a.a+x.b*x.a*(1-a.a))/p,a:p})},h.prototype.triad=function(){return this.polyad(3)},h.prototype.tetrad=function(){return this.polyad(4)},h.prototype.polyad=function(u){for(var a=this.toHsl(),x=a.h,p=[this],y=360/u,m=1;m<u;m++)p.push(new h({h:(x+m*y)%360,s:a.s,l:a.l}));return p},h.prototype.equals=function(u){return this.toRgbString()===new h(u).toRgbString()},h}();function o(h,u){return h===void 0&&(h=""),u===void 0&&(u={}),new f(h,u)}},12187:function(d,v,e){"use strict";e.d(v,{FZ:function(){return h},JX:function(){return o},V2:function(){return i},Yq:function(){return f},sh:function(){return r}});function r(u,a){l(u)&&(u="100%");var x=c(u);return u=a===360?u:Math.min(a,Math.max(0,parseFloat(u))),x&&(u=parseInt(String(u*a),10)/100),Math.abs(u-a)<1e-6?1:(a===360?u=(u<0?u%a+a:u%a)/parseFloat(String(a)):u=u%a/parseFloat(String(a)),u)}function i(u){return Math.min(1,Math.max(0,u))}function l(u){return typeof u=="string"&&u.indexOf(".")!==-1&&parseFloat(u)===1}function c(u){return typeof u=="string"&&u.indexOf("%")!==-1}function f(u){return u=parseFloat(u),(isNaN(u)||u<0||u>1)&&(u=1),u}function o(u){return u<=1?"".concat(Number(u)*100,"%"):u}function h(u){return u.length===1?"0"+u:String(u)}},43403:function(d,v,e){"use strict";e.d(v,{Z:function(){return H}});var r=e(42978),i=e(59301),l=e(4676),c=e(47273),f=e(48736),o=e(8654),h=i.createContext(null),u=h,a=e(94480),x=e(34280),p=[];function y(W,ae){var ne=i.useState(function(){if(!(0,c.Z)())return null;var me=document.createElement("div");return me}),oe=(0,r.Z)(ne,1),q=oe[0],X=i.useRef(!1),V=i.useContext(u),se=i.useState(p),ee=(0,r.Z)(se,2),J=ee[0],le=ee[1],z=V||(X.current?void 0:function(me){le(function(Se){var Ie=[me].concat((0,a.Z)(Se));return Ie})});function j(){q.parentElement||document.body.appendChild(q),X.current=!0}function ie(){var me;(me=q.parentElement)===null||me===void 0||me.removeChild(q),X.current=!1}return(0,x.Z)(function(){return W?V?V(j):j():ie(),ie},[W]),(0,x.Z)(function(){J.length&&(J.forEach(function(me){return me()}),le(p))},[J]),[q,z]}var m=e(810),b=e(75152);function S(){return document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth}var k="rc-util-locker-".concat(Date.now()),R=0;function A(W){var ae=!!W,ne=i.useState(function(){return R+=1,"".concat(k,"_").concat(R)}),oe=(0,r.Z)(ne,1),q=oe[0];(0,x.Z)(function(){if(ae){var X=(0,b.o)(document.body).width,V=S();(0,m.hq)(`
html body {
overflow-y: hidden;
`.concat(V?"width: calc(100% - ".concat(X,"px);"):"",`
}`),q)}else(0,m.jL)(q);return function(){(0,m.jL)(q)}},[ae,q])}var P=!1;function M(W){return typeof W=="boolean"&&(P=W),P}var B=function(ae){return ae===!1?!1:!(0,c.Z)()||!ae?null:typeof ae=="string"?document.querySelector(ae):typeof ae=="function"?ae():ae},N=i.forwardRef(function(W,ae){var ne=W.open,oe=W.autoLock,q=W.getContainer,X=W.debug,V=W.autoDestroy,se=V===void 0?!0:V,ee=W.children,J=i.useState(ne),le=(0,r.Z)(J,2),z=le[0],j=le[1],ie=z||ne;i.useEffect(function(){(se||ne)&&j(ne)},[ne,se]);var me=i.useState(function(){return B(q)}),Se=(0,r.Z)(me,2),Ie=Se[0],He=Se[1];i.useEffect(function(){var et=B(q);He(et!=null?et:null)});var je=y(ie&&!Ie,X),Dt=(0,r.Z)(je,2),ht=Dt[0],It=Dt[1],Zt=Ie!=null?Ie:ht;A(oe&&ne&&(0,c.Z)()&&(Zt===ht||Zt===document.body));var Rt=null;if(ee&&(0,o.Yr)(ee)&&ae){var ar=ee;Rt=ar.ref}var $e=(0,o.x1)(Rt,ae);if(!ie||!(0,c.Z)()||Ie===void 0)return null;var gt=Zt===!1||M(),Mt=ee;return ae&&(Mt=i.cloneElement(ee,{ref:$e})),i.createElement(u.Provider,{value:It},gt?Mt:(0,l.createPortal)(Mt,Zt))}),K=N,H=K},35593:function(d,v,e){"use strict";e.d(v,{Z:function(){return Mt}});var r=e(33885),i=e(42978),l=e(75931),c=e(43403),f=e(92310),o=e.n(f),h=e(29301),u=e(76846),a=e(96452),x=e(6089),p=e(80402),y=e(34280),m=e(49658),b=e(59301),S=e(54476),k=e(77900),R=e(8654);function A(et){var ft=et.prefixCls,ot=et.align,Je=et.arrow,Ne=et.arrowPos,ye=Je||{},ke=ye.className,Ge=ye.content,We=Ne.x,Xe=We===void 0?0:We,ut=Ne.y,pt=ut===void 0?0:ut,or=b.useRef();if(!ot||!ot.points)return null;var tr={position:"absolute"};if(ot.autoArrow!==!1){var Me=ot.points[0],tt=ot.points[1],Yt=Me[0],Ot=Me[1],zt=tt[0],Ht=tt[1];Yt===zt||!["t","b"].includes(Yt)?tr.top=pt:Yt==="t"?tr.top=0:tr.bottom=0,Ot===Ht||!["l","r"].includes(Ot)?tr.left=Xe:Ot==="l"?tr.left=0:tr.right=0}return b.createElement("div",{ref:or,className:o()("".concat(ft,"-arrow"),ke),style:tr},Ge)}function P(et){var ft=et.prefixCls,ot=et.open,Je=et.zIndex,Ne=et.mask,ye=et.motion;return Ne?b.createElement(k.default,(0,S.Z)({},ye,{motionAppear:!0,visible:ot,removeOnLeave:!0}),function(ke){var Ge=ke.className;return b.createElement("div",{style:{zIndex:Je},className:o()("".concat(ft,"-mask"),Ge)})}):null}var M=b.memo(function(et){var ft=et.children;return ft},function(et,ft){return ft.cache}),B=M,N=b.forwardRef(function(et,ft){var ot=et.popup,Je=et.className,Ne=et.prefixCls,ye=et.style,ke=et.target,Ge=et.onVisibleChanged,We=et.open,Xe=et.keepDom,ut=et.fresh,pt=et.onClick,or=et.mask,tr=et.arrow,Me=et.arrowPos,tt=et.align,Yt=et.motion,Ot=et.maskMotion,zt=et.forceRender,Ht=et.getPopupContainer,lr=et.autoDestroy,Wt=et.portal,Ce=et.zIndex,ce=et.onMouseEnter,pe=et.onMouseLeave,Ct=et.onPointerEnter,Ae=et.ready,st=et.offsetX,Gt=et.offsetY,bt=et.offsetR,Te=et.offsetB,yt=et.onAlign,ze=et.onPrepare,xe=et.stretch,dt=et.targetWidth,Pt=et.targetHeight,Be=typeof ot=="function"?ot():ot,Or=We||Xe,mt=(Ht==null?void 0:Ht.length)>0,qr=b.useState(!Ht||!mt),an=(0,i.Z)(qr,2),Nt=an[0],qt=an[1];if((0,y.Z)(function(){!Nt&&mt&&ke&&qt(!0)},[Nt,mt,ke]),!Nt)return null;var Lt="auto",Xt={left:"-1000vw",top:"-1000vh",right:Lt,bottom:Lt};if(Ae||!We){var Er,Pr=tt.points,At=tt.dynamicInset||((Er=tt._experimental)===null||Er===void 0?void 0:Er.dynamicInset),Kt=At&&Pr[0][1]==="r",Bt=At&&Pr[0][0]==="b";Kt?(Xt.right=bt,Xt.left=Lt):(Xt.left=st,Xt.right=Lt),Bt?(Xt.bottom=Te,Xt.top=Lt):(Xt.top=Gt,Xt.bottom=Lt)}var Jt={};return xe&&(xe.includes("height")&&Pt?Jt.height=Pt:xe.includes("minHeight")&&Pt&&(Jt.minHeight=Pt),xe.includes("width")&&dt?Jt.width=dt:xe.includes("minWidth")&&dt&&(Jt.minWidth=dt)),We||(Jt.pointerEvents="none"),b.createElement(Wt,{open:zt||Or,getContainer:Ht&&function(){return Ht(ke)},autoDestroy:lr},b.createElement(P,{prefixCls:Ne,open:We,zIndex:Ce,mask:or,motion:Ot}),b.createElement(h.Z,{onResize:yt,disabled:!We},function(br){return b.createElement(k.default,(0,S.Z)({motionAppear:!0,motionEnter:!0,motionLeave:!0,removeOnLeave:!1,forceRender:zt,leavedClassName:"".concat(Ne,"-hidden")},Yt,{onAppearPrepare:ze,onEnterPrepare:ze,visible:We,onVisibleChanged:function(Wr){var jn;Yt==null||(jn=Yt.onVisibleChanged)===null||jn===void 0||jn.call(Yt,Wr),Ge(Wr)}}),function(Xr,Wr){var jn=Xr.className,wn=Xr.style,Yn=o()(Ne,jn,Je);return b.createElement("div",{ref:(0,R.sQ)(br,ft,Wr),className:Yn,style:(0,r.Z)((0,r.Z)((0,r.Z)((0,r.Z)({"--arrow-x":"".concat(Me.x||0,"px"),"--arrow-y":"".concat(Me.y||0,"px")},Xt),Jt),wn),{},{boxSizing:"border-box",zIndex:Ce},ye),onMouseEnter:ce,onMouseLeave:pe,onPointerEnter:Ct,onClick:pt},tr&&b.createElement(A,{prefixCls:Ne,arrow:tr,arrowPos:Me,align:tt}),b.createElement(B,{cache:!We&&!ut},Be))})}))}),K=N,H=b.forwardRef(function(et,ft){var ot=et.children,Je=et.getTriggerDOMNode,Ne=(0,R.Yr)(ot),ye=b.useCallback(function(Ge){(0,R.mH)(ft,Je?Je(Ge):Ge)},[Je]),ke=(0,R.x1)(ye,ot.ref);return Ne?b.cloneElement(ot,{ref:ke}):ot}),W=H,ae=b.createContext(null),ne=ae;function oe(et){return et?Array.isArray(et)?et:[et]:[]}function q(et,ft,ot,Je){return b.useMemo(function(){var Ne=oe(ot!=null?ot:ft),ye=oe(Je!=null?Je:ft),ke=new Set(Ne),Ge=new Set(ye);return et&&(ke.has("hover")&&(ke.delete("hover"),ke.add("click")),Ge.has("hover")&&(Ge.delete("hover"),Ge.add("click"))),[ke,Ge]},[et,ft,ot,Je])}var X=e(29194);function V(){var et=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],ft=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],ot=arguments.length>2?arguments[2]:void 0;return ot?et[0]===ft[0]:et[0]===ft[0]&&et[1]===ft[1]}function se(et,ft,ot,Je){for(var Ne=ot.points,ye=Object.keys(et),ke=0;ke<ye.length;ke+=1){var Ge,We=ye[ke];if(V((Ge=et[We])===null||Ge===void 0?void 0:Ge.points,Ne,Je))return"".concat(ft,"-placement-").concat(We)}return""}function ee(et,ft,ot,Je){return ft||(ot?{motionName:"".concat(et,"-").concat(ot)}:Je?{motionName:Je}:null)}function J(et){return et.ownerDocument.defaultView}function le(et){for(var ft=[],ot=et==null?void 0:et.parentElement,Je=["hidden","scroll","clip","auto"];ot;){var Ne=J(ot).getComputedStyle(ot),ye=Ne.overflowX,ke=Ne.overflowY,Ge=Ne.overflow;[ye,ke,Ge].some(function(We){return Je.includes(We)})&&ft.push(ot),ot=ot.parentElement}return ft}function z(et){var ft=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;return Number.isNaN(et)?ft:et}function j(et){return z(parseFloat(et),0)}function ie(et,ft){var ot=(0,r.Z)({},et);return(ft||[]).forEach(function(Je){if(!(Je instanceof HTMLBodyElement||Je instanceof HTMLHtmlElement)){var Ne=J(Je).getComputedStyle(Je),ye=Ne.overflow,ke=Ne.overflowClipMargin,Ge=Ne.borderTopWidth,We=Ne.borderBottomWidth,Xe=Ne.borderLeftWidth,ut=Ne.borderRightWidth,pt=Je.getBoundingClientRect(),or=Je.offsetHeight,tr=Je.clientHeight,Me=Je.offsetWidth,tt=Je.clientWidth,Yt=j(Ge),Ot=j(We),zt=j(Xe),Ht=j(ut),lr=z(Math.round(pt.width/Me*1e3)/1e3),Wt=z(Math.round(pt.height/or*1e3)/1e3),Ce=(Me-tt-zt-Ht)*lr,ce=(or-tr-Yt-Ot)*Wt,pe=Yt*Wt,Ct=Ot*Wt,Ae=zt*lr,st=Ht*lr,Gt=0,bt=0;if(ye==="clip"){var Te=j(ke);Gt=Te*lr,bt=Te*Wt}var yt=pt.x+Ae-Gt,ze=pt.y+pe-bt,xe=yt+pt.width+2*Gt-Ae-st-Ce,dt=ze+pt.height+2*bt-pe-Ct-ce;ot.left=Math.max(ot.left,yt),ot.top=Math.max(ot.top,ze),ot.right=Math.min(ot.right,xe),ot.bottom=Math.min(ot.bottom,dt)}}),ot}function me(et){var ft=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,ot="".concat(ft),Je=ot.match(/^(.*)\%$/);return Je?et*(parseFloat(Je[1])/100):parseFloat(ot)}function Se(et,ft){var ot=ft||[],Je=(0,i.Z)(ot,2),Ne=Je[0],ye=Je[1];return[me(et.width,Ne),me(et.height,ye)]}function Ie(){var et=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return[et[0],et[1]]}function He(et,ft){var ot=ft[0],Je=ft[1],Ne,ye;return ot==="t"?ye=et.y:ot==="b"?ye=et.y+et.height:ye=et.y+et.height/2,Je==="l"?Ne=et.x:Je==="r"?Ne=et.x+et.width:Ne=et.x+et.width/2,{x:Ne,y:ye}}function je(et,ft){var ot={t:"b",b:"t",l:"r",r:"l"};return et.map(function(Je,Ne){return Ne===ft?ot[Je]||"c":Je}).join("")}function Dt(et,ft,ot,Je,Ne,ye,ke){var Ge=b.useState({ready:!1,offsetX:0,offsetY:0,offsetR:0,offsetB:0,arrowX:0,arrowY:0,scaleX:1,scaleY:1,align:Ne[Je]||{}}),We=(0,i.Z)(Ge,2),Xe=We[0],ut=We[1],pt=b.useRef(0),or=b.useMemo(function(){return ft?le(ft):[]},[ft]),tr=b.useRef({}),Me=function(){tr.current={}};et||Me();var tt=(0,x.Z)(function(){if(ft&&ot&&et){let Ka=function(Ds,xo){var Zo=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Yn,Qo=Be.x+Ds,mu=Be.y+xo,_u=Qo+Er,vo=mu+Xt,Wo=Math.max(Qo,Zo.left),Oo=Math.max(mu,Zo.top),nu=Math.min(_u,Zo.right),Xo=Math.min(vo,Zo.bottom);return Math.max(0,(nu-Wo)*(Xo-Oo))},Ni=function(){Fn=Be.y+Ee,Qn=Fn+Xt,Ke=Be.x+$n,ct=Ke+Er};var zt,Ht,lr=ft,Wt=lr.ownerDocument,Ce=J(lr),ce=Ce.getComputedStyle(lr),pe=ce.width,Ct=ce.height,Ae=ce.position,st=lr.style.left,Gt=lr.style.top,bt=lr.style.right,Te=lr.style.bottom,yt=lr.style.overflow,ze=(0,r.Z)((0,r.Z)({},Ne[Je]),ye),xe=Wt.createElement("div");(zt=lr.parentElement)===null||zt===void 0||zt.appendChild(xe),xe.style.left="".concat(lr.offsetLeft,"px"),xe.style.top="".concat(lr.offsetTop,"px"),xe.style.position=Ae,xe.style.height="".concat(lr.offsetHeight,"px"),xe.style.width="".concat(lr.offsetWidth,"px"),lr.style.left="0",lr.style.top="0",lr.style.right="auto",lr.style.bottom="auto",lr.style.overflow="hidden";var dt;if(Array.isArray(ot))dt={x:ot[0],y:ot[1],width:0,height:0};else{var Pt=ot.getBoundingClientRect();dt={x:Pt.x,y:Pt.y,width:Pt.width,height:Pt.height}}var Be=lr.getBoundingClientRect(),Or=Wt.documentElement,mt=Or.clientWidth,qr=Or.clientHeight,an=Or.scrollWidth,Nt=Or.scrollHeight,qt=Or.scrollTop,Lt=Or.scrollLeft,Xt=Be.height,Er=Be.width,Pr=dt.height,At=dt.width,Kt={left:0,top:0,right:mt,bottom:qr},Bt={left:-Lt,top:-qt,right:an-Lt,bottom:Nt-qt},Jt=ze.htmlRegion,br="visible",Xr="visibleFirst";Jt!=="scroll"&&Jt!==Xr&&(Jt=br);var Wr=Jt===Xr,jn=ie(Bt,or),wn=ie(Kt,or),Yn=Jt===br?wn:jn,St=Wr?wn:Yn;lr.style.left="auto",lr.style.top="auto",lr.style.right="0",lr.style.bottom="0";var Vr=lr.getBoundingClientRect();lr.style.left=st,lr.style.top=Gt,lr.style.right=bt,lr.style.bottom=Te,lr.style.overflow=yt,(Ht=lr.parentElement)===null||Ht===void 0||Ht.removeChild(xe);var ii=z(Math.round(Er/parseFloat(pe)*1e3)/1e3),Bi=z(Math.round(Xt/parseFloat(Ct)*1e3)/1e3);if(ii===0||Bi===0||(0,u.Sh)(ot)&&!(0,X.Z)(ot))return;var Gn=ze.offset,ci=ze.targetOffset,Oi=Se(Be,Gn),$i=(0,i.Z)(Oi,2),Ai=$i[0],ji=$i[1],ha=Se(dt,ci),ea=(0,i.Z)(ha,2),Yi=ea[0],mi=ea[1];dt.x-=Yi,dt.y-=mi;var zi=ze.points||[],Ca=(0,i.Z)(zi,2),xt=Ca[0],xa=Ca[1],Zi=Ie(xa),_i=Ie(xt),Da=He(dt,Zi),Hi=He(Be,_i),ei=(0,r.Z)({},ze),$n=Da.x-Hi.x+Ai,Ee=Da.y-Hi.y+ji,nt=Ka($n,Ee),qe=Ka($n,Ee,wn),Tt=He(dt,["t","l"]),lt=He(Be,["t","l"]),hr=He(dt,["b","r"]),pr=He(Be,["b","r"]),Cr=ze.overflow||{},$r=Cr.adjustX,en=Cr.adjustY,Nr=Cr.shiftX,An=Cr.shiftY,_r=function(xo){return typeof xo=="boolean"?xo:xo>=0},Fn,Qn,Ke,ct;Ni();var ge=_r(en),sr=_i[0]===Zi[0];if(ge&&_i[0]==="t"&&(Qn>St.bottom||tr.current.bt)){var nr=Ee;sr?nr-=Xt-Pr:nr=Tt.y-pr.y-ji;var kr=Ka($n,nr),Hr=Ka($n,nr,wn);kr>nt||kr===nt&&(!Wr||Hr>=qe)?(tr.current.bt=!0,Ee=nr,ji=-ji,ei.points=[je(_i,0),je(Zi,0)]):tr.current.bt=!1}if(ge&&_i[0]==="b"&&(Fn<St.top||tr.current.tb)){var Zr=Ee;sr?Zr+=Xt-Pr:Zr=hr.y-lt.y-ji;var hn=Ka($n,Zr),Si=Ka($n,Zr,wn);hn>nt||hn===nt&&(!Wr||Si>=qe)?(tr.current.tb=!0,Ee=Zr,ji=-ji,ei.points=[je(_i,0),je(Zi,0)]):tr.current.tb=!1}var un=_r($r),yn=_i[1]===Zi[1];if(un&&_i[1]==="l"&&(ct>St.right||tr.current.rl)){var Gr=$n;yn?Gr-=Er-At:Gr=Tt.x-pr.x-Ai;var kn=Ka(Gr,Ee),si=Ka(Gr,Ee,wn);kn>nt||kn===nt&&(!Wr||si>=qe)?(tr.current.rl=!0,$n=Gr,Ai=-Ai,ei.points=[je(_i,1),je(Zi,1)]):tr.current.rl=!1}if(un&&_i[1]==="r"&&(Ke<St.left||tr.current.lr)){var Ea=$n;yn?Ea+=Er-At:Ea=hr.x-lt.x-Ai;var Js=Ka(Ea,Ee),Ba=Ka(Ea,Ee,wn);Js>nt||Js===nt&&(!Wr||Ba>=qe)?(tr.current.lr=!0,$n=Ea,Ai=-Ai,ei.points=[je(_i,1),je(Zi,1)]):tr.current.lr=!1}Ni();var $s=Nr===!0?0:Nr;typeof $s=="number"&&(Ke<wn.left&&($n-=Ke-wn.left-Ai,dt.x+At<wn.left+$s&&($n+=dt.x-wn.left+At-$s)),ct>wn.right&&($n-=ct-wn.right-Ai,dt.x>wn.right-$s&&($n+=dt.x-wn.right+$s)));var Ns=An===!0?0:An;typeof Ns=="number"&&(Fn<wn.top&&(Ee-=Fn-wn.top-ji,dt.y+Pr<wn.top+Ns&&(Ee+=dt.y-wn.top+Pr-Ns)),Qn>wn.bottom&&(Ee-=Qn-wn.bottom-ji,dt.y>wn.bottom-Ns&&(Ee+=dt.y-wn.bottom+Ns)));var as=Be.x+$n,oo=as+Er,Aa=Be.y+Ee,Is=Aa+Xt,ps=dt.x,po=ps+At,Ji=dt.y,to=Ji+Pr,zo=Math.max(as,ps),Na=Math.min(oo,po),zs=(zo+Na)/2,di=zs-as,ro=Math.max(Aa,Ji),Rn=Math.min(Is,to),ss=(ro+Rn)/2,Ps=ss-Aa;ke==null||ke(ft,ei);var Os=Vr.right-Be.x-($n+Be.width),Qi=Vr.bottom-Be.y-(Ee+Be.height);ut({ready:!0,offsetX:$n/ii,offsetY:Ee/Bi,offsetR:Os/ii,offsetB:Qi/Bi,arrowX:di/ii,arrowY:Ps/Bi,scaleX:ii,scaleY:Bi,align:ei})}}),Yt=function(){pt.current+=1;var Ht=pt.current;Promise.resolve().then(function(){pt.current===Ht&&tt()})},Ot=function(){ut(function(Ht){return(0,r.Z)((0,r.Z)({},Ht),{},{ready:!1})})};return(0,y.Z)(Ot,[Je]),(0,y.Z)(function(){et||Ot()},[et]),[Xe.ready,Xe.offsetX,Xe.offsetY,Xe.offsetR,Xe.offsetB,Xe.arrowX,Xe.arrowY,Xe.scaleX,Xe.scaleY,Xe.align,Yt]}var ht=e(94480);function It(et,ft,ot,Je,Ne){(0,y.Z)(function(){if(et&&ft&&ot){let pt=function(){Je(),Ne()};var ye=ft,ke=ot,Ge=le(ye),We=le(ke),Xe=J(ke),ut=new Set([Xe].concat((0,ht.Z)(Ge),(0,ht.Z)(We)));return ut.forEach(function(or){or.addEventListener("scroll",pt,{passive:!0})}),Xe.addEventListener("resize",pt,{passive:!0}),Je(),function(){ut.forEach(function(or){or.removeEventListener("scroll",pt),Xe.removeEventListener("resize",pt)})}}},[et,ft,ot])}var Zt=e(48736),Rt=e(16089);function ar(et,ft,ot,Je,Ne,ye,ke,Ge){var We=b.useRef(et),Xe=b.useRef(!1);We.current!==et&&(Xe.current=!0,We.current=et),b.useEffect(function(){var ut=(0,Rt.Z)(function(){Xe.current=!1});return function(){Rt.Z.cancel(ut)}},[et]),b.useEffect(function(){if(ft&&Je&&(!Ne||ye)){var ut=function(){var Ae=!1,st=function(Te){var yt=Te.target;Ae=ke(yt)},Gt=function(Te){var yt=Te.target;!Xe.current&&We.current&&!Ae&&!ke(yt)&&Ge(!1)};return[st,Gt]},pt=ut(),or=(0,i.Z)(pt,2),tr=or[0],Me=or[1],tt=ut(),Yt=(0,i.Z)(tt,2),Ot=Yt[0],zt=Yt[1],Ht=J(Je);Ht.addEventListener("mousedown",tr,!0),Ht.addEventListener("click",Me,!0),Ht.addEventListener("contextmenu",Me,!0);var lr=(0,a.A)(ot);if(lr&&(lr.addEventListener("mousedown",Ot,!0),lr.addEventListener("click",zt,!0),lr.addEventListener("contextmenu",zt,!0)),0)var Wt,Ce,ce,pe;return function(){Ht.removeEventListener("mousedown",tr,!0),Ht.removeEventListener("click",Me,!0),Ht.removeEventListener("contextmenu",Me,!0),lr&&(lr.removeEventListener("mousedown",Ot,!0),lr.removeEventListener("click",zt,!0),lr.removeEventListener("contextmenu",zt,!0))}}},[ft,ot,Je,Ne,ye])}var $e=["prefixCls","children","action","showAction","hideAction","popupVisible","defaultPopupVisible","onPopupVisibleChange","afterPopupVisibleChange","mouseEnterDelay","mouseLeaveDelay","focusDelay","blurDelay","mask","maskClosable","getPopupContainer","forceRender","autoDestroy","destroyPopupOnHide","popup","popupClassName","popupStyle","popupPlacement","builtinPlacements","popupAlign","zIndex","stretch","getPopupClassNameFromAlign","fresh","alignPoint","onPopupClick","onPopupAlign","arrow","popupMotion","maskMotion","popupTransitionName","popupAnimation","maskTransitionName","maskAnimation","className","getTriggerDOMNode"];function gt(){var et=arguments.length>0&&arguments[0]!==void 0?arguments[0]:c.Z,ft=b.forwardRef(function(ot,Je){var Ne=ot.prefixCls,ye=Ne===void 0?"rc-trigger-popup":Ne,ke=ot.children,Ge=ot.action,We=Ge===void 0?"hover":Ge,Xe=ot.showAction,ut=ot.hideAction,pt=ot.popupVisible,or=ot.defaultPopupVisible,tr=ot.onPopupVisibleChange,Me=ot.afterPopupVisibleChange,tt=ot.mouseEnterDelay,Yt=ot.mouseLeaveDelay,Ot=Yt===void 0?.1:Yt,zt=ot.focusDelay,Ht=ot.blurDelay,lr=ot.mask,Wt=ot.maskClosable,Ce=Wt===void 0?!0:Wt,ce=ot.getPopupContainer,pe=ot.forceRender,Ct=ot.autoDestroy,Ae=ot.destroyPopupOnHide,st=ot.popup,Gt=ot.popupClassName,bt=ot.popupStyle,Te=ot.popupPlacement,yt=ot.builtinPlacements,ze=yt===void 0?{}:yt,xe=ot.popupAlign,dt=ot.zIndex,Pt=ot.stretch,Be=ot.getPopupClassNameFromAlign,Or=ot.fresh,mt=ot.alignPoint,qr=ot.onPopupClick,an=ot.onPopupAlign,Nt=ot.arrow,qt=ot.popupMotion,Lt=ot.maskMotion,Xt=ot.popupTransitionName,Er=ot.popupAnimation,Pr=ot.maskTransitionName,At=ot.maskAnimation,Kt=ot.className,Bt=ot.getTriggerDOMNode,Jt=(0,l.Z)(ot,$e),br=Ct||Ae||!1,Xr=b.useState(!1),Wr=(0,i.Z)(Xr,2),jn=Wr[0],wn=Wr[1];(0,y.Z)(function(){wn((0,m.Z)())},[]);var Yn=b.useRef({}),St=b.useContext(ne),Vr=b.useMemo(function(){return{registerSubPopup:function(vi,qa){Yn.current[vi]=qa,St==null||St.registerSubPopup(vi,qa)}}},[St]),ii=(0,p.Z)(),Bi=b.useState(null),Gn=(0,i.Z)(Bi,2),ci=Gn[0],Oi=Gn[1],$i=(0,x.Z)(function(hi){(0,u.Sh)(hi)&&ci!==hi&&Oi(hi),St==null||St.registerSubPopup(ii,hi)}),Ai=b.useState(null),ji=(0,i.Z)(Ai,2),ha=ji[0],ea=ji[1],Yi=b.useRef(null),mi=(0,x.Z)(function(hi){(0,u.Sh)(hi)&&ha!==hi&&(ea(hi),Yi.current=hi)}),zi=b.Children.only(ke),Ca=(zi==null?void 0:zi.props)||{},xt={},xa=(0,x.Z)(function(hi){var vi,qa,ls=ha;return(ls==null?void 0:ls.contains(hi))||((vi=(0,a.A)(ls))===null||vi===void 0?void 0:vi.host)===hi||hi===ls||(ci==null?void 0:ci.contains(hi))||((qa=(0,a.A)(ci))===null||qa===void 0?void 0:qa.host)===hi||hi===ci||Object.values(Yn.current).some(function(es){return(es==null?void 0:es.contains(hi))||hi===es})}),Zi=ee(ye,qt,Er,Xt),_i=ee(ye,Lt,At,Pr),Da=b.useState(or||!1),Hi=(0,i.Z)(Da,2),ei=Hi[0],$n=Hi[1],Ee=pt!=null?pt:ei,nt=(0,x.Z)(function(hi){pt===void 0&&$n(hi)});(0,y.Z)(function(){$n(pt||!1)},[pt]);var qe=b.useRef(Ee);qe.current=Ee;var Tt=b.useRef([]);Tt.current=[];var lt=(0,x.Z)(function(hi){var vi;nt(hi),((vi=Tt.current[Tt.current.length-1])!==null&&vi!==void 0?vi:Ee)!==hi&&(Tt.current.push(hi),tr==null||tr(hi))}),hr=b.useRef(),pr=function(){clearTimeout(hr.current)},Cr=function(vi){var qa=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;pr(),qa===0?lt(vi):hr.current=setTimeout(function(){lt(vi)},qa*1e3)};b.useEffect(function(){return pr},[]);var $r=b.useState(!1),en=(0,i.Z)($r,2),Nr=en[0],An=en[1];(0,y.Z)(function(hi){(!hi||Ee)&&An(!0)},[Ee]);var _r=b.useState(null),Fn=(0,i.Z)(_r,2),Qn=Fn[0],Ke=Fn[1],ct=b.useState([0,0]),ge=(0,i.Z)(ct,2),sr=ge[0],nr=ge[1],kr=function(vi){nr([vi.clientX,vi.clientY])},Hr=Dt(Ee,ci,mt?sr:ha,Te,ze,xe,an),Zr=(0,i.Z)(Hr,11),hn=Zr[0],Si=Zr[1],un=Zr[2],yn=Zr[3],Gr=Zr[4],kn=Zr[5],si=Zr[6],Ea=Zr[7],Js=Zr[8],Ba=Zr[9],$s=Zr[10],Ns=q(jn,We,Xe,ut),as=(0,i.Z)(Ns,2),oo=as[0],Aa=as[1],Is=oo.has("click"),ps=Aa.has("click")||Aa.has("contextMenu"),po=(0,x.Z)(function(){Nr||$s()}),Ji=function(){qe.current&&mt&&ps&&Cr(!1)};It(Ee,ha,ci,po,Ji),(0,y.Z)(function(){po()},[sr,Te]),(0,y.Z)(function(){Ee&&!(ze!=null&&ze[Te])&&po()},[JSON.stringify(xe)]);var to=b.useMemo(function(){var hi=se(ze,ye,Ba,mt);return o()(hi,Be==null?void 0:Be(Ba))},[Ba,Be,ze,ye,mt]);b.useImperativeHandle(Je,function(){return{nativeElement:Yi.current,forceAlign:po}});var zo=b.useState(0),Na=(0,i.Z)(zo,2),zs=Na[0],di=Na[1],ro=b.useState(0),Rn=(0,i.Z)(ro,2),ss=Rn[0],Ps=Rn[1],Os=function(){if(Pt&&ha){var vi=ha.getBoundingClientRect();di(vi.width),Ps(vi.height)}},Qi=function(){Os(),po()},Ka=function(vi){An(!1),$s(),Me==null||Me(vi)},Ni=function(){return new Promise(function(vi){Os(),Ke(function(){return vi})})};(0,y.Z)(function(){Qn&&($s(),Qn(),Ke(null))},[Qn]);function Ds(hi,vi,qa,ls){xt[hi]=function(es){var Wa;ls==null||ls(es),Cr(vi,qa);for(var ms=arguments.length,Jo=new Array(ms>1?ms-1:0),ks=1;ks<ms;ks++)Jo[ks-1]=arguments[ks];(Wa=Ca[hi])===null||Wa===void 0||Wa.call.apply(Wa,[Ca,es].concat(Jo))}}(Is||ps)&&(xt.onClick=function(hi){var vi;qe.current&&ps?Cr(!1):!qe.current&&Is&&(kr(hi),Cr(!0));for(var qa=arguments.length,ls=new Array(qa>1?qa-1:0),es=1;es<qa;es++)ls[es-1]=arguments[es];(vi=Ca.onClick)===null||vi===void 0||vi.call.apply(vi,[Ca,hi].concat(ls))}),ar(Ee,ps,ha,ci,lr,Ce,xa,Cr);var xo=oo.has("hover"),Zo=Aa.has("hover"),Qo,mu;xo&&(Ds("onMouseEnter",!0,tt,function(hi){kr(hi)}),Ds("onPointerEnter",!0,tt,function(hi){kr(hi)}),Qo=function(vi){(Ee||Nr)&&ci!==null&&ci!==void 0&&ci.contains(vi.target)&&Cr(!0,tt)},mt&&(xt.onMouseMove=function(hi){var vi;(vi=Ca.onMouseMove)===null||vi===void 0||vi.call(Ca,hi)})),Zo&&(Ds("onMouseLeave",!1,Ot),Ds("onPointerLeave",!1,Ot),mu=function(){Cr(!1,Ot)}),oo.has("focus")&&Ds("onFocus",!0,zt),Aa.has("focus")&&Ds("onBlur",!1,Ht),oo.has("contextMenu")&&(xt.onContextMenu=function(hi){var vi;qe.current&&Aa.has("contextMenu")?Cr(!1):(kr(hi),Cr(!0)),hi.preventDefault();for(var qa=arguments.length,ls=new Array(qa>1?qa-1:0),es=1;es<qa;es++)ls[es-1]=arguments[es];(vi=Ca.onContextMenu)===null||vi===void 0||vi.call.apply(vi,[Ca,hi].concat(ls))}),Kt&&(xt.className=o()(Ca.className,Kt));var _u=(0,r.Z)((0,r.Z)({},Ca),xt),vo={},Wo=["onContextMenu","onClick","onMouseDown","onTouchStart","onMouseEnter","onMouseLeave","onFocus","onBlur"];Wo.forEach(function(hi){Jt[hi]&&(vo[hi]=function(){for(var vi,qa=arguments.length,ls=new Array(qa),es=0;es<qa;es++)ls[es]=arguments[es];(vi=_u[hi])===null||vi===void 0||vi.call.apply(vi,[_u].concat(ls)),Jt[hi].apply(Jt,ls)})});var Oo=b.cloneElement(zi,(0,r.Z)((0,r.Z)({},_u),vo)),nu={x:kn,y:si},Xo=Nt?(0,r.Z)({},Nt!==!0?Nt:{}):null;return b.createElement(b.Fragment,null,b.createElement(h.Z,{disabled:!Ee,ref:mi,onResize:Qi},b.createElement(W,{getTriggerDOMNode:Bt},Oo)),b.createElement(ne.Provider,{value:Vr},b.createElement(K,{portal:et,ref:$i,prefixCls:ye,popup:st,className:o()(Gt,to),style:bt,target:ha,onMouseEnter:Qo,onMouseLeave:mu,onPointerEnter:Qo,zIndex:dt,open:Ee,keepDom:Nr,fresh:Or,onClick:qr,mask:lr,motion:Zi,maskMotion:_i,onVisibleChanged:Ka,onPrepare:Ni,forceRender:pe,autoDestroy:br,getPopupContainer:ce,align:Ba,arrow:Xo,arrowPos:nu,ready:hn,offsetX:Si,offsetY:un,offsetR:yn,offsetB:Gr,onAlign:po,stretch:Pt,targetWidth:zs/Ea,targetHeight:ss/Js})))});return ft}var Mt=gt(c.Z)},48850:function(){"use strict"},41977:function(d,v){"use strict";v.Z={loading:"loading___hdeS1",layoutMainClass:"layoutMainClass___t8btz"}},77254:function(d,v){"use strict";function e(i){const l={},c={channels:l,subscribe:function(f,o){return l[f]||(l[f]=[]),l[f].push(o),this.unsubscribe.bind(null,f,o)},unsubscribe:function(f,o){console.log(f,"channel");let h=l[f],u=-1;if(h){for(let a=0;a<h.length;a++)if(h[a].name===o.name){u=a;break}if(u>=0)return l[f].splice(u,1),!0}return!1},publish:function(f){if(!l[f])return!1;const o=Array.prototype.slice.call(arguments,1);return l[f].forEach(h=>{h.apply(null,o)}),this}};return i?Object.assign(i,c):c}const r=new e;v.Z=r},22575:function(d,v,e){"use strict";e.d(v,{zt:function(){return Ra},$j:function(){return Xn},Ue:function(){return xo},I0:function(){return lo},v9:function(){return Eu}});var r={};e.r(r),e.d(r,{actionChannel:function(){return At},all:function(){return Be},apply:function(){return an},call:function(){return qr},cancel:function(){return Er},cancelled:function(){return Kt},cps:function(){return Nt},flush:function(){return Bt},fork:function(){return qt},getContext:function(){return Jt},join:function(){return Xt},put:function(){return Pt},race:function(){return Or},select:function(){return Pr},setContext:function(){return br},spawn:function(){return Lt},take:function(){return xe},takeEvery:function(){return nt},takeLatest:function(){return qe},takem:function(){return dt},throttle:function(){return Tt}});var i=e(59301),l=e(75682),c=e(59781),f=Object.assign||function(Qe){for(var Pe=1;Pe<arguments.length;Pe++){var Ft=arguments[Pe];for(var _t in Ft)Object.prototype.hasOwnProperty.call(Ft,_t)&&(Qe[_t]=Ft[_t])}return Qe},o=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(Qe){return typeof Qe}:function(Qe){return Qe&&typeof Symbol=="function"&&Qe.constructor===Symbol&&Qe!==Symbol.prototype?"symbol":typeof Qe},h=function(Pe){return"@@redux-saga/"+Pe},u=h("TASK"),a=h("HELPER"),x=h("MATCH"),p=h("CANCEL_PROMISE"),y=h("SAGA_ACTION"),m=h("SELF_CANCELLATION"),b=function(Pe){return function(){return Pe}},S=b(!0),k=null,R=function(){},A=function(Pe){return Pe};function P(Qe,Pe,Ft){if(!Pe(Qe))throw le("error","uncaught at check",Ft),new Error(Ft)}var M=Object.prototype.hasOwnProperty;function B(Qe,Pe){return N.notUndef(Qe)&&M.call(Qe,Pe)}var N={undef:function(Pe){return Pe==null},notUndef:function(Pe){return Pe!=null},func:function(Pe){return typeof Pe=="function"},number:function(Pe){return typeof Pe=="number"},string:function(Pe){return typeof Pe=="string"},array:Array.isArray,object:function(Pe){return Pe&&!N.array(Pe)&&(typeof Pe=="undefined"?"undefined":o(Pe))==="object"},promise:function(Pe){return Pe&&N.func(Pe.then)},iterator:function(Pe){return Pe&&N.func(Pe.next)&&N.func(Pe.throw)},iterable:function(Pe){return Pe&&N.func(Symbol)?N.func(Pe[Symbol.iterator]):N.array(Pe)},task:function(Pe){return Pe&&Pe[u]},observable:function(Pe){return Pe&&N.func(Pe.subscribe)},buffer:function(Pe){return Pe&&N.func(Pe.isEmpty)&&N.func(Pe.take)&&N.func(Pe.put)},pattern:function(Pe){return Pe&&(N.string(Pe)||(typeof Pe=="undefined"?"undefined":o(Pe))==="symbol"||N.func(Pe)||N.array(Pe))},channel:function(Pe){return Pe&&N.func(Pe.take)&&N.func(Pe.close)},helper:function(Pe){return Pe&&Pe[a]},stringableFunc:function(Pe){return N.func(Pe)&&B(Pe,"toString")}},K={assign:function(Pe,Ft){for(var _t in Ft)B(Ft,_t)&&(Pe[_t]=Ft[_t])}};function H(Qe,Pe){var Ft=Qe.indexOf(Pe);Ft>=0&&Qe.splice(Ft,1)}var W={from:function(Pe){var Ft=Array(Pe.length);for(var _t in Pe)B(Pe,_t)&&(Ft[_t]=Pe[_t]);return Ft}};function ae(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Pe=f({},Qe),Ft=new Promise(function(_t,Sr){Pe.resolve=_t,Pe.reject=Sr});return Pe.promise=Ft,Pe}function ne(Qe){for(var Pe=[],Ft=0;Ft<Qe;Ft++)Pe.push(ae());return Pe}function oe(Qe){var Pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,Ft=void 0,_t=new Promise(function(Sr){Ft=setTimeout(function(){return Sr(Pe)},Qe)});return _t[p]=function(){return clearTimeout(Ft)},_t}function q(){var Qe,Pe=!0,Ft=void 0,_t=void 0;return Qe={},Qe[u]=!0,Qe.isRunning=function(){return Pe},Qe.result=function(){return Ft},Qe.error=function(){return _t},Qe.setRunning=function(Mr){return Pe=Mr},Qe.setResult=function(Mr){return Ft=Mr},Qe.setError=function(Mr){return _t=Mr},Qe}function X(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return function(){return++Qe}}var V=X(),se=function(Pe){throw Pe},ee=function(Pe){return{value:Pe,done:!0}};function J(Qe){var Pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:se,Ft=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"",_t=arguments[3],Sr={name:Ft,next:Qe,throw:Pe,return:ee};return _t&&(Sr[a]=!0),typeof Symbol!="undefined"&&(Sr[Symbol.iterator]=function(){return Sr}),Sr}function le(Qe,Pe){var Ft=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"";typeof window=="undefined"?console.log("redux-saga "+Qe+": "+Pe+`
`+(Ft&&Ft.stack||Ft)):console[Qe](Pe,Ft)}function z(Qe,Pe){return function(){return Qe.apply(void 0,arguments)}}var j=function(Pe,Ft){return Pe+" has been deprecated in favor of "+Ft+", please update your code"},ie=function(Pe){return new Error(`
redux-saga: Error checking hooks detected an inconsistent state. This is likely a bug
in redux-saga code and not yours. Thanks for reporting this in the project's github repo.
Error: `+Pe+`
`)},me=function(Pe,Ft){return(Pe?Pe+".":"")+"setContext(props): argument "+Ft+" is not a plain object"},Se=function(Pe){return function(Ft){return Pe(Object.defineProperty(Ft,y,{value:!0}))}},Ie=function Qe(Pe){return function(){for(var Ft=arguments.length,_t=Array(Ft),Sr=0;Sr<Ft;Sr++)_t[Sr]=arguments[Sr];var Mr=[],Kr=Pe.apply(void 0,_t);return{next:function(cn){return Mr.push(cn),Kr.next(cn)},clone:function(){var cn=Qe(Pe).apply(void 0,_t);return Mr.forEach(function(Sn){return cn.next(Sn)}),cn},return:function(cn){return Kr.return(cn)},throw:function(cn){return Kr.throw(cn)}}}},He="Channel's Buffer overflow!",je=1,Dt=2,ht=3,It=4,Zt={isEmpty:S,put:R,take:R};function Rt(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:10,Pe=arguments[1],Ft=new Array(Qe),_t=0,Sr=0,Mr=0,Kr=function(ri){Ft[Sr]=ri,Sr=(Sr+1)%Qe,_t++},xn=function(){if(_t!=0){var ri=Ft[Mr];return Ft[Mr]=null,_t--,Mr=(Mr+1)%Qe,ri}},cn=function(){for(var ri=[];_t;)ri.push(xn());return ri};return{isEmpty:function(){return _t==0},put:function(ri){if(_t<Qe)Kr(ri);else{var ni=void 0;switch(Pe){case je:throw new Error(He);case ht:Ft[Sr]=ri,Sr=(Sr+1)%Qe,Mr=Sr;break;case It:ni=2*Qe,Ft=cn(),_t=Ft.length,Sr=Ft.length,Mr=0,Ft.length=ni,Qe=ni,Kr(ri);break;default:}}},take:xn,flush:cn}}var ar={none:function(){return Zt},fixed:function(Pe){return Rt(Pe,je)},dropping:function(Pe){return Rt(Pe,Dt)},sliding:function(Pe){return Rt(Pe,ht)},expanding:function(Pe){return Rt(Pe,It)}},$e=[],gt=0;function Mt(Qe){try{ft(),Qe()}finally{ot()}}function et(Qe){$e.push(Qe),gt||(ft(),Je())}function ft(){gt++}function ot(){gt--}function Je(){ot();for(var Qe=void 0;!gt&&(Qe=$e.shift())!==void 0;)Mt(Qe)}var Ne=Object.assign||function(Qe){for(var Pe=1;Pe<arguments.length;Pe++){var Ft=arguments[Pe];for(var _t in Ft)Object.prototype.hasOwnProperty.call(Ft,_t)&&(Qe[_t]=Ft[_t])}return Qe},ye="@@redux-saga/CHANNEL_END",ke={type:ye},Ge=function(Pe){return Pe&&Pe.type===ye};function We(){var Qe=[];function Pe(_t){return Qe.push(_t),function(){return H(Qe,_t)}}function Ft(_t){for(var Sr=Qe.slice(),Mr=0,Kr=Sr.length;Mr<Kr;Mr++)Sr[Mr](_t)}return{subscribe:Pe,emit:Ft}}var Xe="invalid buffer passed to channel factory function",ut="Saga was provided with an undefined action";function pt(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ar.fixed(),Pe=!1,Ft=[];P(Qe,N.buffer,Xe);function _t(){if(Pe&&Ft.length)throw ie("Cannot have a closed channel with pending takers");if(Ft.length&&!Qe.isEmpty())throw ie("Cannot have pending takers with non empty buffer")}function Sr(cn){if(_t(),P(cn,N.notUndef,ut),!Pe){if(!Ft.length)return Qe.put(cn);for(var Sn=0;Sn<Ft.length;Sn++){var ri=Ft[Sn];if(!ri[x]||ri[x](cn))return Ft.splice(Sn,1),ri(cn)}}}function Mr(cn){_t(),P(cn,N.func,"channel.take's callback must be a function"),Pe&&Qe.isEmpty()?cn(ke):Qe.isEmpty()?(Ft.push(cn),cn.cancel=function(){return H(Ft,cn)}):cn(Qe.take())}function Kr(cn){if(_t(),P(cn,N.func,"channel.flush' callback must be a function"),Pe&&Qe.isEmpty()){cn(ke);return}cn(Qe.flush())}function xn(){if(_t(),!Pe&&(Pe=!0,Ft.length)){var cn=Ft;Ft=[];for(var Sn=0,ri=cn.length;Sn<ri;Sn++)cn[Sn](ke)}}return{take:Mr,put:Sr,flush:Kr,close:xn,get __takers__(){return Ft},get __closed__(){return Pe}}}function or(Qe){var Pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:ar.none(),Ft=arguments[2];arguments.length>2&&P(Ft,N.func,"Invalid match function passed to eventChannel");var _t=pt(Pe),Sr=function(){_t.__closed__||(Mr&&Mr(),_t.close())},Mr=Qe(function(Kr){if(Ge(Kr)){Sr();return}Ft&&!Ft(Kr)||_t.put(Kr)});if(_t.__closed__&&Mr(),!N.func(Mr))throw new Error("in eventChannel: subscribe should return a function to unsubscribe");return{take:_t.take,flush:_t.flush,close:Sr}}function tr(Qe){var Pe=or(function(Ft){return Qe(function(_t){if(_t[y]){Ft(_t);return}et(function(){return Ft(_t)})})});return Ne({},Pe,{take:function(_t,Sr){arguments.length>1&&(P(Sr,N.func,"channel.take's matcher argument must be a function"),_t[x]=Sr),Pe.take(_t)}})}var Me=h("IO"),tt="TAKE",Yt="PUT",Ot="ALL",zt="RACE",Ht="CALL",lr="CPS",Wt="FORK",Ce="JOIN",ce="CANCEL",pe="SELECT",Ct="ACTION_CHANNEL",Ae="CANCELLED",st="FLUSH",Gt="GET_CONTEXT",bt="SET_CONTEXT",Te=`
(HINT: if you are getting this errors in tests, consider using createMockTask from redux-saga/utils)`,yt=function(Pe,Ft){var _t;return _t={},_t[Me]=!0,_t[Pe]=Ft,_t},ze=function(Pe){return P(Wr.fork(Pe),N.object,"detach(eff): argument must be a fork effect"),Pe[Wt].detached=!0,Pe};function xe(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"*";if(arguments.length&&P(arguments[0],N.notUndef,"take(patternOrChannel): patternOrChannel is undefined"),N.pattern(Qe))return yt(tt,{pattern:Qe});if(N.channel(Qe))return yt(tt,{channel:Qe});throw new Error("take(patternOrChannel): argument "+String(Qe)+" is not valid channel or a valid pattern")}xe.maybe=function(){var Qe=xe.apply(void 0,arguments);return Qe[tt].maybe=!0,Qe};var dt=z(xe.maybe,j("takem","take.maybe"));function Pt(Qe,Pe){return arguments.length>1?(P(Qe,N.notUndef,"put(channel, action): argument channel is undefined"),P(Qe,N.channel,"put(channel, action): argument "+Qe+" is not a valid channel"),P(Pe,N.notUndef,"put(channel, action): argument action is undefined")):(P(Qe,N.notUndef,"put(action): argument action is undefined"),Pe=Qe,Qe=null),yt(Yt,{channel:Qe,action:Pe})}Pt.resolve=function(){var Qe=Pt.apply(void 0,arguments);return Qe[Yt].resolve=!0,Qe},Pt.sync=z(Pt.resolve,j("put.sync","put.resolve"));function Be(Qe){return yt(Ot,Qe)}function Or(Qe){return yt(zt,Qe)}function mt(Qe,Pe,Ft){P(Pe,N.notUndef,Qe+": argument fn is undefined");var _t=null;if(N.array(Pe)){var Sr=Pe;_t=Sr[0],Pe=Sr[1]}else if(Pe.fn){var Mr=Pe;_t=Mr.context,Pe=Mr.fn}return _t&&N.string(Pe)&&N.func(_t[Pe])&&(Pe=_t[Pe]),P(Pe,N.func,Qe+": argument "+Pe+" is not a function"),{context:_t,fn:Pe,args:Ft}}function qr(Qe){for(var Pe=arguments.length,Ft=Array(Pe>1?Pe-1:0),_t=1;_t<Pe;_t++)Ft[_t-1]=arguments[_t];return yt(Ht,mt("call",Qe,Ft))}function an(Qe,Pe){var Ft=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[];return yt(Ht,mt("apply",{context:Qe,fn:Pe},Ft))}function Nt(Qe){for(var Pe=arguments.length,Ft=Array(Pe>1?Pe-1:0),_t=1;_t<Pe;_t++)Ft[_t-1]=arguments[_t];return yt(lr,mt("cps",Qe,Ft))}function qt(Qe){for(var Pe=arguments.length,Ft=Array(Pe>1?Pe-1:0),_t=1;_t<Pe;_t++)Ft[_t-1]=arguments[_t];return yt(Wt,mt("fork",Qe,Ft))}function Lt(Qe){for(var Pe=arguments.length,Ft=Array(Pe>1?Pe-1:0),_t=1;_t<Pe;_t++)Ft[_t-1]=arguments[_t];return ze(qt.apply(void 0,[Qe].concat(Ft)))}function Xt(){for(var Qe=arguments.length,Pe=Array(Qe),Ft=0;Ft<Qe;Ft++)Pe[Ft]=arguments[Ft];if(Pe.length>1)return Be(Pe.map(function(Sr){return Xt(Sr)}));var _t=Pe[0];return P(_t,N.notUndef,"join(task): argument task is undefined"),P(_t,N.task,"join(task): argument "+_t+" is not a valid Task object "+Te),yt(Ce,_t)}function Er(){for(var Qe=arguments.length,Pe=Array(Qe),Ft=0;Ft<Qe;Ft++)Pe[Ft]=arguments[Ft];if(Pe.length>1)return Be(Pe.map(function(Sr){return Er(Sr)}));var _t=Pe[0];return Pe.length===1&&(P(_t,N.notUndef,"cancel(task): argument task is undefined"),P(_t,N.task,"cancel(task): argument "+_t+" is not a valid Task object "+Te)),yt(ce,_t||m)}function Pr(Qe){for(var Pe=arguments.length,Ft=Array(Pe>1?Pe-1:0),_t=1;_t<Pe;_t++)Ft[_t-1]=arguments[_t];return arguments.length===0?Qe=A:(P(Qe,N.notUndef,"select(selector,[...]): argument selector is undefined"),P(Qe,N.func,"select(selector,[...]): argument "+Qe+" is not a function")),yt(pe,{selector:Qe,args:Ft})}function At(Qe,Pe){return P(Qe,N.notUndef,"actionChannel(pattern,...): argument pattern is undefined"),arguments.length>1&&(P(Pe,N.notUndef,"actionChannel(pattern, buffer): argument buffer is undefined"),P(Pe,N.buffer,"actionChannel(pattern, buffer): argument "+Pe+" is not a valid buffer")),yt(Ct,{pattern:Qe,buffer:Pe})}function Kt(){return yt(Ae,{})}function Bt(Qe){return P(Qe,N.channel,"flush(channel): argument "+Qe+" is not valid channel"),yt(st,Qe)}function Jt(Qe){return P(Qe,N.string,"getContext(prop): argument "+Qe+" is not a string"),yt(Gt,Qe)}function br(Qe){return P(Qe,N.object,me(null,Qe)),yt(bt,Qe)}var Xr=function(Pe){return function(Ft){return Ft&&Ft[Me]&&Ft[Pe]}},Wr={take:Xr(tt),put:Xr(Yt),all:Xr(Ot),race:Xr(zt),call:Xr(Ht),cps:Xr(lr),fork:Xr(Wt),join:Xr(Ce),cancel:Xr(ce),select:Xr(pe),actionChannel:Xr(Ct),cancelled:Xr(Ae),flush:Xr(st),getContext:Xr(Gt),setContext:Xr(bt)},jn=Object.assign||function(Qe){for(var Pe=1;Pe<arguments.length;Pe++){var Ft=arguments[Pe];for(var _t in Ft)Object.prototype.hasOwnProperty.call(Ft,_t)&&(Qe[_t]=Ft[_t])}return Qe},wn=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(Qe){return typeof Qe}:function(Qe){return Qe&&typeof Symbol=="function"&&Qe.constructor===Symbol&&Qe!==Symbol.prototype?"symbol":typeof Qe};function Yn(Qe,Pe){for(var Ft in Pe){var _t=Pe[Ft];_t.configurable=_t.enumerable=!0,"value"in _t&&(_t.writable=!0),Object.defineProperty(Qe,Ft,_t)}return Qe}var St="proc first argument (Saga function result) must be an iterator",Vr={toString:function(){return"@@redux-saga/CHANNEL_END"}},ii={toString:function(){return"@@redux-saga/TASK_CANCEL"}},Bi={wildcard:function(){return S},default:function(Pe){return(typeof Pe=="undefined"?"undefined":wn(Pe))==="symbol"?function(Ft){return Ft.type===Pe}:function(Ft){return Ft.type===String(Pe)}},array:function(Pe){return function(Ft){return Pe.some(function(_t){return Gn(_t)(Ft)})}},predicate:function(Pe){return function(Ft){return Pe(Ft)}}};function Gn(Qe){return(Qe==="*"?Bi.wildcard:N.array(Qe)?Bi.array:N.stringableFunc(Qe)?Bi.default:N.func(Qe)?Bi.predicate:Bi.default)(Qe)}function ci(Qe,Pe,Ft){var _t=[],Sr=void 0,Mr=!1;xn(Pe);function Kr(Sn){cn(),Ft(Sn,!0)}function xn(Sn){_t.push(Sn),Sn.cont=function(ri,ni){Mr||(H(_t,Sn),Sn.cont=R,ni?Kr(ri):(Sn===Pe&&(Sr=ri),_t.length||(Mr=!0,Ft(Sr))))}}function cn(){Mr||(Mr=!0,_t.forEach(function(Sn){Sn.cont=R,Sn.cancel()}),_t=[])}return{addTask:xn,cancelAll:cn,abort:Kr,getTasks:function(){return _t},taskNames:function(){return _t.map(function(ri){return ri.name})}}}function Oi(Qe){var Pe=Qe.context,Ft=Qe.fn,_t=Qe.args;if(N.iterator(Ft))return Ft;var Sr=void 0,Mr=void 0;try{Sr=Ft.apply(Pe,_t)}catch(Kr){Mr=Kr}return N.iterator(Sr)?Sr:J(Mr?function(){throw Mr}:function(){var Kr=void 0,xn={done:!1,value:Sr},cn=function(ri){return{done:!0,value:ri}};return function(Sn){return Kr?cn(Sn):(Kr=!0,xn)}}())}var $i=function(Pe){return{fn:Pe}};function Ai(Qe){var Pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(){return R},Ft=arguments.length>2&&arguments[2]!==void 0?arguments[2]:R,_t=arguments.length>3&&arguments[3]!==void 0?arguments[3]:R,Sr=arguments.length>4&&arguments[4]!==void 0?arguments[4]:{},Mr=arguments.length>5&&arguments[5]!==void 0?arguments[5]:{},Kr=arguments.length>6&&arguments[6]!==void 0?arguments[6]:0,xn=arguments.length>7&&arguments[7]!==void 0?arguments[7]:"anonymous",cn=arguments[8];P(Qe,N.iterator,St);var Sn="[...effects]",ri=z(qs,j(Sn,"all("+Sn+")")),ni=Mr.sagaMonitor,yi=Mr.logger,Li=Mr.onError,na=yi||le,Wi=function(En){var Ze=En.sagaStack;!Ze&&En.stack&&(Ze=En.stack.split(`
`)[0].indexOf(En.message)!==-1?En.stack:"Error: "+En.message+`
`+En.stack),na("error","uncaught at "+xn,Ze||En.message||En)},Ci=tr(Pe),Ia=Object.create(Sr);ia.cancel=R;var Ii=Zs(Kr,xn,Qe,cn),pi={name:xn,cancel:Eo,isRunning:!0},ca=ci(xn,pi,fs);function Eo(){pi.isRunning&&!pi.isCancelled&&(pi.isCancelled=!0,ia(ii))}function Qs(){Qe._isRunning&&!Qe._isCancelled&&(Qe._isCancelled=!0,ca.cancelAll(),fs(ii))}return cn&&(cn.cancel=Qs),Qe._isRunning=!0,ia(),Ii;function ia(_n,En){if(!pi.isRunning)throw new Error("Trying to resume an already finished generator");try{var Ze=void 0;En?Ze=Qe.throw(_n):_n===ii?(pi.isCancelled=!0,ia.cancel(),Ze=N.func(Qe.return)?Qe.return(ii):{done:!0,value:ii}):_n===Vr?Ze=N.func(Qe.return)?Qe.return():{done:!0}:Ze=Qe.next(_n),Ze.done?(pi.isMainRunning=!1,pi.cont&&pi.cont(Ze.value)):ya(Ze.value,Kr,"",ia)}catch(jt){pi.isCancelled&&Wi(jt),pi.isMainRunning=!1,pi.cont(jt,!0)}}function fs(_n,En){Qe._isRunning=!1,Ci.close(),En?(_n instanceof Error&&Object.defineProperty(_n,"sagaStack",{value:"at "+xn+`
`+(_n.sagaStack||_n.stack),configurable:!0}),Ii.cont||(_n instanceof Error&&Li?Li(_n):Wi(_n)),Qe._error=_n,Qe._isAborted=!0,Qe._deferredEnd&&Qe._deferredEnd.reject(_n)):(Qe._result=_n,Qe._deferredEnd&&Qe._deferredEnd.resolve(_n)),Ii.cont&&Ii.cont(_n,En),Ii.joiners.forEach(function(Ze){return Ze.cb(_n,En)}),Ii.joiners=null}function ya(_n,En){var Ze=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"",jt=arguments[3],wr=V();ni&&ni.effectTriggered({effectId:wr,parentEffectId:En,label:Ze,effect:_n});var Rr=void 0;function Jr(Xi,ui){Rr||(Rr=!0,jt.cancel=R,ni&&(ui?ni.effectRejected(wr,Xi):ni.effectResolved(wr,Xi)),jt(Xi,ui))}Jr.cancel=R,jt.cancel=function(){if(!Rr){Rr=!0;try{Jr.cancel()}catch(Xi){Wi(Xi)}Jr.cancel=R,ni&&ni.effectCancelled(wr)}};var gn=void 0;return N.promise(_n)?_s(_n,Jr):N.helper(_n)?pa($i(_n),wr,Jr):N.iterator(_n)?La(_n,wr,xn,Jr):N.array(_n)?ri(_n,wr,Jr):(gn=Wr.take(_n))?rs(gn,Jr):(gn=Wr.put(_n))?Ls(gn,Jr):(gn=Wr.all(_n))?qs(gn,wr,Jr):(gn=Wr.race(_n))?Ha(gn,wr,Jr):(gn=Wr.call(_n))?ao(gn,wr,Jr):(gn=Wr.cps(_n))?xs(gn,Jr):(gn=Wr.fork(_n))?pa(gn,wr,Jr):(gn=Wr.join(_n))?Ms(gn,Jr):(gn=Wr.cancel(_n))?jo(gn,Jr):(gn=Wr.select(_n))?us(gn,Jr):(gn=Wr.actionChannel(_n))?co(gn,Jr):(gn=Wr.flush(_n))?Vt(gn,Jr):(gn=Wr.cancelled(_n))?Va(gn,Jr):(gn=Wr.getContext(_n))?kt(gn,Jr):(gn=Wr.setContext(_n))?Pa(gn,Jr):Jr(_n)}function _s(_n,En){var Ze=_n[p];N.func(Ze)?En.cancel=Ze:N.func(_n.abort)&&(En.cancel=function(){return _n.abort()}),_n.then(En,function(jt){return En(jt,!0)})}function La(_n,En,Ze,jt){Ai(_n,Pe,Ft,_t,Ia,Mr,En,Ze,jt)}function rs(_n,En){var Ze=_n.channel,jt=_n.pattern,wr=_n.maybe;Ze=Ze||Ci;var Rr=function(gn){return gn instanceof Error?En(gn,!0):Ge(gn)&&!wr?En(Vr):En(gn)};try{Ze.take(Rr,Gn(jt))}catch(Jr){return En(Jr,!0)}En.cancel=Rr.cancel}function Ls(_n,En){var Ze=_n.channel,jt=_n.action,wr=_n.resolve;et(function(){var Rr=void 0;try{Rr=(Ze?Ze.put:Ft)(jt)}catch(Jr){if(Ze||wr)return En(Jr,!0);Wi(Jr)}if(wr&&N.promise(Rr))_s(Rr,En);else return En(Rr)})}function ao(_n,En,Ze){var jt=_n.context,wr=_n.fn,Rr=_n.args,Jr=void 0;try{Jr=wr.apply(jt,Rr)}catch(gn){return Ze(gn,!0)}return N.promise(Jr)?_s(Jr,Ze):N.iterator(Jr)?La(Jr,En,wr.name,Ze):Ze(Jr)}function xs(_n,En){var Ze=_n.context,jt=_n.fn,wr=_n.args;try{var Rr=function(gn,Xi){return N.undef(gn)?En(Xi):En(gn,!0)};jt.apply(Ze,wr.concat(Rr)),Rr.cancel&&(En.cancel=function(){return Rr.cancel()})}catch(Jr){return En(Jr,!0)}}function pa(_n,En,Ze){var jt=_n.context,wr=_n.fn,Rr=_n.args,Jr=_n.detached,gn=Oi({context:jt,fn:wr,args:Rr});try{ft();var Xi=Ai(gn,Pe,Ft,_t,Ia,Mr,En,wr.name,Jr?null:R);Jr?Ze(Xi):gn._isRunning?(ca.addTask(Xi),Ze(Xi)):gn._error?ca.abort(gn._error):Ze(Xi)}finally{Je()}}function Ms(_n,En){if(_n.isRunning()){var Ze={task:Ii,cb:En};En.cancel=function(){return H(_n.joiners,Ze)},_n.joiners.push(Ze)}else _n.isAborted()?En(_n.error(),!0):En(_n.result())}function jo(_n,En){_n===m&&(_n=Ii),_n.isRunning()&&_n.cancel(),En()}function qs(_n,En,Ze){var jt=Object.keys(_n);if(!jt.length)return Ze(N.array(_n)?[]:{});var wr=0,Rr=void 0,Jr={},gn={};function Xi(){wr===jt.length&&(Rr=!0,Ze(N.array(_n)?W.from(jn({},Jr,{length:jt.length})):Jr))}jt.forEach(function(ui){var wo=function(ns,Xa){Rr||(Xa||Ge(ns)||ns===Vr||ns===ii?(Ze.cancel(),Ze(ns,Xa)):(Jr[ui]=ns,wr++,Xi()))};wo.cancel=R,gn[ui]=wo}),Ze.cancel=function(){Rr||(Rr=!0,jt.forEach(function(ui){return gn[ui].cancel()}))},jt.forEach(function(ui){return ya(_n[ui],En,ui,gn[ui])})}function Ha(_n,En,Ze){var jt=void 0,wr=Object.keys(_n),Rr={};wr.forEach(function(Jr){var gn=function(ui,wo){if(!jt){if(wo)Ze.cancel(),Ze(ui,!0);else if(!Ge(ui)&&ui!==Vr&&ui!==ii){var fa;Ze.cancel(),jt=!0;var ns=(fa={},fa[Jr]=ui,fa);Ze(N.array(_n)?[].slice.call(jn({},ns,{length:wr.length})):ns)}}};gn.cancel=R,Rr[Jr]=gn}),Ze.cancel=function(){jt||(jt=!0,wr.forEach(function(Jr){return Rr[Jr].cancel()}))},wr.forEach(function(Jr){jt||ya(_n[Jr],En,Jr,Rr[Jr])})}function us(_n,En){var Ze=_n.selector,jt=_n.args;try{var wr=Ze.apply(void 0,[_t()].concat(jt));En(wr)}catch(Rr){En(Rr,!0)}}function co(_n,En){var Ze=_n.pattern,jt=_n.buffer,wr=Gn(Ze);wr.pattern=Ze,En(or(Pe,jt||ar.fixed(),wr))}function Va(_n,En){En(!!pi.isCancelled)}function Vt(_n,En){_n.flush(En)}function kt(_n,En){En(Ia[_n])}function Pa(_n,En){K.assign(Ia,_n),En()}function Zs(_n,En,Ze,jt){var wr,Rr,Jr;return Ze._deferredEnd=null,Rr={},Rr[u]=!0,Rr.id=_n,Rr.name=En,wr="done",Jr={},Jr[wr]=Jr[wr]||{},Jr[wr].get=function(){if(Ze._deferredEnd)return Ze._deferredEnd.promise;var gn=ae();return Ze._deferredEnd=gn,Ze._isRunning||(Ze._error?gn.reject(Ze._error):gn.resolve(Ze._result)),gn.promise},Rr.cont=jt,Rr.joiners=[],Rr.cancel=Qs,Rr.isRunning=function(){return Ze._isRunning},Rr.isCancelled=function(){return Ze._isCancelled},Rr.isAborted=function(){return Ze._isAborted},Rr.result=function(){return Ze._result},Rr.error=function(){return Ze._error},Rr.setContext=function(Xi){P(Xi,N.object,me("task",Xi)),K.assign(Ia,Xi)},Yn(Rr,Jr),Rr}}var ji="runSaga(storeInterface, saga, ...args)",ha=ji+": saga argument must be a Generator function!";function ea(Qe,Pe){for(var Ft=arguments.length,_t=Array(Ft>2?Ft-2:0),Sr=2;Sr<Ft;Sr++)_t[Sr-2]=arguments[Sr];var Mr=void 0;N.iterator(Qe)?(Mr=Qe,Qe=Pe):(P(Pe,N.func,ha),Mr=Pe.apply(void 0,_t),P(Mr,N.iterator,ha));var Kr=Qe,xn=Kr.subscribe,cn=Kr.dispatch,Sn=Kr.getState,ri=Kr.context,ni=Kr.sagaMonitor,yi=Kr.logger,Li=Kr.onError,na=V();ni&&(ni.effectTriggered=ni.effectTriggered||R,ni.effectResolved=ni.effectResolved||R,ni.effectRejected=ni.effectRejected||R,ni.effectCancelled=ni.effectCancelled||R,ni.actionDispatched=ni.actionDispatched||R,ni.effectTriggered({effectId:na,root:!0,parentEffectId:0,effect:{root:!0,saga:Pe,args:_t}}));var Wi=Ai(Mr,xn,Se(cn),Sn,ri,{sagaMonitor:ni,logger:yi,onError:Li},na,Pe.name);return ni&&ni.effectResolved(na,Wi),Wi}function Yi(Qe,Pe){var Ft={};for(var _t in Qe)Pe.indexOf(_t)>=0||Object.prototype.hasOwnProperty.call(Qe,_t)&&(Ft[_t]=Qe[_t]);return Ft}function mi(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Pe=Qe.context,Ft=Pe===void 0?{}:Pe,_t=Yi(Qe,["context"]),Sr=_t.sagaMonitor,Mr=_t.logger,Kr=_t.onError;if(N.func(_t))throw new Error("Saga middleware no longer accept Generator functions. Use sagaMiddleware.run instead");if(Mr&&!N.func(Mr))throw new Error("`options.logger` passed to the Saga middleware is not a function!");if(Kr&&!N.func(Kr))throw new Error("`options.onError` passed to the Saga middleware is not a function!");if(_t.emitter&&!N.func(_t.emitter))throw new Error("`options.emitter` passed to the Saga middleware is not a function!");function xn(cn){var Sn=cn.getState,ri=cn.dispatch,ni=We();return ni.emit=(_t.emitter||A)(ni.emit),xn.run=ea.bind(null,{context:Ft,subscribe:ni.subscribe,dispatch:ri,getState:Sn,sagaMonitor:Sr,logger:Mr,onError:Kr}),function(yi){return function(Li){Sr&&Sr.actionDispatched&&Sr.actionDispatched(Li);var na=yi(Li);return ni.emit(Li),na}}}return xn.run=function(){throw new Error("Before running a Saga, you must mount the Saga middleware on the Store using applyMiddleware")},xn.setContext=function(cn){P(cn,N.object,me("sagaMiddleware",cn)),K.assign(Ft,cn)},xn}var zi={done:!0,value:void 0},Ca={};function xt(Qe){return N.channel(Qe)?"channel":Array.isArray(Qe)?String(Qe.map(function(Pe){return String(Pe)})):String(Qe)}function xa(Qe,Pe){var Ft=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"iterator",_t=void 0,Sr=Pe;function Mr(Kr,xn){if(Sr===Ca)return zi;if(xn)throw Sr=Ca,xn;_t&&_t(Kr);var cn=Qe[Sr](),Sn=cn[0],ri=cn[1],ni=cn[2];return Sr=Sn,_t=ni,Sr===Ca?zi:ri}return J(Mr,function(Kr){return Mr(null,Kr)},Ft,!0)}function Zi(Qe,Pe){for(var Ft=arguments.length,_t=Array(Ft>2?Ft-2:0),Sr=2;Sr<Ft;Sr++)_t[Sr-2]=arguments[Sr];var Mr={done:!1,value:xe(Qe)},Kr=function(ri){return{done:!1,value:qt.apply(void 0,[Pe].concat(_t,[ri]))}},xn=void 0,cn=function(ri){return xn=ri};return xa({q1:function(){return["q2",Mr,cn]},q2:function(){return xn===ke?[Ca]:["q1",Kr(xn)]}},"q1","takeEvery("+xt(Qe)+", "+Pe.name+")")}function _i(Qe,Pe){for(var Ft=arguments.length,_t=Array(Ft>2?Ft-2:0),Sr=2;Sr<Ft;Sr++)_t[Sr-2]=arguments[Sr];var Mr={done:!1,value:xe(Qe)},Kr=function(Li){return{done:!1,value:qt.apply(void 0,[Pe].concat(_t,[Li]))}},xn=function(Li){return{done:!1,value:Er(Li)}},cn=void 0,Sn=void 0,ri=function(Li){return cn=Li},ni=function(Li){return Sn=Li};return xa({q1:function(){return["q2",Mr,ni]},q2:function(){return Sn===ke?[Ca]:cn?["q3",xn(cn)]:["q1",Kr(Sn),ri]},q3:function(){return["q1",Kr(Sn),ri]}},"q1","takeLatest("+xt(Qe)+", "+Pe.name+")")}function Da(Qe,Pe,Ft){for(var _t=arguments.length,Sr=Array(_t>3?_t-3:0),Mr=3;Mr<_t;Mr++)Sr[Mr-3]=arguments[Mr];var Kr=void 0,xn=void 0,cn={done:!1,value:At(Pe,ar.sliding(1))},Sn=function(){return{done:!1,value:xe(xn)}},ri=function(Wi){return{done:!1,value:qt.apply(void 0,[Ft].concat(Sr,[Wi]))}},ni={done:!1,value:qr(oe,Qe)},yi=function(Wi){return Kr=Wi},Li=function(Wi){return xn=Wi};return xa({q1:function(){return["q2",cn,Li]},q2:function(){return["q3",Sn(),yi]},q3:function(){return Kr===ke?[Ca]:["q4",ri(Kr)]},q4:function(){return["q2",ni]}},"q1","throttle("+xt(Pe)+", "+Ft.name+")")}var Hi=function(Pe){return"import { "+Pe+" } from 'redux-saga' has been deprecated in favor of import { "+Pe+` } from 'redux-saga/effects'.
The latter will not work with yield*, as helper effects are wrapped automatically for you in fork effect.
Therefore yield `+Pe+" will return task descriptor to your saga and execute next lines of code."},ei=null,$n=null,Ee=null;function nt(Qe,Pe){for(var Ft=arguments.length,_t=Array(Ft>2?Ft-2:0),Sr=2;Sr<Ft;Sr++)_t[Sr-2]=arguments[Sr];return qt.apply(void 0,[Zi,Qe,Pe].concat(_t))}function qe(Qe,Pe){for(var Ft=arguments.length,_t=Array(Ft>2?Ft-2:0),Sr=2;Sr<Ft;Sr++)_t[Sr-2]=arguments[Sr];return qt.apply(void 0,[_i,Qe,Pe].concat(_t))}function Tt(Qe,Pe,Ft){for(var _t=arguments.length,Sr=Array(_t>3?_t-3:0),Mr=3;Mr<_t;Mr++)Sr[Mr-3]=arguments[Mr];return qt.apply(void 0,[Da,Qe,Pe,Ft].concat(Sr))}var lt=mi,hr=e(44520),pr=e.n(hr),Cr=e(76190),$r=e(78639),en=e.n($r),Nr=e(94480),An=e(66712),_r=e(56754),Fn=e.n(_r),Qn=e(67732),Ke=e(83652),ct=e(89381),ge=e.n(ct),sr=e(60288),nr=e(42978),kr=e(329),Hr=e.n(kr),Zr=Array.isArray.bind(Array),hn=function(Pe){return typeof Pe=="function"},Si=function(Pe){return Pe},un=function(){},yn=function(Pe,Ft){for(var _t=0,Sr=Pe.length;_t<Sr;_t+=1)if(Ft(Pe[_t],_t))return _t;return-1},Gr=Object.freeze({isPlainObject:en(),isArray:Zr,isFunction:hn,returnSelf:Si,noop:un,findIndex:yn});function kn(Qe,Pe){var Ft=Qe.namespace,_t=Qe.reducers,Sr=Qe.effects,Mr=Qe.subscriptions;invariant(Ft,"[app.model] namespace should be defined"),invariant(typeof Ft=="string","[app.model] namespace should be string, but got ".concat(_typeof(Ft))),invariant(!Pe.some(function(Kr){return Kr.namespace===Ft}),"[app.model] namespace should be unique"),_t&&(invariant(isPlainObject(_t)||Zr(_t),"[app.model] reducers should be plain object or array, but got ".concat(_typeof(_t))),invariant(!Zr(_t)||isPlainObject(_t[0])&&hn(_t[1]),"[app.model] reducers with array should be [Object, Function]")),Sr&&invariant(isPlainObject(Sr),"[app.model] effects should be plain object, but got ".concat(_typeof(Sr))),Mr&&(invariant(isPlainObject(Mr),"[app.model] subscriptions should be plain object, but got ".concat(_typeof(Mr))),invariant(si(Mr),"[app.model] subscription should be function"))}function si(Qe){return Object.keys(Qe).every(function(Pe){return hn(Qe[Pe])})}var Ea="/";function Js(Qe,Pe,Ft){return Object.keys(Qe).reduce(function(_t,Sr){Fn()(Sr.indexOf("".concat(Pe).concat(Ea))!==0,"[prefixNamespace]: ".concat(Ft," ").concat(Sr," should not be prefixed with namespace ").concat(Pe));var Mr="".concat(Pe).concat(Ea).concat(Sr);return _t[Mr]=Qe[Sr],_t},{})}function Ba(Qe){var Pe=Qe.namespace,Ft=Qe.reducers,_t=Qe.effects;if(Ft)if(Zr(Ft)){var Sr=(0,An.Z)(Ft),Mr=Sr[0],Kr=Sr.slice(1);Qe.reducers=[Js(Mr,Pe,"reducer")].concat((0,Nr.Z)(Kr))}else Qe.reducers=Js(Ft,Pe,"reducer");return _t&&(Qe.effects=Js(_t,Pe,"effect")),Qe}var $s=["onError","onStateChange","onAction","onHmr","onReducer","onEffect","extraReducers","extraEnhancers","_handleActions"];function Ns(Qe){return Object.keys(Qe).reduce(function(Pe,Ft){return $s.indexOf(Ft)>-1&&(Pe[Ft]=Qe[Ft]),Pe},{})}var as=function(){function Qe(){(0,Qn.Z)(this,Qe),this._handleActions=null,this.hooks=$s.reduce(function(Pe,Ft){return Pe[Ft]=[],Pe},{})}return(0,Ke.Z)(Qe,[{key:"use",value:function(Ft){pr()(en()(Ft),"plugin.use: plugin should be plain object");var _t=this.hooks;for(var Sr in Ft)Object.prototype.hasOwnProperty.call(Ft,Sr)&&(pr()(_t[Sr],"plugin.use: unknown plugin property: ".concat(Sr)),Sr==="_handleActions"?this._handleActions=Ft[Sr]:Sr==="extraEnhancers"?_t[Sr]=Ft[Sr]:_t[Sr].push(Ft[Sr]))}},{key:"apply",value:function(Ft,_t){var Sr=this.hooks,Mr=["onError","onHmr"];pr()(Mr.indexOf(Ft)>-1,"plugin.apply: hook ".concat(Ft," cannot be applied"));var Kr=Sr[Ft];return function(){if(Kr.length){var xn=!0,cn=!1,Sn=void 0;try{for(var ri=Kr[Symbol.iterator](),ni;!(xn=(ni=ri.next()).done);xn=!0){var yi=ni.value;yi.apply(void 0,arguments)}}catch(Li){cn=!0,Sn=Li}finally{try{!xn&&ri.return!=null&&ri.return()}finally{if(cn)throw Sn}}}else _t&&_t.apply(void 0,arguments)}}},{key:"get",value:function(Ft){var _t=this.hooks;return pr()(Ft in _t,"plugin.get: hook ".concat(Ft," cannot be got")),Ft==="extraReducers"?oo(_t[Ft]):Ft==="onReducer"?Aa(_t[Ft]):_t[Ft]}}]),Qe}();function oo(Qe){var Pe={},Ft=!0,_t=!1,Sr=void 0;try{for(var Mr=Qe[Symbol.iterator](),Kr;!(Ft=(Kr=Mr.next()).done);Ft=!0){var xn=Kr.value;Pe=(0,l.Z)({},Pe,xn)}}catch(cn){_t=!0,Sr=cn}finally{try{!Ft&&Mr.return!=null&&Mr.return()}finally{if(_t)throw Sr}}return Pe}function Aa(Qe){return function(Pe){var Ft=!0,_t=!1,Sr=void 0;try{for(var Mr=Qe[Symbol.iterator](),Kr;!(Ft=(Kr=Mr.next()).done);Ft=!0){var xn=Kr.value;Pe=xn(Pe)}}catch(cn){_t=!0,Sr=cn}finally{try{!Ft&&Mr.return!=null&&Mr.return()}finally{if(_t)throw Sr}}return Pe}}function Is(Qe){var Pe=Qe.reducers,Ft=Qe.initialState,_t=Qe.plugin,Sr=Qe.sagaMiddleware,Mr=Qe.promiseMiddleware,Kr=Qe.createOpts.setupMiddlewares,xn=Kr===void 0?Si:Kr,cn=_t.get("extraEnhancers");pr()(Zr(cn),"[app.start] extraEnhancers should be array, but got ".concat((0,Cr.Z)(cn)));var Sn=_t.get("onAction"),ri=xn([Mr,Sr].concat((0,Nr.Z)(ge()(Sn)))),ni=c.qC,yi=[c.md.apply(void 0,(0,Nr.Z)(ri))].concat((0,Nr.Z)(cn));return(0,c.MT)(Pe,Ft,ni.apply(void 0,(0,Nr.Z)(yi)))}function ps(Qe,Pe){var Ft="".concat(Pe.namespace).concat(Ea).concat(Qe),_t=Ft.replace(/\/@@[^/]+?$/,""),Sr=Array.isArray(Pe.reducers)?Pe.reducers[0][_t]:Pe.reducers&&Pe.reducers[_t];return Sr||Pe.effects&&Pe.effects[_t]?Ft:Qe}function po(Qe,Pe,Ft,_t){var Sr=arguments.length>4&&arguments[4]!==void 0?arguments[4]:{};return Hr().mark(function Mr(){var Kr;return Hr().wrap(function(cn){for(;;)switch(cn.prev=cn.next){case 0:cn.t0=Hr().keys(Qe);case 1:if((cn.t1=cn.t0()).done){cn.next=7;break}if(Kr=cn.t1.value,!Object.prototype.hasOwnProperty.call(Qe,Kr)){cn.next=5;break}return cn.delegateYield(Hr().mark(function Sn(){var ri,ni;return Hr().wrap(function(Li){for(;;)switch(Li.prev=Li.next){case 0:return ri=Ji(Kr,Qe[Kr],Pe,Ft,_t,Sr),Li.next=3,qt(ri);case 3:return ni=Li.sent,Li.next=6,qt(Hr().mark(function na(){return Hr().wrap(function(Ci){for(;;)switch(Ci.prev=Ci.next){case 0:return Ci.next=2,xe("".concat(Pe.namespace,"/@@CANCEL_EFFECTS"));case 2:return Ci.next=4,Er(ni);case 4:case"end":return Ci.stop()}},na)}));case 6:case"end":return Li.stop()}},Sn)})(),"t2",5);case 5:cn.next=1;break;case 7:case"end":return cn.stop()}},Mr)})}function Ji(Qe,Pe,Ft,_t,Sr,Mr){var Kr=Hr().mark(na),xn=Pe,cn="takeEvery",Sn,ri;if(Array.isArray(Pe)){var ni=(0,nr.Z)(Pe,1);xn=ni[0];var yi=Pe[1];yi&&yi.type&&(cn=yi.type,cn==="throttle"&&(pr()(yi.ms,"app.start: opts.ms should be defined if type is throttle"),Sn=yi.ms),cn==="poll"&&(pr()(yi.delay,"app.start: opts.delay should be defined if type is poll"),ri=yi.delay)),pr()(["watcher","takeEvery","takeLatest","throttle","poll"].indexOf(cn)>-1,"app.start: effect type should be takeEvery, takeLatest, throttle, poll or watcher")}function Li(){}function na(){var Ci,Ia,Ii,pi,ca,Eo,Qs,ia,fs,ya=arguments;return Hr().wrap(function(La){for(;;)switch(La.prev=La.next){case 0:for(Ci=ya.length,Ia=new Array(Ci),Ii=0;Ii<Ci;Ii++)Ia[Ii]=ya[Ii];return pi=Ia.length>0?Ia[0]:{},ca=pi.__dva_resolve,Eo=ca===void 0?Li:ca,Qs=pi.__dva_reject,ia=Qs===void 0?Li:Qs,La.prev=2,La.next=5,Pt({type:"".concat(Qe).concat(Ea,"@@start")});case 5:return La.next=7,xn.apply(void 0,(0,Nr.Z)(Ia.concat(to(Ft,Mr))));case 7:return fs=La.sent,La.next=10,Pt({type:"".concat(Qe).concat(Ea,"@@end")});case 10:Eo(fs),La.next=17;break;case 13:La.prev=13,La.t0=La.catch(2),_t(La.t0,{key:Qe,effectArgs:Ia}),La.t0._dontReject||ia(La.t0);case 17:case"end":return La.stop()}},Kr,null,[[2,13]])}var Wi=zo(Sr,na,Ft,Qe);switch(cn){case"watcher":return na;case"takeLatest":return Hr().mark(function Ci(){return Hr().wrap(function(Ii){for(;;)switch(Ii.prev=Ii.next){case 0:return Ii.next=2,qe(Qe,Wi);case 2:case"end":return Ii.stop()}},Ci)});case"throttle":return Hr().mark(function Ci(){return Hr().wrap(function(Ii){for(;;)switch(Ii.prev=Ii.next){case 0:return Ii.next=2,Tt(Sn,Qe,Wi);case 2:case"end":return Ii.stop()}},Ci)});case"poll":return Hr().mark(function Ci(){var Ia,Ii,pi,ca,Eo,Qs,ia;return Hr().wrap(function(ya){for(;;)switch(ya.prev=ya.next){case 0:pi=function(La,rs){var Ls;return Hr().wrap(function(xs){for(;;)switch(xs.prev=xs.next){case 0:Ls=La.call;case 1:return xs.next=4,Ls(Wi,rs);case 4:return xs.next=6,Ls(Ii,ri);case 6:xs.next=1;break;case 8:case"end":return xs.stop()}},Ia)},Ii=function(La){return new Promise(function(rs){return setTimeout(rs,La)})},Ia=Hr().mark(pi),ca=qr,Eo=xe,Qs=Or;case 4:return ya.next=7,Eo("".concat(Qe,"-start"));case 7:return ia=ya.sent,ya.next=10,Qs([ca(pi,r,ia),Eo("".concat(Qe,"-stop"))]);case 10:ya.next=4;break;case 12:case"end":return ya.stop()}},Ci)});default:return Hr().mark(function Ci(){return Hr().wrap(function(Ii){for(;;)switch(Ii.prev=Ii.next){case 0:return Ii.next=2,nt(Qe,Wi);case 2:case"end":return Ii.stop()}},Ci)})}}function to(Qe,Pe){function Ft(Kr,xn){pr()(Kr,"dispatch: action should be a plain Object with type");var cn=Pe.namespacePrefixWarning,Sn=cn===void 0?!0:cn;Sn&&Fn()(Kr.indexOf("".concat(Qe.namespace).concat(Ea))!==0,"[".concat(xn,"] ").concat(Kr," should not be prefixed with namespace ").concat(Qe.namespace))}function _t(Kr){var xn=Kr.type;return Ft(xn,"sagaEffects.put"),Pt((0,l.Z)({},Kr,{type:ps(xn,Qe)}))}function Sr(Kr){var xn=Kr.type;return Ft(xn,"sagaEffects.put.resolve"),Pt.resolve((0,l.Z)({},Kr,{type:ps(xn,Qe)}))}_t.resolve=Sr;function Mr(Kr){return typeof Kr=="string"?(Ft(Kr,"sagaEffects.take"),xe(ps(Kr,Qe))):Array.isArray(Kr)?xe(Kr.map(function(xn){return typeof xn=="string"?(Ft(xn,"sagaEffects.take"),ps(xn,Qe)):xn})):xe(Kr)}return(0,l.Z)({},r,{put:_t,take:Mr})}function zo(Qe,Pe,Ft,_t){var Sr=!0,Mr=!1,Kr=void 0;try{for(var xn=Qe[Symbol.iterator](),cn;!(Sr=(cn=xn.next()).done);Sr=!0){var Sn=cn.value;Pe=Sn(Pe,r,Ft,_t)}}catch(ri){Mr=!0,Kr=ri}finally{try{!Sr&&xn.return!=null&&xn.return()}finally{if(Mr)throw Kr}}return Pe}function Na(Qe){return Qe}function zs(Qe){var Pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Na;return function(Ft,_t){var Sr=_t.type;return pr()(Sr,"dispatch: action should be a plain Object with type"),Qe===Sr?Pe(Ft,_t):Ft}}function di(){for(var Qe=arguments.length,Pe=new Array(Qe),Ft=0;Ft<Qe;Ft++)Pe[Ft]=arguments[Ft];return function(_t,Sr){return Pe.reduce(function(Mr,Kr){return Kr(Mr,Sr)},_t)}}function ro(Qe,Pe){var Ft=Object.keys(Qe).map(function(Sr){return zs(Sr,Qe[Sr])}),_t=di.apply(void 0,(0,Nr.Z)(Ft));return function(){var Sr=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Pe,Mr=arguments.length>1?arguments[1]:void 0;return _t(Sr,Mr)}}function Rn(Qe,Pe,Ft){return Array.isArray(Qe)?Qe[1]((Ft||ro)(Qe[0],Pe)):(Ft||ro)(Qe||{},Pe)}function ss(Qe){return function(){return function(Ft){return function(_t){var Sr=_t.type;return Pe(Sr)?new Promise(function(Mr,Kr){Ft((0,l.Z)({__dva_resolve:Mr,__dva_reject:Kr},_t))}):Ft(_t)}}};function Pe(Ft){if(!Ft||typeof Ft!="string")return!1;var _t=Ft.split(Ea),Sr=(0,nr.Z)(_t,1),Mr=Sr[0],Kr=Qe._models.filter(function(xn){return xn.namespace===Mr})[0];return!!(Kr&&Kr.effects&&Kr.effects[Ft])}}function Ps(Qe,Pe){return function(Ft){var _t=Ft.type;return pr()(_t,"dispatch: action should be a plain Object with type"),Fn()(_t.indexOf("".concat(Pe.namespace).concat(Ea))!==0,"dispatch: ".concat(_t," should not be prefixed with namespace ").concat(Pe.namespace)),Qe((0,l.Z)({},Ft,{type:ps(_t,Pe)}))}}function Os(Qe,Pe,Ft,_t){var Sr=[],Mr=[];for(var Kr in Qe)if(Object.prototype.hasOwnProperty.call(Qe,Kr)){var xn=Qe[Kr],cn=xn({dispatch:Ps(Ft._store.dispatch,Pe),history:Ft._history},_t);hn(cn)?Sr.push(cn):Mr.push(Kr)}return{funcs:Sr,nonFuncs:Mr}}function Qi(Qe,Pe){if(Qe[Pe]){var Ft=Qe[Pe],_t=Ft.funcs,Sr=Ft.nonFuncs;Fn()(Sr.length===0,"[app.unmodel] subscription should return unlistener function, check these subscriptions ".concat(Sr.join(", ")));var Mr=!0,Kr=!1,xn=void 0;try{for(var cn=_t[Symbol.iterator](),Sn;!(Mr=(Sn=cn.next()).done);Mr=!0){var ri=Sn.value;ri()}}catch(ni){Kr=!0,xn=ni}finally{try{!Mr&&cn.return!=null&&cn.return()}finally{if(Kr)throw xn}}delete Qe[Pe]}}var Ka=un,Ni=yn,Ds={namespace:"@@dva",state:0,reducers:{UPDATE:function(Pe){return Pe+1}}};function xo(){var Qe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},Ft=Pe.initialReducer,_t=Pe.setupApp,Sr=_t===void 0?Ka:_t,Mr=new as;Mr.use(Ns(Qe));var Kr={_models:[Ba((0,l.Z)({},Ds))],_store:null,_plugin:Mr,use:Mr.use.bind(Mr),model:xn,start:ni};return Kr;function xn(yi){var Li=Ba((0,l.Z)({},yi));return Kr._models.push(Li),Li}function cn(yi,Li,na,Wi){Wi=xn(Wi);var Ci=Kr._store;Ci.asyncReducers[Wi.namespace]=Rn(Wi.reducers,Wi.state,Mr._handleActions),Ci.replaceReducer(yi()),Wi.effects&&Ci.runSaga(Kr._getSaga(Wi.effects,Wi,Li,Mr.get("onEffect"),Qe)),Wi.subscriptions&&(na[Wi.namespace]=Os(Wi.subscriptions,Wi,Kr,Li))}function Sn(yi,Li,na,Wi){var Ci=Kr._store;delete Ci.asyncReducers[Wi],delete Li[Wi],Ci.replaceReducer(yi()),Ci.dispatch({type:"@@dva/UPDATE"}),Ci.dispatch({type:"".concat(Wi,"/@@CANCEL_EFFECTS")}),Qi(na,Wi),Kr._models=Kr._models.filter(function(Ia){return Ia.namespace!==Wi})}function ri(yi,Li,na,Wi,Ci){var Ia=Kr._store,Ii=Ci.namespace,pi=Ni(Kr._models,function(ca){return ca.namespace===Ii});~pi&&(Ia.dispatch({type:"".concat(Ii,"/@@CANCEL_EFFECTS")}),delete Ia.asyncReducers[Ii],delete Li[Ii],Qi(na,Ii),Kr._models.splice(pi,1)),Kr.model(Ci),Ia.dispatch({type:"@@dva/UPDATE"})}function ni(){var yi=function(Pa,Zs){Pa&&(typeof Pa=="string"&&(Pa=new Error(Pa)),Pa.preventDefault=function(){Pa._dontReject=!0},Mr.apply("onError",function(_n){throw new Error(_n.stack||_n)})(Pa,Kr._store.dispatch,Zs))},Li=lt(),na=ss(Kr);Kr._getSaga=po.bind(null);var Wi=[],Ci=(0,l.Z)({},Ft),Ia=!0,Ii=!1,pi=void 0;try{for(var ca=Kr._models[Symbol.iterator](),Eo;!(Ia=(Eo=ca.next()).done);Ia=!0){var Qs=Eo.value;Ci[Qs.namespace]=Rn(Qs.reducers,Qs.state,Mr._handleActions),Qs.effects&&Wi.push(Kr._getSaga(Qs.effects,Qs,yi,Mr.get("onEffect"),Qe))}}catch(kt){Ii=!0,pi=kt}finally{try{!Ia&&ca.return!=null&&ca.return()}finally{if(Ii)throw pi}}var ia=Mr.get("onReducer"),fs=Mr.get("extraReducers");pr()(Object.keys(fs).every(function(kt){return!(kt in Ci)}),"[app.start] extraReducers is conflict with other reducers, reducers list: ".concat(Object.keys(Ci).join(", "))),Kr._store=Is({reducers:Vt(),initialState:Qe.initialState||{},plugin:Mr,createOpts:Pe,sagaMiddleware:Li,promiseMiddleware:na});var ya=Kr._store;ya.runSaga=Li.run,ya.asyncReducers={};var _s=Mr.get("onStateChange"),La=!0,rs=!1,Ls=void 0;try{for(var ao=function(){var Pa=pa.value;ya.subscribe(function(){Pa(ya.getState())})},xs=_s[Symbol.iterator](),pa;!(La=(pa=xs.next()).done);La=!0)ao()}catch(kt){rs=!0,Ls=kt}finally{try{!La&&xs.return!=null&&xs.return()}finally{if(rs)throw Ls}}Wi.forEach(Li.run),Sr(Kr);var Ms={},jo=!0,qs=!1,Ha=void 0;try{for(var us=this._models[Symbol.iterator](),co;!(jo=(co=us.next()).done);jo=!0){var Va=co.value;Va.subscriptions&&(Ms[Va.namespace]=Os(Va.subscriptions,Va,Kr,yi))}}catch(kt){qs=!0,Ha=kt}finally{try{!jo&&us.return!=null&&us.return()}finally{if(qs)throw Ha}}Kr.model=cn.bind(Kr,Vt,yi,Ms),Kr.unmodel=Sn.bind(Kr,Vt,Ci,Ms),Kr.replaceModel=ri.bind(Kr,Vt,Ci,Ms,yi);function Vt(){return ia((0,c.UY)((0,l.Z)({},Ci,fs,Kr._store?Kr._store.asyncReducers:{})))}}}var Zo=e(44718),Qo=e(56805),mu=e(4676);function _u(Qe){Qe()}let vo=_u;const Wo=Qe=>vo=Qe,Oo=()=>vo,nu=Symbol.for("react-redux-context"),Xo=typeof globalThis!="undefined"?globalThis:{};function hi(){var Qe;if(!i.createContext)return{};const Pe=(Qe=Xo[nu])!=null?Qe:Xo[nu]=new Map;let Ft=Pe.get(i.createContext);return Ft||(Ft=i.createContext(null),Pe.set(i.createContext,Ft)),Ft}const vi=hi();var qa=null;function ls(Qe=vi){return function(){return(0,i.useContext)(Qe)}}const es=ls(),Wa=()=>{throw new Error("uSES not initialized!")};let ms=Wa;const Jo=Qe=>{ms=Qe},ks=(Qe,Pe)=>Qe===Pe;function Mo(Qe=vi){const Pe=Qe===vi?es:ls(Qe);return function(_t,Sr={}){const{equalityFn:Mr=ks,stabilityCheck:Kr=void 0,noopCheck:xn=void 0}=typeof Sr=="function"?{equalityFn:Sr}:Sr,{store:cn,subscription:Sn,getServerState:ri,stabilityCheck:ni,noopCheck:yi}=Pe(),Li=(0,i.useRef)(!0),na=(0,i.useCallback)({[_t.name](Ci){return _t(Ci)}}[_t.name],[_t,ni,Kr]),Wi=ms(Sn.addNestedSub,cn.getState,ri||cn.getState,na,Mr);return(0,i.useDebugValue)(Wi),Wi}}const Eu=Mo();var Pu=e(54476),rl=e(85377),dl=e(94266),Fo=e.n(dl),uo=e(23265);const Ho=["initMapStateToProps","initMapDispatchToProps","initMergeProps"];function Hu(Qe,Pe,Ft,_t,{areStatesEqual:Sr,areOwnPropsEqual:Mr,areStatePropsEqual:Kr}){let xn=!1,cn,Sn,ri,ni,yi;function Li(Ii,pi){return cn=Ii,Sn=pi,ri=Qe(cn,Sn),ni=Pe(_t,Sn),yi=Ft(ri,ni,Sn),xn=!0,yi}function na(){return ri=Qe(cn,Sn),Pe.dependsOnOwnProps&&(ni=Pe(_t,Sn)),yi=Ft(ri,ni,Sn),yi}function Wi(){return Qe.dependsOnOwnProps&&(ri=Qe(cn,Sn)),Pe.dependsOnOwnProps&&(ni=Pe(_t,Sn)),yi=Ft(ri,ni,Sn),yi}function Ci(){const Ii=Qe(cn,Sn),pi=!Kr(Ii,ri);return ri=Ii,pi&&(yi=Ft(ri,ni,Sn)),yi}function Ia(Ii,pi){const ca=!Mr(pi,Sn),Eo=!Sr(Ii,cn,pi,Sn);return cn=Ii,Sn=pi,ca&&Eo?na():ca?Wi():Eo?Ci():yi}return function(pi,ca){return xn?Ia(pi,ca):Li(pi,ca)}}function Bo(Qe,Pe){let{initMapStateToProps:Ft,initMapDispatchToProps:_t,initMergeProps:Sr}=Pe,Mr=(0,rl.Z)(Pe,Ho);const Kr=Ft(Qe,Mr),xn=_t(Qe,Mr),cn=Sr(Qe,Mr);return Hu(Kr,xn,cn,Qe,Mr)}function Go(Qe,Pe){const Ft={};for(const _t in Qe){const Sr=Qe[_t];typeof Sr=="function"&&(Ft[_t]=(...Mr)=>Pe(Sr(...Mr)))}return Ft}function Uu(Qe){return function(Ft){const _t=Qe(Ft);function Sr(){return _t}return Sr.dependsOnOwnProps=!1,Sr}}function iu(Qe){return Qe.dependsOnOwnProps?!!Qe.dependsOnOwnProps:Qe.length!==1}function vu(Qe,Pe){return function(_t,{displayName:Sr}){const Mr=function(xn,cn){return Mr.dependsOnOwnProps?Mr.mapToProps(xn,cn):Mr.mapToProps(xn,void 0)};return Mr.dependsOnOwnProps=!0,Mr.mapToProps=function(xn,cn){Mr.mapToProps=Qe,Mr.dependsOnOwnProps=iu(Qe);let Sn=Mr(xn,cn);return typeof Sn=="function"&&(Mr.mapToProps=Sn,Mr.dependsOnOwnProps=iu(Sn),Sn=Mr(xn,cn)),Sn},Mr}}function No(Qe,Pe){return(Ft,_t)=>{throw new Error(`Invalid value of type ${typeof Qe} for ${Pe} argument when connecting component ${_t.wrappedComponentName}.`)}}function gu(Qe){return Qe&&typeof Qe=="object"?Uu(Pe=>Go(Qe,Pe)):Qe?typeof Qe=="function"?vu(Qe,"mapDispatchToProps"):No(Qe,"mapDispatchToProps"):Uu(Pe=>({dispatch:Pe}))}function Ko(Qe){return Qe?typeof Qe=="function"?vu(Qe,"mapStateToProps"):No(Qe,"mapStateToProps"):Uu(()=>({}))}function rr(Qe,Pe,Ft){return(0,Pu.Z)({},Ft,Qe,Pe)}function gr(Qe){return function(Ft,{displayName:_t,areMergedPropsEqual:Sr}){let Mr=!1,Kr;return function(cn,Sn,ri){const ni=Qe(cn,Sn,ri);return Mr?Sr(ni,Kr)||(Kr=ni):(Mr=!0,Kr=ni),Kr}}}function dr(Qe){return Qe?typeof Qe=="function"?gr(Qe):No(Qe,"mergeProps"):()=>rr}function vr(){const Qe=Oo();let Pe=null,Ft=null;return{clear(){Pe=null,Ft=null},notify(){Qe(()=>{let _t=Pe;for(;_t;)_t.callback(),_t=_t.next})},get(){let _t=[],Sr=Pe;for(;Sr;)_t.push(Sr),Sr=Sr.next;return _t},subscribe(_t){let Sr=!0,Mr=Ft={callback:_t,next:null,prev:Ft};return Mr.prev?Mr.prev.next=Mr:Pe=Mr,function(){!Sr||Pe===null||(Sr=!1,Mr.next?Mr.next.prev=Mr.prev:Ft=Mr.prev,Mr.prev?Mr.prev.next=Mr.next:Pe=Mr.next)}}}}const Tr={notify(){},get:()=>[]};function bn(Qe,Pe){let Ft,_t=Tr,Sr=0,Mr=!1;function Kr(Wi){ri();const Ci=_t.subscribe(Wi);let Ia=!1;return()=>{Ia||(Ia=!0,Ci(),ni())}}function xn(){_t.notify()}function cn(){na.onStateChange&&na.onStateChange()}function Sn(){return Mr}function ri(){Sr++,Ft||(Ft=Pe?Pe.addNestedSub(cn):Qe.subscribe(cn),_t=vr())}function ni(){Sr--,Ft&&Sr===0&&(Ft(),Ft=void 0,_t.clear(),_t=Tr)}function yi(){Mr||(Mr=!0,ri())}function Li(){Mr&&(Mr=!1,ni())}const na={addNestedSub:Kr,notifyNestedSubs:xn,handleChangeWrapper:cn,isSubscribed:Sn,trySubscribe:yi,tryUnsubscribe:Li,getListeners:()=>_t};return na}const Ln=typeof window!="undefined"&&typeof window.document!="undefined"&&typeof window.document.createElement!="undefined"?i.useLayoutEffect:i.useEffect;function Zn(Qe,Pe){return Qe===Pe?Qe!==0||Pe!==0||1/Qe===1/Pe:Qe!==Qe&&Pe!==Pe}function ai(Qe,Pe){if(Zn(Qe,Pe))return!0;if(typeof Qe!="object"||Qe===null||typeof Pe!="object"||Pe===null)return!1;const Ft=Object.keys(Qe),_t=Object.keys(Pe);if(Ft.length!==_t.length)return!1;for(let Sr=0;Sr<Ft.length;Sr++)if(!Object.prototype.hasOwnProperty.call(Pe,Ft[Sr])||!Zn(Qe[Ft[Sr]],Pe[Ft[Sr]]))return!1;return!0}const Jn=["reactReduxForwardedRef"];let mr=Wa;const Fr=Qe=>{mr=Qe},Br=null,Tn=[null,null],In=Qe=>{try{return JSON.stringify(Qe)}catch(Pe){return String(Qe)}};function oi(Qe,Pe,Ft){Ln(()=>Qe(...Pe),Ft)}function wi(Qe,Pe,Ft,_t,Sr,Mr){Qe.current=_t,Ft.current=!1,Sr.current&&(Sr.current=null,Mr())}function Hn(Qe,Pe,Ft,_t,Sr,Mr,Kr,xn,cn,Sn,ri){if(!Qe)return()=>{};let ni=!1,yi=null;const Li=()=>{if(ni||!xn.current)return;const Wi=Pe.getState();let Ci,Ia;try{Ci=_t(Wi,Sr.current)}catch(Ii){Ia=Ii,yi=Ii}Ia||(yi=null),Ci===Mr.current?Kr.current||Sn():(Mr.current=Ci,cn.current=Ci,Kr.current=!0,ri())};return Ft.onStateChange=Li,Ft.trySubscribe(),Li(),()=>{if(ni=!0,Ft.tryUnsubscribe(),Ft.onStateChange=null,yi)throw yi}}const ta=()=>Br;function ra(Qe,Pe){return Qe===Pe}let gi=!1;function Et(Qe,Pe,Ft,{pure:_t,areStatesEqual:Sr=ra,areOwnPropsEqual:Mr=ai,areStatePropsEqual:Kr=ai,areMergedPropsEqual:xn=ai,forwardRef:cn=!1,context:Sn=vi}={}){const ri=Sn,ni=Ko(Qe),yi=gu(Pe),Li=dr(Ft),na=!!Qe;return Ci=>{const Ia=Ci.displayName||Ci.name||"Component",Ii=`Connect(${Ia})`,pi={shouldHandleStateChanges:na,displayName:Ii,wrappedComponentName:Ia,WrappedComponent:Ci,initMapStateToProps:ni,initMapDispatchToProps:yi,initMergeProps:Li,areStatesEqual:Sr,areStatePropsEqual:Kr,areOwnPropsEqual:Mr,areMergedPropsEqual:xn};function ca(ia){const[fs,ya,_s]=i.useMemo(()=>{const{reactReduxForwardedRef:Rr}=ia,Jr=(0,rl.Z)(ia,Jn);return[ia.context,Rr,Jr]},[ia]),La=i.useMemo(()=>fs&&fs.Consumer&&(0,uo.isContextConsumer)(i.createElement(fs.Consumer,null))?fs:ri,[fs,ri]),rs=i.useContext(La),Ls=!!ia.store&&!!ia.store.getState&&!!ia.store.dispatch,ao=!!rs&&!!rs.store,xs=Ls?ia.store:rs.store,pa=ao?rs.getServerState:xs.getState,Ms=i.useMemo(()=>Bo(xs.dispatch,pi),[xs]),[jo,qs]=i.useMemo(()=>{if(!na)return Tn;const Rr=bn(xs,Ls?void 0:rs.subscription),Jr=Rr.notifyNestedSubs.bind(Rr);return[Rr,Jr]},[xs,Ls,rs]),Ha=i.useMemo(()=>Ls?rs:(0,Pu.Z)({},rs,{subscription:jo}),[Ls,rs,jo]),us=i.useRef(),co=i.useRef(_s),Va=i.useRef(),Vt=i.useRef(!1),kt=i.useRef(!1),Pa=i.useRef(!1),Zs=i.useRef();Ln(()=>(Pa.current=!0,()=>{Pa.current=!1}),[]);const _n=i.useMemo(()=>()=>Va.current&&_s===co.current?Va.current:Ms(xs.getState(),_s),[xs,_s]),En=i.useMemo(()=>Jr=>jo?Hn(na,xs,jo,Ms,co,us,Vt,Pa,Va,qs,Jr):()=>{},[jo]);oi(wi,[co,us,Vt,_s,Va,qs]);let Ze;try{Ze=mr(En,_n,pa?()=>Ms(pa(),_s):_n)}catch(Rr){throw Zs.current&&(Rr.message+=`
The error may be correlated with this previous error:
${Zs.current.stack}
`),Rr}Ln(()=>{Zs.current=void 0,Va.current=void 0,us.current=Ze});const jt=i.useMemo(()=>i.createElement(Ci,(0,Pu.Z)({},Ze,{ref:ya})),[ya,Ci,Ze]);return i.useMemo(()=>na?i.createElement(La.Provider,{value:Ha},jt):jt,[La,jt,Ha])}const Qs=i.memo(ca);if(Qs.WrappedComponent=Ci,Qs.displayName=ca.displayName=Ii,cn){const fs=i.forwardRef(function(_s,La){return i.createElement(Qs,(0,Pu.Z)({},_s,{reactReduxForwardedRef:La}))});return fs.displayName=Ii,fs.WrappedComponent=Ci,Fo()(fs,Ci)}return Fo()(Qs,Ci)}}var Xn=Et;function Sa({store:Qe,context:Pe,children:Ft,serverState:_t,stabilityCheck:Sr="once",noopCheck:Mr="once"}){const Kr=i.useMemo(()=>{const Sn=bn(Qe);return{store:Qe,subscription:Sn,getServerState:_t?()=>_t:void 0,stabilityCheck:Sr,noopCheck:Mr}},[Qe,_t,Sr,Mr]),xn=i.useMemo(()=>Qe.getState(),[Qe]);Ln(()=>{const{subscription:Sn}=Kr;return Sn.onStateChange=Sn.notifyNestedSubs,Sn.trySubscribe(),xn!==Qe.getState()&&Sn.notifyNestedSubs(),()=>{Sn.tryUnsubscribe(),Sn.onStateChange=void 0}},[Kr,xn]);const cn=Pe||vi;return i.createElement(cn.Provider,{value:Kr},Ft)}var Ra=Sa;function Ys(Qe=vi){const Pe=Qe===vi?es:ls(Qe);return function(){const{store:_t}=Pe();return _t}}const sn=Ys();function Do(Qe=vi){const Pe=Qe===vi?sn:Ys(Qe);return function(){return Pe().dispatch}}const lo=Do();Jo(Qo.useSyncExternalStoreWithSelector),Fr(Zo.useSyncExternalStore),Wo(mu.unstable_batchedUpdates);var Rs=Object.defineProperty,no=Object.getOwnPropertySymbols,io=Object.prototype.hasOwnProperty,ts=Object.prototype.propertyIsEnumerable,cs=(Qe,Pe,Ft)=>Pe in Qe?Rs(Qe,Pe,{enumerable:!0,configurable:!0,writable:!0,value:Ft}):Qe[Pe]=Ft,ja=(Qe,Pe)=>{for(var Ft in Pe||(Pe={}))io.call(Pe,Ft)&&cs(Qe,Ft,Pe[Ft]);if(no)for(var Ft of no(Pe))ts.call(Pe,Ft)&&cs(Qe,Ft,Pe[Ft]);return Qe};function os(Qe){const Pe=create(Qe,{initialReducer:{},setupApp(){}}),Ft=Pe.start;return Pe.router=_t,Pe.start=Sr,Pe;function _t(Mr){Pe._router=Mr}function Sr(Mr){if(typeof Mr!="undefined")throw new Error("dva.start() should not be called with any arguments.");Pe._store||Ft.call(Pe);const Kr=Pe._store,xn=Pe._router;return cn=>React.createElement(Provider,{store:Kr},xn(ja({app:Pe},cn)))}}},26243:function(d,v,e){"use strict";e.d(v,{fi:function(){return m},m8:function(){return p}});var r=e(19340),i=Object.defineProperty,l=Object.defineProperties,c=Object.getOwnPropertyDescriptors,f=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,u=(R,A,P)=>A in R?i(R,A,{enumerable:!0,configurable:!0,writable:!0,value:P}):R[A]=P,a=(R,A)=>{for(var P in A||(A={}))o.call(A,P)&&u(R,P,A[P]);if(f)for(var P of f(A))h.call(A,P)&&u(R,P,A[P]);return R},x=(R,A)=>l(R,c(A));let p,y="/";function m(R){let A;return R.type==="hash"?A=(0,r.q_)():R.type==="memory"?A=(0,r.PP)(R):A=(0,r.lX)(),R.basename&&(y=R.basename),p=x(a({},A),{push(P,M){A.push(S(P,A),M)},replace(P,M){A.replace(S(P,A),M)},get location(){return A.location},get action(){return A.action}}),A}function b(R){R&&(p=R)}function S(R,A){if(typeof R=="string")return`${k(y)}${R}`;if(typeof R=="object"){const P=A.location.pathname;return x(a({},R),{pathname:R.pathname?`${k(y)}${R.pathname}`:P})}else throw new Error(`Unexpected to: ${R}`)}function k(R){return R.slice(-1)==="/"?R.slice(0,-1):R}},7240:function(d,v,e){"use strict";e.d(v,{gD:function(){return qr},We:function(){return an}});var r={};e.r(r),e.d(r,{dva:function(){return a}});var i={};e.r(i),e.d(i,{innerProvider:function(){return Xe}});var l={};e.r(l),e.d(l,{rootContainer:function(){return Ae}});var c={};e.r(c),e.d(c,{dataflowProvider:function(){return Gt}});var f={};e.r(f),e.d(f,{i18nProvider:function(){return dt}});var o=e(8591),h=e(56656),u=e.n(h);u().locale("ZH-cn");const a={config:{onError(Nt){o.ZP.error(Nt.message,3)}}};var x=e(59301),p=e(12708),y=e.n(p),m=e(12373),b=e.n(m),S=e(44520),k=e.n(S),R=e(19747),A=e.n(R);function P(){return P=Object.assign||function(Nt){for(var qt=1;qt<arguments.length;qt++){var Lt=arguments[qt];for(var Xt in Lt)Object.prototype.hasOwnProperty.call(Lt,Xt)&&(Nt[Xt]=Lt[Xt])}return Nt},P.apply(this,arguments)}function M(Nt,qt){Nt.prototype=Object.create(qt.prototype),Nt.prototype.constructor=Nt,B(Nt,qt)}function B(Nt,qt){return B=Object.setPrototypeOf||function(Lt,Xt){return Lt.__proto__=Xt,Lt},B(Nt,qt)}function N(Nt,qt){if(Nt==null)return{};var Lt,Xt,Er={},Pr=Object.keys(Nt);for(Xt=0;Xt<Pr.length;Xt++)qt.indexOf(Lt=Pr[Xt])>=0||(Er[Lt]=Nt[Lt]);return Er}var K={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title",FRAGMENT:"Symbol(react.fragment)"},H={rel:["amphtml","canonical","alternate"]},W={type:["application/ld+json"]},ae={charset:"",name:["robots","description"],property:["og:type","og:title","og:url","og:image","og:image:alt","og:description","twitter:url","twitter:title","twitter:description","twitter:image","twitter:image:alt","twitter:card","twitter:site"]},ne=Object.keys(K).map(function(Nt){return K[Nt]}),oe={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},q=Object.keys(oe).reduce(function(Nt,qt){return Nt[oe[qt]]=qt,Nt},{}),X=function(Nt,qt){for(var Lt=Nt.length-1;Lt>=0;Lt-=1){var Xt=Nt[Lt];if(Object.prototype.hasOwnProperty.call(Xt,qt))return Xt[qt]}return null},V=function(Nt){var qt=X(Nt,K.TITLE),Lt=X(Nt,"titleTemplate");if(Array.isArray(qt)&&(qt=qt.join("")),Lt&&qt)return Lt.replace(/%s/g,function(){return qt});var Xt=X(Nt,"defaultTitle");return qt||Xt||void 0},se=function(Nt){return X(Nt,"onChangeClientState")||function(){}},ee=function(Nt,qt){return qt.filter(function(Lt){return Lt[Nt]!==void 0}).map(function(Lt){return Lt[Nt]}).reduce(function(Lt,Xt){return P({},Lt,Xt)},{})},J=function(Nt,qt){return qt.filter(function(Lt){return Lt[K.BASE]!==void 0}).map(function(Lt){return Lt[K.BASE]}).reverse().reduce(function(Lt,Xt){if(!Lt.length)for(var Er=Object.keys(Xt),Pr=0;Pr<Er.length;Pr+=1){var At=Er[Pr].toLowerCase();if(Nt.indexOf(At)!==-1&&Xt[At])return Lt.concat(Xt)}return Lt},[])},le=function(Nt,qt,Lt){var Xt={};return Lt.filter(function(Er){return!!Array.isArray(Er[Nt])||(Er[Nt]!==void 0&&console&&typeof console.warn=="function"&&console.warn("Helmet: "+Nt+' should be of type "Array". Instead found type "'+typeof Er[Nt]+'"'),!1)}).map(function(Er){return Er[Nt]}).reverse().reduce(function(Er,Pr){var At={};Pr.filter(function(Xr){for(var Wr,jn=Object.keys(Xr),wn=0;wn<jn.length;wn+=1){var Yn=jn[wn],St=Yn.toLowerCase();qt.indexOf(St)===-1||Wr==="rel"&&Xr[Wr].toLowerCase()==="canonical"||St==="rel"&&Xr[St].toLowerCase()==="stylesheet"||(Wr=St),qt.indexOf(Yn)===-1||Yn!=="innerHTML"&&Yn!=="cssText"&&Yn!=="itemprop"||(Wr=Yn)}if(!Wr||!Xr[Wr])return!1;var Vr=Xr[Wr].toLowerCase();return Xt[Wr]||(Xt[Wr]={}),At[Wr]||(At[Wr]={}),!Xt[Wr][Vr]&&(At[Wr][Vr]=!0,!0)}).reverse().forEach(function(Xr){return Er.push(Xr)});for(var Kt=Object.keys(At),Bt=0;Bt<Kt.length;Bt+=1){var Jt=Kt[Bt],br=P({},Xt[Jt],At[Jt]);Xt[Jt]=br}return Er},[]).reverse()},z=function(Nt,qt){if(Array.isArray(Nt)&&Nt.length){for(var Lt=0;Lt<Nt.length;Lt+=1)if(Nt[Lt][qt])return!0}return!1},j=function(Nt){return Array.isArray(Nt)?Nt.join(""):Nt},ie=function(Nt,qt){return Array.isArray(Nt)?Nt.reduce(function(Lt,Xt){return function(Er,Pr){for(var At=Object.keys(Er),Kt=0;Kt<At.length;Kt+=1)if(Pr[At[Kt]]&&Pr[At[Kt]].includes(Er[At[Kt]]))return!0;return!1}(Xt,qt)?Lt.priority.push(Xt):Lt.default.push(Xt),Lt},{priority:[],default:[]}):{default:Nt}},me=function(Nt,qt){var Lt;return P({},Nt,((Lt={})[qt]=void 0,Lt))},Se=[K.NOSCRIPT,K.SCRIPT,K.STYLE],Ie=function(Nt,qt){return qt===void 0&&(qt=!0),qt===!1?String(Nt):String(Nt).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")},He=function(Nt){return Object.keys(Nt).reduce(function(qt,Lt){var Xt=Nt[Lt]!==void 0?Lt+'="'+Nt[Lt]+'"':""+Lt;return qt?qt+" "+Xt:Xt},"")},je=function(Nt,qt){return qt===void 0&&(qt={}),Object.keys(Nt).reduce(function(Lt,Xt){return Lt[oe[Xt]||Xt]=Nt[Xt],Lt},qt)},Dt=function(Nt,qt){return qt.map(function(Lt,Xt){var Er,Pr=((Er={key:Xt})["data-rh"]=!0,Er);return Object.keys(Lt).forEach(function(At){var Kt=oe[At]||At;Kt==="innerHTML"||Kt==="cssText"?Pr.dangerouslySetInnerHTML={__html:Lt.innerHTML||Lt.cssText}:Pr[Kt]=Lt[At]}),x.createElement(Nt,Pr)})},ht=function(Nt,qt,Lt){switch(Nt){case K.TITLE:return{toComponent:function(){return Er=qt.titleAttributes,(Pr={key:Xt=qt.title})["data-rh"]=!0,At=je(Er,Pr),[x.createElement(K.TITLE,At,Xt)];var Xt,Er,Pr,At},toString:function(){return function(Xt,Er,Pr,At){var Kt=He(Pr),Bt=j(Er);return Kt?"<"+Xt+' data-rh="true" '+Kt+">"+Ie(Bt,At)+"</"+Xt+">":"<"+Xt+' data-rh="true">'+Ie(Bt,At)+"</"+Xt+">"}(Nt,qt.title,qt.titleAttributes,Lt)}};case"bodyAttributes":case"htmlAttributes":return{toComponent:function(){return je(qt)},toString:function(){return He(qt)}};default:return{toComponent:function(){return Dt(Nt,qt)},toString:function(){return function(Xt,Er,Pr){return Er.reduce(function(At,Kt){var Bt=Object.keys(Kt).filter(function(Xr){return!(Xr==="innerHTML"||Xr==="cssText")}).reduce(function(Xr,Wr){var jn=Kt[Wr]===void 0?Wr:Wr+'="'+Ie(Kt[Wr],Pr)+'"';return Xr?Xr+" "+jn:jn},""),Jt=Kt.innerHTML||Kt.cssText||"",br=Se.indexOf(Xt)===-1;return At+"<"+Xt+' data-rh="true" '+Bt+(br?"/>":">"+Jt+"</"+Xt+">")},"")}(Nt,qt,Lt)}}}},It=function(Nt){var qt=Nt.baseTag,Lt=Nt.bodyAttributes,Xt=Nt.encode,Er=Nt.htmlAttributes,Pr=Nt.noscriptTags,At=Nt.styleTags,Kt=Nt.title,Bt=Kt===void 0?"":Kt,Jt=Nt.titleAttributes,br=Nt.linkTags,Xr=Nt.metaTags,Wr=Nt.scriptTags,jn={toComponent:function(){},toString:function(){return""}};if(Nt.prioritizeSeoTags){var wn=function(Yn){var St=Yn.linkTags,Vr=Yn.scriptTags,ii=Yn.encode,Bi=ie(Yn.metaTags,ae),Gn=ie(St,H),ci=ie(Vr,W);return{priorityMethods:{toComponent:function(){return[].concat(Dt(K.META,Bi.priority),Dt(K.LINK,Gn.priority),Dt(K.SCRIPT,ci.priority))},toString:function(){return ht(K.META,Bi.priority,ii)+" "+ht(K.LINK,Gn.priority,ii)+" "+ht(K.SCRIPT,ci.priority,ii)}},metaTags:Bi.default,linkTags:Gn.default,scriptTags:ci.default}}(Nt);jn=wn.priorityMethods,br=wn.linkTags,Xr=wn.metaTags,Wr=wn.scriptTags}return{priority:jn,base:ht(K.BASE,qt,Xt),bodyAttributes:ht("bodyAttributes",Lt,Xt),htmlAttributes:ht("htmlAttributes",Er,Xt),link:ht(K.LINK,br,Xt),meta:ht(K.META,Xr,Xt),noscript:ht(K.NOSCRIPT,Pr,Xt),script:ht(K.SCRIPT,Wr,Xt),style:ht(K.STYLE,At,Xt),title:ht(K.TITLE,{title:Bt,titleAttributes:Jt},Xt)}},Zt=[],Rt=function(Nt,qt){var Lt=this;qt===void 0&&(qt=typeof document!="undefined"),this.instances=[],this.value={setHelmet:function(Xt){Lt.context.helmet=Xt},helmetInstances:{get:function(){return Lt.canUseDOM?Zt:Lt.instances},add:function(Xt){(Lt.canUseDOM?Zt:Lt.instances).push(Xt)},remove:function(Xt){var Er=(Lt.canUseDOM?Zt:Lt.instances).indexOf(Xt);(Lt.canUseDOM?Zt:Lt.instances).splice(Er,1)}}},this.context=Nt,this.canUseDOM=qt,qt||(Nt.helmet=It({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}}))},ar=x.createContext({}),$e=y().shape({setHelmet:y().func,helmetInstances:y().shape({get:y().func,add:y().func,remove:y().func})}),gt=typeof document!="undefined",Mt=function(Nt){function qt(Lt){var Xt;return(Xt=Nt.call(this,Lt)||this).helmetData=new Rt(Xt.props.context,qt.canUseDOM),Xt}return M(qt,Nt),qt.prototype.render=function(){return x.createElement(ar.Provider,{value:this.helmetData.value},this.props.children)},qt}(x.Component);Mt.canUseDOM=gt,Mt.propTypes={context:y().shape({helmet:y().shape()}),children:y().node.isRequired},Mt.defaultProps={context:{}},Mt.displayName="HelmetProvider";var et=function(Nt,qt){var Lt,Xt=document.head||document.querySelector(K.HEAD),Er=Xt.querySelectorAll(Nt+"[data-rh]"),Pr=[].slice.call(Er),At=[];return qt&&qt.length&&qt.forEach(function(Kt){var Bt=document.createElement(Nt);for(var Jt in Kt)Object.prototype.hasOwnProperty.call(Kt,Jt)&&(Jt==="innerHTML"?Bt.innerHTML=Kt.innerHTML:Jt==="cssText"?Bt.styleSheet?Bt.styleSheet.cssText=Kt.cssText:Bt.appendChild(document.createTextNode(Kt.cssText)):Bt.setAttribute(Jt,Kt[Jt]===void 0?"":Kt[Jt]));Bt.setAttribute("data-rh","true"),Pr.some(function(br,Xr){return Lt=Xr,Bt.isEqualNode(br)})?Pr.splice(Lt,1):At.push(Bt)}),Pr.forEach(function(Kt){return Kt.parentNode.removeChild(Kt)}),At.forEach(function(Kt){return Xt.appendChild(Kt)}),{oldTags:Pr,newTags:At}},ft=function(Nt,qt){var Lt=document.getElementsByTagName(Nt)[0];if(Lt){for(var Xt=Lt.getAttribute("data-rh"),Er=Xt?Xt.split(","):[],Pr=[].concat(Er),At=Object.keys(qt),Kt=0;Kt<At.length;Kt+=1){var Bt=At[Kt],Jt=qt[Bt]||"";Lt.getAttribute(Bt)!==Jt&&Lt.setAttribute(Bt,Jt),Er.indexOf(Bt)===-1&&Er.push(Bt);var br=Pr.indexOf(Bt);br!==-1&&Pr.splice(br,1)}for(var Xr=Pr.length-1;Xr>=0;Xr-=1)Lt.removeAttribute(Pr[Xr]);Er.length===Pr.length?Lt.removeAttribute("data-rh"):Lt.getAttribute("data-rh")!==At.join(",")&&Lt.setAttribute("data-rh",At.join(","))}},ot=function(Nt,qt){var Lt=Nt.baseTag,Xt=Nt.htmlAttributes,Er=Nt.linkTags,Pr=Nt.metaTags,At=Nt.noscriptTags,Kt=Nt.onChangeClientState,Bt=Nt.scriptTags,Jt=Nt.styleTags,br=Nt.title,Xr=Nt.titleAttributes;ft(K.BODY,Nt.bodyAttributes),ft(K.HTML,Xt),function(Yn,St){Yn!==void 0&&document.title!==Yn&&(document.title=j(Yn)),ft(K.TITLE,St)}(br,Xr);var Wr={baseTag:et(K.BASE,Lt),linkTags:et(K.LINK,Er),metaTags:et(K.META,Pr),noscriptTags:et(K.NOSCRIPT,At),scriptTags:et(K.SCRIPT,Bt),styleTags:et(K.STYLE,Jt)},jn={},wn={};Object.keys(Wr).forEach(function(Yn){var St=Wr[Yn],Vr=St.newTags,ii=St.oldTags;Vr.length&&(jn[Yn]=Vr),ii.length&&(wn[Yn]=Wr[Yn].oldTags)}),qt&&qt(),Kt(Nt,jn,wn)},Je=null,Ne=function(Nt){function qt(){for(var Xt,Er=arguments.length,Pr=new Array(Er),At=0;At<Er;At++)Pr[At]=arguments[At];return(Xt=Nt.call.apply(Nt,[this].concat(Pr))||this).rendered=!1,Xt}M(qt,Nt);var Lt=qt.prototype;return Lt.shouldComponentUpdate=function(Xt){return!A()(Xt,this.props)},Lt.componentDidUpdate=function(){this.emitChange()},Lt.componentWillUnmount=function(){this.props.context.helmetInstances.remove(this),this.emitChange()},Lt.emitChange=function(){var Xt,Er,Pr=this.props.context,At=Pr.setHelmet,Kt=null,Bt=(Xt=Pr.helmetInstances.get().map(function(Jt){var br=P({},Jt.props);return delete br.context,br}),{baseTag:J(["href"],Xt),bodyAttributes:ee("bodyAttributes",Xt),defer:X(Xt,"defer"),encode:X(Xt,"encodeSpecialCharacters"),htmlAttributes:ee("htmlAttributes",Xt),linkTags:le(K.LINK,["rel","href"],Xt),metaTags:le(K.META,["name","charset","http-equiv","property","itemprop"],Xt),noscriptTags:le(K.NOSCRIPT,["innerHTML"],Xt),onChangeClientState:se(Xt),scriptTags:le(K.SCRIPT,["src","innerHTML"],Xt),styleTags:le(K.STYLE,["cssText"],Xt),title:V(Xt),titleAttributes:ee("titleAttributes",Xt),prioritizeSeoTags:z(Xt,"prioritizeSeoTags")});Mt.canUseDOM?(Er=Bt,Je&&cancelAnimationFrame(Je),Er.defer?Je=requestAnimationFrame(function(){ot(Er,function(){Je=null})}):(ot(Er),Je=null)):It&&(Kt=It(Bt)),At(Kt)},Lt.init=function(){this.rendered||(this.rendered=!0,this.props.context.helmetInstances.add(this),this.emitChange())},Lt.render=function(){return this.init(),null},qt}(x.Component);Ne.propTypes={context:$e.isRequired},Ne.displayName="HelmetDispatcher";var ye=["children"],ke=["children"],Ge=function(Nt){function qt(){return Nt.apply(this,arguments)||this}M(qt,Nt);var Lt=qt.prototype;return Lt.shouldComponentUpdate=function(Xt){return!b()(me(this.props,"helmetData"),me(Xt,"helmetData"))},Lt.mapNestedChildrenToProps=function(Xt,Er){if(!Er)return null;switch(Xt.type){case K.SCRIPT:case K.NOSCRIPT:return{innerHTML:Er};case K.STYLE:return{cssText:Er};default:throw new Error("<"+Xt.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")}},Lt.flattenArrayTypeChildren=function(Xt){var Er,Pr=Xt.child,At=Xt.arrayTypeChildren;return P({},At,((Er={})[Pr.type]=[].concat(At[Pr.type]||[],[P({},Xt.newChildProps,this.mapNestedChildrenToProps(Pr,Xt.nestedChildren))]),Er))},Lt.mapObjectTypeChildren=function(Xt){var Er,Pr,At=Xt.child,Kt=Xt.newProps,Bt=Xt.newChildProps,Jt=Xt.nestedChildren;switch(At.type){case K.TITLE:return P({},Kt,((Er={})[At.type]=Jt,Er.titleAttributes=P({},Bt),Er));case K.BODY:return P({},Kt,{bodyAttributes:P({},Bt)});case K.HTML:return P({},Kt,{htmlAttributes:P({},Bt)});default:return P({},Kt,((Pr={})[At.type]=P({},Bt),Pr))}},Lt.mapArrayTypeChildrenToProps=function(Xt,Er){var Pr=P({},Er);return Object.keys(Xt).forEach(function(At){var Kt;Pr=P({},Pr,((Kt={})[At]=Xt[At],Kt))}),Pr},Lt.warnOnInvalidChildren=function(Xt,Er){return k()(ne.some(function(Pr){return Xt.type===Pr}),typeof Xt.type=="function"?"You may be attempting to nest <Helmet> components within each other, which is not allowed. Refer to our API for more information.":"Only elements types "+ne.join(", ")+" are allowed. Helmet does not support rendering <"+Xt.type+"> elements. Refer to our API for more information."),k()(!Er||typeof Er=="string"||Array.isArray(Er)&&!Er.some(function(Pr){return typeof Pr!="string"}),"Helmet expects a string as a child of <"+Xt.type+">. Did you forget to wrap your children in braces? ( <"+Xt.type+">{``}</"+Xt.type+"> ) Refer to our API for more information."),!0},Lt.mapChildrenToProps=function(Xt,Er){var Pr=this,At={};return x.Children.forEach(Xt,function(Kt){if(Kt&&Kt.props){var Bt=Kt.props,Jt=Bt.children,br=N(Bt,ye),Xr=Object.keys(br).reduce(function(jn,wn){return jn[q[wn]||wn]=br[wn],jn},{}),Wr=Kt.type;switch(typeof Wr=="symbol"?Wr=Wr.toString():Pr.warnOnInvalidChildren(Kt,Jt),Wr){case K.FRAGMENT:Er=Pr.mapChildrenToProps(Jt,Er);break;case K.LINK:case K.META:case K.NOSCRIPT:case K.SCRIPT:case K.STYLE:At=Pr.flattenArrayTypeChildren({child:Kt,arrayTypeChildren:At,newChildProps:Xr,nestedChildren:Jt});break;default:Er=Pr.mapObjectTypeChildren({child:Kt,newProps:Er,newChildProps:Xr,nestedChildren:Jt})}}}),this.mapArrayTypeChildrenToProps(At,Er)},Lt.render=function(){var Xt=this.props,Er=Xt.children,Pr=N(Xt,ke),At=P({},Pr),Kt=Pr.helmetData;return Er&&(At=this.mapChildrenToProps(Er,At)),!Kt||Kt instanceof Rt||(Kt=new Rt(Kt.context,Kt.instances)),Kt?x.createElement(Ne,P({},At,{context:Kt.value,helmetData:void 0})):x.createElement(ar.Consumer,null,function(Bt){return x.createElement(Ne,P({},At,{context:Bt}))})},qt}(x.Component);Ge.propTypes={base:y().object,bodyAttributes:y().object,children:y().oneOfType([y().arrayOf(y().node),y().node]),defaultTitle:y().string,defer:y().bool,encodeSpecialCharacters:y().bool,htmlAttributes:y().object,link:y().arrayOf(y().object),meta:y().arrayOf(y().object),noscript:y().arrayOf(y().object),onChangeClientState:y().func,script:y().arrayOf(y().object),style:y().arrayOf(y().object),title:y().string,titleAttributes:y().object,titleTemplate:y().string,prioritizeSeoTags:y().bool,helmetData:y().object},Ge.defaultProps={defer:!0,encodeSpecialCharacters:!0,prioritizeSeoTags:!1},Ge.displayName="Helmet";const We={},Xe=Nt=>x.createElement(Mt,{context:We},Nt);var ut=e(92736),pt=e(65582),or=e(36237),tr=e(85277),Me=e(28440),tt=e.n(Me),Yt=Object.defineProperty,Ot=Object.getOwnPropertySymbols,zt=Object.prototype.hasOwnProperty,Ht=Object.prototype.propertyIsEnumerable,lr=(Nt,qt,Lt)=>qt in Nt?Yt(Nt,qt,{enumerable:!0,configurable:!0,writable:!0,value:Lt}):Nt[qt]=Lt,Wt=(Nt,qt)=>{for(var Lt in qt||(qt={}))zt.call(qt,Lt)&&lr(Nt,Lt,qt[Lt]);if(Ot)for(var Lt of Ot(qt))Ht.call(qt,Lt)&&lr(Nt,Lt,qt[Lt]);return Nt},Ce=(Nt,qt)=>{var Lt={};for(var Xt in Nt)zt.call(Nt,Xt)&&qt.indexOf(Xt)<0&&(Lt[Xt]=Nt[Xt]);if(Nt!=null&&Ot)for(var Xt of Ot(Nt))qt.indexOf(Xt)<0&&Ht.call(Nt,Xt)&&(Lt[Xt]=Nt[Xt]);return Lt};let ce=null;const pe=()=>(ce||(ce=an().applyPlugins({key:"antd",type:pt.ApplyPluginsType.modify,initialValue:Wt({},{componentSize:"middle"})})),ce);function Ct({children:Nt}){let qt=Nt;const[Lt,Xt]=x.useState(()=>{const Pr=pe(),{appConfig:At}=Pr;return Ce(Pr,["appConfig"])}),Er=Pr=>{Xt(At=>tt()({},At,typeof Pr=="function"?Pr(At):Pr))};return Lt.prefixCls&&ut.ZP.config({prefixCls:Lt.prefixCls}),Lt.iconPrefixCls&&ut.ZP.config({iconPrefixCls:Lt.iconPrefixCls}),Lt.theme&&ut.ZP.config({theme:Lt.theme}),qt=x.createElement(ut.ZP,Wt({},Lt),qt),qt=x.createElement(or.StyleProvider,{hashPriority:"high"},qt),qt=x.createElement(tr.C.Provider,{value:Er},x.createElement(tr.S.Provider,{value:Lt},qt)),qt}function Ae(Nt){return x.createElement(Ct,null,Nt)}var st=e(74133);function Gt(Nt,qt){return x.createElement(st.j,qt,Nt)}var bt=e(92769),Te=e(2893);function yt(){var Nt,qt;const Lt=getLocale();(Nt=moment)!=null&&Nt.locale&&moment.locale(((qt=localeInfo[Lt])==null?void 0:qt.momentLocale)||""),setIntl(Lt)}const ze=typeof window!="undefined"&&typeof window.document!="undefined"&&typeof window.document.createElement!="undefined"?x.useLayoutEffect:x.useEffect,xe=Nt=>{var qt;const Lt=(0,Te.Kd)(),[Xt,Er]=x.useState(Lt),[Pr,At]=x.useState(()=>(0,Te.lw)(Xt,!0)),Kt=br=>{var Xr,Wr;(Xr=u())!=null&&Xr.locale&&u().locale(((Wr=Te.H8[br])==null?void 0:Wr.momentLocale)||"en"),Er(br),At((0,Te.lw)(br))};ze(()=>(Te.B.on(Te.PZ,Kt),()=>{Te.B.off(Te.PZ,Kt)}),[]);const Bt={},Jt=(0,Te.Mg)();return x.createElement(ut.ZP,{direction:Jt,locale:((qt=Te.H8[Xt])==null?void 0:qt.antd)||Bt},x.createElement(Te.eU,{value:Pr},Nt.children))};function dt(Nt){return x.createElement(xe,null,Nt)}function Pt(Nt){return Nt.default?typeof Nt.default=="function"?Nt.default():Nt.default:Nt}function Be(){return[{apply:Pt(r),path:void 0},{apply:i,path:void 0},{apply:l,path:void 0},{apply:c,path:void 0},{apply:f,path:void 0}]}function Or(){return["patchRoutes","patchClientRoutes","modifyContextOpts","modifyClientRenderOpts","rootContainer","innerProvider","i18nProvider","accessProvider","dataflowProvider","outerProvider","render","onRouteChange","antd","dva","locale","qiankun"]}let mt=null;function qr(){return mt=pt.PluginManager.create({plugins:Be(),validKeys:Or()}),mt}function an(){return mt}},65582:function(d,v,e){"use strict";e.d(v,{ApplyPluginsType:function(){return gt},Link:function(){return X},Outlet:function(){return V.j3},PluginManager:function(){return Mt},connect:function(){return f.$j},getDvaApp:function(){return o.Q},history:function(){return et.m8},useAppData:function(){return W.Ov},useDispatch:function(){return f.I0},useLocation:function(){return V.TH},useOutletContext:function(){return V.bx},useParams:function(){return V.UO},useSearchParams:function(){return H.lr},useSelector:function(){return f.v9}});var r=e(59301),i=e(85277);function l(){return React.useContext(AntdConfigContext)}function c(){return React.useContext(AntdConfigContextSetter)}var f=e(22575),o=e(74133),h=e(2893),u=Object.defineProperty,a=Object.defineProperties,x=Object.getOwnPropertyDescriptors,p=Object.getOwnPropertySymbols,y=Object.prototype.hasOwnProperty,m=Object.prototype.propertyIsEnumerable,b=(Xe,ut,pt)=>ut in Xe?u(Xe,ut,{enumerable:!0,configurable:!0,writable:!0,value:pt}):Xe[ut]=pt,S=(Xe,ut)=>{for(var pt in ut||(ut={}))y.call(ut,pt)&&b(Xe,pt,ut[pt]);if(p)for(var pt of p(ut))m.call(ut,pt)&&b(Xe,pt,ut[pt]);return Xe},k=(Xe,ut)=>a(Xe,x(ut)),R=(Xe,ut)=>{var pt={};for(var or in Xe)y.call(Xe,or)&&ut.indexOf(or)<0&&(pt[or]=Xe[or]);if(Xe!=null&&p)for(var or of p(Xe))ut.indexOf(or)<0&&m.call(Xe,or)&&(pt[or]=Xe[or]);return pt};const A=Xe=>{var ut=Xe,{overlayClassName:pt}=ut,or=R(ut,["overlayClassName"]);return React.createElement(Dropdown,S({overlayClassName:pt},or))},P=Xe=>Xe.reduce((ut,pt)=>pt.lang?k(S({},ut),{[pt.lang]:pt}):ut,{}),M={"ar-EG":{lang:"ar-EG",label:"\u0627\u0644\u0639\u0631\u0628\u064A\u0629",icon:"\u{1F1EA}\u{1F1EC}",title:"\u0644\u063A\u0629"},"az-AZ":{lang:"az-AZ",label:"Az\u0259rbaycan dili",icon:"\u{1F1E6}\u{1F1FF}",title:"Dil"},"bg-BG":{lang:"bg-BG",label:"\u0411\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A",icon:"\u{1F1E7}\u{1F1EC}",title:"\u0435\u0437\u0438\u043A"},"bn-BD":{lang:"bn-BD",label:"\u09AC\u09BE\u0982\u09B2\u09BE",icon:"\u{1F1E7}\u{1F1E9}",title:"\u09AD\u09BE\u09B7\u09BE"},"ca-ES":{lang:"ca-ES",label:"Catal\xE1",icon:"\u{1F1E8}\u{1F1E6}",title:"llengua"},"cs-CZ":{lang:"cs-CZ",label:"\u010Ce\u0161tina",icon:"\u{1F1E8}\u{1F1FF}",title:"Jazyk"},"da-DK":{lang:"da-DK",label:"Dansk",icon:"\u{1F1E9}\u{1F1F0}",title:"Sprog"},"de-DE":{lang:"de-DE",label:"Deutsch",icon:"\u{1F1E9}\u{1F1EA}",title:"Sprache"},"el-GR":{lang:"el-GR",label:"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC",icon:"\u{1F1EC}\u{1F1F7}",title:"\u0393\u03BB\u03CE\u03C3\u03C3\u03B1"},"en-GB":{lang:"en-GB",label:"English",icon:"\u{1F1EC}\u{1F1E7}",title:"Language"},"en-US":{lang:"en-US",label:"English",icon:"\u{1F1FA}\u{1F1F8}",title:"Language"},"es-ES":{lang:"es-ES",label:"Espa\xF1ol",icon:"\u{1F1EA}\u{1F1F8}",title:"Idioma"},"et-EE":{lang:"et-EE",label:"Eesti",icon:"\u{1F1EA}\u{1F1EA}",title:"Keel"},"fa-IR":{lang:"fa-IR",label:"\u0641\u0627\u0631\u0633\u06CC",icon:"\u{1F1EE}\u{1F1F7}",title:"\u0632\u0628\u0627\u0646"},"fi-FI":{lang:"fi-FI",label:"Suomi",icon:"\u{1F1EB}\u{1F1EE}",title:"Kieli"},"fr-BE":{lang:"fr-BE",label:"Fran\xE7ais",icon:"\u{1F1E7}\u{1F1EA}",title:"Langue"},"fr-FR":{lang:"fr-FR",label:"Fran\xE7ais",icon:"\u{1F1EB}\u{1F1F7}",title:"Langue"},"ga-IE":{lang:"ga-IE",label:"Gaeilge",icon:"\u{1F1EE}\u{1F1EA}",title:"Teanga"},"he-IL":{lang:"he-IL",label:"\u05E2\u05D1\u05E8\u05D9\u05EA",icon:"\u{1F1EE}\u{1F1F1}",title:"\u05E9\u05E4\u05D4"},"hi-IN":{lang:"hi-IN",label:"\u0939\u093F\u0928\u094D\u0926\u0940, \u0939\u093F\u0902\u0926\u0940",icon:"\u{1F1EE}\u{1F1F3}",title:"\u092D\u093E\u0937\u093E: \u0939\u093F\u0928\u094D\u0926\u0940"},"hr-HR":{lang:"hr-HR",label:"Hrvatski jezik",icon:"\u{1F1ED}\u{1F1F7}",title:"Jezik"},"hu-HU":{lang:"hu-HU",label:"Magyar",icon:"\u{1F1ED}\u{1F1FA}",title:"Nyelv"},"hy-AM":{lang:"hu-HU",label:"\u0540\u0561\u0575\u0565\u0580\u0565\u0576",icon:"\u{1F1E6}\u{1F1F2}",title:"\u053C\u0565\u0566\u0578\u0582"},"id-ID":{lang:"id-ID",label:"Bahasa Indonesia",icon:"\u{1F1EE}\u{1F1E9}",title:"Bahasa"},"it-IT":{lang:"it-IT",label:"Italiano",icon:"\u{1F1EE}\u{1F1F9}",title:"Linguaggio"},"is-IS":{lang:"is-IS",label:"\xCDslenska",icon:"\u{1F1EE}\u{1F1F8}",title:"Tungum\xE1l"},"ja-JP":{lang:"ja-JP",label:"\u65E5\u672C\u8A9E",icon:"\u{1F1EF}\u{1F1F5}",title:"\u8A00\u8A9E"},"ku-IQ":{lang:"ku-IQ",label:"\u06A9\u0648\u0631\u062F\u06CC",icon:"\u{1F1EE}\u{1F1F6}",title:"Ziman"},"kn-IN":{lang:"kn-IN",label:"\u0C95\u0CA8\u0CCD\u0CA8\u0CA1",icon:"\u{1F1EE}\u{1F1F3}",title:"\u0CAD\u0CBE\u0CB7\u0CC6"},"ko-KR":{lang:"ko-KR",label:"\uD55C\uAD6D\uC5B4",icon:"\u{1F1F0}\u{1F1F7}",title:"\uC5B8\uC5B4"},"lv-LV":{lang:"lv-LV",label:"Latvie\u0161u valoda",icon:"\u{1F1F1}\u{1F1EE}",title:"Kalba"},"mk-MK":{lang:"mk-MK",label:"\u043C\u0430\u043A\u0435\u0434\u043E\u043D\u0441\u043A\u0438 \u0458\u0430\u0437\u0438\u043A",icon:"\u{1F1F2}\u{1F1F0}",title:"\u0408\u0430\u0437\u0438\u043A"},"mn-MN":{lang:"mn-MN",label:"\u041C\u043E\u043D\u0433\u043E\u043B \u0445\u044D\u043B",icon:"\u{1F1F2}\u{1F1F3}",title:"\u0425\u044D\u043B"},"ms-MY":{lang:"ms-MY",label:"\u0628\u0647\u0627\u0633 \u0645\u0644\u0627\u064A\u0648\u200E",icon:"\u{1F1F2}\u{1F1FE}",title:"Bahasa"},"nb-NO":{lang:"nb-NO",label:"Norsk",icon:"\u{1F1F3}\u{1F1F4}",title:"Spr\xE5k"},"ne-NP":{lang:"ne-NP",label:"\u0928\u0947\u092A\u093E\u0932\u0940",icon:"\u{1F1F3}\u{1F1F5}",title:"\u092D\u093E\u0937\u093E"},"nl-BE":{lang:"nl-BE",label:"Vlaams",icon:"\u{1F1E7}\u{1F1EA}",title:"Taal"},"nl-NL":{lang:"nl-NL",label:"Nederlands",icon:"\u{1F1F3}\u{1F1F1}",title:"Taal"},"pl-PL":{lang:"pl-PL",label:"Polski",icon:"\u{1F1F5}\u{1F1F1}",title:"J\u0119zyk"},"pt-BR":{lang:"pt-BR",label:"Portugu\xEAs",icon:"\u{1F1E7}\u{1F1F7}",title:"Idiomas"},"pt-PT":{lang:"pt-PT",label:"Portugu\xEAs",icon:"\u{1F1F5}\u{1F1F9}",title:"Idiomas"},"ro-RO":{lang:"ro-RO",label:"Rom\xE2n\u0103",icon:"\u{1F1F7}\u{1F1F4}",title:"Limba"},"ru-RU":{lang:"ru-RU",label:"\u0420\u0443\u0441\u0441\u043A\u0438\u0439",icon:"\u{1F1F7}\u{1F1FA}",title:"\u044F\u0437\u044B\u043A"},"sk-SK":{lang:"sk-SK",label:"Sloven\u010Dina",icon:"\u{1F1F8}\u{1F1F0}",title:"Jazyk"},"sr-RS":{lang:"sr-RS",label:"\u0441\u0440\u043F\u0441\u043A\u0438 \u0458\u0435\u0437\u0438\u043A",icon:"\u{1F1F8}\u{1F1F7}",title:"\u0408\u0435\u0437\u0438\u043A"},"sl-SI":{lang:"sl-SI",label:"Sloven\u0161\u010Dina",icon:"\u{1F1F8}\u{1F1F1}",title:"Jezik"},"sv-SE":{lang:"sv-SE",label:"Svenska",icon:"\u{1F1F8}\u{1F1EA}",title:"Spr\xE5k"},"ta-IN":{lang:"ta-IN",label:"\u0BA4\u0BAE\u0BBF\u0BB4\u0BCD",icon:"\u{1F1EE}\u{1F1F3}",title:"\u0BAE\u0BCA\u0BB4\u0BBF"},"th-TH":{lang:"th-TH",label:"\u0E44\u0E17\u0E22",icon:"\u{1F1F9}\u{1F1ED}",title:"\u0E20\u0E32\u0E29\u0E32"},"tr-TR":{lang:"tr-TR",label:"T\xFCrk\xE7e",icon:"\u{1F1F9}\u{1F1F7}",title:"Dil"},"uk-UA":{lang:"uk-UA",label:"\u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430",icon:"\u{1F1FA}\u{1F1F0}",title:"\u041C\u043E\u0432\u0430"},"vi-VN":{lang:"vi-VN",label:"Ti\u1EBFng Vi\u1EC7t",icon:"\u{1F1FB}\u{1F1F3}",title:"Ng\xF4n ng\u1EEF"},"zh-CN":{lang:"zh-CN",label:"\u7B80\u4F53\u4E2D\u6587",icon:"\u{1F1E8}\u{1F1F3}",title:"\u8BED\u8A00"},"zh-TW":{lang:"zh-TW",label:"\u7E41\u9AD4\u4E2D\u6587",icon:"\u{1F1ED}\u{1F1F0}",title:"\u8A9E\u8A00"}},B=Xe=>React.createElement(React.Fragment,null);var N=e(38329),K=e(38127),H=e(32451),W=e(67704),ae=e(87296);function ne(Xe,ut){var pt=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},or=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{};if(typeof IntersectionObserver!="function")return null;var tr=r.useRef(typeof IntersectionObserver=="function"),Me=r.useRef(null);return r.useEffect(function(){if(!(!Xe.current||!tr.current||or.disabled))return Me.current=new IntersectionObserver(function(tt){var Yt=(0,ae.Z)(tt,1),Ot=Yt[0];ut(Ot)},pt),Me.current.observe(Xe.current),function(){var tt;(tt=Me.current)===null||tt===void 0||tt.disconnect()}},[ut,pt,or.disabled,Xe]),Me.current}var oe=["prefetch"];function q(Xe){var ut=r.useRef(null);return r.useEffect(function(){Xe&&(typeof Xe=="function"?Xe(ut.current):Xe.current=ut.current)}),ut}var X=r.forwardRef(function(Xe,ut){var pt,or=Xe.prefetch,tr=(0,K.Z)(Xe,oe),Me=typeof window!="undefined"&&window.__umi_route_prefetch__||{defaultPrefetch:"none",defaultPrefetchTimeout:50},tt=Me.defaultPrefetch,Yt=Me.defaultPrefetchTimeout,Ot=(or===!0?"intent":or===!1?"none":or)||tt;if(!["intent","render","viewport","none"].includes(Ot))throw new Error("Invalid prefetch value ".concat(Ot," found in Link component"));var zt=(0,W.Ov)(),Ht=typeof Xe.to=="string"?Xe.to:(pt=Xe.to)===null||pt===void 0?void 0:pt.pathname,lr=r.useRef(!1),Wt=q(ut),Ce=function(Ct){if(Ot==="intent"){var Ae=Ct.target||{};Ae.preloadTimeout||(Ae.preloadTimeout=setTimeout(function(){var st;Ae.preloadTimeout=null,(st=zt.preloadRoute)===null||st===void 0||st.call(zt,Ht)},Xe.prefetchTimeout||Yt))}},ce=function(Ct){if(Ot==="intent"){var Ae=Ct.target||{};Ae.preloadTimeout&&(clearTimeout(Ae.preloadTimeout),Ae.preloadTimeout=null)}};return(0,r.useLayoutEffect)(function(){if(Ot==="render"&&!lr.current){var pe;(pe=zt.preloadRoute)===null||pe===void 0||pe.call(zt,Ht),lr.current=!0}},[Ot,Ht]),ne(Wt,function(pe){if(pe!=null&&pe.isIntersecting){var Ct;(Ct=zt.preloadRoute)===null||Ct===void 0||Ct.call(zt,Ht)}},{rootMargin:"100px"},{disabled:Ot!=="viewport"}),Ht?r.createElement(H.rU,(0,N.Z)({onMouseEnter:Ce,onMouseLeave:ce,ref:Wt},tr),Xe.children):null}),V=e(35338),se=e(8616);function ee(){"use strict";ee=function(){return ut};var Xe,ut={},pt=Object.prototype,or=pt.hasOwnProperty,tr=Object.defineProperty||function(Nt,qt,Lt){Nt[qt]=Lt.value},Me=typeof Symbol=="function"?Symbol:{},tt=Me.iterator||"@@iterator",Yt=Me.asyncIterator||"@@asyncIterator",Ot=Me.toStringTag||"@@toStringTag";function zt(Nt,qt,Lt){return Object.defineProperty(Nt,qt,{value:Lt,enumerable:!0,configurable:!0,writable:!0}),Nt[qt]}try{zt({},"")}catch(Nt){zt=function(Lt,Xt,Er){return Lt[Xt]=Er}}function Ht(Nt,qt,Lt,Xt){var Er=qt&&qt.prototype instanceof Ae?qt:Ae,Pr=Object.create(Er.prototype),At=new qr(Xt||[]);return tr(Pr,"_invoke",{value:Pt(Nt,Lt,At)}),Pr}function lr(Nt,qt,Lt){try{return{type:"normal",arg:Nt.call(qt,Lt)}}catch(Xt){return{type:"throw",arg:Xt}}}ut.wrap=Ht;var Wt="suspendedStart",Ce="suspendedYield",ce="executing",pe="completed",Ct={};function Ae(){}function st(){}function Gt(){}var bt={};zt(bt,tt,function(){return this});var Te=Object.getPrototypeOf,yt=Te&&Te(Te(an([])));yt&&yt!==pt&&or.call(yt,tt)&&(bt=yt);var ze=Gt.prototype=Ae.prototype=Object.create(bt);function xe(Nt){["next","throw","return"].forEach(function(qt){zt(Nt,qt,function(Lt){return this._invoke(qt,Lt)})})}function dt(Nt,qt){function Lt(Er,Pr,At,Kt){var Bt=lr(Nt[Er],Nt,Pr);if(Bt.type!=="throw"){var Jt=Bt.arg,br=Jt.value;return br&&(0,se.Z)(br)=="object"&&or.call(br,"__await")?qt.resolve(br.__await).then(function(Xr){Lt("next",Xr,At,Kt)},function(Xr){Lt("throw",Xr,At,Kt)}):qt.resolve(br).then(function(Xr){Jt.value=Xr,At(Jt)},function(Xr){return Lt("throw",Xr,At,Kt)})}Kt(Bt.arg)}var Xt;tr(this,"_invoke",{value:function(Pr,At){function Kt(){return new qt(function(Bt,Jt){Lt(Pr,At,Bt,Jt)})}return Xt=Xt?Xt.then(Kt,Kt):Kt()}})}function Pt(Nt,qt,Lt){var Xt=Wt;return function(Er,Pr){if(Xt===ce)throw new Error("Generator is already running");if(Xt===pe){if(Er==="throw")throw Pr;return{value:Xe,done:!0}}for(Lt.method=Er,Lt.arg=Pr;;){var At=Lt.delegate;if(At){var Kt=Be(At,Lt);if(Kt){if(Kt===Ct)continue;return Kt}}if(Lt.method==="next")Lt.sent=Lt._sent=Lt.arg;else if(Lt.method==="throw"){if(Xt===Wt)throw Xt=pe,Lt.arg;Lt.dispatchException(Lt.arg)}else Lt.method==="return"&&Lt.abrupt("return",Lt.arg);Xt=ce;var Bt=lr(Nt,qt,Lt);if(Bt.type==="normal"){if(Xt=Lt.done?pe:Ce,Bt.arg===Ct)continue;return{value:Bt.arg,done:Lt.done}}Bt.type==="throw"&&(Xt=pe,Lt.method="throw",Lt.arg=Bt.arg)}}}function Be(Nt,qt){var Lt=qt.method,Xt=Nt.iterator[Lt];if(Xt===Xe)return qt.delegate=null,Lt==="throw"&&Nt.iterator.return&&(qt.method="return",qt.arg=Xe,Be(Nt,qt),qt.method==="throw")||Lt!=="return"&&(qt.method="throw",qt.arg=new TypeError("The iterator does not provide a '"+Lt+"' method")),Ct;var Er=lr(Xt,Nt.iterator,qt.arg);if(Er.type==="throw")return qt.method="throw",qt.arg=Er.arg,qt.delegate=null,Ct;var Pr=Er.arg;return Pr?Pr.done?(qt[Nt.resultName]=Pr.value,qt.next=Nt.nextLoc,qt.method!=="return"&&(qt.method="next",qt.arg=Xe),qt.delegate=null,Ct):Pr:(qt.method="throw",qt.arg=new TypeError("iterator result is not an object"),qt.delegate=null,Ct)}function Or(Nt){var qt={tryLoc:Nt[0]};1 in Nt&&(qt.catchLoc=Nt[1]),2 in Nt&&(qt.finallyLoc=Nt[2],qt.afterLoc=Nt[3]),this.tryEntries.push(qt)}function mt(Nt){var qt=Nt.completion||{};qt.type="normal",delete qt.arg,Nt.completion=qt}function qr(Nt){this.tryEntries=[{tryLoc:"root"}],Nt.forEach(Or,this),this.reset(!0)}function an(Nt){if(Nt||Nt===""){var qt=Nt[tt];if(qt)return qt.call(Nt);if(typeof Nt.next=="function")return Nt;if(!isNaN(Nt.length)){var Lt=-1,Xt=function Er(){for(;++Lt<Nt.length;)if(or.call(Nt,Lt))return Er.value=Nt[Lt],Er.done=!1,Er;return Er.value=Xe,Er.done=!0,Er};return Xt.next=Xt}}throw new TypeError((0,se.Z)(Nt)+" is not iterable")}return st.prototype=Gt,tr(ze,"constructor",{value:Gt,configurable:!0}),tr(Gt,"constructor",{value:st,configurable:!0}),st.displayName=zt(Gt,Ot,"GeneratorFunction"),ut.isGeneratorFunction=function(Nt){var qt=typeof Nt=="function"&&Nt.constructor;return!!qt&&(qt===st||(qt.displayName||qt.name)==="GeneratorFunction")},ut.mark=function(Nt){return Object.setPrototypeOf?Object.setPrototypeOf(Nt,Gt):(Nt.__proto__=Gt,zt(Nt,Ot,"GeneratorFunction")),Nt.prototype=Object.create(ze),Nt},ut.awrap=function(Nt){return{__await:Nt}},xe(dt.prototype),zt(dt.prototype,Yt,function(){return this}),ut.AsyncIterator=dt,ut.async=function(Nt,qt,Lt,Xt,Er){Er===void 0&&(Er=Promise);var Pr=new dt(Ht(Nt,qt,Lt,Xt),Er);return ut.isGeneratorFunction(qt)?Pr:Pr.next().then(function(At){return At.done?At.value:Pr.next()})},xe(ze),zt(ze,Ot,"Generator"),zt(ze,tt,function(){return this}),zt(ze,"toString",function(){return"[object Generator]"}),ut.keys=function(Nt){var qt=Object(Nt),Lt=[];for(var Xt in qt)Lt.push(Xt);return Lt.reverse(),function Er(){for(;Lt.length;){var Pr=Lt.pop();if(Pr in qt)return Er.value=Pr,Er.done=!1,Er}return Er.done=!0,Er}},ut.values=an,qr.prototype={constructor:qr,reset:function(qt){if(this.prev=0,this.next=0,this.sent=this._sent=Xe,this.done=!1,this.delegate=null,this.method="next",this.arg=Xe,this.tryEntries.forEach(mt),!qt)for(var Lt in this)Lt.charAt(0)==="t"&&or.call(this,Lt)&&!isNaN(+Lt.slice(1))&&(this[Lt]=Xe)},stop:function(){this.done=!0;var qt=this.tryEntries[0].completion;if(qt.type==="throw")throw qt.arg;return this.rval},dispatchException:function(qt){if(this.done)throw qt;var Lt=this;function Xt(Jt,br){return At.type="throw",At.arg=qt,Lt.next=Jt,br&&(Lt.method="next",Lt.arg=Xe),!!br}for(var Er=this.tryEntries.length-1;Er>=0;--Er){var Pr=this.tryEntries[Er],At=Pr.completion;if(Pr.tryLoc==="root")return Xt("end");if(Pr.tryLoc<=this.prev){var Kt=or.call(Pr,"catchLoc"),Bt=or.call(Pr,"finallyLoc");if(Kt&&Bt){if(this.prev<Pr.catchLoc)return Xt(Pr.catchLoc,!0);if(this.prev<Pr.finallyLoc)return Xt(Pr.finallyLoc)}else if(Kt){if(this.prev<Pr.catchLoc)return Xt(Pr.catchLoc,!0)}else{if(!Bt)throw new Error("try statement without catch or finally");if(this.prev<Pr.finallyLoc)return Xt(Pr.finallyLoc)}}}},abrupt:function(qt,Lt){for(var Xt=this.tryEntries.length-1;Xt>=0;--Xt){var Er=this.tryEntries[Xt];if(Er.tryLoc<=this.prev&&or.call(Er,"finallyLoc")&&this.prev<Er.finallyLoc){var Pr=Er;break}}Pr&&(qt==="break"||qt==="continue")&&Pr.tryLoc<=Lt&&Lt<=Pr.finallyLoc&&(Pr=null);var At=Pr?Pr.completion:{};return At.type=qt,At.arg=Lt,Pr?(this.method="next",this.next=Pr.finallyLoc,Ct):this.complete(At)},complete:function(qt,Lt){if(qt.type==="throw")throw qt.arg;return qt.type==="break"||qt.type==="continue"?this.next=qt.arg:qt.type==="return"?(this.rval=this.arg=qt.arg,this.method="return",this.next="end"):qt.type==="normal"&&Lt&&(this.next=Lt),Ct},finish:function(qt){for(var Lt=this.tryEntries.length-1;Lt>=0;--Lt){var Xt=this.tryEntries[Lt];if(Xt.finallyLoc===qt)return this.complete(Xt.completion,Xt.afterLoc),mt(Xt),Ct}},catch:function(qt){for(var Lt=this.tryEntries.length-1;Lt>=0;--Lt){var Xt=this.tryEntries[Lt];if(Xt.tryLoc===qt){var Er=Xt.completion;if(Er.type==="throw"){var Pr=Er.arg;mt(Xt)}return Pr}}throw new Error("illegal catch attempt")},delegateYield:function(qt,Lt,Xt){return this.delegate={iterator:an(qt),resultName:Lt,nextLoc:Xt},this.method==="next"&&(this.arg=Xe),Ct}},ut}var J=e(63579);function le(Xe,ut,pt,or,tr,Me,tt){try{var Yt=Xe[Me](tt),Ot=Yt.value}catch(zt){pt(zt);return}Yt.done?ut(Ot):Promise.resolve(Ot).then(or,tr)}function z(Xe){return function(){var ut=this,pt=arguments;return new Promise(function(or,tr){var Me=Xe.apply(ut,pt);function tt(Ot){le(Me,or,tr,tt,Yt,"next",Ot)}function Yt(Ot){le(Me,or,tr,tt,Yt,"throw",Ot)}tt(void 0)})}}var j=e(99227);function ie(Xe,ut){var pt=typeof Symbol!="undefined"&&Xe[Symbol.iterator]||Xe["@@iterator"];if(!pt){if(Array.isArray(Xe)||(pt=(0,j.Z)(Xe))||ut&&Xe&&typeof Xe.length=="number"){pt&&(Xe=pt);var or=0,tr=function(){};return{s:tr,n:function(){return or>=Xe.length?{done:!0}:{done:!1,value:Xe[or++]}},e:function(zt){throw zt},f:tr}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var Me=!0,tt=!1,Yt;return{s:function(){pt=pt.call(Xe)},n:function(){var zt=pt.next();return Me=zt.done,zt},e:function(zt){tt=!0,Yt=zt},f:function(){try{!Me&&pt.return!=null&&pt.return()}finally{if(tt)throw Yt}}}}var me=e(73825);function Se(Xe){if(typeof Symbol!="undefined"&&Xe[Symbol.iterator]!=null||Xe["@@iterator"]!=null)return Array.from(Xe)}var Ie=e(66160);function He(Xe){return(0,me.Z)(Xe)||Se(Xe)||(0,j.Z)(Xe)||(0,Ie.Z)()}function je(Xe,ut){if(!(Xe instanceof ut))throw new TypeError("Cannot call a class as a function")}var Dt=e(89878);function ht(Xe,ut){for(var pt=0;pt<ut.length;pt++){var or=ut[pt];or.enumerable=or.enumerable||!1,or.configurable=!0,"value"in or&&(or.writable=!0),Object.defineProperty(Xe,(0,Dt.Z)(or.key),or)}}function It(Xe,ut,pt){return ut&&ht(Xe.prototype,ut),pt&&ht(Xe,pt),Object.defineProperty(Xe,"prototype",{writable:!1}),Xe}var Zt=e(65873);function Rt(Xe,ut){if(!Xe)throw new Error(ut)}function ar(Xe){var ut=Xe.fns,pt=Xe.args;if(ut.length===1)return ut[0];var or=ut.pop();return ut.reduce(function(tr,Me){return function(){return Me(tr,pt)}},or)}function $e(Xe){return!!Xe&&(0,se.Z)(Xe)==="object"&&typeof Xe.then=="function"}var gt=function(Xe){return Xe.compose="compose",Xe.modify="modify",Xe.event="event",Xe}({}),Mt=function(){function Xe(ut){je(this,Xe),(0,Zt.Z)(this,"opts",void 0),(0,Zt.Z)(this,"hooks",{}),this.opts=ut}return It(Xe,[{key:"register",value:function(pt){var or=this;Rt(pt.apply,"plugin register failed, apply must supplied"),Object.keys(pt.apply).forEach(function(tr){Rt(or.opts.validKeys.indexOf(tr)>-1,"register failed, invalid key ".concat(tr," ").concat(pt.path?"from plugin ".concat(pt.path):"",".")),or.hooks[tr]=(or.hooks[tr]||[]).concat(pt.apply[tr])})}},{key:"getHooks",value:function(pt){var or=pt.split("."),tr=He(or),Me=tr[0],tt=tr.slice(1),Yt=this.hooks[Me]||[];return tt.length&&(Yt=Yt.map(function(Ot){try{var zt=Ot,Ht=ie(tt),lr;try{for(Ht.s();!(lr=Ht.n()).done;){var Wt=lr.value;zt=zt[Wt]}}catch(Ce){Ht.e(Ce)}finally{Ht.f()}return zt}catch(Ce){return null}}).filter(Boolean)),Yt}},{key:"applyPlugins",value:function(pt){var or=pt.key,tr=pt.type,Me=pt.initialValue,tt=pt.args,Yt=pt.async,Ot=this.getHooks(or)||[];switch(tt&&Rt((0,se.Z)(tt)==="object","applyPlugins failed, args must be plain object."),Yt&&Rt(tr===gt.modify||tr===gt.event,"async only works with modify and event type."),tr){case gt.modify:return Yt?Ot.reduce(function(){var zt=z(ee().mark(function Ht(lr,Wt){var Ce;return ee().wrap(function(pe){for(;;)switch(pe.prev=pe.next){case 0:if(Rt(typeof Wt=="function"||(0,se.Z)(Wt)==="object"||$e(Wt),"applyPlugins failed, all hooks for key ".concat(or," must be function, plain object or Promise.")),!$e(lr)){pe.next=5;break}return pe.next=4,lr;case 4:lr=pe.sent;case 5:if(typeof Wt!="function"){pe.next=16;break}if(Ce=Wt(lr,tt),!$e(Ce)){pe.next=13;break}return pe.next=10,Ce;case 10:return pe.abrupt("return",pe.sent);case 13:return pe.abrupt("return",Ce);case 14:pe.next=21;break;case 16:if(!$e(Wt)){pe.next=20;break}return pe.next=19,Wt;case 19:Wt=pe.sent;case 20:return pe.abrupt("return",(0,J.Z)((0,J.Z)({},lr),Wt));case 21:case"end":return pe.stop()}},Ht)}));return function(Ht,lr){return zt.apply(this,arguments)}}(),$e(Me)?Me:Promise.resolve(Me)):Ot.reduce(function(zt,Ht){return Rt(typeof Ht=="function"||(0,se.Z)(Ht)==="object","applyPlugins failed, all hooks for key ".concat(or," must be function or plain object.")),typeof Ht=="function"?Ht(zt,tt):(0,J.Z)((0,J.Z)({},zt),Ht)},Me);case gt.event:return z(ee().mark(function zt(){var Ht,lr,Wt,Ce;return ee().wrap(function(pe){for(;;)switch(pe.prev=pe.next){case 0:Ht=ie(Ot),pe.prev=1,Ht.s();case 3:if((lr=Ht.n()).done){pe.next=12;break}if(Wt=lr.value,Rt(typeof Wt=="function","applyPlugins failed, all hooks for key ".concat(or," must be function.")),Ce=Wt(tt),!(Yt&&$e(Ce))){pe.next=10;break}return pe.next=10,Ce;case 10:pe.next=3;break;case 12:pe.next=17;break;case 14:pe.prev=14,pe.t0=pe.catch(1),Ht.e(pe.t0);case 17:return pe.prev=17,Ht.f(),pe.finish(17);case 20:case"end":return pe.stop()}},zt,null,[[1,14,17,20]])}))();case gt.compose:return function(){return ar({fns:Ot.concat(Me),args:tt})()}}}}],[{key:"create",value:function(pt){var or=new Xe({validKeys:pt.validKeys});return pt.plugins.forEach(function(tr){or.register(tr)}),or}}]),Xe}(),et=e(26243);let ft=0,ot=0;function Je(Xe,ut){}function Ne(Xe){return JSON.stringify(Xe,null,2)}function ye(Xe){const ut=Xe.length>1?Xe.map(ke).join(" "):Xe[0];return typeof ut=="object"?`${Ne(ut)}`:ut.toString()}function ke(Xe){return typeof Xe=="object"?`${JSON.stringify(Xe)}`:Xe.toString()}const Ge={log(...Xe){ye(Xe)},info(...Xe){ye(Xe)},warn(...Xe){ye(Xe)},error(...Xe){ye(Xe)},group(){ot++},groupCollapsed(){ot++},groupEnd(){ot&&--ot},clear(){},trace(...Xe){console.trace(...Xe)},profile(...Xe){console.profile(...Xe)},profileEnd(...Xe){console.profileEnd(...Xe)}},We=()=>{}},85277:function(d,v,e){"use strict";e.d(v,{C:function(){return l},S:function(){return i}});var r=e(59301);const i=r.createContext(null),l=r.createContext(()=>{console.error("The 'useAntdConfigSetter()' method depends on the antd 'ConfigProvider', requires one of 'antd.configProvider' / 'antd.dark' / 'antd.compact' to be enabled.")})},74133:function(d,v,e){"use strict";e.d(v,{j:function(){return Fc},Q:function(){return xf}});var r=e(22575),i=e(89880),l=e.n(i),c=e(59301),f=e(65582),o=e(47735),h=Object.defineProperty,u=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,x=Object.prototype.propertyIsEnumerable,p=(C,O,L)=>O in C?h(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,y=(C,O)=>{for(var L in O||(O={}))a.call(O,L)&&p(C,L,O[L]);if(u)for(var L of u(O))x.call(O,L)&&p(C,L,O[L]);return C},b={namespace:"account",state:{basicInfo:void 0,actionTabs:{key:"",params:{}}},effects:{*updateAvatar({payload:C},{call:O,put:L}){return yield O(o.n1,C)},*appplySchool({payload:C},{call:O,put:L}){return yield O(o.bz,C)},*getSchoolOption({payload:C},{call:O,put:L}){return yield O(o.GY,C)},*getDepartmentOption({payload:C},{call:O,put:L}){return yield O(o.Ql,C)},*appplyDepartment({payload:C},{call:O,put:L}){return yield O(o.Zm,C)},*updateAccount({payload:C},{call:O,put:L}){return yield O(o.sG,C)},*cancelRealNameAuth({payload:C},{call:O,put:L}){return yield O(o.P,C)},*cancelProfessionalAuth({payload:C},{call:O,put:L}){return yield O(o.$f,C)},*applyProfessionalAuth({payload:C},{call:O,put:L}){return yield O(o.Ow,C)},*applyRealNameAuth({payload:C},{call:O,put:L}){return yield O(o.ht,C)},*getCode({payload:C},{call:O,put:L}){return yield O(o.Cq,C)},*bindPhone({payload:C},{call:O,put:L}){return yield O(o.eF,C)},*bindEmail({payload:C},{call:O,put:L}){return yield O(o.I8,C)},*updatePassword({payload:C},{call:O,put:L}){return yield O(o.gQ,C)},*unbindAccount({payload:C},{call:O,put:L}){return yield O(o.wi,C)},*getBasicInfo({payload:C},{call:O,put:L}){const _e=yield O(o.o9,C);return yield L({type:"save",payload:{basicInfo:y({},_e)}}),_e},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:y({},C)}})}},reducers:{save(C,O){return y(y({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},S=e(5959),k=Object.defineProperty,R=Object.getOwnPropertySymbols,A=Object.prototype.hasOwnProperty,P=Object.prototype.propertyIsEnumerable,M=(C,O,L)=>O in C?k(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,B=(C,O)=>{for(var L in O||(O={}))A.call(O,L)&&M(C,L,O[L]);if(R)for(var L of R(O))P.call(O,L)&&M(C,L,O[L]);return C},K={namespace:"announcement",state:{name:"\u666E\u901A\u8BD5\u5377\uFF0C\u968F\u673A\u8BD5\u5377\u8BE6\u60C5\u9875\u9762",loading:!0,actionTabs:{}},effects:{*informDown({payload:C,callback:O},{call:L,put:_e}){return yield L(S.nZ,C)},*informUp({payload:C,callback:O},{call:L,put:_e}){return yield L(S.TO,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:B({},C)}})}},reducers:{save(C,O){return B(B({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},H=e(7310),W=Object.defineProperty,ae=Object.getOwnPropertySymbols,ne=Object.prototype.hasOwnProperty,oe=Object.prototype.propertyIsEnumerable,q=(C,O,L)=>O in C?W(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,X=(C,O)=>{for(var L in O||(O={}))ne.call(O,L)&&q(C,L,O[L]);if(ae)for(var L of ae(O))oe.call(O,L)&&q(C,L,O[L]);return C},se={namespace:"attachment",state:{name:"\u8D44\u6E90",loading:!0,detail:{},actionTabs:{}},effects:{*allAttachment({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(H.SV,C);return yield _e({type:"save",payload:{allList:X({},Oe)}}),Oe},*mineAttachment({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(H.zI,C);return yield _e({type:"save",payload:{mineList:X({},Oe)}}),Oe},*fileImport({payload:C,callback:O},{call:L,put:_e}){return yield L(H.tO,C)},*getDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(H.Nm,C);return yield _e({type:"save",payload:{detail:X({},Oe)}}),Oe},*updateVisits({payload:C,callback:O},{call:L,put:_e}){return yield L(H.H,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:X({},C)}})}},reducers:{save(C,O){return X(X({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},ee=e(26795),J=Object.defineProperty,le=Object.getOwnPropertySymbols,z=Object.prototype.hasOwnProperty,j=Object.prototype.propertyIsEnumerable,ie=(C,O,L)=>O in C?J(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,me=(C,O)=>{for(var L in O||(O={}))z.call(O,L)&&ie(C,L,O[L]);if(le)for(var L of le(O))j.call(O,L)&&ie(C,L,O[L]);return C},Ie={namespace:"boards",state:{name:"\u8BA8\u8BBA",loading:!0,actionTabs:{},boardsDetail:{},boardsCategoryList:{}},effects:{*getBoardsCategoryList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(ee.yq,C);return yield _e({type:"save",payload:{boardsCategoryList:me({},Oe.data)}}),Oe.data},*getBoardsDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(ee.dI,C);return yield _e({type:"save",payload:{boardsDetail:me({},Oe.data)}}),Oe.data},*setTopping({payload:C,callback:O},{call:L,put:_e}){return yield L(ee.cc,C)},*escTopping({payload:C,callback:O},{call:L,put:_e}){return yield L(ee.CJ,C)},*getReplyList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(ee.PC,C);yield _e({type:"save",payload:{replyList:me({},Oe.data)}})},*createReply({payload:C,callback:O},{call:L,put:_e}){return yield L(ee.PP,C)},*replyLike({payload:C,callback:O},{call:L,put:_e}){return yield L(ee.NA,C)},*replyUnLike({payload:C,callback:O},{call:L,put:_e}){return yield L(ee.YQ,C)},*deleteReply({payload:C,callback:O},{call:L,put:_e}){return yield L(ee.Mf,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:me({},C)}})}},reducers:{save(C,O){return me(me({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},He=e(87513),je=Object.defineProperty,Dt=Object.getOwnPropertySymbols,ht=Object.prototype.hasOwnProperty,It=Object.prototype.propertyIsEnumerable,Zt=(C,O,L)=>O in C?je(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Rt=(C,O)=>{for(var L in O||(O={}))ht.call(O,L)&&Zt(C,L,O[L]);if(Dt)for(var L of Dt(O))It.call(O,L)&&Zt(C,L,O[L]);return C},$e={namespace:"exercise",state:{name:"\u666E\u901A\u8BD5\u5377\uFF0C\u968F\u673A\u8BD5\u5377\u8BE6\u60C5\u9875\u9762",loading:!0,exerciseList:{},userExerciseList:{},statisticsList:{},exerciseCoursesList:{},brankList:{},editData:{},endGroups:{},actionTabs:{removeEventListenerExitScreen:!1},publishGroups:{},commonHeader:{},reviewExercise:{},reviewGroupExercise:{},workSetting:{},editRandomExercises:{},redoModal:{},exerciseUserInfo:{},examinationIntelligentSettings:{},exerciseExportHeadData:{},codeReviewDetail:{},exerciseIdentityPhotos:{},checkDomain:window.document.domain==="kepukehuan.educoder.net"||window.document.domain==="test-kepukehuan.educoder.net",order_type:"",order:"",updateIndex:null,saveExerciseDownUsers:null,NormalResult:{},course_groups:[],SumupDetail:{},ScoreRangesData:{}},effects:{*getScoreRangesData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.$Q,C);return yield _e({type:"save",payload:{ScoreRangesData:Oe==null?void 0:Oe.data}}),Oe},*getQuestionResult({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He._U,C);return yield _e({type:"save",payload:{NormalResult:Oe}}),Oe},*getUserExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.xA,C);return yield _e({type:"save",payload:{userExerciseList:Rt({},(Oe==null?void 0:Oe.data)||{})}}),console.log("getUserExercise-res:",Oe),Oe==null?void 0:Oe.data},*getExerciseIdentityPhotos({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.J,C);return yield _e({type:"save",payload:{exerciseIdentityPhotos:Rt({},(Oe==null?void 0:Oe.data)||{})}}),Oe==null?void 0:Oe.data},*getExerciseExportHeadData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.iw,C);return yield _e({type:"save",payload:{exerciseExportHeadData:Rt({},Oe)}}),Oe},*getExerciseUserInfo({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.Ty,C);return(Oe==null?void 0:Oe.status)===0&&(yield _e({type:"save",payload:Rt({},{exerciseUserInfo:Rt({},Oe.data)})})),Oe},*getExaminationIntelligentSettings({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.sA,C);return yield _e({type:"save",payload:{examinationIntelligentSettings:Rt({},Oe)}}),Oe},*getRandomEditExercises({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.yu,C);return yield _e({type:"save",payload:{editRandomExercises:Rt({},Oe)}}),Oe},*getExerciseList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.G$,C);if(Oe!=null&&Oe.total_exercise_users)try{localStorage.total_exercise_users=JSON.stringify(Oe.total_exercise_users)}catch(dn){}return yield _e({type:"save",payload:{exerciseList:Rt({},Oe)}}),yield _e({type:"save",payload:{order_type:C.order_type,order:C.order}}),Oe},*getExerciseStatistics({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He._u,C);return yield _e({type:"save",payload:{statisticsList:Rt({},Oe)}}),Oe},*getBrankList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.n$,C);return yield _e({type:"save",payload:{brankList:Rt({},Oe)}}),Oe},*saveBanks({payload:C,callback:O},{call:L,put:_e}){return yield L(He.lf,C)},*getExerciseCourses({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.N3,C);return yield _e({type:"save",payload:{exerciseCoursesList:Rt({},Oe)}}),Oe},*addExercise({payload:C,callback:O},{call:L,put:_e}){return yield L(He.uR,C)},*editExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.qf,C);return yield _e({type:"save",payload:{editData:Rt({},Oe)}}),Oe},*getTagDiscipline({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.YY,C);return yield _e({type:"save",payload:{tagDisciplineData:Rt({},Oe)}}),Oe},*editExerciseQuestion({payload:C,callback:O},{call:L,put:_e}){return yield L(He.Di,C)},*addExerciseQuestion({payload:C,callback:O},{call:L,put:_e}){return yield L(He.MK,C)},*exeriseMoveUpDown({payload:C,callback:O},{call:L,put:_e}){return yield L(He.GK,C)},*getEndGroups({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.KE,C);return yield _e({type:"save",payload:{endGroups:Rt({},Oe)}}),Oe},*getPublishGroups({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.ux,C);return yield _e({type:"save",payload:{publishGroups:Rt({},Oe)}}),Oe},*getCommonHeader({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.UK,C);return yield _e({type:"save",payload:{commonHeader:Rt({},Oe)}}),Oe},*getReviewExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.BJ,C);return yield _e({type:"save",payload:{reviewExercise:Rt({},Oe)}}),Oe},*postReviewExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.pu,C);return yield _e({type:"save",payload:{reviewExercise:Rt({},Oe)}}),Oe},*getCentralizeReviewExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.X4,C);return yield _e({type:"save",payload:{reviewExercise:Rt({},Oe)}}),Oe},*clearData({payload:C,callback:O},{call:L,put:_e}){yield _e({type:"save",payload:{[C.key]:{}}})},*getReviewGroupExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.W4,C);return yield _e({type:"save",payload:{reviewGroupExercise:Rt({},Oe)}}),Oe},*getWorkSetting({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.Ul,C);return yield _e({type:"save",payload:{workSetting:Rt({},Oe)}}),Oe},*getRedoModal({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.tX,C);return yield _e({type:"save",payload:{redoModal:Rt({},Oe)}}),Oe},*getRedoListModal({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.s,C);return yield _e({type:"save",payload:{redoModal:Rt({},Oe)}}),Oe},*getCodeReviewDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.Xn,C);return yield _e({type:"save",payload:{codeReviewDetail:Rt({},Oe)}}),Oe},*changeScore({payload:C,callback:O},{call:L,put:_e}){return yield L(He.gG,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Rt({},C)}})},*setUpdateIndex({payload:C},{call:O,put:L}){yield L({type:"save",payload:{updateIndex:C==="clear"?null:Math.random()}})},*setSaveExerciseDownUsers({payload:C},{call:O,put:L}){yield L({type:"save",payload:{saveExerciseDownUsers:C}})}},reducers:{save(C,O){return Rt(Rt({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},gt=e(66479),Mt=Object.defineProperty,et=Object.getOwnPropertySymbols,ft=Object.prototype.hasOwnProperty,ot=Object.prototype.propertyIsEnumerable,Je=(C,O,L)=>O in C?Mt(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ne=(C,O)=>{for(var L in O||(O={}))ft.call(O,L)&&Je(C,L,O[L]);if(et)for(var L of et(O))ot.call(O,L)&&Je(C,L,O[L]);return C},ke={namespace:"graduation",state:{name:"\u6BD5\u4E1A\u8BBE\u8BA1",loading:!0,actionTabs:{},detailList:{},detailTaskList:{},replyList:{},detail:{},addTopicData:{},editTopicData:{},editTasksData:{}},effects:{*getTopisDetailList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.x_,C);return yield _e({type:"save",payload:{detailList:Ne({},Oe)}}),Oe},*getTasksListDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.QA,C);return yield _e({type:"save",payload:{detailTaskList:Ne({},Oe)}}),Oe},*getTopisDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.B6,C);return yield _e({type:"save",payload:{detail:Ne({},Oe)}}),Oe},*getTasksDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.y3,C);return yield _e({type:"save",payload:{tasksDetail:Ne({},Oe)}}),Oe},*refuseTopic({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.mM,C)},*agreeTopic({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.je,C)},*getReplyList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.PC,C);yield _e({type:"save",payload:{replyList:Ne({},Oe)}})},*createReply({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.PP,C)},*replyLike({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.NA,C)},*replyUnLike({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.YQ,C)},*deleteReply({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.Mf,C)},*addTopicDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.y0,C);yield _e({type:"save",payload:{addTopicData:Ne({},Oe)}})},*editTopicDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt.hL,C);return yield _e({type:"save",payload:{editTopicData:Ne({},Oe)}}),Oe},*editTasksDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(gt._n,C);return yield _e({type:"save",payload:{editTasksData:Ne({},Oe)}}),Oe},*addTopic({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.Gr,C)},*editTopic({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.wA,C)},*addTasks({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.Sv,C)},*editTasks({payload:C,callback:O},{call:L,put:_e}){return yield L(gt.RP,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Ne({},C)}})}},reducers:{save(C,O){return Ne(Ne({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},Ge=e(89392),We=e(88761),Xe=Object.defineProperty,ut=Object.getOwnPropertySymbols,pt=Object.prototype.hasOwnProperty,or=Object.prototype.propertyIsEnumerable,tr=(C,O,L)=>O in C?Xe(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Me=(C,O)=>{for(var L in O||(O={}))pt.call(O,L)&&tr(C,L,O[L]);if(ut)for(var L of ut(O))or.call(O,L)&&tr(C,L,O[L]);return C},Yt={namespace:"shixunHomeworks",state:{name:"",loading:!0,workList:{},shixunWorkList:{},headerInfo:{},shixunWorkReport:{},codeReview:{},codeReviewDetail:{},workSetting:{},changeData:{},codeReviewCourse:{},referenceAnswer:{},publishGroups:{},endGroups:{},brankList:{},replyList:{},workDetail:{},commonHomeWorkAddDefaultData:{},studentWorkAddDefaultData:{},studentWorkEditDefaultData:{},commonHomeWorkEditDefaultData:{},studentWorkDetail:{},studentWorkSupplyDetail:{},studentWorkCommon:{},allStudentWorks:{},searchMemberList:{},searchProjectList:{},actionTabs:{key:""},listParams:{order:"all",page:1,limit:16,search:""},homeworkAssistantPermissions:{},shixunAssistantPermission:{},courseAssistantPermission:{}},effects:{*getWorkList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.h$,C);try{sessionStorage.all_student_works=JSON.stringify(Oe.all_student_works),sessionStorage.all_student_works_params=JSON.stringify(C),localStorage.setItem("all_student_works_param",JSON.stringify(C))}catch(dn){}return yield _e({type:"save",payload:{workList:Me({},Oe)}}),Oe},*getShixunWorkHeadInfo({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.fK,C);try{}catch(dn){}return yield _e({type:"save",payload:{headerInfo:Oe==null?void 0:Oe.data}}),Oe},*getShixunWorkList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Z8,C);try{sessionStorage.all_student_works=JSON.stringify(Oe.all_student_works),sessionStorage.all_student_works_params=JSON.stringify(C),localStorage.setItem("all_student_works_param",JSON.stringify(C))}catch(dn){}return yield _e({type:"save",payload:{shixunWorkList:Oe==null?void 0:Oe.data,homeworkAssistantPermissions:Oe.homework_assistant_permissions,shixunAssistantPermission:Oe.shixun_assistant_permission,courseAssistantPermission:Oe.course_assistant_permission}}),Oe},*getCodeReview({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.RP,C);return yield _e({type:"save",payload:{codeReview:Me({},Oe)}}),Oe},*getCodeReviewDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Xn,C);return yield _e({type:"save",payload:{codeReviewDetail:Me({},Oe)}}),Oe},*getWorkDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.to,C);return yield _e({type:"save",payload:{workDetail:Me({},Oe)}}),Oe},*updateWork({payload:C,callback:O},{call:L,put:_e}){return yield L(We.H,C)},*getShixunWorkReport({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.sw,C);try{Oe.all_student_works=JSON.parse(sessionStorage.all_student_works||"[]")}catch(dn){}return yield _e({type:"save",payload:{shixunWorkReport:Me({},Oe)}}),Oe},*getShixunWorkReports({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.cz,C);try{Oe.all_student_works=JSON.parse(sessionStorage.all_student_works||"[]")}catch(dn){}return yield _e({type:"save",payload:{shixunWorkReport:Me({},Oe)}}),Oe},*getWorkSetting({payload:C,callback:O},{call:L,put:_e}){var Oe,dn;const Pn=yield L(We.Ul,C);(Oe=Pn==null?void 0:Pn.group_settings)==null||Oe.map(Mi=>{Mi.value=Mi.group_name,Mi.id=Mi.group_id,Mi.group_id=[Mi.group_id]}),(dn=Pn==null?void 0:Pn.allow_late_settings)==null||dn.map(Mi=>{Mi.value=Mi.group_name,Mi.id=Mi.group_id,Mi.group_id=[Mi.group_id]});const pn={shixun_evaluation:Pn.shixun_evaluation,challenge_settings:Pn.challenge_settings};return yield _e({type:"save",payload:{workSetting:Me({},Pn),changeData:(0,Ge.cloneDeep)(pn)}}),Pn},*updateSetting({payload:C,callback:O},{call:L,put:_e}){return yield L(We.m7,C)},*getCodeReviewCourse({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.JG,C);return yield _e({type:"save",payload:{codeReviewCourse:Me({},Oe)}}),Oe},*exportShixunWorks({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Dx,C)},*getReferenceAnswer({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Q3,C);return yield _e({type:"save",payload:{referenceAnswer:Me({},Oe)}}),Oe},*getPublishGroups({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.ux,C);return yield _e({type:"save",payload:{publishGroups:Me({},Oe)}}),Oe},*getEndGroups({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.KE,C);return yield _e({type:"save",payload:{endGroups:Me({},Oe)}}),Oe},*getBrankList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.n$,C);return yield _e({type:"save",payload:{brankList:Me({},Oe)}}),Oe},*changeScore({payload:C,callback:O},{call:L,put:_e}){return yield L(We.gG,C)},*saveBanks({payload:C,callback:O},{call:L,put:_e}){return yield L(We.lf,C)},*addCommonHomeWorkDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Qt,C);return yield _e({type:"save",payload:{commonHomeWorkAddDefaultData:Me({},Oe)}}),Oe},*getSearchMemberList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Lz,C);return yield _e({type:"save",payload:{searchMemberList:Me({},Oe)}}),Oe},*getProjectList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.ku,C);return yield _e({type:"save",payload:{searchProjectList:Me({},Oe)}}),Oe},*addStudentWorkDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.ak,C);return yield _e({type:"save",payload:{studentWorkAddDefaultData:Me({},Oe)}}),Oe},*editStudentWorkDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.PW,C);return yield _e({type:"save",payload:{studentWorkEditDefaultData:Me({},Oe)}}),Oe},*editCommonHomeWorkDefaultData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.BD,C);return yield _e({type:"save",payload:{commonHomeWorkEditDefaultData:Me({},Oe)}}),Oe},*editCommonHomeWorkDefaultBankData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.pH,C);return yield _e({type:"save",payload:{commonHomeWorkEditDefaultData:Me({},Oe)}}),Oe},*getReplyList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.PC,C);yield _e({type:"save",payload:{replyList:Me({},Oe)}})},*getStudentWorkDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Hj,C);yield _e({type:"save",payload:{studentWorkDetail:Me({},Oe)}})},*getStudentWorkSupplyDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.ub,C);yield _e({type:"save",payload:{studentWorkSupplyDetail:Me({},Oe)}})},*getStudentWorkCommon({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.JA,C);yield _e({type:"save",payload:{studentWorkCommon:Me({},Oe)}})},*getAllStudentWorks({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.ql,C);return yield _e({type:"save",payload:{allStudentWorks:Me({},Oe)}}),Oe},*getFileRepeatResult({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.oN,C);return yield _e({type:"save",payload:{codeReview:Me({},Oe)}}),Oe},*getFileRepeatDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(We.Ti,C);return yield _e({type:"save",payload:{codeReviewDetail:Me({},Oe)}}),Oe},*createReply({payload:C,callback:O},{call:L,put:_e}){return yield L(We.PP,C)},*replyLike({payload:C,callback:O},{call:L,put:_e}){return yield L(We.NA,C)},*replyUnLike({payload:C,callback:O},{call:L,put:_e}){return yield L(We.YQ,C)},*deleteReply({payload:C,callback:O},{call:L,put:_e}){return yield L(We.Mf,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Me({},C)}})}},reducers:{save(C,O){return Me(Me({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Ot=e(33270),zt=e(41867),Ht=Object.defineProperty,lr=Object.getOwnPropertySymbols,Wt=Object.prototype.hasOwnProperty,Ce=Object.prototype.propertyIsEnumerable,ce=(C,O,L)=>O in C?Ht(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,pe=(C,O)=>{for(var L in O||(O={}))Wt.call(O,L)&&ce(C,L,O[L]);if(lr)for(var L of lr(O))Ce.call(O,L)&&ce(C,L,O[L]);return C},Ae={namespace:"classroomList",state:{name:"",loading:!0,detailTopBanner:{copy_completed:!0},detailLeftMenus:{},detailLeftMenusNames:{},detailShixunsList:{},detailGraduationTopicsList:{},detailGraduationTaskList:{},detailExerciseList:{},detailPollsList:{},detailCommonHomeworksList:{},detailAttendancesList:{},detailAttendancesDetail:{},detailAnnouncementList:{},detailAttachmentList:{},detailCourseware:{},courseMine:{},detailVideoList:{},detailLiveVideoList:{},detailBoardList:{},courseGroups:{},allCourseGroups:{},detailCourseGroupsList:{},detailCoursStudentsList:{},detailCourseStatisticsList:{},detailAttendancesStatistic:{},detailCourseWorkscore:{},detailCourseActscore:{},coursesLists:{},shixunLists:{},schoolList:{},taskList:[],searchMemberList:{},actionTabs:{key:""},listParams:{order:"all",page:1,limit:16,search:""},shareStatus:!1,AssistantObject:{},updateData:""},effects:{*setAssistantPermissions({payload:C},{call:O,put:L}){yield O(Ot.gq,C)},*getAssistantPermissions({payload:C},{call:O,put:L}){if(!(0,zt.eB)())return;const _e=yield O(Ot.rS,C);yield L({type:"save",payload:{AssistantObject:_e.permissions}})},*getAiStatusQuery({payload:C},{call:O,put:L}){const _e=yield O(Ot.LH,C);return yield L({type:"save",payload:{cal_finish_if:_e.cal_finish_if}}),_e},*updateCoursePortraitData({payload:C},{call:O,put:L}){return yield O(Ot.Z_,C)},*getUserPortraitConfig({payload:C},{call:O,put:L}){const _e=yield O(Ot._0,C);return yield L({type:"save",payload:{userPortraitConfig:_e.data}}),_e},*updateUserPortraitConfig({payload:C},{call:O,put:L}){return yield O(Ot.r2,C)},*getClassroom({payload:C},{call:O,put:L}){const _e=C,Oe=yield O(Ot.V8,C);return yield L({type:"save",payload:pe({listParams:_e},Oe)}),Oe},*getClassroomTopBanner({payload:C},{call:O,put:L}){const _e=yield O(Ot.U_,C);return yield L({type:"save",payload:{detailTopBanner:_e.status?{copy_completed:!0}:pe({},_e)}}),_e.status?{copy_completed:!0}:_e},*getClassroomLeftMenus({payload:C},{call:O,put:L}){const _e=yield O(Ot.w9,C);let Oe=[...(_e==null?void 0:_e.course_modules)||[],...(_e==null?void 0:_e.hidden_modules)||[]],dn={};return Oe==null||Oe.forEach(Pn=>{dn[Pn.type]=Pn.name}),yield L({type:"save",payload:{detailLeftMenus:pe({},_e),detailLeftMenusNames:dn}}),_e},*getClassroomShixunsList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Nd,C);yield L({type:"save",payload:{detailShixunsList:pe({},_e)}})},*getClassroomTeacherShixunsList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Gk,C);return yield L({type:"save",payload:{detailShixunsList:pe({},_e)}}),_e},*getClassroomCommonList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Nd,C);yield L({type:"save",payload:{detailCommonHomeworksList:pe({},_e)}})},*getClassroomTeacherCommonList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Gk,C);return yield L({type:"save",payload:{detailCommonHomeworksList:pe({},_e)}}),_e},*getClassroomGraduationTopicsList({payload:C},{call:O,put:L}){const _e=yield O(Ot.yV,C);yield L({type:"save",payload:{detailGraduationTopicsList:pe({},_e)}})},*getClassroomGraduationTaskList({payload:C},{call:O,put:L}){const _e=yield O(Ot.R2,C);yield L({type:"save",payload:{detailGraduationTaskList:pe({},_e)}})},*getClassroomExercisesList({payload:C},{call:O,put:L}){const _e=yield O(Ot.N7,C);yield L({type:"save",payload:{detailExerciseList:pe({},_e)}})},*getClassroomPollsList({payload:C},{call:O,put:L}){const _e=yield O(Ot.BR,C);yield L({type:"save",payload:{detailPollsList:pe({},_e)}})},*getCourseGroups({payload:C},{call:O,put:L}){const _e=yield O(Ot.qB,C);yield L({type:"save",payload:{courseGroups:pe({},_e)}})},*getAllCourseGroup({payload:C},{call:O,put:L}){const _e=yield O(Ot.c_,C);return yield L({type:"save",payload:{allCourseGroups:pe({},_e)}}),_e},*getClassroomCommonHomeworksList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Al,C);yield L({type:"save",payload:{detailCommonHomeworksList:pe({},_e)}})},*getClassroomAttendancesList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Vw,C);yield L({type:"save",payload:{detailAttendancesList:pe({},_e)}})},*getClassroomAttendancesStatistic({payload:C},{call:O,put:L}){const _e=yield O(Ot.Ls,C);yield L({type:"save",payload:{detailAttendancesStatistic:pe({},_e)}})},*getAttendanceDetail({payload:C},{call:O,put:L}){const _e=yield O(Ot.zg,C);return yield L({type:"save",payload:{detailAttendancesDetail:pe({},_e)}}),_e},*getAnnouncementList({payload:C},{call:O,put:L}){const _e=yield O(Ot.QZ,C);yield L({type:"save",payload:{detailAnnouncementList:pe({},_e)}})},*getAttachmentList({payload:C},{call:O,put:L}){const _e=yield O(Ot.KT,C);yield L({type:"save",payload:{detailAttachmentList:pe({},_e.data)}})},*getCourseware({payload:C},{call:O,put:L}){const _e=yield O(Ot.ZT,C);yield L({type:"save",payload:{detailCourseware:pe({},_e.data)}})},*getVideoList({payload:C},{call:O,put:L}){const _e=yield O(Ot.O3,C);yield L({type:"save",payload:{detailVideoList:pe({},_e)}})},*getLiveVideoList({payload:C},{call:O,put:L}){const _e=yield O(Ot.DJ,C);yield L({type:"save",payload:{detailLiveVideoList:pe({},_e)}})},*getCoursesMine({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.Ed,C);return yield _e({type:"save",payload:{courseMine:pe({},Oe)}}),Oe.data},*getBoardList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.KP,C);return yield _e({type:"save",payload:{detailBoardList:pe({},Oe.data)}}),Oe.data},*getCourseGroupsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.kW,C);return yield _e({type:"save",payload:{detailCourseGroupsList:pe({},Oe)}}),Oe},*getCourseStudentsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.J2,C);return yield _e({type:"save",payload:{detailCoursStudentsList:pe({},Oe)}}),Oe.data},*getCourseStatistics({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.g4,C);return yield _e({type:"save",payload:{detailCourseStatisticsList:pe({},Oe)}}),Oe},*getCourseActscore({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.t1,C);return yield _e({type:"save",payload:{detailCourseActscore:pe({},Oe)}}),Oe},*getCourseWorkscore({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.GV,C);return yield _e({type:"save",payload:{detailCourseWorkscore:pe({},Oe)}}),Oe},*getShixunLists({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.Pj,C);return yield _e({type:"save",payload:{shixunLists:pe({},Oe)}}),Oe},*getExperimentLists({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot._9,C);return yield _e({type:"save",payload:{shixunLists:pe({},Oe)}}),Oe},*getShixunAiRecommendLists({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.Hn,C);return yield _e({type:"save",payload:{shixunAiRecommendLists:pe({},Oe)}}),Oe},*getCoursesLists({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.W7,C);return yield _e({type:"save",payload:{coursesLists:pe({},Oe)}}),Oe},*createCoursesHomework({payload:C,callback:O},{call:L,put:_e}){return yield L(Ot.Ds,C)},*createShixunHomework({payload:C,callback:O},{call:L,put:_e}){return yield L(Ot.aQ,C)},*createExperiment({payload:C,callback:O},{call:L,put:_e}){return yield L(Ot.BQ,C)},*getSchoolList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.K$,C);return yield _e({type:"save",payload:{schoolList:pe({},Oe.school_names)}}),Oe.school_names},*searchSchoolTeacherList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.nQ,C);return yield _e({type:"save",payload:{searchMemberList:pe({},Oe)}}),Oe},*getAllTaskList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.km,C);return yield _e({type:"save",payload:{taskList:[...Oe.tasks]}}),Oe},*updateTaskPosition({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Ot.U8,C);return yield _e({type:"save",payload:{actionTabs:{key:""}}}),Oe},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:pe({},C)}})},*setUpdateData({payload:C},{call:O,put:L}){yield L({type:"save",payload:{updateData:C}})}},reducers:{save(C,O){return pe(pe({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},st=Object.defineProperty,Gt=Object.getOwnPropertySymbols,bt=Object.prototype.hasOwnProperty,Te=Object.prototype.propertyIsEnumerable,yt=(C,O,L)=>O in C?st(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,ze=(C,O)=>{for(var L in O||(O={}))bt.call(O,L)&&yt(C,L,O[L]);if(Gt)for(var L of Gt(O))Te.call(O,L)&&yt(C,L,O[L]);return C},dt={namespace:"newClassroom",state:{schoolList:[],searchCourseList:[],actionTabs:{key:"",params:{}}},effects:{*getSchoolList({payload:C},{call:O,put:L}){const _e=yield O(Ot.K$,C);yield L({type:"save",payload:{schoolList:(_e==null?void 0:_e.school_names)||[]}})},*getSearchCourseList({payload:C},{call:O,put:L}){const _e=yield O(Ot.oM,C);yield L({type:"save",payload:{searchCourseList:(_e==null?void 0:_e.course_lists)||[]}})},*submitCourses({payload:C},{call:O,put:L}){return yield O(Ot.Bn,C)},*appplySchool({payload:C},{call:O,put:L}){return yield O(Ot.bz,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:ze({},C)}})},*joincoursegroup({payload:C},{call:O,put:L}){return yield O(Ot.WK,C)}},reducers:{save(C,O){return ze(ze({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},Pt=Object.defineProperty,Be=Object.getOwnPropertySymbols,Or=Object.prototype.hasOwnProperty,mt=Object.prototype.propertyIsEnumerable,qr=(C,O,L)=>O in C?Pt(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,an=(C,O)=>{for(var L in O||(O={}))Or.call(O,L)&&qr(C,L,O[L]);if(Be)for(var L of Be(O))mt.call(O,L)&&qr(C,L,O[L]);return C},qt={namespace:"classroomsOverview",state:{},effects:{*getCourseUseInfos({payload:C},{call:O,put:L}){const _e=yield O(Ot.Dd,C);yield L({type:"save",payload:{CourseUseInfos:_e}})},*getRankList({payload:C},{call:O,put:L}){const _e=yield O(Ot.Fg,C);yield L({type:"save",payload:{RankList:{teacher_list:[{rank:"\u6392\u540D",name:"\u59D3\u540D",course_num:"\u7BA1\u7406\u8BFE",homework_num:"\u53D1\u5E03\u4F5C\u4E1A\u6570",exercise_num:"\u53D1\u5E03\u8003\u8BD5\u6570",resource_num:"\u4E0A\u4F20\u8D44\u6E90\u6570"},...(_e==null?void 0:_e.teacher_list)||[]],student_list:[{rank:"\u6392\u540D",name:"\u59D3\u540D",student_id:"\u5B66\u53F7/\u5DE5\u53F7",finish_num:"\u5B8C\u6210\u4F5C\u4E1A\u6570",total_score:"\u603B\u6210\u7EE9"},...(_e==null?void 0:_e.student_list)||[]],learn_course_list:[{rank:"\u6392\u540D",name:"\u6559\u5B66\u8BFE\u5802\u540D\u79F0",num:"\u5B66\u4E60\u4EBA\u6570"},...(_e==null?void 0:_e.learn_course_list)||[]],interact_course_list:[{rank:"\u6392\u540D",name:"\u6559\u5B66\u8BFE\u5802\u540D\u79F0",num:"\u4E92\u52A8\u8BA8\u8BBA\u6570"},...(_e==null?void 0:_e.interact_course_list)||[]],finish_course_list:[{rank:"\u6392\u540D",name:"\u6559\u5B66\u8BFE\u5802\u540D\u79F0",num:"\u603B\u5B8C\u6210\u6570"},...(_e==null?void 0:_e.finish_course_list)||[]]}}})},*getStatisticsBody({payload:C},{call:O,put:L}){const _e=yield O(Ot.Gz,C);yield L({type:"save",payload:{SBody:_e}})},*getStatisticsHeader({payload:C},{call:O,put:L}){const _e=yield O(Ot.Hl,C);yield L({type:"save",payload:{SHeader:_e}})}},reducers:{save(C,O){return an(an({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Lt=e(43150),Xt=Object.defineProperty,Er=Object.getOwnPropertySymbols,Pr=Object.prototype.hasOwnProperty,At=Object.prototype.propertyIsEnumerable,Kt=(C,O,L)=>O in C?Xt(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Bt=(C,O)=>{for(var L in O||(O={}))Pr.call(O,L)&&Kt(C,L,O[L]);if(Er)for(var L of Er(O))At.call(O,L)&&Kt(C,L,O[L]);return C},br={namespace:"polls",state:{name:"\u666E\u901A\u8BD5\u5377\uFF0C\u968F\u673A\u8BD5\u5377\u8BE6\u60C5\u9875\u9762",loading:!0,pollsList:{},statisticsList:{},pollsCoursesList:{},brankList:{},actionTabs:{},commonHeader:{},pollSetting:{},endGroups:{},publishGroups:{},exerciseBanks:{}},effects:{*getPollsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.s3,C);return yield _e({type:"save",payload:{pollsList:Bt({},Oe)}}),Oe},*getCommonHeader({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.UK,C);return yield _e({type:"save",payload:{commonHeader:Bt({},Oe)}}),Oe},*getPollsStatistics({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.Qn,C);return yield _e({type:"save",payload:{statisticsList:Bt({},Oe)}}),Oe},*getBrankList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.n$,C);return yield _e({type:"save",payload:{brankList:Bt({},Oe)}}),Oe},*saveBanks({payload:C,callback:O},{call:L,put:_e}){return yield L(Lt.lf,C)},*getPollsCourses({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.Q9,C);return yield _e({type:"save",payload:{pollsCoursesList:Bt({},Oe)}}),Oe},*getPollsSetting({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.Hi,C);return yield _e({type:"save",payload:{pollSetting:Bt({},Oe)}}),Oe},*editPolls({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.Ye,C);return yield _e({type:"save",payload:{editData:Bt({},JSON.parse(JSON.stringify(Oe)))}}),Oe},*getEndGroups({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.KE,C);return yield _e({type:"save",payload:{endGroups:Bt({},Oe)}}),Oe},*getPublishGroups({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.ux,C);return yield _e({type:"save",payload:{publishGroups:Bt({},Oe)}}),Oe},*getExerciseBanks({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Lt.kp,C);return yield _e({type:"save",payload:{exerciseBanks:Bt({},Oe)}}),Oe},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Bt({},C)}})}},reducers:{save(C,O){return Bt(Bt({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},Xr=e(93539),Wr=Object.defineProperty,jn=Object.getOwnPropertySymbols,wn=Object.prototype.hasOwnProperty,Yn=Object.prototype.propertyIsEnumerable,St=(C,O,L)=>O in C?Wr(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Vr=(C,O)=>{for(var L in O||(O={}))wn.call(O,L)&&St(C,L,O[L]);if(jn)for(var L of jn(O))Yn.call(O,L)&&St(C,L,O[L]);return C},Bi={namespace:"teachers",state:{list:{},applyList:{},allCourseGroups:{},graduationGroupList:{},studentsList:{},actionTabs:{key:"",params:{}},updateIndex:1},effects:{*getList({payload:C},{call:O,put:L}){var _e;const Oe=yield O(Xr.gp,C);return(_e=Oe==null?void 0:Oe.teacher_list)==null||_e.map(dn=>(dn.key=dn.course_member_id,dn)),yield L({type:"save",payload:{list:Oe}}),Oe},*getStudentsList({payload:C},{call:O,put:L}){var _e;const Oe=yield O(Xr.ur,C);return(_e=Oe==null?void 0:Oe.students)==null||_e.map(dn=>(dn.key=dn.user_id,dn)),yield L({type:"save",payload:{studentsList:Oe}}),Oe},*getApplyList({payload:C},{call:O,put:L}){const _e=yield O(Xr.s,C);return yield L({type:"save",payload:{applyList:_e}}),_e},*getAllCourseGroups({payload:C},{call:O,put:L}){const _e=yield O(Xr.xV,C);return yield L({type:"save",payload:{allCourseGroups:_e}}),_e},*getGraduationGroupList({payload:C},{call:O,put:L}){const _e=yield O(Xr.Bg,C);return yield L({type:"save",payload:{graduationGroupList:_e}}),_e},*setAllCourseGroups({payload:C},{call:O,put:L}){const _e=yield O(Xr.oZ,C);return yield L({type:"save",payload:{setAllCourseGroups:_e}}),_e},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Vr({},C)}})},*setUpdateIndex({payload:C},{call:O,put:L}){yield L({type:"save",payload:{updateIndex:Math.random()}})}},reducers:{save(C,O){return Vr(Vr({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},Gn=e(54624),ci=Object.defineProperty,Oi=Object.getOwnPropertySymbols,$i=Object.prototype.hasOwnProperty,Ai=Object.prototype.propertyIsEnumerable,ji=(C,O,L)=>O in C?ci(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,ha=(C,O)=>{for(var L in O||(O={}))$i.call(O,L)&&ji(C,L,O[L]);if(Oi)for(var L of Oi(O))Ai.call(O,L)&&ji(C,L,O[L]);return C},Yi={namespace:"video",state:{name:"\u8D44\u6E90",loading:!0,actionTabs:{},videoStatisticsList:{},newVideoStatisticsList:{},videoDurationStatics:{},StudentvideoStatistics:{},videoPeopleStatics:{},videoStatistics:{},oneVideoStatisticsList:{}},effects:{*getVideoStatisticsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.BQ,C);return yield _e({type:"save",payload:{videoStatisticsList:ha({},Oe)}}),Oe},*getNewVideoStatisticsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.cU,C);return yield _e({type:"save",payload:{newVideoStatisticsList:ha({},Oe)}}),Oe},*getVideoPeopleStatics({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.Zx,C);return yield _e({type:"save",payload:{videoPeopleStatics:ha({},Oe)}}),Oe},*getVideoDurationStatics({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.Mz,C);return yield _e({type:"save",payload:{videoDurationStatics:ha({},Oe)}}),Oe},*getVideoStatistics({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.ZY,C);return yield _e({type:"save",payload:{videoStatistics:ha({},Oe)}}),Oe},*getOneVideoStatisticsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.cU,C);return yield _e({type:"save",payload:{oneVideoStatisticsList:ha({},Oe)}}),Oe},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:ha({},C)}})},*getStudentVideoStatisticsList({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.Vg,C);return yield _e({type:"save",payload:{StudentvideoStatistics:ha({},Oe)}}),Oe}},reducers:{save(C,O){return ha(ha({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},mi=e(30945),zi=Object.defineProperty,Ca=Object.getOwnPropertySymbols,xt=Object.prototype.hasOwnProperty,xa=Object.prototype.propertyIsEnumerable,Zi=(C,O,L)=>O in C?zi(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,_i=(C,O)=>{for(var L in O||(O={}))xt.call(O,L)&&Zi(C,L,O[L]);if(Ca)for(var L of Ca(O))xa.call(O,L)&&Zi(C,L,O[L]);return C},Hi={namespace:"competitions",state:{name:"",loading:!0,listParams:{page:1,per_page:20,category:""},Staff:{},Header:{},competition_title:"",banner:"",competitions:[],count:"",RightItems:{},Prizes:{},Account:{},TabResultList:{},competition_team:{},all_team_member:{},actionTabs:{key:"",params:{}},GuidesData:{}},effects:{*postGuides({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.cC,C)},*getGuides({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.Ax,C);return yield _e({type:"save",payload:{GuidesData:Oe}}),Oe},*getWorkSubmitUpdateRes({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.zF,C)},*getList({payload:C},{call:O,put:L}){const _e=C,Oe=yield O(mi.bQ,C);return yield L({type:"save",payload:_i({listParams:_e},Oe)}),Oe},*getMemberWorks({payload:C},{call:O,put:L}){const _e=yield O(mi.xx,C);return yield L({type:"save",payload:{MemberWorks:_e||{}}}),_e},*addApplytojoincourse({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.qS,C)},*competitionTeams({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.Pt,C)},*getStaff({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.Dh,C);return yield _e({type:"save",payload:{Staff:Oe}}),Oe},*getHeader({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.Pg,C);return yield _e({type:"save",payload:{Header:Oe}}),Oe},*getItem({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.rV,C);return yield _e({type:"save",payload:{RightItems:Oe}}),Oe},*updateMdContent({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.zj,C)},*getTeamList({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.aq,C)},*getTeamDetail({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.Ze,C)},*UpTeam({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.yS,C)},*DeleteTeam({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.ps,C)},*ExitTeam({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.vV,C)},*AddTeam({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.FU,C)},*AddPersonnel({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.R9,C)},*JoinTeam({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.zc,C)},*getTeacher({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.jS,C)},*getStudents({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.sK,C)},*SubmitTeam({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.rm,C)},*Reward({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.Qp,C)},*ChartRules({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.Ux,C)},*Charts({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.GQ,C)},*TabResults({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.ml,C);return yield _e({type:"save",payload:{TabResultList:Oe}}),Oe},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:_i({},C)}})},*Results({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.u9,C)},*Prize({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.pU,C);return yield _e({type:"save",payload:{Prizes:Oe}}),Oe},*Accounts({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.XJ,C);return yield _e({type:"save",payload:{Account:Oe}}),Oe},*getVerification({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.Ni,C)},*PhoneBind({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.uZ,C)},*EmailBind({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.rk,C)},*Authentication({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.Vy,C)},*Professional({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.tC,C)},*setleader({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.tO,C)},*getShixun({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.qj,C)},*getCourse({payload:C,callback:O},{call:L,put:_e}){return yield L(mi.XR,C)},*competition_teams({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.zz,C);return yield _e({type:"save",payload:{competition_team:Oe}}),Oe},*all_team_members({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(mi.$P,C);return yield _e({type:"save",payload:{all_team_member:Oe}}),Oe}},reducers:{save(C,O){return _i(_i({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},ei=e(55510),$n=e(86967),Ee=Object.defineProperty,nt=Object.defineProperties,qe=Object.getOwnPropertyDescriptors,Tt=Object.getOwnPropertySymbols,lt=Object.prototype.hasOwnProperty,hr=Object.prototype.propertyIsEnumerable,pr=(C,O,L)=>O in C?Ee(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Cr=(C,O)=>{for(var L in O||(O={}))lt.call(O,L)&&pr(C,L,O[L]);if(Tt)for(var L of Tt(O))hr.call(O,L)&&pr(C,L,O[L]);return C},$r=(C,O)=>nt(C,qe(O)),Nr={namespace:"engineeringEvaluteDetail",state:{classDataSource:{active:null,dataList:[]},actionTabs:{key:"",params:{}},name:"",headerData:{dataSource:{[$n.k[0]]:{width:235,placeholder:`\u8BF7\u9009\u62E9${$n.k[0]}`,loading:"engineeringEvaluteDetail/getMajorList",dataList:[]},[$n.k[1]]:{width:138,placeholder:`\u8BF7\u9009\u62E9${$n.k[1]}`,loading:"engineeringEvaluteDetail/getYearList",dataList:[]}},active:{}},tabListData:[],echartsData:{barData:{name:"",dataSource:{xData:[],yBarData:[],yLineData:[]}},lineData:{name:"",xData:[],seriesData:[]},scatterData:{}}},effects:{*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Cr({},C)}})},*getMajorList({payload:C},{call:O,put:L,select:_e}){const{userInfo:Oe}=yield _e(dn=>dn.user);if(Oe!=null&&Oe.school_id){const dn=yield O(ei.BA,Oe.school_id);dn&&dn.data&&(yield L({type:"setMajorOrYearDataSource",payload:{key:$n.k[0],value:dn.data.map(Pn=>({label:Pn.name,value:Pn.ec_major_school_id}))}}))}},*getYearList({payload:C},{call:O,put:L}){const _e=yield O(ei.Nx,C);_e&&_e.data&&(yield L({type:"setMajorOrYearDataSource",payload:{key:$n.k[1],value:_e.data.map(Oe=>({label:Oe.year,value:Oe.ec_year_id}))}}))},*getCourseResultDetail({payload:C},{call:O,put:L}){console.log(C,"payload");const _e=yield O(ei.p1,C);_e&&_e.ec_course_target&&(yield L({type:"setEchartsData",payload:_e}))},*getCourseResultDetailClass({payload:C},{call:O,put:L}){const _e=yield O(ei.ff,C);_e&&_e.class_name&&(yield L({type:"save",payload:{classDataSource:{active:null,dataList:[..._e.class_name]}}}))},*setClassActive({payload:C},{call:O,put:L}){yield L({type:"save",payload:{classDataSource:Cr({},C)}})}},reducers:{save(C,O){return Cr(Cr({},C),O.payload)},setMajorOrYearDataSource(C,{payload:O}){return $r(Cr({},C),{headerData:$r(Cr({},C.headerData),{dataSource:$r(Cr({},C.headerData.dataSource),{[O.key]:$r(Cr({},C.headerData.dataSource[O.key]),{dataList:O.value})})})})},setMajorOrYearActive(C,{payload:O}){return $r(Cr({},C),{headerData:$r(Cr({},C.headerData),{active:$r(Cr({},C.headerData.active),{[O.key]:O.value})})})},setEchartsData(C,{payload:O}){let L={name:O.course_name||"",dataSource:{xData:[],yBarData:[],yLineData:[]}},_e={name:O.course_name||"",xData:[],seriesData:[]},Oe={};return O.ec_course_target.forEach((dn,Pn)=>{dn.position=Pn+1,L=$r(Cr({},L),{dataSource:{xData:[...L.dataSource.xData,Pn+1],yBarData:[...L.dataSource.yBarData,dn.actual_grade],yLineData:[...L.dataSource.yLineData,dn.standard_grade]}});let pn=[],Mi={min:[],max:[]},ds=[],Ga=[],Yo=[];dn.student_data.detail.forEach((is,Io)=>{let Gs=is.score;pn.push(Io+1),Mi.max.push(Gs>=dn.student_data.goal_score?Gs:null),Mi.min.push(Gs>=dn.student_data.goal_score?null:Gs),ds.push(is.name),Ga.push(is.student_id),Yo.push(is.clazz)}),Oe[Pn+1]={name:Pn+1,average_score:dn.student_data.average_score,goal_score:dn.student_data.goal_score,xData:pn,yData:Mi,name_data:ds,student_ids:Ga,class_data:Yo,goal_scoreData:new Array(dn.student_data.detail.length).fill(dn.student_data.goal_score),average_scoreData:new Array(dn.student_data.detail.length).fill(dn.student_data.average_score)}}),O.history.forEach(dn=>{_e=$r(Cr({},_e),{xData:[..._e.xData,dn.year],seriesData:[..._e.seriesData,dn.total_score]})}),$r(Cr({},C),{name:O.course_name||"",tabListData:O.ec_course_target,echartsData:{barData:L,lineData:_e,scatterData:Oe}})}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},An=Object.defineProperty,_r=Object.getOwnPropertySymbols,Fn=Object.prototype.hasOwnProperty,Qn=Object.prototype.propertyIsEnumerable,Ke=(C,O,L)=>O in C?An(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,ct=(C,O)=>{for(var L in O||(O={}))Fn.call(O,L)&&Ke(C,L,O[L]);if(_r)for(var L of _r(O))Qn.call(O,L)&&Ke(C,L,O[L]);return C},sr={namespace:"engineering",state:{showMenu:!0,matrixVerify:{key:!1,params:{}},actionTabs:{key:"",params:{}}},effects:{*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:ct({},C)}})},*setShowMenu({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showMenu:C}})},*setMatrixVerify({payload:C},{call:O,put:L}){yield L({type:"save",payload:{matrixVerify:ct({},C)}})}},reducers:{save(C,O){return ct(ct({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},nr=e(2001),kr=Object.defineProperty,Hr=Object.defineProperties,Zr=Object.getOwnPropertyDescriptors,hn=Object.getOwnPropertySymbols,Si=Object.prototype.hasOwnProperty,un=Object.prototype.propertyIsEnumerable,yn=(C,O,L)=>O in C?kr(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Gr=(C,O)=>{for(var L in O||(O={}))Si.call(O,L)&&yn(C,L,O[L]);if(hn)for(var L of hn(O))un.call(O,L)&&yn(C,L,O[L]);return C},kn=(C,O)=>Hr(C,Zr(O)),Ea={namespace:"engineeringNavigtion",state:{actionTabs:{key:"",params:{}},headerData:{title:"\u8BA4\u8BC1\u5BFC\u822A",dataSource:{[$n.k[0]]:{width:235,placeholder:`\u8BF7\u9009\u62E9${$n.k[0]}`,loading:"engineeringNavigtion/getMajorList",dataList:[]},[$n.k[1]]:{width:138,placeholder:`\u8BF7\u9009\u62E9${$n.k[1]}`,loading:"engineeringNavigtion/getYearList",dataList:[]}},active:{},name:"",tabBarContent:{user_name:"",user_school:"",user_type:""}},cardListData:{appraiseData:{norm:{title:"\u6307\u6807\u8BC4\u4EF7",result:"-",tabBarContent:[{icon:"icon-biyezhibiao",label:"\u6BD5\u4E1A\u6307\u6807",value:"/engineering/graduated/index"},{icon:"icon-biyejuzhen",label:"\u6BD5\u4E1A\u77E9\u9635",value:"/engineering/graduated/matrix"}],listData:[{key:"graduation_count",icon:"icon-biyeyaoqiu1",backgroundColor:"#F2EBFB",textColor:"#713BDB",label:"\u6BD5\u4E1A\u8981\u6C42",value:"-",unit:"\u9879"},{key:"graduation_subitem_count",icon:"icon-zhibiaodian",backgroundColor:"#FEF3EF",textColor:"#FF8B58",label:"\u6307\u6807\u70B9",value:"-",unit:"\u9879"},{key:"graduation_achieve_count",icon:"icon-dacheng",backgroundColor:"#D7F5E6",textColor:"#07C160",label:"\u5DF2\u8FBE\u6210\u6BD5\u4E1A\u8981\u6C42",value:"-",unit:"\u9879"},{key:"graduation_not_achieve_count",icon:"icon-weidacheng",backgroundColor:"#F5F5F5",textColor:"#7C8184",label:"\u672A\u8FBE\u6210\u6BD5\u4E1A\u8981\u6C42",value:"-",unit:"\u9879"}]},course:{title:"\u8BFE\u7A0B\u8BC4\u4EF7",result:"-",tabBarContent:[{icon:"icon-kechengliebiao",label:"\u8BFE\u7A0B\u5217\u8868",value:"/engineering/course/list"},{icon:"icon-kechengjuzhen",label:"\u8BFE\u7A0B\u77E9\u9635",value:"/engineering/course/matrix"}],listData:[{key:"course_count",icon:"icon-kechengshuliang",backgroundColor:"#E2F5FF",textColor:"#007AFF",label:"\u8BFE\u7A0B\u6570\u91CF",value:"-",unit:"\u95E8"},{key:"course_target_count",icon:"icon-mubiao",backgroundColor:"#FEF8EF",textColor:"#FEB315",label:"\u8BFE\u7A0B\u76EE\u6807",value:"-",unit:"\u9879"},{key:"course_achieve_count",icon:"icon-dacheng",backgroundColor:"#D7F5E6",textColor:"#07C160",label:"\u5DF2\u8FBE\u6210\u8BFE\u7A0B\u6570\u91CF",value:"-",unit:"\u95E8"},{key:"course_not_achieve_count",icon:"icon-weidacheng",backgroundColor:"#F5F5F5",textColor:"#7C8184",label:"\u672A\u8FBE\u6210\u8BFE\u7A0B\u6570\u91CF",value:"-",unit:"\u95E8"}]}},teamData:{teach:{title:"\u6388\u8BFE\u56E2\u961F",tabBarContent:"0\u4EBA",listData:[]},work:{title:"\u5DE5\u4F5C\u56E2\u961F",tabBarContent:"0\u4EBA",listData:[]}}},totalListData:[{key:"student_count",title:"\u5F53\u524D\u5B66\u751F\u603B\u6570",value:0,icon:"icon-xuesheng1",backgroundColor:"rgba(201,236,255,0.51)",textColor:"#007AFF"},{key:"student_in_count",title:"\u8F6C\u5165\u5B66\u751F\u603B\u6570",value:0,icon:"icon-zhuanru",backgroundColor:"rgba(119,241,174,0.4)",textColor:"#1FA363"},{key:"student_out_count",title:"\u8F6C\u51FA\u5B66\u751F\u603B\u6570",value:0,icon:"icon-zhuanchu",backgroundColor:"rgba(255,197,147,0.44)",textColor:"#FA6400"}]},effects:{*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Gr({},C)}})},*getMajorList({},{call:C,put:O,select:L}){const{userInfo:_e}=yield L(Oe=>Oe.user);if(_e!=null&&_e.school_id){const Oe=yield C(ei.BA,_e.school_id);if(Oe&&Oe.data){const dn=nr.U.getItem(_e==null?void 0:_e.login);yield O({type:"setMajorOrYearDataSource",payload:{key:$n.k[0],value:Oe.data.map(Pn=>({label:Pn.name,value:Pn.ec_major_school_id})),active:Oe.data.length>0?dn[0]||Oe.data[0].ec_major_school_id:void 0}})}}},*getYearList({payload:C},{call:O,put:L,select:_e}){const Oe=yield O(ei.Nx,C.id),{userInfo:dn}=yield _e(Pn=>Pn.user);if(Oe&&Oe.data){const Pn=nr.U.getItem(dn==null?void 0:dn.login);yield L({type:"setMajorOrYearDataSource",payload:{key:$n.k[1],value:Oe.data.map(pn=>({label:pn.year,value:pn.ec_year_id})),active:Oe.data.length>0?C.firstEnter?Pn[1]:Oe.data[0].ec_year_id:void 0}})}},*getTopPage({},{call:C,put:O,select:L}){const{headerData:_e}=yield L(Pn=>Pn.engineeringNavigtion),{userInfo:Oe}=yield L(Pn=>Pn.user);let dn={};if(_e.active[$n.k[1]]&&Oe.school_id){const Pn=[_e.active[$n.k[0]],_e.active[$n.k[1]]];nr.U.setItem(Oe==null?void 0:Oe.login,Pn);const pn=yield C(ei.bA,{ec_year_id:_e.active[$n.k[1]],school_id:Oe.school_id});pn&&pn.data&&(dn=pn.data),yield O({type:"setTopPage",payload:dn})}},*putTopPageName({payload:C,callback:O},{call:L,put:_e}){try{const Oe=yield L(ei.ay,C);O(Oe)}catch(Oe){let dn="";Oe&&(dn=JSON.stringify(Oe),Oe.message&&(dn=Oe.message)),O({message:dn,status:999})}}},reducers:{save(C,O){return Gr(Gr({},C),O.payload)},setMajorOrYearDataSource(C,{payload:O}){let L=C.headerData.active;return O.active&&(L=kn(Gr({},L),{[O.key]:O.active})),kn(Gr({},C),{headerData:kn(Gr({},C.headerData),{dataSource:kn(Gr({},C.headerData.dataSource),{[O.key]:kn(Gr({},C.headerData.dataSource[O.key]),{dataList:O.value})}),active:L})})},setMajorOrYearActive(C,{payload:O}){return kn(Gr({},C),{headerData:kn(Gr({},C.headerData),{active:kn(Gr({},C.headerData.active),{[O.key]:O.value})})})},setTopPage(C,{payload:O}){return kn(Gr({},C),{headerData:kn(Gr({},C.headerData),{name:O.name,tabBarContent:{user_name:O.user_name,user_school:O.user_school,user_type:O.user_type}}),cardListData:kn(Gr({},C.cardListData),{appraiseData:kn(Gr({},C.cardListData.appraiseData),{norm:kn(Gr({},C.cardListData.appraiseData.norm),{result:O.graduaiton_result,listData:C.cardListData.appraiseData.norm.listData.map(L=>kn(Gr({},L),{value:O[L.key]||0}))}),course:kn(Gr({},C.cardListData.appraiseData.course),{result:O.course_result,listData:C.cardListData.appraiseData.course.listData.map(L=>kn(Gr({},L),{value:O[L.key]||0}))})}),teamData:{teach:kn(Gr({},C.cardListData.teamData.teach),{tabBarContent:`${O.course_teachers?O.course_teachers.length:0}\u4EBA`,listData:O.course_teachers||[]}),work:kn(Gr({},C.cardListData.teamData.work),{tabBarContent:`${O.work_teachers?O.work_teachers.length:0}\u4EBA`,listData:O.work_teachers||[]})}}),totalListData:C.totalListData.map(L=>kn(Gr({},L),{value:O[L.key]||0}))})}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Js=Object.defineProperty,Ba=Object.defineProperties,$s=Object.getOwnPropertyDescriptors,Ns=Object.getOwnPropertySymbols,as=Object.prototype.hasOwnProperty,oo=Object.prototype.propertyIsEnumerable,Aa=(C,O,L)=>O in C?Js(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Is=(C,O)=>{for(var L in O||(O={}))as.call(O,L)&&Aa(C,L,O[L]);if(Ns)for(var L of Ns(O))oo.call(O,L)&&Aa(C,L,O[L]);return C},ps=(C,O)=>Ba(C,$s(O)),Ji={namespace:"engineeringNormDetail",state:{actionTabs:{key:"",params:{}},dataSource:{name:"",goal_value:0,actual_value:0,subitems:[]}},effects:{*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Is({},C)}})},*getGraduationResultDetail({payload:C},{call:O,put:L}){const _e=yield O(ei.gq,C);yield L({type:"save",payload:{dataSource:_e}})}},reducers:{save(C,O){return Is(Is({},C),O.payload)},setDataSource(C,{payload:O}){let L=O;return ps(Is({},C),{dataSource:L})}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},to=e(8591),zo=Object.defineProperty,Na=Object.defineProperties,zs=Object.getOwnPropertyDescriptors,di=Object.getOwnPropertySymbols,ro=Object.prototype.hasOwnProperty,Rn=Object.prototype.propertyIsEnumerable,ss=(C,O,L)=>O in C?zo(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ps=(C,O)=>{for(var L in O||(O={}))ro.call(O,L)&&ss(C,L,O[L]);if(di)for(var L of di(O))Rn.call(O,L)&&ss(C,L,O[L]);return C},Os=(C,O)=>Na(C,zs(O)),Qi=(C,O)=>{var L={};for(var _e in C)ro.call(C,_e)&&O.indexOf(_e)<0&&(L[_e]=C[_e]);if(C!=null&&di)for(var _e of di(C))O.indexOf(_e)<0&&Rn.call(C,_e)&&(L[_e]=C[_e]);return L},Ni={namespace:"engineeringNormList",state:{actionTabs:{key:"",params:{}},headerData:{dataSource:{[$n.k[0]]:{width:235,placeholder:`\u8BF7\u9009\u62E9${$n.k[0]}`,loading:"engineeringNormList/getMajorList",dataList:[]},[$n.k[1]]:{width:138,placeholder:`\u8BF7\u9009\u62E9${$n.k[1]}`,loading:"engineeringNormList/getYearList",dataList:[]}},active:{}},tabListData:[],expandedRowKeys:[],all_goal_value:""},effects:{*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Ps({},C)}})},*getMajorList({},{call:C,put:O,select:L}){const{userInfo:_e}=yield L(Oe=>Oe.user);if(_e!=null&&_e.school_id){const Oe=yield C(ei.BA,_e.school_id);if(Oe&&Oe.data){const dn=nr.U.getItem(_e==null?void 0:_e.login);yield O({type:"setMajorOrYearDataSource",payload:{key:$n.k[0],value:Oe.data.map(Pn=>({label:Pn.name,value:Pn.ec_major_school_id})),active:Oe.data.length>0?dn[0]||Oe.data[0].ec_major_school_id:void 0}})}}},*getYearList({payload:C},{call:O,put:L,select:_e}){const Oe=yield O(ei.Nx,C.id),{userInfo:dn}=yield _e(Pn=>Pn.user);if(Oe&&Oe.data){const Pn=nr.U.getItem(dn==null?void 0:dn.login);yield L({type:"setMajorOrYearDataSource",payload:{key:$n.k[1],value:Oe.data.map(pn=>({label:pn.year,value:pn.ec_year_id})),active:Oe.data.length>0?C.firstEnter?Pn[1]:Oe.data[0].ec_year_id:void 0}})}},*getGraduationResults({},{call:C,put:O,select:L}){const{headerData:_e}=yield L(ds=>ds.engineeringNormList),{userInfo:Oe}=yield L(ds=>ds.user);let dn=[],Pn=[],pn="";const Mi=_e.active[$n.k[1]];if(Mi){const ds=[_e.active[$n.k[0]],_e.active[$n.k[1]]];nr.U.setItem(Oe==null?void 0:Oe.login,ds);const Ga=yield C(ei.eM,Mi);Ga&&Ga.graduation_requirements&&(pn=Ga.all_goal_value||"",dn=Ga.graduation_requirements.map(Yo=>{var is=Yo,{subitems:Io}=is,Gs=Qi(is,["subitems"]);return Pn.push(Gs.id),Os(Ps({},Gs),{children:Io})}))}yield O({type:"save",payload:{tabListData:dn,all_goal_value:pn,expandedRowKeys:Pn}})},*exportGraduation({},{call:C,select:O}){const{headerData:L}=yield O(_e=>_e.engineeringNormList);L.active[$n.k[1]]&&(yield C(ei.OE,L.active[$n.k[1]]))},*compute({payload:C},{call:O,put:L}){const _e=C,{all:Oe}=_e,dn=Qi(_e,["all"]),Pn=yield O(Oe?ei.Qx:ei.Xl,dn);Pn&&Pn.status===0?(to.ZP.success("\u8BA1\u7B97\u5B8C\u6210"),yield L({type:"getGraduationResults"})):to.ZP.error(Pn.message)},*getFormulas({callback:C},{call:O,select:L}){const{headerData:_e}=yield L(Oe=>Oe.engineeringNormList);if(_e.active[$n.k[1]]){const Oe=yield O(ei.mK,_e.active[$n.k[1]]);C(Oe)}},*setFormulas({payload:C,callback:O},{call:L}){const _e=yield L(ei.y9,C);O(_e)},*putGoalValue({payload:C},{call:O,put:L}){const _e=yield O(ei.No,C);if(_e&&_e.status===0)to.ZP.success("\u4FDD\u5B58\u6210\u529F"),yield L({type:"save",payload:{actionTabs:{key:"",params:{}}}}),yield L({type:"getGraduationResults"});else{let Oe="\u4FDD\u5B58\u5931\u8D25";_e&&_e.message&&(Oe=_e.message),to.ZP.error(Oe)}}},reducers:{save(C,O){return Ps(Ps({},C),O.payload)},setMajorOrYearDataSource(C,{payload:O}){let L=C.headerData.active;return O.active&&(L=Os(Ps({},L),{[O.key]:O.active})),Os(Ps({},C),{headerData:Os(Ps({},C.headerData),{dataSource:Os(Ps({},C.headerData.dataSource),{[O.key]:Os(Ps({},C.headerData.dataSource[O.key]),{dataList:O.value})}),active:L})})},setMajorOrYearActive(C,{payload:O}){return Os(Ps({},C),{headerData:Os(Ps({},C.headerData),{active:Os(Ps({},C.headerData.active),{[O.key]:O.value})})})}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Ds=e(16209),xo=Object.defineProperty,Zo=Object.getOwnPropertySymbols,Qo=Object.prototype.hasOwnProperty,mu=Object.prototype.propertyIsEnumerable,_u=(C,O,L)=>O in C?xo(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,vo=(C,O)=>{for(var L in O||(O={}))Qo.call(O,L)&&_u(C,L,O[L]);if(Zo)for(var L of Zo(O))mu.call(O,L)&&_u(C,L,O[L]);return C},Oo={namespace:"forumsDetail",state:{forumsDetailData:{}},effects:{*getForumsDetailData({payload:C},{call:O,put:L}){const _e=yield O(Ds.Si,C);return yield L({type:"save",payload:{forumsDetailData:vo({},_e)}}),_e},*setForumsDetailData({payload:C},{call:O,put:L}){yield L({type:"save",payload:{forumsDetailData:vo({},C)}})}},reducers:{save(C,O){return vo(vo({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},nu=Object.defineProperty,Xo=Object.getOwnPropertySymbols,hi=Object.prototype.hasOwnProperty,vi=Object.prototype.propertyIsEnumerable,qa=(C,O,L)=>O in C?nu(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,ls=(C,O)=>{for(var L in O||(O={}))hi.call(O,L)&&qa(C,L,O[L]);if(Xo)for(var L of Xo(O))vi.call(O,L)&&qa(C,L,O[L]);return C},Wa={namespace:"forumsList",state:{forumsData:{},listParams:{page:1,order:"updated_at"}},effects:{*getForumsData({payload:C},{call:O,put:L}){const _e=yield O(C.memoType==="shixun_discuss"?Ds.kd:Ds.bc,C);return delete C.memoType,yield L({type:"save",payload:{listParams:C,forumsData:ls({},_e)}}),_e}},reducers:{save(C,O){return ls(ls({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},ms=e(79274),Jo=e(74128),ks=e(28209),Mo=e.n(ks),Eu=Object.defineProperty,Pu=Object.getOwnPropertySymbols,rl=Object.prototype.hasOwnProperty,dl=Object.prototype.propertyIsEnumerable,Fo=(C,O,L)=>O in C?Eu(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,uo=(C,O)=>{for(var L in O||(O={}))rl.call(O,L)&&Fo(C,L,O[L]);if(Pu)for(var L of Pu(O))dl.call(O,L)&&Fo(C,L,O[L]);return C},Hu={namespace:"globalSetting",state:{name:"\u5168\u5C40\u914D\u7F6E",loading:!0,isIlearning:window.location.host.indexOf("learning.")>-1,showFooter:!0,showHeader:!0,showTip:!1,showHeaderFooter:!0,showHeaderFixed:!1,onlyShowBackTop:!0,onlyShowBackTopIcons:!0,operateModel:!1,operateModelPath:"",showQuestionBackTop:!1,theme:"defaults",shareData:{title:document.title,imgUrl:"https://ali-cdn.educoder.net/images/avatars/LaboratorySetting/1tab?t=1610677202",desc:""},globalLoading:{show:!1,text:""},updateData:{end_time:"",start_time:"",subject:"",system_score:"",system_update:!1},infoData:{name:"",phone:""},isSaiaDomain:window.location.host=="saia.educoder.net",actionTabs:{key:"",params:{}}},effects:{*query({payload:C},{call:O,put:L}){var _e,Oe;const dn=yield O(ms.D2,C);Jo.Z.ONLYOFFICE=(_e=dn==null?void 0:dn.setting)==null?void 0:_e.office_server_url,Bo(dn);try{const Mi="5183666c72eec9e4",ds="5183666c72eec9e4";var Pn=Mo().enc.Utf8.parse(Mi);let Ga=Mo().enc.Utf8.parse(ds);var pn=Mo().AES.decrypt(((Oe=dn==null?void 0:dn.setting)==null?void 0:Oe.user_default_password)||"",Pn,{iv:Ga,mode:Mo().mode.CBC});dn.setting.user_default_password=pn.toString(Mo().enc.Utf8)}catch(Mi){}yield L({type:"save",payload:uo({},dn)})},*getSystemUpdate({payload:C},{call:O,put:L}){const _e=yield O(ms.n0,C);yield L({type:"save",payload:{updateData:uo({},_e)}})},*setTheme({payload:C},{call:O,put:L}){const _e=yield O(ms.n0,C);yield L({type:"save",payload:{theme:C||"default"}})},*setShareData({payload:C},{call:O,put:L}){yield L({type:"save",payload:{shareData:C}})},*setGlobalLoading({payload:C},{call:O,put:L}){yield L({type:"save",payload:{globalLoading:uo({},C)}})},*delayTipToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showTip:C}})},*headerToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showHeader:C}})},*footerToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showFooter:C}})},*headerFooterToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showHeaderFooter:C}})},*delayTipToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showTip:C}})},*headerFixedToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showHeaderFixed:C}})},*onlyShowBackTopToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{onlyShowBackTop:C}})},*onlyShowBackTopIconToggle({payload:C},{call:O,put:L}){yield L({type:"save",payload:{onlyShowBackTopIcons:C}})},*setOperateModel({payload:C},{call:O,put:L}){yield L({type:"save",payload:{operateModel:C}})},*setOperateModelPath({payload:C},{call:O,put:L}){yield L({type:"save",payload:{operateModelPath:C}})},*setShowQuestionBackTop({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showQuestionBackTop:C}})},*setInfoData({payload:C},{call:O,put:L}){yield L({type:"save",payload:{infoData:uo({},C)}})},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:uo({},C)}})}},reducers:{save(C,O){return uo(uo({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{})}}};const Bo=(C={})=>{var O,L,_e,Oe,dn;if(window.self!==window.top||!((O=C.setting)!=null&&O.tab_logo_url))return;const Pn=document.createElement("link"),pn=document.getElementById("dynamic-favicon");Pn.id="dynamic-favicon",Pn.rel="shortcut icon",Pn.href=(L=C.setting)!=null&&L.tab_logo_url?`${Jo.Z.IMG_SERVER}/${(_e=C.setting)==null?void 0:_e.tab_logo_url}`:"",pn&&document.head.removeChild(pn),document.head.appendChild(Pn);try{(Oe=C.setting)!=null&&Oe.main_site||(document.querySelector('meta[name="keywords"]').content=(dn=C.setting)==null?void 0:dn.name,document.querySelector('meta[name="description"]').remove())}catch(Mi){}};var Go=e(37090),Uu=Object.defineProperty,iu=Object.getOwnPropertySymbols,vu=Object.prototype.hasOwnProperty,No=Object.prototype.propertyIsEnumerable,gu=(C,O,L)=>O in C?Uu(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ko=(C,O)=>{for(var L in O||(O={}))vu.call(O,L)&&gu(C,L,O[L]);if(iu)for(var L of iu(O))No.call(O,L)&&gu(C,L,O[L]);return C},gr={namespace:"graduations",state:{actionTabs:{key:"",params:{}},details:{},menus:[],forTask:[],ownedList:[],students:{},years:[],graduation:{teachers_count:0,students_count:0,graduation_tasks_count:0},teachers:{},graduation_stages:[],Notices:{total_count:0,no_deal_count:0},Tasks:{data:[],count:0},updateIndex:1},effects:{*getGraduationsStageDetails({payload:C},{call:O,put:L}){return yield O(Go.Xh,C)},*getGraduationsFinalScore({payload:C},{call:O,put:L}){return yield O(Go.H3,C)},*getDelGraduationsTasks({payload:C},{call:O,put:L}){return yield O(Go.km,C)},*getGraduationsTasks({payload:C},{call:O,put:L}){const _e=yield O(Go.Xw,C);yield L({type:"save",payload:{Tasks:_e}})},*getGraduationsTeachers({payload:C},{call:O,put:L}){var _e;const Oe=yield O(Go.AA,C);return(_e=Oe==null?void 0:Oe.data)==null||_e.map(dn=>(dn.key=dn.id,dn)),yield L({type:"save",payload:{teachers:Oe}}),Oe},*getGraduationsStudents({payload:C},{call:O,put:L}){var _e;const Oe=yield O(Go.eh,C);(_e=Oe==null?void 0:Oe.data)==null||_e.map(dn=>(dn.key=dn.id,dn)),yield L({type:"save",payload:{students:Oe}})},*getGraduationsNotices({payload:C},{call:O,put:L}){const _e=yield O(Go.Rk,C);yield L({type:"save",payload:{Notices:_e}})},*getGraduationsInfo({payload:C},{call:O,put:L}){const _e=yield O(Go.F7,C);yield L({type:"save",payload:{graduation:_e.graduation}})},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Ko({},C)}})},*setUpdateIndex({payload:C},{call:O,put:L}){yield L({type:"save",payload:{updateIndex:Math.random()}})},*getGraduationsDetails({payload:C},{call:O,put:L}){const _e=yield O(Go.Ou,C);yield L({type:"save",payload:{details:(_e==null?void 0:_e.graduation)||{},menus:(_e==null?void 0:_e.data)||[],forTask:(_e==null?void 0:_e.for_task)||[]}})}},reducers:{save(C,O){return Ko(Ko({},C),O.payload)}}},dr=e(95707),vr=Object.defineProperty,Tr=Object.defineProperties,bn=Object.getOwnPropertyDescriptors,zn=Object.getOwnPropertySymbols,Ln=Object.prototype.hasOwnProperty,Zn=Object.prototype.propertyIsEnumerable,ai=(C,O,L)=>O in C?vr(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Jn=(C,O)=>{for(var L in O||(O={}))Ln.call(O,L)&&ai(C,L,O[L]);if(zn)for(var L of zn(O))Zn.call(O,L)&&ai(C,L,O[L]);return C},mr=(C,O)=>Tr(C,bn(O)),Br={namespace:"homePage",state:{name:"\u9996\u9875",loading:!0},effects:{*home({payload:C},{call:O,put:L}){const _e=yield O(dr.Tt,{payload:C});yield L({type:"save",payload:mr(Jn({},_e),{isloading:!0})})},*query({payload:C},{call:O,put:L}){yield L({type:"save",payload:{name:"linlu"}})},*getHomeNotice({payload:C,callback:O},{call:L,put:_e}){return yield L(dr.LA,C)},*UploadNotice({payload:C,callback:O},{call:L,put:_e}){return yield L(dr.S_,C)}},reducers:{save(C,O){return Jn(Jn({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Tn=Object.defineProperty,In=Object.defineProperties,oi=Object.getOwnPropertyDescriptors,wi=Object.getOwnPropertySymbols,Hn=Object.prototype.hasOwnProperty,ta=Object.prototype.propertyIsEnumerable,ra=(C,O,L)=>O in C?Tn(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,gi=(C,O)=>{for(var L in O||(O={}))Hn.call(O,L)&&ra(C,L,O[L]);if(wi)for(var L of wi(O))ta.call(O,L)&&ra(C,L,O[L]);return C},Et=(C,O)=>In(C,oi(O)),Sa={namespace:"innovation",state:{visibleModalName:"",hideRemindModal:!0,openForkModalPosition:"forkButton",simpleModalProps:{visible:!1}},reducers:{save(C,O){return gi(gi({},C),O.payload)},openModal(C,O){return Et(gi({},C),{visibleModalName:O.payload})},closeModal(C){return Et(gi({},C),{visibleModalName:""})},openSimpleModal(C,O){return Et(gi({},C),{simpleModalProps:gi({visible:!0},O.payload)})},closeSimpleModal(C){return Et(gi({},C),{simpleModalProps:{visible:!1}})}}},Ra=e(38147),Ys=Object.defineProperty,sn=Object.getOwnPropertySymbols,Do=Object.prototype.hasOwnProperty,lo=Object.prototype.propertyIsEnumerable,Rs=(C,O,L)=>O in C?Ys(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,no=(C,O)=>{for(var L in O||(O={}))Do.call(O,L)&&Rs(C,L,O[L]);if(sn)for(var L of sn(O))lo.call(O,L)&&Rs(C,L,O[L]);return C},io=(C,O,L)=>new Promise((_e,Oe)=>{var dn=Mi=>{try{pn(L.next(Mi))}catch(ds){Oe(ds)}},Pn=Mi=>{try{pn(L.throw(Mi))}catch(ds){Oe(ds)}},pn=Mi=>Mi.done?_e(Mi.value):Promise.resolve(Mi.value).then(dn,Pn);pn((L=L.apply(C,O)).next())});const ts=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/banner.json",{method:"get",params:no({},C)})}),cs=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/top_category.json",{method:"get",params:no({},C)})}),ja=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/hot_recommend_subjects.json",{method:"get",params:no({},C)})}),os=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/time_discount_subjects.json",{method:"get",params:no({},C)})}),Qe=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects.json",{method:"post",body:no({},C)})}),Pe=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/all_tags.json",{method:"get",params:no({},C)})}),Ft=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/user_comments.json",{method:"get",params:no({},C)})}),_t=C=>io(void 0,null,function*(){return(0,Ra.ZP)("/api/paid_subjects/info_show.json",{method:"get",params:no({},C)})});var Sr=Object.defineProperty,Mr=Object.getOwnPropertySymbols,Kr=Object.prototype.hasOwnProperty,xn=Object.prototype.propertyIsEnumerable,cn=(C,O,L)=>O in C?Sr(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Sn=(C,O)=>{for(var L in O||(O={}))Kr.call(O,L)&&cn(C,L,O[L]);if(Mr)for(var L of Mr(O))xn.call(O,L)&&cn(C,L,O[L]);return C},ni={namespace:"intraincourse",state:{name:"\u7528\u6237\u767B\u5F55\u6A21\u5757",BannerList:[],Adv:{},TopCategoryList:[],HotList:[],DiscountList:[],SubjectList:{},Tags:[],UserComments:[],InfoShow:{}},effects:{*getBannerList({payload:C},{call:O,put:L}){const{data:{adv:_e,top_banner:Oe}}=yield O(ts,C);yield L({type:"save",payload:{BannerList:Oe,Adv:_e}})},*getTopCategoryList({payload:C},{call:O,put:L}){const{data:{top_category_list:_e}}=yield O(cs,C);yield L({type:"save",payload:{TopCategoryList:[{id:-1,name:"\u5168\u90E8"},..._e]}})},*getHotList({payload:C},{call:O,put:L}){const{data:{hot_list:_e}}=yield O(ja,C);yield L({type:"save",payload:{HotList:_e}})},*getDiscountList({payload:C},{call:O,put:L}){const{data:{discount_list:_e}}=yield O(os,C);yield L({type:"save",payload:{DiscountList:_e}})},*getPaidSubjects({payload:C},{call:O,put:L}){const{data:_e}=yield O(Qe,C);yield L({type:"save",payload:{SubjectList:_e}})},*getTags({payload:C},{call:O,put:L}){const{data:{list:_e}}=yield O(Pe,C);yield L({type:"save",payload:{Tags:_e}})},*getUserComments({payload:C},{call:O,put:L}){const{data:{list:_e}}=yield O(Ft,C);yield L({type:"save",payload:{UserComments:_e}})},*getInfoShow({payload:C},{call:O,put:L}){const{data:_e}=yield O(_t,C);yield L({type:"save",payload:{InfoShow:_e}})}},reducers:{save(C,O){return Sn(Sn({},C),O.payload)}}},Li={namespace:"loadingss",state:{global:!1,effects:{},models:{}}},na=e(5664),Wi=Object.defineProperty,Ci=Object.getOwnPropertySymbols,Ia=Object.prototype.hasOwnProperty,Ii=Object.prototype.propertyIsEnumerable,pi=(C,O,L)=>O in C?Wi(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,ca=(C,O)=>{for(var L in O||(O={}))Ia.call(O,L)&&pi(C,L,O[L]);if(Ci)for(var L of Ci(O))Ii.call(O,L)&&pi(C,L,O[L]);return C},Qs={namespace:"messages",state:{tidingsList:[],privateMessage:[],unreadInfo:[],recentContacts:{},privateMessageDetails:{},userPrivateMessage:{},actionTabs:{key:"",params:{}}},effects:{*getPrivateMessageDetails({payload:C},{call:O,put:L}){const _e=yield O(na.Ub,C);return yield L({type:"save",payload:{privateMessageDetails:_e||[]}}),_e},*getTidings({payload:C},{call:O,put:L}){const _e=yield O(na.AD,C);yield L({type:"save",payload:{tidingsList:_e||[]}})},*getPrivateMessages({payload:C},{call:O,put:L}){const _e=yield O(na.V8,C);return yield L({type:"save",payload:{privateMessage:_e||[]}}),_e},*getUsersForPrivateMessages({payload:C},{call:O,put:L}){const _e=yield O(na.QJ,C);return yield L({type:"save",payload:{userPrivateMessage:_e||[]}}),_e},*unreadMessageInfo({payload:C},{call:O,put:L}){const _e=yield O(na.Ig,C);yield L({type:"save",payload:{unreadInfo:_e||[]}})},*getRecentContacts({payload:C},{call:O,put:L}){const _e=yield O(na.Ko,C);return yield L({type:"save",payload:{recentContacts:_e||[]}}),_e},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:ca({},C)}})}},reducers:{save(C,O){return ca(ca({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},ia=e(29297),fs=e(65862),ya=e(2337),_s=Object.defineProperty,La=Object.defineProperties,rs=Object.getOwnPropertyDescriptors,Ls=Object.getOwnPropertySymbols,ao=Object.prototype.hasOwnProperty,xs=Object.prototype.propertyIsEnumerable,pa=(C,O,L)=>O in C?_s(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ms=(C,O)=>{for(var L in O||(O={}))ao.call(O,L)&&pa(C,L,O[L]);if(Ls)for(var L of Ls(O))xs.call(O,L)&&pa(C,L,O[L]);return C},jo=(C,O)=>La(C,rs(O));const qs=(C,O)=>{var L,_e,Oe,dn,Pn,pn,Mi,ds,Ga;if(!C)return;const{exam:Yo,single_questions:is,multiple_questions:Io,judgement_questions:Gs,program_questions:tf,completion_questions:ql,subjective_questions:Bc,practical_questions:rf,combination_questions:Ju,bprogram_questions:Ti}=C||{},Tl=[Ms({type:"SINGLE",question_type:0,name:((L=O==null?void 0:O.find(gs=>gs.value==ya.fw[0].nameType))==null?void 0:L.name)||ya.fw[0].name},is),Ms({type:"MULTIPLE",question_type:1,name:((_e=O==null?void 0:O.find(gs=>gs.value==ya.fw[1].nameType))==null?void 0:_e.name)||ya.fw[1].name},Io),Ms({type:"JUDGMENT",question_type:2,name:((Oe=O==null?void 0:O.find(gs=>gs.value==ya.fw[2].nameType))==null?void 0:Oe.name)||ya.fw[2].name},Gs),Ms({type:"PROGRAM",question_type:6,name:((dn=O==null?void 0:O.find(gs=>gs.value==ya.fw[6].nameType))==null?void 0:dn.name)||ya.fw[6].name},tf),Ms({type:"COMPLETION",question_type:3,name:((Pn=O==null?void 0:O.find(gs=>gs.value==ya.fw[3].nameType))==null?void 0:Pn.name)||ya.fw[3].name},ql),Ms({type:"SUBJECTIVE",question_type:4,name:((pn=O==null?void 0:O.find(gs=>gs.value==ya.fw[4].nameType))==null?void 0:pn.name)||ya.fw[4].name},Bc),Ms({type:"PRACTICAL",question_type:5,name:((Mi=O==null?void 0:O.find(gs=>gs.value==ya.fw[5].nameType))==null?void 0:Mi.name)||ya.fw[5].name},rf),Ms({type:"COMBINATION",question_type:7,name:((ds=O==null?void 0:O.find(gs=>gs.value==ya.fw[7].nameType))==null?void 0:ds.name)||ya.fw[7].name},Ju),Ms({type:"BPROGRAM",question_type:8,name:((Ga=O==null?void 0:O.find(gs=>gs.value==ya.fw[8].nameType))==null?void 0:Ga.name)||ya.fw[8].name},Ti)],Nc=[];if(C.sort_by_qustion_type)for(const gs of C.qustion_type_order_name_en)Nc.push(Tl.find(bl=>bl.type===gs));const _o=(C.sort_by_qustion_type?Nc:Tl).filter(gs=>(gs==null?void 0:gs.questions_count)>0).map((gs,bl)=>{var ec;return Ms(Ms({},gs),{number:(0,fs.EM)(bl+1),questions:(ec=gs==null?void 0:gs.questions)==null?void 0:ec.map(xl=>jo(Ms({},xl),{shixun:xl.examination_bank_shixun_challenges,question_type:gs.question_type}))})});return{exam:Yo,questionList:_o}};var Ha=e(3033),us=Object.defineProperty,co=Object.getOwnPropertySymbols,Va=Object.prototype.hasOwnProperty,Vt=Object.prototype.propertyIsEnumerable,kt=(C,O,L)=>O in C?us(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Pa=(C,O)=>{for(var L in O||(O={}))Va.call(O,L)&&kt(C,L,O[L]);if(co)for(var L of co(O))Vt.call(O,L)&&kt(C,L,O[L]);return C},_n={namespace:"paperlibrary",state:{paperData:void 0,disciplinesData:void 0,teachGroupData:void 0,courseOptions:[],actionTabs:{key:"",params:{}}},effects:{*postExistCourse({payload:C},{call:O,put:L}){return yield O(ia.a2,C)},*postCheckExaminationBanks({payload:C},{call:O,put:L}){return yield O(ia.q$,C)},*postPaperlibraryCopy({payload:C},{call:O,put:L}){return yield O(ia.ID,C)},*getDisciplines({payload:C},{call:O,put:L}){const _e=yield O(ia.d1,C);return yield L({type:"save",payload:{disciplinesData:Pa({},_e)}}),_e},*getCustomDisciplines({payload:C},{call:O,put:L}){const _e=yield O(ia.ar,C);return yield L({type:"save",payload:{disciplinesData:Pa({},_e)}}),_e},*getEditDisciplines({payload:C},{call:O,put:L}){const _e=yield O(ia.d1,C),Oe=_e==null?void 0:_e.disciplines,dn=(0,Ha.L)(Oe);return yield L({type:"save",payload:{courseOptions:dn,disciplinesData:Pa({},_e)}}),_e},*getTeachGroupData({payload:C},{call:O,put:L}){const _e=yield O(ia.Dm,C);return yield L({type:"save",payload:{teachGroupData:Pa({},_e)}}),_e},*getPaperData({payload:C},{call:O,put:L}){const _e=yield O(ia.iT,C),Oe=yield O(ia.cV,C),dn=qs(_e,Oe.data);return yield L({type:"save",payload:{paperData:dn}}),_e},*getPaperlibraryList({payload:C},{call:O,put:L}){return yield O(ia.Gd,C)},*setPublic({payload:C},{call:O,put:L}){return yield O(ia.DF,C)},*handleDelete({payload:C},{call:O,put:L}){return yield O(ia.fn,C)},*getCourseList({payload:C},{call:O,put:L}){return yield O(ia.tS,C)},*postBatchSendToCourse({payload:C},{call:O,put:L}){return yield O(ia.lc,C)},*sendToClass({payload:C},{call:O,put:L}){return yield O(ia.kp,C)},*adjustPosition({payload:C},{call:O,put:L}){return yield O(ia.qN,C)},*setScore({payload:C},{call:O,put:L}){return yield O(ia.ts,C)},*handleDeleteEditQuestion({payload:C},{call:O,put:L}){return yield O(ia.NC,C)},*batchSetScore({payload:C},{call:O,put:L}){return yield O(ia.YP,C)},*batchDelete({payload:C},{call:O,put:L}){return yield O(ia.Hm,C)},*updatePaper({payload:C},{call:O,put:L}){return yield O(ia.jK,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Pa({},C)}})}},reducers:{save(C,O){return Pa(Pa({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},En=Object.defineProperty,Ze=Object.getOwnPropertySymbols,jt=Object.prototype.hasOwnProperty,wr=Object.prototype.propertyIsEnumerable,Rr=(C,O,L)=>O in C?En(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Jr=(C,O)=>{for(var L in O||(O={}))jt.call(O,L)&&Rr(C,L,O[L]);if(Ze)for(var L of Ze(O))wr.call(O,L)&&Rr(C,L,O[L]);return C},Xi={namespace:"newExercisePaper",state:{loading:!0,exerciseExportHeadData:{},tagDisciplineData:{},editData:{},actionTabs:{removeEventListenerExitScreen:!1}},effects:{*getExerciseExportHeadData({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(ia.Dq,C);return yield _e({type:"save",payload:{exerciseExportHeadData:Jr({},Oe)}}),Oe},*editExercise({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(ia.Di,C);return yield _e({type:"save",payload:{editData:Jr({},Oe)}}),Oe},*getTagDiscipline({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(He.YY,C);return yield _e({type:"save",payload:{tagDisciplineData:Jr({},Oe)}}),Oe},*editExerciseQuestion({payload:C,callback:O},{call:L,put:_e}){return yield L(ia.oF,C)},*addExerciseQuestion({payload:C,callback:O},{call:L,put:_e}){return yield L(ia.oF,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Jr({},C)}})}},reducers:{save(C,O){return Jr(Jr({},C),O.payload)},modifyTitle(C,O){const L=(0,Ge.cloneDeep)(C);return L.editData.exercise.exercise_name=O.payload,L}},subscriptions:{setup({dispatch:C,history:O}){}}},ui=e(49320),wo=Object.defineProperty,fa=Object.getOwnPropertySymbols,ns=Object.prototype.hasOwnProperty,Xa=Object.prototype.propertyIsEnumerable,Es=(C,O,L)=>O in C?wo(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,go=(C,O)=>{for(var L in O||(O={}))ns.call(O,L)&&Es(C,L,O[L]);if(fa)for(var L of fa(O))Xa.call(O,L)&&Es(C,L,O[L]);return C},yu={namespace:"pathsDetail",state:{detail:{},rightData:{},Courses:{},stageData:[],StageChildrenData:{},discusses:{},actionTabs:{key:"",params:{}},isShowSchedule:!1,keywords:"",stage_id:null,visibleType:"All",editKey:-1},effects:{*getDiscusses({payload:C},{call:O,put:L}){const _e=yield O(ui.Ax,C);yield L({type:"save",payload:{discusses:go({},_e)}})},*getPathsDetail({payload:C},{call:O,put:L}){const _e=yield O(ui.lk,C);return yield L({type:"save",payload:{detail:go({},_e)}}),_e},*getCourseDetail({payload:C},{call:O,put:L}){const _e=yield O(ui.Sp,C);return yield L({type:"save",payload:{detail:go({},_e)}}),_e},*getRightData({payload:C},{call:O,put:L}){const _e=yield O(ui.AQ,C);yield L({type:"save",payload:{rightData:go({},_e)}})},*getCoureses({payload:C},{call:O,put:L}){const _e=yield O(ui.ue,C);yield L({type:"save",payload:{Courses:go({},_e)}})},*getStageChildrenData({payload:C},{call:O,put:L}){const _e=yield O(ui.w4,C);return yield L({type:"save",payload:{StageChildrenData:_e}}),_e},*getStageData({payload:C},{call:O,put:L}){var _e,Oe,dn;let Pn=null;return C!=null&&C.show_course_section?Pn=yield O(ui.yN,C):Pn=yield O(ui.p,C),yield L({type:"save",payload:{stageData:((_e=Pn==null?void 0:Pn.data)==null?void 0:_e.stages)||(Pn==null?void 0:Pn.stages)||[],isShowSchedule:((Oe=Pn==null?void 0:Pn.data)==null?void 0:Oe.is_show_schedule)||(Pn==null?void 0:Pn.is_show_schedule)||!1}}),(dn=Pn==null?void 0:Pn.data)==null?void 0:dn.stages},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:go({},C)}})}},reducers:{save(C,O){return go(go({},C),O.payload)}}},Ve=Object.defineProperty,Z=Object.getOwnPropertySymbols,Y=Object.prototype.hasOwnProperty,te=Object.prototype.propertyIsEnumerable,he=(C,O,L)=>O in C?Ve(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,we=(C,O)=>{for(var L in O||(O={}))Y.call(O,L)&&he(C,L,O[L]);if(Z)for(var L of Z(O))te.call(O,L)&&he(C,L,O[L]);return C},wt={namespace:"pathsList",state:{name:"",loading:!0,actionTabs:{key:"",params:{}},listParams:{sort:"desc",order:"new",page:1,limit:16,keyword:""}},effects:{*getCourse({payload:C},{call:O,put:L}){const _e=C,Oe=yield O(ui.tS,C);return yield L({type:"save",payload:we({listParams:_e},Oe)}),Oe},*getMenus({payload:C},{call:O,put:L}){const _e=yield O(ui.fh,C);yield L({type:"save",payload:{menus:_e}})},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:we({},C)}})},*clearListParams({payload:C},{call:O,put:L}){yield L({type:"save",payload:{listParams:{sort:"desc",order:"new",page:1,limit:16,keyword:""}}})}},reducers:{save(C,O){return we(we({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},$t=Object.defineProperty,cr=Object.getOwnPropertySymbols,Ir=Object.prototype.hasOwnProperty,Yr=Object.prototype.propertyIsEnumerable,fn=(C,O,L)=>O in C?$t(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Cn=(C,O)=>{for(var L in O||(O={}))Ir.call(O,L)&&fn(C,L,O[L]);if(cr)for(var L of cr(O))Yr.call(O,L)&&fn(C,L,O[L]);return C},qn={namespace:"newCourse",state:{actionTabs:{key:"",params:{}}},effects:{*editCourse({payload:C},{call:O,put:L}){return yield O(ui.tu,C)},*submitCourse({payload:C},{call:O,put:L}){return yield O(ui.pU,C)},*getEditCourseData({payload:C},{call:O,put:L}){return yield O(ui.mQ,C)},*getSchoolOption({payload:C},{call:O,put:L}){return yield O(ui.GY,C)},*appplySchool({payload:C},{call:O,put:L}){return yield O(ui.bz,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Cn({},C)}})}},reducers:{save(C,O){return Cn(Cn({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Di=Object.defineProperty,Fi=Object.defineProperties,aa=Object.getOwnPropertyDescriptors,ba=Object.getOwnPropertySymbols,Ts=Object.prototype.hasOwnProperty,Fs=Object.prototype.propertyIsEnumerable,js=(C,O,L)=>O in C?Di(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,vs=(C,O)=>{for(var L in O||(O={}))Ts.call(O,L)&&js(C,L,O[L]);if(ba)for(var L of ba(O))Fs.call(O,L)&&js(C,L,O[L]);return C},Oa=(C,O)=>Fi(C,aa(O)),ws={namespace:"pathsOverview",state:{},effects:{*getSubjectUseInfos({payload:C},{call:O,put:L}){const _e=yield O(ui.nq,C);yield L({type:"save",payload:{SubjectUseInfos:_e}})},*getRankList({payload:C},{call:O,put:L}){const _e=yield O(ui.Fg,C);yield L({type:"save",payload:{RankList:Oa(vs({},_e),{learn_list:[{rank:"\u6392\u540D",name:"\u5B9E\u8DF5\u8BFE\u7A0B\u540D\u79F0",data:"\u5B66\u4E60\u4EBA\u6570"},...(_e==null?void 0:_e.learn_list)||[]]})}})},*getStatisticsBody({payload:C},{call:O,put:L}){const _e=yield O(ui.Gz,C);yield L({type:"save",payload:{SBody:_e}})},*getOnlineCount({payload:C},{call:O,put:L}){const _e=yield O(ui.hS,C);yield L({type:"save",payload:{OnlineCount:_e==null?void 0:_e.data}})},*getStatisticsHeader({payload:C},{call:O,put:L}){const _e=yield O(ui.Hl,C);yield L({type:"save",payload:{SHeader:_e}})}},reducers:{save(C,O){return vs(vs({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},yr=e(11517),ko=Object.defineProperty,Uo=Object.getOwnPropertySymbols,Su=Object.prototype.hasOwnProperty,Ws=Object.prototype.propertyIsEnumerable,qo=(C,O,L)=>O in C?ko(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,yo=(C,O)=>{for(var L in O||(O={}))Su.call(O,L)&&qo(C,L,O[L]);if(Uo)for(var L of Uo(O))Ws.call(O,L)&&qo(C,L,O[L]);return C},wl={namespace:"problemset",state:{disciplinesData:void 0,courseOptions:[],basketData:void 0,editData:void 0,groupData:void 0,teachGroupData:void 0,actionTabs:{key:"",params:{}},itemBanks:{},groupfolderList:{}},effects:{*getGroup({payload:C},{call:O,put:L}){const _e=yield O(yr.ex,C);return yield L({type:"save",payload:{groupfolderList:_e}}),_e},*getDisciplines({payload:C},{call:O,put:L}){const _e=yield O(yr.d1,C);return yield L({type:"save",payload:{disciplinesData:yo({},_e)}}),_e},*getEditDisciplines({payload:C},{call:O,put:L}){const _e=yield O(yr.d1,C),Oe=_e==null?void 0:_e.disciplines,dn=(0,Ha.L)(Oe);return yield L({type:"save",payload:{courseOptions:dn,disciplinesData:yo({},_e)}}),_e},*getBasketList({payload:C},{call:O,put:L}){const _e=yield O(yr.Qj,C);return yield L({type:"save",payload:{basketData:yo({},_e)}}),_e},*getTeachGroupData({payload:C},{call:O,put:L}){const _e=yield O(yr.Dm,C);return yield L({type:"save",payload:{teachGroupData:yo({},_e)}}),_e},*getEditData({payload:C},{call:O,put:L}){const _e=yield O(yr.FG,C);return yield L({type:"save",payload:{editData:yo({},_e)}}),_e},*getEditDataBprogram({payload:C},{call:O,put:L}){const _e=yield O(yr.Bo,C);return yield L({type:"save",payload:{editData:yo({},_e)}}),_e},*getGroupData({payload:C},{call:O,put:L}){const _e=yield O(yr.hI,C);return yield L({type:"save",payload:{groupData:yo({},_e)}}),_e},*getItemBanks({payload:C},{call:O,put:L}){const _e=yield O(yr.Of,C);return yield L({type:"save",payload:{itemBanks:yo({},_e)}}),_e},*setPrivate({payload:C},{call:O,put:L}){return yield O(yr.Pl,C)},*revokePublish({payload:C},{call:O,put:L}){return yield O(yr.IJ,C)},*setPublic({payload:C},{call:O,put:L}){return yield O(yr.DF,C)},*handleDelete({payload:C},{call:O,put:L}){return yield O(yr.fn,C)},*startExperience({payload:C},{call:O,put:L}){return yield O(yr.Bd,C)},*cancel({payload:C},{call:O,put:L}){return yield O(yr.al,C)},*select({payload:C},{call:O,put:L}){return yield O(yr.Ys,C)},*examUnselectAll({payload:C},{call:O,put:L}){return yield O(yr.rV,C)},*basketDelete({payload:C},{call:O,put:L}){return yield O(yr.x5,C)},*unselectAll({payload:C},{call:O,put:L}){return yield O(yr.HF,C)},*addKnowledge({payload:C},{call:O,put:L}){return yield O(yr.U6,C)},*editProblemset({payload:C},{call:O,put:L}){return yield O(yr.Wk,C)},*addProblemset({payload:C},{call:O,put:L}){return yield O(yr.Mr,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:yo({},C)}})}},reducers:{save(C,O){return yo(yo({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Sl=Object.defineProperty,nl=Object.getOwnPropertySymbols,Hs=Object.prototype.hasOwnProperty,Gu=Object.prototype.propertyIsEnumerable,Ku=(C,O,L)=>O in C?Sl(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ro=(C,O)=>{for(var L in O||(O={}))Hs.call(O,L)&&Ku(C,L,O[L]);if(nl)for(var L of nl(O))Gu.call(O,L)&&Ku(C,L,O[L]);return C},zl={namespace:"problemsetPreview",state:{disciplinesData:void 0,courseOptions:[],paperData:void 0,actionTabs:{key:"",params:{}}},effects:{*getPaperData({payload:C},{call:O,put:L}){const _e=yield O(yr.iT,C),Oe=(0,Ha.r)(_e);return yield L({type:"save",payload:{paperData:Oe}}),_e},*getEditDisciplines({payload:C},{call:O,put:L}){const _e=yield O(yr.d1,C),Oe=_e==null?void 0:_e.disciplines,dn=(0,Ha.L)(Oe);return yield L({type:"save",payload:{courseOptions:dn,disciplinesData:Ro({},_e)}}),_e},*setScore({payload:C},{call:O,put:L}){return yield O(yr.ts,C)},*handleDelete({payload:C},{call:O,put:L}){return yield O(yr.Cn,C)},*batchSetScore({payload:C},{call:O,put:L}){return yield O(yr.YP,C)},*batchDelete({payload:C},{call:O,put:L}){return yield O(yr.Hm,C)},*adjustPosition({payload:C},{call:O,put:L}){return yield O(yr.qN,C)},*newPreviewProblemset({payload:C},{call:O,put:L}){return yield O(yr.et,C)},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Ro({},C)}})}},reducers:{save(C,O){return Ro(Ro({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},bu=e(37822),Zl=Object.defineProperty,So=Object.getOwnPropertySymbols,au=Object.prototype.hasOwnProperty,hl=Object.prototype.propertyIsEnumerable,Wl=(C,O,L)=>O in C?Zl(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,tu=(C,O)=>{for(var L in O||(O={}))au.call(O,L)&&Wl(C,L,O[L]);if(So)for(var L of So(O))hl.call(O,L)&&Wl(C,L,O[L]);return C},Gl={namespace:"restful",state:{restful:void 0,restfulDetail:{},actionTabs:{key:"",params:{}}},effects:{*getRestful({payload:C},{call:O,put:L}){const _e=yield O(bu.Go,C);return yield L({type:"save",payload:{restful:tu({},_e)}}),_e},*getRestfulDetail({payload:C},{call:O,put:L}){const _e=yield O(bu.H5,C);return yield L({type:"save",payload:{restfulDetail:tu({},(_e==null?void 0:_e.data)||{})}}),(_e==null?void 0:_e.data)||{}},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:tu({},C)}})}},reducers:{save(C,O){return tu(tu({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},li=e(60979);const uc=(C={})=>{var O,L,_e,Oe,dn,Pn;return[{name:"\u5185\u5BB9\u5BA1\u6838\u60C5\u51B5",id:"Content",status:(O=C==null?void 0:C.content_info)==null?void 0:O.status,username:(L=C==null?void 0:C.content_info)==null?void 0:L.username,time:(_e=C==null?void 0:C.content_info)==null?void 0:_e.time},{name:"\u6027\u80FD\u5BA1\u6838\u60C5\u51B5",id:"Performance",status:(Oe=C==null?void 0:C.perference_info)==null?void 0:Oe.status,username:(dn=C==null?void 0:C.perference_info)==null?void 0:dn.username,time:(Pn=C==null?void 0:C.perference_info)==null?void 0:Pn.time}]};var ho=Object.defineProperty,Hc=Object.defineProperties,$u=Object.getOwnPropertyDescriptors,pl=Object.getOwnPropertySymbols,il=Object.prototype.hasOwnProperty,Ac=Object.prototype.propertyIsEnumerable,Gc=(C,O,L)=>O in C?ho(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ao=(C,O)=>{for(var L in O||(O={}))il.call(O,L)&&Gc(C,L,O[L]);if(pl)for(var L of pl(O))Ac.call(O,L)&&Gc(C,L,O[L]);return C},Kc=(C,O)=>Hc(C,$u(O)),lc={namespace:"shixunsDetail",state:{detail:void 0,rightData:void 0,challenges:{is_jupyter:!0,is_jupyter_lab:!0},auditSituationData:void 0,setting:void 0,challengesNew:{},challengesEdit:{},editChallengesQuestion:{},fileContent:{},hasStartedEnv:!1,repository:{},mirrorApplies:{},infoWithJupyterLab:{},actionTabs:{key:"",params:{}}},effects:{*getShixunsDetail({payload:C},{call:O,put:L}){const _e=yield O(li.Po,C);return yield L({type:"save",payload:{detail:Ao({},_e)}}),_e},*getMirrorApplies({payload:C},{call:O,put:L}){const _e=yield O(li.tX,C);return yield L({type:"save",payload:{mirrorApplies:Ao({},(_e==null?void 0:_e.data)||{})}}),_e},*getRightData({payload:C},{call:O,put:L}){const _e=yield O(li.AQ,C);yield L({type:"save",payload:{rightData:Ao({},_e)}})},*getChallengesData({payload:C},{call:O,put:L}){const _e=yield O(li.n5,C);yield L({type:"save",payload:{challenges:Ao({},_e)}})},*saveCopyForExercise({payload:C},{call:O,put:L}){return yield O(li.FB,C)},*execJupyter({payload:C},{call:O,put:L}){return yield O(li.BK,C)},*execShixun({payload:C},{call:O,put:L}){const _e=yield O(li.Ir,C);return(_e==null?void 0:_e.status)===-3&&(0,fs.eF)(),_e},*openChallenge({payload:C},{call:O,put:L}){return yield O(li.dK,C)},*challengeMoveUp({payload:C},{call:O,put:L}){return yield O(li.zD,C)},*challengeMoveDown({payload:C},{call:O,put:L}){return yield O(li.hn,C)},*cancelCollect({payload:C},{call:O,put:L}){return yield O(li.rs,C)},*collect({payload:C},{call:O,put:L}){return yield O(li.KM,C)},*searchUserCourses({payload:C},{call:O,put:L}){return yield O(li._7,C)},*sendToCourse({payload:C},{call:O,put:L}){return yield O(li.Q,C)},*cancelRelease({payload:C},{call:O,put:L}){return yield O(li.Ne,C)},*cancelPublic({payload:C},{call:O,put:L}){return yield O(li.Er,C)},*applyPublic({payload:C},{call:O,put:L}){return yield O(li.WO,C)},*release({payload:C},{call:O,put:L}){return yield O(li.Ar,C)},*updateAuditSituation({payload:C},{call:O,put:L}){return yield O(li.LP,C)},*getCollaboratorsData({payload:C},{call:O,put:L}){return yield O(li.j8,C)},*addCollaborator({payload:C},{call:O,put:L}){return yield O(li.OV,C)},*addTeachGroupMember({payload:C},{call:O,put:L}){return yield O(li.l3,C)},*getChangeManager({payload:C},{call:O,put:L}){return yield O(li.P2,C)},*changeManager({payload:C},{call:O,put:L}){return yield O(li.X$,C)},*deleteCollaborators({payload:C},{call:O,put:L}){return yield O(li.xk,C)},*getRankingList({payload:C},{call:O,put:L}){return yield O(li.E4,C)},*getMirrorScript({payload:C},{call:O,put:L}){return yield O(li.Z2,C)},*getScriptContent({payload:C},{call:O,put:L}){return yield O(li.Bj,C)},*getCustomScript({payload:C},{call:O,put:L}){return yield O(li.Wi,C)},*updateSettingBasicInfo({payload:C},{call:O,put:L}){return yield O(li.ZO,C)},*getShixunQuote({payload:C},{call:O,put:L}){return yield O(li.Gr,C)},*deleteShixun({payload:C},{call:O,put:L}){return yield O(li.Ps,C)},*permanentClose({payload:C},{call:O,put:L}){return yield O(li.U9,C)},*getDepartments({payload:C},{call:O,put:L}){return yield O(li.Ql,C)},*updatePermissionSetting({payload:C},{call:O,put:L}){return yield O(li.aH,C)},*updateLearnSetting({payload:C},{call:O,put:L}){return yield O(li.yE,C)},*updateSetting({payload:C},{call:O,put:L}){return yield O(li.m7,C)},*getSetData({payload:C},{call:O,put:L}){return yield O(li.U0,C)},*deleteDataSet({payload:C},{call:O,put:L}){return yield O(li.uo,C)},*deleteGitFile({payload:C},{call:O,put:L}){return yield O(li.sr,C)},*deleteGitFiles({payload:C},{call:O,put:L}){return yield O(li.p0,C)},*moveGitFile({payload:C},{call:O,put:L}){return yield O(li.IT,C)},*moveGitFiles({payload:C},{call:O,put:L}){return yield O(li.t2,C)},*getRepository({payload:C},{call:O,put:L}){const _e=yield O(li.Ag,C);return yield L({type:"save",payload:{repository:Ao({},_e)}}),Ao({},_e)},*getRepositorys({payload:C},{call:O,put:L}){const _e=yield O(li.Wl,C);return yield L({type:"save",payload:{repository:Ao({},_e)}}),Ao({},_e)},*getRepositorys({payload:C},{call:O,put:L}){const _e=yield O(li.Wl,C);return yield L({type:"save",payload:{repository:Ao({},_e)}}),Ao({},_e)},*getSecretRepository({payload:C},{call:O,put:L}){const _e=yield O(li.w,C);return yield L({type:"save",payload:{secretRepository:Ao({},_e)}}),_e},*addRepositoryFile({payload:C},{call:O,put:L}){return yield O(li.v3,C)},*addRepositoryFiles({payload:C},{call:O,put:L}){return yield O(li.fL,C)},*getRepositoryCommit({payload:C},{call:O,put:L}){return yield O(li.Je,C)},*getFileContent({payload:C},{call:O,put:L}){const _e=yield O(li.LK,C);return yield L({type:"save",payload:{fileContent:Kc(Ao({},_e),{params:C})}}),_e},*getFileContents({payload:C},{call:O,put:L}){const _e=yield O(li.nu,C);return yield L({type:"save",payload:{fileContent:Kc(Ao({},_e),{params:C})}}),_e},*updateRepositoryFile({payload:C},{call:O,put:L}){return yield O(li.kF,C)},*updateRepositoryFiles({payload:C},{call:O,put:L}){return yield O(li.jq,C)},*uploadGitFolder({payload:C},{call:O,put:L}){return yield O(li.Op,C)},*updateCollaboratorEditable({payload:C},{call:O,put:L}){return yield O(li.Dz,C)},*getSettingsData({payload:C},{call:O,put:L}){const _e=yield O(li.DC,C);yield L({type:"save",payload:{setting:Ao({},_e)}})},*getChallengesNew({payload:C},{call:O,put:L}){const _e=yield O(li.km,C);yield L({type:"save",payload:{challengesNew:Ao({},_e)}})},*getChallengesEdit({payload:C},{call:O,put:L}){const _e=yield O(li.q0,C);return yield L({type:"save",payload:{challengesEdit:Ao({},_e)}}),_e},*getAuditSituationData({payload:C},{call:O,put:L}){const _e=yield O(li.GI,C),Oe=uc(_e);yield L({type:"save",payload:{auditSituationData:Oe}})},*getEditChallengesQuestion({payload:C},{call:O,put:L}){const _e=yield O(li.UQ,C);return yield L({type:"save",payload:{editChallengesQuestion:_e}}),_e},*getInfoWithJupyterLab({payload:C},{call:O,put:L}){const _e=yield O(li.mI,C);return yield L({type:"save",payload:{infoWithJupyterLab:_e}}),_e},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Ao({},C)}})}},reducers:{save(C,O){return console.log("reducers:",C,O),Ao(Ao({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Dl=Object.defineProperty,Vc=Object.getOwnPropertySymbols,kl=Object.prototype.hasOwnProperty,Ou=Object.prototype.propertyIsEnumerable,Vl=(C,O,L)=>O in C?Dl(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,mo=(C,O)=>{for(var L in O||(O={}))kl.call(O,L)&&Vl(C,L,O[L]);if(Vc)for(var L of Vc(O))Ou.call(O,L)&&Vl(C,L,O[L]);return C},fu={namespace:"shixunsList",state:{name:"",loading:!0,listParams:{sort:"desc",order_by:"new",page:1,limit:16,keyword:"",status:0,diff:0,hideme:!1}},effects:{*getShixuns({payload:C},{call:O,put:L}){const _e=yield O(li.he,C),Oe=mo({},C);return yield L({type:"save",payload:mo({listParams:Oe},_e)}),_e},*getMenus({payload:C},{call:O,put:L}){var _e;const Oe=yield O(li.I_,C);(_e=Oe==null?void 0:Oe.disciplines)==null||_e.map(dn=>(dn.sub_repertoires=dn.sub_disciplines,dn)),yield L({type:"save",payload:{menus:[...(Oe==null?void 0:Oe.disciplines)||[]]}})},*clearListParams({payload:C},{call:O,put:L}){yield L({type:"save",payload:{listParams:{sort:"desc",order_by:"new",page:1,limit:16,keyword:"",status:0,diff:0,hideme:!1}}})}},reducers:{save(C,O){return mo(mo({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Yl=Object.defineProperty,Al=Object.getOwnPropertySymbols,zu=Object.prototype.hasOwnProperty,du=Object.prototype.propertyIsEnumerable,pf=(C,O,L)=>O in C?Yl(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Du=(C,O)=>{for(var L in O||(O={}))zu.call(O,L)&&pf(C,L,O[L]);if(Al)for(var L of Al(O))du.call(O,L)&&pf(C,L,O[L]);return C},Vu={namespace:"newShixuns",state:{newData:{},actionTabs:{key:"",params:{}},environmentData:{}},effects:{*getNewShixunsData({payload:C},{call:O,put:L}){const _e=yield O(li.b8,C);return yield L({type:"save",payload:{newData:Du({},_e)}}),_e},*deleteAttachment({payload:C},{call:O,put:L}){return yield O(li.OW,C)},*applyShixunMirror({payload:C},{call:O,put:L}){return yield O(li.EH,C)},*submitShixuns({payload:C},{call:O,put:L}){return yield O(li.eX,C)},*getShixunsJupyterLab({payload:C},{call:O,put:L}){const _e=yield O(li.Gu,C);return yield L({type:"save",payload:{newData:Du({},_e)}}),_e},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Du({},C)}})},*getEnvironmentData({payload:C},{call:O,put:L}){const _e=yield O(li.K,C);return console.log(_e,"response"),yield L({type:"save",payload:{environmentData:Du({},_e.data)}}),_e}},reducers:{save(C,O){return Du(Du({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){}}},Tc=Object.defineProperty,Rl=Object.getOwnPropertySymbols,Ta=Object.prototype.hasOwnProperty,mf=Object.prototype.propertyIsEnumerable,Yc=(C,O,L)=>O in C?Tc(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,ml=(C,O)=>{for(var L in O||(O={}))Ta.call(O,L)&&Yc(C,L,O[L]);if(Rl)for(var L of Rl(O))mf.call(O,L)&&Yc(C,L,O[L]);return C},Df={namespace:"shixunsOverview",state:{},effects:{*getShixunUseInfos({payload:C},{call:O,put:L}){const _e=yield O(li.e,C);yield L({type:"save",payload:{ShixunUseInfos:_e}})},*getRankList({payload:C},{call:O,put:L}){const _e=yield O(li.Fg,C);yield L({type:"save",payload:{RankList:{user_list:[{rank:"\u6392\u540D",name:"\u59D3\u540D",role:"\u89D2\u8272",student_id:"\u5B66\u53F7/\u5DE5\u53F7",num:"\u901A\u8FC7\u5173\u5361\u6570"},...(_e==null?void 0:_e.user_list)||[]],learn_list:[{rank:"\u6392\u540D",name:"\u5B9E\u8DF5\u9879\u76EE\u540D\u79F0",num:"\u5B66\u4E60\u4EBA\u6570"},...(_e==null?void 0:_e.learn_list)||[]],clearance_list:[{rank:"\u6392\u540D",name:"\u5B9E\u8DF5\u9879\u76EE\u540D\u79F0",num:"\u901A\u5173\u6570"},...(_e==null?void 0:_e.clearance_list)||[]],quote_list:[{rank:"\u6392\u540D",name:"\u5B9E\u8DF5\u9879\u76EE\u540D\u79F0",num:"\u5F15\u7528\u6B21\u6570"},...(_e==null?void 0:_e.quote_list)||[]]}}})},*getStatisticsBody({payload:C},{call:O,put:L}){const _e=yield O(li.Gz,C);yield L({type:"save",payload:{SBody:_e}})},*getOnlineCount({payload:C},{call:O,put:L}){const _e=yield O(li.hS,C);yield L({type:"save",payload:{OnlineCount:_e==null?void 0:_e.data}})},*getStatisticsHeader({payload:C},{call:O,put:L}){const _e=yield O(li.Hl,C);yield L({type:"save",payload:{SHeader:_e}})}},reducers:{save(C,O){return ml(ml({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Cc=(C,O,L)=>new Promise((_e,Oe)=>{var dn=Mi=>{try{pn(L.next(Mi))}catch(ds){Oe(ds)}},Pn=Mi=>{try{pn(L.throw(Mi))}catch(ds){Oe(ds)}},pn=Mi=>Mi.done?_e(Mi.value):Promise.resolve(Mi.value).then(dn,Pn);pn((L=L.apply(C,O)).next())});function ku(C){return Cc(this,null,function*(){return(0,Ra.ZP)("/api/shixuns/new.json",{method:"Get",params:C})})}function _f(C){return Cc(this,null,function*(){return(0,Ra.ZP)(`/api/shixuns/${C.id}/required_status.json`,{method:"Get",params:{}})})}var Ic=Object.defineProperty,Ql=Object.defineProperties,vf=Object.getOwnPropertyDescriptors,Pc=Object.getOwnPropertySymbols,Ru=Object.prototype.hasOwnProperty,_l=Object.prototype.propertyIsEnumerable,Oc=(C,O,L)=>O in C?Ic(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,vl=(C,O)=>{for(var L in O||(O={}))Ru.call(O,L)&&Oc(C,L,O[L]);if(Pc)for(var L of Pc(O))_l.call(O,L)&&Oc(C,L,O[L]);return C},Xc=(C,O)=>Ql(C,vf(O)),cc={namespace:"practiceSetting",state:{data:{},is_published:!0,updateIndex:1,id:"",questionName:"",base_info_warning:!1,challenges_warning:!1,repository_warning:!1,mirror_warning:!1,service_warning:!1,selectQuestionParams:{},newQuestion:null,user_name:"",user_image_url:"",title:"",windows_vnc:!0,isExistComplete:!1,sideBar:{tabsActive:"",selectPath:"",confirmLeave:!1}},effects:{*setParams({payload:C},{call:O,put:L}){yield L({type:"save",payload:vl({},C)})},*getTestData({payload:C},{call:O,put:L}){const _e=yield O(ku,C);yield L({type:"save",payload:{data:_e}})},*setUpdateIndex({payload:C},{call:O,put:L}){yield L({type:"save",payload:{updateIndex:Math.random()}})},*getCommonData({payload:C},{call:O,put:L}){const _e=yield O(_f,C);yield L({type:"save",payload:vl({},_e.data)})},*setSideBarTabs({payload:C},{call:O,put:L}){yield L({type:"sideBar",payload:vl({},C)})}},reducers:{save(C,O){return vl(vl({},C),O.payload)},sideBar(C,O){return Xc(vl({},C),{sideBar:vl(vl({},C.sideBar),O.payload)})}},subscriptions:{setup({dispatch:C,history:O}){}}},To=e(89540),Dc=Object.defineProperty,Jc=Object.getOwnPropertySymbols,gl=Object.prototype.hasOwnProperty,Zu=Object.prototype.propertyIsEnumerable,Co=(C,O,L)=>O in C?Dc(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Ll=(C,O)=>{for(var L in O||(O={}))gl.call(O,L)&&Co(C,L,O[L]);if(Jc)for(var L of Jc(O))Zu.call(O,L)&&Co(C,L,O[L]);return C},kc={namespace:"userDetail",state:{systemUpdate:void 0,homepageInfo:void 0,homeworkBanksDetail:{},actionTabs:{key:"",params:{}}},effects:{*getHomeworkBanksDetail({payload:C},{call:O,put:L}){const _e=yield O(To.JJ,C);return yield L({type:"save",payload:{homeworkBanksDetail:Ll({},_e)}}),_e},*getSystemUpdate({payload:C},{call:O,put:L}){const _e=yield O(To.n0,C);return yield L({type:"save",payload:{systemUpdate:Ll({},_e)}}),_e},*getHomepageInfo({payload:C},{call:O,put:L}){const _e=yield O(To.DA,C);return yield L({type:"save",payload:{homepageInfo:Ll({},_e)}}),_e},*signed({payload:C},{call:O,put:L}){return yield O(To.qN,C)},*getCourses({payload:C},{call:O,put:L}){return yield O(To.Ho,C)},*getShixuns({payload:C},{call:O,put:L}){return yield O(To.rV,C)},*getPaths({payload:C},{call:O,put:L}){return yield O(To.w3,C)},*getProjects({payload:C},{call:O,put:L}){return yield O(To.mW,C)},*getVideos({payload:C},{call:O,put:L}){return yield O(To.WY,C)},*getReviewVideos({payload:C},{call:O,put:L}){return yield O(To.Qx,C)},*deleteVideo({payload:C},{call:O,put:L}){return yield O(To.FM,C)},*getQuestionBanks({payload:C},{call:O,put:L}){return yield O(To.ai,C)},*topicsSetPublic({payload:C},{call:O,put:L}){return yield O(To.Cx,C)},*topicsDelete({payload:C},{call:O,put:L}){return yield O(To.WS,C)},*topicGetCourseList({payload:C},{call:O,put:L}){return yield O(To.gI,C)},*topicSendToClass({payload:C},{call:O,put:L}){return C.object_type==="videos"?yield O(To.Fn,C):yield O(To.Ef,C)},*logWatchHistory({payload:C},{call:O,put:L}){const _e=yield O(To.lO,C);return _e==null?void 0:_e.log_id},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Ll({},C)}})}},reducers:{save(C,O){return Ll(Ll({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Yu=Object.defineProperty,Xs=Object.getOwnPropertySymbols,bo=Object.prototype.hasOwnProperty,Lu=Object.prototype.propertyIsEnumerable,Ue=(C,O,L)=>O in C?Yu(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Qu=(C,O)=>{for(var L in O||(O={}))bo.call(O,L)&&Ue(C,L,O[L]);if(Xs)for(var L of Xs(O))Lu.call(O,L)&&Ue(C,L,O[L]);return C},Au=(C,O)=>{var L={};for(var _e in C)bo.call(C,_e)&&O.indexOf(_e)<0&&(L[_e]=C[_e]);if(C!=null&&Xs)for(var _e of Xs(C))O.indexOf(_e)<0&&Lu.call(C,_e)&&(L[_e]=C[_e]);return L},hu={namespace:"user",state:{name:"\u7528\u6237\u767B\u5F55\u6A21\u5757",showPopLogin:!1,showClosable:!1,bindAccountModalVisible:!1,userInfoForBindAccountModal:{},loginInfo:{login:"",password:""},userInfo:{},navigationInfo:{},loading:!0,actionTabs:{key:"",params:{},phone:""}},effects:{*login({payload:C},{call:O,put:L}){const _e=C,{to:Oe}=_e,dn=Au(_e,["to"]);if(!(yield O(To.Es,dn)).status)try{Oe?f.history.replace(Oe):location.reload()}catch(pn){}},*showPopLogin({payload:C},{put:O}){yield O({type:"save",payload:{showPopLogin:C.showPopLogin,showClosable:C.showClosable}})},*setBindAccountModal({payload:C},{put:O}){yield O({type:"save",payload:{bindAccountModalVisible:C.bindAccountModalVisible,userInfoForBindAccountModal:C.userInfoForBindAccountModal,loginInfo:C.loginInfo}})},*getUserInfo({payload:C},{call:O,put:L}){const _e=yield O(To.bG,Qu({},C));return localStorage.userInfo=JSON.stringify(_e),yield L({type:"save",payload:{userInfo:Qu({},_e)}}),_e},*getNavigationInfo({payload:C},{call:O,put:L}){const _e=yield O(To.x4,Qu({},C));yield L({type:"save",payload:{navigationInfo:Qu({},_e)}})},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Qu({},C)}})}},reducers:{save(C,O){return Qu(Qu({},C),O.payload)}}},Xu=e(24514),dc=Object.defineProperty,hc=Object.defineProperties,al=Object.getOwnPropertyDescriptors,sl=Object.getOwnPropertySymbols,Mu=Object.prototype.hasOwnProperty,yf=Object.prototype.propertyIsEnumerable,pc=(C,O,L)=>O in C?dc(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,Tu=(C,O)=>{for(var L in O||(O={}))Mu.call(O,L)&&pc(C,L,O[L]);if(sl)for(var L of sl(O))yf.call(O,L)&&pc(C,L,O[L]);return C},yl=(C,O)=>hc(C,al(O));const Fu=()=>{var C,O,L,_e,Oe,dn,Pn;let pn=window.location.href.split("/");if(!pn.includes("video"))return;let Mi=(C=pn[pn.length-1])==null?void 0:C.split("?")[0];Mi=Number(Mi);const ds=(L=(O=pn[pn.length-1])==null?void 0:O.split("?")[1])==null?void 0:L.split("=")[1];return((Oe=(_e=pn[pn.length-1])==null?void 0:_e.split("?")[1])==null?void 0:Oe.split("=")[0])==="subject_id"?{videoId:Mi,subject_id:ds}:((Pn=(dn=pn[pn.length-1])==null?void 0:dn.split("?")[1])==null?void 0:Pn.split("=")[0])==="new_video_id"?{videoId:Mi,new_video_id:ds}:{videoId:Mi,course_id:ds}};var qc={namespace:"videoDetail",state:{detail:{},actionTabs:{key:"",params:{}},videoTabs:{key:"",params:{}},stages:[],cust_seq:0,queryParams:Fu(),videoList:[],attachmentList:[],selectParams:{checkBoxValue:!1,radioValue:1},active:{}},effects:{*getVideoDetail({payload:C,callback:O},{call:L,put:_e}){const Oe=yield L(Gn.O2,C);return O?O(Oe):yield _e({type:"save",payload:{detail:Tu({},Oe)}}),Oe},*setVideoValue({payload:C},{call:O,put:L}){yield L({type:"save",payload:{detail:Tu({},C)}})},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:Tu({},C)}})},*setVideoTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{videoTabs:Tu({},C)}})},*setSelectValue({payload:C},{call:O,put:L}){yield L({type:"save",payload:{selectParams:Tu({},C)}})},*getStageData({payload:C},{call:O,put:L,select:_e}){const Oe=yield O(Gn.yN,C),dn=yield O(ui.lk,{id:C.subject_id}),{queryParams:Pn}=yield _e(is=>is.videoDetail),{stages:pn=[]}=Oe,Mi=[];let ds=[],Ga={};const Yo=is=>{is.forEach(Io=>{String(Io.id)===String(Pn.videoId)&&(Ga=Io),Io.item_type==="VideoItem"?Mi.push(Io):Io.item_type==="Attachment"&&ds.push(Io),Io.children&&Io.children.length&&Yo(Io.children)})};pn==null||pn.forEach(is=>{Yo(is.items)}),window.filterVideoSign=[...Mi],yield L({type:"save",payload:{stages:pn,active:Ga,cust_seq:dn.cust_seq,videoList:Mi,attachmentList:ds}})},*getVideoData({payload:C},{call:O,put:L,select:_e}){const Oe=yield O(Gn.fn,C),{categories:dn=[],coruse_videos:Pn=[]}=Oe;yield L({type:"save",payload:{stages:(dn==null?void 0:dn.length)>0?dn:[{coruse_videos:Pn,name:"\u672A\u5206\u914D\u76EE\u5F55"}]}})},*getCourseStageData({payload:C},{call:O,put:L,select:_e}){const Oe=yield O(Xu.R7,C),{queryParams:dn}=yield _e(Yo=>Yo.videoDetail),{stages:Pn}=Oe;let pn=[],Mi=[],ds={};const Ga=Yo=>{Yo.forEach(is=>{String(is.id)===String(dn.videoId)&&(ds=is),is.item_type==="VideoItem"?pn.push(is):is.item_type==="Attachment"&&Mi.push(is),is.children&&is.children.length&&Ga(is.children)})};Pn==null||Pn.forEach(Yo=>{Ga(Yo.items)}),window.filterVideoSign=[...pn],yield L({type:"save",payload:{active:ds,stages:Pn,cust_seq:!0,videoList:pn,attachmentList:Mi}})}},reducers:{save(C,O){return Tu(Tu({},C),O.payload)},handleListItemClick(C,O){const{videoList:L,attachmentList:_e}=C,Oe=O.payload.videoId||O.payload.attachmentId,dn=[...L,..._e].find(Pn=>`${Pn.id}`==`${Oe}`);return yl(Tu({},C),{active:dn,queryParams:Tu(Tu({},Fu()),O.payload)})}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}},Vo=e(35965),Ml=Object.defineProperty,Rc=Object.getOwnPropertySymbols,mc=Object.prototype.hasOwnProperty,_c=Object.prototype.propertyIsEnumerable,vc=(C,O,L)=>O in C?Ml(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,gc=(C,O)=>{for(var L in O||(O={}))mc.call(O,L)&&vc(C,L,O[L]);if(Rc)for(var L of Rc(O))_c.call(O,L)&&vc(C,L,O[L]);return C},Lc={namespace:"virtualSpaces",state:{showMenu:!0,loading:!0,actionTabs:{key:"",params:{},module_id:""},virtualSpacesDetails:{},menus:[],LessonsList:{},LessonDetail:{},LessonResList:{},DiscussionList:{},DiscussionDetail:{},Workplace:{BaseData:{}}},effects:{*getBaseStatisticData({payload:C},{call:O,put:L}){const _e=yield O(Vo.y2,C);return yield L({type:"save",payload:{Workplace:{BaseData:_e.data}}}),_e},*putEditDiscussion({payload:C},{call:O,put:L}){return yield O(Vo.CH,C)},*getDiscussionDetail({payload:C},{call:O,put:L}){const _e=yield O(Vo.XQ,C);return yield L({type:"save",payload:{DiscussionDetail:_e}}),_e},*postDiscussionList({payload:C},{call:O,put:L}){return yield O(Vo.Ll,C)},*getDiscussionList({payload:C},{call:O,put:L}){const _e=yield O(Vo.EA,C);return yield L({type:"save",payload:{DiscussionList:_e}}),_e},*postAddLessonRes({payload:C},{call:O,put:L}){return yield O(Vo.cZ,C)},*getLessonResourcesList({payload:C},{call:O,put:L}){const _e=yield O(Vo.b,C);return yield L({type:"save",payload:{LessonResList:_e}}),_e},*putGoodLessonsDetail({payload:C},{call:O,put:L}){return yield O(Vo.To,C)},*getGoodLessonsDetail({payload:C},{call:O,put:L}){const _e=yield O(Vo.FU,C);return yield L({type:"save",payload:{LessonDetail:_e}}),_e},*postGoodLessonsList({payload:C},{call:O,put:L}){return yield O(Vo.Vf,C)},*getGoodLessonsList({payload:C},{call:O,put:L}){const _e=yield O(Vo.G_,C);return yield L({type:"save",payload:{LessonsList:_e}}),_e},*setActionTabs({payload:C},{call:O,put:L}){yield L({type:"save",payload:{actionTabs:gc({},C)}})},*setShowMenu({payload:C},{call:O,put:L}){yield L({type:"save",payload:{showMenu:C}})},*getVirtualSpacesDetails({payload:C},{call:O,put:L}){const _e=yield O(Vo.sT,C);yield L({type:"save",payload:{virtualSpacesDetails:gc({},_e)}})},*setVirtualSpacesLoading({payload:C},{call:O,put:L}){yield L({type:"save",payload:{loading:C}})},*getVirtualSpacesMenus({payload:C},{call:O,put:L}){const _e=yield O(Vo.Sl,C);return yield L({type:"save",payload:{menus:_e}}),_e}},reducers:{save(C,O){return gc(gc({},C),O.payload)}},subscriptions:{setup({dispatch:C,history:O}){return O.listen(({pathname:L})=>{L==="/"&&C({type:"query"})})}}};const Xl={model_1:{namespace:"account.index",model:b},model_2:{namespace:"classrooms.announcement",model:K},model_3:{namespace:"classrooms.attachment",model:se},model_4:{namespace:"classrooms.boards",model:Ie},model_5:{namespace:"classrooms.exercise",model:$e},model_6:{namespace:"classrooms.graduation",model:ke},model_7:{namespace:"classrooms.homeworks",model:Yt},model_8:{namespace:"classrooms.index",model:Ae},model_9:{namespace:"classrooms.new",model:dt},model_10:{namespace:"classrooms.overview",model:qt},model_11:{namespace:"classrooms.polls",model:br},model_12:{namespace:"classrooms.teacher",model:Bi},model_13:{namespace:"classrooms.video",model:Yi},model_14:{namespace:"competitions.index",model:Hi},model_15:{namespace:"engineering.evaluateDetail",model:Nr},model_16:{namespace:"engineering.evaluateList",model:$n.Z},model_17:{namespace:"engineering.index",model:sr},model_18:{namespace:"engineering.navigation",model:Ea},model_19:{namespace:"engineering.normDetail",model:Ji},model_20:{namespace:"engineering.normList",model:Ni},model_21:{namespace:"forums.detail",model:Oo},model_22:{namespace:"forums.index",model:Wa},model_23:{namespace:"globalSetting",model:Hu},model_24:{namespace:"graduations.index",model:gr},model_25:{namespace:"homePage",model:Br},model_26:{namespace:"innovation.index",model:Sa},model_27:{namespace:"intraincourse.index",model:ni},model_28:{namespace:"loading",model:Li},model_29:{namespace:"messages.index",model:Qs},model_30:{namespace:"paperlibrary.index",model:_n},model_31:{namespace:"paperlibrary.newPaper",model:Xi},model_32:{namespace:"paths.detail",model:yu},model_33:{namespace:"paths.index",model:wt},model_34:{namespace:"paths.new",model:qn},model_35:{namespace:"paths.overview",model:ws},model_36:{namespace:"problemset.index",model:wl},model_37:{namespace:"problemset.preview",model:zl},model_38:{namespace:"resetFul.index",model:Gl},model_39:{namespace:"shixuns.detail",model:lc},model_40:{namespace:"shixuns.index",model:fu},model_41:{namespace:"shixuns.new",model:Vu},model_42:{namespace:"shixuns.overview",model:Df},model_43:{namespace:"shixuns.practiceSetting",model:cc},model_44:{namespace:"user.detail",model:kc},model_45:{namespace:"user.index",model:hu},model_46:{namespace:"video.detail",model:qc},model_47:{namespace:"virtualSpaces.index",model:Lc}};var Jl=Object.defineProperty,bf=Object.getOwnPropertySymbols,ef=Object.prototype.hasOwnProperty,ol=Object.prototype.propertyIsEnumerable,yc=(C,O,L)=>O in C?Jl(C,O,{enumerable:!0,configurable:!0,writable:!0,value:L}):C[O]=L,bc=(C,O)=>{for(var L in O||(O={}))ef.call(O,L)&&yc(C,L,O[L]);if(bf)for(var L of bf(O))ol.call(O,L)&&yc(C,L,O[L]);return C};let Mc;function Fc(C){const{pluginManager:O}=(0,f.useAppData)(),L=(0,c.useRef)(),_e=O.applyPlugins({key:"dva",type:f.ApplyPluginsType.modify,initialValue:{}});if(!L.current){L.current=(0,r.Ue)(bc({history:f.history},_e.config||{}),{initialReducer:{},setupMiddlewares(Oe){return[...Oe]},setupApp(Oe){Oe._history=f.history}}),Mc=L.current,L.current.use(l()()),(_e.plugins||[]).forEach(Oe=>{L.current.use(Oe)});for(const Oe of Object.keys(Xl))L.current.model(bc({namespace:Xl[Oe].namespace},Xl[Oe].model));L.current.start()}return c.createElement(r.zt,{store:L.current._store},C.children)}function xf(){return Mc}},2893:function(d,v,e){"use strict";e.d(v,{PZ:function(){return nt},eU:function(){return a},B:function(){return Ee},Mg:function(){return Nr},lw:function(){return Cr},Kd:function(){return en},H8:function(){return Tt}});var r=e(59301),i=e(94266),l=e.n(i);const c=l()||i;function f(Ke){return Ke.displayName||Ke.name||"Component"}const o=r.createContext(null),{Consumer:h,Provider:u}=o,a=u,x=null;function p(Ke,ct){const{intlPropName:ge="intl",forwardRef:sr=!1,enforceContext:nr=!0}=ct||{},kr=Hr=>React.createElement(h,null,Zr=>(nr&&invariantIntlContext(Zr),React.createElement(Ke,Object.assign({},Hr,{[ge]:Zr},{ref:sr?Hr.forwardedRef:null}))));return kr.displayName=`injectIntl(${f(Ke)})`,kr.WrappedComponent=Ke,c(sr?React.forwardRef((Hr,Zr)=>React.createElement(kr,Object.assign({},Hr,{forwardedRef:Zr}))):kr,Ke)}var y;(function(Ke){Ke[Ke.literal=0]="literal",Ke[Ke.argument=1]="argument",Ke[Ke.number=2]="number",Ke[Ke.date=3]="date",Ke[Ke.time=4]="time",Ke[Ke.select=5]="select",Ke[Ke.plural=6]="plural",Ke[Ke.pound=7]="pound"})(y||(y={}));function m(Ke){return Ke.type===y.literal}function b(Ke){return Ke.type===y.argument}function S(Ke){return Ke.type===y.number}function k(Ke){return Ke.type===y.date}function R(Ke){return Ke.type===y.time}function A(Ke){return Ke.type===y.select}function P(Ke){return Ke.type===y.plural}function M(Ke){return Ke.type===y.pound}function B(Ke){return!!(Ke&&typeof Ke=="object"&&Ke.type===0)}function N(Ke){return!!(Ke&&typeof Ke=="object"&&Ke.type===1)}function K(Ke){return{type:y.literal,value:Ke}}function H(Ke,ct){return{type:y.number,value:Ke,style:ct}}var W=function(){var Ke=function(ct,ge){return Ke=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(sr,nr){sr.__proto__=nr}||function(sr,nr){for(var kr in nr)nr.hasOwnProperty(kr)&&(sr[kr]=nr[kr])},Ke(ct,ge)};return function(ct,ge){Ke(ct,ge);function sr(){this.constructor=ct}ct.prototype=ge===null?Object.create(ge):(sr.prototype=ge.prototype,new sr)}}(),ae=function(){return ae=Object.assign||function(Ke){for(var ct,ge=1,sr=arguments.length;ge<sr;ge++){ct=arguments[ge];for(var nr in ct)Object.prototype.hasOwnProperty.call(ct,nr)&&(Ke[nr]=ct[nr])}return Ke},ae.apply(this,arguments)},ne=function(Ke){W(ct,Ke);function ct(ge,sr,nr,kr){var Hr=Ke.call(this)||this;return Hr.message=ge,Hr.expected=sr,Hr.found=nr,Hr.location=kr,Hr.name="SyntaxError",typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(Hr,ct),Hr}return ct.buildMessage=function(ge,sr){function nr(un){return un.charCodeAt(0).toString(16).toUpperCase()}function kr(un){return un.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(yn){return"\\x0"+nr(yn)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(yn){return"\\x"+nr(yn)})}function Hr(un){return un.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replace(/\^/g,"\\^").replace(/-/g,"\\-").replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(yn){return"\\x0"+nr(yn)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(yn){return"\\x"+nr(yn)})}function Zr(un){switch(un.type){case"literal":return'"'+kr(un.text)+'"';case"class":var yn=un.parts.map(function(Gr){return Array.isArray(Gr)?Hr(Gr[0])+"-"+Hr(Gr[1]):Hr(Gr)});return"["+(un.inverted?"^":"")+yn+"]";case"any":return"any character";case"end":return"end of input";case"other":return un.description}}function hn(un){var yn=un.map(Zr),Gr,kn;if(yn.sort(),yn.length>0){for(Gr=1,kn=1;Gr<yn.length;Gr++)yn[Gr-1]!==yn[Gr]&&(yn[kn]=yn[Gr],kn++);yn.length=kn}switch(yn.length){case 1:return yn[0];case 2:return yn[0]+" or "+yn[1];default:return yn.slice(0,-1).join(", ")+", or "+yn[yn.length-1]}}function Si(un){return un?'"'+kr(un)+'"':"end of input"}return"Expected "+hn(ge)+" but "+Si(sr)+" found."},ct}(Error);function oe(Ke,ct){ct=ct!==void 0?ct:{};var ge={},sr={start:Kr},nr=Kr,kr=function(Ze){return Ze.join("")},Hr=function(Ze){return ae({type:y.literal,value:Ze},En())},Zr="#",hn=ts("#",!1),Si=function(){return ae({type:y.pound},En())},un=Qe("argumentElement"),yn="{",Gr=ts("{",!1),kn="}",si=ts("}",!1),Ea=function(Ze){return ae({type:y.argument,value:Ze},En())},Js=Qe("numberSkeletonId"),Ba=/^['\/{}]/,$s=cs(["'","/","{","}"],!1,!1),Ns=ja(),as=Qe("numberSkeletonTokenOption"),oo="/",Aa=ts("/",!1),Is=function(Ze){return Ze},ps=Qe("numberSkeletonToken"),po=function(Ze,jt){return{stem:Ze,options:jt}},Ji=function(Ze){return ae({type:0,tokens:Ze},En())},to="::",zo=ts("::",!1),Na=function(Ze){return Ze},zs=function(){return Pa.push("numberArgStyle"),!0},di=function(Ze){return Pa.pop(),Ze.replace(/\s*$/,"")},ro=",",Rn=ts(",",!1),ss="number",Ps=ts("number",!1),Os=function(Ze,jt,wr){return ae({type:jt==="number"?y.number:jt==="date"?y.date:y.time,style:wr&&wr[2],value:Ze},En())},Qi="'",Ka=ts("'",!1),Ni=/^[^']/,Ds=cs(["'"],!0,!1),xo=/^[^a-zA-Z'{}]/,Zo=cs([["a","z"],["A","Z"],"'","{","}"],!0,!1),Qo=/^[a-zA-Z]/,mu=cs([["a","z"],["A","Z"]],!1,!1),_u=function(Ze){return ae({type:1,pattern:Ze},En())},vo=function(){return Pa.push("dateOrTimeArgStyle"),!0},Wo="date",Oo=ts("date",!1),nu="time",Xo=ts("time",!1),hi="plural",vi=ts("plural",!1),qa="selectordinal",ls=ts("selectordinal",!1),es="offset:",Wa=ts("offset:",!1),ms=function(Ze,jt,wr,Rr){return ae({type:y.plural,pluralType:jt==="plural"?"cardinal":"ordinal",value:Ze,offset:wr?wr[2]:0,options:Rr.reduce(function(Jr,gn){var Xi=gn.id,ui=gn.value,wo=gn.location;return Xi in Jr&&io('Duplicate option "'+Xi+'" in plural element: "'+lo()+'"',Rs()),Jr[Xi]={value:ui,location:wo},Jr},{})},En())},Jo="select",ks=ts("select",!1),Mo=function(Ze,jt){return ae({type:y.select,value:Ze,options:jt.reduce(function(wr,Rr){var Jr=Rr.id,gn=Rr.value,Xi=Rr.location;return Jr in wr&&io('Duplicate option "'+Jr+'" in select element: "'+lo()+'"',Rs()),wr[Jr]={value:gn,location:Xi},wr},{})},En())},Eu="=",Pu=ts("=",!1),rl=function(Ze){return Pa.push("select"),!0},dl=function(Ze,jt){return Pa.pop(),ae({id:Ze,value:jt},En())},Fo=function(Ze){return Pa.push("plural"),!0},uo=function(Ze,jt){return Pa.pop(),ae({id:Ze,value:jt},En())},Ho=Qe("whitespace"),Hu=/^[\t-\r \x85\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/,Bo=cs([[" ","\r"]," ","\x85","\xA0","\u1680",["\u2000","\u200A"],"\u2028","\u2029","\u202F","\u205F","\u3000"],!1,!1),Go=Qe("syntax pattern"),Uu=/^[!-\/:-@[-\^`{-~\xA1-\xA7\xA9\xAB\xAC\xAE\xB0\xB1\xB6\xBB\xBF\xD7\xF7\u2010-\u2027\u2030-\u203E\u2041-\u2053\u2055-\u205E\u2190-\u245F\u2500-\u2775\u2794-\u2BFF\u2E00-\u2E7F\u3001-\u3003\u3008-\u3020\u3030\uFD3E\uFD3F\uFE45\uFE46]/,iu=cs([["!","/"],[":","@"],["[","^"],"`",["{","~"],["\xA1","\xA7"],"\xA9","\xAB","\xAC","\xAE","\xB0","\xB1","\xB6","\xBB","\xBF","\xD7","\xF7",["\u2010","\u2027"],["\u2030","\u203E"],["\u2041","\u2053"],["\u2055","\u205E"],["\u2190","\u245F"],["\u2500","\u2775"],["\u2794","\u2BFF"],["\u2E00","\u2E7F"],["\u3001","\u3003"],["\u3008","\u3020"],"\u3030","\uFD3E","\uFD3F","\uFE45","\uFE46"],!1,!1),vu=Qe("optional whitespace"),No=Qe("number"),gu="-",Ko=ts("-",!1),rr=function(Ze,jt){return jt?Ze?-jt:jt:0},gr=Qe("apostrophe"),dr=Qe("double apostrophes"),vr="''",Tr=ts("''",!1),bn=function(){return"'"},zn=function(Ze,jt){return Ze+jt.replace("''","'")},Ln=function(Ze){return Ze!=="{"&&!(_n()&&Ze==="#")&&!(Zs()&&Ze==="}")},Zn=`
`,ai=ts(`
`,!1),Jn=function(Ze){return Ze==="{"||Ze==="}"||_n()&&Ze==="#"},mr=Qe("argNameOrNumber"),Fr=Qe("argNumber"),Br="0",Tn=ts("0",!1),In=function(){return 0},oi=/^[1-9]/,wi=cs([["1","9"]],!1,!1),Hn=/^[0-9]/,ta=cs([["0","9"]],!1,!1),ra=function(Ze){return parseInt(Ze.join(""),10)},gi=Qe("argName"),Et=0,Xn=0,Sa=[{line:1,column:1}],Ra=0,Ys=[],sn=0,Do;if(ct.startRule!==void 0){if(!(ct.startRule in sr))throw new Error(`Can't start parsing from rule "`+ct.startRule+'".');nr=sr[ct.startRule]}function lo(){return Ke.substring(Xn,Et)}function Rs(){return Ft(Xn,Et)}function no(Ze,jt){throw jt=jt!==void 0?jt:Ft(Xn,Et),Mr([Qe(Ze)],Ke.substring(Xn,Et),jt)}function io(Ze,jt){throw jt=jt!==void 0?jt:Ft(Xn,Et),Sr(Ze,jt)}function ts(Ze,jt){return{type:"literal",text:Ze,ignoreCase:jt}}function cs(Ze,jt,wr){return{type:"class",parts:Ze,inverted:jt,ignoreCase:wr}}function ja(){return{type:"any"}}function os(){return{type:"end"}}function Qe(Ze){return{type:"other",description:Ze}}function Pe(Ze){var jt=Sa[Ze],wr;if(jt)return jt;for(wr=Ze-1;!Sa[wr];)wr--;for(jt=Sa[wr],jt={line:jt.line,column:jt.column};wr<Ze;)Ke.charCodeAt(wr)===10?(jt.line++,jt.column=1):jt.column++,wr++;return Sa[Ze]=jt,jt}function Ft(Ze,jt){var wr=Pe(Ze),Rr=Pe(jt);return{start:{offset:Ze,line:wr.line,column:wr.column},end:{offset:jt,line:Rr.line,column:Rr.column}}}function _t(Ze){Et<Ra||(Et>Ra&&(Ra=Et,Ys=[]),Ys.push(Ze))}function Sr(Ze,jt){return new ne(Ze,[],"",jt)}function Mr(Ze,jt,wr){return new ne(ne.buildMessage(Ze,jt),Ze,jt,wr)}function Kr(){var Ze;return Ze=xn(),Ze}function xn(){var Ze,jt;for(Ze=[],jt=cn();jt!==ge;)Ze.push(jt),jt=cn();return Ze}function cn(){var Ze;return Ze=ri(),Ze===ge&&(Ze=yi(),Ze===ge&&(Ze=fs(),Ze===ge&&(Ze=ya(),Ze===ge&&(Ze=_s(),Ze===ge&&(Ze=ni()))))),Ze}function Sn(){var Ze,jt,wr;if(Ze=Et,jt=[],wr=qs(),wr===ge&&(wr=Ha(),wr===ge&&(wr=us())),wr!==ge)for(;wr!==ge;)jt.push(wr),wr=qs(),wr===ge&&(wr=Ha(),wr===ge&&(wr=us()));else jt=ge;return jt!==ge&&(Xn=Ze,jt=kr(jt)),Ze=jt,Ze}function ri(){var Ze,jt;return Ze=Et,jt=Sn(),jt!==ge&&(Xn=Ze,jt=Hr(jt)),Ze=jt,Ze}function ni(){var Ze,jt;return Ze=Et,Ke.charCodeAt(Et)===35?(jt=Zr,Et++):(jt=ge,sn===0&&_t(hn)),jt!==ge&&(Xn=Ze,jt=Si()),Ze=jt,Ze}function yi(){var Ze,jt,wr,Rr,Jr,gn;return sn++,Ze=Et,Ke.charCodeAt(Et)===123?(jt=yn,Et++):(jt=ge,sn===0&&_t(Gr)),jt!==ge?(wr=pa(),wr!==ge?(Rr=Va(),Rr!==ge?(Jr=pa(),Jr!==ge?(Ke.charCodeAt(Et)===125?(gn=kn,Et++):(gn=ge,sn===0&&_t(si)),gn!==ge?(Xn=Ze,jt=Ea(Rr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),sn--,Ze===ge&&(jt=ge,sn===0&&_t(un)),Ze}function Li(){var Ze,jt,wr,Rr,Jr;if(sn++,Ze=Et,jt=[],wr=Et,Rr=Et,sn++,Jr=ao(),Jr===ge&&(Ba.test(Ke.charAt(Et))?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t($s))),sn--,Jr===ge?Rr=void 0:(Et=Rr,Rr=ge),Rr!==ge?(Ke.length>Et?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t(Ns)),Jr!==ge?(Rr=[Rr,Jr],wr=Rr):(Et=wr,wr=ge)):(Et=wr,wr=ge),wr!==ge)for(;wr!==ge;)jt.push(wr),wr=Et,Rr=Et,sn++,Jr=ao(),Jr===ge&&(Ba.test(Ke.charAt(Et))?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t($s))),sn--,Jr===ge?Rr=void 0:(Et=Rr,Rr=ge),Rr!==ge?(Ke.length>Et?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t(Ns)),Jr!==ge?(Rr=[Rr,Jr],wr=Rr):(Et=wr,wr=ge)):(Et=wr,wr=ge);else jt=ge;return jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,sn--,Ze===ge&&(jt=ge,sn===0&&_t(Js)),Ze}function na(){var Ze,jt,wr;return sn++,Ze=Et,Ke.charCodeAt(Et)===47?(jt=oo,Et++):(jt=ge,sn===0&&_t(Aa)),jt!==ge?(wr=Li(),wr!==ge?(Xn=Ze,jt=Is(wr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),sn--,Ze===ge&&(jt=ge,sn===0&&_t(as)),Ze}function Wi(){var Ze,jt,wr,Rr,Jr;if(sn++,Ze=Et,jt=pa(),jt!==ge)if(wr=Li(),wr!==ge){for(Rr=[],Jr=na();Jr!==ge;)Rr.push(Jr),Jr=na();Rr!==ge?(Xn=Ze,jt=po(wr,Rr),Ze=jt):(Et=Ze,Ze=ge)}else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;return sn--,Ze===ge&&(jt=ge,sn===0&&_t(ps)),Ze}function Ci(){var Ze,jt,wr;if(Ze=Et,jt=[],wr=Wi(),wr!==ge)for(;wr!==ge;)jt.push(wr),wr=Wi();else jt=ge;return jt!==ge&&(Xn=Ze,jt=Ji(jt)),Ze=jt,Ze}function Ia(){var Ze,jt,wr;return Ze=Et,Ke.substr(Et,2)===to?(jt=to,Et+=2):(jt=ge,sn===0&&_t(zo)),jt!==ge?(wr=Ci(),wr!==ge?(Xn=Ze,jt=Na(wr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),Ze===ge&&(Ze=Et,Xn=Et,jt=zs(),jt?jt=void 0:jt=ge,jt!==ge?(wr=Sn(),wr!==ge?(Xn=Ze,jt=di(wr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)),Ze}function Ii(){var Ze,jt,wr,Rr,Jr,gn,Xi,ui,wo,fa,ns,Xa,Es;return Ze=Et,Ke.charCodeAt(Et)===123?(jt=yn,Et++):(jt=ge,sn===0&&_t(Gr)),jt!==ge?(wr=pa(),wr!==ge?(Rr=Va(),Rr!==ge?(Jr=pa(),Jr!==ge?(Ke.charCodeAt(Et)===44?(gn=ro,Et++):(gn=ge,sn===0&&_t(Rn)),gn!==ge?(Xi=pa(),Xi!==ge?(Ke.substr(Et,6)===ss?(ui=ss,Et+=6):(ui=ge,sn===0&&_t(Ps)),ui!==ge?(wo=pa(),wo!==ge?(fa=Et,Ke.charCodeAt(Et)===44?(ns=ro,Et++):(ns=ge,sn===0&&_t(Rn)),ns!==ge?(Xa=pa(),Xa!==ge?(Es=Ia(),Es!==ge?(ns=[ns,Xa,Es],fa=ns):(Et=fa,fa=ge)):(Et=fa,fa=ge)):(Et=fa,fa=ge),fa===ge&&(fa=null),fa!==ge?(ns=pa(),ns!==ge?(Ke.charCodeAt(Et)===125?(Xa=kn,Et++):(Xa=ge,sn===0&&_t(si)),Xa!==ge?(Xn=Ze,jt=Os(Rr,ui,fa),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),Ze}function pi(){var Ze,jt,wr,Rr;if(Ze=Et,Ke.charCodeAt(Et)===39?(jt=Qi,Et++):(jt=ge,sn===0&&_t(Ka)),jt!==ge){if(wr=[],Rr=qs(),Rr===ge&&(Ni.test(Ke.charAt(Et))?(Rr=Ke.charAt(Et),Et++):(Rr=ge,sn===0&&_t(Ds))),Rr!==ge)for(;Rr!==ge;)wr.push(Rr),Rr=qs(),Rr===ge&&(Ni.test(Ke.charAt(Et))?(Rr=Ke.charAt(Et),Et++):(Rr=ge,sn===0&&_t(Ds)));else wr=ge;wr!==ge?(Ke.charCodeAt(Et)===39?(Rr=Qi,Et++):(Rr=ge,sn===0&&_t(Ka)),Rr!==ge?(jt=[jt,wr,Rr],Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)}else Et=Ze,Ze=ge;if(Ze===ge)if(Ze=[],jt=qs(),jt===ge&&(xo.test(Ke.charAt(Et))?(jt=Ke.charAt(Et),Et++):(jt=ge,sn===0&&_t(Zo))),jt!==ge)for(;jt!==ge;)Ze.push(jt),jt=qs(),jt===ge&&(xo.test(Ke.charAt(Et))?(jt=Ke.charAt(Et),Et++):(jt=ge,sn===0&&_t(Zo)));else Ze=ge;return Ze}function ca(){var Ze,jt;if(Ze=[],Qo.test(Ke.charAt(Et))?(jt=Ke.charAt(Et),Et++):(jt=ge,sn===0&&_t(mu)),jt!==ge)for(;jt!==ge;)Ze.push(jt),Qo.test(Ke.charAt(Et))?(jt=Ke.charAt(Et),Et++):(jt=ge,sn===0&&_t(mu));else Ze=ge;return Ze}function Eo(){var Ze,jt,wr,Rr;if(Ze=Et,jt=Et,wr=[],Rr=pi(),Rr===ge&&(Rr=ca()),Rr!==ge)for(;Rr!==ge;)wr.push(Rr),Rr=pi(),Rr===ge&&(Rr=ca());else wr=ge;return wr!==ge?jt=Ke.substring(jt,Et):jt=wr,jt!==ge&&(Xn=Ze,jt=_u(jt)),Ze=jt,Ze}function Qs(){var Ze,jt,wr;return Ze=Et,Ke.substr(Et,2)===to?(jt=to,Et+=2):(jt=ge,sn===0&&_t(zo)),jt!==ge?(wr=Eo(),wr!==ge?(Xn=Ze,jt=Na(wr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),Ze===ge&&(Ze=Et,Xn=Et,jt=vo(),jt?jt=void 0:jt=ge,jt!==ge?(wr=Sn(),wr!==ge?(Xn=Ze,jt=di(wr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)),Ze}function ia(){var Ze,jt,wr,Rr,Jr,gn,Xi,ui,wo,fa,ns,Xa,Es;return Ze=Et,Ke.charCodeAt(Et)===123?(jt=yn,Et++):(jt=ge,sn===0&&_t(Gr)),jt!==ge?(wr=pa(),wr!==ge?(Rr=Va(),Rr!==ge?(Jr=pa(),Jr!==ge?(Ke.charCodeAt(Et)===44?(gn=ro,Et++):(gn=ge,sn===0&&_t(Rn)),gn!==ge?(Xi=pa(),Xi!==ge?(Ke.substr(Et,4)===Wo?(ui=Wo,Et+=4):(ui=ge,sn===0&&_t(Oo)),ui===ge&&(Ke.substr(Et,4)===nu?(ui=nu,Et+=4):(ui=ge,sn===0&&_t(Xo))),ui!==ge?(wo=pa(),wo!==ge?(fa=Et,Ke.charCodeAt(Et)===44?(ns=ro,Et++):(ns=ge,sn===0&&_t(Rn)),ns!==ge?(Xa=pa(),Xa!==ge?(Es=Qs(),Es!==ge?(ns=[ns,Xa,Es],fa=ns):(Et=fa,fa=ge)):(Et=fa,fa=ge)):(Et=fa,fa=ge),fa===ge&&(fa=null),fa!==ge?(ns=pa(),ns!==ge?(Ke.charCodeAt(Et)===125?(Xa=kn,Et++):(Xa=ge,sn===0&&_t(si)),Xa!==ge?(Xn=Ze,jt=Os(Rr,ui,fa),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),Ze}function fs(){var Ze;return Ze=Ii(),Ze===ge&&(Ze=ia()),Ze}function ya(){var Ze,jt,wr,Rr,Jr,gn,Xi,ui,wo,fa,ns,Xa,Es,go,wu,yu;if(Ze=Et,Ke.charCodeAt(Et)===123?(jt=yn,Et++):(jt=ge,sn===0&&_t(Gr)),jt!==ge)if(wr=pa(),wr!==ge)if(Rr=Va(),Rr!==ge)if(Jr=pa(),Jr!==ge)if(Ke.charCodeAt(Et)===44?(gn=ro,Et++):(gn=ge,sn===0&&_t(Rn)),gn!==ge)if(Xi=pa(),Xi!==ge)if(Ke.substr(Et,6)===hi?(ui=hi,Et+=6):(ui=ge,sn===0&&_t(vi)),ui===ge&&(Ke.substr(Et,13)===qa?(ui=qa,Et+=13):(ui=ge,sn===0&&_t(ls))),ui!==ge)if(wo=pa(),wo!==ge)if(Ke.charCodeAt(Et)===44?(fa=ro,Et++):(fa=ge,sn===0&&_t(Rn)),fa!==ge)if(ns=pa(),ns!==ge)if(Xa=Et,Ke.substr(Et,7)===es?(Es=es,Et+=7):(Es=ge,sn===0&&_t(Wa)),Es!==ge?(go=pa(),go!==ge?(wu=Ms(),wu!==ge?(Es=[Es,go,wu],Xa=Es):(Et=Xa,Xa=ge)):(Et=Xa,Xa=ge)):(Et=Xa,Xa=ge),Xa===ge&&(Xa=null),Xa!==ge)if(Es=pa(),Es!==ge){if(go=[],wu=Ls(),wu!==ge)for(;wu!==ge;)go.push(wu),wu=Ls();else go=ge;go!==ge?(wu=pa(),wu!==ge?(Ke.charCodeAt(Et)===125?(yu=kn,Et++):(yu=ge,sn===0&&_t(si)),yu!==ge?(Xn=Ze,jt=ms(Rr,ui,Xa,go),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)}else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;return Ze}function _s(){var Ze,jt,wr,Rr,Jr,gn,Xi,ui,wo,fa,ns,Xa,Es,go;if(Ze=Et,Ke.charCodeAt(Et)===123?(jt=yn,Et++):(jt=ge,sn===0&&_t(Gr)),jt!==ge)if(wr=pa(),wr!==ge)if(Rr=Va(),Rr!==ge)if(Jr=pa(),Jr!==ge)if(Ke.charCodeAt(Et)===44?(gn=ro,Et++):(gn=ge,sn===0&&_t(Rn)),gn!==ge)if(Xi=pa(),Xi!==ge)if(Ke.substr(Et,6)===Jo?(ui=Jo,Et+=6):(ui=ge,sn===0&&_t(ks)),ui!==ge)if(wo=pa(),wo!==ge)if(Ke.charCodeAt(Et)===44?(fa=ro,Et++):(fa=ge,sn===0&&_t(Rn)),fa!==ge)if(ns=pa(),ns!==ge){if(Xa=[],Es=rs(),Es!==ge)for(;Es!==ge;)Xa.push(Es),Es=rs();else Xa=ge;Xa!==ge?(Es=pa(),Es!==ge?(Ke.charCodeAt(Et)===125?(go=kn,Et++):(go=ge,sn===0&&_t(si)),go!==ge?(Xn=Ze,jt=Mo(Rr,Xa),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)}else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;return Ze}function La(){var Ze,jt,wr,Rr;return Ze=Et,jt=Et,Ke.charCodeAt(Et)===61?(wr=Eu,Et++):(wr=ge,sn===0&&_t(Pu)),wr!==ge?(Rr=Ms(),Rr!==ge?(wr=[wr,Rr],jt=wr):(Et=jt,jt=ge)):(Et=jt,jt=ge),jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,Ze===ge&&(Ze=kt()),Ze}function rs(){var Ze,jt,wr,Rr,Jr,gn,Xi,ui;return Ze=Et,jt=pa(),jt!==ge?(wr=kt(),wr!==ge?(Rr=pa(),Rr!==ge?(Ke.charCodeAt(Et)===123?(Jr=yn,Et++):(Jr=ge,sn===0&&_t(Gr)),Jr!==ge?(Xn=Et,gn=rl(wr),gn?gn=void 0:gn=ge,gn!==ge?(Xi=xn(),Xi!==ge?(Ke.charCodeAt(Et)===125?(ui=kn,Et++):(ui=ge,sn===0&&_t(si)),ui!==ge?(Xn=Ze,jt=dl(wr,Xi),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),Ze}function Ls(){var Ze,jt,wr,Rr,Jr,gn,Xi,ui;return Ze=Et,jt=pa(),jt!==ge?(wr=La(),wr!==ge?(Rr=pa(),Rr!==ge?(Ke.charCodeAt(Et)===123?(Jr=yn,Et++):(Jr=ge,sn===0&&_t(Gr)),Jr!==ge?(Xn=Et,gn=Fo(wr),gn?gn=void 0:gn=ge,gn!==ge?(Xi=xn(),Xi!==ge?(Ke.charCodeAt(Et)===125?(ui=kn,Et++):(ui=ge,sn===0&&_t(si)),ui!==ge?(Xn=Ze,jt=uo(wr,Xi),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),Ze}function ao(){var Ze,jt;return sn++,Hu.test(Ke.charAt(Et))?(Ze=Ke.charAt(Et),Et++):(Ze=ge,sn===0&&_t(Bo)),sn--,Ze===ge&&(jt=ge,sn===0&&_t(Ho)),Ze}function xs(){var Ze,jt;return sn++,Uu.test(Ke.charAt(Et))?(Ze=Ke.charAt(Et),Et++):(Ze=ge,sn===0&&_t(iu)),sn--,Ze===ge&&(jt=ge,sn===0&&_t(Go)),Ze}function pa(){var Ze,jt,wr;for(sn++,Ze=Et,jt=[],wr=ao();wr!==ge;)jt.push(wr),wr=ao();return jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,sn--,Ze===ge&&(jt=ge,sn===0&&_t(vu)),Ze}function Ms(){var Ze,jt,wr;return sn++,Ze=Et,Ke.charCodeAt(Et)===45?(jt=gu,Et++):(jt=ge,sn===0&&_t(Ko)),jt===ge&&(jt=null),jt!==ge?(wr=Vt(),wr!==ge?(Xn=Ze,jt=rr(jt,wr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge),sn--,Ze===ge&&(jt=ge,sn===0&&_t(No)),Ze}function jo(){var Ze,jt;return sn++,Ke.charCodeAt(Et)===39?(Ze=Qi,Et++):(Ze=ge,sn===0&&_t(Ka)),sn--,Ze===ge&&(jt=ge,sn===0&&_t(gr)),Ze}function qs(){var Ze,jt;return sn++,Ze=Et,Ke.substr(Et,2)===vr?(jt=vr,Et+=2):(jt=ge,sn===0&&_t(Tr)),jt!==ge&&(Xn=Ze,jt=bn()),Ze=jt,sn--,Ze===ge&&(jt=ge,sn===0&&_t(dr)),Ze}function Ha(){var Ze,jt,wr,Rr,Jr,gn;if(Ze=Et,Ke.charCodeAt(Et)===39?(jt=Qi,Et++):(jt=ge,sn===0&&_t(Ka)),jt!==ge)if(wr=co(),wr!==ge){for(Rr=Et,Jr=[],Ke.substr(Et,2)===vr?(gn=vr,Et+=2):(gn=ge,sn===0&&_t(Tr)),gn===ge&&(Ni.test(Ke.charAt(Et))?(gn=Ke.charAt(Et),Et++):(gn=ge,sn===0&&_t(Ds)));gn!==ge;)Jr.push(gn),Ke.substr(Et,2)===vr?(gn=vr,Et+=2):(gn=ge,sn===0&&_t(Tr)),gn===ge&&(Ni.test(Ke.charAt(Et))?(gn=Ke.charAt(Et),Et++):(gn=ge,sn===0&&_t(Ds)));Jr!==ge?Rr=Ke.substring(Rr,Et):Rr=Jr,Rr!==ge?(Ke.charCodeAt(Et)===39?(Jr=Qi,Et++):(Jr=ge,sn===0&&_t(Ka)),Jr===ge&&(Jr=null),Jr!==ge?(Xn=Ze,jt=zn(wr,Rr),Ze=jt):(Et=Ze,Ze=ge)):(Et=Ze,Ze=ge)}else Et=Ze,Ze=ge;else Et=Ze,Ze=ge;return Ze}function us(){var Ze,jt,wr,Rr;return Ze=Et,jt=Et,Ke.length>Et?(wr=Ke.charAt(Et),Et++):(wr=ge,sn===0&&_t(Ns)),wr!==ge?(Xn=Et,Rr=Ln(wr),Rr?Rr=void 0:Rr=ge,Rr!==ge?(wr=[wr,Rr],jt=wr):(Et=jt,jt=ge)):(Et=jt,jt=ge),jt===ge&&(Ke.charCodeAt(Et)===10?(jt=Zn,Et++):(jt=ge,sn===0&&_t(ai))),jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,Ze}function co(){var Ze,jt,wr,Rr;return Ze=Et,jt=Et,Ke.length>Et?(wr=Ke.charAt(Et),Et++):(wr=ge,sn===0&&_t(Ns)),wr!==ge?(Xn=Et,Rr=Jn(wr),Rr?Rr=void 0:Rr=ge,Rr!==ge?(wr=[wr,Rr],jt=wr):(Et=jt,jt=ge)):(Et=jt,jt=ge),jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,Ze}function Va(){var Ze,jt;return sn++,Ze=Et,jt=Vt(),jt===ge&&(jt=kt()),jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,sn--,Ze===ge&&(jt=ge,sn===0&&_t(mr)),Ze}function Vt(){var Ze,jt,wr,Rr,Jr;if(sn++,Ze=Et,Ke.charCodeAt(Et)===48?(jt=Br,Et++):(jt=ge,sn===0&&_t(Tn)),jt!==ge&&(Xn=Ze,jt=In()),Ze=jt,Ze===ge){if(Ze=Et,jt=Et,oi.test(Ke.charAt(Et))?(wr=Ke.charAt(Et),Et++):(wr=ge,sn===0&&_t(wi)),wr!==ge){for(Rr=[],Hn.test(Ke.charAt(Et))?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t(ta));Jr!==ge;)Rr.push(Jr),Hn.test(Ke.charAt(Et))?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t(ta));Rr!==ge?(wr=[wr,Rr],jt=wr):(Et=jt,jt=ge)}else Et=jt,jt=ge;jt!==ge&&(Xn=Ze,jt=ra(jt)),Ze=jt}return sn--,Ze===ge&&(jt=ge,sn===0&&_t(Fr)),Ze}function kt(){var Ze,jt,wr,Rr,Jr;if(sn++,Ze=Et,jt=[],wr=Et,Rr=Et,sn++,Jr=ao(),Jr===ge&&(Jr=xs()),sn--,Jr===ge?Rr=void 0:(Et=Rr,Rr=ge),Rr!==ge?(Ke.length>Et?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t(Ns)),Jr!==ge?(Rr=[Rr,Jr],wr=Rr):(Et=wr,wr=ge)):(Et=wr,wr=ge),wr!==ge)for(;wr!==ge;)jt.push(wr),wr=Et,Rr=Et,sn++,Jr=ao(),Jr===ge&&(Jr=xs()),sn--,Jr===ge?Rr=void 0:(Et=Rr,Rr=ge),Rr!==ge?(Ke.length>Et?(Jr=Ke.charAt(Et),Et++):(Jr=ge,sn===0&&_t(Ns)),Jr!==ge?(Rr=[Rr,Jr],wr=Rr):(Et=wr,wr=ge)):(Et=wr,wr=ge);else jt=ge;return jt!==ge?Ze=Ke.substring(Ze,Et):Ze=jt,sn--,Ze===ge&&(jt=ge,sn===0&&_t(gi)),Ze}var Pa=["root"];function Zs(){return Pa.length>1}function _n(){return Pa[Pa.length-1]==="plural"}function En(){return ct&&ct.captureLocation?{location:Rs()}:{}}if(Do=nr(),Do!==ge&&Et===Ke.length)return Do;throw Do!==ge&&Et<Ke.length&&_t(os()),Mr(Ys,Ra<Ke.length?Ke.charAt(Ra):null,Ra<Ke.length?Ft(Ra,Ra+1):Ft(Ra,Ra))}var q=oe,X=function(){for(var Ke=0,ct=0,ge=arguments.length;ct<ge;ct++)Ke+=arguments[ct].length;for(var sr=Array(Ke),nr=0,ct=0;ct<ge;ct++)for(var kr=arguments[ct],Hr=0,Zr=kr.length;Hr<Zr;Hr++,nr++)sr[nr]=kr[Hr];return sr},V=/(^|[^\\])#/g;function se(Ke){Ke.forEach(function(ct){!P(ct)&&!A(ct)||Object.keys(ct.options).forEach(function(ge){for(var sr,nr=ct.options[ge],kr=-1,Hr=void 0,Zr=0;Zr<nr.value.length;Zr++){var hn=nr.value[Zr];if(m(hn)&&V.test(hn.value)){kr=Zr,Hr=hn;break}}if(Hr){var Si=Hr.value.replace(V,"$1{"+ct.value+", number}"),un=q(Si);(sr=nr.value).splice.apply(sr,X([kr,1],un))}se(nr.value)})})}function ee(Ke,ct){var ge=q(Ke,ct);return(!ct||ct.normalizeHashtagInPlural!==!1)&&se(ge),ge}var J=function(){for(var Ke=0,ct=0,ge=arguments.length;ct<ge;ct++)Ke+=arguments[ct].length;for(var sr=Array(Ke),nr=0,ct=0;ct<ge;ct++)for(var kr=arguments[ct],Hr=0,Zr=kr.length;Hr<Zr;Hr++,nr++)sr[nr]=kr[Hr];return sr};function le(Ke){return JSON.stringify(Ke.map(function(ct){return ct&&typeof ct=="object"?z(ct):ct}))}function z(Ke){return Object.keys(Ke).sort().map(function(ct){var ge;return ge={},ge[ct]=Ke[ct],ge})}var j=function(Ke,ct){return ct===void 0&&(ct={}),function(){for(var ge,sr=[],nr=0;nr<arguments.length;nr++)sr[nr]=arguments[nr];var kr=le(sr),Hr=kr&&ct[kr];return Hr||(Hr=new((ge=Ke).bind.apply(ge,J([void 0],sr))),kr&&(ct[kr]=Hr)),Hr}},ie=j,me=function(){return me=Object.assign||function(Ke){for(var ct,ge=1,sr=arguments.length;ge<sr;ge++){ct=arguments[ge];for(var nr in ct)Object.prototype.hasOwnProperty.call(ct,nr)&&(Ke[nr]=ct[nr])}return Ke},me.apply(this,arguments)},Se=/(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;function Ie(Ke){var ct={};return Ke.replace(Se,function(ge){var sr=ge.length;switch(ge[0]){case"G":ct.era=sr===4?"long":sr===5?"narrow":"short";break;case"y":ct.year=sr===2?"2-digit":"numeric";break;case"Y":case"u":case"U":case"r":throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");case"M":case"L":ct.month=["numeric","2-digit","short","long","narrow"][sr-1];break;case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":ct.day=["numeric","2-digit"][sr-1];break;case"D":case"F":case"g":throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");case"E":ct.weekday=sr===4?"short":sr===5?"narrow":"short";break;case"e":if(sr<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");ct.weekday=["short","long","narrow","short"][sr-4];break;case"c":if(sr<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");ct.weekday=["short","long","narrow","short"][sr-4];break;case"a":ct.hour12=!0;break;case"b":case"B":throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");case"h":ct.hourCycle="h12",ct.hour=["numeric","2-digit"][sr-1];break;case"H":ct.hourCycle="h23",ct.hour=["numeric","2-digit"][sr-1];break;case"K":ct.hourCycle="h11",ct.hour=["numeric","2-digit"][sr-1];break;case"k":ct.hourCycle="h24",ct.hour=["numeric","2-digit"][sr-1];break;case"j":case"J":case"C":throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");case"m":ct.minute=["numeric","2-digit"][sr-1];break;case"s":ct.second=["numeric","2-digit"][sr-1];break;case"S":case"A":throw new RangeError("`S/A` (second) pattenrs are not supported, use `s` instead");case"z":ct.timeZoneName=sr<4?"short":"long";break;case"Z":case"O":case"v":case"V":case"X":case"x":throw new RangeError("`Z/O/v/V/X/x` (timeZone) pattenrs are not supported, use `z` instead")}return""}),ct}function He(Ke){return Ke.replace(/^(.*?)-/,"")}var je=/^\.(?:(0+)(\+|#+)?)?$/g,Dt=/^(@+)?(\+|#+)?$/g;function ht(Ke){var ct={};return Ke.replace(Dt,function(ge,sr,nr){return typeof nr!="string"?(ct.minimumSignificantDigits=sr.length,ct.maximumSignificantDigits=sr.length):nr==="+"?ct.minimumSignificantDigits=sr.length:sr[0]==="#"?ct.maximumSignificantDigits=sr.length:(ct.minimumSignificantDigits=sr.length,ct.maximumSignificantDigits=sr.length+(typeof nr=="string"?nr.length:0)),""}),ct}function It(Ke){switch(Ke){case"sign-auto":return{signDisplay:"auto"};case"sign-accounting":return{currencySign:"accounting"};case"sign-always":return{signDisplay:"always"};case"sign-accounting-always":return{signDisplay:"always",currencySign:"accounting"};case"sign-except-zero":return{signDisplay:"exceptZero"};case"sign-accounting-except-zero":return{signDisplay:"exceptZero",currencySign:"accounting"};case"sign-never":return{signDisplay:"never"}}}function Zt(Ke){var ct={},ge=It(Ke);return ge||ct}function Rt(Ke){for(var ct={},ge=0,sr=Ke;ge<sr.length;ge++){var nr=sr[ge];switch(nr.stem){case"percent":ct.style="percent";continue;case"currency":ct.style="currency",ct.currency=nr.options[0];continue;case"group-off":ct.useGrouping=!1;continue;case"precision-integer":ct.maximumFractionDigits=0;continue;case"measure-unit":ct.style="unit",ct.unit=He(nr.options[0]);continue;case"compact-short":ct.notation="compact",ct.compactDisplay="short";continue;case"compact-long":ct.notation="compact",ct.compactDisplay="long";continue;case"scientific":ct=me(me(me({},ct),{notation:"scientific"}),nr.options.reduce(function(Hr,Zr){return me(me({},Hr),Zt(Zr))},{}));continue;case"engineering":ct=me(me(me({},ct),{notation:"engineering"}),nr.options.reduce(function(Hr,Zr){return me(me({},Hr),Zt(Zr))},{}));continue;case"notation-simple":ct.notation="standard";continue;case"unit-width-narrow":ct.currencyDisplay="narrowSymbol",ct.unitDisplay="narrow";continue;case"unit-width-short":ct.currencyDisplay="code",ct.unitDisplay="short";continue;case"unit-width-full-name":ct.currencyDisplay="name",ct.unitDisplay="long";continue;case"unit-width-iso-code":ct.currencyDisplay="symbol";continue}if(je.test(nr.stem)){if(nr.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");nr.stem.replace(je,function(Hr,Zr,hn){return Hr==="."?ct.maximumFractionDigits=0:hn==="+"?ct.minimumFractionDigits=hn.length:Zr[0]==="#"?ct.maximumFractionDigits=Zr.length:(ct.minimumFractionDigits=Zr.length,ct.maximumFractionDigits=Zr.length+(typeof hn=="string"?hn.length:0)),""}),nr.options.length&&(ct=me(me({},ct),ht(nr.options[0])));continue}if(Dt.test(nr.stem)){ct=me(me({},ct),ht(nr.stem));continue}var kr=It(nr.stem);kr&&(ct=me(me({},ct),kr))}return ct}var ar=function(){var Ke=function(ct,ge){return Ke=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(sr,nr){sr.__proto__=nr}||function(sr,nr){for(var kr in nr)nr.hasOwnProperty(kr)&&(sr[kr]=nr[kr])},Ke(ct,ge)};return function(ct,ge){Ke(ct,ge);function sr(){this.constructor=ct}ct.prototype=ge===null?Object.create(ge):(sr.prototype=ge.prototype,new sr)}}(),$e=function(){for(var Ke=0,ct=0,ge=arguments.length;ct<ge;ct++)Ke+=arguments[ct].length;for(var sr=Array(Ke),nr=0,ct=0;ct<ge;ct++)for(var kr=arguments[ct],Hr=0,Zr=kr.length;Hr<Zr;Hr++,nr++)sr[nr]=kr[Hr];return sr},gt=function(Ke){ar(ct,Ke);function ct(ge,sr){var nr=Ke.call(this,ge)||this;return nr.variableId=sr,nr}return ct}(Error);function Mt(Ke){return Ke.length<2?Ke:Ke.reduce(function(ct,ge){var sr=ct[ct.length-1];return!sr||sr.type!==0||ge.type!==0?ct.push(ge):sr.value+=ge.value,ct},[])}function et(Ke,ct,ge,sr,nr,kr,Hr){if(Ke.length===1&&m(Ke[0]))return[{type:0,value:Ke[0].value}];for(var Zr=[],hn=0,Si=Ke;hn<Si.length;hn++){var un=Si[hn];if(m(un)){Zr.push({type:0,value:un.value});continue}if(M(un)){typeof kr=="number"&&Zr.push({type:0,value:ge.getNumberFormat(ct).format(kr)});continue}var yn=un.value;if(!(nr&&yn in nr))throw new gt('The intl string context variable "'+yn+'" was not provided to the string "'+Hr+'"');var Gr=nr[yn];if(b(un)){(!Gr||typeof Gr=="string"||typeof Gr=="number")&&(Gr=typeof Gr=="string"||typeof Gr=="number"?String(Gr):""),Zr.push({type:1,value:Gr});continue}if(k(un)){var kn=typeof un.style=="string"?sr.date[un.style]:void 0;Zr.push({type:0,value:ge.getDateTimeFormat(ct,kn).format(Gr)});continue}if(R(un)){var kn=typeof un.style=="string"?sr.time[un.style]:N(un.style)?Ie(un.style.pattern):void 0;Zr.push({type:0,value:ge.getDateTimeFormat(ct,kn).format(Gr)});continue}if(S(un)){var kn=typeof un.style=="string"?sr.number[un.style]:B(un.style)?Rt(un.style.tokens):void 0;Zr.push({type:0,value:ge.getNumberFormat(ct,kn).format(Gr)});continue}if(A(un)){var si=un.options[Gr]||un.options.other;if(!si)throw new RangeError('Invalid values for "'+un.value+'": "'+Gr+'". Options are "'+Object.keys(un.options).join('", "')+'"');Zr.push.apply(Zr,et(si.value,ct,ge,sr,nr));continue}if(P(un)){var si=un.options["="+Gr];if(!si){if(!Intl.PluralRules)throw new gt(`Intl.PluralRules is not available in this environment.
Try polyfilling it using "@formatjs/intl-pluralrules"
`);var Ea=ge.getPluralRules(ct,{type:un.pluralType}).select(Gr-(un.offset||0));si=un.options[Ea]||un.options.other}if(!si)throw new RangeError('Invalid values for "'+un.value+'": "'+Gr+'". Options are "'+Object.keys(un.options).join('", "')+'"');Zr.push.apply(Zr,et(si.value,ct,ge,sr,nr,Gr-(un.offset||0)));continue}}return Mt(Zr)}function ft(Ke,ct,ge,sr,nr,kr){var Hr=et(Ke,ct,ge,sr,nr,void 0,kr);return Hr.length===1?Hr[0].value:Hr.reduce(function(Zr,hn){return Zr+=hn.value},"")}var ot,Je="@@",Ne=/@@(\d+_\d+)@@/g,ye=0;function ke(){return Date.now()+"_"+ ++ye}function Ge(Ke,ct){return Ke.split(Ne).filter(Boolean).map(function(ge){return ct[ge]!=null?ct[ge]:ge}).reduce(function(ge,sr){return ge.length&&typeof sr=="string"&&typeof ge[ge.length-1]=="string"?ge[ge.length-1]+=sr:ge.push(sr),ge},[])}var We=/(<([0-9a-zA-Z-_]*?)>(.*?)<\/([0-9a-zA-Z-_]*?)>)|(<[0-9a-zA-Z-_]*?\/>)/,Xe=Date.now()+"@@",ut=["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"];function pt(Ke,ct,ge){var sr=Ke.tagName,nr=Ke.outerHTML,kr=Ke.textContent,Hr=Ke.childNodes;if(!sr)return Ge(kr||"",ct);sr=sr.toLowerCase();var Zr=~ut.indexOf(sr),hn=ge[sr];if(hn&&Zr)throw new gt(sr+" is a self-closing tag and can not be used, please use another tag name.");if(!Hr.length)return[nr];var Si=Array.prototype.slice.call(Hr).reduce(function(un,yn){return un.concat(pt(yn,ct,ge))},[]);return hn?typeof hn=="function"?[hn.apply(void 0,Si)]:[hn]:$e(["<"+sr+">"],Si,["</"+sr+">"])}function or(Ke,ct,ge,sr,nr,kr){var Hr=et(Ke,ct,ge,sr,nr,void 0,kr),Zr={},hn=Hr.reduce(function(Gr,kn){if(kn.type===0)return Gr+=kn.value;var si=ke();return Zr[si]=kn.value,Gr+=""+Je+si+Je},"");if(!We.test(hn))return Ge(hn,Zr);if(!nr)throw new gt("Message has placeholders but no values was given");if(typeof DOMParser=="undefined")throw new gt("Cannot format XML message without DOMParser");ot||(ot=new DOMParser);var Si=ot.parseFromString('<formatted-message id="'+Xe+'">'+hn+"</formatted-message>","text/html").getElementById(Xe);if(!Si)throw new gt("Malformed HTML message "+hn);var un=Object.keys(nr).filter(function(Gr){return!!Si.getElementsByTagName(Gr).length});if(!un.length)return Ge(hn,Zr);var yn=un.filter(function(Gr){return Gr!==Gr.toLowerCase()});if(yn.length)throw new gt("HTML tag must be lowercased but the following tags are not: "+yn.join(", "));return Array.prototype.slice.call(Si.childNodes).reduce(function(Gr,kn){return Gr.concat(pt(kn,Zr,nr))},[])}var tr=function(){return tr=Object.assign||function(Ke){for(var ct,ge=1,sr=arguments.length;ge<sr;ge++){ct=arguments[ge];for(var nr in ct)Object.prototype.hasOwnProperty.call(ct,nr)&&(Ke[nr]=ct[nr])}return Ke},tr.apply(this,arguments)};function Me(Ke,ct){return ct?tr(tr(tr({},Ke||{}),ct||{}),Object.keys(Ke).reduce(function(ge,sr){return ge[sr]=tr(tr({},Ke[sr]),ct[sr]||{}),ge},{})):Ke}function tt(Ke,ct){return ct?Object.keys(Ke).reduce(function(ge,sr){return ge[sr]=Me(Ke[sr],ct[sr]),ge},tr({},Ke)):Ke}function Yt(Ke){return Ke===void 0&&(Ke={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:ie(Intl.NumberFormat,Ke.number),getDateTimeFormat:ie(Intl.DateTimeFormat,Ke.dateTime),getPluralRules:ie(Intl.PluralRules,Ke.pluralRules)}}var Ot=function(){function Ke(ct,ge,sr,nr){var kr=this;if(ge===void 0&&(ge=Ke.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(Hr){return ft(kr.ast,kr.locales,kr.formatters,kr.formats,Hr,kr.message)},this.formatToParts=function(Hr){return et(kr.ast,kr.locales,kr.formatters,kr.formats,Hr,void 0,kr.message)},this.formatHTMLMessage=function(Hr){return or(kr.ast,kr.locales,kr.formatters,kr.formats,Hr,kr.message)},this.resolvedOptions=function(){return{locale:Intl.NumberFormat.supportedLocalesOf(kr.locales)[0]}},this.getAst=function(){return kr.ast},typeof ct=="string"){if(this.message=ct,!Ke.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");this.ast=Ke.__parse(ct,{normalizeHashtagInPlural:!1})}else this.ast=ct;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");this.formats=tt(Ke.formats,sr),this.locales=ge,this.formatters=nr&&nr.formatters||Yt(this.formatterCache)}return Ke.defaultLocale=new Intl.NumberFormat().resolvedOptions().locale,Ke.__parse=ee,Ke.formats={number:{currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},Ke}(),zt=Ot,Ht=zt;function lr(Ke,ct,ge){if(ge===void 0&&(ge=Error),!Ke)throw new ge(ct)}const Wt={38:"&amp;",62:"&gt;",60:"&lt;",34:"&quot;",39:"&#x27;"},Ce=/[&><"']/g;function ce(Ke){return(""+Ke).replace(Ce,ct=>Wt[ct.charCodeAt(0)])}function pe(Ke,ct,ge={}){return ct.reduce((sr,nr)=>(nr in Ke?sr[nr]=Ke[nr]:nr in ge&&(sr[nr]=ge[nr]),sr),{})}function Ct(Ke){lr(Ke,"[React Intl] Could not find required `intl` object. <IntlProvider> needs to exist in the component ancestry.")}function Ae(Ke,ct){const ge=ct?`
${ct.stack}`:"";return`[React Intl] ${Ke}${ge}`}function st(Ke){}const Gt={formats:{},messages:{},timeZone:void 0,textComponent:r.Fragment,defaultLocale:"en",defaultFormats:{},onError:st};function bt(){return{dateTime:{},number:{},message:{},relativeTime:{},pluralRules:{},list:{},displayNames:{}}}function Te(Ke=bt()){const ct=Intl.RelativeTimeFormat,ge=Intl.ListFormat,sr=Intl.DisplayNames;return{getDateTimeFormat:ie(Intl.DateTimeFormat,Ke.dateTime),getNumberFormat:ie(Intl.NumberFormat,Ke.number),getMessageFormat:ie(Ht,Ke.message),getRelativeTimeFormat:ie(ct,Ke.relativeTime),getPluralRules:ie(Intl.PluralRules,Ke.pluralRules),getListFormat:ie(ge,Ke.list),getDisplayNames:ie(sr,Ke.displayNames)}}function yt(Ke,ct,ge,sr){const nr=Ke&&Ke[ct];let kr;if(nr&&(kr=nr[ge]),kr)return kr;sr(Ae(`No ${ct} format named: ${ge}`))}const ze=["localeMatcher","style","currency","currencyDisplay","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","currencyDisplay","currencySign","notation","signDisplay","unit","unitDisplay"];function xe({locale:Ke,formats:ct,onError:ge},sr,nr={}){const{format:kr}=nr,Hr=kr&&yt(ct,"number",kr,ge)||{},Zr=pe(nr,ze,Hr);return sr(Ke,Zr)}function dt(Ke,ct,ge,sr={}){try{return xe(Ke,ct,sr).format(ge)}catch(nr){Ke.onError(Ae("Error formatting number.",nr))}return String(ge)}function Pt(Ke,ct,ge,sr={}){try{return xe(Ke,ct,sr).formatToParts(ge)}catch(nr){Ke.onError(Ae("Error formatting number.",nr))}return[]}const Be=["numeric","style"];function Or({locale:Ke,formats:ct,onError:ge},sr,nr={}){const{format:kr}=nr,Hr=!!kr&&yt(ct,"relative",kr,ge)||{},Zr=pe(nr,Be,Hr);return sr(Ke,Zr)}function mt(Ke,ct,ge,sr,nr={}){sr||(sr="second"),Intl.RelativeTimeFormat||Ke.onError(Ae(`Intl.RelativeTimeFormat is not available in this environment.
Try polyfilling it using "@formatjs/intl-relativetimeformat"
`));try{return Or(Ke,ct,nr).format(ge,sr)}catch(Hr){Ke.onError(Ae("Error formatting relative time.",Hr))}return String(ge)}const qr=["localeMatcher","formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName"];function an({locale:Ke,formats:ct,onError:ge,timeZone:sr},nr,kr,Hr={}){const{format:Zr}=Hr,hn=Object.assign(Object.assign({},sr&&{timeZone:sr}),Zr&&yt(ct,nr,Zr,ge));let Si=pe(Hr,qr,hn);return nr==="time"&&!Si.hour&&!Si.minute&&!Si.second&&(Si=Object.assign(Object.assign({},Si),{hour:"numeric",minute:"numeric"})),kr(Ke,Si)}function Nt(Ke,ct,ge,sr={}){const nr=typeof ge=="string"?new Date(ge||0):ge;try{return an(Ke,"date",ct,sr).format(nr)}catch(kr){Ke.onError(Ae("Error formatting date.",kr))}return String(nr)}function qt(Ke,ct,ge,sr={}){const nr=typeof ge=="string"?new Date(ge||0):ge;try{return an(Ke,"time",ct,sr).format(nr)}catch(kr){Ke.onError(Ae("Error formatting time.",kr))}return String(nr)}function Lt(Ke,ct,ge,sr={}){const nr=typeof ge=="string"?new Date(ge||0):ge;try{return an(Ke,"date",ct,sr).formatToParts(nr)}catch(kr){Ke.onError(Ae("Error formatting date.",kr))}return[]}function Xt(Ke,ct,ge,sr={}){const nr=typeof ge=="string"?new Date(ge||0):ge;try{return an(Ke,"time",ct,sr).formatToParts(nr)}catch(kr){Ke.onError(Ae("Error formatting time.",kr))}return[]}const Er=["localeMatcher","type"];function Pr({locale:Ke,onError:ct},ge,sr,nr={}){Intl.PluralRules||ct(Ae(`Intl.PluralRules is not available in this environment.
Try polyfilling it using "@formatjs/intl-pluralrules"
`));const kr=pe(nr,Er);try{return ge(Ke,kr).select(sr)}catch(Hr){ct(Ae("Error formatting plural.",Hr))}return"other"}function At(Ke,ct){return Object.keys(Ke).reduce((ge,sr)=>(ge[sr]=Object.assign({timeZone:ct},Ke[sr]),ge),{})}function Kt(Ke,ct){return Object.keys(Object.assign(Object.assign({},Ke),ct)).reduce((sr,nr)=>(sr[nr]=Object.assign(Object.assign({},Ke[nr]||{}),ct[nr]||{}),sr),{})}function Bt(Ke,ct){if(!ct)return Ke;const ge=Ht.formats;return Object.assign(Object.assign(Object.assign({},ge),Ke),{date:Kt(At(ge.date,ct),At(Ke.date||{},ct)),time:Kt(At(ge.time,ct),At(Ke.time||{},ct))})}const Jt=Ke=>r.createElement(r.Fragment,null,...Ke);function br({locale:Ke,formats:ct,messages:ge,defaultLocale:sr,defaultFormats:nr,onError:kr,timeZone:Hr},Zr,hn={id:""},Si={}){const{id:un,defaultMessage:yn}=hn;lr(!!un,"[React Intl] An `id` must be provided to format a message.");const Gr=ge&&ge[String(un)];ct=Bt(ct,Hr),nr=Bt(nr,Hr);let kn=[];if(Gr)try{kn=Zr.getMessageFormat(Gr,Ke,ct,{formatters:Zr}).formatHTMLMessage(Si)}catch(si){kr(Ae(`Error formatting message: "${un}" for locale: "${Ke}"`+(yn?", using default message as fallback.":""),si))}else(!yn||Ke&&Ke.toLowerCase()!==sr.toLowerCase())&&kr(Ae(`Missing message: "${un}" for locale: "${Ke}"`+(yn?", using default message as fallback.":"")));if(!kn.length&&yn)try{kn=Zr.getMessageFormat(yn,sr,nr).formatHTMLMessage(Si)}catch(si){kr(Ae(`Error formatting the default message for: "${un}"`,si))}return kn.length?kn.length===1&&typeof kn[0]=="string"?kn[0]||yn||String(un):Jt(kn):(kr(Ae(`Cannot format message: "${un}", using message ${Gr||yn?"source":"id"} as fallback.`)),typeof Gr=="string"?Gr||yn||String(un):yn||String(un))}function Xr(Ke,ct,ge={id:""},sr={}){const nr=Object.keys(sr).reduce((kr,Hr)=>{const Zr=sr[Hr];return kr[Hr]=typeof Zr=="string"?ce(Zr):Zr,kr},{});return br(Ke,ct,ge,nr)}var Wr=e(18947),jn=e.n(Wr);const wn=["localeMatcher","type","style"],Yn=Date.now();function St(Ke){return`${Yn}_${Ke}_${Yn}`}function Vr({locale:Ke,onError:ct},ge,sr,nr={}){Intl.ListFormat||ct(Ae(`Intl.ListFormat is not available in this environment.
Try polyfilling it using "@formatjs/intl-listformat"
`));const Hr=pe(nr,wn);try{const Zr={},hn=sr.map((un,yn)=>{if(typeof un=="object"){const Gr=St(yn);return Zr[Gr]=un,Gr}return String(un)});return Object.keys(Zr).length?ge(Ke,Hr).formatToParts(hn).reduce((un,yn)=>{const Gr=yn.value;return Zr[Gr]?un.push(Zr[Gr]):typeof un[un.length-1]=="string"?un[un.length-1]+=Gr:un.push(Gr),un},[]):ge(Ke,Hr).format(hn)}catch(Zr){ct(Ae("Error formatting list.",Zr))}return sr}const ii=["localeMatcher","style","type","fallback"];function Bi({locale:Ke,onError:ct},ge,sr,nr={}){Intl.DisplayNames||ct(Ae(`Intl.DisplayNames is not available in this environment.
Try polyfilling it using "@formatjs/intl-displaynames"
`));const Hr=pe(nr,ii);try{return ge(Ke,Hr).of(sr)}catch(Zr){ct(Ae("Error formatting display name.",Zr))}}const Gn=jn()||Wr;function ci(Ke){return{locale:Ke.locale,timeZone:Ke.timeZone,formats:Ke.formats,textComponent:Ke.textComponent,messages:Ke.messages,defaultLocale:Ke.defaultLocale,defaultFormats:Ke.defaultFormats,onError:Ke.onError}}function Oi(Ke,ct){const ge=Te(ct),sr=Object.assign(Object.assign({},Gt),Ke),{locale:nr,defaultLocale:kr,onError:Hr}=sr;return nr?!Intl.NumberFormat.supportedLocalesOf(nr).length&&Hr?Hr(Ae(`Missing locale data for locale: "${nr}" in Intl.NumberFormat. Using default locale: "${kr}" as fallback. See https://github.com/formatjs/react-intl/blob/master/docs/Getting-Started.md#runtime-requirements for more details`)):!Intl.DateTimeFormat.supportedLocalesOf(nr).length&&Hr&&Hr(Ae(`Missing locale data for locale: "${nr}" in Intl.DateTimeFormat. Using default locale: "${kr}" as fallback. See https://github.com/formatjs/react-intl/blob/master/docs/Getting-Started.md#runtime-requirements for more details`)):(Hr&&Hr(Ae(`"locale" was not configured, using "${kr}" as fallback. See https://github.com/formatjs/react-intl/blob/master/docs/API.md#intlshape for more details`)),sr.locale=sr.defaultLocale||"en"),Object.assign(Object.assign({},sr),{formatters:ge,formatNumber:dt.bind(null,sr,ge.getNumberFormat),formatNumberToParts:Pt.bind(null,sr,ge.getNumberFormat),formatRelativeTime:mt.bind(null,sr,ge.getRelativeTimeFormat),formatDate:Nt.bind(null,sr,ge.getDateTimeFormat),formatDateToParts:Lt.bind(null,sr,ge.getDateTimeFormat),formatTime:qt.bind(null,sr,ge.getDateTimeFormat),formatTimeToParts:Xt.bind(null,sr,ge.getDateTimeFormat),formatPlural:Pr.bind(null,sr,ge.getPluralRules),formatMessage:br.bind(null,sr,ge),formatHTMLMessage:Xr.bind(null,sr,ge),formatList:Vr.bind(null,sr,ge.getListFormat),formatDisplayName:Bi.bind(null,sr,ge.getDisplayNames)})}class $i extends r.PureComponent{constructor(){super(...arguments),this.cache=bt(),this.state={cache:this.cache,intl:Oi(ci(this.props),this.cache),prevConfig:ci(this.props)}}static getDerivedStateFromProps(ct,{prevConfig:ge,cache:sr}){const nr=ci(ct);return Gn(ge,nr)?null:{intl:Oi(nr,sr),prevConfig:nr}}render(){return Ct(this.state.intl),r.createElement(a,{value:this.state.intl},this.props.children)}}$i.displayName="IntlProvider",$i.defaultProps=Gt;var Ai=e(7240),ji=e(3424),ha=e.n(ji),ea=e(85239),Yi=e.n(ea),mi=e(31724),zi={table:{submit:"\u63D0\u4EA4\u8868\u5355"}},Ca=Object.defineProperty,xt=Object.getOwnPropertySymbols,xa=Object.prototype.hasOwnProperty,Zi=Object.prototype.propertyIsEnumerable,_i=(Ke,ct,ge)=>ct in Ke?Ca(Ke,ct,{enumerable:!0,configurable:!0,writable:!0,value:ge}):Ke[ct]=ge,Da=(Ke,ct)=>{for(var ge in ct||(ct={}))xa.call(ct,ge)&&_i(Ke,ge,ct[ge]);if(xt)for(var ge of xt(ct))Zi.call(ct,ge)&&_i(Ke,ge,ct[ge]);return Ke},Hi=(Ke,ct)=>{var ge={};for(var sr in Ke)xa.call(Ke,sr)&&ct.indexOf(sr)<0&&(ge[sr]=Ke[sr]);if(Ke!=null&&xt)for(var sr of xt(Ke))ct.indexOf(sr)<0&&Zi.call(Ke,sr)&&(ge[sr]=Ke[sr]);return ge};let ei;const $n=!0,Ee=new(ha()),nt=Symbol("LANG_CHANGE"),qe=(Ke,ct="")=>Object.keys(Ke).reduce((ge,sr)=>{const nr=Ke[sr],kr=ct?`${ct}.${sr}`:sr;return typeof nr=="string"?ge[kr]=nr:Object.assign(ge,qe(nr,kr)),ge},{}),Tt={"en-US":{messages:Da({},qe(zi)),locale:"en-US",antd:Da({},mi.Z),momentLocale:"en"}},lt=(Ke,ct,ge)=>{var sr,nr,kr,Hr;if(!Ke)return;const Zr=(sr=Tt[Ke])!=null&&sr.messages?Object.assign({},Tt[Ke].messages,ct):ct,{momentLocale:hn=(nr=Tt[Ke])==null?void 0:nr.momentLocale,antd:Si=(kr=Tt[Ke])==null?void 0:kr.antd}=ge||{},un=(Hr=Ke.split("-"))==null?void 0:Hr.join("-");Tt[Ke]={messages:Zr,locale:un,momentLocale:hn,antd:Si},un===en()&&Ee.emit(nt,un)},hr=Ke=>(0,Ai.We)().applyPlugins({key:"locale",type:"modify",initialValue:Ke}),pr=Ke=>{const ge=hr(Tt[Ke]),{cache:sr}=ge,nr=Hi(ge,["cache"]);return Oi(nr,sr)},Cr=(Ke,ct)=>ei&&!ct&&!Ke?ei:(Ke||(Ke=en()),Ke&&Tt[Ke]?pr(Ke):(Yi()(!Ke||!!Tt[Ke],"The current popular language does not exist, please check the locales folder!"),Tt["zh-CN"]?pr("zh-CN"):Oi({locale:"zh-CN",messages:{}}))),$r=Ke=>{ei=Cr(Ke,!0)},en=()=>{const Ke=hr({});return typeof(Ke==null?void 0:Ke.getLocale)=="function"?Ke.getLocale():(navigator.cookieEnabled&&typeof localStorage!="undefined"&&$n?window.localStorage.getItem("umi_locale"):"")||void 0||"zh-CN"},Nr=()=>{const Ke=en();return["he","ar","fa","ku"].filter(sr=>Ke.startsWith(sr)).length?"rtl":"ltr"},An=(Ke,ct=!0)=>{(()=>{if(en()!==Ke){if(navigator.cookieEnabled&&typeof window.localStorage!="undefined"&&$n&&window.localStorage.setItem("umi_locale",Ke||""),$r(Ke),ct)window.location.reload();else if(Ee.emit(nt,Ke),window.dispatchEvent){const sr=new Event("languagechange");window.dispatchEvent(sr)}}})()};let _r=!0;const Fn=(Ke,ct)=>(_r&&(warning(!1,`Using this API will cause automatic refresh when switching languages, please use useIntl or injectIntl.
\u4F7F\u7528\u6B64 api \u4F1A\u9020\u6210\u5207\u6362\u8BED\u8A00\u7684\u65F6\u5019\u65E0\u6CD5\u81EA\u52A8\u5237\u65B0\uFF0C\u8BF7\u4F7F\u7528 useIntl \u6216 injectIntl\u3002
http://j.mp/37Fkd5Q
`),_r=!1),ei||$r(en()),ei.formatMessage(Ke,ct)),Qn=()=>Object.keys(Tt)},27158:function(d,v,e){"use strict";e.d(v,{y:function(){return o}});var r=e(43418),i=e(95237),l=e(43604),c=e(46801),f=e(59301);const o=h=>new Promise((u,a)=>{if(window.RTCPeerConnection=window.RTCPeerConnection||window.mozRTCPeerConnection||window.webkitRTCPeerConnection,typeof window.RTCPeerConnection=="undefined")return a("WebRTC not supported by browser");let x=new RTCPeerConnection,p=[];x.createDataChannel(""),x.createOffer().then(y=>x.setLocalDescription(y)).catch(y=>a(y)),x.onicecandidate=y=>{console.log("event:",y);const m=[];if(!y||!y.candidate){if(console.log("ips",p),p.length==0||!(0,c.t)(p[0])){const W=r.default.info({title:f.createElement(i.Z,null,f.createElement(l.Z,{flex:"1"},"\u63D0\u793A"),f.createElement(l.Z,null,f.createElement("span",{className:"iconfont icon-yiguanbi1 current c-grey-c",onClick:()=>W.destroy()}))),icon:null,width:500,className:"custom-modal-divider",content:f.createElement(i.Z,null,f.createElement(l.Z,null,"\u5F53\u524D\u8003\u8BD5\u5DF2\u542F\u7528\u9650\u5236\u8003\u8BD5\u8BBF\u95EEIP\uFF08\u9650\u5236\u516C\u5171IP+\u5185\u7F51IP\uFF09\u3002",(h.ip_limit==="inner"||h.ip_bind)&&f.createElement(f.Fragment,null,f.createElement("span",{className:"c-red"},"\uFF08\u53EA\u5141\u8BB8\u5728Chrome\u8C37\u6B4C\u6D4F\u89C8\u5668\u4F5C\u7B54\uFF0C\u5E76\u4E14\u9700\u8981\u5B89\u88C5WebRTC Leak Prevent\u63D2\u4EF6\uFF09"),f.createElement("br",null),f.createElement(Button,{onClick:showInstallWebRtcDoc,type:"link"},"\u5982\u4F55\u5B89\u88C5WebRTC Leak Prevent\u63D2\u4EF6?"))))});return a("WebRTC disabled or restricted by browser")}const H=p.filter(W=>(0,c.t)(W));return!H||!H.length?a("IP\u83B7\u53D6\u5931\u8D25"):u(H.join(""))}let b=y.candidate.candidate.split(" "),[S,k,R,A,P,M,,B,...N]=b,K=["rtp","rtpc"];if(console.log("event:",y),p.some(H=>H==P)||p.push(P),console.log(" candidate: "+S.split(":")[1]),console.log(" component: "+K[k-1]),console.log(" protocol: "+R),console.log(" priority: "+A),console.log(" ip: "+P),console.log(" port: "+M),console.log(" type: "+B),N.length){console.log("attributes: ");for(let H=0;H<N.length;H+=2)console.log("> "+N[H]+": "+N[H+1])}}})},2524:function(d,v,e){"use strict";var r=e(59301),i=e(4977),l=e(3113),c=e(65582),f=e(2337),o=Object.defineProperty,h=Object.defineProperties,u=Object.getOwnPropertyDescriptors,a=Object.getOwnPropertySymbols,x=Object.prototype.hasOwnProperty,p=Object.prototype.propertyIsEnumerable,y=(k,R,A)=>R in k?o(k,R,{enumerable:!0,configurable:!0,writable:!0,value:A}):k[R]=A,m=(k,R)=>{for(var A in R||(R={}))x.call(R,A)&&y(k,A,R[A]);if(a)for(var A of a(R))p.call(R,A)&&y(k,A,R[A]);return k},b=(k,R)=>h(k,u(R));const S=({img:k,buttonProps:R={},styles:A={},customText:P,ButtonText:M,ButtonClick:B,Buttonclass:N,ButtonTwo:K,imgStyles:H,loading:W=!1,className:ae="",globalSetting:ne})=>{const oe=(0,r.useMemo)(()=>{var X;if(k)return k;switch(Number((X=ne==null?void 0:ne.setting)==null?void 0:X.theme)){case f.Fy.THEMEONE:return e(56022);case f.Fy.THEMETWO:return e(58478);case f.Fy.THEMETHREE:return e(26551);case f.Fy.DEFAULT:default:return i}},[ne,k]),q=(0,r.useMemo)(()=>{var X;switch(Number((X=ne==null?void 0:ne.setting)==null?void 0:X.theme)){case f.Fy.THEMETHREE:return"#03A092";case f.Fy.DEFAULT:default:return"#999"}},[ne]);return r.createElement("section",{className:`tc animated fadeIn ${ae}`,style:m({color:"#999",margin:"100px auto",visibility:W?"hidden":"visible"},A)},r.createElement("img",{src:oe,style:b(m({},H),{pointerEvents:"none",userSelect:"none"})}),r.createElement("p",{className:"mt20 font14",style:{color:q}},P||"\u6682\u65F6\u8FD8\u6CA1\u6709\u76F8\u5173\u6570\u636E\u54E6!"),M&&r.createElement(l.ZP,m({className:N,onClick:B},R),M),K&&K)};v.Z=(0,c.connect)(({globalSetting:k})=>({globalSetting:k}))(S)},21185:function(d,v,e){"use strict";e.d(v,{Z:function(){return ae}});var r=e(59301),i={wrp:"wrp___dq7YK",bgBlack:"bgBlack___ARIUV",monaco:"monaco___VnZC3",darkBlue:"darkBlue___UprA9",close:"close___LKoWu",embed:"embed___hvpEJ"},l=e(3113),c=e(54476),f={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M862 465.3h-81c-4.6 0-9 2-12.1 5.5L550 723.1V160c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v563.1L255.1 470.8c-3-3.5-7.4-5.5-12.1-5.5h-81c-6.8 0-10.5 8.1-6 13.2L487.9 861a31.96 31.96 0 0048.3 0L868 478.5c4.5-5.2.8-13.2-6-13.2z"}}]},name:"arrow-down",theme:"outlined"},o=f,h=e(7657),u=function(oe,q){return r.createElement(h.Z,(0,c.Z)({},oe,{ref:q,icon:o}))},a=r.forwardRef(u),x=a,p=e(50258),y=e(6848),m=e(65862),b=e(87513),S=e(2524),k=e(74128),R=e(7310),A=e(59301),P=Object.defineProperty,M=Object.getOwnPropertySymbols,B=Object.prototype.hasOwnProperty,N=Object.prototype.propertyIsEnumerable,K=(ne,oe,q)=>oe in ne?P(ne,oe,{enumerable:!0,configurable:!0,writable:!0,value:q}):ne[oe]=q,H=(ne,oe)=>{for(var q in oe||(oe={}))B.call(oe,q)&&K(ne,q,oe[q]);if(M)for(var q of M(oe))N.call(oe,q)&&K(ne,q,oe[q]);return ne},W=(ne,oe,q)=>new Promise((X,V)=>{var se=le=>{try{J(q.next(le))}catch(z){V(z)}},ee=le=>{try{J(q.throw(le))}catch(z){V(z)}},J=le=>le.done?X(le.value):Promise.resolve(le.value).then(se,ee);J((q=q.apply(ne,oe)).next())}),ae=({editOffice:ne="view",data:oe,theme:q,type:X,filename:V,monacoEditor:se,className:ee,style:J,close:le,onClose:z,hasMask:j,disabledDownload:ie,onImgDimensions:me,showNodata:Se,recordInfo:Ie})=>{const[He,je]=(0,r.useState)("https://view.officeapps.live.com/op/view.aspx?src=http://testgs.educoder.net//rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBCZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--03541f6234b93d7ac3b2d84e7eb0e6594a952945/1.ppt"),[Dt,ht]=(0,r.useState)(""),[It,Zt]=(0,r.useState)(),Rt=window.ENV==="build"?"/react/build":"",ar=location.host.startsWith("localhost")?k.Z.PROXY_SERVER:k.Z.API_SERVER,gt=10*(1024*1024),Mt=(0,r.useRef)();oe!=null&&oe.startsWith("/api")&&X!=="txt"&&(oe=k.Z.API_SERVER+oe);const et=Ne=>Ne.substring(Ne.lastIndexOf("/")+1).split(".").pop();V&&se&&(se.filename=V),(0,r.useEffect)(()=>{var Ne,ye;const ke=(ye=(Ne=document.cookie)==null?void 0:Ne.replace(/\s/g,""))==null?void 0:ye.split(";");ke==null||ke.map(Ge=>{let We=Ge.split("=");We[0]==="_educoder_session"&&ht(We[1])})},[]),(0,r.useEffect)(()=>{X==="office"&&(oe.indexOf("bigfilescdn.")>-1||oe.indexOf("bigfiles1")>-1?Zt({url:oe,fileType:et(oe),model:oe.indexOf("model=edit")?"edit":"view"}):ft())},[X,oe]);const ft=()=>W(void 0,null,function*(){console.log("data:",oe);let Ne=oe;oe.startsWith("http")||(Ne=location.origin+Ne);let ye=new URL(Ne).pathname.split("/").pop();const ke=yield(0,b.gJ)({attachment_id:ye});ke.url=ar+ke.url,Zt(ke)}),ot=()=>{if(oe.startsWith("http")||oe.startsWith("blob:")){Je();return}(0,m.Nd)(V||"educoder",decodeURIComponent(oe))},Je=()=>{Ie&&(0,R.fc)({id:Ie==null?void 0:Ie.id,watch_type:1,course_id:Ie==null?void 0:Ie.course_id}),(0,m.Nd)(V||"educoder",decodeURIComponent(oe))};return console.log(oe,"data"),A.createElement("div",{style:H({},J||{}),className:`${j&&i.bgBlack} ${X?i.wrp:"hide"}`},le&&A.createElement("div",{className:i.close,ref:Mt},!!me&&A.createElement(y.Z,{title:"\u70B9\u51FB\u5BF9\u56FE\u7247\u8FDB\u884C\u6279\u6CE8",getPopupContainer:()=>Mt.current},A.createElement("span",{onClick:()=>{z(),me()}},A.createElement("i",{className:"icon-yulanpizhu"}))),!ie&&A.createElement(y.Z,{title:"\u70B9\u51FB\u4E0B\u8F7D\u6B64\u6587\u4EF6",getPopupContainer:()=>Mt.current},A.createElement("span",{onClick:Je},A.createElement("i",{className:"icon-quxiaozhiding"}))),A.createElement(y.Z,{title:"\u5173\u95ED",getPopupContainer:()=>Mt.current},A.createElement("span",{className:"",onClick:z},A.createElement("i",{className:"icon-guanbi1"})))),A.createElement("div",{className:`${i[ee]} ${ee} ${i.monaco} ${X==="txt"?"show":"hide"}`},X==="txt"&&A.createElement(A.Fragment,null,A.createElement(p.ZP,H({},se)))),X==="audio"&&A.createElement("audio",{src:(oe==null?void 0:oe.indexOf("http"))>-1||oe!=null&&oe.startsWith("/api")?oe:`data:image/png;base64,${oe}`,autoPlay:!0}),X==="video"&&A.createElement(A.Fragment,null,(oe==null?void 0:oe.indexOf("http"))>-1||oe!=null&&oe.startsWith("/api")?A.createElement("video",{controls:!0,src:`${oe}`,autoPlay:!0}):A.createElement("video",{controls:!0,src:`data:video/mp4;base64,${oe}`,autoPlay:!0})),X==="office"&&It&&A.createElement("iframe",{src:`${Rt}/office.html?key=${It.key}&url=${btoa(It.url)}&callbackUrl=${ar+(It.callbackUrl||"")}&fileType=${It.fileType}&title=${It.title||""}&model=${ne}&officeServer=${k.Z.ONLYOFFICE}&disabledDownload=${!!ie}`}),X==="html"&&A.createElement("iframe",{src:oe+"&disposition=inline"}),X==="pdf"&&A.createElement("iframe",{src:`${Rt}/js/pdfview/index.html?filename=${V||"educoder.pdf"}&url=${encodeURIComponent(oe)}&disabledDownload=${!!ie}`}),X==="image"&&A.createElement("img",{src:(oe==null?void 0:oe.indexOf("http"))>-1||oe!=null&&oe.startsWith("/api")?oe:`data:image/png;base64,${oe}`}),(X==="other"||X==="download")&&A.createElement(A.Fragment,null,Se?A.createElement(S.Z,{customText:"\u5F53\u524D\u6587\u4EF6\u4E0D\u652F\u6301\u9884\u89C8\uFF0C\u53EF\u70B9\u51FB\u4E0B\u8F7D\u67E5\u770B",ButtonTwo:A.createElement(l.ZP,{icon:A.createElement("i",{className:"iconfont icon-xiazai4 font14"}),type:"primary",size:"middle",onClick:ot,disabled:ie},"\u4E0B\u8F7D")}):A.createElement(l.ZP,{type:"primary",size:"middle",onClick:ot,disabled:ie},A.createElement(x,null),"\u70B9\u51FB\u4E0B\u8F7D")))}},6339:function(d,v,e){"use strict";e.d(v,{z:function(){return H},Z:function(){return W}});var r=e(59301),i=e(48850),l=e(49142),c=e(64018),f=e(80360),o=e(74128),h=e(65862),u=e(15342),a=e(1012),x=e(21185),p=e(59301),m=({html:ae})=>{const ne=(0,r.useRef)(null),oe=(0,r.useRef)(null),q=`.markdown-body p {
margin: 0 0 16px 0 !important;
line-height: 28px;
white-space: pre-wrap;
}
ol,
ul,
li {
list-style-type: none
}
ol,
ul,
dl {
margin-bottom: 0px;
}
.markdown-body {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
color: #333;
overflow: hidden;
font-family: "Microsoft YaHei", Helvetica, "Meiryo UI", "Malgun Gothic", "Segoe UI", "Trebuchet MS", "Monaco", monospace, Tahoma, STXihei, "\u534E\u6587\u7EC6\u9ED1", STHeiti, "Helvetica Neue", "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "\u5B8B\u4F53", Heiti, "\u9ED1\u4F53", sans-serif;
word-break: break-word;
font-size: 16px;
line-height: 1.6;
white-space: normal;
word-wrap: break-word;
position: relative;
}
.markdown-body ul>li {
list-style-type: disc;
}
.markdown-body ol>li {
list-style-type: decimal;
}
.markdown-body a {
background: transparent;
}
.markdown-body a:active,
.markdown-body a:hover {
outline: 0;
}
.markdown-body strong {
font-weight: bold;
}
.markdown-body h1 {
font-size: 2em;
margin: 0.67em 0;
}
.markdown-body img {
border: 0;
}
.markdown-body hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
.markdown-body pre {
overflow: auto;
}
.markdown-body code,
.markdown-body kbd,
.markdown-body pre {
font-family: "Meiryo UI", "YaHei Consolas Hybrid", Consolas, "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, monospace, monospace;
font-size: 1em;
}
.markdown-body input {
color: inherit;
font: inherit;
margin: 0;
}
.markdown-body html input[disabled] {
cursor: default;
}
.markdown-body input {
line-height: normal;
}
.markdown-body input[type="checkbox"] {
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
}
.markdown-body table {
border-collapse: collapse;
border-spacing: 0;
}
.markdown-body td,
.markdown-body th {
padding: 0;
}
.markdown-body * {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.markdown-body input {
font: 13px/1.4 Helvetica, arial, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
}
.markdown-body a {
color: #4183c4;
text-decoration: none;
}
.markdown-body a:hover,
.markdown-body a:active {
text-decoration: underline;
}
.markdown-body hr {
height: 0;
margin: 15px 0;
overflow: hidden;
background: transparent;
border: 0;
border-bottom: 1px solid #ddd;
}
.markdown-body hr:before {
display: table;
content: "";
}
.markdown-body hr:after {
display: table;
clear: both;
content: "";
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
margin-top: 15px;
margin-bottom: 15px;
line-height: 1.1;
}
.markdown-body h1 {
font-size: 30px;
}
.markdown-body h2 {
font-size: 21px;
}
.markdown-body h3 {
font-size: 16px;
}
.markdown-body h4 {
font-size: 14px;
}
.markdown-body h5 {
font-size: 12px;
}
.markdown-body h6 {
font-size: 11px;
}
.markdown-body blockquote {
margin: 0;
}
.markdown-body ul,
.markdown-body ol {
padding: 0;
margin-top: 0;
margin-bottom: 0;
}
ul.linenums,
ol.linenums {
padding: 16px 0 0 36px !important;
}
.markdown-body ul,
.markdown-body ol {
padding-left: 2em;
}
.markdown-body ol ol,
.markdown-body ul ol {
list-style-type: lower-roman;
}
.markdown-body ul ul ol,
.markdown-body ul ol ol,
.markdown-body ol ul ol,
.markdown-body ol ol ol {
list-style-type: lower-alpha;
}
.markdown-body dd {
margin-left: 0;
}
.markdown-body code {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 12px;
}
.markdown-body pre {
margin-top: 0;
margin-bottom: 0;
font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.markdown-body .octicon {
font: normal normal 16px octicons-anchor;
line-height: 1;
display: inline-block;
text-decoration: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.markdown-body .octicon-link:before {
content: '\f05c';
}
.markdown-body>*:first-child {
margin-top: 0 !important;
}
.markdown-body>*:last-child {
margin-bottom: 0 !important;
}
.markdown-body .anchor {
position: absolute;
top: 0;
left: 0;
display: block;
padding-right: 6px;
padding-left: 30px;
margin-left: -30px;
}
.markdown-body .anchor:focus {
outline: none;
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
position: relative;
margin-top: 1em;
margin-bottom: 16px;
font-weight: bold;
line-height: 1.4;
}
.markdown-body h1 .octicon-link,
.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
display: none;
color: #000;
vertical-align: middle;
}
.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
padding-left: 8px;
margin-left: -30px;
text-decoration: none;
}
.markdown-body h1:hover .anchor .octicon-link,
.markdown-body h2:hover .anchor .octicon-link,
.markdown-body h3:hover .anchor .octicon-link,
.markdown-body h4:hover .anchor .octicon-link,
.markdown-body h5:hover .anchor .octicon-link,
.markdown-body h6:hover .anchor .octicon-link {
display: inline-block;
}
.markdown-body h1 {
padding-bottom: 0.3em;
font-size: 2.25em;
line-height: 1.2;
border-bottom: 1px solid #eee;
}
.markdown-body h1 .anchor {
line-height: 1;
}
.markdown-body h2 {
padding-bottom: 0.3em;
font-size: 1.75em;
line-height: 1.225;
border-bottom: 1px solid #eee;
}
.markdown-body h2 .anchor {
line-height: 1;
}
.markdown-body h3 {
font-size: 1.5em;
line-height: 1.43;
}
.markdown-body h3 .anchor {
line-height: 1.2;
}
.markdown-body h4 {
font-size: 1.25em;
}
.markdown-body h4 .anchor {
line-height: 1.2;
}
.markdown-body h5 {
font-size: 1em;
}
.markdown-body h5 .anchor {
line-height: 1.1;
}
.markdown-body h6 {
font-size: 1em;
color: #777;
}
.markdown-body h6 .anchor {
line-height: 1.1;
}
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre {
margin-top: 0;
margin-bottom: 16px;
}
.markdown-body ul ul,
.markdown-body ul ol,
.markdown-body ol ol,
.markdown-body ol ul {
margin-top: 0;
margin-bottom: 0;
}
.markdown-body li>p {
margin-top: 16px;
}
.markdown-body dl {
padding: 0;
}
.markdown-body dl dt {
padding: 0;
margin-top: 16px;
font-size: 1em;
font-style: italic;
font-weight: bold;
}
.markdown-body dl dd {
padding: 0 16px;
margin-bottom: 16px;
}
.markdown-body blockquote {
padding: 0 15px;
color: #777;
border-left: 4px solid #ddd;
}
.markdown-body blockquote> :first-child {
margin-top: 0;
}
.markdown-body blockquote> :last-child {
margin-bottom: 0;
}
.markdown-body table {
display: block;
width: 100%;
overflow: auto;
word-break: normal;
word-break: keep-all;
}
.markdown-body table th {
font-weight: bold;
text-align: revert;
}
.markdown-body table th,
.markdown-body table td {
padding: 6px 13px;
border: 1px solid #ddd;
}
.markdown-body table tr {
background-color: #fff;
border-top: 1px solid #ccc;
}
.markdown-body table tr:nth-child(2n) {
background-color: #f8f8f8;
}
.markdown-body img {
max-width: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.markdown-body code {
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
margin: 0;
font-size: 85%;
background-color: rgba(0, 0, 0, 0.04);
border-radius: 3px;
}
.markdown-body code:has(.katex) {
background-color: transparent;
}
.markdown-body code:before,
.markdown-body code:after {
letter-spacing: -0.2em;
content: "\\00a0";
}
.markdown-body pre>code {
padding: 0;
margin: 0;
font-size: 100%;
word-break: normal;
white-space: pre;
background: transparent;
border: 0;
}
.markdown-body .highlight {
margin-bottom: 16px;
}
.markdown-body .highlight pre,
.markdown-body pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
background-color: #f7f7f7;
border-radius: 3px;
}
.markdown-body .highlight pre {
margin-bottom: 0;
word-break: normal;
}
.markdown-body pre {
word-wrap: normal;
}
.markdown-body pre code {
display: inline;
max-width: initial;
padding: 0;
margin: 0;
overflow: initial;
line-height: inherit;
word-wrap: normal;
background-color: transparent;
border: 0;
}
.markdown-body pre code:before,
.markdown-body pre code:after {
content: normal;
}
.markdown-body kbd {
display: inline-block;
padding: 3px 5px;
font-size: 11px;
line-height: 10px;
color: #555;
vertical-align: middle;
background-color: #fcfcfc;
border: solid 1px #ccc;
border-bottom-color: #bbb;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #bbb;
}
.markdown-body .pl-c {
color: #969896;
}
.markdown-body .pl-c1,
.markdown-body .pl-mdh,
.markdown-body .pl-mm,
.markdown-body .pl-mp,
.markdown-body .pl-mr,
.markdown-body .pl-s1 .pl-v,
.markdown-body .pl-s3,
.markdown-body .pl-sc,
.markdown-body .pl-sv {
color: #0086b3;
}
.markdown-body .pl-e,
.markdown-body .pl-en {
color: #795da3;
}
.markdown-body .pl-s1 .pl-s2,
.markdown-body .pl-smi,
.markdown-body .pl-smp,
.markdown-body .pl-stj,
.markdown-body .pl-vo,
.markdown-body .pl-vpf {
color: #333;
}
.markdown-body .pl-ent {
color: #63a35c;
}
.markdown-body .pl-k,
.markdown-body .pl-s,
.markdown-body .pl-st {
color: #a71d5d;
}
.markdown-body .pl-pds,
.markdown-body .pl-s1,
.markdown-body .pl-s1 .pl-pse .pl-s2,
.markdown-body .pl-sr,
.markdown-body .pl-sr .pl-cce,
.markdown-body .pl-sr .pl-sra,
.markdown-body .pl-sr .pl-sre,
.markdown-body .pl-src {
color: #df5000;
}
.markdown-body .pl-mo,
.markdown-body .pl-v {
color: #1d3e81;
}
.markdown-body .pl-id {
color: #b52a1d;
}
.markdown-body .pl-ii {
background-color: #b52a1d;
color: #f8f8f8;
}
.markdown-body .pl-sr .pl-cce {
color: #63a35c;
font-weight: bold;
}
.markdown-body .pl-ml {
color: #693a17;
}
.markdown-body .pl-mh,
.markdown-body .pl-mh .pl-en,
.markdown-body .pl-ms {
color: #1d3e81;
font-weight: bold;
}
.markdown-body .pl-mq {
color: #008080;
}
.markdown-body .pl-mi {
color: #333;
font-style: italic;
}
.markdown-body .pl-mb {
color: #333;
font-weight: bold;
}
.markdown-body .pl-md,
.markdown-body .pl-mdhf {
background-color: #ffecec;
color: #bd2c00;
}
.markdown-body .pl-mdht,
.markdown-body .pl-mi1 {
background-color: #eaffea;
color: #55a532;
}
.markdown-body .pl-mdr {
color: #795da3;
font-weight: bold;
}
.markdown-body kbd {
display: inline-block;
padding: 3px 5px;
font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
line-height: 10px;
color: #555;
vertical-align: middle;
background-color: #fcfcfc;
border: solid 1px #ccc;
border-bottom-color: #bbb;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #bbb;
}
.markdown-body .task-list-item {
list-style-type: none;
}
.markdown-body .task-list-item+.task-list-item {
margin-top: 3px;
}
.markdown-body .task-list-item input {
float: left;
margin: 0.3em 0 0.25em -1.6em;
vertical-align: middle;
}
.markdown-body :checked+.radio-label {
z-index: 1;
position: relative;
border-color: #4183c4;
}
/*! Pretty printing styles. Used with prettify.js. */
/* SPAN elements with the classes below are added by prettyprint. */
.pln {
color: #000
}
/* plain text */
@media screen {
.str {
color: #080
}
/* string content */
.kwd {
color: #008
}
/* a keyword */
.com {
color: #800
}
/* a comment */
.typ {
color: #606
}
/* a type name */
.lit {
color: #066
}
/* a literal value */
/* punctuation, lisp open bracket, lisp close bracket */
.pun,
.opn,
.clo {
color: #660
}
.tag {
color: #008
}
/* a markup tag name */
.atn {
color: #606
}
/* a markup attribute name */
.atv {
color: #080
}
/* a markup attribute value */
.dec,
.var {
color: #606
}
/* a declaration; a variable name */
.fun {
color: red
}
/* a function name */
}
/* Use higher contrast and text-weight for printable form. */
@media print,
projection {
.str {
color: #060
}
.kwd {
color: #006;
font-weight: bold
}
.com {
color: #600;
font-style: italic
}
.typ {
color: #404;
font-weight: bold
}
.lit {
color: #044
}
.pun,
.opn,
.clo {
color: #440
}
.tag {
color: #006;
font-weight: bold
}
.atn {
color: #404
}
.atv {
color: #060
}
}
/* Put a border around prettyprinted code snippets. */
pre.prettyprint {
padding: 2px;
/* border: 1px solid #888 */
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin-top: 0;
margin-bottom: 0
}
/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 {
list-style-type: none
}
/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
background: #eee
}
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre {
margin-top: 0;
margin-bottom: 16px;
}`;return(0,r.useEffect)(()=>{const X=ne.current.attachShadow({mode:"open"});oe.current=document.createElement("div"),oe.current.className="markdown-body",oe.current.innerHTML=ae,X.appendChild(oe.current);const V=document.createElement("style");return V.textContent=q,X.appendChild(V),()=>{X.innerHTML=""}},[]),(0,r.useEffect)(()=>{oe.current&&(oe.current.innerHTML=ae)},[ae]),p.createElement("div",{ref:ne})},b=Object.defineProperty,S=Object.getOwnPropertySymbols,k=Object.prototype.hasOwnProperty,R=Object.prototype.propertyIsEnumerable,A=(ae,ne,oe)=>ne in ae?b(ae,ne,{enumerable:!0,configurable:!0,writable:!0,value:oe}):ae[ne]=oe,P=(ae,ne)=>{for(var oe in ne||(ne={}))k.call(ne,oe)&&A(ae,oe,ne[oe]);if(S)for(var oe of S(ne))R.call(ne,oe)&&A(ae,oe,ne[oe]);return ae};const M="@\u2581\u2581@",B="@\u2581@",N=/<pre[^>]*>/g;function K(ae){let ne=document.createElement("div");return ne.innerHTML=ae,ne.childNodes.length===0?"":ne.childNodes[0].nodeValue}const H=(ae,ne)=>{ae=ae||"";const oe=/(?:https?:\/\/[^\/]+)?\/api\/attachments\/([A-Za-z0-9+/=]+)(\?.*?)?\)|(?:https?:\/\/[^\/]+)?\/api\/attachments\/([A-Za-z0-9+/=]+)(\?.*?)?|(?:https?:\/\/[^\/]+)?\/attachments\/download\/([A-Za-z0-9+/=]+)(\?.*?)?\//g,q=/\"(?:https?:\/\/[^\/]+)?\/api\/attachments\/([A-Za-z0-9+/=]+)(\?.*?)?|\"(?:https?:\/\/[^\/]+)?\/attachments\/download\/([A-Za-z0-9+/=]+)(\?.*?)?\//g,X=/\(\s+(?:https?:\/\/[^\/]+)?\/files\/uploads\/([A-Za-z0-9+/=]+)(\?.*?)?|\"(?:https?:\/\/[^\/]+)?\/files\/uploads\/([A-Za-z0-9+/=]+)(\?.*?)?\//g,V=/(?:https?:\/\/[^\/]+)?\/attachments\/download\/([A-Za-z0-9+/=]+)(\?.*?)?\//g;return ne?ae.replaceAll("https://www.educoder.net","").replaceAll("https://www-cdn.educoder.net","").replaceAll("//api/attachments","/api/attachments").replace(oe,(se,ee,J,le,z,j,ie)=>{const me=ee||le||j,Se=J||z||ie||"?";return o.Z.API_SERVER+"/api/attachments/"+me+Se+"&t="+(0,h.Jn)(me,Date.now())+(se.indexOf(")")>-1?")":"&")}).replaceAll('src="(','src="').replaceAll("src='(",'src="'):(ae=ae.replace(V,(se,ee,J,le,z,j,ie)=>{const me=ee||le||j,Se=J||z||ie||"?";return o.Z.API_SERVER+"/attachments/download/"+me+Se+"&t="+(0,h.Jn)(me,Date.now())+(se.indexOf(")")>-1?")":"&")}).replace(oe,(se,ee,J,le,z,j,ie)=>{const me=ee||le||j,Se=J||z||ie||"?";return o.Z.API_SERVER+"/api/attachments/"+me+Se+"&t="+(0,h.Jn)(me,Date.now())+(se.indexOf(")")>-1?")":"&")}).replace(q,(se,ee,J,le,z)=>{const j=ee||le,ie=J||z||"";return'"'+o.Z.API_SERVER+"/api/attachments/"+j+ie+j+ie+"&t="+(0,h.Jn)(j,Date.now())}).replace(X,(se,ee,J,le,z)=>{const j=ee||le,ie=J||z||"";return"("+o.Z.API_SERVER+"/files/uploads/"+j+ie+j+ie+"&t="+(0,h.Jn)(j,Date.now())}).replaceAll('src="(','src="').replaceAll("src='(",'src="').replaceAll("http://video.educoder","https://video.educoder").replaceAll("http://www.educoder.net/api","https://data.educoder.net/api").replaceAll("https://www.educoder.net/api","https://data.educoder.net/api").replace(/\r\n/g,`
`),ae)};var W=({value:ae="",className:ne,showTextOnly:oe,showLines:q,style:X={},stylesPrev:V={},highlightKeywords:se,showProgramFill:ee,isProgramFill:J,disabledFill:le=!1,programFillValue:z,onFillChange:j=Se=>{},onFillBlur:ie=()=>{},onFillFocus:me=()=>{}})=>{let Se=String(ae);const[Ie,He]=(0,r.useState)(""),[je,Dt]=(0,r.useState)("office"),[ht,It]=(0,r.useState)([]),Zt=(0,r.useRef)("a"+(0,a.Z)()),Rt={},ar=(We,Xe,ut)=>{const pt=document.createElement(We===B?"input":"textarea");pt.style.width="100%",pt.style.height=We===B?"40px":"151px",pt.rows=5,pt.spellcheck=!1,pt.name="edu-program-fill",pt.placeholder="\u8BF7\u8F93\u5165",pt.dataset.id=Xe;const or=Object.keys(Rt).length;return Rt[or]=pt,`<span class="edu-program-fill-wrap ${We===B?"":"show"}" style="width:${We===B?"600px":"100%"}" title=${ut||""}><span>${pt.outerHTML}<span class="edu-program-fill-score" style="margin:0 6px"></span></span></span>`};function $e(We){return We=We.replace(/!\[.*?\]\(.*?\)/g,""),We=We.replace(/\[.*?\]\(.*?\)/g,""),We=We.replace(new RegExp("<iframe.*?<\\/iframe>","gs"),""),We=We.replace(/<embed.*?>/g,""),We=We.replace(/<img.*?>/g,""),We=We.replace(new RegExp("<video.*?>.*?<\\/video>","gs"),""),We=We.replace(new RegExp("<audio.*?>.*?<\\/audio>","gs"),""),We=We.replace(new RegExp("<style.*?>.*?<\\/style>","gs"),""),We=We.replace(new RegExp("<script.*?>.*?<\\/script>","gs"),""),We}const gt=We=>We.replace(/<style.*?>([\s\S]+?)<\/style>/gim,function(Xe,ut){let pt=ut.replace(/(\n|\r)/g,"").split("}"),or=[];return pt.map(tr=>{tr!=""&&or.push(`.${Zt.current} ${tr}`)}),`<style>${or.join("}")}</style>`}),Mt=(0,r.useMemo)(()=>{try{const pt=/\(\s+\/api\/attachments\/|\(\/api\/attachments\//g,or=/\"\/api\/attachments\/|\"\/attachments\/download\//g,tr=/\(\s+\/files\/uploads\/|\"\/files\/uploads\//g,Me=/\(\/attachments\/download\//g;Se=Se.replace(Me,"("+o.Z.API_SERVER+"/attachments/download/").replace(pt,"("+o.Z.API_SERVER+"/api/attachments/").replace(or,'"'+o.Z.API_SERVER+"/api/attachments/").replace(tr,'"'+o.Z.API_SERVER+"/files/uploads/").replaceAll("http://video.educoder","https://video.educoder").replaceAll("http://www.educoder.net/api","https://data.educoder.net/api").replaceAll("https://www.educoder.net/api","https://data.educoder.net/api").replace(/\r\n/g,`
`)}catch(pt){}if(ee){let pt=-1;return Se=Se.replaceAll("<","&lt;").replaceAll(">","&gt;").replace(/(@▁▁@|@▁@)/g,function(or,tr,Me){var tt;return++pt,ar(or,pt,(tt=z==null?void 0:z[pt])==null?void 0:tt.value.replaceAll("<","&lt;").replaceAll(">","&gt;"))}),`<pre style="background:#fff;padding:4px">${gt(Se||"")}</pre>`}let We=gt(Se);We=(0,l.ZP)(We);const Xe=(0,l.ez)();Se.match(/\[TOC\]/)&&(We=We.replace("<p>[TOC]</p>",(0,l.Qv)()),(0,l.Iy)()),We=We.replace(/(__special_katext_id_\d+__)/g,(pt,or)=>{const{type:tr,expression:Me}=Xe[or];return(0,u.renderToString)(K(Me)||"",{displayMode:tr==="block",throwOnError:!1,output:"html"})}),We=We.replace(/▁/g,"\u2581\u2581\u2581\u2581\u2581"),(0,l.AL)();const ut=document.createElement("div");if(ut.innerHTML=We,oe)return ut.innerText;if(se){const pt=se.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return Je(ut,pt),ut.innerHTML}return setTimeout(()=>ke(),500),ut.innerHTML},[Se,se]);(0,r.useEffect)(()=>{Ne.current&&Ne.current.querySelectorAll(["input","textarea"]).forEach(Xe=>{Xe.oninput=et,Xe.onblur=ft,Xe.onfocus=ot})},[ht]),(0,r.useEffect)(()=>{var We,Xe,ut,pt,or;if(z!=null&&z.length)try{const tr=Ne.current.querySelectorAll(".edu-program-fill-score"),Me=Ne.current.querySelectorAll('[name="edu-program-fill"]');for(const[tt,Yt]of Me.entries())Yt.value=((We=z==null?void 0:z[tt])==null?void 0:We.value)||"",((Xe=z==null?void 0:z[tt])==null?void 0:Xe.type)==="warning"?Yt.className="program-fill-warning":((ut=z==null?void 0:z[tt])==null?void 0:ut.type)==="success"?Yt.className="program-fill-success":Yt.className="";for(const[tt,Yt]of tr.entries())Yt.innerHTML=(pt=z==null?void 0:z[tt])!=null&&pt.score?`${(or=z==null?void 0:z[tt])==null?void 0:or.score}\u5206`:"";It(z)}catch(tr){console.log(tr,"error")}},[z]);const et=We=>{ht[We.target.dataset.id]=ht[We.target.dataset.id]||{},ht[We.target.dataset.id].value=We.target.value,It([...ht]),j(ht,We.target.dataset.id)},ft=We=>{ht[We.target.dataset.id]=ht[We.target.dataset.id]||{},ht[We.target.dataset.id].value=We.target.value,It([...ht]),ie(ht,We.target.dataset.id)},ot=We=>{ht[We.target.dataset.id]=ht[We.target.dataset.id]||{},ht[We.target.dataset.id].value=We.target.value,It([...ht]),me(ht,We.target.dataset.id)};function Je(We,Xe){return We.childNodes.forEach(ut=>{var pt;if(ut.childNodes.length>0)Je(ut,Xe);else if(ut.nodeName!=="IMG")if(ut.innerHTML)ut.innerHTML=(pt=ut.innerHTML)==null?void 0:pt.replace(new RegExp(Xe,"gi"),'<span style="color:#0152d9;background-color:#1890ff33">$&</span>');else{const or=document.createElement("span");or.innerHTML=ut.textContent.replace(new RegExp(Xe,"gi"),'<span style="color:#0152d9;background-color:#1890ff33">$&</span>'),ut.replaceWith(or)}})}const Ne=(0,r.useRef)();l.jb.WebkitLineClamp=q,q&&(X=P(P({},X),l.jb));function ye(We){let Xe=We.target;if(Xe.tagName.toUpperCase()==="A"){let ut=Xe.getAttribute("href");if(ut.indexOf("office")>-1)We.preventDefault(),He(ut),Dt("office");else if(ut.indexOf("application/pdf")>-1)We.preventDefault(),He(ut),Dt("pdf");else if(ut.indexOf("text/html")>-1)We.preventDefault(),He(ut),Dt("html");else if(ut.startsWith("#")){We.preventDefault();let pt=document.getElementById(ut.replace("#",""));pt&&pt.scrollIntoView(!0)}}}const ke=()=>{var We;const Xe=(We=Ne.current)==null?void 0:We.querySelectorAll("video");Xe==null||Xe.forEach(ut=>{if(ut.oncontextmenu=()=>!1,ut.src.indexOf(".m3u8")>-1&&!ut.canPlayType("application/vnd.apple.mpegurl")){if(f.ZP.isSupported()){var pt=new f.ZP;pt.loadSource(ut.src),pt.attachMedia(ut)}}})};(0,r.useEffect)(()=>{if(Ne.current&&Mt&&Mt.match(N)&&window.PR.prettyPrint(),Ne.current)return Ne.current.addEventListener("click",ye),()=>{var We;(We=Ne.current)==null||We.removeEventListener("click",ye),(0,l.AL)(),(0,l.Iy)()}},[Mt,Ne.current,ye]),(0,r.useEffect)(()=>{var We;const Xe=ut=>{ut.preventDefault(),ut.clipboardData.setData("text",window.getSelection().toString())};return(We=Ne.current)==null||We.addEventListener("copy",Xe),()=>{var ut;(ut=Ne.current)==null||ut.removeEventListener("copy",Xe)}},[Ne.current]);const Ge=We=>/<style[\s\S]*?>/i.test(We||"");return r.createElement(r.Fragment,null,oe&&r.createElement("div",{ref:Ne},Mt),!oe&&!Ge(Mt)&&r.createElement("div",{ref:Ne,style:P({},X),className:`${ne||""} ${le?"disabled-fill":""} markdown-body ${Zt.current}`,dangerouslySetInnerHTML:{__html:Mt}}),!oe&&Ge(Mt)&&r.createElement(m,{html:Mt}),r.createElement(x.Z,{close:!0,data:Ie,type:Ie!=null&&Ie.length?je:"",style:P({},V),onClose:()=>He("")}))}},50258:function(d,v,e){"use strict";e.d(v,{SV:function(){return It},ZP:function(){return ht}});var r=e(59301),i=e(76374);const l={keywords:["print","auto","break","case","char","const","continue","default","do","double","else","enum","extern","float","for","goto","if","int","long","register","return","short","signed","sizeof","static","struct","switch","typedef","union","unsigned","void","volatile","while"]},c={quickKey:[{label:"main",content:["public static void main(String[] args) {"," $0","}"].join(`
`)},{label:"System.out.println",content:["System.out.println($0)"].join(`
`)},{label:"System.out.print",content:["System.out.print($0)"].join(`
`)}],keywords:["abstract","continue","for","new","switch","assert","default","goto","package","synchronized","boolean","do","if","private","this","break","double","implements","protected","throw","byte","else","import","public","throws","case","enum","instanceof","return","transient","catch","extends","int","short","try","char","final","interface","static","void","class","finally","long","strictfp","volatile","const","float","native","super","while","true","false"]},f={keywords:["abstract","amp","array","auto","bool","break","case","catch","char","class","const","constexpr","const_cast","continue","cpu","decltype","default","delegate","delete","do","double","dynamic_cast","each","else","enum","event","explicit","export","extern","false","final","finally","float","friend","gcnew","generic","goto","in","initonly","inline","int","interface","interior_ptr","internal","literal","long","mutable","namespace","new","noexcept","nullptr","__nullptr","operator","override","partial","pascal","pin_ptr","private","property","protected","public","ref","register","reinterpret_cast","restrict","return","safe_cast","sealed","short","signed","sizeof","static","static_assert","static_cast","struct","switch","template","this","thread_local","throw","tile_static","true","try","typedef","typeid","typename","union","unsigned","using","virtual","void","volatile","wchar_t","where","while","_asm","_based","_cdecl","_declspec","_fastcall","_if_exists","_if_not_exists","_inline","_multiple_inheritance","_pascal","_single_inheritance","_stdcall","_virtual_inheritance","_w64","__abstract","__alignof","__asm","__assume","__based","__box","__builtin_alignof","__cdecl","__clrcall","__declspec","__delegate","__event","__except","__fastcall","__finally","__forceinline","__gc","__hook","__identifier","__if_exists","__if_not_exists","__inline","__int128","__int16","__int32","__int64","__int8","__interface","__leave","__m128","__m128d","__m128i","__m256","__m256d","__m256i","__m64","__multiple_inheritance","__newslot","__nogc","__noop","__nounwind","__novtordisp","__pascal","__pin","__pragma","__property","__ptr32","__ptr64","__raise","__restrict","__resume","__sealed","__single_inheritance","__stdcall","__super","__thiscall","__try","__try_cast","__typeof","__unaligned","__unhook","__uuidof","__value","__virtual_inheritance","__w64","__wchar_t"],operators:["=",">","<","!","~","?",":","==","<=",">=","!=","&&","||","++","--","+","-","*","/","&","|","^","%","<<",">>",">>>","+=","-=","*=","/=","&=","|=","^=","%=","<<=",">>=",">>>="],quickKey:[{label:"ifelse",content:["if (${1:condition}) {"," $0","} else {"," ","}"].join(`
`)},{label:"include",content:"include<$0>"},{label:"printf",content:"printf($0)"},{label:"system",content:'system("$0")'},{label:"main",content:["int main () {"," $0","}"].join(`
`)},{label:"if",content:["if () {"," $0","}"].join(`
`)},{label:"for",content:["for(int j=0 ; j<10; j++){"," $0","}"].join(`
`)},{label:"trycatch",content:["try{"," $0","}catch(ExceptionName e){","}"].join(`
`)},{label:"using namespace std;",content:["using namespace std;"].join(`
`)},{label:"include <iostream>",content:["#include <iostream>"].join(`
`)},{label:"include <vector>",content:["#include <vector>"].join(`
`)},{label:"include <cstdio>",content:["#include <cstdio>"].join(`
`)},{label:"include <cstring>",content:["#include <cstring>"].join(`
`)},{label:"include <sstream>",content:["#include <sstream>"].join(`
`)},{label:"include <fstream>",content:["#include <fstream>"].join(`
`)},{label:"include <map>",content:["#include <map>"].join(`
`)},{label:"include <string>",content:["#include <string>"].join(`
`)},{label:"include <cmath>",content:["#include <cmath>"].join(`
`)}]},o={keywords:["and","as","assert","break","class","continue","def","del","elif","else","except","exec","finally","for","from","global","if","import","in","is","lambda","None","not","or","pass","raise","return","self","try","while","with","yield","int","float","long","complex","hex","abs","all","any","apply","basestring","bin","bool","buffer","bytearray","callable","chr","classmethod","cmp","coerce","compile","complex","delattr","dict","dir","divmod","enumerate","eval","execfile","file","filter","format","frozenset","getattr","globals","hasattr","hash","help","id","input","intern","isinstance","issubclass","iter","len","locals","list","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","reversed","range","raw_input","reduce","reload","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","unichr","unicode","vars","xrange","zip","True","False","__dict__","__methods__","__members__","__class__","__bases__","__name__","__mro__","__subclasses__","__init__","__import__"],quickKey:[{label:"print",content:["print($0)"].join(`
`)}]},h={keywords:["asInstanceOf","catch","class","classOf","def","do","else","extends","finally","for","foreach","forSome","if","import","isInstanceOf","macro","match","new","object","package","return","throw","trait","try","type","until","val","var","while","with","yield","given","enum","then"],quickKey:[{label:"println",content:["println($0)"].join(`
`)}]};var u=e(53184),a=e.n(u),x=(Zt,Rt,ar)=>new Promise(($e,gt)=>{var Mt=ot=>{try{ft(ar.next(ot))}catch(Je){gt(Je)}},et=ot=>{try{ft(ar.throw(ot))}catch(Je){gt(Je)}},ft=ot=>ot.done?$e(ot.value):Promise.resolve(ot.value).then(Mt,et);ft((ar=ar.apply(Zt,Rt)).next())});const p={languages:["c","abap","apex","azcli","bat","cameligo","clojure","coffee","cpp","csharp","csp","css","dockerfile","fsharp","go","graphql","handlebars","html","ini","java","javascript","json","kotlin","less","lua","markdown","mips","msdax","mysql","objective-c","pascal","pascaligo","perl","pgsql","php","postiats","powerquery","powershell","pug","python","r","razor","redis","redshift","restructuredtext","ruby","rust","sb","scheme","scss","shell","solidity","sophia","sql","st","swift","tcl","twig","vb","xml","yaml'"],tables:{users:["name","id","email","phone","password"],roles:["id","name","order","created_at","updated_at","deleted_at"]}},y=(Zt,Rt,ar,$e)=>{const gt=Rt.getValueInRange({startLineNumber:1,startColumn:1,endLineNumber:ar.lineNumber,endColumn:ar.column});return Array.from(new Set(gt.match(/\b\w{2,}\b/g)||[])).map(et=>({label:et,kind:Zt.languages.CompletionItemKind.Text,insertText:et,range:$e}))},m=(Zt,Rt,ar,$e)=>{Zt.languages.registerCompletionItemProvider(Rt,{provideCompletionItems(gt,Mt){const et=gt.getWordUntilPosition(Mt),ft={startLineNumber:Mt.lineNumber,endLineNumber:Mt.lineNumber,startColumn:et.startColumn,endColumn:et.endColumn},ot=gt.getLineContent(Mt.lineNumber).substring(et.startColumn-2,et.endColumn);return{suggestions:[...y(Zt,gt,Mt,ft),...ar.map(Ne=>({label:Ne,kind:Zt.languages.CompletionItemKind.Keyword,documentation:Ne,insertText:Ne,insertTextRules:Zt.languages.CompletionItemInsertTextRule.InsertAsSnippet,range:ft})),...$e.map(Ne=>({label:Ne.label,kind:Zt.languages.CompletionItemKind.Snippet,documentation:Ne.content,insertText:ot.startsWith("#")?Ne.content.replace(/#/,""):Ne.content,insertTextRules:Zt.languages.CompletionItemInsertTextRule.InsertAsSnippet,range:ft}))]}}})};var b=Zt=>{p.languages.forEach(Rt=>{Zt.languages.registerDocumentFormattingEditProvider(Rt,{provideDocumentFormattingEdits(ar){return x(this,null,function*(){const $e=a()(ar.getValue(),{indent_size:2,indent_char:" ",max_preserve_newlines:2,preserve_newlines:!0,keep_array_indentation:!0,break_chained_methods:!1,indent_scripts:"normal",brace_style:"collapse",space_before_conditional:!0,unescape_strings:!1,jslint_happy:!1,end_with_newline:!0,wrap_line_length:0,indent_inner_html:!1,comma_first:!1,e4x:!1,indent_empty_lines:!1});return[{range:ar.getFullModelRange(),text:$e}]})}})}),m(Zt,"java",c.keywords,c.quickKey),m(Zt,"cpp",f.keywords,f.quickKey),m(Zt,"c",l.keywords,[]),m(Zt,"python",o.keywords,o.quickKey),m(Zt,"scala",h.keywords,h.quickKey)};const S="\u8BE5\u4EFB\u52A1\u5173\u5361\u8BBE\u7F6E\u4E86\u7981\u6B62\u590D\u5236\u7C98\u8D34\uFF0C\u8BF7\u624B\u52A8\u8F93\u5165\u4EE3\u7801\u3002";var k=Object.defineProperty,R=(Zt,Rt,ar)=>Rt in Zt?k(Zt,Rt,{enumerable:!0,configurable:!0,writable:!0,value:ar}):Zt[Rt]=ar,A=(Zt,Rt,ar)=>R(Zt,typeof Rt!="symbol"?Rt+"":Rt,ar);const P=class a0{constructor(Rt,ar,$e){this.placeholder=Rt,this.editor=ar,this.monaco=$e,ar.onDidChangeModelContent(()=>this.onDidChangeModelContent()),this.onDidChangeModelContent()}onDidChangeModelContent(){this.editor.getValue()===""?this.editor.addContentWidget(this):this.editor.removeContentWidget(this)}getId(){return a0.ID}getDomNode(){return this.domNode||(this.domNode=document.createElement("div"),this.domNode.style.width="max-content",this.domNode.textContent=this.placeholder,this.domNode.style.fontStyle="initial",this.domNode.style.color="#D7D7D7",this.domNode.style.pointerEvents="none",this.editor.applyFontInfo(this.domNode)),this.domNode}getPosition(){return{position:{lineNumber:1,column:1},preference:[this.monaco.editor.ContentWidgetPositionPreference.EXACT]}}dispose(){this.editor.removeContentWidget(this)}};A(P,"ID","editor.widget.placeholderHint");var B=P,N=e(96236),K=e(8591),H=e(6848),W=e(89392),ae=e(77254),ne=e(56102),oe=Object.defineProperty,q=Object.defineProperties,X=Object.getOwnPropertyDescriptors,V=Object.getOwnPropertySymbols,se=Object.prototype.hasOwnProperty,ee=Object.prototype.propertyIsEnumerable,J=(Zt,Rt,ar)=>Rt in Zt?oe(Zt,Rt,{enumerable:!0,configurable:!0,writable:!0,value:ar}):Zt[Rt]=ar,le=(Zt,Rt)=>{for(var ar in Rt||(Rt={}))se.call(Rt,ar)&&J(Zt,ar,Rt[ar]);if(V)for(var ar of V(Rt))ee.call(Rt,ar)&&J(Zt,ar,Rt[ar]);return Zt},z=(Zt,Rt)=>q(Zt,X(Rt)),j=(Zt,Rt)=>{var ar={};for(var $e in Zt)se.call(Zt,$e)&&Rt.indexOf($e)<0&&(ar[$e]=Zt[$e]);if(Zt!=null&&V)for(var $e of V(Zt))Rt.indexOf($e)<0&&ee.call(Zt,$e)&&(ar[$e]=Zt[$e]);return ar},ie=(Zt,Rt,ar)=>new Promise(($e,gt)=>{var Mt=ot=>{try{ft(ar.next(ot))}catch(Je){gt(Je)}},et=ot=>{try{ft(ar.throw(ot))}catch(Je){gt(Je)}},ft=ot=>ot.done?$e(ot.value):Promise.resolve(ot.value).then(Mt,et);ft((ar=ar.apply(Zt,Rt)).next())});function me(Zt){return/^\d+$/.test(Zt)?`${Zt}px`:Zt}function Se(){}let Ie=!1;const He={"Python3.6":"python","Python2.7":"python",Dynamips:"cpp",Java:"java",Web:"php",Html:"html",Hive:"sql",Hadoop:"java",SDL:"cpp",PHP:"php",Matlab:"python",Git:"python",Python:"python","C/C++":"cpp","C++":"cpp",C:"cpp",Ruby:"ruby",Shell:"shell",JavaScript:"javascript",Perl6:"perl",Kotlin:"kotlin",Elixir:"elixir",Android:"java",JavaWeb:"java",Go:"go",Spark:"sql",MachineLearning:"python",Verilog:"xml","Verilog/VNC":"xml",Docker:"dockerfile","C#":"csharp",SQLite3:"sql",Oracle:"sql",Vhdl:"vhdl",R:"r",Swift:"swift",SQLServer:"mysql",MySQL:"mysql",Mongo:"sql",PostgreSql:"pgsql",Hbase:"powershell",Sqoop:"sql",Nasm:"cpp",Kafka:"java",Flink:"java",Sml:"javascript",OpenGL:"cpp",Perl5:"perl",Orange:"python",Scala:"scale",solidity:"sol"};function je(Zt=[]){let Rt=Zt;if(Array.isArray(Zt)){for(let ar=0;ar<Zt.length;ar++){let $e=He[Zt[ar]];if($e)return $e}return Rt[0]}return He[Rt]||Rt}let Dt=null;var ht=Zt=>{var Rt=Zt,{width:ar="100%",height:$e="100%",value:gt,language:Mt="javascript",style:et={},options:ft={},overrideServices:ot={},theme:Je="vs-dark",onEditBlur:Ne,isCopy:ye=!1,onSave:ke,autoHeight:Ge=!1,forbidCopy:We=!1,onChange:Xe=Se,editorDidMount:ut=Se,onFocus:pt=Se,onBreakPoint:or=Se,breakPointValue:tr=[],filename:Me="educoder.txt",errorLine:tt,errorContent:Yt="",highlightLine:Ot,openBreakPoint:zt=!1,placeholder:Ht=""}=Rt,lr=j(Rt,["width","height","value","language","style","options","overrideServices","theme","onEditBlur","isCopy","onSave","autoHeight","forbidCopy","onChange","editorDidMount","onFocus","onBreakPoint","breakPointValue","filename","errorLine","errorContent","highlightLine","openBreakPoint","placeholder"]);const Wt=(0,r.useRef)(),Ce=(0,r.useRef)({}),ce=(0,r.useRef)(),pe=(0,r.useRef)(),Ct=(0,r.useRef)([]),Ae=(0,r.useRef)(!1),st=(0,r.useRef)(),Gt=(0,r.useRef)(),bt=(0,r.useRef)(!1),[Te,yt]=(0,r.useState)(!1);function ze(){let At;return Wt.current&&(At=new i.Z(Kt=>{for(let Bt of Kt)(Bt.target.offsetHeight>0||Bt.target.offsetWidth>0)&&Ce.current.instance.layout()}),At.observe(Wt.current)),At}function xe(){K.ZP.warning({content:decodeURIComponent(S),key:"monaco-editor-tip"})}const dt=()=>{let At=Ce.current.instance;if(gt!=null&&At&&Te){const Kt=At.getModel();Kt&&gt!==Kt.getValue()&&(Ie=!0,Kt.setValue(gt),At.layout(),Ie=!1)}};(0,r.useEffect)(()=>{const At=ae.Z.subscribe("formatDocument",Kt=>{var Bt;let Jt=Ce.current.instance;(Bt=Jt==null?void 0:Jt.getAction)==null||Bt.call(Jt,"editor.action.formatDocument").run()});return window.updateMonacoValue=Kt=>{Xe(Kt)},At},[]),(0,r.useEffect)(()=>{var At;let Kt=Ce.current.instance;pe.current&&clearTimeout(pe.current),pe.current=setTimeout(()=>{dt()},500),gt&&(gt!=null&&gt.length)&&((At=Kt==null?void 0:Kt.updateOptions)==null||At.call(Kt,{lineNumbersMinChars:Math.max(Math.floor(Math.log10(gt.split(/\r\n|\r|\n/g).length))+3,5)}))},[gt,Te,Ce.current]),(0,r.useEffect)(()=>{if(tt&&Ce.current&&Ce.current.instance){let Kt=Ce.current.instance;Kt.changeViewZones(function(Bt){var Jt=document.createElement("div");Jt.style.padding="10px 20px",Jt.style.width="calc(100% - 20px)",Jt.className="my-error-line-wrp",Jt.innerHTML=Yt,Bt.addZone({afterLineNumber:tt||11,heightInLines:3,domNode:Jt})});var At={domNode:null,getId:function(){return"my.overlay.widget"},getDomNode:function(){return this.domNode||(this.domNode=document.createElement("div"),this.domNode.innerHTML="",this.domNode.style.width="100%",this.domNode.style.padding="20px 100px",this.domNode.style.right="0px",this.domNode.style.top="50px",this.domNode.style.position="relative",this.domNode.style.color="#333"),this.domNode},getPosition:function(){return null}};Kt.addOverlayWidget(At),Kt.revealPositionInCenter({lineNumber:20,column:1})}},[tt,Ce.current,Te]);const Pt=(At="",Kt)=>{if(!At||At.trim()==="")return!0;const Jt=Ce.current.instance.getModel().getLineTokens(Kt);let br=!1;for(let Xr=0;Xr<2;Xr++)Jt.getStandardTokenType(Xr)===1&&(br=!0);return br};(0,r.useEffect)(()=>{var At;const Kt=(At=Ce.current)==null?void 0:At.instance;if(Kt&&Te&&We){const Bt=Kt.onDidBlurEditorWidget(()=>{bt.current=!1}),Jt=Kt.onDidFocusEditorText(()=>{bt.current=!0});return()=>{Bt.dispose(),Jt.dispose()}}},[Ce.current,Te,We]),(0,r.useEffect)(()=>{var At;if((At=Ce.current)!=null&&At.instance&&Te&&zt){let Kt=Ce.current.instance,Bt=Kt.getModel();if(!Bt)return;(()=>{var Gn;let ci=[],Oi=[];const $i=Bt.getAllDecorations();for(let ji of $i)ji.options.className==="highlighted-line"&&(ci.push((Gn=ji==null?void 0:ji.range)==null?void 0:Gn.startLineNumber),Oi.push(ji==null?void 0:ji.id));if(Ot===ci[0])return;Bt.deltaDecorations(Oi,[]);const Ai=Bt.getLineCount();Ot&&Ot<=Ai&&(Kt.deltaDecorations([],[{range:new Dt.Range(Ot,1,Ot,Bt.getLineMaxColumn(Ot)),options:{isWholeLine:!0,className:"highlighted-line"}}]),Kt.revealLineInCenter(Ot))})();const br=(Gn=!1)=>{var ci;let Oi=[],$i=[];const Ai=Bt.getAllDecorations();for(let ji of Ai)ji.options.linesDecorationsClassName==="breakpoints-select"&&(Oi.push((ci=ji==null?void 0:ji.range)==null?void 0:ci.startLineNumber),$i.push(ji==null?void 0:ji.id));if(Gn)return{lines:Oi,ids:$i};or(Oi)},Xr=Gn=>ie(void 0,null,function*(){let ci={range:new Dt.Range(Gn,1,Gn,1),options:{isWholeLine:!1,linesDecorationsClassName:"breakpoints-select"}};yield Bt.deltaDecorations([],[ci]),br()}),Wr=Gn=>ie(void 0,null,function*(){let ci=[];const Oi=Kt.getLineDecorations(Gn);for(let $i of Oi)$i.options.linesDecorationsClassName==="breakpoints-select"&&ci.push($i.id);yield Bt.deltaDecorations(ci,[]),br()}),jn=Gn=>{let ci=Kt.getLineDecorations(Gn);for(let Oi of ci)if(Oi.options.linesDecorationsClassName==="breakpoints-select")return!0;return!1};if(!(0,W.isEqual)(tr,br(!0).lines)){Bt.deltaDecorations(br(!0).ids,[]);const Gn=tr.map(ci=>({range:new Dt.Range(ci,1,ci,1),options:{isWholeLine:!1,linesDecorationsClassName:"breakpoints-select"}}));Bt.deltaDecorations([],Gn)}const wn=Kt.onDidChangeModelContent(Gn=>{let ci=Kt.getPosition();if(ci){let Oi=ci.lineNumber;clearTimeout(Gt.current),Gt.current=setTimeout(()=>{Pt(Bt.getLineContent(Oi),Oi)?Wr(Oi):jn(Oi)?(Wr(Oi),Xr(Oi)):br()},100)}}),Yn=Kt.onMouseDown(Gn=>{var ci,Oi,$i;if(Gn.target.detail&&(($i=(Oi=(ci=Gn.target)==null?void 0:ci.element)==null?void 0:Oi.className)!=null&&$i.includes("line-numbers"))){let Ai=Gn.target.position.lineNumber;if(Pt(Bt.getLineContent(Ai),Ai))return;jn(Ai)?Wr(Ai):Xr(Ai)}}),St=Gn=>{let ci={range:new Dt.Range(Gn,1,Gn,1),options:{isWholeLine:!1,linesDecorationsClassName:"breakpoints-fake"}};Ct.current=Kt.deltaDecorations(Ct.current,[ci])},Vr=()=>{Ct.current=Kt.deltaDecorations(Ct.current,[])},ii=Kt.onMouseMove(Gn=>{var ci,Oi,$i;if(Vr(),Gn.target.detail&&(($i=(Oi=(ci=Gn.target)==null?void 0:ci.element)==null?void 0:Oi.className)!=null&&$i.includes("line-numbers"))){let Ai=Gn.target.position.lineNumber;if(Pt(Bt.getLineContent(Ai),Ai))return;St(Ai)}}),Bi=Kt.onMouseLeave(()=>{Vr()});return()=>{wn.dispose(),Yn.dispose(),ii.dispose(),Bi.dispose()}}},[Ce.current,Te,tr,Ot,zt,Mt]),(0,r.useEffect)(()=>{var At;(At=Ce.current)!=null&&At.instance&&zt&&Ce.current.instance.setPosition({lineNumber:0,column:0})},[Ot]);function Be(){let At=Ce.current.instance;if(At){const Kt=At.getSelection(),Bt=Ce.current.pastePos||{},Jt=new Dt.Range(Bt.startLineNumber||Kt.endLineNumber,Bt.startColumn||Kt.endColumn,Bt.endLineNumber||Kt.endLineNumber,Bt.endColumn||Kt.endColumn);setTimeout(()=>{At.executeEdits("",[{range:Jt,text:""}])},300)}}function Or(At){(window.navigator.platform.match("Mac")?At.metaKey:At.ctrlKey)&&At.keyCode==83&&(At.preventDefault(),ke())}const mt=()=>{if(Ge&&Ce.current.instance){const At=Ce.current.instance.getContentHeight();Er(At<$e?$e:At)}else Er($e)};function qr(At){var Kt=document.createEvent("MouseEvents");Kt.initMouseEvent("click",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null),At.dispatchEvent(Kt)}const an=At=>{if(!bt.current)return;const{keyCode:Kt,ctrlKey:Bt,metaKey:Jt,target:br,type:Xr}=At;return(Xr==="paste"||(Kt===67||Kt===86)&&(Jt||Bt))&&br.nodeName==="TEXTAREA"&&(xe(),At.preventDefault()),!1};function Nt(At,Kt){var Bt=window.URL||window.webkitURL||window,Jt=new Blob([Kt]),br=document.createElementNS("http://www.w3.org/1999/xhtml","a");br.href=Bt.createObjectURL(Jt),br.download=At,qr(br)}(0,r.useEffect)(()=>{mt()},[mt]),(0,r.useEffect)(()=>{Wt.current&&!Te&&Promise.all([e.e(8909),e.e(2460)]).then(e.bind(e,71448)).then(At=>{try{Dt=At,Ce.current.instance=Dt.editor.create(Wt.current,{value:gt,language:je(Mt),theme:Je,requireConfig:{"vs/nls":{availableLanguages:{"*":"zh-cn"}}},wordWrap:!0,autoIndent:!0,contextmenu:!0,formatOnType:!0},ot);const Kt=Ce.current.instance;let br=[...N.BH._menuItems].find(wn=>wn[0]._debugName=="EditorContext")[1],Xr=["editor.action.clipboardCopyWithSyntaxHighlightingAction","editor.action.quickCommand","editor.action.clipboardCopyAction","editor.action.clipboardPasteAction","editor.action.clipboardCutAction"],Wr=(wn,Yn)=>{var St,Vr;let ii=wn._first;do Yn.includes((Vr=(St=ii.element)==null?void 0:St.command)==null?void 0:Vr.id)&&wn._remove(ii);while(ii=ii.next)};if(ut(Kt,Dt),setTimeout(()=>{mt(),Ce.current.instance.addAction({id:"d123123",label:"Download File",contextMenuGroupId:"9_cutcopypaste",run:()=>{Nt(Me||"educoder.txt",Kt.getValue())}})},500),Ce.current.subscription=Kt.onDidChangeModelContent(wn=>{Ae.current?clearTimeout(st.current):(mt(),Xe(Kt.getValue(),wn)),st.current=setTimeout(()=>{Ae.current=!1},500)}),window.Monaco||b(Dt,je(Mt)),We&&(Wr(br,Xr),Wt.current.classList.add("noCopyPaste"),window.removeEventListener("keydown",an),window.removeEventListener("paste",an),window.addEventListener("keydown",an),window.addEventListener("paste",an)),window.Monaco=Dt,Ne&&Kt.onDidBlurEditorWidget(()=>{Ne(Kt.getValue())}),pt&&Kt.onDidFocusEditorText(()=>{pt(Kt.getValue())}),We)try{Kt.onDidPaste(wn=>{const Yn=Kt.getSelection(),St=Ce.current.pastePos||{},Vr=new Dt.Range(St.startLineNumber||Yn.endLineNumber,St.startColumn||Yn.endColumn,St.endLineNumber||Yn.endLineNumber,St.endColumn||Yn.endColumn);Kt.executeEdits("",[{range:wn.range,text:""}])})}catch(wn){}let jn=ze();return Ht&&typeof Ht=="string"&&new B(Ht,Kt,Dt),yt(!0),()=>{const wn=Ce.current.instance;wn.dispose();const Yn=wn.getModel();Yn&&Yn.dispose(),Ce.current.subscription&&Ce.current.subscription.dispose(),jn.unobserve(Wt.current)}}catch(Kt){}})},[]),(0,r.useEffect)(()=>{if(Ce.current.instance&&Te)return document.addEventListener("keydown",Or,!1),()=>{document.removeEventListener("keydown",Or)}},[ke,Te]),(0,r.useEffect)(()=>{let At=Ce.current.instance;if(At&&Te){let Kt=je(Mt);Dt.editor.setModelLanguage(At.getModel(),Kt)}},[Mt,Te]),(0,r.useEffect)(()=>{Ce.current.instance&&Te&&Dt.editor.setTheme(Je)},[Je,Te]),(0,r.useEffect)(()=>{let At=Ce.current.instance;ce.current=ft,At&&Te&&(At.updateOptions(le({},ft)),setTimeout(()=>{At.getModel().updateOptions(le({},ft))},200))},[JSON.stringify(ft),Te]),(0,r.useEffect)(()=>{let At=Ce.current.instance;At&&Te&&At.layout()},[ar,$e,Te]);const[qt,Lt]=(0,r.useState)(me(ar)),[Xt,Er]=(0,r.useState)(me($e)),Pr=z(le({},et),{width:qt,height:Xt,position:"relative"});return r.createElement("div",{className:"my-monaco-editor",ref:Wt,style:Pr},ye&&r.createElement(ne.CopyToClipboard,{text:gt,onCopy:()=>K.ZP.success("\u590D\u5236\u6210\u529F")},r.createElement(H.Z,{title:"\u590D\u5236\u4EE3\u7801"},r.createElement("div",{style:{position:"absolute",top:0,right:10,cursor:"pointer",zIndex:10,color:"#165DFF"}},r.createElement("i",{className:"iconfont icon-fuzhi8",style:{fontSize:14}})," \u590D\u5236\u4EE3\u7801"))))};function It({width:Zt="100%",height:Rt="100%",original:ar,modified:$e,language:gt,options:Mt={}}){const et=(0,r.useRef)(),[ft,ot]=(0,r.useState)(null);function Je(Ge){let We;return et.current&&(We=new i.Z(Xe=>{for(let ut of Xe)(ut.target.offsetHeight>0||ut.target.offsetWidth>0)&&Ge.layout()}),We.observe(et.current)),We}(0,r.useEffect)(()=>(et.current&&Promise.all([e.e(8909),e.e(9404)]).then(e.bind(e,2550)).then(Ge=>{Dt=Ge;const We=Dt.editor.createDiffEditor(et.current,z(le({enableSplitViewResizing:!1,scrollBeyondLastLine:!1,roundedSelection:!1,renderIndicators:!1,useShadows:!1,horizontal:"hidden",lineNumbers:"off",wordWrap:"off",ignoreTrimWhitespace:!1,"semanticHighlighting.enabled":!0,followsCaret:!0,ignoreCharChanges:!0,minimap:{enabled:!1},readOnly:!0},Mt),{wordWrap:!0}));ot(We);let Xe=Je(We);return()=>{We.dispose();const ut=We.getModel();ut&&ut.dispose(),Xe.unobserve(et.current)}}),()=>{window.removeEventListener("keydown",checkPaste),window.removeEventListener("paste",checkPaste)}),[]),(0,r.useEffect)(()=>{ft&&ft.setModel({original:Dt.editor.createModel(ar,gt),modified:Dt.editor.createModel($e,gt)})},[ar,$e,gt,ft]);const Ne=me(Zt),ye=me(Rt),ke={width:Ne,height:ye};return r.createElement("div",{className:"my-diff-editor",ref:et,style:ke})}},86967:function(d,v,e){"use strict";e.d(v,{k:function(){return b}});var r=e(55510),i=e(8591),l=e(2001),c=Object.defineProperty,f=Object.defineProperties,o=Object.getOwnPropertyDescriptors,h=Object.getOwnPropertySymbols,u=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable,x=(k,R,A)=>R in k?c(k,R,{enumerable:!0,configurable:!0,writable:!0,value:A}):k[R]=A,p=(k,R)=>{for(var A in R||(R={}))u.call(R,A)&&x(k,A,R[A]);if(h)for(var A of h(R))a.call(R,A)&&x(k,A,R[A]);return k},y=(k,R)=>f(k,o(R)),m=(k,R)=>{var A={};for(var P in k)u.call(k,P)&&R.indexOf(P)<0&&(A[P]=k[P]);if(k!=null&&h)for(var P of h(k))R.indexOf(P)<0&&a.call(k,P)&&(A[P]=k[P]);return A};const b=["\u8BA4\u8BC1\u4E13\u4E1A","\u8BA4\u8BC1\u5C4A\u522B"],S={namespace:"engineeringEvaluteList",state:{actionTabs:{key:"",params:{}},headerData:{dataSource:{[b[0]]:{width:235,placeholder:`\u8BF7\u9009\u62E9${b[0]}`,loading:"engineeringEvaluteList/getMajorList",dataList:[]},[b[1]]:{width:138,placeholder:`\u8BF7\u9009\u62E9${b[1]}`,loading:"engineeringEvaluteList/getYearList",dataList:[]}},active:{}},tabListData:{total:0,pageNo:1,pageSize:20,dataSource:[]}},effects:{*setActionTabs({payload:k},{call:R,put:A}){yield A({type:"save",payload:{actionTabs:p({},k)}})},*getMajorList({payload:k},{call:R,put:A,select:P}){const{userInfo:M}=yield P(B=>B.user);if(M!=null&&M.school_id){const B=yield R(r.BA,M.school_id);if(B&&B.data){const N=l.U.getItem(M==null?void 0:M.login);yield A({type:"setMajorOrYearDataSource",payload:{key:b[0],value:B.data.map(K=>({label:K.name,value:K.ec_major_school_id})),active:B.data.length>0?N[0]||B.data[0].ec_major_school_id:void 0}})}}},*getYearList({payload:k},{call:R,put:A,select:P}){const M=yield R(r.Nx,k.id),{userInfo:B}=yield P(N=>N.user);if(M&&M.data){const N=l.U.getItem(B==null?void 0:B.login);yield A({type:"setMajorOrYearDataSource",payload:{key:b[1],value:M.data.map(K=>({label:K.year,value:K.ec_year_id})),active:M.data.length>0?k.firstEnter?N[1]:M.data[0].ec_year_id:void 0}})}},*getCourseResults({payload:k={}},{call:R,put:A,select:P}){const{calc:M,page:B,per_page:N}=k,{headerData:K,tabListData:H}=yield P(ne=>ne.engineeringEvaluteList),{userInfo:W}=yield P(ne=>ne.user);let ae=K.active[b[1]];if(ae){let ne={id:ae,page:B||1,per_page:N||H.pageSize};M&&(ne=y(p({},ne),{page:H.pageNo}));const oe=yield R(r._y,ne),q=[K.active[b[0]],K.active[b[1]]];l.U.setItem(W==null?void 0:W.login,q),oe&&oe.ec_courses&&(yield A({type:"setCourseResults",payload:y(p({},H),{pageNo:ne.page,total:oe.count,pageSize:ne.per_page||H.pageSize,dataSource:oe.ec_courses.map((X,V)=>y(p({},X),{key:ne.page>1?(ne.page-1)*ne.per_page+V+1:V+1}))})}))}else yield A({type:"setCourseResults",payload:y(p({},H),{pageNo:1,total:0,dataSource:[]})})},*exportCourse({payload:k},{call:R,select:A}){const{headerData:P}=yield A(M=>M.engineeringEvaluteList);P.active[b[1]]&&(yield R(r.F,P.active[b[1]]))},*compute({payload:k},{call:R,put:A}){const P=k,{all:M}=P,B=m(P,["all"]),N=yield R(M?r.At:r.PX,B);N&&N.status===0?(i.ZP.success("\u8BA1\u7B97\u5B8C\u6210"),yield A({type:"getCourseResults",payload:{calc:!0}})):i.ZP.error(N.message)}},reducers:{save(k,R){return p(p({},k),R.payload)},setMajorOrYearDataSource(k,{payload:R}){let A=k.headerData.active;return R.active&&(A=y(p({},A),{[R.key]:R.active})),y(p({},k),{headerData:y(p({},k.headerData),{dataSource:y(p({},k.headerData.dataSource),{[R.key]:y(p({},k.headerData.dataSource[R.key]),{dataList:R.value})}),active:A})})},setMajorOrYearActive(k,{payload:R}){return y(p({},k),{headerData:y(p({},k.headerData),{active:y(p({},k.headerData.active),{[R.key]:R.value})})})},setCourseResults(k,{payload:R}){return y(p({},k),{tabListData:p(p({},k.tabListData),R)})}},subscriptions:{setup({dispatch:k,history:R}){return R.listen(({pathname:A})=>{A==="/"&&k({type:"query"})})}}};v.Z=S},3033:function(d,v,e){"use strict";e.d(v,{L:function(){return h},r:function(){return a}});var r=Object.defineProperty,i=Object.getOwnPropertySymbols,l=Object.prototype.hasOwnProperty,c=Object.prototype.propertyIsEnumerable,f=(x,p,y)=>p in x?r(x,p,{enumerable:!0,configurable:!0,writable:!0,value:y}):x[p]=y,o=(x,p)=>{for(var y in p||(p={}))l.call(p,y)&&f(x,y,p[y]);if(i)for(var y of i(p))c.call(p,y)&&f(x,y,p[y]);return x};const h=x=>x==null?void 0:x.map(p=>{const y=(p.sub_disciplines||[]).map(m=>({value:m.id,label:m.name}));return{value:p.id,label:p.name,children:y}}),u={1:"\u4E00",2:"\u4E8C",3:"\u4E09",4:"\u56DB",5:"\u4E94",6:"\u516D",7:"\u4E03",8:"\u516B"},a=x=>{if(!x)return;const{all_questions_count:p,all_score:y,single_questions:m,multiple_questions:b,judgement_questions:S,program_questions:k,completion_questions:R,subjective_questions:A,practical_questions:P,combination_questions:M}=x||{},N=[o({type:"SINGLE",name:"\u5355\u9009\u9898"},m),o({type:"MULTIPLE",name:"\u591A\u9009\u9898"},b),o({type:"COMPLETION",name:"\u586B\u7A7A\u9898"},R),o({type:"JUDGMENT",name:"\u5224\u65AD\u9898"},S),o({type:"SUBJECTIVE",name:"\u7B80\u7B54\u9898"},A),o({type:"PROGRAM",name:"\u7F16\u7A0B\u9898"},k),o({type:"PRACTICAL",name:"\u5B9E\u8BAD\u9898"},P),o({type:"COMBINATION",name:"\u7EC4\u5408\u9898"},M)].filter(K=>K.questions_count>0).map((K,H)=>o(o({},K),{number:u[H+1]}));return{all_questions_count:p,all_score:y,questionList:N}}},2001:function(d,v,e){"use strict";e.d(v,{U:function(){return c},t:function(){return l}});var r=e(43418),i=e(41867);const l=(f,o="")=>{r.default.confirm({centered:!0,width:520,okText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88",title:"\u63D0\u793A",content:o,onOk:f})},c={setItem:(f,o)=>{var h;const u=f+"-engineering"+((h=(0,i.eY)())==null?void 0:h.school_id),a=JSON.stringify(o);localStorage.setItem(u,a)},getItem:f=>{var o;const h=f+"-engineering"+((o=(0,i.eY)())==null?void 0:o.school_id),u=localStorage.getItem(h);return u!==null&&u!=="[object Object]"?JSON.parse(u):[]},clear:f=>{var o;const h=f+"-engineering"+((o=(0,i.eY)())==null?void 0:o.school_id);localStorage.removeItem(h)}}},47735:function(d,v,e){"use strict";e.d(v,{$f:function(){return p},Cq:function(){return b},GY:function(){return o},I8:function(){return k},Ow:function(){return y},P:function(){return x},Ql:function(){return h},RA:function(){return P},Zm:function(){return u},bz:function(){return f},eF:function(){return S},gQ:function(){return R},ht:function(){return m},kN:function(){return M},n1:function(){return l},nI:function(){return B},o9:function(){return c},sG:function(){return a},wi:function(){return A}});var r=e(38147),i=(N,K,H)=>new Promise((W,ae)=>{var ne=X=>{try{q(H.next(X))}catch(V){ae(V)}},oe=X=>{try{q(H.throw(X))}catch(V){ae(V)}},q=X=>X.done?W(X.value):Promise.resolve(X.value).then(ne,oe);q((H=H.apply(N,K)).next())});function l(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}/avatar.json`,{method:"put",body:N})})}function c(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}.json`,{method:"get"})})}function f(N){return i(this,null,function*(){return(0,r.ZP)("/api/add_school_applies.json",{method:"post",body:N})})}function o(N){return i(this,null,function*(){return(0,r.ZP)("/api/schools/limit_list.json",{method:"get",params:N})})}function h(N){return i(this,null,function*(){return(0,r.ZP)(`/api/schools/${N.id}/departments/for_option.json`,{method:"get",params:N})})}function u(N){return i(this,null,function*(){return(0,r.ZP)("/api/add_department_applies.json",{method:"post",body:N})})}function a(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.id}.json`,{method:"put",body:N})})}function x(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}/authentication_apply.json`,{method:"delete"})})}function p(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}/professional_auth_apply.json`,{method:"delete"})})}function y(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.id}/professional_auth_apply.json`,{method:"post",body:N})})}function m(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.id}/authentication_apply.json`,{method:"post",body:N})})}function b(N){return i(this,null,function*(){return(0,r.ZP)("/api/accounts/get_verification_code.json",{method:"get",params:N})})}function S(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}/phone_bind.json`,{method:"post",body:N})})}function k(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}/email_bind.json`,{method:"post",body:N})})}function R(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.login}/password.json`,{method:"put",body:N})})}function A(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${N.basicInfoId}/open_users/${N.id}.json`,{method:"delete"})})}function P(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/${N.login}/cancel_authentication.json`,{method:"post",body:N})})}function M(N){return i(this,null,function*(){return(0,r.ZP)(`/api/users/${N.login}/cancel_professional_certification.json`,{method:"post",body:N})})}function B(N,K){return i(this,null,function*(){return(0,r.ZP)(`/api/users/${N.login}/videos/${N.id}/create_subject_video.json`,{method:"post",body:K})})}},5959:function(d,v,e){"use strict";e.d(v,{An:function(){return y},TO:function(){return a},my:function(){return p},nZ:function(){return x}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(m,b,S)=>b in m?i(m,b,{enumerable:!0,configurable:!0,writable:!0,value:S}):m[b]=S,h=(m,b)=>{for(var S in b||(b={}))c.call(b,S)&&o(m,S,b[S]);if(l)for(var S of l(b))f.call(b,S)&&o(m,S,b[S]);return m},u=(m,b,S)=>new Promise((k,R)=>{var A=B=>{try{M(S.next(B))}catch(N){R(N)}},P=B=>{try{M(S.throw(B))}catch(N){R(N)}},M=B=>B.done?k(B.value):Promise.resolve(B.value).then(A,P);M((S=S.apply(m,b)).next())});function a(m){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${m.coursesId}/inform_up.json`,{method:"post",body:h({},m)})})}function x(m){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${m.coursesId}/inform_down.json`,{method:"post",body:h({},m)})})}function p(m){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${m.coursesId}/update_informs.json`,{method:"post",body:h({},m)})})}function y(m){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${m.coursesId}/new_informs.json`,{method:"post",body:h({},m)})})}},7310:function(d,v,e){"use strict";e.d(v,{$n:function(){return S},H:function(){return b},Nm:function(){return y},Ot:function(){return m},SV:function(){return a},fc:function(){return R},mn:function(){return k},tO:function(){return p},zI:function(){return x}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(A,P,M)=>P in A?i(A,P,{enumerable:!0,configurable:!0,writable:!0,value:M}):A[P]=M,h=(A,P)=>{for(var M in P||(P={}))c.call(P,M)&&o(A,M,P[M]);if(l)for(var M of l(P))f.call(P,M)&&o(A,M,P[M]);return A},u=(A,P,M)=>new Promise((B,N)=>{var K=ae=>{try{W(M.next(ae))}catch(ne){N(ne)}},H=ae=>{try{W(M.throw(ae))}catch(ne){N(ne)}},W=ae=>ae.done?B(ae.value):Promise.resolve(ae.value).then(K,H);W((M=M.apply(A,P)).next())});function a(A){return u(this,null,function*(){return(0,r.ZP)("/api/files/public_with_course_and_project",{method:"get",params:h({},A)})})}function x(A){return u(this,null,function*(){return(0,r.ZP)("/api/files/mine_with_course_and_project.json",{method:"get",params:h({},A)})})}function p(A){return u(this,null,function*(){return(0,r.ZP)("/api/files/import.json",{method:"post",body:h({},A)})})}function y(A){return u(this,null,function*(){return(0,r.ZP)(`/api/files/${A.id}.json`,{method:"get",params:h({},A)})})}function m(A){return u(this,null,function*(){const{id:P}=A;return delete A.id,(0,r.ZP)(`/api/files/${P}.json`,{method:"put",body:h({},A)})})}function b(A){return u(this,null,function*(){return(0,r.ZP)(`/api/files/${A.id}/update_visits.json`,{method:"post"})})}function S(A){return u(this,null,function*(){return(0,r.ZP)(`/api/files/${A==null?void 0:A.id}/watch_list.json`,{method:"get",params:h({},A)})})}function k(A){return u(this,null,function*(){return(0,r.ZP)("/api/files/get_batches_publish_info.json",{method:"get",params:h({},A)})})}function R(A){return u(this,null,function*(){return(0,r.ZP)(`/api/files/${A==null?void 0:A.id}/add_file_quantity.json`,{method:"post",body:h({},A)})})}},26795:function(d,v,e){"use strict";e.d(v,{CJ:function(){return y},Mf:function(){return R},NA:function(){return S},PC:function(){return m},PP:function(){return b},YQ:function(){return k},cc:function(){return p},dI:function(){return x},yq:function(){return a}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(A,P,M)=>P in A?i(A,P,{enumerable:!0,configurable:!0,writable:!0,value:M}):A[P]=M,h=(A,P)=>{for(var M in P||(P={}))c.call(P,M)&&o(A,M,P[M]);if(l)for(var M of l(P))f.call(P,M)&&o(A,M,P[M]);return A},u=(A,P,M)=>new Promise((B,N)=>{var K=ae=>{try{W(M.next(ae))}catch(ne){N(ne)}},H=ae=>{try{W(M.throw(ae))}catch(ne){N(ne)}},W=ae=>ae.done?B(ae.value):Promise.resolve(ae.value).then(K,H);W((M=M.apply(A,P)).next())});function a(A){return u(this,null,function*(){return(0,r.ZP)("/api/courses/board_list.json",{method:"get",params:h({},A)})})}function x(A){return u(this,null,function*(){return(0,r.ZP)(`/api/messages/${A.boardId}.json`,{method:"get",params:h({},A)})})}function p(A){return u(this,null,function*(){return(0,r.ZP)(`/api/messages/${A.id}/sticky_top.json`,{method:"put",body:{course_id:A.coursesId}})})}function y(A){return u(this,null,function*(){return(0,r.ZP)(`/api/messages/${A.id}/sticky_top.json`,{method:"put",body:{course_id:A.coursesId}})})}function m(A){return u(this,null,function*(){return(0,r.ZP)(`/api/messages/${A.boardId}/reply_list.json`,{method:"get",params:h({},A)})})}function b(A){return u(this,null,function*(){return(0,r.ZP)(`/api/messages/${A.boardId}/reply.json`,{method:"post",body:h({},A)})})}function S(A){return u(this,null,function*(){return(0,r.ZP)("/api/praise_tread/like.json",{method:"post",body:h({},A)})})}function k(A){return u(this,null,function*(){return(0,r.ZP)("/api/praise_tread/unlike.json",{method:"delete",body:h({},A)})})}function R(A){return u(this,null,function*(){return(0,r.ZP)("/api/commons/delete.json",{method:"delete",body:h({},A)})})}},33270:function(d,v,e){"use strict";e.d(v,{$T:function(){return ci},A:function(){return Gt},Ab:function(){return xa},Al:function(){return je},BQ:function(){return pt},BR:function(){return He},Bn:function(){return Yt},Cq:function(){return Bi},D4:function(){return b},DJ:function(){return Mt},Dd:function(){return N},Ds:function(){return tr},EO:function(){return bt},Ed:function(){return et},F9:function(){return Ht},FU:function(){return Wt},Fg:function(){return K},GV:function(){return ye},Gk:function(){return ie},Gm:function(){return We},Gz:function(){return H},Hf:function(){return a},Hl:function(){return W},Hn:function(){return ee},ID:function(){return jn},IU:function(){return Pt},J2:function(){return Je},K$:function(){return Me},KP:function(){return ft},KT:function(){return $e},L$:function(){return Ct},LH:function(){return oe},Lk:function(){return $n},Lm:function(){return k},Ls:function(){return Zt},MA:function(){return ji},Mc:function(){return ei},N7:function(){return Ie},Nd:function(){return j},Nl:function(){return dt},Ns:function(){return wn},O3:function(){return gt},Pj:function(){return Ge},Q9:function(){return y},QX:function(){return xe},QZ:function(){return ar},R2:function(){return Se},Rk:function(){return Gn},S9:function(){return Ae},SA:function(){return S},U8:function(){return St},UD:function(){return Jt},U_:function(){return le},Uy:function(){return Xr},V8:function(){return se},Vw:function(){return It},W0:function(){return Or},W7:function(){return or},WK:function(){return ha},Wr:function(){return xt},YR:function(){return yt},Z0:function(){return Lt},ZL:function(){return an},ZT:function(){return Zi},ZX:function(){return Yi},Z_:function(){return q},_0:function(){return X},_9:function(){return Xe},_B:function(){return Da},_X:function(){return p},aP:function(){return mt},aQ:function(){return ut},aZ:function(){return ce},al:function(){return st},bm:function(){return Bt},bz:function(){return Ot},c_:function(){return ii},ds:function(){return Kt},fN:function(){return ea},fr:function(){return Te},g4:function(){return Ne},gq:function(){return ae},hf:function(){return ht},i:function(){return Xt},i6:function(){return $i},i7:function(){return Wr},iE:function(){return A},ih:function(){return mi},jA:function(){return m},kW:function(){return ot},km:function(){return Yn},nP:function(){return M},nQ:function(){return zt},nX:function(){return Pr},oM:function(){return tt},oR:function(){return Hi},o_:function(){return qr},pf:function(){return At},pr:function(){return _i},pv:function(){return Oi},qB:function(){return Dt},r2:function(){return V},rS:function(){return ne},s:function(){return zi},sK:function(){return x},sb:function(){return pe},sm:function(){return B},t1:function(){return ke},tB:function(){return Ca},tR:function(){return lr},td:function(){return Be},uh:function(){return Ce},up:function(){return Vr},v2:function(){return P},vV:function(){return Nt},w9:function(){return z},wR:function(){return Ai},yS:function(){return ze},yV:function(){return me},yd:function(){return Er},zg:function(){return Rt}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(Ee,nt,qe)=>nt in Ee?i(Ee,nt,{enumerable:!0,configurable:!0,writable:!0,value:qe}):Ee[nt]=qe,h=(Ee,nt)=>{for(var qe in nt||(nt={}))c.call(nt,qe)&&o(Ee,qe,nt[qe]);if(l)for(var qe of l(nt))f.call(nt,qe)&&o(Ee,qe,nt[qe]);return Ee},u=(Ee,nt,qe)=>new Promise((Tt,lt)=>{var hr=$r=>{try{Cr(qe.next($r))}catch(en){lt(en)}},pr=$r=>{try{Cr(qe.throw($r))}catch(en){lt(en)}},Cr=$r=>$r.done?Tt($r.value):Promise.resolve($r.value).then(hr,pr);Cr((qe=qe.apply(Ee,nt)).next())});const a=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/update_group.json`,{method:"put",body:Ee})}),x=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/students.json`,{method:"Get",params:Ee})}),p=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/add_groups.json`,{method:"post",body:Ee})}),y=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/list_groups_by_settings.json`,{method:"post",body:Ee})}),m=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/groups.json`,{method:"Get",params:Ee})}),b=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/update_leader_permission.json`,{method:"put",body:Ee})}),S=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/update_group_settings`,{method:"put",body:Ee})}),k=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.coursesId}/group_homeworks/${Ee==null?void 0:Ee.categoryId}/group_settings.json`,{method:"Get",params:Ee})}),R=Ee=>u(void 0,null,function*(){return Fetch(`/api/homework_commons/${Ee==null?void 0:Ee.id}/test_result_setting.json`,{method:"post",body:Ee})}),A=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.course_id}/course_videos/configs.json`,{method:"put",body:Ee})}),P=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.course_id}/course_videos/list_for_config.json`,{method:"Get",params:Ee})}),M=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.course_id}/homework_commons/max_late_time.json`,{method:"Get",params:Ee})}),B=Ee=>u(void 0,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.course_id}/homework_commons/batch_late_setting`,{method:"post",body:Ee})}),N=Ee=>u(void 0,null,function*(){return(0,r.ZP)("/api/course_statistics/course_use_infos.json",{method:"Get",params:Ee})}),K=Ee=>u(void 0,null,function*(){return(0,r.ZP)("/api/course_statistics/rank_list.json",{method:"Get",params:Ee})}),H=Ee=>u(void 0,null,function*(){return(0,r.ZP)("/api/course_statistics/statistics_body.json",{method:"Get",params:Ee})}),W=Ee=>u(void 0,null,function*(){return(0,r.ZP)("/api/course_statistics/statistics_header.json",{method:"Get",params:Ee})});function ae(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.course_id}/set_assistant_permissions.json`,{method:"post",body:h({},Ee.permissions)})})}function ne(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.course_id}/assistant_permissions.json`,{method:"Get",params:h({},Ee)})})}function oe(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/ai_status_query.json`,{method:"Get",params:Ee})})}function q(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/update_course_portrait_data.json`,{method:"post",body:h({},Ee)})})}function X(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/get_user_portrait_config.json`,{method:"Get",params:Ee})})}function V(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/update_user_portrait_config.json?id=${Ee.coursesId}`,{method:"put",body:h({},Ee)})})}function se(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/courses.json",{method:"Get",params:h({},Ee)})})}function ee(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/intelligent_recommendations/according_course_recommend_shixuns.json",{method:"Get",params:h({},Ee)})})}function J(Ee){return u(this,null,function*(){return Fetch("/api/disciplines.json",{method:"Get",params:h({},Ee)})})}function le(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/top_banner.json`,{method:"get",params:h({},Ee)})})}function z(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id||Ee.coursesId}/left_banner.json`,{method:"get",params:h({},Ee)})})}function j(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/homework_commons.json`,{method:"get",params:h({},Ee)})})}function ie(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/homework_commons/list.json`,{method:"get",params:h({},Ee)})})}function me(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/graduation_topics.json`,{method:"get",params:h({},Ee)})})}function Se(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/graduation_tasks.json`,{method:"get",params:h({},Ee)})})}function Ie(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/v2/courses/${Ee.id}/exercises.json`,{method:"get",params:h({},Ee)})})}function He(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/polls.json`,{method:"get",params:h({},Ee)})})}function je(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/homework_commons.json`,{method:"get",params:h({},Ee)})})}function Dt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/course_groups.json`,{method:"get",params:h({},Ee)})})}function ht(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/all_course_groups.json`,{method:"get",params:h({},Ee)})})}function It(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/attendances.json`,{method:"get",params:h({},Ee)})})}function Zt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/weapps/courses/${Ee.coursesId}/attendances.json`,{method:"get",params:h({},Ee)})})}function Rt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/attendances/${Ee.id}/edit.json`,{method:"get",params:h({},Ee)})})}function ar(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/informs.json`,{method:"get",params:h({},Ee)})})}function $e(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/files.json",{method:"get",params:h({},Ee)})})}function gt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/course_videos.json`,{method:"get",params:h({},Ee)})})}function Mt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/live_links.json`,{method:"get",params:h({},Ee)})})}function et(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/courses/mine.json",{method:"get",params:h({},Ee)})})}function ft(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/boards/${Ee.categoryId}/messages.json`,{method:"get",params:h({},Ee)})})}function ot(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/course_groups.json`,{method:"get",params:h({},Ee)})})}function Je(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/students.json`,{method:"get",params:h({},Ee)})})}function Ne(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/statistics.json`,{method:"get",params:h({},Ee)})})}function ye(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/work_score.json`,{method:"get",params:h({},Ee)})})}function ke(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/act_score.json`,{method:"get",params:h({},Ee)})})}function Ge(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/shixun_lists.json",{method:"get",params:h({},Ee)})})}function We(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/item_banks.json",{method:"get",params:h({},Ee)})})}function Xe(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.course_id}/homework_commons/impersonal_list.json`,{method:"get",params:h({},Ee)})})}function ut(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/homework_commons/create_shixun_homework.json`,{method:"post",body:h({},Ee)})})}function pt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee==null?void 0:Ee.course_id}/homework_commons/create_collaborators.json`,{method:"post",body:h({},Ee)})})}function or(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/subject_lists.json",{method:"get",params:h({},Ee)})})}function tr(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/homework_commons/create_subject_homework.json`,{method:"post",body:h({},Ee)})})}function Me(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/schools/school_list.json",{method:"get",params:Ee})})}function tt(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/courses/search_course_list.json",{method:"post",body:Ee})})}function Yt(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/courses.json",{method:"post",body:Ee})})}function Ot(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/add_school_applies.json",{method:"post",body:Ee})})}function zt(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/users/member_search.json",{method:"get",params:Ee})})}function Ht(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/student_groups.json",{method:"get",params:h({page:1,limit:1e3},Ee)})})}function lr(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.identifier}/add_student_groups.json`,{method:"post",body:Ee})})}function Wt(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/courses/search_all.json",{method:"get",params:Ee})})}function Ce(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/add_teacher.json`,{method:"post",body:Ee})})}function ce(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/add_students_by_search.json`,{method:"post",body:Ee})})}function pe(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/set_public_or_private.json`,{method:"post",body:Ee})})}function Ct(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/set_invite_code_halt.json`,{method:"post",body:Ee})})}function Ae(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/duplicate_course.json`,{method:"post",body:Ee})})}function st(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/update_end_date.json`,{method:"put",body:Ee})})}function Gt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}.json`,{method:"delete",body:Ee})})}function bt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/settings.json`,{method:"get",params:h({},Ee)})})}function Te(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}.json`,{method:"put",body:Ee})})}function yt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_couser_info.json`,{method:"get",params:{export:!0}})})}function ze(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_member_act_score_async.json`,{method:"get",params:h({export:!0},Ee)})})}function xe(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_total_homework_commons_score.json`,{method:"get",params:h({export:!0},Ee)})})}function dt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_total_exercises_and_other_score.json`,{method:"get",params:h({export:!0},Ee)})})}function Pt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_star_user.json`,{method:"get",params:h({export:!0},Ee)})})}function Be(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_mooc_records.json`,{method:"get",params:h({export:!0},Ee)})})}function Or(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/export_total_course_score.json`,{method:"get",params:h({export:!0},Ee)})})}function mt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Ee.categoryId}/export_scores.json`,{method:"get",params:h({export:!0},Ee)})})}function qr(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Ee.categoryId}/export_shixun_report.json`,{method:"get",params:h({export:!0},Ee)})})}function an(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/exercises/${Ee.categoryId}/export_exercise_users.json`,{method:"get",params:h({export:!0},Ee)})})}function Nt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/exercises/${Ee.categoryId}/export_exercise_word.json`,{method:"get",params:h({export:!0},Ee)})})}function qt(Ee){return u(this,null,function*(){return Fetch(`/api/homework_commons/${Ee.categoryId}/works_list.zip`,{method:"get",params:h({export:!0},Ee)})})}function Lt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api//course_second_categories/${Ee.id}.json`,{method:"delete",params:{export:!0}})})}function Xt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api//boards/${Ee.id}.json`,{method:"delete",params:{export:!0}})})}function Er(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/course_modules/${Ee.id}/sticky_module.json`,{method:"get"})})}function Pr(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/course_modules/${Ee.id}/hidden_module.json`,{method:"get"})})}function At(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/courses/new.json",{method:"get",params:Ee})})}function Kt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/weapps/attendances/${Ee.id}.json`,{method:"get",params:Ee})})}function Bt(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/weapps/course_member_attendances.json",{method:"get",params:Ee})})}function Jt(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/weapps/course_member_attendances/update_status.json",{method:"post",body:Ee})})}function br(Ee){return u(this,null,function*(){return Fetch(`/api/polls/${Ee.categoryId}/commit_result.xlsx`,{method:"get",params:h({export:!0},Ee)})})}function Xr(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/exercises/${Ee.categoryId}/export_scores.json`,{method:"get",params:h({export:!0},Ee)})})}function Wr(Ee){return(0,r.ZP)(`/api/polls/${Ee.categoryId}/start_answer.json`,{method:"get",params:h({},Ee)})}function jn(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/poll_questions/${Ee.questionId}/poll_votes.json`,{method:"post",body:Ee})})}function wn(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${Ee.categoryId}/commit_poll.json`,{method:"post",body:Ee})})}function Yn(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.courseId}/tasks_list.json`,{method:"get",params:Ee})})}function St(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.courseId}/update_task_position.json`,{method:"post",body:Ee})})}function Vr(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/calculate_all_shixun_scores.json`,{method:"get",params:Ee})})}function ii(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/all_course_groups.json`,{method:"get",params:Ee})})}function Bi(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/polls/all_course_groups.json`,{method:"get",params:Ee})})}function Gn(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/students.json`,{method:"get",params:Ee})})}function ci(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/course_groups/${Ee.categoryId}/rename_group.json`,{method:"POST",body:Ee})})}function Oi(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/course_groups/${Ee.categoryId}.json`,{method:"delete",body:Ee})})}function $i(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/join_course_group.json`,{method:"POST",body:Ee})})}function Ai(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/transfer_to_course_group.json`,{method:"post",body:Ee})})}function ji(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/delete_from_course.json`,{method:"post",body:Ee})})}function ha(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/join_course_group.json`,{method:"post",body:Ee})})}function ea(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/exit_course.json`,{method:"post"})})}function Yi(Ee){return u(this,null,function*(){return(0,r.ZP)("/api/weapps/course_member_attendances.json",{method:"post",body:h({},Ee)})})}function mi(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/mooc_users/${Ee.user_id}/edit.json`,{method:"get",params:Ee})})}function zi(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/mooc_users.json`,{method:"post",body:Ee})})}function Ca(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.coursesId}/mooc_users/${Ee.user_id}.json`,{method:"put",body:Ee})})}function xt(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/course_second_categories/${Ee.id}/move_category.json`,{method:"post",body:Ee})})}function xa(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/boards/${Ee.id}/move_category.json`,{method:"post",body:Ee})})}function Zi(Ee){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee.id}/courseware.json`,{method:"get",params:Ee})})}function _i(Ee,nt){return u(this,null,function*(){return(0,r.ZP)(`/api/exercises/${Ee}/mark_wrong_topic.json`,{method:"get",params:nt})})}function Da(Ee,nt){return u(this,null,function*(){return(0,r.ZP)(`/api/exercises/${Ee}/cancel_wrong_topic.json`,{method:"get",params:nt})})}function Hi(Ee,nt){return u(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Ee}/allow_end_group.json`,{method:"get",params:nt})})}function ei(Ee,nt){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${Ee}/homework_commons/end_with_homework_list_position.json`,{method:"post",body:nt})})}function $n(Ee,nt){return u(this,null,function*(){return(0,r.ZP)(`/api/tasks/${Ee}/get_content_for_commit_id.json`,{method:"get",params:nt})})}},30945:function(d,v,e){"use strict";e.d(v,{$M:function(){return Rt},$P:function(){return or},Ax:function(){return x},Dh:function(){return k},FU:function(){return W},GQ:function(){return ee},IN:function(){return Ne},JM:function(){return We},Ju:function(){return Zt},Mn:function(){return Je},Ni:function(){return ie},Pg:function(){return R},Pt:function(){return S},Qp:function(){return V},R9:function(){return ae},Ux:function(){return se},Vy:function(){return He},XJ:function(){return j},XR:function(){return ht},Ze:function(){return B},aq:function(){return M},bQ:function(){return m},bu:function(){return p},cC:function(){return a},jS:function(){return oe},lm:function(){return ye},ml:function(){return le},o3:function(){return $e},pA:function(){return Mt},pS:function(){return Ge},pU:function(){return z},ps:function(){return H},q0:function(){return ft},qN:function(){return ot},qS:function(){return b},qj:function(){return Dt},qt:function(){return ut},rV:function(){return A},rZ:function(){return Xe},rk:function(){return Se},rm:function(){return X},sK:function(){return q},sL:function(){return et},su:function(){return ke},tC:function(){return Ie},tO:function(){return je},u9:function(){return J},uZ:function(){return me},vV:function(){return K},xx:function(){return tr},y8:function(){return It},yS:function(){return N},zF:function(){return y},zc:function(){return ne},zj:function(){return P},zz:function(){return pt}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(Me,tt,Yt)=>tt in Me?i(Me,tt,{enumerable:!0,configurable:!0,writable:!0,value:Yt}):Me[tt]=Yt,h=(Me,tt)=>{for(var Yt in tt||(tt={}))c.call(tt,Yt)&&o(Me,Yt,tt[Yt]);if(l)for(var Yt of l(tt))f.call(tt,Yt)&&o(Me,Yt,tt[Yt]);return Me},u=(Me,tt,Yt)=>new Promise((Ot,zt)=>{var Ht=Ce=>{try{Wt(Yt.next(Ce))}catch(ce){zt(ce)}},lr=Ce=>{try{Wt(Yt.throw(Ce))}catch(ce){zt(ce)}},Wt=Ce=>Ce.done?Ot(Ce.value):Promise.resolve(Ce.value).then(Ht,lr);Wt((Yt=Yt.apply(Me,tt)).next())});const a=Me=>(0,r.ZP)(`/api/competitions/${Me.identifier}/create_guide.json`,{method:"post",body:Me}),x=Me=>(0,r.ZP)(`/api/competitions/${Me.identifier}/guides.json`,{method:"get",params:Me}),p=Me=>(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.competition_team_id}/edit_info.json`,{method:"put",body:Me});function y(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/update_result.json`,{method:"post",body:Me})})}function m(Me){return u(this,null,function*(){return(0,r.ZP)("/api/competitions.json",{method:"Get",params:h({},Me)})})}function b(Me){return u(this,null,function*(){return(0,r.ZP)("/api/courses/apply_to_join_course.json",{method:"post",body:Me})})}function S(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams.json`,{method:"post"})})}function k(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_staff.json`,{method:"get"})})}function R(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/common_header.json`,{method:"get"})})}function A(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/${Me.url}`,{method:"get",params:h({},Me)})})}function P(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/update_md_content.json`,{method:"post",body:Me})})}function M(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams.json`,{method:"get",params:Me})})}function B(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.Teannameid}/edit.json`,{method:"get",params:Me})})}function N(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.Teannameid}.json`,{method:"put",body:Me})})}function K(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.id}/leave.json`,{method:"post",body:Me})})}function H(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.id}.json`,{method:"delete"})})}function W(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams.json`,{method:"post",body:Me})})}function ae(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.id}/add_managers.json`,{method:"post",body:Me})})}function ne(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/join.json`,{method:"post",body:Me})})}function oe(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/teachers.json`,{method:"get",params:Me})})}function q(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/students.json`,{method:"get",params:Me})})}function X(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.teamid}/crud_team_members.json`,{method:"post",body:Me})})}function V(Me){return u(this,null,function*(){return(0,r.ZP)("/api/users/competition_reward.json",{method:"post",body:Me})})}function se(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/chart_rules.json`,{method:"get"})})}function ee(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/charts.json`,{method:"get",params:Me})})}function J(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/results.json`,{method:"get",params:Me})})}function le(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/md_tab_rules.json`,{method:"get",params:Me})})}function z(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/prize.json`,{method:"get",params:Me})})}function j(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${Me.id}.json`,{method:"get",params:Me})})}function ie(Me){return u(this,null,function*(){return(0,r.ZP)("/api/accounts/get_verification_code.json",{method:"get",params:Me})})}function me(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${Me.userid}/phone_bind.json`,{method:"post",body:Me})})}function Se(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${Me.userid}/email_bind.json`,{method:"post",body:Me})})}function Ie(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${Me.userid}/professional_auth_apply.json`,{method:"delete"})})}function He(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/users/accounts/${Me.userid}/authentication_apply.json`,{method:"delete"})})}function je(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/prize_leader_account.json`,{method:"put",body:Me})})}function Dt(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.teamid}/shixun_detail.json`,{method:"get"})})}function ht(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams/${Me.teamid}/course_detail.json`,{method:"get"})})}function It(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/attachments/${Me.id}.json`,{method:"delete"})})}function Zt(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.id}/get_certificate_info.json`,{method:"get",params:Me})})}function Rt(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.id}/basic_setting.json`,{method:"post",body:Me})})}function ar(){return u(this,null,function*(){return Fetch("/api/competitions/download_template",{method:"get",responseType:"arraybuffer"})})}function $e(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me}/common_header.json`,{method:"get"})})}function gt(Me){return u(this,null,function*(){return Fetch("/api/competitions.json",{method:"post",body:Me})})}function Mt(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/search_managers.json`,{method:"get",params:Me})})}function et(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me}/get_managers.json`,{method:"get"})})}function ft(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/add_managers.json`,{method:"post",body:Me})})}function ot(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/delete_managers.json`,{method:"delete",body:Me})})}function Je(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me}/get_picture.json`,{method:"get"})})}function Ne(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/identifier_exist.json`,{method:"post",body:Me})})}function ye(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me}/get_shixun_settings.json`,{method:"get"})})}function ke(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/shixun_add.json`,{method:"post",body:Me})})}function Ge(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/shixun_delete.json`,{method:"delete",body:Me})})}function We(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/shixun_select.json`,{method:"post",body:Me})})}function Xe(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me}/info_finish.json`,{method:"get"})})}function ut(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me==null?void 0:Me.id}/competition_review.json`,{method:"post",body:h({},Me)})})}function pt(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_teams.json`,{method:"get",params:Me})})}function or(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/all_team_members.json`,{method:"get",params:Me})})}function tr(Me){return u(this,null,function*(){return(0,r.ZP)(`/api/competitions/${Me.identifier}/competition_commit_records/member_works.json`,{method:"get",params:Me})})}},55510:function(d,v,e){"use strict";e.d(v,{F:function(){return b},OE:function(){return P},ff:function(){return S},p1:function(){return k},_y:function(){return m},mK:function(){return K},gq:function(){return W},eM:function(){return N},BA:function(){return oe},bA:function(){return X},Nx:function(){return q},Qx:function(){return M},At:function(){return R},PX:function(){return A},Xl:function(){return B},y9:function(){return H},No:function(){return ae},ay:function(){return V}});var r=e(38147),i=Object.defineProperty,l=Object.defineProperties,c=Object.getOwnPropertyDescriptors,f=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,u=(se,ee,J)=>ee in se?i(se,ee,{enumerable:!0,configurable:!0,writable:!0,value:J}):se[ee]=J,a=(se,ee)=>{for(var J in ee||(ee={}))o.call(ee,J)&&u(se,J,ee[J]);if(f)for(var J of f(ee))h.call(ee,J)&&u(se,J,ee[J]);return se},x=(se,ee)=>l(se,c(ee)),p=(se,ee)=>{var J={};for(var le in se)o.call(se,le)&&ee.indexOf(le)<0&&(J[le]=se[le]);if(se!=null&&f)for(var le of f(se))ee.indexOf(le)<0&&h.call(se,le)&&(J[le]=se[le]);return J},y=(se,ee,J)=>new Promise((le,z)=>{var j=Se=>{try{me(J.next(Se))}catch(Ie){z(Ie)}},ie=Se=>{try{me(J.throw(Se))}catch(Ie){z(Ie)}},me=Se=>Se.done?le(Se.value):Promise.resolve(Se.value).then(j,ie);me((J=J.apply(se,ee)).next())});const m=se=>y(void 0,null,function*(){var ee=se,{id:J}=ee,le=p(ee,["id"]);return(0,r.ZP)(`/api/ec_years/${J}/course_results.json`,{method:"get",params:le})}),b=se=>{let ee=document.createElement("iframe");ee.src=`/api/ec_years/${se}/course_results.xlsx`,ee.style.display="none",document.body.appendChild(ee)},S=({ec_year_id:se})=>(0,r.ZP)(`/api/ec_years/${se}/course_results/get_class.json`,{method:"get"}),k=({ec_year_id:se,id:ee,class_name:J=null})=>(0,r.ZP)(`/api/ec_years/${se}/course_results/${ee}.json`,{method:"get",params:{class_name:J}}),R=({ec_year_id:se})=>(0,r.ZP)("/api/ec_courses/1/evaluations/compute_all_courses_data",{method:"post",body:{ec_year_id:se}}),A=({ec_course_id:se})=>(0,r.ZP)(`/api/ec_courses/${se}/evaluations/evaluation_data`,{method:"POST"}),P=se=>{let ee=document.createElement("iframe");ee.src=`/api/ec_years/${se}/ec_graduation_results.xlsx`,ee.style.display="none",document.body.appendChild(ee)},M=({ec_year_id:se})=>(0,r.ZP)(`/api/ec_years/${se}/ec_graduation_results/compute_all`,{method:"post"}),B=({ec_year_id:se,id:ee})=>(0,r.ZP)(`/api/ec_years/${se}/ec_graduation_results/compute_single?id=${ee}`,{method:"POST"}),N=se=>(0,r.ZP)(`/api/ec_years/${se}/ec_graduation_results.json`,{method:"get"}),K=se=>(0,r.ZP)(`/api/ec_years/${se}/ec_graduation_results/get_formulas.json`,{method:"get"}),H=({ec_year_id:se,formula_one:ee,formula_two:J,formula_three:le})=>(0,r.ZP)(`/api/ec_years/${se}/ec_graduation_results/set_formulas.json`,{method:"PUT",body:{formula_one_id:ee,formula_two_id:J,formula_three_id:le}}),W=({ec_year_id:se,id:ee})=>(0,r.ZP)(`/api/ec_years/${se}/ec_graduation_results/${ee}.json`,{method:"get"}),ae=se=>{var ee=se,{ec_year_id:J,type:le,goal_value:z}=ee,j=p(ee,["ec_year_id","type","goal_value"]);let ie=`?type=${le}`,me={method:"PUT"};return le==="all"&&(ie+=`&goal_value=${z}`),le==="each"&&(me=x(a({},me),{body:j})),(0,r.ZP)(`/api/ec_years/${J}/ec_graduation_results/set_goal_value${ie}`,me)};var ne=(se,ee,J)=>new Promise((le,z)=>{var j=Se=>{try{me(J.next(Se))}catch(Ie){z(Ie)}},ie=Se=>{try{me(J.throw(Se))}catch(Ie){z(Ie)}},me=Se=>Se.done?le(Se.value):Promise.resolve(Se.value).then(j,ie);me((J=J.apply(se,ee)).next())});const oe=se=>ne(void 0,null,function*(){return(0,r.ZP)(`/api/schools/${se}/ec_majors/get_major_list.json`,{method:"get"})}),q=se=>ne(void 0,null,function*(){return(0,r.ZP)(`/api/ec_major_schools/${se}/ec_years/get_year_list.json`,{method:"get"})}),X=({ec_year_id:se,school_id:ee})=>(0,r.ZP)(`/api/ec_years/${se}/top_pages.json`,{method:"get",params:{school_id:ee}}),V=({id:se,name:ee})=>(0,r.ZP)(`/api/ec_years/1/top_pages/${se}?name=${ee}`,{method:"PUT"})},87513:function(d,v,e){"use strict";e.d(v,{$Q:function(){return P},$l:function(){return Wr},BJ:function(){return ot},CD:function(){return tt},Cd:function(){return ut},Cl:function(){return Be},Di:function(){return ar},Fl:function(){return Mt},G$:function(){return le},GK:function(){return gt},Ip:function(){return ye},J:function(){return z},KE:function(){return et},L8:function(){return Wt},LP:function(){return ke},MK:function(){return $e},Mb:function(){return Nt},N0:function(){return H},N3:function(){return je},OO:function(){return R},P8:function(){return Pr},PJ:function(){return ie},PT:function(){return Lt},Qc:function(){return ae},RK:function(){return J},Ty:function(){return xe},UH:function(){return st},UK:function(){return Dt},Uj:function(){return tr},Ul:function(){return Xe},VL:function(){return zt},Vj:function(){return ce},W4:function(){return or},WL:function(){return pe},Wj:function(){return ee},X4:function(){return Ne},Xn:function(){return qr},Xo:function(){return oe},YY:function(){return Rt},Ym:function(){return N},Yu:function(){return At},ZD:function(){return Er},Zg:function(){return Or},_B:function(){return Me},_F:function(){return qt},_U:function(){return X},_u:function(){return me},aU:function(){return K},ab:function(){return Pt},cC:function(){return ze},cV:function(){return V},ck:function(){return Xt},dp:function(){return W},eA:function(){return br},fG:function(){return S},gA:function(){return se},gG:function(){return an},gJ:function(){return Kt},hk:function(){return y},hv:function(){return m},iB:function(){return b},iU:function(){return k},iw:function(){return yt},kp:function(){return Ht},lL:function(){return A},lf:function(){return He},n$:function(){return Ie},n7:function(){return q},nF:function(){return Ce},o3:function(){return Bt},oS:function(){return Ge},oX:function(){return Ot},oy:function(){return dt},p7:function(){return B},pL:function(){return Yt},pu:function(){return Je},q6:function(){return lr},qf:function(){return Zt},qz:function(){return We},s:function(){return bt},sA:function(){return Ct},sS:function(){return Jt},tX:function(){return Gt},uR:function(){return ht},ux:function(){return ft},wy:function(){return It},xA:function(){return Te},yE:function(){return ne},yu:function(){return Ae},zP:function(){return M},zR:function(){return Xr}});var r=e(38147),i=Object.defineProperty,l=Object.defineProperties,c=Object.getOwnPropertyDescriptors,f=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,u=(St,Vr,ii)=>Vr in St?i(St,Vr,{enumerable:!0,configurable:!0,writable:!0,value:ii}):St[Vr]=ii,a=(St,Vr)=>{for(var ii in Vr||(Vr={}))o.call(Vr,ii)&&u(St,ii,Vr[ii]);if(f)for(var ii of f(Vr))h.call(Vr,ii)&&u(St,ii,Vr[ii]);return St},x=(St,Vr)=>l(St,c(Vr)),p=(St,Vr,ii)=>new Promise((Bi,Gn)=>{var ci=Ai=>{try{$i(ii.next(Ai))}catch(ji){Gn(ji)}},Oi=Ai=>{try{$i(ii.throw(Ai))}catch(ji){Gn(ji)}},$i=Ai=>Ai.done?Bi(Ai.value):Promise.resolve(Ai.value).then(ci,Oi);$i((ii=ii.apply(St,Vr)).next())});const y=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/statistics/list_student_score_by_question_type.json`,{method:"get",params:St}),m=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/statistics/list_student_score_by_question.json`,{method:"get",params:St}),b=St=>(0,r.ZP)(`/api/exercises/${St.exercise_id}/statistics/export_class_compare.xlsl`,{method:"get",params:St}),S=St=>(0,r.ZP)(`/api/exercises/${St.exercise_id}/statistics/class_question_compare.json`,{method:"get",params:St}),k=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/statistics/class_score_distribution.json`,{method:"get",params:St}),R=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/statistics/list_student_score.json`,{method:"get",params:St}),A=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/statistics/set_score_ranges.json`,{method:"put",body:St}),P=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/statistics/score_ranges.json`,{method:"get",params:St}),M=St=>(0,r.ZP)(`/api/exercises/${St.id}/sava_exam_summary.json`,{method:"post",body:St}),B=St=>(0,r.ZP)("/api/intelligent_reviews/exam_summary.json",{method:"post",body:St}),N=St=>(0,r.ZP)(`/api/exercises/${St.id}/generate_exam_summary.json`,{method:"post",body:St}),K=St=>(0,r.ZP)(`/api/exercises/${St.id}/exam_summary_settings.json`,{method:"post",body:St}),H=St=>p(void 0,null,function*(){return(0,r.ZP)(`/api/exercises/${St==null?void 0:St.exercise_id}/review_exercise_user.json`,{method:"post",body:St})}),W=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.id}/code_check.json`,{method:"get",params:St}),ae=St=>(0,r.ZP)(`/api/exercises/${St.id}/reset_pwd.json`,{method:"post",body:St}),ne=St=>(0,r.ZP)(`/api/exercises/${St.id}/encrypt_or_decrypt.json`,{method:"post",body:St}),oe=St=>p(void 0,null,function*(){return(0,r.ZP)(`/api/exercises/${St.id}/delayed_time_or_force.json`,{method:"post",body:St})}),q=St=>p(void 0,null,function*(){return(0,r.ZP)(`/api/exercises/${St==null?void 0:St.id}/exercise_time.json`,{method:"Get",params:St})}),X=St=>(0,r.ZP)(`/api/exercises/${St==null?void 0:St.id}/exercise_question_result.json`,{method:"get",params:St}),V=St=>(0,r.ZP)(`/api/exercises/${St.id}/get_question_type_alias.json`,{method:"get",params:St});function se(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St==null?void 0:St.id}/teacher_update.json`,{method:"post",body:a({},St)})})}function ee(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St==null?void 0:St.id}/adjust_comment.json`,{method:"post",body:a({},St)})})}function J(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.id}/edit_question_type_alias.json`,{method:"POST",body:St})})}function le(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_lists.json`,{method:"get",params:a({},St)})})}function z(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_identity_photos.json`,{method:"get",params:a({},St)})})}function j(St){return p(this,null,function*(){return Fetch(`/api/exercises/${St.categoryId}/video_push_url.json`,{method:"get",params:a({},St)})})}function ie(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/query_identity_photo_state.json`,{method:"get",params:a({},St)})})}function me(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_result.json`,{method:"get",params:a({},St)})})}function Se(St){return p(this,null,function*(){return Fetch(`/api/exercises/${St.categoryId}/exercise_score_area_setting.json`,{method:"post",body:a({},St)})})}function Ie(St){return p(this,null,function*(){return(0,r.ZP)("/api/question_banks/bank_list.json",{method:"get",params:a({},St)})})}function He(St){return p(this,null,function*(){return(0,r.ZP)("/api/question_banks/save_banks.json",{method:"POST",body:a({},St)})})}function je(St){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${St.coursesId}/exercises/publish_modal.json`,{method:"get",params:a({},St)})})}function Dt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/common_header.json`,{method:"get",params:a({},St)})})}function ht(St){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${St.coursesId}/exercises.json`,{method:"post",body:a({},St)})})}function It(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.exerciseId}.json`,{method:"put",body:a({},St)})})}function Zt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}.json`,{method:"get",params:a({},St)})})}function Rt(St){return p(this,null,function*(){return(0,r.ZP)("/api/tag_disciplines.json",{method:"get",params:a({},St)})})}function ar(St){return p(this,null,function*(){const{id:Vr}=St;return delete St.id,(0,r.ZP)(`/api/exercise_questions/${Vr}.json`,{method:"put",body:a({},St)})})}function $e(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_questions.json`,{method:"post",body:a({},St)})})}function gt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St.id}/up_down.json`,{method:"post",body:a({},St)})})}function Mt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St.id}.json`,{method:"delete"})})}function et(St){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${St.coursesId}/exercises/end_modal.json`,{method:"get",params:a({},St)})})}function ft(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/publish_groups.json`,{method:"get",params:a({},St)})})}function ot(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.exerciseId}/user_exercise_detail.json`,{method:"get",params:a({},St)})})}function Je(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.exerciseId}/consult_exercise.json`,{method:"post",body:a({},St)})})}function Ne(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.exerciseId}/teacher_appraise.json`,{method:"get",params:a({},St)})})}function ye(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St.id}/adjust_score.json`,{method:"post",body:a({},St)})})}function ke(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St.id}/batch_adjust_score.json`,{method:"post",body:a({},St)})})}function Ge(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.id}/adjust_score.json`,{method:"post",body:a({},St)})})}function We(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.id}/delayed_time.json`,{method:"post",body:a({},St)})})}function Xe(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_setting.json`,{method:"get",params:a({},St)})})}function ut(St){return p(this,null,function*(){return(0,r.ZP)(`/api/v2/exercises/${St.categoryId}/exercise_setting.json`,{method:"get",params:a({},St)})})}function pt(St){return p(this,null,function*(){return Fetch(`/api/exercises/${St.categoryId}/commit_setting.json`,{method:"post",body:a({},St)})})}function or(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.exerciseId}/review_exercises_by_students.json`,{method:"post",body:a({},St)})})}function tr(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_lists.xlsx`,{method:"get",params:x(a({},St),{export:!0})})})}function Me(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/user_exercise_detail.json`,{method:"get",params:x(a({},St),{login:null})})}function tt(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/start.json`,{method:"get",params:a({},St)})}function Yt(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/start_unlock.json`,{method:"post",body:a({},St)})}function Ot(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St.questionId}/exercise_answers.json`,{method:"post",body:St})})}function zt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/commit_exercise.json`,{method:"post",body:St})})}function Ht(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/simulate_commit_exercise.json`,{method:"post",body:St})})}function lr(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/redo_exercise.json`,{method:"post",body:St})})}function Wt(St){return(0,r.ZP)(`/api/${St.url}`,{method:"get",params:a({},St)})}function Ce(St){return(0,r.ZP)(`/api/problems/${St.id}/start.json`,{method:"get",params:a({},St)})}function ce(St){return(0,r.ZP)(`/api/exercises/${St.id}/begin_commit.json`,{method:"get",params:a({},St)})}function pe(St){return(0,r.ZP)(`/api/exercises/${St.id}/simulate_begin_commit.json`,{method:"get",params:a({},St)})}function Ct(St){return(0,r.ZP)("/api/examination_intelligent_settings/optional_items.json",{method:"post",body:a({},St)})}function Ae(St){return console.log("params:",St),(0,r.ZP)(`/api/exercises/${St.categoryId}/edit.json`,{method:"get",params:a({},St)})}function st(St){return(0,r.ZP)(`/api/exercises/${St.id}/get_objective_scores.json`,{method:"get",params:a({},St)})}function Gt(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/redo_modal.json`,{method:"get",params:a({},St)})}function bt(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/student_redo_lists.json`,{method:"get",params:a({},St)})}function Te(St){return(0,r.ZP)("/api/exercises/get_user_exercises.json",{method:"get",params:St})}function yt(St){return(0,r.ZP)(`/api/exercises/${St.id}/exercise_header.json`,{method:"get",params:a({},St)})}function ze(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/allow_close_camera.json`,{method:"post",body:a({},St)})}function xe(St){return(0,r.ZP)(`/api/exercises/${St.categoryId}/get_exercise_user_info.json`,{method:"get",params:a({},St)})}function dt(St){return(0,r.ZP)(`/api/exercises/${St.id}/record_screen`,{method:"post",params:a({},St)})}function Pt(St){return(0,r.ZP)(`/api/exercises/${St.id}/unbind_ip.json`,{method:"post",body:a({},St)})}function Be(St){return(0,r.ZP)(`/api/exercises/${St.id}/check_ip.json`,{method:"get",params:a({},St)})}function Or(St){return(0,r.ZP)(`/api/exercises/${St==null?void 0:St.id}/check_user_exercise.json`,{method:"get",params:a({},St)})}function mt(St){return Fetch(`/api/exercises/${St.id}/make_up_students.json`,{method:"get",params:a({},St)})}function qr(St){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${St.coursesId}/exercises/code_review_detail.json`,{method:"get",params:a({},St)})})}function an(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St.question_id}/adjust_score.json`,{method:"post",body:a({},St)})})}function Nt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${St.categoryId}/simulate_exercise.json`,{method:"post",body:a({},St)})})}function qt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/simulate_start_answer.json`,{method:"get",params:a({},St)})})}function Lt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/exercise_time.json`,{method:"get",params:a({},St)})})}function Xt(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St.categoryId}/commit_screen_at.json`,{method:"post",body:a({},St)})})}function Er(St,Vr){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St}/unlock_user`,{method:"post",body:Vr})})}function Pr(St,Vr){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St}/save_screen_record.json`,{method:"post",body:Vr})})}function At(St,Vr){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St}/screen_record_list.json`,{method:"get",params:Vr})})}function Kt(St){return p(this,null,function*(){return(0,r.ZP)("/api/attachments/set_ecs_attachment.json",{method:"get",params:a({},St)})})}function Bt(St){return p(this,null,function*(){return(0,r.ZP)("/api/exercises/need_redo.json",{method:"get",params:St})})}function Jt(St,Vr){return p(this,null,function*(){return(0,r.ZP)(`/api/exercises/${St}/mark.json`,{method:"post",body:Vr})})}function br(St){return p(this,null,function*(){return(0,r.ZP)(`/api/myshixuns/${St}/exit_delete_pod.json`,{method:"post",body:St})})}function Xr(St){return p(this,null,function*(){return(0,r.ZP)("/api/users/change_exercise_score.json",{method:"put",body:St})})}function Wr(St){return p(this,null,function*(){return(0,r.ZP)(`/api/exercise_questions/${St==null?void 0:St.id}/send_to_item_bank.json`,{method:"post",body:a({},St)})})}function jn(St){return p(this,null,function*(){return Fetch(`/api/ai/wrong_question_push_charts/${St.exercise_id}/wrong_details.json`,{method:"get",params:a({},St)})})}function wn(St){return p(this,null,function*(){return Fetch(`/api/ai/wrong_question_push_charts/${St.exercise_id}/wrong_question.json`,{method:"get",params:a({},St)})})}function Yn(St){return p(this,null,function*(){return Fetch(`/api/ai/wrong_question_push_charts/${St.exercise_id}/wrong_question_lists.json`,{method:"get",params:a({},St)})})}},16209:function(d,v,e){"use strict";e.d(v,{B0:function(){return p},Si:function(){return R},Sr:function(){return P},YP:function(){return A},b4:function(){return k},bc:function(){return a},dX:function(){return S},eh:function(){return M},iI:function(){return m},kd:function(){return x},qR:function(){return b},sW:function(){return y},ts:function(){return N},vL:function(){return B},z5:function(){return K}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(H,W,ae)=>W in H?i(H,W,{enumerable:!0,configurable:!0,writable:!0,value:ae}):H[W]=ae,h=(H,W)=>{for(var ae in W||(W={}))c.call(W,ae)&&o(H,ae,W[ae]);if(l)for(var ae of l(W))f.call(W,ae)&&o(H,ae,W[ae]);return H},u=(H,W,ae)=>new Promise((ne,oe)=>{var q=se=>{try{V(ae.next(se))}catch(ee){oe(ee)}},X=se=>{try{V(ae.throw(se))}catch(ee){oe(ee)}},V=se=>se.done?ne(se.value):Promise.resolve(se.value).then(q,X);V((ae=ae.apply(H,W)).next())});function a(H){return u(this,null,function*(){return(0,r.ZP)("/api/memos.json",{method:"get",params:H})})}function x(H){return u(this,null,function*(){return(0,r.ZP)("/api/discusses/forum_discusses.json",{method:"get",params:H})})}function p(H){return u(this,null,function*(){return(0,r.ZP)(`/api/memos/${H.id}/sticky_or_cancel.json`,{method:"post",body:H})})}function y(H){return u(this,null,function*(){return(0,r.ZP)(`/api/memos/${H.id}.json`,{method:"delete",body:H})})}function m(H){return u(this,null,function*(){return(0,r.ZP)("/api/memos/new.json",{method:"get",params:H})})}function b(H){return u(this,null,function*(){return(0,r.ZP)(`/api/memos/${H.id}/edit.json`,{method:"get",params:H})})}function S(H){return u(this,null,function*(){return(0,r.ZP)("/api/memos.json",{method:"post",body:h({},H)})})}function k(H){return u(this,null,function*(){return(0,r.ZP)(`/api/memos/${H.id}.json`,{method:"put",body:h({},H)})})}function R(H){return u(this,null,function*(){return(0,r.ZP)(`/api/memos/${H.id}.json`,{method:"get",params:H})})}function A(H){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${H.user_id}/watch.json`,{method:"post",body:H})})}function P(H){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${H.user_id}/watch.json`,{method:"delete",body:h({},H)})})}function M(H){return u(this,null,function*(){return(0,r.ZP)(`/api/discusses/${H.id}/reward_code.json`,{method:"post",body:H})})}function B(H){return u(this,null,function*(){return(0,r.ZP)(`/api/discusses/${H.id}/plus.json`,{method:"post",body:H})})}function N(H){return u(this,null,function*(){return(0,r.ZP)("/api/memos/reply.json",{method:"post",body:H})})}function K(H){return u(this,null,function*(){return(0,r.ZP)(`/api/memos/${H.id}/more_reply.json`,{method:"get",params:H})})}},79274:function(d,v,e){"use strict";e.d(v,{D2:function(){return a},n0:function(){return x},tk:function(){return p}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(y,m,b)=>m in y?i(y,m,{enumerable:!0,configurable:!0,writable:!0,value:b}):y[m]=b,h=(y,m)=>{for(var b in m||(m={}))c.call(m,b)&&o(y,b,m[b]);if(l)for(var b of l(m))f.call(m,b)&&o(y,b,m[b]);return y},u=(y,m,b)=>new Promise((S,k)=>{var R=M=>{try{P(b.next(M))}catch(B){k(B)}},A=M=>{try{P(b.throw(M))}catch(B){k(B)}},P=M=>M.done?S(M.value):Promise.resolve(M.value).then(R,A);P((b=b.apply(y,m)).next())});function a(y){return u(this,null,function*(){return(0,r.ZP)("/api/setting.json",{method:"Get",params:h({},y)})})}function x(){return u(this,null,function*(){return(0,r.ZP)("/api/users/system_update.json",{method:"Get"})})}function p(y){return u(this,null,function*(){return(0,r.ZP)("/api/search_records",{method:"post",body:y})})}},66479:function(d,v,e){"use strict";e.d(v,{B6:function(){return p},Gr:function(){return N},Mf:function(){return P},NA:function(){return R},PC:function(){return S},PP:function(){return k},QA:function(){return x},RP:function(){return W},Sv:function(){return H},YQ:function(){return A},_n:function(){return ae},hL:function(){return B},je:function(){return b},mM:function(){return m},wA:function(){return K},x_:function(){return y},y0:function(){return M},y3:function(){return a}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(ne,oe,q)=>oe in ne?i(ne,oe,{enumerable:!0,configurable:!0,writable:!0,value:q}):ne[oe]=q,h=(ne,oe)=>{for(var q in oe||(oe={}))c.call(oe,q)&&o(ne,q,oe[q]);if(l)for(var q of l(oe))f.call(oe,q)&&o(ne,q,oe[q]);return ne},u=(ne,oe,q)=>new Promise((X,V)=>{var se=le=>{try{J(q.next(le))}catch(z){V(z)}},ee=le=>{try{J(q.throw(le))}catch(z){V(z)}},J=le=>le.done?X(le.value):Promise.resolve(le.value).then(se,ee);J((q=q.apply(ne,oe)).next())});function a(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/graduation_tasks/${ne.categoryId}.json`,{method:"get",params:h({},ne)})})}function x(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/graduation_tasks/${ne.categoryId}/tasks_list.json`,{method:"get",params:h({},ne)})})}function p(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/${ne.categoryId}/show_detail.json`,{method:"get",params:h({},ne)})})}function y(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/${ne.categoryId}.json`,{method:"get",params:h({},ne)})})}function m(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/${ne.categoryId}/refuse_student_topic.json`,{method:"post",body:h({},ne)})})}function b(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/${ne.categoryId}/accept_student_topic.json`,{method:"post",body:h({},ne)})})}function S(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${ne.categoryId}/show_comment.json`,{method:"get",params:h({},ne)})})}function k(ne){return u(this,null,function*(){return(0,r.ZP)("/api/users/reply_message.json",{method:"post",body:h({},ne)})})}function R(ne){return u(this,null,function*(){return(0,r.ZP)("/api/praise_tread/like.json",{method:"post",body:h({},ne)})})}function A(ne){return u(this,null,function*(){return(0,r.ZP)("/api/praise_tread/unlike.json",{method:"delete",body:h({},ne)})})}function P(ne){return u(this,null,function*(){return(0,r.ZP)("/api/commons/delete.json",{method:"delete",body:h({},ne)})})}function M(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/new.json`,{method:"get",params:h({},ne)})})}function B(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/${ne.categoryId}/edit.json`,{method:"get",params:h({},ne)})})}function N(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics`,{method:"post",body:h({},ne)})})}function K(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_topics/${ne.categoryId}`,{method:"put",body:h({},ne)})})}function H(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${ne.coursesId}/graduation_tasks`,{method:"post",body:h({},ne)})})}function W(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/graduation_tasks/${ne.categoryId}.json`,{method:"put",body:h({},ne)})})}function ae(ne){return u(this,null,function*(){return(0,r.ZP)(`/api/graduation_tasks/${ne.categoryId}/edit.json`,{method:"get",params:h({},ne)})})}},37090:function(d,v,e){"use strict";e.d(v,{AA:function(){return K},Db:function(){return x},Dd:function(){return b},F7:function(){return q},Fi:function(){return le},H3:function(){return m},HF:function(){return k},HH:function(){return y},Ib:function(){return se},J3:function(){return o},NT:function(){return l},NX:function(){return A},Ot:function(){return R},Ou:function(){return X},Ps:function(){return c},Rk:function(){return oe},Tz:function(){return a},V1:function(){return ee},Wz:function(){return f},Xh:function(){return p},Xw:function(){return ne},YS:function(){return W},Zd:function(){return J},bS:function(){return P},ck:function(){return S},eh:function(){return N},il:function(){return h},j7:function(){return u},jW:function(){return H},km:function(){return ae},l5:function(){return B},rU:function(){return z},xF:function(){return M},zC:function(){return V},zT:function(){return j}});var r=e(38147),i=(ie,me,Se)=>new Promise((Ie,He)=>{var je=It=>{try{ht(Se.next(It))}catch(Zt){He(Zt)}},Dt=It=>{try{ht(Se.throw(It))}catch(Zt){He(Zt)}},ht=It=>It.done?Ie(It.value):Promise.resolve(It.value).then(je,Dt);ht((Se=Se.apply(ie,me)).next())});function l(ie){return(0,r.ZP)("/api/schools/search.json",{method:"get",params:ie})}function c(ie){return(0,r.ZP)(`/api/schools/${ie.id}/departments/for_option.json`,{method:"get",params:ie})}function f(ie){return(0,r.ZP)("/api/graduations.json",{method:"POST",body:ie})}function o(ie){return(0,r.ZP)("/api/graduations.json",{method:"get",params:ie})}function h(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.identifier}/graduation_stages/${ie.stageid}/authorized_redelivery.json`,{method:"POST",body:ie})})}function u(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.identifier}/graduation_stages/${ie.stageid}/submit.json`,{method:"POST",body:ie})})}function a(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/student_tasks/export_status.json`,{method:"get",params:ie})})}function x(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/student_tasks/export_all_attachments.json`,{method:"get",params:ie})})}function p(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.identifier}/graduation_stages/${ie.id}.json`,{method:"get",params:ie})})}function y(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/student_tasks/set_final_score.json`,{method:"POST",body:ie})})}function m(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/student_tasks/final_score.json`,{method:"get",params:ie})})}function b(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/set_novice_guide.json`,{method:"POST",body:ie})})}function S(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_notices/${ie.doid}/set_do.json`,{method:"POST",body:ie})})}function k(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_teachers.json`,{method:"POST",body:ie})})}function R(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.identifier}/graduation_students/${ie.id}/update_major.json`,{method:"PUT",body:ie})})}function A(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_students.json`,{method:"POST",body:ie})})}function P(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_teachers/search.json`,{method:"get",params:ie})})}function M(ie){return i(this,null,function*(){return(0,r.ZP)("/api/schools/search.json",{method:"get",params:ie})})}function B(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_students/search.json`,{method:"get",params:ie})})}function N(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_students.json`,{method:"get",params:ie})})}function K(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_teachers.json`,{method:"get",params:ie})})}function H(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.graduation_id}/graduation_tasks.json`,{method:"POST",body:ie})})}function W(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.graduation_id}/graduation_tasks/${ie.id}.json`,{method:"PUT",body:ie})})}function ae(ie){return i(this,null,function*(){var me;return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_tasks/${(me=ie.ids)==null?void 0:me[0]}`,{method:"DELETE",body:{ids:ie.ids}})})}function ne(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_tasks.json`,{method:"get",params:ie})})}function oe(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}/graduation_notices.json`,{method:"get",params:ie})})}function q(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie.id}.json`,{method:"get"})})}function X(ie){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie==null?void 0:ie.id}/common_header.json`,{method:"get"})})}function V(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/preview.json`,{method:"get"})})}function se(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/graduation_teachers/not_pass.json`,{method:"post",body:me})})}function ee(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/graduation_teachers/pass.json`,{method:"post",body:me})})}function J(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/graduation_students/not_pass.json`,{method:"post",body:me})})}function le(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/graduation_students/pass.json`,{method:"post",body:me})})}function z(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/graduation_students/batch_delete`,{method:"delete",body:me})})}function j(ie,me){return i(this,null,function*(){return(0,r.ZP)(`/api/graduations/${ie}/graduation_teachers/batch_delete`,{method:"delete",body:me})})}},95707:function(d,v,e){"use strict";e.d(v,{LA:function(){return x},NX:function(){return m},Rm:function(){return f},S_:function(){return p},Tt:function(){return h},Yu:function(){return S},Zz:function(){return y},cR:function(){return u},eX:function(){return c},h$:function(){return o},su:function(){return b},vm:function(){return a}});var r=e(38147),i=(k,R,A)=>new Promise((P,M)=>{var B=H=>{try{K(A.next(H))}catch(W){M(W)}},N=H=>{try{K(A.throw(H))}catch(W){M(W)}},K=H=>H.done?P(H.value):Promise.resolve(H.value).then(B,N);K((A=A.apply(k,R)).next())});const l=k=>i(void 0,null,function*(){return Fetch("/api/platform_systems.json",{method:"Get",params:k})}),c=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/env_detail.json",{method:"Get",params:k})}),f=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/env_list.json",{method:"Get",params:k})}),o=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/online_list.json",{method:"Get",params:k})});function h(){return i(this,null,function*(){return(0,r.ZP)("/api/home/index.json",{method:"Get"})})}function u(k){return i(this,null,function*(){return(0,r.ZP)("/api/courses/apply_to_join_course.json",{method:"post",body:k})})}function a(k){return i(this,null,function*(){return(0,r.ZP)("/api/project_applies.json",{method:"post",body:k})})}function x(k){return i(this,null,function*(){return(0,r.ZP)("/api/users/home_notice.json",{method:"Get"})})}function p(k){return i(this,null,function*(){return(0,r.ZP)("/api/users/view_notice.json",{method:"post",body:k})})}const y=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/add_teacher.json",{method:"post",body:k})}),m=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/remove_teacher.json",{method:"delete",body:k})}),b=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/teacher_list.json",{method:"get",params:k})}),S=k=>i(void 0,null,function*(){return(0,r.ZP)("/api/home/data.json",{method:"get",params:k})})},5664:function(d,v,e){"use strict";e.d(v,{AD:function(){return a},Ig:function(){return x},Ko:function(){return m},QJ:function(){return b},Ub:function(){return S},V8:function(){return p},dl:function(){return k},w0:function(){return y}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(R,A,P)=>A in R?i(R,A,{enumerable:!0,configurable:!0,writable:!0,value:P}):R[A]=P,h=(R,A)=>{for(var P in A||(A={}))c.call(A,P)&&o(R,P,A[P]);if(l)for(var P of l(A))f.call(A,P)&&o(R,P,A[P]);return R},u=(R,A,P)=>new Promise((M,B)=>{var N=W=>{try{H(P.next(W))}catch(ae){B(ae)}},K=W=>{try{H(P.throw(W))}catch(ae){B(ae)}},H=W=>W.done?M(W.value):Promise.resolve(W.value).then(N,K);H((P=P.apply(R,A)).next())});function a(R){return u(this,null,function*(){return(0,r.ZP)("/api/users/tidings.json",{method:"get",params:h({},R)})})}function x(R){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${R.userId}/unread_message_info.json`,{method:"get",params:h({},R)})})}function p(R){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${R.userId}/private_messages.json`,{method:"get",params:h({},R)})})}function y(R){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${R.userId}/private_messages.json`,{method:"post",body:h({},R)})})}function m(R){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${R.id}/recent_contacts.json`,{method:"get",params:h({},R)})})}function b(R){return u(this,null,function*(){return(0,r.ZP)("/api/users_for_private_messages.json",{method:"get",params:h({},R)})})}function S(R){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${R.userId}/private_message_details.json`,{method:"get",params:h({},R)})})}function k(R){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${R.userId}/private_messages/${R.id}.json`,{method:"delete"})})}},24514:function(d,v,e){"use strict";e.d(v,{A2:function(){return b},CI:function(){return p},Ep:function(){return m},Ex:function(){return M},R7:function(){return a},WW:function(){return B},_V:function(){return P},ms:function(){return R},s0:function(){return S},vf:function(){return y},xn:function(){return x},yy:function(){return A}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(N,K,H)=>K in N?i(N,K,{enumerable:!0,configurable:!0,writable:!0,value:H}):N[K]=H,h=(N,K)=>{for(var H in K||(K={}))c.call(K,H)&&o(N,H,K[H]);if(l)for(var H of l(K))f.call(K,H)&&o(N,H,K[H]);return N},u=(N,K,H)=>new Promise((W,ae)=>{var ne=X=>{try{q(H.next(X))}catch(V){ae(V)}},oe=X=>{try{q(H.throw(X))}catch(V){ae(V)}},q=X=>X.done?W(X.value):Promise.resolve(X.value).then(ne,oe);q((H=H.apply(N,K)).next())});function a(N){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${N.coursesId}/online_learning.json`,{method:"get"})})}function x(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}.json`,{method:"put",body:N})})}function p(N){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${N.coursesId}/course_stages.json`,{method:"post",body:N})})}function y(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}/add_shixun_to_stage.json`,{method:"post",body:N})})}function m(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}/select_shixun_to_stage.json`,{method:"post",body:N})})}function b(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}/add_video_to_stage.json`,{method:"post",body:N})})}function S(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}/add_attachment_to_stage.json`,{method:"post",body:N})})}function k(N){return u(this,null,function*(){return Fetch("/api/paths/add_shixun_to_stage.json",{method:"post",body:N})})}function R(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}/up_position.json`,{method:"post"})})}function A(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}/down_position.json`,{method:"post"})})}function P(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.id}.json`,{method:"delete"})})}function M(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.stage_id}/items/move_position.json`,{method:"post",body:h({},N)})})}function B(N){return u(this,null,function*(){return(0,r.ZP)(`/api/course_stages/${N.stage_id}/items/${N.id}`,{method:"delete"})})}},29297:function(d,v,e){"use strict";e.d(v,{DF:function(){return b},Di:function(){return ee},Dm:function(){return oe},Dq:function(){return Se},Gd:function(){return m},Hb:function(){return Ie},Hm:function(){return W},ID:function(){return u},JP:function(){return me},NC:function(){return K},Pl:function(){return S},Qc:function(){return c},Qp:function(){return q},RK:function(){return x},YP:function(){return H},a2:function(){return o},ar:function(){return y},cV:function(){return a},d1:function(){return p},dp:function(){return l},fn:function(){return k},iT:function(){return M},jK:function(){return ne},kF:function(){return He},kp:function(){return P},lc:function(){return A},oF:function(){return le},q$:function(){return h},qN:function(){return ae},tS:function(){return R},ts:function(){return B},un:function(){return V},w0:function(){return se},wX:function(){return X},yE:function(){return f}});var r=e(38147),i=(je,Dt,ht)=>new Promise((It,Zt)=>{var Rt=gt=>{try{$e(ht.next(gt))}catch(Mt){Zt(Mt)}},ar=gt=>{try{$e(ht.throw(gt))}catch(Mt){Zt(Mt)}},$e=gt=>gt.done?It(gt.value):Promise.resolve(gt.value).then(Rt,ar);$e((ht=ht.apply(je,Dt)).next())});const l=je=>(0,r.ZP)(`/api/examination_banks/${je==null?void 0:je.id}/code_check.json`,{method:"get",params:je}),c=je=>(0,r.ZP)(`/api/examination_banks/${je.id}/reset_pwd.json`,{method:"post",body:je}),f=je=>(0,r.ZP)(`/api/examination_banks/${je.id}/encrypt_or_decrypt.json`,{method:"post",body:je}),o=je=>(0,r.ZP)("/api/examination_banks/exist_course.json",{method:"post",body:je}),h=je=>(0,r.ZP)("/api/examination_banks/check_examination_banks.json",{method:"post",body:je}),u=je=>(0,r.ZP)(`/api/examination_banks/${je.id}/copy.json`,{method:"post",body:je}),a=je=>(0,r.ZP)(`/api/examination_banks/${je.id}/get_question_type_alias.json`,{method:"get",params:je});function x(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/edit_question_type_alias.json`,{method:"POST",body:je})})}function p(je){return i(this,null,function*(){return(0,r.ZP)("/api/disciplines.json",{method:"get",params:je})})}function y(je){return i(this,null,function*(){return(0,r.ZP)("/api/disciplines/by_examination_banks.json",{method:"get",params:je})})}function m(je){return i(this,null,function*(){return(0,r.ZP)("/api/examination_banks.json",{method:"get",params:je})})}function b(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/set_public.json`,{method:"post"})})}function S(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/set_private.json`,{method:"post"})})}function k(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}.json`,{method:"delete"})})}function R(je){return i(this,null,function*(){return(0,r.ZP)("/api/question_banks/my_courses.json",{method:"get",params:je})})}const A=je=>(0,r.ZP)("/api/examination_banks/batch_send_to_course.json",{method:"post",body:je});function P(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/send_to_course.json`,{method:"post",body:je})})}function M(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}.json`,{method:"get",params:je})})}function B(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/examination_banks_item_banks/${je.itemId}/set_score`,{method:"post",body:je})})}function N(je){return i(this,null,function*(){return Fetch(`/api/examination_banks/${je.id}/examination_banks_item_banks/${je.itemId}/set_shixun_score.json`,{method:"post",body:je})})}function K(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/examination_banks_item_banks/${je.itemId}.json`,{method:"delete"})})}function H(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/examination_banks_item_banks/batch_set_score.json`,{method:"post",body:je})})}function W(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/examination_banks_item_banks/destroy_by_item_type.json`,{method:"delete",body:je})})}function ae(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/examination_banks_item_banks/${je.itemId}/adjust_position.json`,{method:"post",body:je})})}function ne(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}.json`,{method:"put",body:je})})}function oe(je){return i(this,null,function*(){return(0,r.ZP)("/api/teach_group_shares.json",{method:"get",params:je})})}function q(je){return i(this,null,function*(){return(0,r.ZP)("/api/examination_banks/set_batch_public.json",{method:"post",body:je})})}function X(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je==null?void 0:je.id}/set_public.json`,{method:"post",body:je})})}function V(je){return i(this,null,function*(){return(0,r.ZP)("/api/examination_banks/create_exam.json",{method:"post",body:je})})}function se(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/update_exam.json`,{method:"put",body:je})})}function ee(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/edit_exam.json`,{method:"get"})})}function J(je,Dt){return i(this,null,function*(){return Fetch(`/api/examination_banks/${je}/examination_banks_item_banks.json`,{method:"post",body:Dt})})}function le(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je.id}/examination_banks_item_banks/create_item_bank.json`,{method:"post",body:je})})}function z(je,Dt){return i(this,null,function*(){return Fetch(`/api/examination_banks/${je}/sort_question_type.json`,{method:"post",body:Dt})})}function j(je){return i(this,null,function*(){return Fetch(`/api/examination_banks/${je.exam_id}/examination_banks_item_banks/${je.question_id}.json`,{method:"delete"})})}function ie(je,Dt){return i(this,null,function*(){return Fetch(`/api/examination_banks/${je}/batch_set_score.json`,{method:"post",body:Dt})})}function me(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je}/simulate_exercise.json`,{method:"post"})})}function Se(je){return i(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${je}/exercise_header.json`,{method:"get"})})}function Ie(je,Dt,ht){return i(this,null,function*(){const It=new FormData;return It.append("file",Dt),It.append("sub_discipline_id",ht),(0,r.ZP)(`/api/examination_banks/${je}/import_item_banks.json`,{method:"post",body:It},!0)})}function He(je){return i(this,null,function*(){return(0,r.ZP)("/api/users/change_exam_score.json",{method:"put",body:je})})}},49320:function(d,v,e){"use strict";e.d(v,{$D:function(){return X},A2:function(){return ke},A7:function(){return bt},AQ:function(){return K},Ax:function(){return tt},Bn:function(){return ze},CI:function(){return ut},DQ:function(){return Ct},DU:function(){return et},EP:function(){return q},Ep:function(){return ye},Er:function(){return me},Ex:function(){return zt},FD:function(){return Ae},F_:function(){return Mt},Fg:function(){return x},GY:function(){return Ce},Go:function(){return z},Gz:function(){return p},Hl:function(){return y},JS:function(){return It},KM:function(){return ee},M2:function(){return We},MO:function(){return Se},Mt:function(){return Xe},Mu:function(){return Yt},NV:function(){return yt},Q:function(){return Ie},Sp:function(){return N},VO:function(){return st},WD:function(){return Wt},WO:function(){return ie},WW:function(){return Ht},_C:function(){return Te},_V:function(){return Me},bw:function(){return oe},bz:function(){return pe},c3:function(){return ht},eJ:function(){return le},ef:function(){return gt},fh:function(){return k},fj:function(){return j},hS:function(){return m},jT:function(){return Gt},ke:function(){return lr},lk:function(){return B},mQ:function(){return M},ms:function(){return or},mx:function(){return je},nq:function(){return a},ol:function(){return ce},p:function(){return W},p4:function(){return He},pU:function(){return P},rS:function(){return Zt},rs:function(){return J},s0:function(){return Ge},sm:function(){return Dt},tS:function(){return b},tu:function(){return A},ue:function(){return H},vf:function(){return Je},w4:function(){return ae},xG:function(){return Ne},xn:function(){return ot},yN:function(){return ne},yy:function(){return tr}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(xe,dt,Pt)=>dt in xe?i(xe,dt,{enumerable:!0,configurable:!0,writable:!0,value:Pt}):xe[dt]=Pt,h=(xe,dt)=>{for(var Pt in dt||(dt={}))c.call(dt,Pt)&&o(xe,Pt,dt[Pt]);if(l)for(var Pt of l(dt))f.call(dt,Pt)&&o(xe,Pt,dt[Pt]);return xe},u=(xe,dt,Pt)=>new Promise((Be,Or)=>{var mt=Nt=>{try{an(Pt.next(Nt))}catch(qt){Or(qt)}},qr=Nt=>{try{an(Pt.throw(Nt))}catch(qt){Or(qt)}},an=Nt=>Nt.done?Be(Nt.value):Promise.resolve(Nt.value).then(mt,qr);an((Pt=Pt.apply(xe,dt)).next())});const a=xe=>u(void 0,null,function*(){return(0,r.ZP)("/api/subject_statistics/subject_use_infos.json",{method:"Get",params:xe})}),x=xe=>u(void 0,null,function*(){return(0,r.ZP)("/api/subject_statistics/rank_list.json",{method:"Get",params:xe})}),p=xe=>u(void 0,null,function*(){return(0,r.ZP)("/api/subject_statistics/statistics_body.json",{method:"Get",params:xe})}),y=xe=>u(void 0,null,function*(){return(0,r.ZP)("/api/subject_statistics/statistics_header.json",{method:"Get",params:xe})}),m=xe=>u(void 0,null,function*(){return(0,r.ZP)("/api/subject_statistics/online_count.json",{method:"Get",params:xe})});function b(xe){return u(this,null,function*(){return(0,r.ZP)("/api/paths.json",{method:"Get",params:h({},xe)})})}function S(xe){return u(this,null,function*(){return Fetch("/api/intelligent_recommendations/subject_lists.json",{method:"Get",params:h({},xe)})})}function k(xe){return u(this,null,function*(){return(0,r.ZP)("/api/disciplines.json",{method:"Get",params:h({},xe)})})}function R(){return u(this,null,function*(){return Fetch("/api/paths/platform_systems.json",{method:"get"})})}function A(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}.json`,{method:"PUT",body:xe})})}function P(xe){return u(this,null,function*(){return(0,r.ZP)("/api/paths.json",{method:"post",body:xe})})}function M(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/edit.json`,{method:"get"})})}function B(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}.json`,{method:"get",params:h({identifier:xe.id},xe)})})}function N(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${xe.id}.json`,{method:"get",params:h({identifier:xe.id},xe)})})}function K(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/right_banner.json`,{method:"get",params:xe})})}function H(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/spoc_courses.json`,{method:"get",params:xe})})}const W=xe=>u(void 0,null,function*(){return(0,r.ZP)("/api/v2/stages.json",{method:"Get",params:xe})}),ae=xe=>u(void 0,null,function*(){return(0,r.ZP)(`/api/v2/stage_shixuns/${xe.id}/children.json`,{method:"Get",params:xe})});function ne(xe){return u(this,null,function*(){return(0,r.ZP)("/api/stages.json",{method:"get",params:xe})})}function oe(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/update_team_title.json`,{method:"post",body:xe})})}function q(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/delete_member.json`,{method:"Delete",body:xe})})}function X(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/spoc_courses/${xe==null?void 0:xe.courseid}.json`,{method:"Delete"})})}function V(xe){return u(this,null,function*(){return Fetch(`/api/paths/${xe.id}/up_member_position.json`,{method:"post",body:xe})})}function se(xe){return u(this,null,function*(){return Fetch(`/api/paths/${xe.id}/down_member_position.json`,{method:"post",body:xe})})}function ee(xe){return u(this,null,function*(){return(0,r.ZP)("/api/collections.json",{method:"post",body:xe})})}function J(xe){return u(this,null,function*(){return(0,r.ZP)("/api/collections/cancel.json",{method:"Delete",body:xe})})}function le(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}.json`,{method:"Delete",body:xe})})}function z(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/publish.json`,{method:"post",body:xe})})}function j(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/cancel_publish.json`,{method:"post",body:xe})})}function ie(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/apply_public.json`,{method:"post",body:xe})})}function me(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/cancel_public.json`,{method:"post",body:xe})})}function Se(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/choose_course.json`,{method:"get",params:xe})})}function Ie(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/send_to_course.json`,{method:"post",body:xe})})}function He(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${xe.id}/send_to_course.json`,{method:"post",body:xe})})}function je(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/add_subject_members.json`,{method:"post",body:xe})})}function Dt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/spoc_courses.json`,{method:"post",body:xe})})}function ht(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/appointment.json`,{method:"post",body:xe})})}function It(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${xe.id}/join_excellent_course.json`,{method:"post",body:xe})})}function Zt(xe){return u(this,null,function*(){return(0,r.ZP)("/api/watch_attachment_histories.json",{method:"post",body:xe})})}function Rt(xe){return u(this,null,function*(){return Fetch(`/api/paths/${xe.id}/statistics_info.json`,{method:"get",params:xe})})}function ar(xe){return u(this,null,function*(){return Fetch(`/api/paths/${xe.id}/shixun_analyze.json`,{method:"get",params:xe})})}function $e(xe){return u(this,null,function*(){return Fetch(`/api/paths/${xe.id}/learning_analyze.json`,{method:"get",params:xe})})}function gt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/learning_statistics.json`,{method:"get",params:xe})})}function Mt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/shixun_statistics.json`,{method:"get",params:xe})})}function et(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/study_analyze/${xe.type}.json`,{method:"get",params:xe})})}function ft(xe){return u(this,null,function*(){return Fetch("/api/paths/append_to_stage.json",{method:"post",body:xe})})}function ot(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}.json`,{method:"put",body:xe})})}function Je(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/add_shixun_to_stage.json`,{method:"post",body:xe})})}const Ne=xe=>u(void 0,null,function*(){return(0,r.ZP)(`/api/stages/${xe==null?void 0:xe.stage_id}/select_challenge_to_stage.json`,{method:"post",body:xe})});function ye(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/select_shixun_to_stage.json`,{method:"post",body:xe})})}function ke(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/add_video_to_stage.json`,{method:"post",body:xe})})}function Ge(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/add_attachment_to_stage.json`,{method:"post",body:xe})})}function We(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stage_shixuns/${xe.id}.json`,{method:"put",body:xe})})}function Xe(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/add_blank_to_stage.json`,{method:"post",body:xe})})}function ut(xe){return u(this,null,function*(){return(0,r.ZP)("/api/stages.json",{method:"post",body:xe})})}function pt(xe){return u(this,null,function*(){return Fetch("/api/paths/add_shixun_to_stage.json",{method:"post",body:xe})})}function or(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/up_position.json`,{method:"get"})})}function tr(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}/down_position.json`,{method:"get"})})}function Me(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.id}.json`,{method:"delete"})})}function tt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.pathId}/discusses.json`,{method:"get",params:h({},xe)})})}function Yt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${xe.coursesId}/excellent_discusses.json`,{method:"get",params:h({},xe)})})}function Ot(xe){return u(this,null,function*(){return Fetch("/api/discusses.json",{method:"post",body:h({},xe)})})}function zt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.stage_id}/items/move_position`,{method:"post",body:h({},xe)})})}function Ht(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe.stage_id}/items/${xe.id}`,{method:"delete"})})}function lr(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${xe.id}/excellent_discuss`,{method:"post",body:h({},xe)})})}function Wt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/paths/${xe.id}/post_discuss`,{method:"post",body:h({},xe)})})}function Ce(xe){return u(this,null,function*(){return(0,r.ZP)("/api/schools/for_option.json",{method:"get",params:xe})})}function ce(xe){return u(this,null,function*(){return(0,r.ZP)("/api/schools/province_data.json",{method:"get",params:xe})})}function pe(xe){return u(this,null,function*(){return(0,r.ZP)("/api/add_school_applies.json",{method:"post",body:xe})})}function Ct(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe==null?void 0:xe.id}/add_homework_to_stage.json`,{method:"post",body:xe})})}function Ae(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stage_shixuns/${xe==null?void 0:xe.id}/edit.json`,{method:"get",params:xe})})}function st(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stage_shixuns/${xe==null?void 0:xe.id}.json`,{method:"put",body:xe})})}function Gt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${xe==null?void 0:xe.user_id}/subjects/subject_homework.json`,{method:"get",params:xe})})}function bt(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${xe==null?void 0:xe.user_id}/courses/course_homework.json`,{method:"get",params:xe})})}function Te(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/stages/${xe==null?void 0:xe.id}/batch_add_homework_to_stage.json`,{method:"post",body:xe})})}function yt(xe){return u(this,null,function*(){return(0,r.ZP)("/api/paths/get_homework_detail.json",{method:"get",params:xe})})}function ze(xe){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${xe==null?void 0:xe.user_login}/subjects/cancel.json`,{method:"get",params:xe})})}},43150:function(d,v,e){"use strict";e.d(v,{Fd:function(){return se},Hi:function(){return y},IU:function(){return K},KE:function(){return b},Kc:function(){return J},MK:function(){return H},Q9:function(){return P},Qg:function(){return N},Qn:function(){return k},UK:function(){return p},W:function(){return z},Ye:function(){return B},_c:function(){return a},hO:function(){return oe},iV:function(){return le},jy:function(){return W},kp:function(){return ne},lf:function(){return A},m7:function(){return m},n$:function(){return R},rJ:function(){return M},s3:function(){return x},ux:function(){return S},vf:function(){return V},wh:function(){return ae},wo:function(){return ee},x$:function(){return X}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(j,ie,me)=>ie in j?i(j,ie,{enumerable:!0,configurable:!0,writable:!0,value:me}):j[ie]=me,h=(j,ie)=>{for(var me in ie||(ie={}))c.call(ie,me)&&o(j,me,ie[me]);if(l)for(var me of l(ie))f.call(ie,me)&&o(j,me,ie[me]);return j},u=(j,ie,me)=>new Promise((Se,Ie)=>{var He=ht=>{try{Dt(me.next(ht))}catch(It){Ie(It)}},je=ht=>{try{Dt(me.throw(ht))}catch(It){Ie(It)}},Dt=ht=>ht.done?Se(ht.value):Promise.resolve(ht.value).then(He,je);Dt((me=me.apply(j,ie)).next())});const a=j=>u(void 0,null,function*(){return(0,r.ZP)(`/api/poll_questions/${j==null?void 0:j.id}/commit_word_cloud.json`,{method:"Get",params:j})});function x(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/poll_lists.json`,{method:"get",params:h({},j)})})}function p(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/common_header.json`,{method:"get"})})}function y(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/poll_setting.json`,{method:"get"})})}function m(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/commit_setting.json`,{method:"post",body:h({},j)})})}function b(j){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${j.coursesId}/polls/end_poll_modal.json`,{method:"get",params:h({},j)})})}function S(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/publish_groups.json`,{method:"get",params:h({},j)})})}function k(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/commit_result.json`,{method:"get",params:h({},j)})})}function R(j){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/bank_list.json",{method:"get",params:h({},j)})})}function A(j){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/save_banks.json",{method:"POST",body:h({},j)})})}function P(j){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${j.coursesId}/polls/publish_modal.json`,{method:"get",params:h({},j)})})}function M(j){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${j.coursesId}/polls.json`,{method:"POST",body:h({},j)})})}function B(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.categoryId}/edit.json`,{method:"get"})})}function N(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.pollsId}.json`,{method:"put",body:h({},j)})})}function K(j){return u(this,null,function*(){return(0,r.ZP)(`/api/poll_questions/${j.pollsId}.json`,{method:"put",body:h({},j)})})}function H(j){return u(this,null,function*(){return(0,r.ZP)(`/api/polls/${j.pollsId}/poll_questions.json`,{method:"post",body:h({},j)})})}function W(j){return u(this,null,function*(){return(0,r.ZP)(`/api/poll_questions/${j.pollsId}.json`,{method:"delete",body:h({},j)})})}function ae(j){return u(this,null,function*(){return(0,r.ZP)(`/api/poll_questions/${j.pollsId}/up_down.json`,{method:"post",body:h({},j)})})}function ne(j){return u(this,null,function*(){return(0,r.ZP)(`/api/exercise_banks/${j.topicId}.json`,{method:"get"})})}function oe(j){return u(this,null,function*(){return(0,r.ZP)(`/api/exercise_banks/${j.topicId}.json`,{method:"put",body:h({},j)})})}function q(j){return u(this,null,function*(){return Fetch(`/api/exercise_banks/${j.topicId}.json`,{method:"put",body:h({},j)})})}function X(j){return u(this,null,function*(){return(0,r.ZP)(`/api/exercise_bank_questions/${j.pollsId}.json`,{method:"delete",body:h({},j)})})}function V(j){return u(this,null,function*(){return(0,r.ZP)(`/api/poll_questions/${j.pollsId}/up_down.json`,{method:"post",body:h({},j)})})}function se(j){return u(this,null,function*(){return(0,r.ZP)("/api/poll_bank_questions.json",{method:"post",body:h({},j)})})}function ee(j){return u(this,null,function*(){return(0,r.ZP)(`/api/poll_bank_questions/${j.pollsId}.json`,{method:"put",body:h({},j)})})}function J(j){return u(this,null,function*(){return(0,r.ZP)(`/api/exercise_bank_questions/${j.id}.json`,{method:"put",body:h({},j)})})}function le(j){return u(this,null,function*(){return(0,r.ZP)("/api/exercise_bank_questions.json",{method:"post",body:h({},j)})})}function z(j){return u(this,null,function*(){return(0,r.ZP)(`/api/exercise_bank_questions/${j.exerciseId}/up_down.json`,{method:"post",body:h({},j)})})}},11517:function(d,v,e){"use strict";e.d(v,{$c:function(){return ut},A1:function(){return We},Bd:function(){return P},Bo:function(){return q},Cc:function(){return se},Cn:function(){return le},DF:function(){return R},Dm:function(){return $e},FG:function(){return oe},GW:function(){return gt},HF:function(){return H},Hm:function(){return j},IJ:function(){return Ge},L5:function(){return ar},LS:function(){return et},MZ:function(){return ye},Mr:function(){return ne},NZ:function(){return Dt},Of:function(){return S},Pl:function(){return k},Qj:function(){return m},Qp:function(){return ot},RT:function(){return Me},Rp:function(){return ft},U6:function(){return W},Vl:function(){return ee},Wk:function(){return ae},YP:function(){return z},Ys:function(){return B},al:function(){return M},bF:function(){return pt},d1:function(){return y},dt:function(){return or},et:function(){return me},ex:function(){return b},fY:function(){return Se},fn:function(){return A},hI:function(){return ht},hg:function(){return Ne},iT:function(){return X},lS:function(){return je},nD:function(){return Mt},qN:function(){return ie},rV:function(){return N},s:function(){return He},sD:function(){return ke},sS:function(){return Rt},ts:function(){return V},vi:function(){return Xe},wX:function(){return Je},x5:function(){return K},zh:function(){return Ie}});var r=e(38147),i=Object.defineProperty,l=Object.defineProperties,c=Object.getOwnPropertyDescriptors,f=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,u=(tt,Yt,Ot)=>Yt in tt?i(tt,Yt,{enumerable:!0,configurable:!0,writable:!0,value:Ot}):tt[Yt]=Ot,a=(tt,Yt)=>{for(var Ot in Yt||(Yt={}))o.call(Yt,Ot)&&u(tt,Ot,Yt[Ot]);if(f)for(var Ot of f(Yt))h.call(Yt,Ot)&&u(tt,Ot,Yt[Ot]);return tt},x=(tt,Yt)=>l(tt,c(Yt)),p=(tt,Yt,Ot)=>new Promise((zt,Ht)=>{var lr=ce=>{try{Ce(Ot.next(ce))}catch(pe){Ht(pe)}},Wt=ce=>{try{Ce(Ot.throw(ce))}catch(pe){Ht(pe)}},Ce=ce=>ce.done?zt(ce.value):Promise.resolve(ce.value).then(lr,Wt);Ce((Ot=Ot.apply(tt,Yt)).next())});function y(tt){return p(this,null,function*(){return(0,r.ZP)("/api/disciplines.json",{method:"get",params:x(a({},tt),{clazz:"ItemBanksGroup"})})})}function m(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets/basket_list.json",{method:"get",params:tt})})}function b(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks_groups/for_problemset.json",{method:"post",body:tt})})}function S(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks/list.json",{method:"post",body:tt})})}function k(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}/set_private.json`,{method:"post"})})}function R(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}/set_public.json`,{method:"post"})})}function A(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}.json`,{method:"delete"})})}function P(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/problems/${tt.id}/start.json`,{method:"get"})})}function M(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_baskets/${tt.id}.json`,{method:"delete",body:a({},tt)})})}function B(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets.json",{method:"post",body:tt})})}function N(tt){return p(this,null,function*(){return(0,r.ZP)("/api/examination_banks/cancel_items.json",{method:"post",body:tt})})}function K(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets/delete_item_type.json",{method:"delete",body:{item_type:tt.type}})})}function H(tt){return p(this,null,function*(){return(0,r.ZP)("/api/examination_banks/cancel_items.json",{method:"post",body:tt})})}function W(tt){return p(this,null,function*(){return(0,r.ZP)("/api/tag_disciplines.json",{method:"post",body:tt})})}function ae(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}.json`,{method:"put",body:tt})})}function ne(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks.json",{method:"post",body:tt})})}function oe(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}/edit.json`,{method:"get"})})}function q(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/problems/${tt.id}/edit.json`,{method:"get"})})}function X(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets.json",{method:"get",params:tt})})}function V(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_baskets/${tt.id}/set_score.json`,{method:"post",body:tt})})}function se(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_baskets/${tt.id}/set_challenge_score.json`,{method:"post",body:tt})})}function ee(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_baskets/${tt.id}/combination_set_score.json`,{method:"post",body:tt})})}function J(tt){return p(this,null,function*(){return Fetch(`/api/examination_banks//${tt.exerid}/examination_banks_item_banks/${tt.id}/combination_set_score.json`,{method:"post",body:tt})})}function le(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_baskets/${tt.id}.json`,{method:"delete"})})}function z(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets/batch_set_score.json",{method:"post",body:tt})})}function j(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets/delete_item_type.json",{method:"delete",body:tt})})}function ie(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_baskets/${tt.id}/adjust_position.json`,{method:"post",body:tt})})}function me(tt){return p(this,null,function*(){return(0,r.ZP)("/api/examination_banks.json",{method:"post",body:tt})})}function Se(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${tt.id}/revoke_item.json`,{method:"delete",body:tt})})}function Ie(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/examination_banks/${tt.exam_id}/examination_banks_item_banks.json`,{method:"post",body:tt})})}function He(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}/join_to_collection.json`,{method:"post",params:tt})})}function je(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}/cancel_collection.json`,{method:"post",params:tt})})}function Dt(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks_groups.json",{method:"get",params:tt})})}function ht(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks_groups/mine.json",{method:"get",params:tt})})}function It(tt){return p(this,null,function*(){return Fetch(`/api/item_banks/${tt.id}/join_to_group.json`,{method:"post",body:tt})})}function Zt(tt){return p(this,null,function*(){return Fetch(`/api/item_banks_groups/${tt.id}.json`,{method:"put",body:tt})})}function Rt(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks_groups.json",{method:"post",body:tt})})}function ar(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt.id}/feedback.json`,{method:"post",body:tt})})}function $e(tt){return p(this,null,function*(){return(0,r.ZP)("/api/teach_group_shares.json",{method:"get",params:tt})})}function gt(tt){return p(this,null,function*(){return(0,r.ZP)("/api/teach_group_shares.json",{method:"post",body:tt})})}function Mt(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks/batch_delete.json",{method:"post",body:tt})})}function et(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks/batch_to_group.json",{method:"post",body:tt})})}function ft(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks/add_to_mine.json",{method:"post",body:tt})})}function ot(tt){return p(this,null,function*(){return(0,r.ZP)("/api/item_banks/set_batch_public.json",{method:"post",body:tt})})}function Je(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks/${tt==null?void 0:tt.id}/set_public.json`,{method:"post",body:tt})})}function Ne(tt){return p(this,null,function*(){return(0,r.ZP)("/api/teach_group_shares/show_groups.json",{method:"get",params:tt})})}function ye(tt){return(0,r.ZP)(`/api/problems/${tt.identifier}/publish.json`,{method:"post",body:tt})}function ke(tt){return(0,r.ZP)(`/api/problems/${tt.identifier}/cancel_publish.json`,{method:"post",body:tt})}function Ge(tt){return(0,r.ZP)("/api/item_banks/cancel_public.json",{method:"post",body:{ids:[...tt.id]}})}function We(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks_groups/${tt.id}/up_position.json`,{method:"get",params:tt})})}function Xe(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/item_banks_groups/${tt.id}/down_position.json`,{method:"get",params:tt})})}function ut(tt){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${tt.id}/edit_hack.json`,{method:"get",params:tt})})}function pt(tt){return p(this,null,function*(){return(0,r.ZP)("/api/problems/batch_publish_condition.json",{method:"post",body:tt})})}function or(tt){return p(this,null,function*(){return(0,r.ZP)("/api/problems/batch_publish.json",{method:"post",body:tt})})}function tr(tt){return p(this,null,function*(){return Fetch("/api/item_banks/get_groups.json",{method:"get",params:tt})})}function Me(){return p(this,null,function*(){return(0,r.ZP)("/api/item_baskets/delete_all_items.json",{method:"delete"})})}},37822:function(d,v,e){"use strict";e.d(v,{E1:function(){return f},Go:function(){return l},H5:function(){return c}});var r=e(38147),i=(o,h,u)=>new Promise((a,x)=>{var p=b=>{try{m(u.next(b))}catch(S){x(S)}},y=b=>{try{m(u.throw(b))}catch(S){x(S)}},m=b=>b.done?a(b.value):Promise.resolve(b.value).then(p,y);m((u=u.apply(o,h)).next())});function l(o){return i(this,null,function*(){return(0,r.ZP)("/api/restfuls.json",{method:"get",params:o})})}function c(o){return i(this,null,function*(){return(0,r.ZP)(`/api/restfuls/${o.id}.json`,{method:"get",params:o})})}function f(o){return i(this,null,function*(){return(0,r.ZP)(`/api/restfuls/${o.id}.json`,{method:"delete",params:o})})}},88761:function(d,v,e){"use strict";e.d(v,{Am:function(){return m},Ar:function(){return $e},BD:function(){return Xe},Be:function(){return Je},Dx:function(){return ee},Fr:function(){return pe},G$:function(){return k},GS:function(){return W},Gw:function(){return S},H:function(){return Rt},H1:function(){return ar},Hj:function(){return pt},JA:function(){return tr},JG:function(){return se},KE:function(){return z},Lz:function(){return Ge},Mf:function(){return Zt},NA:function(){return ht},PC:function(){return je},PP:function(){return Dt},PW:function(){return et},Q3:function(){return J},QC:function(){return Me},Qt:function(){return We},Qz:function(){return P},R$:function(){return Ce},RP:function(){return oe},Ti:function(){return bt},Uc:function(){return zt},Ul:function(){return X},VB:function(){return st},Vs:function(){return Ht},Wr:function(){return R},Xn:function(){return q},YQ:function(){return It},Yn:function(){return b},Z8:function(){return K},ak:function(){return Mt},cN:function(){return B},co:function(){return Ne},cz:function(){return Ie},fK:function(){return H},gG:function(){return He},gZ:function(){return Ot},h$:function(){return N},ku:function(){return ke},lf:function(){return ie},m7:function(){return V},mQ:function(){return M},mz:function(){return ot},n$:function(){return j},oK:function(){return y},oN:function(){return Gt},pH:function(){return ut},pb:function(){return Ae},qP:function(){return tt},ql:function(){return Yt},rN:function(){return ye},sw:function(){return me},t1:function(){return Se},to:function(){return ne},ub:function(){return or},ux:function(){return le},wS:function(){return Ct},wT:function(){return A},yT:function(){return gt},yy:function(){return lr},z2:function(){return ft}});var r=e(38147),i=Object.defineProperty,l=Object.defineProperties,c=Object.getOwnPropertyDescriptors,f=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,u=(Te,yt,ze)=>yt in Te?i(Te,yt,{enumerable:!0,configurable:!0,writable:!0,value:ze}):Te[yt]=ze,a=(Te,yt)=>{for(var ze in yt||(yt={}))o.call(yt,ze)&&u(Te,ze,yt[ze]);if(f)for(var ze of f(yt))h.call(yt,ze)&&u(Te,ze,yt[ze]);return Te},x=(Te,yt)=>l(Te,c(yt)),p=(Te,yt,ze)=>new Promise((xe,dt)=>{var Pt=mt=>{try{Or(ze.next(mt))}catch(qr){dt(qr)}},Be=mt=>{try{Or(ze.throw(mt))}catch(qr){dt(qr)}},Or=mt=>mt.done?xe(mt.value):Promise.resolve(mt.value).then(Pt,Be);Or((ze=ze.apply(Te,yt)).next())});const y=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.id}/update_journals.json`,{method:"post",body:Te})}),m=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/student_works/${Te==null?void 0:Te.homeworkId}/change_score.json`,{method:"post",body:Te})}),b=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/student_works/${Te==null?void 0:Te.homeworkId}/history_comment`,{method:"Get",params:Te})}),S=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/student_works/${Te==null?void 0:Te.homeworkId}/feedback_know`,{method:"Get",params:Te})}),k=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te==null?void 0:Te.userId}/student_work_feedbacks.json`,{method:"POST",body:Te})}),R=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/student_works/${Te==null?void 0:Te.userId}/feedback_list.json`,{method:"Get",params:Te})}),A=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/student_works/${Te==null?void 0:Te.userId}/histories.json`,{method:"Get",params:Te})}),P=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te==null?void 0:Te.homeworkId}/feedback_list`,{method:"Get",params:Te})}),M=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te==null?void 0:Te.homeworkId}/anonymous_exception_list.json`,{method:"Get",params:Te})}),B=Te=>p(void 0,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te==null?void 0:Te.homeworkId}/appeal_list`,{method:"Get",params:Te})});function N(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/works_list.json`,{method:"post",body:a({},Te)})})}function K(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/shixun_homeworks/${Te.categoryId}/student_works.json`,{method:"get",params:a({},Te)})})}function H(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/shixun_homeworks/${Te.categoryId}/header_info.json`,{method:"get",params:a({},Te)})})}function W(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te}/query_game_url.json`,{method:"get"})})}function ae(Te){return p(this,null,function*(){return Fetch(`/api/student_works/${Te}/get_newest_shixun_work_comments.json`,{method:"get"})})}function ne(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}.json`,{method:"get"})})}function oe(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/code_review_results.json`,{method:"get",params:a({},Te)})})}function q(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/code_review_detail.json`,{method:"get",params:a({},Te)})})}function X(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/settings.json`,{method:"get",params:a({},Te)})})}function V(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/update_settings.json`,{method:"post",body:a({},Te)})})}function se(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/group_list.json`,{method:"get",params:a({},Te)})})}function ee(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/works_list.xlsx`,{method:"get",params:a({},Te)})})}function J(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.coursesId}/reference_answer.json`,{method:"get",params:a({},Te)})})}function le(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/publish_groups.json`,{method:"get",params:a({},Te)})})}function z(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/end_groups.json`,{method:"get",params:a({},Te)})})}function j(Te){return p(this,null,function*(){return(0,r.ZP)("/api/question_banks/bank_list.json",{method:"get",params:a({},Te)})})}function ie(Te){return p(this,null,function*(){return(0,r.ZP)("/api/question_banks/save_banks.json",{method:"post",body:a({},Te)})})}function me(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/shixun_work_report.json`,{method:"get",params:Te})})}function Se(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/shixun_work_report_echart_data.json`,{method:"get",params:Te})})}function Ie(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${Te.coursesId}/homework_commons/user_hack_detail.json`,{method:"get",params:x(a({},Te),{id:Te.categoryId})})})}function He(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.categoryId}/adjust_review_score.json`,{method:"post",body:a({},Te)})})}function je(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/show_comment.json`,{method:"get",params:a({},Te)})})}function Dt(Te){return p(this,null,function*(){return(0,r.ZP)("/api/users/reply_message.json",{method:"post",body:a({},Te)})})}function ht(Te){return p(this,null,function*(){return(0,r.ZP)("/api/praise_tread/like.json",{method:"post",body:a({},Te)})})}function It(Te){return p(this,null,function*(){return(0,r.ZP)("/api/praise_tread/unlike.json",{method:"delete",body:a({},Te)})})}function Zt(Te){return p(this,null,function*(){return(0,r.ZP)("/api/commons/delete.json",{method:"delete",body:a({},Te)})})}function Rt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/update_explanation.json`,{method:"post",body:a({},Te)})})}function ar(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${Te.coursesId}/homework_commons.json`,{method:"post",body:a({},Te)})})}function $e(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}.json`,{method:"put",body:a({},Te)})})}function gt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_banks/${Te.id}.json`,{method:"put",body:a({},Te)})})}function Mt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.commonHomeworkId}/student_works/new.json`,{method:"get",params:a({},Te)})})}function et(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/edit.json`,{method:"get",params:a({},Te)})})}function ft(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}.json`,{method:"put",body:a({},Te)})})}function ot(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/revise_attachment.json`,{method:"post",body:a({},Te)})})}function Je(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.commonHomeworkId}/student_works.json`,{method:"post",body:a({},Te)})})}function Ne(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.homeworkId}/student_works/relate_project.json`,{method:"post",body:a({},Te)})})}function ye(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.homeworkId}/student_works/cancel_relate_project.json`,{method:"get"})})}function ke(Te){return p(this,null,function*(){return(0,r.ZP)("/api/users/projects/search.json",{method:"get",params:a({},Te)})})}function Ge(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.commonHomeworkId}/student_works/search_member_list.json`,{method:"get",params:a({},Te)})})}function We(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${Te.coursesId}/homework_commons/new.json`,{method:"get",params:a({},Te)})})}function Xe(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/edit.json`,{method:"get",params:a({},Te)})})}function ut(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_banks/${Te.id}.json`,{method:"get",params:a({},Te)})})}function pt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}.json`,{method:"get",params:a({},Te)})})}function or(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}/supply_attachments.json`,{method:"get",params:a({},Te)})})}function tr(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}/comment_list.json`,{method:"get",params:a({},Te)})})}function Me(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}/destroy_score.json`,{method:"delete",body:a({},Te)})})}function tt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}/add_score_reply.json`,{method:"post",body:a({},Te)})})}function Yt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/all_student_works.json`,{method:"get",params:a({},Te)})})}function Ot(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/destroy_work_comment.json`,{method:"delete",body:a({},Te)})})}function zt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/score_status.json`,{method:"get",params:a({},Te)})})}function Ht(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/homework_commons/${Te.categoryId}/update_score.json`,{method:"get",params:a({},Te)})})}function lr(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}/add_score.json`,{method:"post",body:a({},Te)})})}function Wt(Te){return p(this,null,function*(){return Fetch(`/api/student_works/${Te.userId}/cancel_appeal.json`,{method:"post",body:a({},Te)})})}function Ce(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.userId}/appeal_anonymous_score.json`,{method:"post",body:a({},Te)})})}function ce(Te){return p(this,null,function*(){return Fetch(`/api/student_works/${Te.userId}/deal_appeal_score.json`,{method:"post",body:a({},Te)})})}function pe(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/myshixuns/${Te.id}/reset_my_game.json`,{method:"get",params:a({},Te)})})}function Ct(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/commit_des.json`,{method:"get",params:a({},Te)})})}function Ae(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/student_works/${Te.homeworkId}/update_des.json`,{method:"post",body:a({},Te)})})}function st(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${Te.coursesId}/homework_commons/file_repeat_list.json`,{method:"get",params:a({},Te)})})}function Gt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${Te.coursesId}/homework_commons/file_repeat_result.json`,{method:"get",params:a({},Te)})})}function bt(Te){return p(this,null,function*(){return(0,r.ZP)(`/api/courses/${Te.course_id}/homework_commons/file_repeat_detail.json`,{method:"get",params:a({},Te)})})}},60979:function(d,v,e){"use strict";e.d(v,{$Q:function(){return qt},AE:function(){return Ht},AQ:function(){return M},Ag:function(){return yt},Ar:function(){return le},At:function(){return Kt},BK:function(){return K},Bj:function(){return Mt},DC:function(){return $e},Dz:function(){return Bt},E4:function(){return ar},EH:function(){return ie},Ee:function(){return Yn},Er:function(){return ee},FB:function(){return N},Fg:function(){return S},GI:function(){return Ie},Gr:function(){return ot},Gu:function(){return Se},Gz:function(){return b},HS:function(){return Ca},Hl:function(){return y},IT:function(){return bt},I_:function(){return A},Ir:function(){return H},Je:function(){return Be},K:function(){return br},K0:function(){return wn},KM:function(){return q},K_:function(){return Xt},LK:function(){return Or},LP:function(){return He},Ne:function(){return se},OV:function(){return Dt},OW:function(){return j},Op:function(){return Nt},P2:function(){return It},Po:function(){return P},Ps:function(){return Je},Q:function(){return V},Q1:function(){return Xr},QA:function(){return ha},Ql:function(){return ye},Rs:function(){return Me},SG:function(){return zi},Tn:function(){return Wt},Tr:function(){return ea},U0:function(){return Xe},U9:function(){return Ne},UQ:function(){return Ae},Ui:function(){return Lt},Vx:function(){return jn},WO:function(){return J},WT:function(){return Yi},Wi:function(){return et},Wl:function(){return ze},X$:function(){return Zt},Yn:function(){return ce},Z2:function(){return gt},ZO:function(){return ft},Zt:function(){return Jt},_7:function(){return X},_9:function(){return pe},aH:function(){return ke},al:function(){return or},b8:function(){return z},bq:function(){return Ce},dK:function(){return W},e:function(){return k},eX:function(){return me},eb:function(){return tt},fL:function(){return Pt},h4:function(){return Wr},hS:function(){return m},he:function(){return R},hn:function(){return ne},ii:function(){return tr},im:function(){return Ct},j8:function(){return je},jq:function(){return an},kF:function(){return qr},km:function(){return pt},l3:function(){return ht},m7:function(){return We},mI:function(){return ji},n5:function(){return B},nu:function(){return mt},p0:function(){return Gt},q0:function(){return zt},q9:function(){return At},qA:function(){return Pr},rO:function(){return Ot},rs:function(){return oe},sr:function(){return st},t2:function(){return Te},tX:function(){return St},uo:function(){return ut},v3:function(){return dt},w:function(){return xe},xK:function(){return lr},xg:function(){return Yt},xk:function(){return Rt},yE:function(){return Ge},yx:function(){return Ai},zD:function(){return ae},zH:function(){return Er}});var r=e(38147),i=Object.defineProperty,l=Object.defineProperties,c=Object.getOwnPropertyDescriptors,f=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,u=(xt,xa,Zi)=>xa in xt?i(xt,xa,{enumerable:!0,configurable:!0,writable:!0,value:Zi}):xt[xa]=Zi,a=(xt,xa)=>{for(var Zi in xa||(xa={}))o.call(xa,Zi)&&u(xt,Zi,xa[Zi]);if(f)for(var Zi of f(xa))h.call(xa,Zi)&&u(xt,Zi,xa[Zi]);return xt},x=(xt,xa)=>l(xt,c(xa)),p=(xt,xa,Zi)=>new Promise((_i,Da)=>{var Hi=Ee=>{try{$n(Zi.next(Ee))}catch(nt){Da(nt)}},ei=Ee=>{try{$n(Zi.throw(Ee))}catch(nt){Da(nt)}},$n=Ee=>Ee.done?_i(Ee.value):Promise.resolve(Ee.value).then(Hi,ei);$n((Zi=Zi.apply(xt,xa)).next())});const y=xt=>p(void 0,null,function*(){return(0,r.ZP)("/api/shixun_statistics/statistics_header.json",{method:"Get",params:xt})}),m=xt=>p(void 0,null,function*(){return(0,r.ZP)("/api/shixun_statistics/online_count.json",{method:"Get",params:xt})}),b=xt=>p(void 0,null,function*(){return(0,r.ZP)("/api/shixun_statistics/statistics_body.json",{method:"Get",params:xt})}),S=xt=>p(void 0,null,function*(){return(0,r.ZP)("/api/shixun_statistics/rank_list.json",{method:"Get",params:xt})}),k=xt=>p(void 0,null,function*(){return(0,r.ZP)("/api/shixun_statistics/shixun_use_infos.json",{method:"Get",params:xt})});function R(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns.json",{method:"Get",params:a({},xt)})})}function A(xt){return p(this,null,function*(){return(0,r.ZP)("/api/disciplines.json",{method:"Get",params:a({source:"shixun"},xt||{})})})}function P(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}.json`,{method:"Get",params:xt})})}function M(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/show_right.json`,{method:"Get"})})}function B(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges.json`,{method:"Get"})})}function N(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/save_copy_for_exercise.json`,{method:"post",body:{save_type:xt.save_type}})})}function K(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/jupyter_exec.json${xt.reset?`?reset=${xt.reset}`:""}`,{method:"Get",params:xt})})}function H(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/shixun_exec.json${xt.reset?`?reset=${xt.reset}`:""}`,{method:"Get",params:xt})})}function W(xt){return p(this,null,function*(){return(0,r.ZP)(xt.url,{method:"Get"})})}function ae(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.shixun_identifier}/challenges/${xt.challenge_id}/index_up.json`,{method:"Get"})})}function ne(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.shixun_identifier}/challenges/${xt.challenge_id}/index_down.json`,{method:"Get"})})}function oe(xt){return p(this,null,function*(){return(0,r.ZP)("/api/collections/cancel.json",{method:"Delete",body:{container_id:xt.container_id,container_type:xt.container_type}})})}function q(xt){return p(this,null,function*(){return(0,r.ZP)("/api/collections.json",{method:"Post",body:{container_id:xt.container_id,container_type:xt.container_type}})})}function X(xt){return p(this,null,function*(){const{id:xa}=xt||{};return(0,r.ZP)(`/api/shixuns/${xa}/search_user_courses.json`,{method:"Get",params:xt})})}function V(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt==null?void 0:xt.id}/send_to_course.json`,{method:"Post",body:a({},xt)})})}function se(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/cancel_publish.json`,{method:"Get"})})}function ee(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/cancel_apply_public.json`,{method:"Get"})})}function J(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/apply_public.json`,{method:"post",body:a({},xt)})})}function le(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/publish.json`,{method:"Get"})})}function z(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/jupyter_new.json",{method:"Get"})})}function j(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/attachments/${xt.id}.json`,{method:"delete"})})}function ie(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/apply_shixun_mirror.json",{method:"post",body:xt})})}function me(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns.json",{method:"post",body:xt})})}function Se(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/jupyter_lab_new.json",{method:"get",params:xt})})}function Ie(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/review_newest_record.json`,{method:"Get"})})}function He(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/review_shixun.json`,{method:"post",body:xt})})}function je(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/collaborators.json`,{method:"Get",params:xt})})}function Dt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/shixun_members_added.json`,{method:"post",body:xt})})}function ht(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.identifier}/add_members_group.json`,{method:"post",body:xt})})}function It(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/change_manager.json`,{method:"Get",params:xt})})}function Zt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/change_manager.json`,{method:"post",body:xt})})}function Rt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/collaborators_delete.json`,{method:"delete",body:{user_id:xt.userId}})})}function ar(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/ranking_list.json`,{method:"Get"})})}function $e(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/settings.json`,{method:"Get"})})}function gt(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/get_mirror_script.json",{method:"Get",params:{mirror_id:xt.mirror_id}})})}function Mt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/get_script_contents.json`,{method:"Get",params:xt})})}function et(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/get_custom_script.json`,{method:"Get",params:xt})})}function ft(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_for_jupyter.json`,{method:"put",body:xt})})}function ot(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/shixun_quotes.json`,{method:"Get"})})}function Je(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}.json`,{method:"delete"})})}function Ne(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/close.json`,{method:"post",body:xt})})}function ye(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/departments.json",{method:"Get",params:xt})})}function ke(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_permission_setting.json`,{method:"post",body:xt})})}function Ge(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_learn_setting.json`,{method:"post",body:xt})})}function We(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_setting`,{method:"post",body:xt})})}function Xe(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/get_data_sets.json`,{method:"Get",params:xt})})}function ut(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/destroy_data_sets.json`,{method:"Delete",body:{id:xt.deleteId}})})}function pt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/new.json`,{method:"get"})})}function or(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.identifier}/challenges.json`,{method:"post",body:a({},xt)})})}function tr(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengeId}/edit.json`,{method:"get",params:{tab:xt.tab}})})}function Me(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}.json`,{method:"put",body:a({},xt)})})}function tt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/choose_questions.json`,{method:"get"})})}function Yt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/move_position.json`,{method:"post",body:a({},xt)})})}function Ot(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}.json`,{method:"delete",body:a({},xt)})})}function zt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/edit.json`,{method:"get",params:a({},xt)})})}function Ht(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengeId}/answer.json`,{method:"get",params:a({},xt)})})}function lr(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengeId}/crud_answer.json`,{method:"post",body:a({},xt)})})}function Wt(xt){return p(this,null,function*(){if(xt.type===1)return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/create_choose_question.json`,{method:"post",body:a({},xt)});if(xt.type===2)return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/create_blank_question.json`,{method:"post",body:a({},xt)});if(xt.type===3)return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/create_judge_question.json`,{method:"post",body:a({},xt)})})}function Ce(xt){return p(this,null,function*(){if(xt.type===1)return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/update_choose_question.json`,{method:"post",body:x(a({},xt),{choose_id:xt.questionId})});if(xt.type===2)return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/update_blank_question.json`,{method:"put",body:x(a({},xt),{choose_id:xt.questionId})});if(xt.type===3)return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/update_judge_question.json`,{method:"put",body:x(a({},xt),{choose_id:xt.questionId})})})}function ce(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/destroy_challenge_choose.json`,{method:"Delete",body:{choose_id:xt.questionId}})})}function pe(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/choose_question_up_position.json`,{method:"post",body:{challenge_choose_id:xt.questionId}})})}function Ct(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/choose_question_down_position.json`,{method:"post",body:{challenge_choose_id:xt.questionId}})})}function Ae(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/challenges/${xt.challengesId}/edit_choose_question.json`,{method:"get",params:x(a({},xt),{choose_id:xt.questionId})})})}function st(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/delete_git_file.json`,{method:"Delete",body:xt})})}function Gt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/delete_git_file.json`,{method:"Delete",body:xt})})}function bt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/mv_file.json`,{method:"post",body:xt})})}function Te(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/mv_file.json`,{method:"post",body:xt})})}function yt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/repository.json`,{method:"post",body:xt})})}function ze(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/repository.json`,{method:"post",body:xt})})}function xe(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/secret_repository.json`,{method:"post",body:xt})})}function dt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/add_file.json`,{method:"post",body:xt})})}function Pt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/add_file.json`,{method:"post",body:xt})})}function Be(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/commits.json`,{method:"post",body:xt})})}function Or(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/file_content.json`,{method:"post",body:xt})})}function mt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/file_content.json`,{method:"post",body:xt})})}function qr(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_file.json`,{method:"post",body:xt})})}function an(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/update_file.json`,{method:"post",body:xt})})}function Nt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/upload_git_folder.json`,{method:"post",body:{path:xt.path,secret_repository:xt.secret_repository}})})}function qt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/${xt.url}`,{method:"Get"})})}function Lt(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/get_info_with_tpm.json",{method:"Get",params:xt})})}function Xt(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/timeinfo_with_tpm.json",{method:"Get",params:xt})})}function Er(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/reset_with_tpm.json",{method:"Get",params:xt})})}function Pr(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/save_with_tpm.json",{method:"Get",params:xt})})}function At(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/active_with_tpm.json",{method:"Get",params:xt})})}function Kt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/fork_list.json`,{method:"Get",params:xt})})}function Bt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.identifier}/change_editable.json`,{method:"put",body:a({},xt)})})}function Jt(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/set_secret_dir.json`,{method:"post",body:a({},xt)})})}function br(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/new.json",{method:"Get",params:xt})})}function Xr(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/environment_info",{method:"Get",params:xt})})}function Wr(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/init_repository.json`,{method:"post",body:a({},xt)})})}function jn(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/sci/projects/${xt.id}/init_repository.json`,{method:"post",body:a({},xt)})})}function wn(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_secret_repository.json`,{method:"post",body:a({},xt)})})}function Yn(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/exist_exercise.json`,{method:"get",params:a({},xt)})})}function St(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/mirror_applies/${xt.id}.json`,{method:"get",params:a({},xt)})})}function Vr(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/publish.json`,{method:"post",body:a({},xt)})})}function ii(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/open_vnc.json`,{method:"post",params:a({},xt)})})}function Bi(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/open_webssh.json`,{method:"post",params:a({},xt)})})}function Gn(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/save_image.json`,{method:"post",body:a({},xt)})})}function ci(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/delete_image.json`,{method:"post",body:a({},xt)})})}function Oi(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/extend_vnc.json`,{method:"post",body:a({},xt)})})}function $i(xt){return p(this,null,function*(){return Fetch(`/api/mirror_applies/${xt.id}/reset_vnc_link.json`,{method:"post",body:a({},xt)})})}function Ai(xt){return p(this,null,function*(){return(0,r.ZP)("/api/paths/get_task_pass.json",{method:"get",params:a({},xt)})})}function ji(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/get_info_with_jupyter_lab.json",{method:"get",params:a({},xt)})})}function ha(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt.id}/update_jupyter_lab_setting.json`,{method:"post",body:a({},xt)})})}function ea(xt){return p(this,null,function*(){return(0,r.ZP)("/api/shixuns/check_shixun_copy.json",{method:"post",body:xt})})}function Yi(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/progress_homeworks/${xt}`,{method:"get",params:{is_initiative_study:1}})})}function mi(xt){return p(this,null,function*(){return Fetch(`/api/shixuns/${xt.id}/update_shixun_study_num.json`,{method:"post",body:a({},xt)})})}function zi(xt){return p(this,null,function*(){return(0,r.ZP)("/api/jupyters/preview.json",{method:"get",params:xt})})}function Ca(xt){return p(this,null,function*(){return(0,r.ZP)(`/api/shixuns/${xt}/recommend_config.json`,{method:"get"})})}},93539:function(d,v,e){"use strict";e.d(v,{Bg:function(){return p},FO:function(){return M},eJ:function(){return b},eZ:function(){return S},fd:function(){return H},gp:function(){return a},iU:function(){return N},l3:function(){return R},mw:function(){return A},oZ:function(){return m},rM:function(){return P},r_:function(){return K},s:function(){return x},ur:function(){return B},xV:function(){return y},yb:function(){return k}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(W,ae,ne)=>ae in W?i(W,ae,{enumerable:!0,configurable:!0,writable:!0,value:ne}):W[ae]=ne,h=(W,ae)=>{for(var ne in ae||(ae={}))c.call(ae,ne)&&o(W,ne,ae[ne]);if(l)for(var ne of l(ae))f.call(ae,ne)&&o(W,ne,ae[ne]);return W},u=(W,ae,ne)=>new Promise((oe,q)=>{var X=ee=>{try{se(ne.next(ee))}catch(J){q(J)}},V=ee=>{try{se(ne.throw(ee))}catch(J){q(J)}},se=ee=>ee.done?oe(ee.value):Promise.resolve(ee.value).then(X,V);se((ne=ne.apply(W,ae)).next())});function a(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/teachers.json`,{method:"get",params:h({},W)})})}function x(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/apply_teachers.json`,{method:"get",params:h({},W)})})}function p(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/graduation_group_list.json`,{method:"get",params:h({},W)})})}function y(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/all_course_groups.json`,{method:"get",params:h({},W)})})}function m(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/set_course_group.json`,{method:"post",body:h({},W)})})}function b(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/join_graduation_group.json`,{method:"post",body:h({},W)})})}function S(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/create_graduation_group.json`,{method:"post",body:h({},W)})})}function k(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/delete_course_teacher.json`,{method:"post",body:h({},W)})})}function R(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/delete_from_course.json`,{method:"post",body:h({},W)})})}function A(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/change_member_role.json`,{method:"post",body:h({},W)})})}function P(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/change_course_admin.json`,{method:"post",body:h({},W)})})}function M(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/teacher_application_review.json`,{method:"post",body:h({},W)})})}function B(W){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W.coursesId}/students.json`,{method:"get",params:h({},W)})})}function N(W,ae){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W}/apply_students.json`,{method:"get",params:ae})})}function K(W,ae){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W}/join_student_checkout.json`,{method:"get",params:ae})})}function H(W,ae){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${W}/student_application_review.json`,{method:"post",body:ae})})}},89540:function(d,v,e){"use strict";e.d(v,{B$:function(){return y},Cx:function(){return X},DA:function(){return P},DH:function(){return p},Ef:function(){return ee},Es:function(){return b},Ex:function(){return Zt},FM:function(){return ne},Fn:function(){return J},Gq:function(){return ar},Ho:function(){return B},IU:function(){return me},JJ:function(){return le},Ol:function(){return je},Qx:function(){return ae},Tv:function(){return z},V8:function(){return x},WS:function(){return V},WY:function(){return W},ai:function(){return q},bG:function(){return k},bJ:function(){return a},c0:function(){return Rt},dE:function(){return ie},dt:function(){return j},gI:function(){return se},lO:function(){return oe},mW:function(){return H},n0:function(){return A},nV:function(){return He},o1:function(){return Dt},qE:function(){return m},qN:function(){return M},rV:function(){return N},sh:function(){return Ie},vR:function(){return S},w3:function(){return K},x4:function(){return R},z2:function(){return ht}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=($e,gt,Mt)=>gt in $e?i($e,gt,{enumerable:!0,configurable:!0,writable:!0,value:Mt}):$e[gt]=Mt,h=($e,gt)=>{for(var Mt in gt||(gt={}))c.call(gt,Mt)&&o($e,Mt,gt[Mt]);if(l)for(var Mt of l(gt))f.call(gt,Mt)&&o($e,Mt,gt[Mt]);return $e},u=($e,gt,Mt)=>new Promise((et,ft)=>{var ot=ye=>{try{Ne(Mt.next(ye))}catch(ke){ft(ke)}},Je=ye=>{try{Ne(Mt.throw(ye))}catch(ke){ft(ke)}},Ne=ye=>ye.done?et(ye.value):Promise.resolve(ye.value).then(ot,Je);Ne((Mt=Mt.apply($e,gt)).next())});const a=$e=>u(void 0,null,function*(){return(0,r.ZP)(`/api/common_comments/${$e.id}/move.json`,{method:"post",body:$e})}),x=$e=>u(void 0,null,function*(){return(0,r.ZP)(`/api/common_comments/${$e.id}.json`,{method:"delete",body:$e})}),p=$e=>u(void 0,null,function*(){return(0,r.ZP)(`/api/common_comments/${$e.id}.json`,{method:"put",body:$e})}),y=$e=>u(void 0,null,function*(){return(0,r.ZP)("/api/common_comments.json",{method:"post",body:$e})}),m=$e=>u(void 0,null,function*(){return(0,r.ZP)("/api/common_comments.json",{method:"Get",params:$e})});function b($e){return u(this,null,function*(){return(0,r.ZP)("/api/accounts/login.json",{method:"post",body:h({},$e)})})}function S($e){return u(this,null,function*(){return(0,r.ZP)("/api/accounts/logout.json",{method:"get"})})}function k($e){return u(this,null,function*(){return(0,r.ZP)("/api/users/get_user_info.json",{method:"get",params:h({},$e)})})}function R($e){return u(this,null,function*(){return(0,r.ZP)("/api/users/get_notice.json",{method:"get",params:h({},$e)})})}function A(){return u(this,null,function*(){return(0,r.ZP)("/api/users/system_update.json",{method:"get"})})}function P($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/homepage_info.json`,{method:"get"})})}function M($e){return u(this,null,function*(){return(0,r.ZP)("/api/users/attendance.json",{method:"post"})})}function B($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/courses.json`,{method:"get",params:$e})})}function N($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/shixuns.json`,{method:"get",params:$e})})}function K($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/subjects.json`,{method:"get",params:$e})})}function H($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/projects.json`,{method:"get",params:$e})})}function W($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/videos.json`,{method:"get",params:$e})})}function ae($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/videos/review.json`,{method:"get",params:$e})})}function ne($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/videos/${$e.id}.json`,{method:"delete"})})}function oe($e){return u(this,null,function*(){return(0,r.ZP)("/api/watch_video_histories.json",{method:"post",body:$e})})}function q($e){return u(this,null,function*(){return(0,r.ZP)("/api/users/question_banks.json",{method:"get",params:$e})})}function X($e){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/multi_public.json",{method:"post",body:$e})})}function V($e){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/multi_delete.json",{method:"delete",body:$e})})}function se($e){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/my_courses.json",{method:"get",params:$e})})}function ee($e){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/send_to_course.json",{method:"post",body:$e})})}function J($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/videos/${$e.object_id}/create_course_video.json`,{method:"post",body:$e})})}function le($e){return u(this,null,function*(){return(0,r.ZP)(`/api/homework_banks/${$e.topicId}.json`,{method:"get",params:$e})})}function z($e){return u(this,null,function*(){return(0,r.ZP)("/api/question_banks/multi_delete.json",{method:"delete",body:h({},$e)})})}function j($e){return u(this,null,function*(){return(0,r.ZP)(`/api/users/${$e.username}/videos/batch_publish.json`,{method:"post",body:$e})})}function ie($e){return u(this,null,function*(){return(0,r.ZP)(`/api/myshixuns/${$e.identifier}/cancel.json`,{method:"delete",body:h({},$e)})})}function me($e){return u(this,null,function*(){return(0,r.ZP)("/api/users/get_engineer_url.json",{method:"get",params:h({},$e)})})}function Se($e){return u(this,null,function*(){return Fetch("/api/intelligent_recommendations/user_choice_learn_path.json",{method:"post",body:h({},$e)})})}function Ie(){return u(this,null,function*(){return(0,r.ZP)("/api/intelligent_recommendations/persona.json",{method:"get"})})}function He(){return u(this,null,function*(){return(0,r.ZP)("/api/intelligent_recommendations/user_learn_path.json",{method:"get"})})}function je($e){return(0,r.ZP)("/api/accounts/valid_email_and_phone.json",{method:"get",params:$e})}function Dt($e){return(0,r.ZP)("/api/accounts/get_verification_code.json",{method:"get",params:$e})}function ht($e){return(0,r.ZP)("/api/accounts/register.json",{method:"post",body:h({},$e)})}function It($e){return Fetch("/api/weapps/register.json",{method:"post",body:h({},$e)})}function Zt($e){return(0,r.ZP)(`/api/users/accounts/${$e.login}/password.json`,{method:"put",body:h({},$e)})}function Rt($e){return(0,r.ZP)("/api/accounts/reset_password.json",{method:"post",body:h({},$e)})}function ar($e){return(0,r.ZP)("/api/accounts/login_for_phone.json",{method:"get",params:h({},$e)})}},54624:function(d,v,e){"use strict";e.d(v,{BQ:function(){return a},DH:function(){return B},Db:function(){return oe},Ju:function(){return ne},Mz:function(){return H},O2:function(){return m},TJ:function(){return k},Vg:function(){return y},ZY:function(){return x},Zx:function(){return K},cU:function(){return p},fn:function(){return ae},jK:function(){return R},yN:function(){return W}});var r=e(38147),i=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,o=(q,X,V)=>X in q?i(q,X,{enumerable:!0,configurable:!0,writable:!0,value:V}):q[X]=V,h=(q,X)=>{for(var V in X||(X={}))c.call(X,V)&&o(q,V,X[V]);if(l)for(var V of l(X))f.call(X,V)&&o(q,V,X[V]);return q},u=(q,X,V)=>new Promise((se,ee)=>{var J=j=>{try{z(V.next(j))}catch(ie){ee(ie)}},le=j=>{try{z(V.throw(j))}catch(ie){ee(ie)}},z=j=>j.done?se(j.value):Promise.resolve(j.value).then(J,le);z((V=V.apply(q,X)).next())});function a(q){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${q.coursesId}/watch_video_histories.json`,{method:"Get",params:h({},q)})})}function x(q){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${q.coursesId}/watch_statics.json`,{method:"Get",params:h({},q)})})}function p(q){return u(this,null,function*(){return(0,r.ZP)(`/api/course_videos/${q.videoId}/watch_histories.json`,{method:"Get",params:h({},q)})})}function y(q){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${q.coursesId}/own_watch_histories.json`,{method:"Get",params:h({},q)})})}function m(q){return u(this,null,function*(){return(0,r.ZP)(`/api/video_items/${q.id}.json`,{method:"Get",params:h({},q)})})}function b(q){return u(this,null,function*(){return Fetch("/api/video_items.json",{method:"post",body:q})})}function S(q){return u(this,null,function*(){return Fetch(`/api/video_items/${q.id}/edit.json`,{method:"Get",params:h({},q)})})}function k(q){return u(this,null,function*(){return(0,r.ZP)(`/api/stage_shixuns/${q.id}/edit.json`,{method:"Get",params:h({},q)})})}function R(q){return u(this,null,function*(){return(0,r.ZP)(`/api/video_items/${q.id}/star.json`,{method:"post",body:q})})}function A(q){return u(this,null,function*(){return Fetch(`/api/video_items/${q.id}.json`,{method:"put",body:q})})}function P(q){return u(this,null,function*(){return Fetch(`/api/video_items/${q.id}/send_to_course.json`,{method:"post",body:q})})}function M(q){return u(this,null,function*(){return Fetch("/api/users/my_courses.json",{method:"Get",params:h({},q)})})}function B(q){return u(this,null,function*(){return(0,r.ZP)(`/api/video_items/${q.id}/view_video.json`,{method:"post",body:q})})}function N(q){return u(this,null,function*(){return Fetch(`/api/video_items/${q.id}/add_school.json`,{method:"post",body:q})})}function K(q){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${q.course_id}/video_people_statics.json`,{method:"get",params:q})})}function H(q){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${q.course_id}/video_duration_statics.json`,{method:"get",params:q})})}function W(q){return u(this,null,function*(){return(0,r.ZP)("/api/stages.json",{method:"get",params:q})})}function ae(q){return u(this,null,function*(){return(0,r.ZP)(`/api/courses/${q==null?void 0:q.id}/course_videos_tree.json`,{method:"get",params:q})})}function ne(q){return u(this,null,function*(){return(0,r.ZP)("/api/study_action_analyses.json",{method:"post",body:q})})}function oe(q){return u(this,null,function*(){return(0,r.ZP)("/api/study_action_analyses/detail.json",{method:"post",body:q})})}},35965:function(d,v,e){"use strict";e.d(v,{A:function(){return H},CH:function(){return c},EA:function(){return h},FU:function(){return x},G_:function(){return m},LY:function(){return M},Ll:function(){return o},MM:function(){return R},Ps:function(){return B},Sl:function(){return S},To:function(){return p},Vf:function(){return y},XQ:function(){return f},b:function(){return a},bq:function(){return K},cZ:function(){return u},rV:function(){return P},sT:function(){return b},tS:function(){return N},xt:function(){return A},y2:function(){return l}});var r=e(38147),i=(W,ae,ne)=>new Promise((oe,q)=>{var X=ee=>{try{se(ne.next(ee))}catch(J){q(J)}},V=ee=>{try{se(ne.throw(ee))}catch(J){q(J)}},se=ee=>ee.done?oe(ee.value):Promise.resolve(ee.value).then(X,V);se((ne=ne.apply(W,ae)).next())});const l=W=>i(void 0,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/base_statistic_data.json`,{method:"Get",params:W})});function c(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/discussions/${W.id}.json`,{method:"put",body:W})})}function f(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/discussions/${W.id}.json`,{method:"get",params:W})})}function o(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/discussions.json`,{method:"post",body:W})})}function h(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/discussions.json`,{method:"get",params:W})})}function u(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/good_lessons/${W.id}/add_resources.json`,{method:"post",body:W})})}function a(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/good_lessons/${W.id}/lesson_resources_list.json`,{method:"get",params:W})})}function x(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/good_lessons/${W.id}.json`,{method:"get",params:W})})}function p(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/good_lessons/${W.id}.json`,{method:"put",body:W})})}function y(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/good_lessons.json`,{method:"post",body:W})})}function m(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/good_lessons.json`,{method:"get",params:W})})}function b(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W==null?void 0:W.id}.json`,{method:"get"})})}function S(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W==null?void 0:W.id}/modules.json`,{method:"get"})})}function k(W){return i(this,null,function*(){return Fetch(`/api/virtual_classrooms/${W.id}/videos/batch_publish.json`,{method:"post",body:W})})}function R(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/members.json`,{method:"post",body:W})})}function A(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_spacesId}/members/${W.id}/change_creator.json`,{method:"post",body:W})})}function P(W,ae){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W}/shixuns.json`,{method:"get",params:ae})})}function M(W,ae){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W}/shixuns`,{method:"post",body:ae})})}function B(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_classroom_id}/shixuns/${W.shixun_id}.json`,{method:"delete"})})}function N(W,ae){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W}/subjects.json`,{method:"get",params:ae})})}function K(W,ae){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W}/subjects.json`,{method:"post",body:ae})})}function H(W){return i(this,null,function*(){return(0,r.ZP)(`/api/virtual_classrooms/${W.virtual_classroom_id}/subjects/${W.subject_id}.json`,{method:"delete"})})}},41867:function(d,v,e){"use strict";e.d(v,{$O:function(){return X},EO:function(){return pt},G5:function(){return K},GD:function(){return i},GJ:function(){return x},Gg:function(){return p},I2:function(){return f},IR:function(){return W},JA:function(){return ut},JL:function(){return A},Jd:function(){return q},Ny:function(){return k},RV:function(){return ne},Rb:function(){return N},Rm:function(){return H},V9:function(){return ie},Yh:function(){return le},aN:function(){return b},aQ:function(){return u},ag:function(){return Xe},bg:function(){return tr},d8:function(){return B},dE:function(){return ae},eB:function(){return oe},eY:function(){return Me},fn:function(){return We},h:function(){return lr},j5:function(){return m},m$:function(){return tt},oF:function(){return y},qz:function(){return h},t_:function(){return S},tu:function(){return Ot},y8:function(){return or}});var r=e(65582),i=(Wt=>(Wt[Wt.SuperAdmin=1]="SuperAdmin",Wt[Wt.Operation=2]="Operation",Wt[Wt.CertifiedTeacher=5]="CertifiedTeacher",Wt[Wt.TrainingProduction=8]="TrainingProduction",Wt[Wt.UncertifiedTeacher=12]="UncertifiedTeacher",Wt[Wt.Student=15]="Student",Wt))(i||{}),l=(Wt=>(Wt[Wt.SuperAdmin=1]="SuperAdmin",Wt[Wt.Operation=2]="Operation",Wt[Wt.Admin=5]="Admin",Wt[Wt.Teacher=8]="Teacher",Wt[Wt.Assistant=12]="Assistant",Wt[Wt.Student=15]="Student",Wt))(l||{}),c=(Wt=>(Wt[Wt.SuperAdmin=0]="SuperAdmin",Wt[Wt.Teacher=1]="Teacher",Wt[Wt.Student=2]="Student",Wt))(c||{});const f=Wt=>{const{user:Ce}=(0,r.getDvaApp)()._store.getState(),{userInfo:ce}=Ce;return Wt.some(pe=>pe==(ce==null?void 0:ce.role))},o=Wt=>{const{user:Ce}=(0,r.getDvaApp)()._store.getState(),{userInfo:ce}=Ce;return ce!=null&&ce.own?!0:Wt.some(pe=>{var Ct;return pe==((Ct=ce==null?void 0:ce.course)==null?void 0:Ct.course_role)})},h=()=>{const{user:Wt}=(0,r.getDvaApp)()._store.getState(),{userInfo:Ce}=Wt;return Ce.main_site},u=()=>{var Wt;const{user:Ce}=(0,r.getDvaApp)()._store.getState(),{userInfo:ce}=Ce;return(Wt=ce==null?void 0:ce.course)==null?void 0:Wt.course_is_end},a=()=>{const{user:Wt}=getDvaApp()._store.getState(),{userInfo:Ce}=Wt;return Ce.authentication},x=()=>o([1,2,5,8,12]),p=()=>o([1,8,5,12,2]),y=()=>o([1,8,5]),m=()=>o([1]),b=()=>o([1,2,5]),S=()=>o([1,2]),k=()=>f([1,2]),R=()=>f([1]),A=()=>f([1,2,5]),P=()=>o([1,5]),M=()=>o([5,8]),B=()=>o([5]),N=()=>o([1,5,2]),K=()=>o([1,2,5,8]),H=()=>o([12]),W=()=>o([8]),ae=()=>o([15]),ne=()=>o([1,2,5,8,12,15]),oe=()=>o([1,2,5,8,12]),q=()=>{var Wt;const{user:Ce}=(0,r.getDvaApp)()._store.getState(),{userInfo:ce}=Ce;return((Wt=ce==null?void 0:ce.course)==null?void 0:Wt.course_role)===null},X=()=>{const{user:Wt}=(0,r.getDvaApp)()._store.getState(),{userInfo:Ce}=Wt;return Ce==null?void 0:Ce.has_big_model_permission},V=()=>{const{user:Wt}=getDvaApp()._store.getState(),{userInfo:Ce}=Wt;return Ce==null?void 0:Ce.big_model_user_unlimited},se=(Wt=!0,Ce=!1)=>f([1,2,5,8,12,15]),ee=(Wt=!0,Ce=!1)=>Ce||!Ce&&f([1]),J=(Wt=!0,Ce=!1)=>Ce||!Ce&&f([1,2]),le=()=>f([15]),z=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12,15]):Ce||!Ce&&f([1,2]),j=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12,15]):Ce||!Ce&&f([1,2]),ie=(Wt=!0,Ce=!1)=>{const{user:ce}=(0,r.getDvaApp)()._store.getState(),{userInfo:pe}=ce;return pe!=null&&pe.is_shixun_marker?!0:f([1,2,5,8])},me=(Wt=!0,Ce=!1)=>Wt?f([1]):Ce||!Ce&&f([1]),Se=(Wt=!0,Ce=!1)=>Wt?f([1,2]):Ce||!Ce&&f([1,2]),Ie=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12,15]):Ce||!Ce&&f([1,2]),He=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12]):Ce||!Ce&&f([1,2]),je=(Wt=!0,Ce=!1)=>Wt?f([1,2,5]):Ce||!Ce&&f([1,2]),Dt=(Wt=!0,Ce=!1)=>Wt?f([1]):!1,ht=(Wt=!0,Ce=!1)=>f([1,2,5,8,12,15]),It=(Wt=!0,Ce=!1)=>Wt?f([1]):Ce||!Ce&&f([1]),Zt=(Wt=!0,Ce=!1)=>Wt?f([1,2]):Ce||!Ce&&f([1,2]),Rt=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12,15]):Ce||!Ce&&f([1,2]),ar=(Wt=!0,Ce=!1)=>Wt?!1:Ce||!Ce&&f([1,2]),$e=(Wt=!0,Ce=!1)=>Wt?Ce||!Ce&&f([1,2]):!1,gt=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12]):!1,Mt=(Wt=!0,Ce=!1)=>Wt?!Ce&&f([1,2,5,8,12]):!1,et=(Wt=!0,Ce=!1)=>Wt?f([1,2,5]):Ce||!Ce&&f([1,2]),ft=(Wt=!0,Ce=!1)=>f([1,2,5,8,12]),ot=(Wt=!0,Ce=!1)=>Wt?f([1]):Ce||!Ce&&f([1]),Je=(Wt=!0,Ce=!1)=>Wt?f([1,2]):Ce||!Ce&&f([1,2]),Ne=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12]):Ce||!Ce&&f([1,2]),ye=(Wt=!0,Ce=!1)=>Wt?Ce||!Ce&&f([1,2]):!1,ke=(Wt=!0,Ce=!1)=>Wt?f([1,2,5,8,12]):Ce||!Ce&&f([1,2]),Ge=(Wt=!0,Ce=!1)=>o([8]),We=()=>f([1]),Xe=()=>f([1,2]),ut=()=>f([15]),pt=()=>f([1,2,5]),or=()=>f([1,2,5,12]),tr=()=>{var Wt;const{user:Ce}=(0,r.getDvaApp)()._store.getState();return!!((Wt=Ce.userInfo)!=null&&Wt.login)},Me=()=>{const{user:Wt}=(0,r.getDvaApp)()._store.getState();return Wt.userInfo},tt=()=>{var Wt,Ce;const{user:ce}=(0,r.getDvaApp)()._store.getState();return!!((Ce=(Wt=ce.userInfo)==null?void 0:Wt.path)!=null&&Ce.own)},Yt=Wt=>{const{graduations:Ce}=(0,r.getDvaApp)()._store.getState(),{details:ce}=Ce;return Wt.some(pe=>pe===(ce==null?void 0:ce.user_identity))},Ot=()=>Yt([0,1]),zt=()=>Yt([0]),Ht=()=>Yt([1]),lr=()=>Yt([2])},2337:function(d,v,e){"use strict";e.d(v,{Fy:function(){return o},Qo:function(){return h},a2:function(){return c},fw:function(){return r},gW:function(){return l},k:function(){return f},k4:function(){return i}});const r=[{id:0,name:"\u5355\u9009\u9898",nameType:"SINGLE"},{id:1,name:"\u591A\u9009\u9898",nameType:"MULTIPLE"},{id:2,name:"\u5224\u65AD\u9898",nameType:"JUDGMENT"},{id:3,name:"\u586B\u7A7A\u9898",nameType:"COMPLETION"},{id:4,name:"\u7B80\u7B54\u9898",nameType:"SUBJECTIVE"},{id:5,name:"\u5B9E\u8BAD\u9898",nameType:"PRACTICAL"},{id:6,name:"\u7F16\u7A0B\u9898",nameType:"PROGRAM"},{id:7,name:"\u7EC4\u5408\u9898",nameType:"COMBINATION"},{id:8,name:"\u7A0B\u5E8F\u586B\u7A7A\u9898",nameType:"BPROGRAM"}],i=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"];var l=(u=>(u.PROBLEM="problem",u.PAPER="paper",u.OTHER="other",u))(l||{}),c=(u=>(u.SINGLE="single",u.MULTIPLEFLOW="multiple_flow",u.MULTIPLEFIXED="multiple_fixed",u.OTHER="other",u))(c||{}),f=(u=>(u[u.BISHI=1]="BISHI",u[u.JISHI=2]="JISHI",u[u.KOUSHI=3]="KOUSHI",u[u.OTHER=4]="OTHER",u))(f||{}),o=(u=>(u[u.DEFAULT=0]="DEFAULT",u[u.THEMEONE=1]="THEMEONE",u[u.THEMETWO=2]="THEMETWO",u[u.THEMETHREE=3]="THEMETHREE",u))(o||{}),h=(u=>(u.All="",u.Shixun="shixun",u.VideoItem="video",u.Attachment="attachment",u.Group_count="group_homework",u.Normal_count="normal_homework",u.ExaminationBank="exercise",u.HomeworkCommon="hack_homework",u.Discusses="Discusses",u.Challenge="challenge",u))(h||{})},37142:function(d,v,e){"use strict";e.d(v,{F:function(){return r}});const r={load:"text/html",123:"application/vndlotus-1-2-3","3ds":"image/x-3ds","3g2":"video/3gpp","3ga":"video/3gpp","3gp":"video/3gpp","3gpp":"video/3gpp",602:"application/x-t602",669:"audio/x-mod","7z":"application/x-7z-compressed",a:"application/x-archive",aac:"audio/mp4",abw:"application/x-abiword",abwcrashed:"application/x-abiword",abwgz:"application/x-abiword",ac3:"audio/ac3",ace:"application/x-ace",adb:"text/x-adasrc",ads:"text/x-adasrc",afm:"application/x-font-afm",ag:"image/x-applix-graphics",ai:"application/illustrator",aif:"audio/x-aiff",aifc:"audio/x-aiff",aiff:"audio/x-aiff",al:"application/x-perl",alz:"application/x-alz",amr:"audio/amr",ani:"application/x-navi-animation","anim[1-9j]":"video/x-anim",anx:"application/annodex",ape:"audio/x-ape",arj:"application/x-arj",arw:"image/x-sony-arw",as:"application/x-applix-spreadsheet",asc:"text/plain",asf:"video/x-ms-asf",asp:"application/x-asp",ass:"text/x-ssa",asx:"audio/x-ms-asx",atom:"application/atom+xml",au:"audio/basic",avi:"video/x-msvideo",aw:"application/x-applix-word",awb:"audio/amr-wb",awk:"application/x-awk",axa:"audio/annodex",axv:"video/annodex",bak:"application/x-trash",bcpio:"application/x-bcpio",bdf:"application/x-font-bdf",bib:"text/x-bibtex",bin:"application/octet-stream",blend:"application/x-blender",blender:"application/x-blender",bmp:"image/bmp",bz:"application/x-bzip",bz2:"application/x-bzip",c:"text/x-csrc","c++":"text/x-c++src",cab:"application/vndms-cab-compressed",cb7:"application/x-cb7",cbr:"application/x-cbr",cbt:"application/x-cbt",cbz:"application/x-cbz",cc:"text/x-c++src",cdf:"application/x-netcdf",cdr:"application/vndcorel-draw",cer:"application/x-x509-ca-cert",cert:"application/x-x509-ca-cert",cgm:"image/cgm",chm:"application/x-chm",chrt:"application/x-kchart",class:"application/x-java",cls:"text/x-tex",cmake:"text/x-cmake",cpio:"application/x-cpio",cpiogz:"application/x-cpio-compressed",cpp:"text/x-c++src",cr2:"image/x-canon-cr2",crt:"application/x-x509-ca-cert",crw:"image/x-canon-crw",cs:"text/x-csharp",csh:"application/x-csh",css:"text/css",cssl:"text/css",csv:"text/csv",cue:"application/x-cue",cur:"image/x-win-bitmap",cxx:"text/x-c++src",d:"text/x-dsrc",dar:"application/x-dar",dbf:"application/x-dbf",dc:"application/x-dc-rom",dcl:"text/x-dcl",dcm:"application/dicom",dcr:"image/x-kodak-dcr",dds:"image/x-dds",deb:"application/x-deb",der:"application/x-x509-ca-cert",desktop:"application/x-desktop",dia:"application/x-dia-diagram",diff:"text/x-patch",divx:"video/x-msvideo",djv:"image/vnddjvu",djvu:"image/vnddjvu",dng:"image/x-adobe-dng",doc:"application/msword",docbook:"application/docbook+xml",docm:"application/vndopenxmlformats-officedocumentwordprocessingmldocument",docx:"application/vndopenxmlformats-officedocumentwordprocessingmldocument",dot:"text/vndgraphviz",dsl:"text/x-dsl",dtd:"application/xml-dtd",dtx:"text/x-tex",dv:"video/dv",dvi:"application/x-dvi",dvibz2:"application/x-bzdvi",dvigz:"application/x-gzdvi",dwg:"image/vnddwg",dxf:"image/vnddxf",e:"text/x-eiffel",egon:"application/x-egon",eif:"text/x-eiffel",el:"text/x-emacs-lisp",emf:"image/x-emf",emp:"application/vndemusic-emusic_package",ent:"application/xml-external-parsed-entity",eps:"image/x-eps",epsbz2:"image/x-bzeps",epsgz:"image/x-gzeps",epsf:"image/x-eps",epsfbz2:"image/x-bzeps",epsfgz:"image/x-gzeps",epsi:"image/x-eps",epsibz2:"image/x-bzeps",epsigz:"image/x-gzeps",epub:"application/epub+zip",erl:"text/x-erlang",es:"application/ecmascript",etheme:"application/x-e-theme",etx:"text/x-setext",exe:"application/x-ms-dos-executable",exr:"image/x-exr",ez:"application/andrew-inset",f:"text/x-fortran",f90:"text/x-fortran",f95:"text/x-fortran",fb2:"application/x-fictionbook+xml",fig:"image/x-xfig",fits:"image/fits",fl:"application/x-fluid",flac:"audio/x-flac",flc:"video/x-flic",fli:"video/x-flic",flv:"video/x-flv",flw:"application/x-kivio",fo:"text/x-xslfo",for:"text/x-fortran",g3:"image/fax-g3",gb:"application/x-gameboy-rom",gba:"application/x-gba-rom",gcrd:"text/directory",ged:"application/x-gedcom",gedcom:"application/x-gedcom",gen:"application/x-genesis-rom",gf:"application/x-tex-gf",gg:"application/x-sms-rom",gif:"image/gif",glade:"application/x-glade",gmo:"application/x-gettext-translation",gnc:"application/x-gnucash",gnd:"application/gnunet-directory",gnucash:"application/x-gnucash",gnumeric:"application/x-gnumeric",gnuplot:"application/x-gnuplot",gp:"application/x-gnuplot",gpg:"application/pgp-encrypted",gplt:"application/x-gnuplot",gra:"application/x-graphite",gsf:"application/x-font-type1",gsm:"audio/x-gsm",gtar:"application/x-tar",gv:"text/vndgraphviz",gvp:"text/x-google-video-pointer",gz:"application/x-gzip",h:"text/x-chdr","h++":"text/x-c++hdr",hdf:"application/x-hdf",hh:"text/x-c++hdr",hp:"text/x-c++hdr",hpgl:"application/vndhp-hpgl",hpp:"text/x-c++hdr",hs:"text/x-haskell",htm:"text/html",html:"text/html",hwp:"application/x-hwp",hwt:"application/x-hwt",hxx:"text/x-c++hdr",ica:"application/x-ica",icb:"image/x-tga",icns:"image/x-icns",ico:"image/vndmicrosofticon",ics:"text/calendar",idl:"text/x-idl",ief:"image/ief",iff:"image/x-iff",ilbm:"image/x-ilbm",ime:"text/x-imelody",imy:"text/x-imelody",ins:"text/x-tex",iptables:"text/x-iptables",iso:"application/x-cd-image",iso9660:"application/x-cd-image",it:"audio/x-it",j2k:"image/jp2",jad:"text/vndsunj2meapp-descriptor",jar:"application/x-java-archive",java:"text/x-java",jng:"image/x-jng",jnlp:"application/x-java-jnlp-file",jp2:"image/jp2",jpc:"image/jp2",jpe:"image/jpeg",jpeg:"image/jpeg",jpf:"image/jp2",jpg:"image/jpeg",jpr:"application/x-jbuilder-project",jpx:"image/jp2",js:"application/javascript",json:"application/json",jsonp:"application/jsonp",k25:"image/x-kodak-k25",kar:"audio/midi",karbon:"application/x-karbon",kdc:"image/x-kodak-kdc",kdelnk:"application/x-desktop",kexi:"application/x-kexiproject-sqlite3",kexic:"application/x-kexi-connectiondata",kexis:"application/x-kexiproject-shortcut",kfo:"application/x-kformula",kil:"application/x-killustrator",kino:"application/smil",kml:"application/vndgoogle-earthkml+xml",kmz:"application/vndgoogle-earthkmz",kon:"application/x-kontour",kpm:"application/x-kpovmodeler",kpr:"application/x-kpresenter",kpt:"application/x-kpresenter",kra:"application/x-krita",ksp:"application/x-kspread",kud:"application/x-kugar",kwd:"application/x-kword",kwt:"application/x-kword",la:"application/x-shared-library-la",latex:"text/x-tex",ldif:"text/x-ldif",lha:"application/x-lha",lhs:"text/x-literate-haskell",lhz:"application/x-lhz",log:"text/x-log",ltx:"text/x-tex",lua:"text/x-lua",lwo:"image/x-lwo",lwob:"image/x-lwo",lws:"image/x-lws",ly:"text/x-lilypond",lyx:"application/x-lyx",lz:"application/x-lzip",lzh:"application/x-lha",lzma:"application/x-lzma",lzo:"application/x-lzop",m:"text/x-matlab",m15:"audio/x-mod",m2t:"video/mpeg",m3u:"audio/x-mpegurl",m3u8:"audio/x-mpegurl",m4:"application/x-m4",m4a:"audio/mp4",m4b:"audio/x-m4b",m4v:"video/mp4",mab:"application/x-markaby",man:"application/x-troff-man",mbox:"application/mbox",md:"application/x-genesis-rom",mdb:"application/vndms-access",mdi:"image/vndms-modi",me:"text/x-troff-me",med:"audio/x-mod",metalink:"application/metalink+xml",mgp:"application/x-magicpoint",mid:"audio/midi",midi:"audio/midi",mif:"application/x-mif",minipsf:"audio/x-minipsf",mka:"audio/x-matroska",mkv:"video/x-matroska",ml:"text/x-ocaml",mli:"text/x-ocaml",mm:"text/x-troff-mm",mmf:"application/x-smaf",mml:"text/mathml",mng:"video/x-mng",mo:"application/x-gettext-translation",mo3:"audio/x-mo3",moc:"text/x-moc",mod:"audio/x-mod",mof:"text/x-mof",moov:"video/quicktime",mov:"video/quicktime",movie:"video/x-sgi-movie","mp+":"audio/x-musepack",mp2:"video/mpeg",mp3:"audio/mpeg",mp4:"video/mp4",mpc:"audio/x-musepack",mpe:"video/mpeg",mpeg:"video/mpeg",mpg:"video/mpeg",mpga:"audio/mpeg",mpp:"audio/x-musepack",mrl:"text/x-mrml",mrml:"text/x-mrml",mrw:"image/x-minolta-mrw",ms:"text/x-troff-ms",msi:"application/x-msi",msod:"image/x-msod",msx:"application/x-msx-rom",mtm:"audio/x-mod",mup:"text/x-mup",mxf:"application/mxf",n64:"application/x-n64-rom",nb:"application/mathematica",nc:"application/x-netcdf",nds:"application/x-nintendo-ds-rom",nef:"image/x-nikon-nef",nes:"application/x-nes-rom",nfo:"text/x-nfo",not:"text/x-mup",nsc:"application/x-netshow-channel",nsv:"video/x-nsv",o:"application/x-object",obj:"application/x-tgif",ocl:"text/x-ocl",oda:"application/oda",odb:"application/vndoasisopendocumentdatabase",odc:"application/vndoasisopendocumentchart",odf:"application/vndoasisopendocumentformula",odg:"application/vndoasisopendocumentgraphics",odi:"application/vndoasisopendocumentimage",odm:"application/vndoasisopendocumenttext-master",odp:"application/vndoasisopendocumentpresentation",ods:"application/vndoasisopendocumentspreadsheet",odt:"application/vndoasisopendocumenttext",oga:"audio/ogg",ogg:"video/x-theora+ogg",ogm:"video/x-ogm+ogg",ogv:"video/ogg",ogx:"application/ogg",old:"application/x-trash",oleo:"application/x-oleo",opml:"text/x-opml+xml",ora:"image/openraster",orf:"image/x-olympus-orf",otc:"application/vndoasisopendocumentchart-template",otf:"application/x-font-otf",otg:"application/vndoasisopendocumentgraphics-template",oth:"application/vndoasisopendocumenttext-web",otp:"application/vndoasisopendocumentpresentation-template",ots:"application/vndoasisopendocumentspreadsheet-template",ott:"application/vndoasisopendocumenttext-template",owl:"application/rdf+xml",oxt:"application/vndopenofficeorgextension",p:"text/x-pascal",p10:"application/pkcs10",p12:"application/x-pkcs12",p7b:"application/x-pkcs7-certificates",p7s:"application/pkcs7-signature",pack:"application/x-java-pack200",pak:"application/x-pak",par2:"application/x-par2",pas:"text/x-pascal",patch:"text/x-patch",pbm:"image/x-portable-bitmap",pcd:"image/x-photo-cd",pcf:"application/x-cisco-vpn-settings",pcfgz:"application/x-font-pcf",pcfz:"application/x-font-pcf",pcl:"application/vndhp-pcl",pcx:"image/x-pcx",pdb:"chemical/x-pdb",pdc:"application/x-aportisdoc",pdf:"application/pdf",pdfbz2:"application/x-bzpdf",pdfgz:"application/x-gzpdf",pef:"image/x-pentax-pef",pem:"application/x-x509-ca-cert",perl:"application/x-perl",pfa:"application/x-font-type1",pfb:"application/x-font-type1",pfx:"application/x-pkcs12",pgm:"image/x-portable-graymap",pgn:"application/x-chess-pgn",pgp:"application/pgp-encrypted",php:"application/x-php",php3:"application/x-php",php4:"application/x-php",pict:"image/x-pict",pict1:"image/x-pict",pict2:"image/x-pict",pickle:"application/python-pickle",pk:"application/x-tex-pk",pkipath:"application/pkix-pkipath",pkr:"application/pgp-keys",pl:"application/x-perl",pla:"audio/x-iriver-pla",pln:"application/x-planperfect",pls:"audio/x-scpls",pm:"application/x-perl",png:"image/png",pnm:"image/x-portable-anymap",pntg:"image/x-macpaint",po:"text/x-gettext-translation",por:"application/x-spss-por",pot:"text/x-gettext-translation-template",ppm:"image/x-portable-pixmap",pps:"application/vndms-powerpoint",ppt:"application/vndms-powerpoint",pptm:"application/vndopenxmlformats-officedocumentpresentationmlpresentation",pptx:"application/vndopenxmlformats-officedocumentpresentationmlpresentation",ppz:"application/vndms-powerpoint",prc:"application/x-palm-database",ps:"application/postscript",psbz2:"application/x-bzpostscript",psgz:"application/x-gzpostscript",psd:"image/vndadobephotoshop",psf:"audio/x-psf",psfgz:"application/x-gz-font-linux-psf",psflib:"audio/x-psflib",psid:"audio/prssid",psw:"application/x-pocket-word",pw:"application/x-pw",py:"text/x-python",pyc:"application/x-python-bytecode",pyo:"application/x-python-bytecode",qif:"image/x-quicktime",qt:"video/quicktime",qtif:"image/x-quicktime",qtl:"application/x-quicktime-media-link",qtvr:"video/quicktime",ra:"audio/vndrn-realaudio",raf:"image/x-fuji-raf",ram:"application/ram",rar:"application/x-rar",ras:"image/x-cmu-raster",raw:"image/x-panasonic-raw",rax:"audio/vndrn-realaudio",rb:"application/x-ruby",rdf:"application/rdf+xml",rdfs:"application/rdf+xml",reg:"text/x-ms-regedit",rej:"application/x-reject",rgb:"image/x-rgb",rle:"image/rle",rm:"application/vndrn-realmedia",rmj:"application/vndrn-realmedia",rmm:"application/vndrn-realmedia",rms:"application/vndrn-realmedia",rmvb:"application/vndrn-realmedia",rmx:"application/vndrn-realmedia",roff:"text/troff",rp:"image/vndrn-realpix",rpm:"application/x-rpm",rss:"application/rss+xml",rt:"text/vndrn-realtext",rtf:"application/rtf",rtx:"text/richtext",rv:"video/vndrn-realvideo",rvx:"video/vndrn-realvideo",s3m:"audio/x-s3m",sam:"application/x-amipro",sami:"application/x-sami",sav:"application/x-spss-sav",scm:"text/x-scheme",sda:"application/vndstardivisiondraw",sdc:"application/vndstardivisioncalc",sdd:"application/vndstardivisionimpress",sdp:"application/sdp",sds:"application/vndstardivisionchart",sdw:"application/vndstardivisionwriter",sgf:"application/x-go-sgf",sgi:"image/x-sgi",sgl:"application/vndstardivisionwriter",sgm:"text/sgml",sgml:"text/sgml",sh:"application/x-shellscript",shar:"application/x-shar",shn:"application/x-shorten",siag:"application/x-siag",sid:"audio/prssid",sik:"application/x-trash",sis:"application/vndsymbianinstall",sisx:"x-epoc/x-sisx-app",sit:"application/x-stuffit",siv:"application/sieve",sk:"image/x-skencil",sk1:"image/x-skencil",skr:"application/pgp-keys",slk:"text/spreadsheet",smaf:"application/x-smaf",smc:"application/x-snes-rom",smd:"application/vndstardivisionmail",smf:"application/vndstardivisionmath",smi:"application/x-sami",smil:"application/smil",sml:"application/smil",sms:"application/x-sms-rom",snd:"audio/basic",so:"application/x-sharedlib",spc:"application/x-pkcs7-certificates",spd:"application/x-font-speedo",spec:"text/x-rpm-spec",spl:"application/x-shockwave-flash",spx:"audio/x-speex",sql:"text/x-sql",sr2:"image/x-sony-sr2",src:"application/x-wais-source",srf:"image/x-sony-srf",srt:"application/x-subrip",ssa:"text/x-ssa",stc:"application/vndsunxmlcalctemplate",std:"application/vndsunxmldrawtemplate",sti:"application/vndsunxmlimpresstemplate",stm:"audio/x-stm",stw:"application/vndsunxmlwritertemplate",sty:"text/x-tex",sub:"text/x-subviewer",sun:"image/x-sun-raster",sv4cpio:"application/x-sv4cpio",sv4crc:"application/x-sv4crc",svg:"image/svg+xml",svgz:"image/svg+xml-compressed",swf:"application/x-shockwave-flash",sxc:"application/vndsunxmlcalc",sxd:"application/vndsunxmldraw",sxg:"application/vndsunxmlwriterglobal",sxi:"application/vndsunxmlimpress",sxm:"application/vndsunxmlmath",sxw:"application/vndsunxmlwriter",sylk:"text/spreadsheet",t:"text/troff",t2t:"text/x-txt2tags",tar:"application/x-tar",tarbz:"application/x-bzip-compressed-tar",tarbz2:"application/x-bzip-compressed-tar",targz:"application/x-compressed-tar",tarlzma:"application/x-lzma-compressed-tar",tarlzo:"application/x-tzo",tarxz:"application/x-xz-compressed-tar",tarz:"application/x-tarz",tbz:"application/x-bzip-compressed-tar",tbz2:"application/x-bzip-compressed-tar",tcl:"text/x-tcl",tex:"text/x-tex",texi:"text/x-texinfo",texinfo:"text/x-texinfo",tga:"image/x-tga",tgz:"application/x-compressed-tar",theme:"application/x-theme",themepack:"application/x-windows-themepack",tif:"image/tiff",tiff:"image/tiff",tk:"text/x-tcl",tlz:"application/x-lzma-compressed-tar",tnef:"application/vndms-tnef",tnf:"application/vndms-tnef",toc:"application/x-cdrdao-toc",torrent:"application/x-bittorrent",tpic:"image/x-tga",tr:"text/troff",ts:"application/x-linguist",tsv:"text/tab-separated-values",tta:"audio/x-tta",ttc:"application/x-font-ttf",ttf:"application/x-font-ttf",ttx:"application/x-font-ttx",txt:"text/plain",txz:"application/x-xz-compressed-tar",tzo:"application/x-tzo",ufraw:"application/x-ufraw",ui:"application/x-designer",uil:"text/x-uil",ult:"audio/x-mod",uni:"audio/x-mod",uri:"text/x-uri",url:"text/x-uri",ustar:"application/x-ustar",vala:"text/x-vala",vapi:"text/x-vala",vcf:"text/directory",vcs:"text/calendar",vct:"text/directory",vda:"image/x-tga",vhd:"text/x-vhdl",vhdl:"text/x-vhdl",viv:"video/vivo",vivo:"video/vivo",vlc:"audio/x-mpegurl",vob:"video/mpeg",voc:"audio/x-voc",vor:"application/vndstardivisionwriter",vst:"image/x-tga",wav:"audio/x-wav",wax:"audio/x-ms-asx",wb1:"application/x-quattropro",wb2:"application/x-quattropro",wb3:"application/x-quattropro",wbmp:"image/vndwapwbmp",wcm:"application/vndms-works",wdb:"application/vndms-works",webm:"video/webm",wk1:"application/vndlotus-1-2-3",wk3:"application/vndlotus-1-2-3",wk4:"application/vndlotus-1-2-3",wks:"application/vndms-works",wma:"audio/x-ms-wma",wmf:"image/x-wmf",wml:"text/vndwapwml",wmls:"text/vndwapwmlscript",wmv:"video/x-ms-wmv",wmx:"audio/x-ms-asx",wp:"application/vndwordperfect",wp4:"application/vndwordperfect",wp5:"application/vndwordperfect",wp6:"application/vndwordperfect",wpd:"application/vndwordperfect",wpg:"application/x-wpg",wpl:"application/vndms-wpl",wpp:"application/vndwordperfect",wps:"application/vndms-works",wri:"application/x-mswrite",wrl:"model/vrml",wv:"audio/x-wavpack",wvc:"audio/x-wavpack-correction",wvp:"audio/x-wavpack",wvx:"audio/x-ms-asx",x3f:"image/x-sigma-x3f",xac:"application/x-gnucash",xbel:"application/x-xbel",xbl:"application/xml",xbm:"image/x-xbitmap",xcf:"image/x-xcf",xcfbz2:"image/x-compressed-xcf",xcfgz:"image/x-compressed-xcf",xhtml:"application/xhtml+xml",xi:"audio/x-xi",xla:"application/vndms-excel",xlc:"application/vndms-excel",xld:"application/vndms-excel",xlf:"application/x-xliff",xliff:"application/x-xliff",xll:"application/vndms-excel",xlm:"application/vndms-excel",xls:"application/vndms-excel",xlsm:"application/vndopenxmlformats-officedocumentspreadsheetmlsheet",xlsx:"application/vndopenxmlformats-officedocumentspreadsheetmlsheet",xlt:"application/vndms-excel",xlw:"application/vndms-excel",xm:"audio/x-xm",xmf:"audio/x-xmf",xmi:"text/x-xmi",xml:"application/xml",xpm:"image/x-xpixmap",xps:"application/vndms-xpsdocument",xsl:"application/xml",xslfo:"text/x-xslfo",xslt:"application/xml",xspf:"application/xspf+xml",xul:"application/vndmozillaxul+xml",xwd:"image/x-xwindowdump",xyz:"chemical/x-pdb",xz:"application/x-xz",w2p:"application/w2p",z:"application/x-compress",zabw:"application/x-abiword",zip:"application/zip"}},74128:function(d,v,e){"use strict";e.d(v,{Z:function(){return c}});const r={PROXY_SERVER:"http://172.16.100.182",API_SERVER:"",REPORT_SERVER:"http://192.168.1.57:3001",IMG_SERVER:"http://172.16.100.14",FORGE:"https://code.educoder.net/",SSH_SERVER:"wss://webssh.educoder.net",SSH_Slice:"https://testfu.educoder.net",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",TERMINAL_URL:"testsvc1.vnc.educoder.net",QQLoginCB:encodeURIComponent("https://test-newweb.educoder.net")};var i=null,c={local:{API_SERVER:"http://localhost:3000",IMG_SERVER:"https://testali-cdn.educoder.net/",REPORT_SERVER:"http://192.168.1.57:3001",FORGE:"https://test-oldweb.educoder.net/",SSH_SERVER:"wss://pre-webssh.educoder.net",SSH_Slice:"https://testfu.educoder.net",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",QQLoginCB:encodeURIComponent("https://test-newweb.educoder.net")},dev:r,newReactTest:{API_SERVER:(()=>{let f;switch(location.host){case"test4.educoder.net":f="https://test4-data.educoder.net";break;case"test3.educoder.net":f="https://test3-data.educoder.net";break;case"test2.educoder.net":f="https://test2-data.educoder.net";break;default:f="https://test-data.educoder.net";break}return f})(),SSH_SERVER:"wss://pre-webssh.educoder.net",SSH_Slice:"https://testfu.educoder.net",IMG_SERVER:(()=>{let f="https://new-testali-cdn.educoder.net";const o=location.host;return o==="test3.educoder.net"&&(f="https://test3-data.educoder.net"),o==="test4.educoder.net"&&(f="https://test4-data.educoder.net"),f})(),OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",REPORT_SERVER:"http://192.168.1.57:3001",FORGE:"https://test-oldweb.educoder.net/",QQLoginCB:encodeURIComponent("https://test-data.educoder.net"),TERMINAL_URL:"testsvc1.vnc.educoder.net"},preNewBuild:{API_SERVER:(()=>{let f="https://pre-data.educoder.net";return location.host==="pre2.educoder.net"&&(f="https://pre-data2.educoder.net"),f})(),IMG_SERVER:"https://preali-cdn.educoder.net",SSH_SERVER:"wss://pre-webssh.educoder.net",SSH_Slice:"https://testfu.educoder.net",REPORT_SERVER:"http://192.168.1.57:3001",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",FORGE:"https://forge.educoder.net/",QQLoginCB:encodeURIComponent("https://pre.educoder.net")},newBuild:{API_SERVER:(()=>{let f="https://data.educoder.net";return document.domain==="kepukehuan.educoder.net"?f="https://kepukehuan-data.educoder.net":(document.domain==="www.tokcoder.com"||document.domain==="tokcoder.com")&&(f="https://data.tokcoder.com"),f})(),SSH_SERVER:"wss://webssh.educoder.net",REPORT_SERVER:"http://192.168.1.57:3001",SSH_Slice:"https://fu.educoder.net",IMG_SERVER:"https://ali-cdn.educoder.net",OFFICE_SERVER:"https://officeserver.educoder.net",ONLYOFFICE:"https://office.educoder.net",OFFICE_IP:"https://officedata.educoder.net",FORGE:"https://code.educoder.net/",QQLoginCB:encodeURIComponent("https://www.educoder.net"),TERMINAL_URL:".jupyter.educoder.net"},newTest:{API_SERVER:"https://test-data.educoder.net",IMG_SERVER:"https://test-data.educoder.net",REPORT_SERVER:"http://192.168.1.57:3001",SSH_SERVER:"wss://pre-webssh.educoder.net",SSH_Slice:"https://testfu.educoder.net",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",FORGE:"http://test-oldweb.educoder.net/",QQLoginCB:encodeURIComponent("https://test-data.educoder.net")},test:{API_SERVER:"",IMG_SERVER:"",REPORT_SERVER:"http://192.168.1.57:3001",FORGE:"http://test-oldweb.educoder.net/",SSH_Slice:"https://testfu.educoder.net",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",SSH_SERVER:"wss://pre-webssh.educoder.net",QQLoginCB:encodeURIComponent("https://test-newweb.educoder.net")},preBuild:{API_SERVER:"",IMG_SERVER:"https://preali-cdn.educoder.net",REPORT_SERVER:"http://192.168.1.57:3001",FORGE:"https://forge.educoder.net/",SSH_Slice:"https://testfu.educoder.net",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",SSH_SERVER:"wss://pre-webssh.educoder.net",QQLoginCB:encodeURIComponent("https://test-newweb.educoder.net")},newWeb:{API_SERVER:"https://test-newweb.educoder.net",IMG_SERVER:"https://test-newweb.educoder.net/",REPORT_SERVER:"http://192.168.1.57:3001",FORGE:"http://test-oldweb.educoder.net/",SSH_Slice:"https://testfu.educoder.net",OFFICE_SERVER:"https://testoffice.educoder.net",ONLYOFFICE:"https://testoffice.educoder.net",OFFICE_IP:"http://113.246.243.98:9569",SSH_SERVER:"wss://pre-webssh.educoder.net",QQLoginCB:encodeURIComponent("https://test-newweb.educoder.net")},build:{API_SERVER:"",IMG_SERVER:"",REPORT_SERVER:"http://192.168.1.57:3001",FORGE:"https://forge.educoder.net/",SSH_SERVER:"wss://webssh.educoder.net",SSH_Slice:"https://fu.educoder.net",OFFICE_SERVER:"https://officeserver.educoder.net",ONLYOFFICE:"",OFFICE_IP:"https://officedata.educoder.net",QQLoginCB:encodeURIComponent("https://www.educoder.net"),TERMINAL_URL:".jupyter.educoder.net"}}[window.ENV||"dev"]},38147:function(d,v,e){"use strict";e.d(v,{IV:function(){return z},U2:function(){return se},ZP:function(){return oe},d4:function(){return ee},gz:function(){return le},rz:function(){return ne},v_:function(){return J}});var r=e(74128),i=e(28909),l=e(43418),c=e(8591),f=e(85582),o=e.n(f),h=e(59301),u=e(65582),a=e(65862),x=e(89392),p=e.n(x),y=Object.defineProperty,m=Object.defineProperties,b=Object.getOwnPropertyDescriptors,S=Object.getOwnPropertySymbols,k=Object.prototype.hasOwnProperty,R=Object.prototype.propertyIsEnumerable,A=(j,ie,me)=>ie in j?y(j,ie,{enumerable:!0,configurable:!0,writable:!0,value:me}):j[ie]=me,P=(j,ie)=>{for(var me in ie||(ie={}))k.call(ie,me)&&A(j,me,ie[me]);if(S)for(var me of S(ie))R.call(ie,me)&&A(j,me,ie[me]);return j},M=(j,ie)=>m(j,b(ie)),B=(j,ie,me)=>new Promise((Se,Ie)=>{var He=ht=>{try{Dt(me.next(ht))}catch(It){Ie(It)}},je=ht=>{try{Dt(me.throw(ht))}catch(It){Ie(It)}},Dt=ht=>ht.done?Se(ht.value):Promise.resolve(ht.value).then(He,je);Dt((me=me.apply(j,ie)).next())});let N;const K={200:"\u670D\u52A1\u5668\u6210\u529F\u8FD4\u56DE\u8BF7\u6C42\u7684\u6570\u636E\u3002",201:"\u65B0\u5EFA\u6216\u4FEE\u6539\u6570\u636E\u6210\u529F\u3002",202:"\u4E00\u4E2A\u8BF7\u6C42\u5DF2\u7ECF\u8FDB\u5165\u540E\u53F0\u6392\u961F\uFF08\u5F02\u6B65\u4EFB\u52A1\uFF09\u3002",204:"\u5220\u9664\u6570\u636E\u6210\u529F\u3002",400:"\u53D1\u51FA\u7684\u8BF7\u6C42\u6709\u9519\u8BEF\uFF0C\u670D\u52A1\u5668\u6CA1\u6709\u8FDB\u884C\u65B0\u5EFA\u6216\u4FEE\u6539\u6570\u636E\u7684\u64CD\u4F5C\u3002",401:"\u7528\u6237\u6CA1\u6709\u6743\u9650\uFF08\u4EE4\u724C\u3001\u7528\u6237\u540D\u3001\u5BC6\u7801\u9519\u8BEF\uFF09\u3002",403:"\u7528\u6237\u5F97\u5230\u6388\u6743\uFF0C\u4F46\u662F\u8BBF\u95EE\u662F\u88AB\u7981\u6B62\u7684\u3002",404:"\u53D1\u51FA\u7684\u8BF7\u6C42\u9488\u5BF9\u7684\u662F\u4E0D\u5B58\u5728\u7684\u8BB0\u5F55\uFF0C\u670D\u52A1\u5668\u6CA1\u6709\u8FDB\u884C\u64CD\u4F5C\u3002",406:"\u8BF7\u6C42\u7684\u683C\u5F0F\u4E0D\u53EF\u5F97\u3002",410:"\u8BF7\u6C42\u7684\u8D44\u6E90\u88AB\u6C38\u4E45\u5220\u9664\uFF0C\u4E14\u4E0D\u4F1A\u518D\u5F97\u5230\u7684\u3002",422:"\u5F53\u521B\u5EFA\u4E00\u4E2A\u5BF9\u8C61\u65F6\uFF0C\u53D1\u751F\u4E00\u4E2A\u9A8C\u8BC1\u9519\u8BEF\u3002",500:"\u670D\u52A1\u5668\u53D1\u751F\u9519\u8BEF\uFF0C\u8BF7\u68C0\u67E5\u670D\u52A1\u5668\u3002",502:"\u7F51\u5173\u9519\u8BEF\u3002",503:"\u670D\u52A1\u4E0D\u53EF\u7528\uFF0C\u670D\u52A1\u5668\u6682\u65F6\u8FC7\u8F7D\u6216\u7EF4\u62A4\u3002",504:"\u7F51\u5173\u8D85\u65F6\u3002"},H=(j,ie)=>B(void 0,null,function*(){if(j.status>=200&&j.status<300)return j;const me=K[j.status]||j.statusText;let Se;var Ie=j.json();yield Ie.then((je,Dt)=>{setTimeout(()=>{let ht=(0,u.getDvaApp)()},400),Se=je.message,window.showNetworkErrorTip(je.message||`\u8BF7\u6C42\u9519\u8BEF ${j.status}: ${j.message}`),i.Z.error({style:{wordBreak:"break-all"},message:je.message||`\u8BF7\u6C42\u9519\u8BEF ${j.status}: ${j.message}`,description:je.message?"":me})});const He=new Error(me);throw He.name=j.status,He.response=j,{data:j,code:j.status,message:Se||me}}),W=(j,ie)=>{const me=j.headers.get("Content-Type");return me&&me.match(/application\/json/i)&&j.clone().text().then(()=>{}),j};function ae(j){try{return decodeURIComponent(j),decodeURIComponent(encodeURIComponent(j))===j}catch(ie){return!1}}const ne=j=>{j=j||{};let ie="";for(let me in j)typeof j[me]=="object"?Array.isArray(j[me])&&j[me].forEach((Se,Ie)=>{ie+="&"+me+"[]="+Se}):j[me]!==void 0&&(ie+="&"+me+"="+(ae(j[me])?j[me]:encodeURIComponent(j[me])));return ie.substr(1)};function oe(j,ie,me,Se){ie.method||(ie.method="get"),ie.method=ie.method.toUpperCase(),ie.mode="cors";const Ie=P({},ie),{user:He}=(0,u.getDvaApp)()._store.getState(),{userInfo:je}=He,Dt=j+(Ie.body?JSON.stringify(Ie.body):""),ht=o().sha256().update(Dt).digest("hex"),It={credentials:"include",withCredentials:!0},Zt={};je!=null&&je.login&&(Zt.zzud=je==null?void 0:je.login,je!=null&&je.school_id&&(Zt.zzsud=je==null?void 0:je.school_id),Ie.params=P(P({},Ie.params||{}),Zt));let Rt=P(P({},It),(0,x.cloneDeep)(Ie));(Rt.method==="POST"||Rt.method==="PUT"||Rt.method==="PATCH"||Rt.method==="DELETE")&&(me?(Rt.headers=M(P({_method:ie.method.toUpperCase()},Rt.headers),{"Pc-Authorization":(0,a.ej)("_educoder_session"),"X-Original-Protocol":location.protocol,"X-Original-Host":location.host}),Rt.body=Ie.body):(Rt.headers=P({Accept:"application/json",_method:ie.method.toUpperCase(),"Content-Type":"application/json; charset=utf-8","Pc-Authorization":(0,a.ej)("_educoder_session"),"X-Original-Protocol":location.protocol,"X-Original-Host":location.host},Rt.headers),Rt.body=JSON.stringify(Ie.body))),Rt.method=="GET"?(Rt.headers=M(P({Accept:"application/json","Content-Type":"application/json; charset=utf-8",_method:ie.method.toUpperCase()},Rt.headers),{"Pc-Authorization":(0,a.ej)("_educoder_session"),"X-Original-Protocol":location.protocol,"X-Original-Host":location.host}),Ie.params&&ne(Ie.params)&&(j+="?"+ne(Ie.params))):Zt.zzud&&(j+="?"+ne(P({},Zt)));const ar=Ie.expirys&&60;let $e;(ft=>{ft.json="application/json;charset=UTF-8",ft.form="application/x-www-form-urlencoded; charset=UTF-8"})($e||($e={}));let gt;(ft=>{ft.get="GET",ft.post="POST"})(gt||(gt={}));const Mt=ft=>B(this,null,function*(){const ot=yield ft.arrayBuffer();let Je;const Ne=new Blob([ot]);try{Je=ft.headers.get("Content-Disposition").split(";")[1].replace("filename=","").replace(/[\s+,\',\",\,\,\“,\”,\<,\>,\《,\》]/g,"")}catch(We){Je="userfiles.zip"}const ye=document.createElement("a"),ke=window.URL.createObjectURL(Ne),Ge=Je;return ye.href=ke,ye.download=Ge,ye.click(),window.URL.revokeObjectURL(ke),ot});let et=r.Z.API_SERVER;return(window.ENV==="dev"||j.startsWith("http"))&&(et=""),Rt.method=="GET"&&Rt.params&&Object.keys(Rt.params).map(ft=>{if(Rt.params[ft]&&!Array.isArray(Rt.params[ft]))try{Rt.params[ft]=encodeURIComponent(decodeURIComponent(Rt.params[ft]))}catch(ot){Rt.params[ft]=encodeURIComponent(Rt.params[ft])}}),(0,a.Ec)(Rt,j),Se&&(et=""),Rt.headers._method=Rt.method,Rt.headers["X-HTTP-Method-Override"]=Rt.method,Rt.method!=="GET"&&(Rt.method="POST"),fetch(et+j,Rt).then(ft=>H(ft,P({url:r.Z.API_SERVER+j},Rt))).then(ft=>W(ft,ht)).then(ft=>B(this,null,function*(){var ot,Je,Ne,ye;try{const Ge=ft.headers.get("cs");Ge&&(0,a.d8)("_educoder_session",Ge,1)}catch(Ge){}if(ft.status===204)return ft.text();let ke;if(ft.headers.get("content-type").indexOf("application/json")>-1){ke=yield ft.json();try{const Ge=/\(\s+\/api\/attachments\/(\d+)|\(\/api\/attachments\/(\d+)\//g,We=/\"\/api\/attachments\/(\d+)\//g,Xe=/\(\s+\/files\/uploads\/(\d+)|\"\/files\/uploads\/(\d+)\//g,ut=/\/api\/attachments\/(\d+)/g,pt=/\/attachments\/download\/(\d+)/g;let or=JSON.stringify(ke).replace(ut,(tr,Me,tt,Yt)=>{const Ot=Me||tt||Yt;return"/api/attachments/"+(0,a.Jn)(Ot)}).replace(pt,(tr,Me,tt)=>{const Yt=Me||tt;return"/attachments/download/"+(0,a.Jn)(Yt)}).replace(Ge,(tr,Me,tt,Yt)=>{const Ot=Me||tt||Yt;return"(/api/attachments/"+(0,a.Jn)(Ot)}).replace(We,(tr,Me,tt)=>{const Yt=Me||tt;return'"/api/attachments/'+(0,a.Jn)(Yt)}).replace(Xe,(tr,Me,tt)=>{const Yt=Me||tt;return"(/files/uploads/"+(0,a.Jn)(Yt)}).replace(/\r\n/g,`
`);ke=JSON.parse(or)}catch(Ge){}}else Rt.headers["Content-Type"]==="application/xml"?ke=yield ft.text():(ot=Ie.body)!=null&&ot.autoDownload||(Je=Ie.params)!=null&&Je.autoDownload?ke=yield Mt(ft):ke=yield ft.arrayBuffer();try{ke.status===401&&(!((Ne=Rt.params)!=null&&Ne.hidePopLogin)||!((ye=Rt.body)!=null&&ye.hidePopLogin))&&(0,u.getDvaApp)()._store.dispatch({type:"user/showPopLogin",payload:{showPopLogin:!0,showClosable:!0}}),ke.status===402&&(localStorage.getItem("addinfo")==="2"?(0,u.getDvaApp)()._store.dispatch({type:"shixunHomeworks/setActionTabs",payload:{key:"\u586B\u5145\u4FE1\u606F\u5F39\u7A97"}}):(N=N||l.default.confirm({visible:!1,okText:"\u786E\u5B9A",cancelText:"\u53D6\u6D88"}),N.update({centered:!0,visible:!0,title:"\u63D0\u793A",content:"\u60A8\u9700\u8981\u53BB\u5B8C\u5584\u60A8\u7684\u4E2A\u4EBA\u8D44\u6599\uFF0C\u624D\u80FD\u4F7F\u7528\u6B64\u529F\u80FD",okText:"\u7ACB\u5373\u5B8C\u5584",cancelText:"\u7A0D\u540E\u5B8C\u5584",onOk:()=>{u.history.push("/account/profile/edit")}})))}catch(Ge){console.log("fetcherr",Ge)}return V(ke,j),ke})).catch(ft=>{try{const ot=ft.code;if(ft instanceof TypeError&&window.showNetworkErrorTip(`${j}<span class="ml10">${ft.message}</span>`),ot){if(ot===401){(0,u.getDvaApp)()._store.dispatch({type:"user/showPopLogin",payload:{showPopLogin:!0,showClosable:!0}});return}V(ft,j)}else j.includes("/file/filePatchMerge")?(0,u.getDvaApp)()._store.dispatch({type:"shixunHomeworks/setActionTabs",payload:{key:"\u5206\u7247\u4E13\u7528504",params:Rt.body}}):ft.message!=="403"&&window.showNetworkErrorTip(`${j}<span class="ml10">${ft.message}</span>`);return ft}catch(ot){}})}let q=!1,X=!1;const V=(j,ie)=>{var me,Se,Ie;if(j.status==-6&&!X){X=!0,(0,a.d8)("_educoder_session","logout",1),(0,a.m5)(),setTimeout(()=>X=!1,500),l.default.info({title:"\u7CFB\u7EDF\u901A\u77E5",content:j.message,okText:"\u77E5\u9053\u4E86",maskStyle:{background:"#000"},onOk:()=>{window.location.reload()}});return}if(j.status==-7){X=!0,setTimeout(()=>X=!1,500);let je="";(me=j==null?void 0:j.data)!=null&&me.exercise_list&&((Ie=(Se=j==null?void 0:j.data)==null?void 0:Se.exercise_list)==null||Ie.map(Dt=>{je+=`<a target="_blank" href="/classrooms/${Dt.identifier}/exercise">\u300A${Dt.exercise_name}\u300B</a>`})),l.default.info({title:"\u63D0\u793A",content:h.createElement("div",{id:"fetchStatus7",className:"fetchStatus7"},""),maskClosable:!1,closeIcon:!1,width:550,maskStyle:{background:"#000"},okText:"\u8FD4\u56DE\u9996\u9875",onOk:()=>{window.location.href="/"}}),setTimeout(()=>{document.getElementById("fetchStatus7").innerHTML=`<div>\u60A8\u5F53\u524D\u6709\u6B63\u5728\u8FDB\u884C\u7684\u8003\u8BD5 ${je} \uFF0C\u8BF7\u5728\u8003\u8BD5\u7ED3\u675F\u540E\u8BBF\u95EE\u8BE5\u9875\u9762</div>`},500);return}if((j.status==-1||j.status==-2||j.status==-102||j.status>400)&&j.status!=403&&!X){X=!0,setTimeout(()=>X=!1,500),c.ZP.warning({content:j.message,key:"message-key"});return}const He={403:"/403",404:"/404",500:"/500"};if(He[j.status]&&!q){const{user:je}=(0,u.getDvaApp)()._store.getState(),{userInfo:Dt}=je;throw window.location.pathname.indexOf("/users")>-1&&document.domain==="kepukehuan.educoder.net"&&(q=!0),setTimeout(()=>q=!1,500),sessionStorage.setItem("errorStatus",JSON.stringify(j)),Object.values(He).includes(window.location.pathname)?console.log("\u5F53\u524D\u8DEF\u5F84\u5B58\u5728\u4E8E mapping \u4E2D, \u4E0D\u518D\u6267\u884C\u8DF3\u8F6C"):location.replace(He[j.status]),new Error("403")}};function se(j,ie){return oe(`/api/${j}`,{method:"Get",params:ie||{}})}function ee(j,ie){return oe(`/${j}`,{method:"Get",params:ie})}function J(j,ie){return oe(`/api/${j}`,{method:"Post",body:P({},ie)})}function le(j,ie){return oe(`/api/${j}`,{method:"Put",body:P({},ie)})}function z(j,ie){return oe(`/api/${j}`,{method:"delete",body:P({},ie||{})})}},73637:function(d,v,e){"use strict";e.d(v,{Bn:function(){return l},hw:function(){return i},mi:function(){return r}});const r="WTJJelpXRXdaakk0Tm1SbE56UTFPRFl5TXpnNVltWmtZVE0zTVdSalltST0=",i="WVdaak1UVmhOVEF3TkRRd05qZGlZemRsTVdZeFptSTROek5rT0daak1UYz0=",l="T1RkaE1XWTRaalJoTUdaaE9HUmxaR016T0RGa05XTTNPRFkwTkdJeVpUQT0="},49142:function(d,v,e){"use strict";e.d(v,{AL:function(){return B},Iy:function(){return p},Qv:function(){return b},ez:function(){return M},jb:function(){return y}});var r=e(32834),i=e.n(r),l=e(11690),c=e.n(l);let f=1;function o(ae,ne){const oe=ae.match(/^(\s+)(?:```)/);if(oe===null)return ne;const q=oe[1];return ne.split(`
`).map(X=>{const V=X.match(/^\s+/);if(V===null)return X;const[se]=V;return se.length>=q.length?X.slice(q.length):X}).join(`
`)}let h=[],u=["<ul>"];const a=new(i()).Renderer,x=/^ *(#{1,6}) *([^\n]+?) *(?:#+ *)?(?:\n+|$)/;function p(){h.length=0,u=["<ul>"]}const y={overflow:"hidden",WebkitBoxOrient:"vertical",display:"-webkit-box",WebkitLineClamp:2};function m(ae,ne,oe,q){if(ne>=ae.length||ae[ne].level<=oe)return ne;var X=ae[ne];q.push("<li><a href='#"+f+X.anchor+"'>"+X.text+"</a>"),ne++;var V=[];return ne=m(ae,ne,X.level,V),V.length>0&&(q.push("<ul>"),V.forEach(function(se){q.push(se)}),q.push("</ul>")),q.push("</li>"),ne=m(ae,ne,oe,q),ne}function b(){return m(h,0,0,u),u.push("</ul>"),u.join("")}const S={heading(ae){const ne=x.exec(ae);if(f+=1,ne)return{type:"heading",raw:ne[0],depth:ne[1].length,text:ne[2]}},fences(ae){const ne=this.rules.block.fences.exec(ae);if(ne){const oe=ne[0];let q=o(oe,ne[3]||"");const X=ne[2]?ne[2].trim():ne[2];if(["latex","katex","math"].indexOf(X)>=0){const V=A(),se=q;q=V,P[V]={type:"block",expression:se}}return{type:"code",raw:oe,lang:X,text:q}}}},k=/(?:\${2})([^\n`]+?)(?:\${2})/gi;let R=0;const A=()=>`__special_katext_id_${R++}__`;let P={};function M(){return P}function B(){R=0,P={}}function N(ae){return ae=ae.replace(k,(ne,oe)=>{const q=A();return P[q]={type:"inline",expression:oe},q}),ae}const K=a.listitem;a.listitem=function(ae){return K(N(ae))};const H=a.paragraph;a.paragraph=function(ae){return H(N(ae))};const W=a.tablecell;a.tablecell=function(ae,ne){return W(N(ae),ne)},a.code=function(ae,ne,oe){const q=(ne||"").match(/\S*/)[0];return q?["latex","katex","math"].indexOf(q)>=0?`<p class='editormd-tex'>${ae}</p>`:`<pre class="prettyprint linenums"><code class="language-${ne}">${oe?ae:(0,l.escape)(ae,!0)}</code></pre>
`:'<pre class="prettyprint linenums"><code>'+(oe?ae:(0,l.escape)(ae,!0))+"</code></pre>"},a.heading=function(ae,ne,oe){let q=this.options.headerPrefix+oe.toLowerCase().replace(/[^\w\\u4e00-\\u9fa5]]+/g,"-");return h.push({anchor:q,level:ne,text:ae}),"<h"+ne+' id="'+f+q+'">'+ae+"</h"+ne+">"},i().setOptions({silent:!0,gfm:!0,pedantic:!1}),i().use({tokenizer:S,renderer:a}),v.ZP=i()},65862:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{AS:function(){return vtrsKey},BO:function(){return NewAntdDisabledDate},BR:function(){return aiReviewConfigformatChecks},Br:function(){return getBlob},DH:function(){return timego},Dk:function(){return setDocumentTitle},Dw:function(){return onPreviewImage},EJ:function(){return HighLightedContent},EM:function(){return toChineseNumber},EN:function(){return preciseCalculation},Ec:function(){return setHeader},FH:function(){return downLoadFile},G5:function(){return sendAppStatus},G7:function(){return handleValidatorNickName},HJ:function(){return handleValidatorName},I9:function(){return RomanNumber},IS:function(){return isWechatBrowser},Il:function(){return setThreeComponent},JL:function(){return formatHomeWorkStatusToName},Jn:function(){return getImageUrl},L4:function(){return PollsStatus},L9:function(){return trackEvent},LR:function(){return download},Ll:function(){return checkIsClientExam},M:function(){return setmiyah},M2:function(){return randomArray},NY:function(){return setUrlQuery},Nd:function(){return downLoadLink},Oo:function(){return getCategoryName},Or:function(){return toWechatLogin},PF:function(){return formatRandomPaperDatas},Pq:function(){return cutName},Q8:function(){return disabledDate},QB:function(){return timeContrast},QE:function(){return releaseRuleDataAdjust},QH:function(){return downLoadFileIframe},Qq:function(){return JudgeSort},RD:function(){return bytesToSize},RG:function(){return copyTextFuc},Sp:function(){return rangeNumber},Tv:function(){return ImgSrcConvert},U6:function(){return HalfPastOne},UQ:function(){return HomeWorkDetailStatus},Uw:function(){return CommonWorkStatus},VV:function(){return StatusClassroomsTags},Vf:function(){return domScrollToTop},W:function(){return isUnOrNull},WX:function(){return isLocalApp},Y:function(){return HomeWorkCommonDetailStatus},YA:function(){return getHiddenName},ZI:function(){return numFormat},ZJ:function(){return toDataUrl},_g:function(){return getMessagesUrl},_m:function(){return isKepuKehuan},ad:function(){return formatRandomPaperData},b9:function(){return isPc},cX:function(){return localSort},d0:function(){return disabledTime},d8:function(){return setCookie},db:function(){return getFileContentAndUrl},eF:function(){return bindPhone},eR:function(){return validateLength},ej:function(){return getCookie},en:function(){return parseUrl},fX:function(){return buildTree},hE:function(){return isInsecureOrLocalhost},hi:function(){return getExamRestrictionInfo},hv:function(){return NewAntdDisabledTime},i7:function(){return isChrome},j1:function(){return StatusGraduationProjectTags},jh:function(){return educationList},jt:function(){return showInstallWebRtcDoc},ju:function(){return ExerciseStatus},jz:function(){return replaceParamVal},k3:function(){return scrollToTop},kk:function(){return pointerEvents},lC:function(){return HomeWorkListStatus},lF:function(){return toWNumber},li:function(){return toTimeFormat},m5:function(){return clearAllCookies},nr:function(){return startExercise},oP:function(){return getJsonFromUrl},oV:function(){return ZimuSort},og:function(){return formatRate},oi:function(){return checkLocalOrPublicIp},pE:function(){return addJumping},pp:function(){return findEndWhitespace},qZ:function(){return arrTrans},qd:function(){return DayHalfPastOne},rK:function(){return HomeWorkShixunListStatus},rU:function(){return showTotal},rz:function(){return moveArray},s2:function(){return isMobileDevice},tP:function(){return cutFileName},tw:function(){return getTwoDecimalPlaces},uD:function(){return dealUploadChange},vA:function(){return HomeWorkShixunDetailStatus},vB:function(){return exerciseTips},vQ:function(){return copyToClipboard},xg:function(){return openNewWindow},y3:function(){return getBase64},yC:function(){return compareVersion}});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(59301),_utils_authority__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(41867),antd__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(8591),antd__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(43418),antd__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(95237),antd__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(43604),_components_Exercise_ip__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(27158),_service_exercise__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(87513),_contentType__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(37142),umi__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(65582),md5__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(93735),md5__WEBPACK_IMPORTED_MODULE_6___default=__webpack_require__.n(md5__WEBPACK_IMPORTED_MODULE_6__),_env__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(74128),_components_mediator__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(77254),_components_RenderHtml__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(6339),_utils_fetch__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(38147),crypto_js__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(28209),crypto_js__WEBPACK_IMPORTED_MODULE_11___default=__webpack_require__.n(crypto_js__WEBPACK_IMPORTED_MODULE_11__),_key__WEBPACK_IMPORTED_MODULE_19__=__webpack_require__(73637),moment__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(56656),moment__WEBPACK_IMPORTED_MODULE_12___default=__webpack_require__.n(moment__WEBPACK_IMPORTED_MODULE_12__),dayjs_plugin_customParseFormat__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(48228),dayjs_plugin_customParseFormat__WEBPACK_IMPORTED_MODULE_13___default=__webpack_require__.n(dayjs_plugin_customParseFormat__WEBPACK_IMPORTED_MODULE_13__),uuid__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(1012),__defProp=Object.defineProperty,__defProps=Object.defineProperties,__getOwnPropDescs=Object.getOwnPropertyDescriptors,__getOwnPropSymbols=Object.getOwnPropertySymbols,__hasOwnProp=Object.prototype.hasOwnProperty,__propIsEnum=Object.prototype.propertyIsEnumerable,__defNormalProp=(d,v,e)=>v in d?__defProp(d,v,{enumerable:!0,configurable:!0,writable:!0,value:e}):d[v]=e,__spreadValues=(d,v)=>{for(var e in v||(v={}))__hasOwnProp.call(v,e)&&__defNormalProp(d,e,v[e]);if(__getOwnPropSymbols)for(var e of __getOwnPropSymbols(v))__propIsEnum.call(v,e)&&__defNormalProp(d,e,v[e]);return d},__spreadProps=(d,v)=>__defProps(d,__getOwnPropDescs(v)),__async=(d,v,e)=>new Promise((r,i)=>{var l=o=>{try{f(e.next(o))}catch(h){i(h)}},c=o=>{try{f(e.throw(o))}catch(h){i(h)}},f=o=>o.done?r(o.value):Promise.resolve(o.value).then(l,c);f((e=e.apply(d,v)).next())}),_a,_b;moment__WEBPACK_IMPORTED_MODULE_12___default().extend(dayjs_plugin_customParseFormat__WEBPACK_IMPORTED_MODULE_13___default());const HighLightedContent=(d,v=[],e="#2EC25B")=>(typeof v=="string"&&(v=[v]),d.replace(new RegExp(`(${v.join("|")})`,"gi"),`<span style="color:${e}">$1</span>`)),parseParams=d=>{d=d||{};let v="";for(let e in d)typeof d[e]=="object"?Array.isArray(d[e])&&d[e].forEach((r,i)=>{v+="&"+e+"[]="+r}):d[e]!==void 0&&(v+="&"+e+"="+d[e]);return v.substr(1)},getKey=d=>window.atob(window.atob(d));function bytesToSize(d){var v=["Bytes","KB","MB","GB","TB"];if(d==0)return"0 Byte";var e=parseInt(""+Math.floor(Math.log(d)/Math.log(1024)),10);return(d/Math.pow(1024,e)).toFixed(1)+" "+v[e]}const getTwoDecimalPlaces=d=>Math.round(Math.round(d*1e5)/1e3*100)/100,NewAntdDisabledDate=(d,v=null)=>{const e=d<moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.startTime).startOf("day"),r=d>moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.endTime).endOf("day"),i=d<moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared).startOf("day");return v!=null&&v.endTime?v!=null&&v.compared?moment__WEBPACK_IMPORTED_MODULE_12___default()()<=moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared)?i||r:e||r:d&&e||r:v!=null&&v.compared&&moment__WEBPACK_IMPORTED_MODULE_12___default()()<=moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared)?i:e},NewAntdDisabledTime=(d,v=null)=>{const e=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(d).format("HH")),r=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(d).format("mm")),i=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()().format("HH")),l=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()().format("mm")),c=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()().format("ss"));function f(o,h){const u=[];for(let a=o;a<h;a++)u.push(a);return u}if(!d)return{disabledHours:()=>f(0,i),disabledMinutes:()=>f(0,l)};if(v!=null&&v.compared){const o=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared).format("HH")),h=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared).format("mm")),u=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared).format("ss"));return moment__WEBPACK_IMPORTED_MODULE_12___default()(d).isSame(moment__WEBPACK_IMPORTED_MODULE_12___default()(v==null?void 0:v.compared),"day")?{disabledHours:()=>f(0,o),disabledMinutes:()=>e<=o?f(0,h):[]}:void 0}if(moment__WEBPACK_IMPORTED_MODULE_12___default()(d).isSame(moment__WEBPACK_IMPORTED_MODULE_12___default()(),"day"))return{disabledHours:()=>f(0,i),disabledMinutes:()=>moment__WEBPACK_IMPORTED_MODULE_12___default()(d).isSame(moment__WEBPACK_IMPORTED_MODULE_12___default()(),"hour")&&e<=i?f(0,l):[]}},disabledDate=(d,v,e,r)=>{r=typeof r=="string"?moment__WEBPACK_IMPORTED_MODULE_12___default()(r):r;const i=r?d<(r==null?void 0:r.startOf("day")):d<moment__WEBPACK_IMPORTED_MODULE_12___default()().startOf("day"),l=d>moment__WEBPACK_IMPORTED_MODULE_12___default()(v).endOf("day"),c=d<moment__WEBPACK_IMPORTED_MODULE_12___default()(e).startOf("day");return v?e?moment__WEBPACK_IMPORTED_MODULE_12___default()()<=moment__WEBPACK_IMPORTED_MODULE_12___default()(e)?c||l:i||l:d&&i||l:e&&moment__WEBPACK_IMPORTED_MODULE_12___default()()<=moment__WEBPACK_IMPORTED_MODULE_12___default()(e)?c:i},disabledTime=(d,v)=>{const e=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(d).format("HH")),r=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()().format("HH")),i=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()().format("mm"));function l(c,f){const o=[];for(let h=c;h<f;h++)o.push(h);return o}if(!d)return{disabledHours:()=>l(0,r),disabledMinutes:()=>l(0,i)};if(v){const c=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(v).format("HH")),f=parseInt(moment__WEBPACK_IMPORTED_MODULE_12___default()(v).format("mm"));return moment__WEBPACK_IMPORTED_MODULE_12___default()(d).isSame(moment__WEBPACK_IMPORTED_MODULE_12___default()(v),"day")?{disabledHours:()=>l(0,c),disabledMinutes:()=>e<=c?l(0,f):[]}:void 0}if(moment__WEBPACK_IMPORTED_MODULE_12___default()(d).isSame(moment__WEBPACK_IMPORTED_MODULE_12___default()(),"day"))return{disabledHours:()=>l(0,r),disabledMinutes:()=>moment__WEBPACK_IMPORTED_MODULE_12___default()(d).isSame(moment__WEBPACK_IMPORTED_MODULE_12___default()(),"hour")&&e<=r?l(0,i):[]}},preciseCalculation=(d,v,e)=>{typeof d=="string"&&(d=Number(d)),typeof v=="string"&&(v=Number(v));const r=(d.toString().split(".")[1]||"").length,i=(v.toString().split(".")[1]||"").length,l=Math.max(r,i),c=Math.pow(10,l);return(()=>{switch(e){case"+":return(Math.round(d*c)+Math.round(v*c))/c;case"-":return(Math.round(d*c)-Math.round(v*c))/c;case"*":return Math.round(d*c)*Math.round(v*c)/(c*c);case"/":return Math.round(d*c)/Math.round(v*c);default:throw new Error("\u4E0D\u652F\u6301\u7684\u8FD0\u7B97\u7B26\u53F7")}})()},toWNumber=d=>d/1e4>1?react__WEBPACK_IMPORTED_MODULE_0__.createElement(react__WEBPACK_IMPORTED_MODULE_0__.Fragment,null,Math.round(d/1e4*100)/100,react__WEBPACK_IMPORTED_MODULE_0__.createElement("i",{className:"font12"},"w")):d,toChineseNumber=d=>{const v=d.toString().replace(/(?=(\d{4})+$)/g,",").split(",").filter(Boolean),e=["\u96F6","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D","\u4E03","\u516B","\u4E5D"],r=["","\u5341","\u767E","\u5343"],i=["","\u4E07","\u4EBF"],l=f=>{let o="";for(let h=0;h<f.length;h++){const u=+f[h],a=e[u],x=r[f.length-1-h];u===0?o[o.length-1]!==e[0]&&(o+=a):o+=a+x}return o[o.length-1]===e[0]&&(o=o.slice(0,-1)),o};let c="";for(let f=0;f<v.length;f++){const o=v[f],h=l(o),u=h?i[v.length-1-f]:"";c+=h+u}return c=c.replace(/^一十$/,"\u5341"),c=c.replace(/^一(?=十[一二三四五六七八九])/,""),c},moveArray=(d,v,e)=>{const r=d.splice(v,1)[0];return d.splice(e,0,r),d},ZimuSort=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],JudgeSort=["\u6B63\u786E","\u9519\u8BEF"],RomanNumber=["I","II","III","IV","V","VI","VII","VIII","IX","X","XI","XII","XIII","XIV","XV","XVI","XVII","XVIII","XIX","XX"],findEndWhitespace=d=>{if(!d)return"";const v=d.replace(/(?:\r\n|\n)/g,`\x1B[41m\x1B[37m\u21B5\x1B[0m\r
`).replace(/ +$/g,"\x1B[41m \x1B[0m");return console.debug("str:",v,JSON.stringify(d)),v},StatusTags=d=>{const v={\u5DF2\u622A\u6B62:{class:"tag-style bg-pink ml10"},\u63D0\u4EA4\u4E2D:{class:"tag-style bg-blue ml10"},\u8FDB\u884C\u4E2D:{class:"tag-style bg-blue ml10"},\u672A\u53D1\u5E03:{class:"tag-style bgB8B8B8 ml10"},\u8865\u4EA4\u4E2D:{class:"tag-style bg-blue ml10"},\u96C6\u4E2D\u9605\u5377:{class:"tag-style bg-light-orangess ml10soft"}};return d.data&&d.data.map(function(e,r){return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{key:r,className:v[e]&&v[e].class},e)})},formatHomeWorkStatusToName=d=>({[-1]:"\u91CD\u505A\u4E2D",0:"\u672A\u5F00\u542F",1:"\u672A\u901A\u5173",2:"\u6309\u65F6\u901A\u5173"})[d]||"\u8FDF\u4EA4\u901A\u5173",HomeWorkListStatus=d=>{var v,e;const r={[-1]:{name:"\u91CD\u505A\u4E2D",class:"c-orange"},0:{name:"\u672A\u5F00\u542F",class:"c-black"},1:{name:"\u672A\u901A\u5173",class:"c-red"},2:{name:"\u6309\u65F6\u901A\u5173",class:"c-green"},3:{name:"\u8865\u4EA4\u901A\u5173",class:"c-orange"},4:{name:"\u622A\u6B62\u901A\u5173",class:"c-red"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:(v=r==null?void 0:r[d.status])==null?void 0:v.class},(e=r==null?void 0:r[d.status])==null?void 0:e.name)},HomeWorkShixunListStatus=d=>{var v,e;const r={[-1]:{name:"\u91CD\u505A\u4E2D",class:"c-orange"},0:{name:"\u672A\u5F00\u542F",class:"c-black"},1:{name:"\u672A\u901A\u5173",class:"c-red"},2:{name:"\u6309\u65F6\u901A\u5173",class:"c-green"},3:{name:"\u8865\u4EA4\u901A\u5173",class:"c-orange"},4:{name:"\u622A\u6B62\u540E\u901A\u5173",class:"c-red"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:(v=r==null?void 0:r[d.status])==null?void 0:v.class},(e=r==null?void 0:r[d.status])==null?void 0:e.name)},HomeWorkDetailStatus=d=>{var v,e;const r={[-1]:{name:"\u91CD\u505A\u4E2D",class:"c-orange",color:"#999999"},0:{name:"\u672A\u5F00\u542F",class:"c-black",color:"#999999"},1:{name:"\u672A\u901A\u5173",class:"c-red",color:"#d4443d"},2:{name:"\u6309\u65F6\u901A\u5173",class:"c-green",color:"#57be40"},3:{name:"\u8865\u4EA4\u901A\u5173",class:"c-orange",color:"#f09143"},4:{name:"\u622A\u6B62\u901A\u5173",class:"c-red",color:"#d4443d"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{marginLeft:"10px",color:"#fff",background:(v=r==null?void 0:r[d.status])==null?void 0:v.color,borderRadius:"20px",width:"65px",height:"18px",justifyContent:"center",display:"inline-flex",lineHeight:"18px"}},(e=r==null?void 0:r[d.status])==null?void 0:e.name)},HomeWorkShixunDetailStatus=d=>{var v,e;const r={[-1]:{name:"\u91CD\u505A\u4E2D",class:"c-orange",color:"#999999"},0:{name:"\u672A\u5F00\u542F",class:"c-black",color:"#999999"},1:{name:"\u672A\u901A\u5173",class:"c-red",color:"#d4443d"},2:{name:"\u6309\u65F6\u901A\u5173",class:"c-green",color:"#57be40"},3:{name:"\u8865\u4EA4\u901A\u5173",class:"c-orange",color:"#f09143"},4:{name:"\u622A\u6B62\u540E\u901A\u5173",class:"c-red",color:"#d4443d"},5:{name:"\u622A\u6B62\u540E\u8BC4\u6D4B",class:"c-red",color:"#d4443d"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{marginLeft:"10px",color:"#fff",background:(v=r==null?void 0:r[d.status])==null?void 0:v.color,borderRadius:"20px",padding:"0 8px",height:"18px",justifyContent:"center",display:"inline-flex",lineHeight:"18px"}},(e=r==null?void 0:r[d.status])==null?void 0:e.name)},HomeWorkCommonDetailStatus=d=>{var v,e;const r={[-1]:{name:"\u91CD\u505A\u4E2D",class:"c-black",color:"#999999"},0:{name:"\u672A\u63D0\u4EA4",class:"c-black",color:"#999999"},1:{name:"\u6309\u65F6\u63D0\u4EA4",class:"c-green",color:"#57be40"},2:{name:"\u5EF6\u65F6\u63D0\u4EA4",class:"c-red",color:"#d4443d"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{marginLeft:"10px",color:"#fff",background:(v=r==null?void 0:r[d.status])==null?void 0:v.color,borderRadius:"20px",padding:"0 8px",height:"18px",justifyContent:"center",display:"inline-flex",lineHeight:"18px"}},(e=r==null?void 0:r[d.status])==null?void 0:e.name)},StatusGraduationProjectTags=d=>{const{status:v}=d,e={0:{class:"tag-style bg-blue ml10",name:"\u5F85\u9009\u4E2D"},1:{class:"tag-style bg-blue ml10",name:"\u5F85\u786E\u8BA4"},2:{class:"tag-style bg-pink ml10",name:"\u5DF2\u786E\u8BA4"}};try{return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:e[v].class},e[v].name)}catch(r){console.log("utils.StatusGraduationProjectTags",d.status)}},ExerciseStatus={1:"\u672A\u53D1\u5E03",2:"\u8003\u8BD5\u4E2D",3:"\u5DF2\u622A\u6B62",4:"\u5DF2\u7ED3\u675F",5:"\u96C6\u4E2D\u9605\u5377",99:"\u6A21\u62DF\u8003\u8BD5\u4E2D"},PollsStatus={1:"\u672A\u53D1\u5E03",2:"\u63D0\u4EA4\u4E2D",3:"\u5DF2\u622A\u6B62",4:"\u5DF2\u7ED3\u675F",5:"\u672A\u5F00\u59CB"},StatusClassroomsTags=d=>{let v={\u6A21\u62DF\u8003\u8BD5\u4E2D:{class:"tag-style bg-light-pink ml10"},\u5DF2\u5F00\u542F\u9632\u4F5C\u5F0A:{class:"tag-style-fzb ml10 iconfont icon-fangzuobi"},\u516C\u5F00:{class:"tag-style bg-blue ml10"},\u5DF2\u5F00\u542F\u8865\u4EA4:{class:"tag-style bg-green ml10soft"},\u672A\u5F00\u542F\u8865\u4EA4:{class:"tag-style bg-pink ml10soft"},\u672A\u53D1\u5E03:{class:"tag-style bgB8B8B8 ml10soft"},\u672A\u5F00\u59CB:{class:"tag-style bg-c5d6ff ml10soft"},\u533F\u540D\u4F5C\u54C1:{class:"tag-style bg-cyan ml10"},\u5DF2\u9009\u62E9:{class:"tag-style bg-grey-ede ml10"},\u5DF2\u7ED3\u675F:{class:"tag-style bg-grey-ede ml10soft"},\u63D0\u4EA4\u4E2D:{class:"tag-style bg-blue ml10soft"},\u8FDB\u884C\u4E2D:{class:"tag-style bg-blue ml10soft"},\u533F\u8BC4\u4E2D:{class:"tag-style bg-blue ml10"},\u7533\u8BC9\u4E2D:{class:"tag-style bg-blue ml10"},\u8003\u8BD5\u4E2D:{class:"tag-style bg-light-blue ml10"},\u8865\u4EA4\u4E2D:{class:"tag-style bg-blue ml10soft"},\u8BC4\u9605\u4E2D:{class:"tag-style bg-blue ml10"},\u5F85\u9009\u4E2D:{class:"tag-style bg-blue ml10"},\u4EA4\u53C9\u8BC4\u9605\u4E2D:{class:"tag-style bg-light-orange ml10"},\u5DF2\u5F00\u542F\u4EA4\u53C9\u8BC4\u9605:{class:"tag-style bg-lightblue-purple ml10"},\u5F85\u786E\u8BA4:{class:"tag-style bg-lightblue-purple ml10"},\u5F85\u5904\u7406:{class:"tag-style bg-lightblue-purple ml10"},\u79C1\u6709:{class:"tag-style bg-lightblue-purple ml10"},\u672A\u63D0\u4EA4:{class:"tag-style bg-lightblue-purple ml10"},\u5DF2\u786E\u8BA4:{class:"tag-style bg-light-pink ml10"},\u5DF2\u53D1\u5E03:{class:"tag-style bg-light-blue ml10"},\u5DF2\u622A\u6B62:{class:"tag-style bg-light-pink ml10soft"},\u5F00\u53D1\u8BFE\u7A0B:{class:"tag-style bg-orange ml10"},\u5DF2\u5F00\u64AD:{class:"tag-style-border border-green c-green ml10"},\u672A\u5F00\u64AD:{class:"tag-style-border border-light-black ml10"},\u6309\u65F6\u901A\u5173:{class:"tag-style-border border-light-black ml10"},\u8FDF\u4EA4\u901A\u5173:{class:"tag-style-border border-light-black ml10"},\u672A\u901A\u5173:{class:"tag-style-border border-light-black ml10"},\u672A\u5F00\u542F:{class:"tag-style-border border-light-black ml10"},\u5BFC\u5165:{class:"export ml10"},\u96C6\u4E2D\u9605\u5377:{class:"tag-style bg-light-orangess ml10soft"}};const e={\u672A\u53D1\u5E03:{class:"tag-style bg-C6CED6 ml10soft"},\u672A\u5F00\u59CB:{class:"tag-style bg-C1E2FF ml10soft"},\u8FDB\u884C\u4E2D:{class:"tag-style bg-0152d9 ml10soft"},\u5DF2\u622A\u6B62:{class:"tag-style bg-E53333 ml10soft"},\u63D0\u4EA4\u4E2D:{class:"tag-style bg-0152d9 ml10soft"},\u8865\u4EA4\u4E2D:{class:"tag-style bg-44D7B6 ml10soft"}};d.temporary&&(v=__spreadValues(__spreadValues({},v),e));const r=[];d.is_random&&r.push(react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"tag-style bg-blue ml10"},"\u968F\u673A"));try{d.status&&d.status.map((i,l)=>{r.push(react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:(d==null?void 0:d.style)||[],key:l,className:v[i]&&v[i].class},i))})}catch(i){console.log("utils.status.tag:",i,d.status)}return r},exerciseTips=(d,v)=>{if(d===5||v)return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{backgroundColor:"#f59a23"},className:"tag-style ml5"},"\u96C6\u4E2D\u9605\u5377");if(d===1)return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{backgroundColor:"#B8B8B8"},className:"tag-style ml5"},"\u672A\u5F00\u59CB");if(d===2)return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{backgroundColor:"#007AFF"},className:"tag-style ml5"},"\u8003\u8BD5\u4E2D");if(d===3||d===4)return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{backgroundColor:"#FC2D6B"},className:"tag-style ml5"},"\u5DF2\u622A\u6B62");if(d===-1)return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"export ml5"},"\u5BFC\u5165")},WorkStatus=d=>{var v,e;const r={[-1]:{name:"\u91CD\u505A\u4E2D",class:"c-orange"},0:{name:"\u672A\u63D0\u4EA4",class:"c-black"},1:{name:"\u672A\u901A\u5173",class:"c-red"},2:{name:"\u6309\u65F6\u901A\u5173",class:"c-green"},3:{name:"\u8FDF\u4EA4\u901A\u5173",class:"c-orange"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:(v=r[d.status])==null?void 0:v.class},(e=r[d.status])==null?void 0:e.name)},CommonWorkStatus=d=>{var v,e;const r={0:{name:"\u672A\u63D0\u4EA4",class:"c-black"},1:{name:"\u6309\u65F6\u63D0\u4EA4",class:"c-green"},2:{name:"\u5EF6\u65F6\u63D0\u4EA4",class:"c-red"},3:{name:"\u90E8\u5206\u63D0\u4EA4",class:"c-green"},4:{name:`\u6309\u65F6\u63D0\u4EA4${d!=null&&d.lineBreak?`
`:""}\uFF08\u6559\u5E08\u63D0\u4EA4\uFF09`,class:"c-green"},5:{name:`\u672A\u63D0\u4EA4${d!=null&&d.lineBreak?`
`:""}\uFF08\u6559\u5E08\u63D0\u4EA4\uFF09`,class:"c-black"},6:{name:"\u6309\u65F6\u63D0\u4EA4\uFF08\u7EBF\u4E0B\uFF09",class:"c-green"}};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:(v=r[d.status])==null?void 0:v.class},(e=r[d.status])==null?void 0:e.name)},timego=d=>{d=new Date(d).getTime();let v=1e3*60,e=v*60,r=e*24,i="",c=new Date().getTime()-d;if(c<0)return console.log("\u65F6\u95F4\u4E0D\u5BF9\u52B2,\u670D\u52A1\u5668\u521B\u5EFA\u65F6\u95F4\u4E0E\u5F53\u524D\u65F6\u95F4\u4E0D\u540C\u6B65"),i="\u521A\u521A";let f=parseInt(c/r,10),o=parseInt(c/e,10),h=parseInt(c/v,10);return f>30?i=""+timeformat(d,"yyyy-MM-dd"):f>1?i=""+f+"\u5929\u524D":f==1?i="\u6628\u5929":o>=1?i=""+o+"\u5C0F\u65F6\u524D":h>=5?i=""+h+"\u5206\u949F\u524D":i="\u521A\u521A",i};function replaceParamVal(paramName,replaceWith){var oUrl=window.location.href.toString(),re=eval("/("+paramName+"=)([^&]*)/gi"),nUrl=oUrl.replace(re,paramName+"="+replaceWith);window.history.replaceState(null,"",nUrl)}const timeformat=(d,v)=>{typeof d=="string"&&(d.indexOf("T")>=0&&(d=d.replace("T"," ")),d=new Date(Date.parse(d.replace(/-/g,"/")))),d=new Date(d);let e={"M+":d.getMonth()+1,"d+":d.getDate(),"h+":d.getHours(),"m+":d.getMinutes(),"s+":d.getSeconds(),"q+":Math.floor((d.getMonth()+3)/3),S:d.getMilliseconds()},r=[["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],["\u5468\u65E5","\u5468\u4E00","\u5468\u4E8C","\u5468\u4E09","\u5468\u56DB","\u5468\u4E94","\u5468\u516D"],["\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"]];/(y+)/.test(v)&&(v=v.replace(RegExp.$1,(d.getFullYear()+"").substr(4-RegExp.$1.length))),/(w+)/.test(v)&&(v=v.replace(RegExp.$1,r[RegExp.$1.length-1][d.getDay()]));for(let i in e)new RegExp("("+i+")").test(v)&&(v=v.replace(RegExp.$1,RegExp.$1.length==1?e[i]:("00"+e[i]).substr((""+e[i]).length)));return v},toTimeFormat=d=>{if(!d||d<0)return"0\u79D2";console.log("time:",d);let v=60,e=v*60,r=e*24,i=d/r,l=d/e,c=d/v,f=d%60;return i>=1?parseInt(i.toString())+"\u5929"+Math.floor(l%24)+"\u65F6"+Math.floor(c%60)+"\u5206"+Math.floor(d%60)+"\u79D2":l>1?parseInt(l.toString())+"\u65F6"+Math.floor(c%60)+"\u5206"+Math.floor(d%60)+"\u79D2":c>=1?parseInt(c.toString())+"\u5206"+Math.floor(d%60)+"\u79D2":Math.ceil(d)+"\u79D2"},validateLength=(d="",v=100)=>{let e=0;if(d){e=d.length;for(let r=0;r<e;r++){let i=d.charCodeAt(r);i>=55296&&i<=56319&&(e--,r++)}}return e<=v};function buildTree(d,v){const e={};let r=null;return d.forEach(i=>{e[i.properties.uuid]=__spreadProps(__spreadValues({},i),{children:[]})}),v.forEach(i=>{const l=e[i.startNodeUuid],c=e[i.endNodeUuid];l&&c&&l.children.push(c)}),d.forEach(i=>{!v.some(c=>c.endNodeUuid===i.properties.uuid)&&(r=e[i.properties.uuid])}),r}const handleValidatorNickName=(d,v,e)=>{if(v){let r=/[`~!@#$%^&*()\-+=<>?:"{}|,.\/;'\\[\]~@#¥%……&*()——\-+={}|《》?:“”【】、;‘’,。、]/im;const l=/[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF][\u200D|\uFE0F]|[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF]|[0-9|*|#]\uFE0F\u20E3|[0-9|#]\u20E3|[\u203C-\u3299]\uFE0F\u200D|[\u203C-\u3299]\uFE0F|[\u2122-\u2B55]|\u303D|[\A9|\AE]\u3030|\uA9|\uAE|\u3030/gi.test(v),c=r.test(v);(l===!0||c===!0||v.length<2||v.length>=21)&&e("2-20\u4F4D\u4E2D\u82F1\u6587\u3001\u6570\u5B57\u53CA\u4E0B\u5212\u7EBF")}e()},handleValidatorName=(d,v,e)=>{if(v){let r=/[`~!@#$%^&()_\-+=<>?:"{}|,.\/;'\\[\]~@#¥%……&()——\-+={}|《》?:“”【】、;‘’,。、]/im;const l=/[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF][\u200D|\uFE0F]|[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF]|[0-9|*|#]\uFE0F\u20E3|[0-9|#]\u20E3|[\u203C-\u3299]\uFE0F\u200D|[\u203C-\u3299]\uFE0F|[\u2122-\u2B55]|\u303D|[\A9|\AE]\u3030|\uA9|\uAE|\u3030/gi.test(v),c=r.test(v);(l===!0||c===!0||v.length<2||v.length>=21)&&e("2-20\u4F4D\u4E2D\u82F1\u6587\u3001\u6570\u5B57")}e()},getHiddenName=d=>{if(!d)return"";let v=d.length-1,e="";for(var r=0;r<v;r++)e+="*";return d.substr(0,1)+e},getBase64=(d,v)=>{const e=new FileReader;e.addEventListener("load",()=>v(e.result)),e.readAsDataURL(d)},getFileContentAndUrl=d=>new Promise((v,e)=>{var r=new FileReader;r.onload=function(){try{const i=window.URL.createObjectURL(d);v({text:this.result,link:i})}catch(i){antd__WEBPACK_IMPORTED_MODULE_14__.ZP.warning("\u5F53\u524D\u6587\u4EF6\u65E0\u6CD5\u8BFB\u53D6\u5185\u5BB9"),e("\u5F53\u524D\u6587\u4EF6\u65E0\u6CD5\u8BFB\u53D6\u5185\u5BB9")}},r.readAsText(d)});function setmiyah(d){return md5__WEBPACK_IMPORTED_MODULE_6___default()("79e33abd4b6588941ab7622aed1e67e8"+d)}const getCookie=d=>{var v,e=RegExp("(^| )"+d+"=([^;]+)(;|$)");return(v=document.cookie.match(e))?decodeURIComponent(v[2]):null};function setCookie(d,v,e){var r=new Date;r.setTime(r.getTime()+e*24*60*60*1e3);var i="expires="+r.toUTCString();document.cookie=d+"="+v+"; "+i+`;domain=${document.domain.indexOf("educoder.net")>-1?".educoder.net":document.domain};path=/;SameSite=None;secure`}const delCookie=d=>{document.cookie=d+"=; expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/;"},clearAllCookies=()=>{for(var d=document.cookie.split(";"),v=0;v<d.length;v++){var e=d[v],r=e.indexOf("="),i=r>-1?e.substr(0,r):e;document.cookie=i+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT"}};function downLoadLink(d,v){let e=document.createElement("a");document.body.appendChild(e),e.href=v,d&&(e.title=d,e.download=d);let r=document.createEvent("MouseEvents");r.initEvent("click",!1,!1),e.dispatchEvent(r),document.body.removeChild(e)}function getFirstLevelDomain(){var d=window.location.hostname,v=d.split(".").reverse();return v.length>2?[v[1],v[0]].join("."):d}function getBlob(d){return new Promise(v=>{const e=new window.XMLHttpRequest;(d.indexOf(getFirstLevelDomain())>-1||location.hostname==="localhost"&&d.indexOf("/api/")>-1)&&(e.withCredentials=!0),e.open("GET",d,!0),e.responseType="blob",e.onload=()=>{e.status===200&&v(e.response)},e.send()})}function saveAs(d,v){if(window.navigator.msSaveOrOpenBlob)window.navigator.msSaveBlob(d,v);else{const e=document.createElement("a"),r=document.querySelector("body");e.href=window.URL.createObjectURL(d),e.download=v,e.style.display="none",r.appendChild(e),e.click(),r.removeChild(e),window.URL.revokeObjectURL(e.href)}}function download(d,v){getBlob(d).then(e=>{saveAs(e,v)})}function downLoadFileIframe(d,v){return new Promise((e,r)=>{var i=v,l=document.createElement("iframe"),c;document.body.appendChild(l),l.src=i,l.style.display="none",l.addEventListener("load",function(){setTimeout(()=>{document.body.removeChild(l)},1e3)},!0),c=setInterval(()=>{getCookie("fileDownload")&&(delCookie("fileDownload"),clearInterval(c),document.body.removeChild(l),e())},1e3)})}function downLoadFile(d,v){downLoadLink(d,v)}const setUrlQuery=d=>{let{url:v,query:e}=d;if(!v)return"";if(e){let r=[];for(const i in e)e.hasOwnProperty(i)&&!isUnOrNull(e[i])&&(typeof e[i]=="object"?e[i].map(l=>{r.push(`${i}[]=${l}`)}):r.push(`${i}=${e[i]}`));v.indexOf("?")!==-1?v=`${v}&${r.join("&")}`:v=`${v}?${r.join("&")}`,console.log("url1111",v)}return v};function isPc(){let d=navigator.userAgent,v=["Android","iPhone","SymbianOS","Windows Phone","iPad","iPod"],e=!0;for(var r=0;r<v.length;r++)if(d.indexOf(v[r])>0){e=!1;break}return e}function isChrome(){let d=navigator.userAgent;return["Chrome"].some(e=>d.indexOf(e)>-1)}function isFirefox(){let d=navigator.userAgent;return["Firefox"].some(e=>d.indexOf(e)>-1)}function isChromeOrFirefox(){let d=navigator.userAgent;return["Chrome","Firefox"].some(e=>d.indexOf(e)>-1)}const formatMoney=(d="")=>{var v;return(v=d==null?void 0:d.toString())==null?void 0:v.replace(/\B(?=(\d{3})+(?!\d))/g,",")},openNewWindow=d=>{let v=document.createElement("a");v.target="_blank",document.body.appendChild(v),v.href=d;let e=document.createEvent("MouseEvents");e.initEvent("click",!1,!1),v.dispatchEvent(e),document.body.removeChild(v)},openNewWindows=d=>{let v=document.createElement("a");document.body.appendChild(v),v.href=d;let e=document.createEvent("MouseEvents");e.initEvent("click",!1,!1),v.dispatchEvent(e),document.body.removeChild(v)},formatTextMiddleIntercept=(d="")=>d.length<=6?d:`${d.substring(0,3)}...${d.substring(d.length-3,d.length)}`,HalfPastOne=()=>{let d=new Date().getHours(),v=new Date().getMinutes();return v>=30?(d++,v="00"):v="30",d+":"+v},DayHalfPastOne=(d="-")=>{let v=new Date().getHours(),e=new Date().getMinutes();return e>=30?(v++,e="00"):e="30",new Date().toLocaleDateString().replace(/\//g,d)+" "+v+":"+e};var Type=(d=>(d.Number="Number",d.String="String",d.Boolean="Boolean",d.Object="Object",d.Array="Array",d.Function="Function",d))(Type||{});const type=d=>{const v=Object.prototype.toString.call(d);return v.substring(8,v.length-1)},isEmpty=d=>type(d)==="Array"?d.length===0:type(d)==="Object"?Object.keys(d).length===0:!d,rangeNumber=(d,v)=>{const e=[];for(let r=d;r<v;r++)e.push(r);return e},middleEllipsis=(d,v=12)=>{let e=v/2-2,r=v/2+3;return d.length>v?d.substr(0,e)+"..."+d.substr(r,v):d},formatRate=d=>d>4.5?5:d>4&&d<=4.5?4.5:d>3.5&&d<=4?4:d>3&&d<=3.5?3.5:d>2.5&&d<=3?3:d>2&&d<=2.5?2.5:d>1.5&&d<=2?2:d>1&&d<=1.5?1.5:d>.5&&d<=1?1:d>0&&d<=.5?.5:0,isUnOrNull=d=>d==null;function getUrlToken(d,v){const e=new RegExp(`(^|&)${d}=([^&]*)(&|$)`,"i"),r=v.substr(1).match(e);return r!=null?decodeURIComponent(r[2]):null}const getMessagesUrl=d=>{var v;if(d.link_url)return window.open(d.link_url);switch(d==null?void 0:d.container_type){case"TeacherChangeUserInfo":return window.open("/account/profile");case"TeacherResetUserPassword":return window.open("/account/secure");case"ApplyUserAuthentication":return window.open("/account/certification")}switch(d.container_type){case"ApplyUserAuthentication":if(d.tiding_type==="Apply"){if(d.auth_type===1)return window.open("/admins/identity_authentications");if(d.auth_type===2)return window.open("/admins/professional_authentications")}return d.tiding_type==="System"?window.open("/account/certification"):d.tiding_type==="Code"?window.open("/account/profile"):void 0;case"CancelUserAuthentication":return window.open("/account/certification");case"CancelUserProCertification":return window.open("/account/certification");case"ApplyAddMajor":return window.open("/account/profile");case"Major":return window.open("/account/profile");case"ApplyAddDepartment":return d.tiding_type==="Apply"?window.open("/admins/department_applies"):d.tiding_type==="System"?window.open("/account/profile"):void 0;case"ApplyAddSchools":return d.tiding_type==="Apply"?window.open("/admins/unit_applies"):d.tiding_type==="System"?window.open("/account/profile"):void 0;case"ApplyAction":switch(d.parent_container_type){case"ApplyShixun":if(d.tiding_type==="Apply")return window.open("/admins/shixun_authorizations");if(d.tiding_type==="System")return window.open(`/shixuns/${d.identifier}/challenges`);case"ApplySubject":if(d.tiding_type==="Apply")return window.open("/admins/subject_authorizations");if(d.tiding_type==="System")return window.open(`/paths/${d.parent_container_id}`);case"TrialAuthorization":if(d.tiding_type==="Apply")return window.open("/managements/trial_authorization");if(d.tiding_type==="System")return window.open("/account/profile")}return;case"JoinCourse":return window.open(`/classrooms/${d.belong_container_id}/teachers`);case"StudentJoinCourse":if(d.tiding_type==="Apply")return window.open(`/classrooms/${d.belong_container_id}/teachers`);if(d.tiding_type==="System")return window.open(`/classrooms/${d.belong_container_id}/students`);case"DealCourse":return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/`);case"TeacherJoinCourse":return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/`);case"Course":return d.tiding_type==="Delete"?void 0:window.open(`/classrooms/${d.belong_container_id}/shixun_homework/`);case"ArchiveCourse":return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/`);case"Shixun":return window.open(`/shixuns/${d.identifier}/challenges`);case"Subject":return window.open(`/paths/${d.container_id}`);case"JournalsForMessage":switch(d.parent_container_type){case"Principal":return"";case"HomeworkCommon":return d.homework_type==="normal"?window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/question`):d.homework_type==="group"?window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/question`):d.homework_type==="practice"?window.open(`/classrooms/${d.belong_container_id}/shixun_homework/${d.parent_container_id}/detail?tabs=1`):"";case"GraduationTopic":return window.open(`/classrooms/${d.belong_container_id}/graduation_topics/${d.parent_container_id}/detail`);case"StudentWorksScore":return window.open(d.link_url)}case"Memo":return window.open(`/forums/${d.parent_container_id}`);case"Message":return window.open("/forums/");case"Watcher":return window.open(`/users/${d.trigger_user.login}/classrooms`);case"PraiseTread":return"";case"Grade":return"";case"JoinProject":return window.open(_env__WEBPACK_IMPORTED_MODULE_7__.Z.FORGE+d.project_url);case"ReporterJoinProject":return window.open(_env__WEBPACK_IMPORTED_MODULE_7__.Z.FORGE+d.project_url);case"DealProject":return window.open(_env__WEBPACK_IMPORTED_MODULE_7__.Z.FORGE+d.project_url);case"ManagerJoinProject":return window.open(_env__WEBPACK_IMPORTED_MODULE_7__.Z.FORGE+d.project_url);case"Poll":switch(d.parent_container_type){case"CommitPoll":return window.open(` /classrooms/${d.belong_container_id}/poll/${d.container_id}/detail`);default:return window.open(` /classrooms/${d.belong_container_id}/poll/${d.container_id}/detail`)}case"Exercise":switch(d.parent_container_type){case"CommitExercise":return window.open(` /classrooms/${d.belong_container_id}/exercise/${d.container_id}/detail?tab=0`);case"ExerciseScore":return window.open(` /classrooms/${d.belong_container_id}/exercise/${d.container_id}/detail?tab=0`);default:return window.open(`/classrooms/${d.belong_container_id}/exercise/${d.container_id}/detail?tab=0`)}case"StudentGraduationTopic":return window.open(`/classrooms/${d.belong_container_id}/graduation_topics/${d.parent_container_id}/detail`);case"DealStudentTopicSelect":return window.open(`/classrooms/${d.belong_container_id}/graduation_topics/${d.parent_container_id}/detail`);case"GraduationTask":return window.open(`/classrooms/${d.belong_container_id}/graduation_tasks/${d.container_id}`);case"GraduationWork":return window.open(`/classrooms/${d.belong_container_id}/graduation_tasks/${d.container_id}`);case"GraduationWorkScore":return window.open(`/classrooms/${d.belong_container_id}/graduation_tasks/${d.parent_container_id}`);case"HomeworkCommon":switch(d.parent_container_type){case"AnonymousCommentFail":if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/detail`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/detail`);if(d.homework_type==="practice")return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/${d.parent_container_id}/detail?tabs=0`);case"HomeworkPublish":if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/detail`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/detail`);if(d.homework_type==="practice")return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/${d.parent_container_id}/detail?tabs=0`);case"AnonymousAppeal":if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/detail`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/detail`);if(d.homework_type==="practice")return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/${d.parent_container_id}/detail?tabs=0`);default:if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/detail`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/detail`);if(d.homework_type==="practice")return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/${d.parent_container_id}/detail?tabs=0`)}case"StudentWork":if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/review/${d.container_id}`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/review/${d.container_id}`);if(d.homework_type==="practice")return window.open(`/classrooms/${d.belong_container_id}/shixun_homework/${d.parent_container_id}/detail`);case"StudentWorksScore":return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.trigger_user.id}/review/${d.parent_container_id}`);case"StudentWorksScoresAppeal":return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.trigger_user.id}/review/${d.parent_container_id}`);case"ChallengeWorkScore":return"";case"SendMessage":return window.open(`${_env__WEBPACK_IMPORTED_MODULE_7__.Z.API_SERVER}/admins/mirror_repositories`);case"Journal":return window.open(`/issues/${d.parent_container_id}`);case"Issue":return window.open(`/issues/${d.container_id}`);case"PullRequest":return window.open(_env__WEBPACK_IMPORTED_MODULE_7__.Z.FORGE+d.project_url);case"Department":return window.open("/account/profile");case"Library":if(d.tiding_type==="Apply")return window.open("/admins/library_applies");if(d.tiding_type==="System")return window.open(`/moop_cases/${d.container_id}`);case"ProjectPackage":return d.tiding_type==="Destroyed"||d.tiding_type==="Destroyed_end"?void 0:d.tiding_type==="Apply"?window.open("/admins/project_package_applies"):window.open(`/crowdsourcing/${d.container_id}`);case"Discuss":return d.parent_container_type==="Hack"&&d.extra?window.open(`/myproblems/${d.extra}/comment`):d.extra==="ai_reply"&&d.task_identifier?window.open(`/tasks/${d.task_identifier}?extra=extra`):window.open(`/shixuns/${d.identifier}/shixun_discuss`);case"Video":return d.tiding_type==="Apply"?window.open("/admins/video_applies"):d.tiding_type==="System"?window.open(`/users/${(v=(0,_utils_authority__WEBPACK_IMPORTED_MODULE_1__.eY)())==null?void 0:v.login}/videos`):"";case"PublicCourseStart":return window.open(`/classrooms/${d.container_id}/informs`);case"SubjectStartCourse":return window.open(`/paths/${d.container_id}`);case"ResubmitStudentWork":if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}/${d.container_id}/appraise`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}/${d.container_id}/appraise`);case"AdjustScore":if(d.homework_type==="normal")return window.open(`/classrooms/${d.belong_container_id}/common_homework/${d.parent_container_id}`);if(d.homework_type==="group")return window.open(`/classrooms/${d.belong_container_id}/group_homework/${d.parent_container_id}`);case"LiveLink":return window.open(`/classrooms/${d.belong_container_id}/course_videos?open=live`);case"Hack":if(d.extra&&d.parent_container_type!=="HackDelete")return window.open(`/problems/${d.extra}/edit`);default:return}},checkLocalOrPublicIp=(d,v)=>__async(void 0,null,function*(){let e="",r;return new Promise((i,l)=>__async(void 0,null,function*(){if(d.ip_limit!=="no"||d.ip_bind_type)try{e=yield(0,_components_Exercise_ip__WEBPACK_IMPORTED_MODULE_2__.y)({ip_limit:d==null?void 0:d.ip_limit,ip_bind:d==null?void 0:d.ip_bind_type}),console.log(e,44)}catch(f){l(void 0)}const c=yield(0,_service_exercise__WEBPACK_IMPORTED_MODULE_3__.Cl)({id:d.exerciseId,ip:e});if(c.status===0)i(c);else if(c.status===-5){(0,umi__WEBPACK_IMPORTED_MODULE_5__.getDvaApp)()._store.dispatch({type:"exercise/setActionTabs",payload:{key:"student-unlock",exerciseParams:{errorMessage:c==null?void 0:c.message,exercise_user_id:d==null?void 0:d.exercise_user_id,id:d.exerciseId,unlockClose:d.unlockClose}}});return}else i(c);if(d.errmsgHide||v)return!0;if(c.status===-1)return r=antd__WEBPACK_IMPORTED_MODULE_15__.default.info({title:react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_16__.Z,null,react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_17__.Z,{flex:"1"},"\u63D0\u793A"),react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_17__.Z,null,react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"iconfont icon-yiguanbi1 current c-grey-c",onClick:()=>r.destroy()}))),icon:null,className:"custom-modal-divider",content:react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"font16 p20"},"\u60A8\u7684IP\u4E0D\u5728\u8003\u8BD5\u5141\u8BB8\u7684\u8303\u56F4\u5185\uFF01"),okText:"\u6211\u77E5\u9053\u4E86"}),!1;if(c.status===-2)return r=antd__WEBPACK_IMPORTED_MODULE_15__.default.info({title:react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_16__.Z,null,react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_17__.Z,{flex:"1"},"\u63D0\u793A"),react__WEBPACK_IMPORTED_MODULE_0__.createElement(antd__WEBPACK_IMPORTED_MODULE_17__.Z,null,react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"iconfont icon-yiguanbi1 current c-grey-c",onClick:()=>r.destroy()}))),icon:null,className:"custom-modal-divider",content:react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"font16 p20"},"\u60A8\u5DF2\u7ED1\u5B9A\u5F53\u524D\u8003\u8BD5IP\u5730\u5740\uFF1A",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},c.ip),"\u8BF7\u4F7F\u7528\u8BE5IP\u5730\u5740\u8FDB\u5165\u8003\u8BD5\u3002"),okText:"\u6211\u77E5\u9053\u4E86"}),!1}))});function isInsecureOrLocalhost(d){try{const v=new URL(d),e=v.hostname==="localhost"||v.hostname==="127.0.0.1";return!(v.protocol==="https:")&&!e}catch(v){return!0}}const checkDisabledExam=d=>new Promise((v,e)=>__async(void 0,null,function*(){const r=yield(0,_service_exercise__WEBPACK_IMPORTED_MODULE_3__.Zg)({id:d==null?void 0:d.exerciseId,coursesId:d==null?void 0:d.coursesId});if((r==null?void 0:r.status)===0){v("");return}setTimeout(()=>{window.location.reload()},2e3),e("")})),isKepuKehuan=()=>location.pathname.indexOf("/classrooms/4RW9CYHY")>-1||location.pathname.indexOf("/classrooms/qb4ft587")>-1||location.pathname.indexOf("/classrooms/c5q9bsp2")>-1,startExercise=d=>__async(void 0,null,function*(){var v,e,r;sessionStorage.removeItem("studentunlock");let i;if((location.pathname.indexOf("/classrooms/4RW9CYHY")>-1||location.pathname.indexOf("/classrooms/qb4ft587")>-1||location.pathname.indexOf("/classrooms/c5q9bsp2")>-1)&&!isPc()){antd__WEBPACK_IMPORTED_MODULE_15__.default.info({content:"\u8BF7\u4F7F\u7528\u7535\u8111\u53C2\u52A0\u8003\u8BD5\uFF01"});return}if(copyTextFuc(" ",!0),yield checkDisabledExam(d),d.ip_limit!=="no"||d.ip_bind){const l=yield checkLocalOrPublicIp(d,!0);if((l==null?void 0:l.status)!==0)return;if(!isChrome()){antd__WEBPACK_IMPORTED_MODULE_15__.default.info({icon:null,okText:"\u786E\u5B9A",width:500,content:react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"font16"},"\u672C\u6B21\u8003\u8BD5\u5DF2\u5F00\u542F\u9632\u4F5C\u5F0A\u8BBE\u7F6E\uFF0C\u4EC5\u652F\u6301",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},"\u8C37\u6B4C"),"\u3002",react__WEBPACK_IMPORTED_MODULE_0__.createElement("br",null),"\u8BF7\u4F7F\u7528",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},"\u8C37\u6B4C"),"\u6D4F\u89C8\u5668\u5F00\u59CB\u8003\u8BD5\u3002")});return}}if(d.forbid_screen){const l=new WebSocket("ws://localhost:8082");yield new Promise(c=>setTimeout(()=>c(),200)),sendAppStatus(l,d)}if(d.open_camera||d.screen_open||d.ip_limit!=="no"||d.identity_verify){if(!isChromeOrFirefox())return antd__WEBPACK_IMPORTED_MODULE_15__.default.info({icon:null,okText:"\u786E\u5B9A",width:500,content:react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"font16"},"\u672C\u6B21\u8003\u8BD5\u5DF2\u5F00\u542F\u9632\u4F5C\u5F0A\u8BBE\u7F6E\uFF0C\u4EC5\u652F\u6301",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},"\u8C37\u6B4C"),"\u3001",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},"\u706B\u72D0"),"\u6D4F\u89C8\u5668\u3002",react__WEBPACK_IMPORTED_MODULE_0__.createElement("br",null),"\u8BF7\u4F7F\u7528",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},"\u8C37\u6B4C"),"\u3001",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-red"},"\u706B\u72D0"),"\u6D4F\u89C8\u5668\u5F00\u59CB\u8003\u8BD5\u3002")}),!1;d.open_phone_video_recording?window.location.href=`/classrooms/${d.coursesId}/exercise/${d.exerciseId}/users/${(v=(0,_utils_authority__WEBPACK_IMPORTED_MODULE_1__.eY)())==null?void 0:v.login}/check`:d.identity_verify&&d.current_status===2?window.location.href=`/classrooms/${d.coursesId}/exercise/${d.exerciseId}/users/${(e=(0,_utils_authority__WEBPACK_IMPORTED_MODULE_1__.eY)())==null?void 0:e.login}/check`:window.location.href=`/classrooms/${d.coursesId}/exercise/${d.exerciseId}/users/${(r=(0,_utils_authority__WEBPACK_IMPORTED_MODULE_1__.eY)())==null?void 0:r.login}`}else d.identity_verify&&d.current_status===2?window.location.href=`/classrooms/${d.coursesId}/exercise/${d.exerciseId}/users/${d.login}/check`:window.location.href=`/classrooms/${d.coursesId}/exercise/${d.exerciseId}/users/${d.login}`});var httpBuildQuery=function(d,v,e,r){if(console.log("param:",d),v=v||null,e=e||"&",r=r||null,!d)return"";var i=function(o){for(var h=new Array,u=0;u<o.length;u++)o[u]&&h.push(o[u]);return h},l=function(o){return encodeURIComponent(o).replace(/[!'()*]/g,escape)},c=function(o){return!isNaN(parseFloat(o))&&isFinite(o)},f=Object.keys(d).map(function(o){var h,u=o;if(typeof d[o]=="object"&&d[o]!==null)h=httpBuildQuery(d[o],null);else{v&&(u=c(u)?v+Number(u):u);var a=d[o];a=a===!0?"1":a,a=a===!1?"0":a,a=a===0?"0":a,a=a||"",h=u+"="+a}return h});return i(f).join(e).replace(/[!'()*]/g,escape)};const parseParamsStr=(d,v)=>{const e={},r=Object.assign(!0,d,{}),i=[];return Object.keys(r).sort().forEach(function(l){if(r[l]=r[l]===!0?"true":r[l],r[l]=r[l]===!1?"false":r[l],v==="GET"){if(r[l]!==null){if(typeof r[l]=="object"&&(!Array.isArray(r[l])||Array.isArray(r[l])&&!r[l].length))return;const c=r[l]===null||r[l]==="null"?"":r[l];i.push(`${l}=${typeof c=="string"||typeof c=="number"?decodeURIComponent(c):JSON.stringify(c)}`)}}else{const c=r[l]===null||r[l]==="null"?"":r[l];i.push(`${l}=${typeof c=="string"||typeof c=="number"?c:JSON.stringify(c)}`),r[l],e[l]=r[l]}}),i.join("&").trim()},educationList=[{name:"\u672C\u79D1",id:6},{name:"\u5927\u4E13",id:5},{name:"\u4E2D\u4E13",id:4},{name:"\u9AD8\u4E2D",id:3},{name:"\u521D\u4E2D",id:2},{name:"\u5C0F\u5B66",id:1},{name:"\u5176\u4ED6",id:9},{name:"\u7855\u58EB",id:7},{name:"\u535A\u58EB",id:8},{name:"\u9AD8\u4E2D",id:3},{name:"\u521D\u4E2D",id:2},{name:"\u5C0F\u5B66",id:1},{name:"\u5176\u4ED6",id:9},{name:"\u7855\u58EB",id:7},{name:"\u535A\u58EB",id:8}];function getTopLevelDomain(){let d=window.location.hostname;if(/^\d+\.\d+\.\d+\.\d+$/.test(d)||d==="localhost")return d;let v=d.split(".");return v.length>2&&/^[a-z]{2}$/.test(v[v.length-2])?v.slice(-3).join("."):v.slice(-2).join(".")}const setHeader=(d,v)=>{var e;try{const r=Date.now(),i=(0,uuid__WEBPACK_IMPORTED_MODULE_18__.Z)();let l="method="+((e=d.method)==null?void 0:e.toLocaleUpperCase())+"&ak="+getKey(_key__WEBPACK_IMPORTED_MODULE_19__.mi)+"&sk="+getKey(_key__WEBPACK_IMPORTED_MODULE_19__.hw)+"&time="+r;return d.headers["X-EDU-Type"]="pc",d.headers["X-EDU-Timestamp"]=r,d.headers["X-EDU-Signature"]=md5__WEBPACK_IMPORTED_MODULE_6___default()(window.btoa(l)),d.headers["Pc-Authorization"]=getCookie("_educoder_session"),d.headers["X-Request-Id"]=i,d}catch(r){console.log("error:",r,d,v)}},setThreeComponent=()=>{(function(d){XMLHttpRequest.prototype.open=function(v,e,r=!0){const i=setHeader({method:v,headers:{}});d.call(this,v,e,r);try{e.indexOf(getTopLevelDomain())>-1&&(this.setRequestHeader("X-EDU-Type","pc"),this.setRequestHeader("X-EDU-Timestamps",i.headers["X-EDU-Timestamp"]),this.setRequestHeader("X-EDU-Signatures",i.headers["X-EDU-Signature"]),this.setRequestHeader("Pc-Authorization",getCookie("_educoder_session")))}catch(l){}}})(XMLHttpRequest.prototype.open),function(d){window.fetch=function(v,e){var r;return e=e||{},(r=e.headers)!=null&&r["X-EDU-Timestamp"]||setHeader(e),d.apply(this,arguments).then(function(i){return i})}}(window.fetch)},parseUrl=d=>{const v=/(\w+)=([^\#&]*)/gi,e={};return d.replace(v,function(r,i,l){e[i]=decodeURI(l)}),e},messageInfo=(d,v)=>{const r={1:"\u5F53\u524D\u5B9E\u8DF5\u9879\u76EE\u6682\u672A\u53D1\u5E03\uFF0C\u8BF7\u8054\u7CFB\u672C\u8BFE\u5802\u6559\u5E08\u3002",2:"\u5F53\u524D\u5B9E\u8DF5\u9879\u76EE\u4E0D\u5B58\u5728\uFF0C\u8BF7\u8054\u7CFB\u672C\u8BFE\u5802\u6559\u5E08\u3002",3:"\u5F53\u524D\u5B9E\u8DF5\u9879\u76EE\u9762\u5411\u6307\u5B9A\u5355\u4F4D\u5F00\u653E\uFF0C\u8BF7\u8054\u7CFB\u672C\u8BFE\u5802\u6559\u5E08\u3002",4:`\u5F53\u524D\u5B9E\u8DF5\u9879\u76EE\u5C06\u4E8E${v}\u53D1\u5E03\uFF0C\u8BF7\u7B49\u5F85\u3002`}[d];antd__WEBPACK_IMPORTED_MODULE_14__.ZP.warning(r)},base64ToBlob=(d,v)=>{var e;const r=window.atob(d),i=r.length,l=new Uint8Array(i);for(let c=0;c<i;++c)l[c]=r.charCodeAt(c);return new Blob([l],{type:_contentType__WEBPACK_IMPORTED_MODULE_4__.F[(e=v.split("."))==null?void 0:e[1]]||"application/octet-stream"})},downloadFile=(d,v,e)=>{const r=base64ToBlob(v,e);if(window.navigator.msSaveOrOpenBlob)navigator.msSaveBlob(r,d);else{const i=document.createElement("a");i.href=window.URL.createObjectURL(r),i.download=d,document.body.appendChild(i);const l=document.createEvent("MouseEvents");l.initEvent("click",!1,!1),i.dispatchEvent(l),document.body.removeChild(i)}},trackEvent=d=>{var v;if(d.length)try{window._czc.push(["_trackEvent",...d]),window==null||window.gtag("event",d[1],{event_category:d[0],event_label:d[2]||"",value:d[3]||"",user_id:((v=(0,_utils_authority__WEBPACK_IMPORTED_MODULE_1__.eY)())==null?void 0:v.login)||""})}catch(e){console.log("trackEvent:err:",e)}},trackEventCustom=d=>{if(d.length)try{window._czc.push(["_setCustomVar",...d])}catch(v){console.log("trackEvent:err:",v)}},onPreviewImage=d=>{const v=(i,l)=>{if(i.localName===l)return i;for(let c=0,f=i;f=f.parentNode;c++){if(f.localName===l)return f;if(f==document.documentElement)return!1}},e=d.target,r=v(e,"a");if(!(r!=null&&r.href)&&e.tagName.toUpperCase()==="IMG"){let i=e.src||e.getAttribute("src");i&&i.indexOf("/images/avatars/User")===-1&&(d.stopPropagation(),d.preventDefault(),_components_mediator__WEBPACK_IMPORTED_MODULE_8__.Z.publish("preview-image",i))}},getCategoryName=(d,v)=>{var e,r,i,l;if(d&&d!=""){let c=(e=d==null?void 0:d.filter(f=>f.type===location.pathname.split("/")[3]))==null?void 0:e[0];return v?(l=(i=(r=c==null?void 0:c.second_category)==null?void 0:r.filter(f=>f.category_id==v))==null?void 0:i[0])==null?void 0:l.category_name:c==null?void 0:c.name}return null},bindPhone=d=>{const v=antd__WEBPACK_IMPORTED_MODULE_15__.default.confirm({title:"\u5B8C\u5584\u624B\u673A\u53F7\u7801",content:"\u6309\u7167\u6709\u5173\u653F\u7B56\u89C4\u5B9A\uFF0C\u7279\u6B8A\u5B9E\u9A8C\u9700\u8981\u5148\u7ED1\u5B9A\u624B\u673A\u53F7\u624D\u80FD\u4F7F\u7528\uFF0C\u8BF7\u5148\u7ED1\u5B9A\u624B\u673A\u53F7\u7801",okText:"\u7ACB\u5373\u7ED1\u5B9A",cancelText:"\u53D6\u6D88",centered:!0,onOk:()=>{location.href="/account/secure"},onCancel:()=>{v.destroy(),d!=null&&d.onCancel&&d.onCancel()}})},copyTextFuc=(d="",v=!1)=>{const e=document.createElement("textarea");e.value=d,document.body.appendChild(e),e.select(),document.execCommand("Copy"),v||antd__WEBPACK_IMPORTED_MODULE_14__.ZP.success("\u590D\u5236\u6210\u529F"),document.body.removeChild(e)},getJsonFromUrl=d=>{if(d||(d=window.location.search),!d)return{};let v=d.substring(1),e={};return v.split("&").forEach(function(r){let i=r.split("=");e[i[0]]=decodeURIComponent(i[1])}),e},arrTrans=(d,v)=>{if(!v)return null;const e=[];return v.forEach((r,i)=>{const l=Math.floor(i/d);e[l]||(e[l]=[]),e[l].push(r)}),e},setDocumentTitle=d=>{checkIsClientExam()?document.title="\u8003\u8BD5\u7CFB\u7EDF":d!==""&&d&&(document.title=d||(document.domain.indexOf(".educoder.net")>-1?"\u5B9E\u8DF5\u6559\u5B66\u5E73\u53F0":""))},checkIsClientExam=()=>{var d;return(d=window==null?void 0:window.localStorage)==null?void 0:d.isClientExam},localSort={setItem:(d,v,e)=>{const r=d,i=localStorage.getItem(r),l=i!==null&&i!=="[object Object]"?JSON.parse(i):{};l[e]=v,localStorage.setItem(r,JSON.stringify(l))},getItem:(d,v)=>{const e=d,r=localStorage.getItem(e);return(r!==null&&r!=="[object Object]"?JSON.parse(r):{})[v]}},ImgSrcConvert=d=>d!=null&&d.startsWith("http")?d:_env__WEBPACK_IMPORTED_MODULE_7__.Z.IMG_SERVER+d,compareVersion=d=>{const v=getVersion(),e=d.split("."),r=v.split("."),i=Math.max(e.length,r.length);for(;e.length<i;)e.push("0");for(;r.length<i;)r.push("0");for(let l=0;l<i;l++){const c=parseInt(e[l]),f=parseInt(r[l]);if(c>f)return 1;if(c<f)return-1}return 0},getImageUrl=(d,v)=>{d=`${d}${v?","+v:""}`;const e=crypto_js__WEBPACK_IMPORTED_MODULE_11___default().enc.Utf8.parse(window.atob(window.atob(_key__WEBPACK_IMPORTED_MODULE_19__.Bn)).substring(0,16)),r=crypto_js__WEBPACK_IMPORTED_MODULE_11___default().AES.encrypt(d||"",e,{iv:e,mode:crypto_js__WEBPACK_IMPORTED_MODULE_11___default().mode.CBC});return window.btoa(r.toString())},getVersion=()=>{const v=navigator.userAgent.toLowerCase().match(/version\/[\d.]+/gi);return v&&v[0].replace(/version\//,"")},isLocalApp=()=>navigator.userAgent.indexOf("ExerciseApp")>-1;function randomArray(d,v){let e=d.length,r,i;v=v||1;let l=function(){var c=Math.sin(v++)*1e3;return c-Math.floor(c)};for(;e!==0;)i=Math.floor(l()*e),e-=1,r=d[e],d[e]=d[i],d[i]=r;return d}function pointerEvents(d){const v=document.getElementsByTagName("iframe");for(let r=0;r<v.length;r++)v[r].style["pointer-events"]=d;const e=document.getElementsByTagName("canvas");for(let r=0;r<e.length;r++)e[r].style["pointer-events"]=d}const toDataUrl=d=>new Promise((v,e)=>{var r=new XMLHttpRequest;r.withCredentials=!0,r.onload=function(){var i=new FileReader;i.onloadend=function(){v(i.result)},i.readAsDataURL(r.response)},r.open("GET",d),r.responseType="blob",r.send()}),vtrsKey=(_b=(_a=location==null?void 0:location.pathname)==null?void 0:_a.split("/"))==null?void 0:_b[1];function scrollToTop(){window.scrollTo({left:0,top:0,behavior:"smooth"})}function domScrollToTop(d){var v;(v=document.querySelector(d))==null||v.scrollTo({left:0,top:0,behavior:"smooth"})}function dealUploadChange(d){var v,e,r,i,l;const c=(v=d.fileList)==null?void 0:v.map(f=>{var o,h;return __spreadProps(__spreadValues({},f),{status:typeof(f==null?void 0:f.response)=="string"||((o=f==null?void 0:f.response)==null?void 0:o.status)===-1?"error":f.status,response:typeof(f==null?void 0:f.response)=="string"?f==null?void 0:f.response:f!=null&&f.response&&(f==null?void 0:f.response.status)===-1?(h=f==null?void 0:f.response)==null?void 0:h.message:f==null?void 0:f.response})});return((r=(e=d.file)==null?void 0:e.response)==null?void 0:r.status)===-1&&(antd__WEBPACK_IMPORTED_MODULE_14__.ZP.destroy(),antd__WEBPACK_IMPORTED_MODULE_14__.ZP.warning((l=(i=d.file)==null?void 0:i.response)==null?void 0:l.message)),c}function cutFileName(d="",v){if(!d)return"";const e=d.lastIndexOf(".");let r=[d,""];if(e!==-1&&e!==d.length-1){const i=d.substring(0,e),l=d.substring(e+1);r=[i,l]}return r[0].length>v?r[0].slice(0,v)+"..."+r[1]:d}function cutName(d="",v,e="--"){return d?(d==null?void 0:d.length)>=v?(d==null?void 0:d.slice(0,v))+"...":d:e}function timeContrast(d){return d?moment__WEBPACK_IMPORTED_MODULE_12___default()().isBefore(moment__WEBPACK_IMPORTED_MODULE_12___default()(d)):!0}function showTotal(d){return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"font14 c-grey-333"},"\u5171",react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{className:"c-light-primary"},"\xA0",d,"\xA0"),"\u6761\u6570\u636E")}const formatRandomPaperData=d=>{const v={1:"\u4E00",2:"\u4E8C",3:"\u4E09",4:"\u56DB",5:"\u4E94",6:"\u516D",7:"\u4E03"};if(!d)return;const{exam:e,single_questions:r,multiple_questions:i,judgement_questions:l,program_questions:c,completion_questions:f,subjective_questions:o,practical_questions:h,combination_questions:u,bprogram_questions:a}=d||{},x=[__spreadValues({type:"SINGLE",name:"\u5355\u9009\u9898"},r),__spreadValues({type:"MULTIPLE",name:"\u591A\u9009\u9898"},i),__spreadValues({type:"COMPLETION",name:"\u586B\u7A7A\u9898"},f),__spreadValues({type:"JUDGMENT",name:"\u5224\u65AD\u9898"},l),__spreadValues({type:"SUBJECTIVE",name:"\u7B80\u7B54\u9898"},o),__spreadValues({type:"PROGRAM",name:"\u7F16\u7A0B\u9898"},c),__spreadValues({type:"BPROGRAM",name:"\u7A0B\u5E8F\u586B\u7A7A\u9898"},a),__spreadValues({type:"PRACTICAL",name:"\u5B9E\u8BAD\u9898"},h),__spreadValues({type:"COMBINATION",name:"\u7EC4\u5408\u9898"},u)],p=[];let y=0,m=0;const b=x.filter(S=>S.questions_count>0).map((S,k)=>{var R;return(R=S.questions)==null||R.forEach(A=>{p.push(A.id),y=y+A.score,m=m+1}),__spreadValues(__spreadValues({},S),{number:v[k+1]})});return{all_questions_count:m,all_score:y,questionList:b,ids:p,exam:e}},formatRandomPaperDatas=d=>{var v;const e={1:"\u4E00",2:"\u4E8C",3:"\u4E09",4:"\u56DB",5:"\u4E94",6:"\u516D",7:"\u4E03"};if(!d)return;const{exam:r,single_questions:i,multiple_questions:l,judgement_questions:c,program_questions:f,completion_questions:o,subjective_questions:h,practical_questions:u,combination_questions:a,bprogram_questions:x}=d||{},p=[__spreadValues({type:"SINGLE",name:"\u5355\u9009\u9898"},i),__spreadValues({type:"MULTIPLE",name:"\u591A\u9009\u9898"},l),__spreadValues({type:"COMPLETION",name:"\u586B\u7A7A\u9898"},o),__spreadValues({type:"JUDGMENT",name:"\u5224\u65AD\u9898"},c),__spreadValues({type:"SUBJECTIVE",name:"\u7B80\u7B54\u9898"},h),__spreadValues({type:"PROGRAM",name:"\u7F16\u7A0B\u9898"},f),__spreadValues({type:"BPROGRAM",name:"\u7A0B\u5E8F\u586B\u7A7A\u9898"},x),__spreadValues({type:"PRACTICAL",name:"\u5B9E\u8BAD\u9898"},u),__spreadValues({type:"COMBINATION",name:"\u7EC4\u5408\u9898"},a)];let y=[];(v=r==null?void 0:r.question_type_position)==null||v.map((R,A)=>{p==null||p.map((P,M)=>{R.type===P.type&&y.push(P)})});const m=[];let b=0,S=0;const k=y.filter(R=>R.questions_count>0).map((R,A)=>{var P;return(P=R.questions)==null||P.forEach(M=>{m.push(M.id),b=b+M.score,S=S+1}),__spreadValues(__spreadValues({},R),{number:e[A+1]})});return{all_questions_count:S,all_score:b,questionList:k,ids:m,exam:r}},isWechatBrowser=()=>navigator.userAgent.toLowerCase().match(/MicroMessenger/i)=="micromessenger",toWechatLogin=()=>{isWechatBrowser()?window.location.href="https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx0955caba88bc37eb&redirect_uri=https%3A%2F%2Fwww.educoder.net%2fotherloginstart&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect":window.location.href="/wxlogin.html"},isMobileDevice=()=>typeof window.orientation!="undefined"||navigator.userAgent.indexOf("Mobi")!==-1,sendAppStatus=(d,v)=>{var e;try{v?(d.send(JSON.stringify({type:"toggleLockExit",data:!0})),v!=null&&v.forbid_screen&&d.send(JSON.stringify({type:"open-disabled-switchscreen"})),v!=null&&v.use_white_list&&d.send(JSON.stringify({type:"open-only-allow-runapp",data:v==null?void 0:v.white_list})),v!=null&&v.net_limit&&d.send(JSON.stringify({type:"network-close",data:(e=v==null?void 0:v.net_limit_list)==null?void 0:e.split(`
`)}))):(d.send(JSON.stringify({type:"toggleLockExit",data:!1})),d.send(JSON.stringify({type:"close-disabled-switchscreen"})),d.send(JSON.stringify({type:"close-only-allow-runapp"})),d.send(JSON.stringify({type:"network-open"})))}catch(r){}},addJumping=()=>{const d=document.querySelector('a[title="\u589E\u52A0\u586B\u7A7A"]'),v=d==null?void 0:d.querySelector("span");v&&(v.classList.remove("jumping-icon"),v.offsetWidth,v.classList.add("jumping-icon"),setTimeout(()=>{var e;(e=v==null?void 0:v.classList)==null||e.remove("jumping-icon")},2e3))},showClassroomsmodal=d=>d!=null&&d.forbid_student_visit?(antd__WEBPACK_IMPORTED_MODULE_15__.default.warning({title:"\u63D0\u793A",icon:null,centered:!0,okText:"\u6211\u77E5\u9053\u4E86",content:react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",null,react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{style:{fontWeight:600}},d==null?void 0:d.username,"\u8001\u5E08 "),"\u5DF2\u5173\u95ED\u8BE5\u8BFE\u5802\uFF0C\u5B66\u751F\u7528\u6237\u6682\u65F6\u65E0\u6CD5\u8BBF\u95EE ")}),!0):!1,getExamRestrictionInfo=d=>{const v=[];return d.is_locked&&v.push("\u8003\u8BD5\u89E3\u9501\u7801"),d.login_restrict&&v.push("\u8003\u8BD5\u767B\u5F55\u9650\u5236"),d.screen_open&&v.push("\u5207\u5C4F\u540E\u5F3A\u5236\u4EA4\u5377"),d.ip_bind&&v.push("IP\u5730\u5740\u7ED1\u5B9A"),(d.ip_limit==="pub"||d.ip_limit==="inner")&&v.push("\u9650\u5236\u8003\u8BD5\u8BBF\u95EEIP"),d.open_camera&&v.push("\u8003\u8BD5\u4E2D\u542F\u7528\u62CD\u7167\u529F\u80FD\u8FDB\u884C\u76D1\u8003\u548C\u884C\u4E3A\u5206\u6790"),d.identity_verify&&v.push("\u8003\u8BD5\u524D\u4EBA\u8138\u8EAB\u4EFD\u6838\u9A8C"),d.open_phone_video_recording&&v.push("\u8003\u8BD5\u4E2D\u5F00\u542F\u624B\u673A\u89C6\u9891\u5F55\u5236"),v.length>0?v.join("\u3001"):""},releaseRuleDataAdjust=d=>{const v=d.reduce((r,i)=>{const l=`${i.publish_time}_${i.end_time}_${i.is_admin}`;return r[l]?(r[l].group_name.push(i.group_name),r[l].group_id.push(i.group_id)):r[l]={publish_time:i.publish_time,end_time:i.end_time,is_admin:i.is_admin,group_name:[i.group_name],group_id:[i.group_id]},r},{});return Object.values(v).map(r=>__spreadProps(__spreadValues({},r),{group_name:r.group_name.flat(),group_id:r.group_id.flat()}))},showInstallWebRtcDoc=()=>new Promise((d,v)=>__async(void 0,null,function*(){const e=yield(0,_utils_fetch__WEBPACK_IMPORTED_MODULE_10__.ZP)("/api/documents/webrtc_content",{method:"get"});antd__WEBPACK_IMPORTED_MODULE_15__.default.info({title:"WebRTC\u63D2\u4EF6\u5B89\u88C5\u6559\u7A0B",width:"1000px",centered:!0,content:react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:{maxHeight:"70vh",overflow:"auto"}},react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components_RenderHtml__WEBPACK_IMPORTED_MODULE_9__.Z,{value:(e==null?void 0:e.data)||""}))}),d(e==null?void 0:e.data)}));function copyToClipboard(d){return navigator.clipboard?navigator.clipboard.writeText(d).then(()=>(console.log("Text copied to clipboard successfully!"),!0)).catch(v=>{throw console.error("Failed to copy text: ",v),v}):new Promise((v,e)=>{const r=document.createElement("textarea");r.value=d,document.body.appendChild(r),r.select();try{const i=document.execCommand("copy");document.body.removeChild(r),i?(console.log("Text copied to clipboard successfully!"),v(!0)):(console.error("Failed to copy text using execCommand."),e(!1))}catch(i){document.body.removeChild(r),console.error("Failed to copy text: ",i),e(i)}})}const isArrayBuffer=d=>Object.prototype.toString.call(d)==="[object ArrayBuffer]",parseArrayBufferAsText=(d,v="utf-8")=>isArrayBuffer(d)?new TextDecoder(v).decode(d):d,numFormat=d=>d?(d>=1e3&&(d=d/1e3+"K"),d):0,aiReviewConfigformatChecks=d=>{if(!d||d.length===0)return!0;const v=new Set,e=new Set;let r=!0,i=!0;const l=d==null?void 0:d.reduce((c,f)=>{v!=null&&v.has(f.name)&&(r=!1),v==null||v.add(f.name),e!=null&&e.has(f.content)&&(i=!1),e==null||e.add(f.content);const o=parseFloat(f.weight);return c+o},0);return r?i?parseFloat(l.toFixed(2))!=100?(antd__WEBPACK_IMPORTED_MODULE_14__.ZP.warning("\u6240\u6709\u8BC4\u5206\u9879\u76EE\u7684\u6743\u91CD\u4E4B\u548C\u5FC5\u987B\u4E3A100%"),!1):!0:(antd__WEBPACK_IMPORTED_MODULE_14__.ZP.warning("\u8BC4\u5206\u6807\u51C6\u5185\u5BB9\u4E0D\u80FD\u91CD\u590D!"),!1):(antd__WEBPACK_IMPORTED_MODULE_14__.ZP.warning("\u8BC4\u5206\u9879\u76EE\u5185\u5BB9\u4E0D\u80FD\u91CD\u590D!"),!1)}},46801:function(d,v,e){"use strict";e.d(v,{t:function(){return r}});const r=l=>{var c=/^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/;return c.test(l)},i=l=>{var c=/^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.$/;return c.test(l)}},67704:function(d,v,e){"use strict";e.d(v,{Il:function(){return f},Ov:function(){return o},T$:function(){return u}});var r=e(38127),i=e(59301),l=e(35338),c=["element"],f=i.createContext({});function o(){return i.useContext(f)}function h(){var y=(0,l.TH)(),m=o(),b=m.clientRoutes,S=(0,l.fp)(b,y.pathname);return S||[]}function u(){var y,m=h().slice(-1),b=((y=m[0])===null||y===void 0?void 0:y.route)||{},S=b.element,k=(0,r.Z)(b,c);return k}function a(){var y=h(),m=o(),b=m.serverLoaderData,S=m.basename,k=React.useState(function(){var M={},B=!1;return y.forEach(function(N){var K=b[N.route.id];K&&(Object.assign(M,K),B=!0)}),B?M:void 0}),R=_slicedToArray(k,2),A=R[0],P=R[1];return React.useEffect(function(){window.__UMI_LOADER_DATA__||Promise.all(y.filter(function(M){return M.route.hasServerLoader}).map(function(M){return new Promise(function(B){fetchServerLoader({id:M.route.id,basename:S,cb:B})})})).then(function(M){if(M.length){var B={};M.forEach(function(N){Object.assign(B,N)}),P(B)}})},[]),{data:A}}function x(){var y=useRouteData(),m=o();return{data:m.clientLoaderData[y.route.id]}}function p(){var y=a(),m=x();return{data:_objectSpread(_objectSpread({},y.data),m.data)}}},91392:function(d){var v={en_GB:"en-gb",en_US:"en",zh_CN:"zh-cn",zh_TW:"zh-tw"},e=function(i){var l=v[i];return l||i.split("_")[0]};d.exports=function(r,i,l){var c=i.prototype.locale;i.prototype.locale=function(f){return typeof f=="string"&&(f=e(f)),c.call(this,f)}}},92806:function(d,v,e){"use strict";var r=e(41799),i=e(59301),l=e(3113),c=e(67797);function f(h){return!!(h&&h.then)}const o=h=>{const{type:u,children:a,prefixCls:x,buttonProps:p,close:y,autoFocus:m,emitEvent:b,isSilent:S,quitOnNullishReturnValue:k,actionFn:R}=h,A=i.useRef(!1),P=i.useRef(null),[M,B]=(0,r.Z)(!1),N=function(){y==null||y.apply(void 0,arguments)};i.useEffect(()=>{let W=null;return m&&(W=setTimeout(()=>{var ae;(ae=P.current)===null||ae===void 0||ae.focus()})),()=>{W&&clearTimeout(W)}},[]);const K=W=>{f(W)&&(B(!0),W.then(function(){B(!1,!0),N.apply(void 0,arguments),A.current=!1},ae=>{if(B(!1,!0),A.current=!1,!(S!=null&&S()))return Promise.reject(ae)}))},H=W=>{if(A.current)return;if(A.current=!0,!R){N();return}let ae;if(b){if(ae=R(W),k&&!f(ae)){A.current=!1,N(W);return}}else if(R.length)ae=R(y),A.current=!1;else if(ae=R(),!ae){N();return}K(ae)};return i.createElement(l.ZP,Object.assign({},(0,c.n)(u),{onClick:H,loading:M,prefixCls:x},p,{ref:P}),a)};v.Z=o},53487:function(d,v,e){"use strict";e.d(v,{Z:function(){return o},i:function(){return f}});var r=e(18929),i=e(59301),l=e(92736),c=e(36355);function f(h){return function(a){return i.createElement(l.ZP,{theme:{token:{motion:!1,zIndexPopupBase:0}}},i.createElement(h,Object.assign({},a)))}}function o(h,u,a,x){function p(y){const{prefixCls:m,style:b}=y,S=i.useRef(null),[k,R]=i.useState(0),[A,P]=i.useState(0),[M,B]=(0,r.Z)(!1,{value:y.open}),{getPrefixCls:N}=i.useContext(c.E_),K=N(u||"select",m);i.useEffect(()=>{if(B(!0),typeof ResizeObserver!="undefined"){const W=new ResizeObserver(ne=>{const oe=ne[0].target;R(oe.offsetHeight+8),P(oe.offsetWidth)}),ae=setInterval(()=>{var ne;const oe=a?`.${a(K)}`:`.${K}-dropdown`,q=(ne=S.current)===null||ne===void 0?void 0:ne.querySelector(oe);q&&(clearInterval(ae),W.observe(q))},10);return()=>{clearInterval(ae),W.disconnect()}}},[]);let H=Object.assign(Object.assign({},y),{style:Object.assign(Object.assign({},b),{margin:0}),open:M,visible:M,getPopupContainer:()=>S.current});return x&&(H=x(H)),i.createElement("div",{ref:S,style:{paddingBottom:k,position:"relative",minWidth:A}},i.createElement(h,Object.assign({},H)))}return f(p)}},36785:function(d,v,e){"use strict";e.d(v,{o2:function(){return f},yT:function(){return o}});var r=e(94480),i=e(33166);const l=i.i.map(h=>`${h}-inverse`),c=["success","processing","error","default","warning"];function f(h){return(arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0)?[].concat((0,r.Z)(l),(0,r.Z)(i.i)).includes(h):i.i.includes(h)}function o(h){return c.includes(h)}},47729:function(d,v,e){"use strict";e.d(v,{Z:function(){return c}});var r=e(99267),i=e(59301);function l(f,o,h){return typeof f=="boolean"?f:o===void 0?!!h:o!==!1&&o!==null}function c(f,o,h){let u=arguments.length>3&&arguments[3]!==void 0?arguments[3]:i.createElement(r.Z,null),a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(!l(f,o,a))return[!1,null];const p=typeof o=="boolean"||o===void 0||o===null?u:o;return[!0,h?h(p):p]}},62892:function(d,v,e){"use strict";e.d(v,{m:function(){return h}});const r=()=>({height:0,opacity:0}),i=u=>{const{scrollHeight:a}=u;return{height:a,opacity:1}},l=u=>({height:u?u.offsetHeight:0}),c=(u,a)=>(a==null?void 0:a.deadline)===!0||a.propertyName==="height",f=function(){return{motionName:`${arguments.length>0&&arguments[0]!==void 0?arguments[0]:"ant"}-motion-collapse`,onAppearStart:r,onEnterStart:r,onAppearActive:i,onEnterActive:i,onLeaveStart:l,onLeaveActive:r,onAppearEnd:c,onEnterEnd:c,onLeaveEnd:c,motionDeadline:500}},o=null,h=(u,a,x)=>x!==void 0?x:`${u}-${a}`;v.Z=f},79676:function(d,v,e){"use strict";e.d(v,{Z:function(){return o}});var r=e(19447);function i(h,u,a,x){if(x===!1)return{adjustX:!1,adjustY:!1};const p=x&&typeof x=="object"?x:{},y={};switch(h){case"top":case"bottom":y.shiftX=u.dropdownArrowOffset*2+a;break;case"left":case"right":y.shiftY=u.dropdownArrowOffsetVertical*2+a;break}const m=Object.assign(Object.assign({},y),p);return m.shiftX||(m.adjustX=!0),m.shiftY||(m.adjustY=!0),m}const l={left:{points:["cr","cl"]},right:{points:["cl","cr"]},top:{points:["bc","tc"]},bottom:{points:["tc","bc"]},topLeft:{points:["bl","tl"]},leftTop:{points:["tr","tl"]},topRight:{points:["br","tr"]},rightTop:{points:["tl","tr"]},bottomRight:{points:["tr","br"]},rightBottom:{points:["bl","br"]},bottomLeft:{points:["tl","bl"]},leftBottom:{points:["br","bl"]}},c={topLeft:{points:["bl","tc"]},leftTop:{points:["tr","cl"]},topRight:{points:["br","tc"]},rightTop:{points:["tl","cr"]},bottomRight:{points:["tr","bc"]},rightBottom:{points:["bl","cr"]},bottomLeft:{points:["tl","bc"]},leftBottom:{points:["br","cl"]}},f=new Set(["topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]);function o(h){const{arrowWidth:u,autoAdjustOverflow:a,arrowPointAtCenter:x,offset:p,borderRadius:y,visibleFirst:m}=h,b=u/2,S={};return Object.keys(l).forEach(k=>{const R=x&&c[k]||l[k],A=Object.assign(Object.assign({},R),{offset:[0,0]});switch(S[k]=A,f.has(k)&&(A.autoArrow=!1),k){case"top":case"topLeft":case"topRight":A.offset[1]=-b-p;break;case"bottom":case"bottomLeft":case"bottomRight":A.offset[1]=b+p;break;case"left":case"leftTop":case"leftBottom":A.offset[0]=-b-p;break;case"right":case"rightTop":case"rightBottom":A.offset[0]=b+p;break}const P=(0,r.fS)({contentRadius:y,limitVerticalRadius:!0});if(x)switch(k){case"topLeft":case"bottomLeft":A.offset[0]=-P.dropdownArrowOffset-b;break;case"topRight":case"bottomRight":A.offset[0]=P.dropdownArrowOffset+b;break;case"leftTop":case"rightTop":A.offset[1]=-P.dropdownArrowOffset-b;break;case"leftBottom":case"rightBottom":A.offset[1]=P.dropdownArrowOffset+b;break}A.overflow=i(k,P,u,a),m&&(A.htmlRegion="visibleFirst")}),S}},92343:function(d,v,e){"use strict";var r;e.d(v,{M2:function(){return c},Tm:function(){return o},l$:function(){return l},wm:function(){return f}});var i=e(59301);const{isValidElement:l}=r||(r=e.t(i,2));function c(h){return h&&l(h)&&h.type===i.Fragment}function f(h,u,a){return l(h)?i.cloneElement(h,typeof a=="function"?a(h.props||{}):a):u}function o(h,u){return f(h,h,u)}},69507:function(d,v,e){"use strict";e.d(v,{ZP:function(){return o},c4:function(){return l},m9:function(){return h}});var r=e(59301),i=e(88088);const l=["xxl","xl","lg","md","sm","xs"],c=u=>({xs:`(max-width: ${u.screenXSMax}px)`,sm:`(min-width: ${u.screenSM}px)`,md:`(min-width: ${u.screenMD}px)`,lg:`(min-width: ${u.screenLG}px)`,xl:`(min-width: ${u.screenXL}px)`,xxl:`(min-width: ${u.screenXXL}px)`}),f=u=>{const a=u,x=[].concat(l).reverse();return x.forEach((p,y)=>{const m=p.toUpperCase(),b=`screen${m}Min`,S=`screen${m}`;if(!(a[b]<=a[S]))throw new Error(`${b}<=${S} fails : !(${a[b]}<=${a[S]})`);if(y<x.length-1){const k=`screen${m}Max`;if(!(a[S]<=a[k]))throw new Error(`${S}<=${k} fails : !(${a[S]}<=${a[k]})`);const A=`screen${x[y+1].toUpperCase()}Min`;if(!(a[k]<=a[A]))throw new Error(`${k}<=${A} fails : !(${a[k]}<=${a[A]})`)}}),u};function o(){const[,u]=(0,i.Z)(),a=c(f(u));return r.useMemo(()=>{const x=new Map;let p=-1,y={};return{matchHandlers:{},dispatch(m){return y=m,x.forEach(b=>b(y)),x.size>=1},subscribe(m){return x.size||this.register(),p+=1,x.set(p,m),m(y),p},unsubscribe(m){x.delete(m),x.size||this.unregister()},unregister(){Object.keys(a).forEach(m=>{const b=a[m],S=this.matchHandlers[b];S==null||S.mql.removeListener(S==null?void 0:S.listener)}),x.clear()},register(){Object.keys(a).forEach(m=>{const b=a[m],S=R=>{let{matches:A}=R;this.dispatch(Object.assign(Object.assign({},y),{[m]:A}))},k=window.matchMedia(b);k.addListener(S),this.matchHandlers[b]={mql:k,listener:S},S(k)})},responsiveMap:a}},[u])}const h=(u,a)=>{if(a&&typeof a=="object")for(let x=0;x<l.length;x++){const p=l[x];if(u[p]&&a[p]!==void 0)return a[p]}}},14088:function(d,v,e){"use strict";e.d(v,{Z:function(){return ae}});var r=e(92310),i=e.n(r),l=e(8654),c=e(29194),f=e(59301),o=e(36355),h=e(92343),u=e(83116);const a=ne=>{const{componentCls:oe,colorPrimary:q}=ne;return{[oe]:{position:"absolute",background:"transparent",pointerEvents:"none",boxSizing:"border-box",color:`var(--wave-color, ${q})`,boxShadow:"0 0 0 0 currentcolor",opacity:.2,"&.wave-motion-appear":{transition:[`box-shadow 0.4s ${ne.motionEaseOutCirc}`,`opacity 2s ${ne.motionEaseOutCirc}`].join(","),"&-active":{boxShadow:"0 0 0 6px currentcolor",opacity:0},"&.wave-quick":{transition:[`box-shadow 0.3s ${ne.motionEaseInOut}`,`opacity 0.35s ${ne.motionEaseInOut}`].join(",")}}}}};var x=(0,u.Z)("Wave",ne=>[a(ne)]),p=e(70425),y=e(16089),m=e(77900),b=e(1585);function S(ne){const oe=(ne||"").match(/rgba?\((\d*), (\d*), (\d*)(, [\d.]*)?\)/);return oe&&oe[1]&&oe[2]&&oe[3]?!(oe[1]===oe[2]&&oe[2]===oe[3]):!0}function k(ne){return ne&&ne!=="#fff"&&ne!=="#ffffff"&&ne!=="rgb(255, 255, 255)"&&ne!=="rgba(255, 255, 255, 1)"&&S(ne)&&!/rgba\((?:\d*, ){3}0\)/.test(ne)&&ne!=="transparent"}function R(ne){const{borderTopColor:oe,borderColor:q,backgroundColor:X}=getComputedStyle(ne);return k(oe)?oe:k(q)?q:k(X)?X:null}var A=e(4572);function P(ne){return Number.isNaN(ne)?0:ne}const M=ne=>{const{className:oe,target:q,component:X}=ne,V=f.useRef(null),[se,ee]=f.useState(null),[J,le]=f.useState([]),[z,j]=f.useState(0),[ie,me]=f.useState(0),[Se,Ie]=f.useState(0),[He,je]=f.useState(0),[Dt,ht]=f.useState(!1),It={left:z,top:ie,width:Se,height:He,borderRadius:J.map(ar=>`${ar}px`).join(" ")};se&&(It["--wave-color"]=se);function Zt(){const ar=getComputedStyle(q);ee(R(q));const $e=ar.position==="static",{borderLeftWidth:gt,borderTopWidth:Mt}=ar;j($e?q.offsetLeft:P(-parseFloat(gt))),me($e?q.offsetTop:P(-parseFloat(Mt))),Ie(q.offsetWidth),je(q.offsetHeight);const{borderTopLeftRadius:et,borderTopRightRadius:ft,borderBottomLeftRadius:ot,borderBottomRightRadius:Je}=ar;le([et,ft,Je,ot].map(Ne=>P(parseFloat(Ne))))}if(f.useEffect(()=>{if(q){const ar=(0,y.Z)(()=>{Zt(),ht(!0)});let $e;return typeof ResizeObserver!="undefined"&&($e=new ResizeObserver(Zt),$e.observe(q)),()=>{y.Z.cancel(ar),$e==null||$e.disconnect()}}},[]),!Dt)return null;const Rt=(X==="Checkbox"||X==="Radio")&&(q==null?void 0:q.classList.contains(A.A));return f.createElement(m.default,{visible:!0,motionAppear:!0,motionName:"wave-motion",motionDeadline:5e3,onAppearEnd:(ar,$e)=>{var gt;if($e.deadline||$e.propertyName==="opacity"){const Mt=(gt=V.current)===null||gt===void 0?void 0:gt.parentElement;(0,b.v)(Mt).then(()=>{Mt==null||Mt.remove()})}return!1}},ar=>{let{className:$e}=ar;return f.createElement("div",{ref:V,className:i()(oe,{"wave-quick":Rt},$e),style:It})})};var N=(ne,oe)=>{var q;const{component:X}=oe;if(X==="Checkbox"&&!(!((q=ne.querySelector("input"))===null||q===void 0)&&q.checked))return;const V=document.createElement("div");V.style.position="absolute",V.style.left="0px",V.style.top="0px",ne==null||ne.insertBefore(V,ne==null?void 0:ne.firstChild),(0,b.s)(f.createElement(M,Object.assign({},oe,{target:ne})),V)},K=e(88088);function H(ne,oe,q){const{wave:X}=f.useContext(o.E_),[,V,se]=(0,K.Z)(),ee=(0,p.useEvent)(z=>{const j=ne.current;if(X!=null&&X.disabled||!j)return;const ie=j.querySelector(`.${A.A}`)||j,{showEffect:me}=X||{};(me||N)(ie,{className:oe,token:V,component:q,event:z,hashId:se})}),J=f.useRef();return z=>{y.Z.cancel(J.current),J.current=(0,y.Z)(()=>{ee(z)})}}var ae=ne=>{const{children:oe,disabled:q,component:X}=ne,{getPrefixCls:V}=(0,f.useContext)(o.E_),se=(0,f.useRef)(null),ee=V("wave"),[,J]=x(ee),le=H(se,i()(ee,J),X);if(f.useEffect(()=>{const j=se.current;if(!j||j.nodeType!==1||q)return;const ie=me=>{!(0,c.Z)(me.target)||!j.getAttribute||j.getAttribute("disabled")||j.disabled||j.className.includes("disabled")||j.className.includes("-leave")||le(me)};return j.addEventListener("click",ie,!0),()=>{j.removeEventListener("click",ie,!0)}},[q]),!f.isValidElement(oe))return oe!=null?oe:null;const z=(0,l.Yr)(oe)?(0,l.sQ)(oe.ref,se):se;return(0,h.Tm)(oe,{ref:z})}},4572:function(d,v,e){"use strict";e.d(v,{A:function(){return r}});const r="ant-wave-target"},67797:function(d,v,e){"use strict";e.d(v,{n:function(){return Ot},Z:function(){return Wt}});var r=e(59301),i=e(92310),l=e.n(i),c=e(2738),f=e(8654),o=e(14088),h=e(36355),u=e(1684),a=e(19716),x=e(33234),p=e(88088),y=function(Ce,ce){var pe={};for(var Ct in Ce)Object.prototype.hasOwnProperty.call(Ce,Ct)&&ce.indexOf(Ct)<0&&(pe[Ct]=Ce[Ct]);if(Ce!=null&&typeof Object.getOwnPropertySymbols=="function")for(var Ae=0,Ct=Object.getOwnPropertySymbols(Ce);Ae<Ct.length;Ae++)ce.indexOf(Ct[Ae])<0&&Object.prototype.propertyIsEnumerable.call(Ce,Ct[Ae])&&(pe[Ct[Ae]]=Ce[Ct[Ae]]);return pe};const m=r.createContext(void 0);var S=Ce=>{const{getPrefixCls:ce,direction:pe}=r.useContext(h.E_),{prefixCls:Ct,size:Ae,className:st}=Ce,Gt=y(Ce,["prefixCls","size","className"]),bt=ce("btn-group",Ct),[,,Te]=(0,p.Z)();let yt="";switch(Ae){case"large":yt="lg";break;case"small":yt="sm";break;case"middle":case void 0:break;default:}const ze=l()(bt,{[`${bt}-${yt}`]:yt,[`${bt}-rtl`]:pe==="rtl"},st,Te);return r.createElement(m.Provider,{value:Ae},r.createElement("div",Object.assign({},Gt,{className:ze})))},k=e(92343);const R=/^[\u4e00-\u9fa5]{2}$/,A=R.test.bind(R);function P(Ce){return typeof Ce=="string"}function M(Ce){return Ce==="text"||Ce==="link"}function B(Ce,ce){if(Ce==null)return;const pe=ce?" ":"";return typeof Ce!="string"&&typeof Ce!="number"&&P(Ce.type)&&A(Ce.props.children)?(0,k.Tm)(Ce,{children:Ce.props.children.split("").join(pe)}):P(Ce)?A(Ce)?r.createElement("span",null,Ce.split("").join(pe)):r.createElement("span",null,Ce):(0,k.M2)(Ce)?r.createElement("span",null,Ce):Ce}function N(Ce,ce){let pe=!1;const Ct=[];return r.Children.forEach(Ce,Ae=>{const st=typeof Ae,Gt=st==="string"||st==="number";if(pe&&Gt){const bt=Ct.length-1,Te=Ct[bt];Ct[bt]=`${Te}${Ae}`}else Ct.push(Ae);pe=Gt}),r.Children.map(Ct,Ae=>B(Ae,ce))}const K=null,H=null,W=null;var ne=(0,r.forwardRef)((Ce,ce)=>{const{className:pe,style:Ct,children:Ae,prefixCls:st}=Ce,Gt=l()(`${st}-icon`,pe);return r.createElement("span",{ref:ce,className:Gt,style:Ct},Ae)}),oe=e(58617),q=e(77900);const X=(0,r.forwardRef)((Ce,ce)=>{let{prefixCls:pe,className:Ct,style:Ae,iconClassName:st}=Ce;const Gt=l()(`${pe}-loading-icon`,Ct);return r.createElement(ne,{prefixCls:pe,className:Gt,style:Ae,ref:ce},r.createElement(oe.Z,{className:st}))}),V=()=>({width:0,opacity:0,transform:"scale(0)"}),se=Ce=>({width:Ce.scrollWidth,opacity:1,transform:"scale(1)"});var J=Ce=>{const{prefixCls:ce,loading:pe,existIcon:Ct,className:Ae,style:st}=Ce,Gt=!!pe;return Ct?r.createElement(X,{prefixCls:ce,className:Ae,style:st}):r.createElement(q.default,{visible:Gt,motionName:`${ce}-loading-icon-motion`,removeOnLeave:!0,onAppearStart:V,onAppearActive:se,onEnterStart:V,onEnterActive:se,onLeaveStart:se,onLeaveActive:V},(bt,Te)=>{let{className:yt,style:ze}=bt;return r.createElement(X,{prefixCls:ce,className:Ae,style:Object.assign(Object.assign({},st),ze),ref:Te,iconClassName:yt})})},le=e(17313),z=e(37613),j=e(83116);const ie=(Ce,ce)=>({[`> span, > ${Ce}`]:{"&:not(:last-child)":{[`&, & > ${Ce}`]:{"&:not(:disabled)":{borderInlineEndColor:ce}}},"&:not(:first-child)":{[`&, & > ${Ce}`]:{"&:not(:disabled)":{borderInlineStartColor:ce}}}}});var Se=Ce=>{const{componentCls:ce,fontSize:pe,lineWidth:Ct,groupBorderColor:Ae,colorErrorHover:st}=Ce;return{[`${ce}-group`]:[{position:"relative",display:"inline-flex",[`> span, > ${ce}`]:{"&:not(:last-child)":{[`&, & > ${ce}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},"&:not(:first-child)":{marginInlineStart:-Ct,[`&, & > ${ce}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}},[ce]:{position:"relative",zIndex:1,"&:hover,\n &:focus,\n &:active":{zIndex:2},"&[disabled]":{zIndex:0}},[`${ce}-icon-only`]:{fontSize:pe}},ie(`${ce}-primary`,Ae),ie(`${ce}-danger`,st)]}};const Ie=Ce=>{const{componentCls:ce,iconCls:pe,fontWeight:Ct}=Ce;return{[ce]:{outline:"none",position:"relative",display:"inline-block",fontWeight:Ct,whiteSpace:"nowrap",textAlign:"center",backgroundImage:"none",backgroundColor:"transparent",border:`${Ce.lineWidth}px ${Ce.lineType} transparent`,cursor:"pointer",transition:`all ${Ce.motionDurationMid} ${Ce.motionEaseInOut}`,userSelect:"none",touchAction:"manipulation",lineHeight:Ce.lineHeight,color:Ce.colorText,"&:disabled > *":{pointerEvents:"none"},"> span":{display:"inline-block"},[`${ce}-icon`]:{lineHeight:0},[`> ${pe} + span, > span + ${pe}`]:{marginInlineStart:Ce.marginXS},[`&:not(${ce}-icon-only) > ${ce}-icon`]:{[`&${ce}-loading-icon, &:not(:last-child)`]:{marginInlineEnd:Ce.marginXS}},"> a":{color:"currentColor"},"&:not(:disabled)":Object.assign({},(0,le.Qy)(Ce)),[`&-icon-only${ce}-compact-item`]:{flex:"none"},[`&-compact-item${ce}-primary`]:{[`&:not([disabled]) + ${ce}-compact-item${ce}-primary:not([disabled])`]:{position:"relative","&:before":{position:"absolute",top:-Ce.lineWidth,insetInlineStart:-Ce.lineWidth,display:"inline-block",width:Ce.lineWidth,height:`calc(100% + ${Ce.lineWidth*2}px)`,backgroundColor:Ce.colorPrimaryHover,content:'""'}}},"&-compact-vertical-item":{[`&${ce}-primary`]:{[`&:not([disabled]) + ${ce}-compact-vertical-item${ce}-primary:not([disabled])`]:{position:"relative","&:before":{position:"absolute",top:-Ce.lineWidth,insetInlineStart:-Ce.lineWidth,display:"inline-block",width:`calc(100% + ${Ce.lineWidth*2}px)`,height:Ce.lineWidth,backgroundColor:Ce.colorPrimaryHover,content:'""'}}}}}}},He=(Ce,ce,pe)=>({[`&:not(:disabled):not(${Ce}-disabled)`]:{"&:hover":ce,"&:active":pe}}),je=Ce=>({minWidth:Ce.controlHeight,paddingInlineStart:0,paddingInlineEnd:0,borderRadius:"50%"}),Dt=Ce=>({borderRadius:Ce.controlHeight,paddingInlineStart:Ce.controlHeight/2,paddingInlineEnd:Ce.controlHeight/2}),ht=Ce=>({cursor:"not-allowed",borderColor:Ce.borderColorDisabled,color:Ce.colorTextDisabled,backgroundColor:Ce.colorBgContainerDisabled,boxShadow:"none"}),It=(Ce,ce,pe,Ct,Ae,st,Gt,bt)=>({[`&${Ce}-background-ghost`]:Object.assign(Object.assign({color:pe||void 0,backgroundColor:ce,borderColor:Ct||void 0,boxShadow:"none"},He(Ce,Object.assign({backgroundColor:ce},Gt),Object.assign({backgroundColor:ce},bt))),{"&:disabled":{cursor:"not-allowed",color:Ae||void 0,borderColor:st||void 0}})}),Zt=Ce=>({[`&:disabled, &${Ce.componentCls}-disabled`]:Object.assign({},ht(Ce))}),Rt=Ce=>Object.assign({},Zt(Ce)),ar=Ce=>({[`&:disabled, &${Ce.componentCls}-disabled`]:{cursor:"not-allowed",color:Ce.colorTextDisabled}}),$e=Ce=>Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},Rt(Ce)),{backgroundColor:Ce.defaultBg,borderColor:Ce.defaultBorderColor,color:Ce.defaultColor,boxShadow:Ce.defaultShadow}),He(Ce.componentCls,{color:Ce.colorPrimaryHover,borderColor:Ce.colorPrimaryHover},{color:Ce.colorPrimaryActive,borderColor:Ce.colorPrimaryActive})),It(Ce.componentCls,Ce.ghostBg,Ce.defaultGhostColor,Ce.defaultGhostBorderColor,Ce.colorTextDisabled,Ce.colorBorder)),{[`&${Ce.componentCls}-dangerous`]:Object.assign(Object.assign(Object.assign({color:Ce.colorError,borderColor:Ce.colorError},He(Ce.componentCls,{color:Ce.colorErrorHover,borderColor:Ce.colorErrorBorderHover},{color:Ce.colorErrorActive,borderColor:Ce.colorErrorActive})),It(Ce.componentCls,Ce.ghostBg,Ce.colorError,Ce.colorError,Ce.colorTextDisabled,Ce.colorBorder)),Zt(Ce))}),gt=Ce=>Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},Rt(Ce)),{color:Ce.primaryColor,backgroundColor:Ce.colorPrimary,boxShadow:Ce.primaryShadow}),He(Ce.componentCls,{color:Ce.colorTextLightSolid,backgroundColor:Ce.colorPrimaryHover},{color:Ce.colorTextLightSolid,backgroundColor:Ce.colorPrimaryActive})),It(Ce.componentCls,Ce.ghostBg,Ce.colorPrimary,Ce.colorPrimary,Ce.colorTextDisabled,Ce.colorBorder,{color:Ce.colorPrimaryHover,borderColor:Ce.colorPrimaryHover},{color:Ce.colorPrimaryActive,borderColor:Ce.colorPrimaryActive})),{[`&${Ce.componentCls}-dangerous`]:Object.assign(Object.assign(Object.assign({backgroundColor:Ce.colorError,boxShadow:Ce.dangerShadow,color:Ce.dangerColor},He(Ce.componentCls,{backgroundColor:Ce.colorErrorHover},{backgroundColor:Ce.colorErrorActive})),It(Ce.componentCls,Ce.ghostBg,Ce.colorError,Ce.colorError,Ce.colorTextDisabled,Ce.colorBorder,{color:Ce.colorErrorHover,borderColor:Ce.colorErrorHover},{color:Ce.colorErrorActive,borderColor:Ce.colorErrorActive})),Zt(Ce))}),Mt=Ce=>Object.assign(Object.assign({},$e(Ce)),{borderStyle:"dashed"}),et=Ce=>Object.assign(Object.assign(Object.assign({color:Ce.colorLink},He(Ce.componentCls,{color:Ce.colorLinkHover,backgroundColor:Ce.linkHoverBg},{color:Ce.colorLinkActive})),ar(Ce)),{[`&${Ce.componentCls}-dangerous`]:Object.assign(Object.assign({color:Ce.colorError},He(Ce.componentCls,{color:Ce.colorErrorHover},{color:Ce.colorErrorActive})),ar(Ce))}),ft=Ce=>Object.assign(Object.assign(Object.assign({},He(Ce.componentCls,{color:Ce.colorText,backgroundColor:Ce.textHoverBg},{color:Ce.colorText,backgroundColor:Ce.colorBgTextActive})),ar(Ce)),{[`&${Ce.componentCls}-dangerous`]:Object.assign(Object.assign({color:Ce.colorError},ar(Ce)),He(Ce.componentCls,{color:Ce.colorErrorHover,backgroundColor:Ce.colorErrorBg},{color:Ce.colorErrorHover,backgroundColor:Ce.colorErrorBg}))}),ot=Ce=>{const{componentCls:ce}=Ce;return{[`${ce}-default`]:$e(Ce),[`${ce}-primary`]:gt(Ce),[`${ce}-dashed`]:Mt(Ce),[`${ce}-link`]:et(Ce),[`${ce}-text`]:ft(Ce),[`${ce}-ghost`]:It(Ce.componentCls,Ce.ghostBg,Ce.colorBgContainer,Ce.colorBgContainer,Ce.colorTextDisabled,Ce.colorBorder)}},Je=function(Ce){let ce=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";const{componentCls:pe,controlHeight:Ct,fontSize:Ae,lineHeight:st,lineWidth:Gt,borderRadius:bt,buttonPaddingHorizontal:Te,iconCls:yt}=Ce,ze=Math.max(0,(Ct-Ae*st)/2-Gt),xe=`${pe}-icon-only`;return[{[`${pe}${ce}`]:{fontSize:Ae,height:Ct,padding:`${ze}px ${Te}px`,borderRadius:bt,[`&${xe}`]:{width:Ct,paddingInlineStart:0,paddingInlineEnd:0,[`&${pe}-round`]:{width:"auto"},[yt]:{fontSize:Ce.buttonIconOnlyFontSize}},[`&${pe}-loading`]:{opacity:Ce.opacityLoading,cursor:"default"},[`${pe}-loading-icon`]:{transition:`width ${Ce.motionDurationSlow} ${Ce.motionEaseInOut}, opacity ${Ce.motionDurationSlow} ${Ce.motionEaseInOut}`}}},{[`${pe}${pe}-circle${ce}`]:je(Ce)},{[`${pe}${pe}-round${ce}`]:Dt(Ce)}]},Ne=Ce=>Je((0,z.TS)(Ce,{fontSize:Ce.contentFontSize})),ye=Ce=>{const ce=(0,z.TS)(Ce,{controlHeight:Ce.controlHeightSM,fontSize:Ce.contentFontSizeSM,padding:Ce.paddingXS,buttonPaddingHorizontal:Ce.paddingInlineSM,borderRadius:Ce.borderRadiusSM,buttonIconOnlyFontSize:Ce.onlyIconSizeSM});return Je(ce,`${Ce.componentCls}-sm`)},ke=Ce=>{const ce=(0,z.TS)(Ce,{controlHeight:Ce.controlHeightLG,fontSize:Ce.contentFontSizeLG,buttonPaddingHorizontal:Ce.paddingInlineLG,borderRadius:Ce.borderRadiusLG,buttonIconOnlyFontSize:Ce.onlyIconSizeLG});return Je(ce,`${Ce.componentCls}-lg`)},Ge=Ce=>{const{componentCls:ce}=Ce;return{[ce]:{[`&${ce}-block`]:{width:"100%"}}}},We=Ce=>{const{paddingInline:ce,onlyIconSize:pe}=Ce;return(0,z.TS)(Ce,{buttonPaddingHorizontal:ce,buttonIconOnlyFontSize:pe})},Xe=Ce=>({fontWeight:400,defaultShadow:`0 ${Ce.controlOutlineWidth}px 0 ${Ce.controlTmpOutline}`,primaryShadow:`0 ${Ce.controlOutlineWidth}px 0 ${Ce.controlOutline}`,dangerShadow:`0 ${Ce.controlOutlineWidth}px 0 ${Ce.colorErrorOutline}`,primaryColor:Ce.colorTextLightSolid,dangerColor:Ce.colorTextLightSolid,borderColorDisabled:Ce.colorBorder,defaultGhostColor:Ce.colorBgContainer,ghostBg:"transparent",defaultGhostBorderColor:Ce.colorBgContainer,paddingInline:Ce.paddingContentHorizontal-Ce.lineWidth,paddingInlineLG:Ce.paddingContentHorizontal-Ce.lineWidth,paddingInlineSM:8-Ce.lineWidth,onlyIconSize:Ce.fontSizeLG,onlyIconSizeSM:Ce.fontSizeLG-2,onlyIconSizeLG:Ce.fontSizeLG+2,groupBorderColor:Ce.colorPrimaryHover,linkHoverBg:"transparent",textHoverBg:Ce.colorBgTextHover,defaultColor:Ce.colorText,defaultBg:Ce.colorBgContainer,defaultBorderColor:Ce.colorBorder,defaultBorderColorDisabled:Ce.colorBorder,contentFontSize:Ce.fontSize,contentFontSizeSM:Ce.fontSize,contentFontSizeLG:Ce.fontSizeLG});var ut=(0,j.Z)("Button",Ce=>{const ce=We(Ce);return[Ie(ce),ye(ce),Ne(ce),ke(ce),Ge(ce),ot(ce),Se(ce)]},Xe),pt=e(74207);function or(Ce,ce){return{[`&-item:not(${ce}-last-item)`]:{marginBottom:-Ce.lineWidth},"&-item":{"&:hover,&:focus,&:active":{zIndex:2},"&[disabled]":{zIndex:0}}}}function tr(Ce,ce){return{[`&-item:not(${ce}-first-item):not(${ce}-last-item)`]:{borderRadius:0},[`&-item${ce}-first-item:not(${ce}-last-item)`]:{[`&, &${Ce}-sm, &${Ce}-lg`]:{borderEndEndRadius:0,borderEndStartRadius:0}},[`&-item${ce}-last-item:not(${ce}-first-item)`]:{[`&, &${Ce}-sm, &${Ce}-lg`]:{borderStartStartRadius:0,borderStartEndRadius:0}}}}function Me(Ce){const ce=`${Ce.componentCls}-compact-vertical`;return{[ce]:Object.assign(Object.assign({},or(Ce,ce)),tr(Ce.componentCls,ce))}}var tt=(0,j.b)(["Button","compact"],Ce=>{const ce=We(Ce);return[(0,pt.c)(ce),Me(ce)]},Xe),Yt=function(Ce,ce){var pe={};for(var Ct in Ce)Object.prototype.hasOwnProperty.call(Ce,Ct)&&ce.indexOf(Ct)<0&&(pe[Ct]=Ce[Ct]);if(Ce!=null&&typeof Object.getOwnPropertySymbols=="function")for(var Ae=0,Ct=Object.getOwnPropertySymbols(Ce);Ae<Ct.length;Ae++)ce.indexOf(Ct[Ae])<0&&Object.prototype.propertyIsEnumerable.call(Ce,Ct[Ae])&&(pe[Ct[Ae]]=Ce[Ct[Ae]]);return pe};function Ot(Ce){return Ce==="danger"?{danger:!0}:{type:Ce}}function zt(Ce){if(typeof Ce=="object"&&Ce){const ce=Ce==null?void 0:Ce.delay;return{loading:!1,delay:!Number.isNaN(ce)&&typeof ce=="number"?ce:0}}return{loading:!!Ce,delay:0}}const Ht=(Ce,ce)=>{var pe,Ct;const{loading:Ae=!1,prefixCls:st,type:Gt="default",danger:bt,shape:Te="default",size:yt,styles:ze,disabled:xe,className:dt,rootClassName:Pt,children:Be,icon:Or,ghost:mt=!1,block:qr=!1,htmlType:an="button",classNames:Nt,style:qt={}}=Ce,Lt=Yt(Ce,["loading","prefixCls","type","danger","shape","size","styles","disabled","className","rootClassName","children","icon","ghost","block","htmlType","classNames","style"]),{getPrefixCls:Xt,autoInsertSpaceInButton:Er,direction:Pr,button:At}=(0,r.useContext)(h.E_),Kt=Xt("btn",st),[Bt,Jt]=ut(Kt),br=(0,r.useContext)(u.Z),Xr=xe!=null?xe:br,Wr=(0,r.useContext)(m),jn=(0,r.useMemo)(()=>zt(Ae),[Ae]),[wn,Yn]=(0,r.useState)(jn.loading),[St,Vr]=(0,r.useState)(!1),ii=(0,r.createRef)(),Bi=(0,f.sQ)(ce,ii),Gn=r.Children.count(Be)===1&&!Or&&!M(Gt);(0,r.useEffect)(()=>{let Hi=null;jn.delay>0?Hi=setTimeout(()=>{Hi=null,Yn(!0)},jn.delay):Yn(jn.loading);function ei(){Hi&&(clearTimeout(Hi),Hi=null)}return ei},[jn]),(0,r.useEffect)(()=>{if(!Bi||!Bi.current||Er===!1)return;const Hi=Bi.current.textContent;Gn&&A(Hi)?St||Vr(!0):St&&Vr(!1)},[Bi]);const ci=Hi=>{const{onClick:ei}=Ce;if(wn||Xr){Hi.preventDefault();return}ei==null||ei(Hi)},Oi=Er!==!1,{compactSize:$i,compactItemClassnames:Ai}=(0,x.ri)(Kt,Pr),ji={large:"lg",small:"sm",middle:void 0},ha=(0,a.Z)(Hi=>{var ei,$n;return($n=(ei=yt!=null?yt:$i)!==null&&ei!==void 0?ei:Wr)!==null&&$n!==void 0?$n:Hi}),ea=ha&&ji[ha]||"",Yi=wn?"loading":Or,mi=(0,c.Z)(Lt,["navigate"]),zi=l()(Kt,Jt,{[`${Kt}-${Te}`]:Te!=="default"&&Te,[`${Kt}-${Gt}`]:Gt,[`${Kt}-${ea}`]:ea,[`${Kt}-icon-only`]:!Be&&Be!==0&&!!Yi,[`${Kt}-background-ghost`]:mt&&!M(Gt),[`${Kt}-loading`]:wn,[`${Kt}-two-chinese-chars`]:St&&Oi&&!wn,[`${Kt}-block`]:qr,[`${Kt}-dangerous`]:!!bt,[`${Kt}-rtl`]:Pr==="rtl"},Ai,dt,Pt,At==null?void 0:At.className),Ca=Object.assign(Object.assign({},At==null?void 0:At.style),qt),xt=l()(Nt==null?void 0:Nt.icon,(pe=At==null?void 0:At.classNames)===null||pe===void 0?void 0:pe.icon),xa=Object.assign(Object.assign({},(ze==null?void 0:ze.icon)||{}),((Ct=At==null?void 0:At.styles)===null||Ct===void 0?void 0:Ct.icon)||{}),Zi=Or&&!wn?r.createElement(ne,{prefixCls:Kt,className:xt,style:xa},Or):r.createElement(J,{existIcon:!!Or,prefixCls:Kt,loading:!!wn}),_i=Be||Be===0?N(Be,Gn&&Oi):null;if(mi.href!==void 0)return Bt(r.createElement("a",Object.assign({},mi,{className:l()(zi,{[`${Kt}-disabled`]:Xr}),style:Ca,onClick:ci,ref:Bi}),Zi,_i));let Da=r.createElement("button",Object.assign({},Lt,{type:an,className:zi,style:Ca,onClick:ci,disabled:Xr,ref:Bi}),Zi,_i,Ai&&r.createElement(tt,{key:"compact",prefixCls:Kt}));return M(Gt)||(Da=r.createElement(o.Z,{component:"Button",disabled:!!wn},Da)),Bt(Da)},lr=(0,r.forwardRef)(Ht);lr.Group=S,lr.__ANT_BUTTON=!0;var Wt=lr},3113:function(d,v,e){"use strict";var r=e(67797);v.ZP=r.Z},43604:function(d,v,e){"use strict";var r=e(37028);v.Z=r.Z},1684:function(d,v,e){"use strict";e.d(v,{n:function(){return l}});var r=e(59301);const i=r.createContext(!1),l=c=>{let{children:f,disabled:o}=c;const h=r.useContext(i);return r.createElement(i.Provider,{value:o!=null?o:h},f)};v.Z=i},52946:function(d,v,e){"use strict";e.d(v,{q:function(){return l}});var r=e(59301);const i=r.createContext(void 0),l=c=>{let{children:f,size:o}=c;const h=r.useContext(i);return r.createElement(i.Provider,{value:o||h},f)};v.Z=i},36355:function(d,v,e){"use strict";e.d(v,{E_:function(){return c},oR:function(){return i}});var r=e(59301);const i="anticon",l=(o,h)=>h||(o?`ant-${o}`:"ant"),c=r.createContext({getPrefixCls:l,iconPrefixCls:i}),{Consumer:f}=c},19716:function(d,v,e){"use strict";var r=e(59301),i=e(52946);const l=c=>{const f=r.useContext(i.Z);return r.useMemo(()=>c?typeof c=="string"?c!=null?c:f:c instanceof Function?c(f):f:f,[c,f])};v.Z=l},92736:function(d,v,e){"use strict";e.d(v,{ZP:function(){return ar},w6:function(){return It}});var r=e(36237),i=e(18418),l=e(80547),c=e(24434),f=e(59301),o=e(28726),h=e(98044),u=e(41887);const a="internalMark";var p=$e=>{const{locale:gt={},children:Mt,_ANT_MARK__:et}=$e;f.useEffect(()=>(0,h.f)(gt&&gt.Modal),[gt]);const ft=f.useMemo(()=>Object.assign(Object.assign({},gt),{exist:!0}),[gt]);return f.createElement(u.Z.Provider,{value:ft},Mt)},y=e(31724),m=e(45246),b=e(34117),S=e(36355),k=e(30071),R=e(64993),A=e(47273),P=e(810);const M=`-ant-${Date.now()}-${Math.random()}`;function B($e,gt){const Mt={},et=(Je,Ne)=>{let ye=Je.clone();return ye=(Ne==null?void 0:Ne(ye))||ye,ye.toRgbString()},ft=(Je,Ne)=>{const ye=new R.C(Je),ke=(0,k.generate)(ye.toRgbString());Mt[`${Ne}-color`]=et(ye),Mt[`${Ne}-color-disabled`]=ke[1],Mt[`${Ne}-color-hover`]=ke[4],Mt[`${Ne}-color-active`]=ke[6],Mt[`${Ne}-color-outline`]=ye.clone().setAlpha(.2).toRgbString(),Mt[`${Ne}-color-deprecated-bg`]=ke[0],Mt[`${Ne}-color-deprecated-border`]=ke[2]};if(gt.primaryColor){ft(gt.primaryColor,"primary");const Je=new R.C(gt.primaryColor),Ne=(0,k.generate)(Je.toRgbString());Ne.forEach((ke,Ge)=>{Mt[`primary-${Ge+1}`]=ke}),Mt["primary-color-deprecated-l-35"]=et(Je,ke=>ke.lighten(35)),Mt["primary-color-deprecated-l-20"]=et(Je,ke=>ke.lighten(20)),Mt["primary-color-deprecated-t-20"]=et(Je,ke=>ke.tint(20)),Mt["primary-color-deprecated-t-50"]=et(Je,ke=>ke.tint(50)),Mt["primary-color-deprecated-f-12"]=et(Je,ke=>ke.setAlpha(ke.getAlpha()*.12));const ye=new R.C(Ne[0]);Mt["primary-color-active-deprecated-f-30"]=et(ye,ke=>ke.setAlpha(ke.getAlpha()*.3)),Mt["primary-color-active-deprecated-d-02"]=et(ye,ke=>ke.darken(2))}return gt.successColor&&ft(gt.successColor,"success"),gt.warningColor&&ft(gt.warningColor,"warning"),gt.errorColor&&ft(gt.errorColor,"error"),gt.infoColor&&ft(gt.infoColor,"info"),`
:root {
${Object.keys(Mt).map(Je=>`--${$e}-${Je}: ${Mt[Je]};`).join(`
`)}
}
`.trim()}function N($e,gt){const Mt=B($e,gt);(0,A.Z)()&&(0,P.hq)(Mt,`${M}-dynamic-theme`)}var K=e(1684),H=e(52946);function W(){const $e=(0,f.useContext)(K.Z),gt=(0,f.useContext)(H.Z);return{componentDisabled:$e,componentSize:gt}}var ae=W,ne=e(13697);function oe($e,gt){const Mt=$e||{},et=Mt.inherit===!1||!gt?m.u_:gt;return(0,l.Z)(()=>{if(!$e)return gt;const ft=Object.assign({},et.components);return Object.keys($e.components||{}).forEach(ot=>{ft[ot]=Object.assign(Object.assign({},ft[ot]),$e.components[ot])}),Object.assign(Object.assign(Object.assign({},et),Mt),{token:Object.assign(Object.assign({},et.token),Mt.token),components:ft})},[Mt,et],(ft,ot)=>ft.some((Je,Ne)=>{const ye=ot[Ne];return!(0,ne.Z)(Je,ye,!0)}))}var q=e(77900),X=e(88088);function V($e){const{children:gt}=$e,[,Mt]=(0,X.Z)(),{motion:et}=Mt,ft=f.useRef(!1);return ft.current=ft.current||et===!1,ft.current?f.createElement(q.Provider,{motion:et},gt):gt}var se=e(73040),ee=function($e,gt){var Mt={};for(var et in $e)Object.prototype.hasOwnProperty.call($e,et)&&gt.indexOf(et)<0&&(Mt[et]=$e[et]);if($e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ft=0,et=Object.getOwnPropertySymbols($e);ft<et.length;ft++)gt.indexOf(et[ft])<0&&Object.prototype.propertyIsEnumerable.call($e,et[ft])&&(Mt[et[ft]]=$e[et[ft]]);return Mt};let J=!1;const le=null,z=null,j=["getTargetContainer","getPopupContainer","renderEmpty","pageHeader","input","pagination","form","select","button"],ie="ant";let me,Se,Ie;function He(){return me||ie}function je(){return Se||S.oR}function Dt($e){return Object.keys($e).some(gt=>gt.endsWith("Color"))}const ht=$e=>{let{prefixCls:gt,iconPrefixCls:Mt,theme:et}=$e;gt!==void 0&&(me=gt),Mt!==void 0&&(Se=Mt),et&&(Dt(et)?N(He(),et):Ie=et)},It=()=>({getPrefixCls:($e,gt)=>gt||($e?`${He()}-${$e}`:He()),getIconPrefixCls:je,getRootPrefixCls:()=>me||He(),getTheme:()=>Ie}),Zt=$e=>{const{children:gt,csp:Mt,autoInsertSpaceInButton:et,alert:ft,anchor:ot,form:Je,locale:Ne,componentSize:ye,direction:ke,space:Ge,virtual:We,dropdownMatchSelectWidth:Xe,popupMatchSelectWidth:ut,popupOverflow:pt,legacyLocale:or,parentContext:tr,iconPrefixCls:Me,theme:tt,componentDisabled:Yt,segmented:Ot,statistic:zt,spin:Ht,calendar:lr,carousel:Wt,cascader:Ce,collapse:ce,typography:pe,checkbox:Ct,descriptions:Ae,divider:st,drawer:Gt,skeleton:bt,steps:Te,image:yt,layout:ze,list:xe,mentions:dt,modal:Pt,progress:Be,result:Or,slider:mt,breadcrumb:qr,menu:an,pagination:Nt,input:qt,empty:Lt,badge:Xt,radio:Er,rate:Pr,switch:At,transfer:Kt,avatar:Bt,message:Jt,tag:br,table:Xr,card:Wr,tabs:jn,timeline:wn,timePicker:Yn,upload:St,notification:Vr,tree:ii,colorPicker:Bi,datePicker:Gn,wave:ci}=$e,Oi=f.useCallback((_i,Da)=>{const{prefixCls:Hi}=$e;if(Da)return Da;const ei=Hi||tr.getPrefixCls("");return _i?`${ei}-${_i}`:ei},[tr.getPrefixCls,$e.prefixCls]),$i=Me||tr.iconPrefixCls||S.oR,Ai=$i!==tr.iconPrefixCls,ji=Mt||tr.csp,ha=(0,se.Z)($i,ji),ea=oe(tt,tr.theme),Yi={csp:ji,autoInsertSpaceInButton:et,alert:ft,anchor:ot,locale:Ne||or,direction:ke,space:Ge,virtual:We,popupMatchSelectWidth:ut!=null?ut:Xe,popupOverflow:pt,getPrefixCls:Oi,iconPrefixCls:$i,theme:ea,segmented:Ot,statistic:zt,spin:Ht,calendar:lr,carousel:Wt,cascader:Ce,collapse:ce,typography:pe,checkbox:Ct,descriptions:Ae,divider:st,drawer:Gt,skeleton:bt,steps:Te,image:yt,input:qt,layout:ze,list:xe,mentions:dt,modal:Pt,progress:Be,result:Or,slider:mt,breadcrumb:qr,menu:an,pagination:Nt,empty:Lt,badge:Xt,radio:Er,rate:Pr,switch:At,transfer:Kt,avatar:Bt,message:Jt,tag:br,table:Xr,card:Wr,tabs:jn,timeline:wn,timePicker:Yn,upload:St,notification:Vr,tree:ii,colorPicker:Bi,datePicker:Gn,wave:ci},mi=Object.assign({},tr);Object.keys(Yi).forEach(_i=>{Yi[_i]!==void 0&&(mi[_i]=Yi[_i])}),j.forEach(_i=>{const Da=$e[_i];Da&&(mi[_i]=Da)});const zi=(0,l.Z)(()=>mi,mi,(_i,Da)=>{const Hi=Object.keys(_i),ei=Object.keys(Da);return Hi.length!==ei.length||Hi.some($n=>_i[$n]!==Da[$n])}),Ca=f.useMemo(()=>({prefixCls:$i,csp:ji}),[$i,ji]);let xt=Ai?ha(gt):gt;const xa=f.useMemo(()=>{var _i,Da,Hi,ei;return(0,c.T)(((_i=y.Z.Form)===null||_i===void 0?void 0:_i.defaultValidateMessages)||{},((Hi=(Da=zi.locale)===null||Da===void 0?void 0:Da.Form)===null||Hi===void 0?void 0:Hi.defaultValidateMessages)||{},((ei=zi.form)===null||ei===void 0?void 0:ei.validateMessages)||{},(Je==null?void 0:Je.validateMessages)||{})},[zi,Je==null?void 0:Je.validateMessages]);Object.keys(xa).length>0&&(xt=f.createElement(o.Z.Provider,{value:xa},gt)),Ne&&(xt=f.createElement(p,{locale:Ne,_ANT_MARK__:a},xt)),($i||ji)&&(xt=f.createElement(i.Z.Provider,{value:Ca},xt)),ye&&(xt=f.createElement(H.q,{size:ye},xt)),xt=f.createElement(V,null,xt);const Zi=f.useMemo(()=>{const _i=ea||{},{algorithm:Da,token:Hi,components:ei}=_i,$n=ee(_i,["algorithm","token","components"]),Ee=Da&&(!Array.isArray(Da)||Da.length>0)?(0,r.createTheme)(Da):m.uH,nt={};return Object.entries(ei||{}).forEach(qe=>{let[Tt,lt]=qe;const hr=Object.assign({},lt);"algorithm"in hr&&(hr.algorithm===!0?hr.theme=Ee:(Array.isArray(hr.algorithm)||typeof hr.algorithm=="function")&&(hr.theme=(0,r.createTheme)(hr.algorithm)),delete hr.algorithm),nt[Tt]=hr}),Object.assign(Object.assign({},$n),{theme:Ee,token:Object.assign(Object.assign({},b.Z),Hi),components:nt})},[ea]);return tt&&(xt=f.createElement(m.Mj.Provider,{value:Zi},xt)),Yt!==void 0&&(xt=f.createElement(K.n,{disabled:Yt},xt)),f.createElement(S.E_.Provider,{value:zi},xt)},Rt=$e=>{const gt=f.useContext(S.E_),Mt=f.useContext(u.Z);return f.createElement(Zt,Object.assign({parentContext:gt,legacyLocale:Mt},$e))};Rt.ConfigContext=S.E_,Rt.SizeContext=H.Z,Rt.config=ht,Rt.useConfig=ae,Object.defineProperty(Rt,"SizeContext",{get:()=>H.Z});var ar=Rt},48183:function(d,v,e){"use strict";e.d(v,{Z:function(){return f}});var r={locale:"en_US",today:"Today",now:"Now",backToToday:"Back to today",ok:"OK",clear:"Clear",month:"Month",year:"Year",timeSelect:"select time",dateSelect:"select date",weekSelect:"Choose a week",monthSelect:"Choose a month",yearSelect:"Choose a year",decadeSelect:"Choose a decade",yearFormat:"YYYY",dateFormat:"M/D/YYYY",dayFormat:"D",dateTimeFormat:"M/D/YYYY HH:mm:ss",monthBeforeYear:!0,previousMonth:"Previous month (PageUp)",nextMonth:"Next month (PageDown)",previousYear:"Last year (Control + left)",nextYear:"Next year (Control + right)",previousDecade:"Last decade",nextDecade:"Next decade",previousCentury:"Last century",nextCentury:"Next century"},i=r,l=e(67532),f={lang:Object.assign({placeholder:"Select date",yearPlaceholder:"Select year",quarterPlaceholder:"Select quarter",monthPlaceholder:"Select month",weekPlaceholder:"Select week",rangePlaceholder:["Start date","End date"],rangeYearPlaceholder:["Start year","End year"],rangeQuarterPlaceholder:["Start quarter","End quarter"],rangeMonthPlaceholder:["Start month","End month"],rangeWeekPlaceholder:["Start week","End week"]},i),timePickerLocale:Object.assign({},l.Z)}},32441:function(d,v,e){"use strict";e.d(v,{RV:function(){return o},Rk:function(){return h},Ux:function(){return a},aM:function(){return u},q3:function(){return c},qI:function(){return f}});var r=e(59301),i=e(95013),l=e(2738);const c=r.createContext({labelAlign:"right",vertical:!1,itemRef:()=>{}}),f=r.createContext(null),o=x=>{const p=(0,l.Z)(x,["prefixCls"]);return r.createElement(i.FormProvider,Object.assign({},p))},h=r.createContext({prefixCls:""}),u=r.createContext({}),a=x=>{let{children:p,status:y,override:m}=x;const b=(0,r.useContext)(u),S=(0,r.useMemo)(()=>{const k=Object.assign({},b);return m&&delete k.isFormItemInput,y&&(delete k.status,delete k.hasFeedback,delete k.feedbackIcon),k},[y,m,b]);return r.createElement(u.Provider,{value:S},p)}},28726:function(d,v,e){"use strict";var r=e(59301);v.Z=(0,r.createContext)(void 0)},6700:function(d,v,e){"use strict";var r=e(59301);const i=(0,r.createContext)({});v.Z=i},37028:function(d,v,e){"use strict";var r=e(59301),i=e(92310),l=e.n(i),c=e(36355),f=e(6700),o=e(98242),h=function(p,y){var m={};for(var b in p)Object.prototype.hasOwnProperty.call(p,b)&&y.indexOf(b)<0&&(m[b]=p[b]);if(p!=null&&typeof Object.getOwnPropertySymbols=="function")for(var S=0,b=Object.getOwnPropertySymbols(p);S<b.length;S++)y.indexOf(b[S])<0&&Object.prototype.propertyIsEnumerable.call(p,b[S])&&(m[b[S]]=p[b[S]]);return m};function u(p){return typeof p=="number"?`${p} ${p} auto`:/^\d+(\.\d+)?(px|em|rem|%)$/.test(p)?`0 0 ${p}`:p}const a=["xs","sm","md","lg","xl","xxl"],x=r.forwardRef((p,y)=>{const{getPrefixCls:m,direction:b}=r.useContext(c.E_),{gutter:S,wrap:k}=r.useContext(f.Z),{prefixCls:R,span:A,order:P,offset:M,push:B,pull:N,className:K,children:H,flex:W,style:ae}=p,ne=h(p,["prefixCls","span","order","offset","push","pull","className","children","flex","style"]),oe=m("col",R),[q,X]=(0,o.c)(oe);let V={};a.forEach(J=>{let le={};const z=p[J];typeof z=="number"?le.span=z:typeof z=="object"&&(le=z||{}),delete ne[J],V=Object.assign(Object.assign({},V),{[`${oe}-${J}-${le.span}`]:le.span!==void 0,[`${oe}-${J}-order-${le.order}`]:le.order||le.order===0,[`${oe}-${J}-offset-${le.offset}`]:le.offset||le.offset===0,[`${oe}-${J}-push-${le.push}`]:le.push||le.push===0,[`${oe}-${J}-pull-${le.pull}`]:le.pull||le.pull===0,[`${oe}-${J}-flex-${le.flex}`]:le.flex||le.flex==="auto",[`${oe}-rtl`]:b==="rtl"})});const se=l()(oe,{[`${oe}-${A}`]:A!==void 0,[`${oe}-order-${P}`]:P,[`${oe}-offset-${M}`]:M,[`${oe}-push-${B}`]:B,[`${oe}-pull-${N}`]:N},K,V,X),ee={};if(S&&S[0]>0){const J=S[0]/2;ee.paddingLeft=J,ee.paddingRight=J}return W&&(ee.flex=u(W),k===!1&&!ee.minWidth&&(ee.minWidth=0)),q(r.createElement("div",Object.assign({},ne,{style:Object.assign(Object.assign({},ee),ae),className:se,ref:y}),H))});v.Z=x},27382:function(d,v,e){"use strict";var r=e(59301),i=e(92310),l=e.n(i),c=e(69507),f=e(36355),o=e(6700),h=e(98242),u=function(m,b){var S={};for(var k in m)Object.prototype.hasOwnProperty.call(m,k)&&b.indexOf(k)<0&&(S[k]=m[k]);if(m!=null&&typeof Object.getOwnPropertySymbols=="function")for(var R=0,k=Object.getOwnPropertySymbols(m);R<k.length;R++)b.indexOf(k[R])<0&&Object.prototype.propertyIsEnumerable.call(m,k[R])&&(S[k[R]]=m[k[R]]);return S};const a=null,x=null;function p(m,b){const[S,k]=r.useState(typeof m=="string"?m:""),R=()=>{if(typeof m=="string"&&k(m),typeof m=="object")for(let A=0;A<c.c4.length;A++){const P=c.c4[A];if(!b[P])continue;const M=m[P];if(M!==void 0){k(M);return}}};return r.useEffect(()=>{R()},[JSON.stringify(m),b]),S}const y=r.forwardRef((m,b)=>{const{prefixCls:S,justify:k,align:R,className:A,style:P,children:M,gutter:B=0,wrap:N}=m,K=u(m,["prefixCls","justify","align","className","style","children","gutter","wrap"]),{getPrefixCls:H,direction:W}=r.useContext(f.E_),[ae,ne]=r.useState({xs:!0,sm:!0,md:!0,lg:!0,xl:!0,xxl:!0}),[oe,q]=r.useState({xs:!1,sm:!1,md:!1,lg:!1,xl:!1,xxl:!1}),X=p(R,oe),V=p(k,oe),se=r.useRef(B),ee=(0,c.ZP)();r.useEffect(()=>{const ht=ee.subscribe(It=>{q(It);const Zt=se.current||0;(!Array.isArray(Zt)&&typeof Zt=="object"||Array.isArray(Zt)&&(typeof Zt[0]=="object"||typeof Zt[1]=="object"))&&ne(It)});return()=>ee.unsubscribe(ht)},[]);const J=()=>{const ht=[void 0,void 0];return(Array.isArray(B)?B:[B,void 0]).forEach((Zt,Rt)=>{if(typeof Zt=="object")for(let ar=0;ar<c.c4.length;ar++){const $e=c.c4[ar];if(ae[$e]&&Zt[$e]!==void 0){ht[Rt]=Zt[$e];break}}else ht[Rt]=Zt}),ht},le=H("row",S),[z,j]=(0,h.V)(le),ie=J(),me=l()(le,{[`${le}-no-wrap`]:N===!1,[`${le}-${V}`]:V,[`${le}-${X}`]:X,[`${le}-rtl`]:W==="rtl"},A,j),Se={},Ie=ie[0]!=null&&ie[0]>0?ie[0]/-2:void 0;Ie&&(Se.marginLeft=Ie,Se.marginRight=Ie),[,Se.rowGap]=ie;const[He,je]=ie,Dt=r.useMemo(()=>({gutter:[He,je],wrap:N}),[He,je,N]);return z(r.createElement(o.Z.Provider,{value:Dt},r.createElement("div",Object.assign({},K,{className:me,style:Object.assign(Object.assign({},Se),P),ref:b}),M)))});v.Z=y},98242:function(d,v,e){"use strict";e.d(v,{V:function(){return u},c:function(){return a}});var r=e(83116),i=e(37613);const l=x=>{const{componentCls:p}=x;return{[p]:{display:"flex",flexFlow:"row wrap",minWidth:0,"&::before, &::after":{display:"flex"},"&-no-wrap":{flexWrap:"nowrap"},"&-start":{justifyContent:"flex-start"},"&-center":{justifyContent:"center"},"&-end":{justifyContent:"flex-end"},"&-space-between":{justifyContent:"space-between"},"&-space-around":{justifyContent:"space-around"},"&-space-evenly":{justifyContent:"space-evenly"},"&-top":{alignItems:"flex-start"},"&-middle":{alignItems:"center"},"&-bottom":{alignItems:"flex-end"}}}},c=x=>{const{componentCls:p}=x;return{[p]:{position:"relative",maxWidth:"100%",minHeight:1}}},f=(x,p)=>{const{componentCls:y,gridColumns:m}=x,b={};for(let S=m;S>=0;S--)S===0?(b[`${y}${p}-${S}`]={display:"none"},b[`${y}-push-${S}`]={insetInlineStart:"auto"},b[`${y}-pull-${S}`]={insetInlineEnd:"auto"},b[`${y}${p}-push-${S}`]={insetInlineStart:"auto"},b[`${y}${p}-pull-${S}`]={insetInlineEnd:"auto"},b[`${y}${p}-offset-${S}`]={marginInlineStart:0},b[`${y}${p}-order-${S}`]={order:0}):(b[`${y}${p}-${S}`]=[{"--ant-display":"block",display:"block"},{display:"var(--ant-display)",flex:`0 0 ${S/m*100}%`,maxWidth:`${S/m*100}%`}],b[`${y}${p}-push-${S}`]={insetInlineStart:`${S/m*100}%`},b[`${y}${p}-pull-${S}`]={insetInlineEnd:`${S/m*100}%`},b[`${y}${p}-offset-${S}`]={marginInlineStart:`${S/m*100}%`},b[`${y}${p}-order-${S}`]={order:S});return b},o=(x,p)=>f(x,p),h=(x,p,y)=>({[`@media (min-width: ${p}px)`]:Object.assign({},o(x,y))}),u=(0,r.Z)("Grid",x=>[l(x)]),a=(0,r.Z)("Grid",x=>{const p=(0,i.TS)(x,{gridColumns:24}),y={"-sm":p.screenSMMin,"-md":p.screenMDMin,"-lg":p.screenLGMin,"-xl":p.screenXLMin,"-xxl":p.screenXXLMin};return[c(p),o(p,""),o(p,"-xs"),Object.keys(y).map(m=>h(p,y[m],m)).reduce((m,b)=>Object.assign(Object.assign({},m),b),{})]})},41887:function(d,v,e){"use strict";var r=e(59301);const i=(0,r.createContext)(void 0);v.Z=i},31724:function(d,v,e){"use strict";e.d(v,{Z:function(){return h}});var r=e(22075),i=e(48183),l=i.Z,c=e(67532);const f="${label} is not a valid ${type}";var h={locale:"en",Pagination:r.Z,DatePicker:i.Z,TimePicker:c.Z,Calendar:l,global:{placeholder:"Please select"},Table:{filterTitle:"Filter menu",filterConfirm:"OK",filterReset:"Reset",filterEmptyText:"No filters",filterCheckall:"Select all items",filterSearchPlaceholder:"Search in filters",emptyText:"No data",selectAll:"Select current page",selectInvert:"Invert current page",selectNone:"Clear all data",selectionAll:"Select all data",sortTitle:"Sort",expand:"Expand row",collapse:"Collapse row",triggerDesc:"Click to sort descending",triggerAsc:"Click to sort ascending",cancelSort:"Click to cancel sorting"},Tour:{Next:"Next",Previous:"Previous",Finish:"Finish"},Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Popconfirm:{okText:"OK",cancelText:"Cancel"},Transfer:{titles:["",""],searchPlaceholder:"Search here",itemUnit:"item",itemsUnit:"items",remove:"Remove",selectCurrent:"Select current page",removeCurrent:"Remove current page",selectAll:"Select all data",removeAll:"Remove all data",selectInvert:"Invert current page"},Upload:{uploading:"Uploading...",removeFile:"Remove file",uploadError:"Upload error",previewFile:"Preview file",downloadFile:"Download file"},Empty:{description:"No data"},Icon:{icon:"icon"},Text:{edit:"Edit",copy:"Copy",copied:"Copied",expand:"Expand"},PageHeader:{back:"Back"},Form:{optional:"(optional)",defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:f,method:f,array:f,object:f,number:f,date:f,boolean:f,integer:f,float:f,regexp:f,email:f,url:f,hex:f},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}},Image:{preview:"Preview"},QRCode:{expired:"QR code expired",refresh:"Refresh"},ColorPicker:{presetEmpty:"Empty"}}},9763:function(d,v,e){"use strict";var r=e(59301),i=e(41887),l=e(31724);const c=(f,o)=>{const h=r.useContext(i.Z),u=r.useMemo(()=>{var x;const p=o||l.Z[f],y=(x=h==null?void 0:h[f])!==null&&x!==void 0?x:{};return Object.assign(Object.assign({},typeof p=="function"?p():p),y||{})},[f,o,h]),a=r.useMemo(()=>{const x=h==null?void 0:h.locale;return h!=null&&h.exist&&!x?l.Z.locale:x},[h]);return[u,a]};v.Z=c},8591:function(d,v,e){"use strict";e.d(v,{ZP:function(){return ft}});var r=e(94480),i=e(59301),l=e(1585),c=e(92736),f=e(29679),o=e(19248),h=e(96512),u=e(78987),a=e(58617),x=e(92310),p=e.n(x),y=e(581),m=e(36355),b=e(36237),S=e(17313),k=e(83116),R=e(37613);const A=ot=>{const{componentCls:Je,iconCls:Ne,boxShadow:ye,colorText:ke,colorSuccess:Ge,colorError:We,colorWarning:Xe,colorInfo:ut,fontSizeLG:pt,motionEaseInOutCirc:or,motionDurationSlow:tr,marginXS:Me,paddingXS:tt,borderRadiusLG:Yt,zIndexPopup:Ot,contentPadding:zt,contentBg:Ht}=ot,lr=`${Je}-notice`,Wt=new b.Keyframes("MessageMoveIn",{"0%":{padding:0,transform:"translateY(-100%)",opacity:0},"100%":{padding:tt,transform:"translateY(0)",opacity:1}}),Ce=new b.Keyframes("MessageMoveOut",{"0%":{maxHeight:ot.height,padding:tt,opacity:1},"100%":{maxHeight:0,padding:0,opacity:0}}),ce={padding:tt,textAlign:"center",[`${Je}-custom-content > ${Ne}`]:{verticalAlign:"text-bottom",marginInlineEnd:Me,fontSize:pt},[`${lr}-content`]:{display:"inline-block",padding:zt,background:Ht,borderRadius:Yt,boxShadow:ye,pointerEvents:"all"},[`${Je}-success > ${Ne}`]:{color:Ge},[`${Je}-error > ${Ne}`]:{color:We},[`${Je}-warning > ${Ne}`]:{color:Xe},[`${Je}-info > ${Ne},
${Je}-loading > ${Ne}`]:{color:ut}};return[{[Je]:Object.assign(Object.assign({},(0,S.Wf)(ot)),{color:ke,position:"fixed",top:Me,width:"100%",pointerEvents:"none",zIndex:Ot,[`${Je}-move-up`]:{animationFillMode:"forwards"},[`
${Je}-move-up-appear,
${Je}-move-up-enter
`]:{animationName:Wt,animationDuration:tr,animationPlayState:"paused",animationTimingFunction:or},[`
${Je}-move-up-appear${Je}-move-up-appear-active,
${Je}-move-up-enter${Je}-move-up-enter-active
`]:{animationPlayState:"running"},[`${Je}-move-up-leave`]:{animationName:Ce,animationDuration:tr,animationPlayState:"paused",animationTimingFunction:or},[`${Je}-move-up-leave${Je}-move-up-leave-active`]:{animationPlayState:"running"},"&-rtl":{direction:"rtl",span:{direction:"rtl"}}})},{[Je]:{[lr]:Object.assign({},ce)}},{[`${Je}-notice-pure-panel`]:Object.assign(Object.assign({},ce),{padding:0,textAlign:"start"})}]};var P=(0,k.Z)("Message",ot=>{const Je=(0,R.TS)(ot,{height:150});return[A(Je)]},ot=>({zIndexPopup:ot.zIndexPopupBase+10,contentBg:ot.colorBgElevated,contentPadding:`${(ot.controlHeightLG-ot.fontSize*ot.lineHeight)/2}px ${ot.paddingSM}px`})),M=function(ot,Je){var Ne={};for(var ye in ot)Object.prototype.hasOwnProperty.call(ot,ye)&&Je.indexOf(ye)<0&&(Ne[ye]=ot[ye]);if(ot!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ke=0,ye=Object.getOwnPropertySymbols(ot);ke<ye.length;ke++)Je.indexOf(ye[ke])<0&&Object.prototype.propertyIsEnumerable.call(ot,ye[ke])&&(Ne[ye[ke]]=ot[ye[ke]]);return Ne};const B={info:i.createElement(u.Z,null),success:i.createElement(f.Z,null),error:i.createElement(o.Z,null),warning:i.createElement(h.Z,null),loading:i.createElement(a.Z,null)},N=ot=>{let{prefixCls:Je,type:Ne,icon:ye,children:ke}=ot;return i.createElement("div",{className:p()(`${Je}-custom-content`,`${Je}-${Ne}`)},ye||B[Ne],i.createElement("span",null,ke))};var H=ot=>{const{prefixCls:Je,className:Ne,type:ye,icon:ke,content:Ge}=ot,We=M(ot,["prefixCls","className","type","icon","content"]),{getPrefixCls:Xe}=i.useContext(m.E_),ut=Je||Xe("message"),[,pt]=P(ut);return i.createElement(y.qX,Object.assign({},We,{prefixCls:ut,className:p()(Ne,pt,`${ut}-notice-pure-panel`),eventKey:"pure",duration:null,content:i.createElement(N,{prefixCls:ut,type:ye,icon:ke},Ge)}))},W=e(99267);function ae(ot,Je){return{motionName:Je!=null?Je:`${ot}-move-up`}}function ne(ot){let Je;const Ne=new Promise(ke=>{Je=ot(()=>{ke(!0)})}),ye=()=>{Je==null||Je()};return ye.then=(ke,Ge)=>Ne.then(ke,Ge),ye.promise=Ne,ye}var oe=function(ot,Je){var Ne={};for(var ye in ot)Object.prototype.hasOwnProperty.call(ot,ye)&&Je.indexOf(ye)<0&&(Ne[ye]=ot[ye]);if(ot!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ke=0,ye=Object.getOwnPropertySymbols(ot);ke<ye.length;ke++)Je.indexOf(ye[ke])<0&&Object.prototype.propertyIsEnumerable.call(ot,ye[ke])&&(Ne[ye[ke]]=ot[ye[ke]]);return Ne};const q=8,X=3,V=ot=>{let{children:Je,prefixCls:Ne}=ot;const[,ye]=P(Ne);return i.createElement(y.JB,{classNames:{list:ye,notice:ye}},Je)},se=(ot,Je)=>{let{prefixCls:Ne,key:ye}=Je;return i.createElement(V,{prefixCls:Ne,key:ye},ot)},ee=i.forwardRef((ot,Je)=>{const{top:Ne,prefixCls:ye,getContainer:ke,maxCount:Ge,duration:We=X,rtl:Xe,transitionName:ut,onAllRemoved:pt}=ot,{getPrefixCls:or,getPopupContainer:tr,message:Me}=i.useContext(m.E_),tt=ye||or("message"),Yt=()=>({left:"50%",transform:"translateX(-50%)",top:Ne!=null?Ne:q}),Ot=()=>p()({[`${tt}-rtl`]:Xe}),zt=()=>ae(tt,ut),Ht=i.createElement("span",{className:`${tt}-close-x`},i.createElement(W.Z,{className:`${tt}-close-icon`})),[lr,Wt]=(0,y.lm)({prefixCls:tt,style:Yt,className:Ot,motion:zt,closable:!1,closeIcon:Ht,duration:We,getContainer:()=>(ke==null?void 0:ke())||(tr==null?void 0:tr())||document.body,maxCount:Ge,onAllRemoved:pt,renderNotifications:se});return i.useImperativeHandle(Je,()=>Object.assign(Object.assign({},lr),{prefixCls:tt,message:Me})),Wt});let J=0;function le(ot){const Je=i.useRef(null);return[i.useMemo(()=>{const ye=ut=>{var pt;(pt=Je.current)===null||pt===void 0||pt.close(ut)},ke=ut=>{if(!Je.current){const pe=()=>{};return pe.then=()=>{},pe}const{open:pt,prefixCls:or,message:tr}=Je.current,Me=`${or}-notice`,{content:tt,icon:Yt,type:Ot,key:zt,className:Ht,style:lr,onClose:Wt}=ut,Ce=oe(ut,["content","icon","type","key","className","style","onClose"]);let ce=zt;return ce==null&&(J+=1,ce=`antd-message-${J}`),ne(pe=>(pt(Object.assign(Object.assign({},Ce),{key:ce,content:i.createElement(N,{prefixCls:or,type:Ot,icon:Yt},tt),placement:"top",className:p()(Ot&&`${Me}-${Ot}`,Ht,tr==null?void 0:tr.className),style:Object.assign(Object.assign({},tr==null?void 0:tr.style),lr),onClose:()=>{Wt==null||Wt(),pe()}})),()=>{ye(ce)}))},We={open:ke,destroy:ut=>{var pt;ut!==void 0?ye(ut):(pt=Je.current)===null||pt===void 0||pt.destroy()}};return["info","success","warning","error","loading"].forEach(ut=>{const pt=(or,tr,Me)=>{let tt;or&&typeof or=="object"&&"content"in or?tt=or:tt={content:or};let Yt,Ot;typeof tr=="function"?Ot=tr:(Yt=tr,Ot=Me);const zt=Object.assign(Object.assign({onClose:Ot,duration:Yt},tt),{type:ut});return ke(zt)};We[ut]=pt}),We},[]),i.createElement(ee,Object.assign({key:"message-holder"},ot,{ref:Je}))]}function z(ot){return le(ot)}let j=null,ie=ot=>ot(),me=[],Se={};function Ie(){const{prefixCls:ot,getContainer:Je,duration:Ne,rtl:ye,maxCount:ke,top:Ge}=Se,We=ot!=null?ot:(0,c.w6)().getPrefixCls("message"),Xe=(Je==null?void 0:Je())||document.body;return{prefixCls:We,getContainer:()=>Xe,duration:Ne,rtl:ye,maxCount:ke,top:Ge}}const He=i.forwardRef((ot,Je)=>{const[Ne,ye]=i.useState(Ie),[ke,Ge]=le(Ne),We=(0,c.w6)(),Xe=We.getRootPrefixCls(),ut=We.getIconPrefixCls(),pt=We.getTheme(),or=()=>{ye(Ie)};return i.useEffect(or,[]),i.useImperativeHandle(Je,()=>{const tr=Object.assign({},ke);return Object.keys(tr).forEach(Me=>{tr[Me]=function(){return or(),ke[Me].apply(ke,arguments)}}),{instance:tr,sync:or}}),i.createElement(c.ZP,{prefixCls:Xe,iconPrefixCls:ut,theme:pt},Ge)});function je(){if(!j){const ot=document.createDocumentFragment(),Je={fragment:ot};j=Je,ie(()=>{(0,l.s)(i.createElement(He,{ref:Ne=>{const{instance:ye,sync:ke}=Ne||{};Promise.resolve().then(()=>{!Je.instance&&ye&&(Je.instance=ye,Je.sync=ke,je())})}}),ot)});return}j.instance&&(me.forEach(ot=>{const{type:Je,skipped:Ne}=ot;if(!Ne)switch(Je){case"open":{ie(()=>{const ye=j.instance.open(Object.assign(Object.assign({},Se),ot.config));ye==null||ye.then(ot.resolve),ot.setCloseFn(ye)});break}case"destroy":ie(()=>{j==null||j.instance.destroy(ot.key)});break;default:ie(()=>{var ye;const ke=(ye=j.instance)[Je].apply(ye,(0,r.Z)(ot.args));ke==null||ke.then(ot.resolve),ot.setCloseFn(ke)})}}),me=[])}function Dt(ot){Se=Object.assign(Object.assign({},Se),ot),ie(()=>{var Je;(Je=j==null?void 0:j.sync)===null||Je===void 0||Je.call(j)})}function ht(ot){const Je=ne(Ne=>{let ye;const ke={type:"open",config:ot,resolve:Ne,setCloseFn:Ge=>{ye=Ge}};return me.push(ke),()=>{ye?ie(()=>{ye()}):ke.skipped=!0}});return je(),Je}function It(ot,Je){const Ne=ne(ye=>{let ke;const Ge={type:ot,args:Je,resolve:ye,setCloseFn:We=>{ke=We}};return me.push(Ge),()=>{ke?ie(()=>{ke()}):Ge.skipped=!0}});return je(),Ne}function Zt(ot){me.push({type:"destroy",key:ot}),je()}const Rt=["success","info","warning","error","loading"],$e={open:ht,destroy:Zt,config:Dt,useMessage:z,_InternalPanelDoNotUseOrYouWillBeFired:H};Rt.forEach(ot=>{$e[ot]=function(){for(var Je=arguments.length,Ne=new Array(Je),ye=0;ye<Je;ye++)Ne[ye]=arguments[ye];return It(ot,Ne)}});const gt=()=>{};let Mt=null,et=null;var ft=$e},43418:function(d,v,e){"use strict";e.d(v,{default:function(){return st}});var r=e(94480),i=e(1585),l=e(59301),c=e(92736),f=e(29679),o=e(19248),h=e(96512),u=e(78987),a=e(92310),x=e.n(a),p=e(62892),y=e(9763),m=e(92806);const b=l.createContext({}),{Provider:S}=b;var R=()=>{const{autoFocusButton:Gt,cancelButtonProps:bt,cancelTextLocale:Te,isSilent:yt,mergedOkCancel:ze,rootPrefixCls:xe,close:dt,onCancel:Pt,onConfirm:Be}=(0,l.useContext)(b);return ze?l.createElement(m.Z,{isSilent:yt,actionFn:Pt,close:function(){dt==null||dt.apply(void 0,arguments),Be==null||Be(!1)},autoFocus:Gt==="cancel",buttonProps:bt,prefixCls:`${xe}-btn`},Te):null},P=()=>{const{autoFocusButton:Gt,close:bt,isSilent:Te,okButtonProps:yt,rootPrefixCls:ze,okTextLocale:xe,okType:dt,onConfirm:Pt,onOk:Be}=(0,l.useContext)(b);return l.createElement(m.Z,{isSilent:Te,type:dt||"primary",actionFn:Be,close:function(){bt==null||bt.apply(void 0,arguments),Pt==null||Pt(!0)},autoFocus:Gt==="ok",buttonProps:yt,prefixCls:`${ze}-btn`},xe)},M=e(99267),B=e(86923),N=e(47729),K=e(47273);const H=()=>(0,K.Z)()&&window.document.documentElement;var W=e(36355),ae=e(32441),ne=e(33234),oe=e(11575),q=e(1684),X=e(3113),se=()=>{const{cancelButtonProps:Gt,cancelTextLocale:bt,onCancel:Te}=(0,l.useContext)(b);return l.createElement(X.ZP,Object.assign({onClick:Te},Gt),bt)},ee=e(67797),le=()=>{const{confirmLoading:Gt,okButtonProps:bt,okType:Te,okTextLocale:yt,onOk:ze}=(0,l.useContext)(b);return l.createElement(X.ZP,Object.assign({},(0,ee.n)(Te),{loading:Gt,onClick:ze},bt),yt)},z=e(98044);function j(Gt,bt){return l.createElement("span",{className:`${Gt}-close-x`},bt||l.createElement(M.Z,{className:`${Gt}-close-icon`}))}const ie=Gt=>{const{okText:bt,okType:Te="primary",cancelText:yt,confirmLoading:ze,onOk:xe,onCancel:dt,okButtonProps:Pt,cancelButtonProps:Be,footer:Or}=Gt,[mt]=(0,y.Z)("Modal",(0,z.A)()),qr=bt||(mt==null?void 0:mt.okText),an=yt||(mt==null?void 0:mt.cancelText),Nt={confirmLoading:ze,okButtonProps:Pt,cancelButtonProps:Be,okTextLocale:qr,cancelTextLocale:an,okType:Te,onOk:xe,onCancel:dt},qt=l.useMemo(()=>Nt,(0,r.Z)(Object.values(Nt)));let Lt;return typeof Or=="function"||typeof Or=="undefined"?(Lt=l.createElement(S,{value:qt},l.createElement(se,null),l.createElement(le,null)),typeof Or=="function"&&(Lt=Or(Lt,{OkBtn:le,CancelBtn:se}))):Lt=Or,l.createElement(q.n,{disabled:!1},Lt)};var me=e(73819),Se=function(Gt,bt){var Te={};for(var yt in Gt)Object.prototype.hasOwnProperty.call(Gt,yt)&&bt.indexOf(yt)<0&&(Te[yt]=Gt[yt]);if(Gt!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ze=0,yt=Object.getOwnPropertySymbols(Gt);ze<yt.length;ze++)bt.indexOf(yt[ze])<0&&Object.prototype.propertyIsEnumerable.call(Gt,yt[ze])&&(Te[yt[ze]]=Gt[yt[ze]]);return Te};let Ie;const He=Gt=>{Ie={x:Gt.pageX,y:Gt.pageY},setTimeout(()=>{Ie=null},100)};H()&&document.documentElement.addEventListener("click",He,!0);var Dt=Gt=>{var bt;const{getPopupContainer:Te,getPrefixCls:yt,direction:ze,modal:xe}=l.useContext(W.E_),dt=Bi=>{const{onCancel:Gn}=Gt;Gn==null||Gn(Bi)},Pt=Bi=>{const{onOk:Gn}=Gt;Gn==null||Gn(Bi)},{prefixCls:Be,className:Or,rootClassName:mt,open:qr,wrapClassName:an,centered:Nt,getContainer:qt,closeIcon:Lt,closable:Xt,focusTriggerAfterClose:Er=!0,style:Pr,visible:At,width:Kt=520,footer:Bt}=Gt,Jt=Se(Gt,["prefixCls","className","rootClassName","open","wrapClassName","centered","getContainer","closeIcon","closable","focusTriggerAfterClose","style","visible","width","footer"]),br=yt("modal",Be),Xr=yt(),[Wr,jn]=(0,me.ZP)(br),wn=x()(an,{[`${br}-centered`]:!!Nt,[`${br}-wrap-rtl`]:ze==="rtl"}),Yn=Bt!==null&&l.createElement(ie,Object.assign({},Gt,{onOk:Pt,onCancel:dt})),[St,Vr]=(0,N.Z)(Xt,Lt,Bi=>j(br,Bi),l.createElement(M.Z,{className:`${br}-close-icon`}),!0),ii=(0,oe.H)(`.${br}-content`);return Wr(l.createElement(ne.BR,null,l.createElement(ae.Ux,{status:!0,override:!0},l.createElement(B.Z,Object.assign({width:Kt},Jt,{getContainer:qt===void 0?Te:qt,prefixCls:br,rootClassName:x()(jn,mt),wrapClassName:wn,footer:Yn,visible:qr!=null?qr:At,mousePosition:(bt=Jt.mousePosition)!==null&&bt!==void 0?bt:Ie,onClose:dt,closable:St,closeIcon:Vr,focusTriggerAfterClose:Er,transitionName:(0,p.m)(Xr,"zoom",Gt.transitionName),maskTransitionName:(0,p.m)(Xr,"fade",Gt.maskTransitionName),className:x()(jn,Or,xe==null?void 0:xe.className),style:Object.assign(Object.assign({},xe==null?void 0:xe.style),Pr),panelRef:ii})))))},ht=e(17313),It=e(83116);const Zt=Gt=>{const{componentCls:bt,titleFontSize:Te,titleLineHeight:yt,modalConfirmIconSize:ze,fontSize:xe,lineHeight:dt}=Gt,Pt=`${bt}-confirm`,Be=Math.round(Te*yt),Or=Math.round(xe*dt);return{[Pt]:{"&-rtl":{direction:"rtl"},[`${Gt.antCls}-modal-header`]:{display:"none"},[`${Pt}-body-wrapper`]:Object.assign({},(0,ht.dF)()),[`${Pt}-body`]:{display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${Gt.iconCls}`]:{flex:"none",fontSize:ze,marginInlineEnd:Gt.marginSM,marginTop:(Or-ze)/2},[`&-has-title > ${Gt.iconCls}`]:{marginTop:(Be-ze)/2}},[`${Pt}-paragraph`]:{display:"flex",flexDirection:"column",flex:"auto",rowGap:Gt.marginXS},[`${Pt}-title`]:{color:Gt.colorTextHeading,fontWeight:Gt.fontWeightStrong,fontSize:Te,lineHeight:yt},[`${Pt}-content`]:{color:Gt.colorText,fontSize:xe,lineHeight:dt},[`${Pt}-btns`]:{textAlign:"end",marginTop:Gt.marginSM,[`${Gt.antCls}-btn + ${Gt.antCls}-btn`]:{marginBottom:0,marginInlineStart:Gt.marginXS}}},[`${Pt}-error ${Pt}-body > ${Gt.iconCls}`]:{color:Gt.colorError},[`${Pt}-warning ${Pt}-body > ${Gt.iconCls},
${Pt}-confirm ${Pt}-body > ${Gt.iconCls}`]:{color:Gt.colorWarning},[`${Pt}-info ${Pt}-body > ${Gt.iconCls}`]:{color:Gt.colorInfo},[`${Pt}-success ${Pt}-body > ${Gt.iconCls}`]:{color:Gt.colorSuccess}}};var Rt=(0,It.b)(["Modal","confirm"],Gt=>{const bt=(0,me.B4)(Gt);return[Zt(bt)]},me.eh,{order:-1e3}),ar=function(Gt,bt){var Te={};for(var yt in Gt)Object.prototype.hasOwnProperty.call(Gt,yt)&&bt.indexOf(yt)<0&&(Te[yt]=Gt[yt]);if(Gt!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ze=0,yt=Object.getOwnPropertySymbols(Gt);ze<yt.length;ze++)bt.indexOf(yt[ze])<0&&Object.prototype.propertyIsEnumerable.call(Gt,yt[ze])&&(Te[yt[ze]]=Gt[yt[ze]]);return Te};function $e(Gt){const{prefixCls:bt,icon:Te,okText:yt,cancelText:ze,confirmPrefixCls:xe,type:dt,okCancel:Pt,footer:Be,locale:Or}=Gt,mt=ar(Gt,["prefixCls","icon","okText","cancelText","confirmPrefixCls","type","okCancel","footer","locale"]);let qr=Te;if(!Te&&Te!==null)switch(dt){case"info":qr=l.createElement(u.Z,null);break;case"success":qr=l.createElement(f.Z,null);break;case"error":qr=l.createElement(o.Z,null);break;default:qr=l.createElement(h.Z,null)}const an=Pt!=null?Pt:dt==="confirm",Nt=Gt.autoFocusButton===null?!1:Gt.autoFocusButton||"ok",[qt]=(0,y.Z)("Modal"),Lt=Or||qt,Xt=yt||(an?Lt==null?void 0:Lt.okText:Lt==null?void 0:Lt.justOkText),Er=ze||(Lt==null?void 0:Lt.cancelText),Pr=Object.assign({autoFocusButton:Nt,cancelTextLocale:Er,okTextLocale:Xt,mergedOkCancel:an},mt),At=l.useMemo(()=>Pr,(0,r.Z)(Object.values(Pr))),Kt=l.createElement(l.Fragment,null,l.createElement(R,null),l.createElement(P,null)),Bt=Gt.title!==void 0&&Gt.title!==null,Jt=`${xe}-body`;return l.createElement("div",{className:`${xe}-body-wrapper`},l.createElement("div",{className:x()(Jt,{[`${Jt}-has-title`]:Bt})},qr,l.createElement("div",{className:`${xe}-paragraph`},Bt&&l.createElement("span",{className:`${xe}-title`},Gt.title),l.createElement("div",{className:`${xe}-content`},Gt.content))),Be===void 0||typeof Be=="function"?l.createElement(S,{value:At},l.createElement("div",{className:`${xe}-btns`},typeof Be=="function"?Be(Kt,{OkBtn:P,CancelBtn:R}):Kt)):Be,l.createElement(Rt,{prefixCls:bt}))}var Mt=Gt=>{const{close:bt,zIndex:Te,afterClose:yt,visible:ze,open:xe,keyboard:dt,centered:Pt,getContainer:Be,maskStyle:Or,direction:mt,prefixCls:qr,wrapClassName:an,rootPrefixCls:Nt,iconPrefixCls:qt,theme:Lt,bodyStyle:Xt,closable:Er=!1,closeIcon:Pr,modalRender:At,focusTriggerAfterClose:Kt,onConfirm:Bt}=Gt,Jt=`${qr}-confirm`,br=Gt.width||416,Xr=Gt.style||{},Wr=Gt.mask===void 0?!0:Gt.mask,jn=Gt.maskClosable===void 0?!1:Gt.maskClosable,wn=x()(Jt,`${Jt}-${Gt.type}`,{[`${Jt}-rtl`]:mt==="rtl"},Gt.className);return l.createElement(c.ZP,{prefixCls:Nt,iconPrefixCls:qt,direction:mt,theme:Lt},l.createElement(Dt,{prefixCls:qr,className:wn,wrapClassName:x()({[`${Jt}-centered`]:!!Gt.centered},an),onCancel:()=>{bt==null||bt({triggerCancel:!0}),Bt==null||Bt(!1)},open:xe,title:"",footer:null,transitionName:(0,p.m)(Nt||"","zoom",Gt.transitionName),maskTransitionName:(0,p.m)(Nt||"","fade",Gt.maskTransitionName),mask:Wr,maskClosable:jn,maskStyle:Or,style:Xr,bodyStyle:Xt,width:br,zIndex:Te,afterClose:yt,keyboard:dt,centered:Pt,getContainer:Be,closable:Er,closeIcon:Pr,modalRender:At,focusTriggerAfterClose:Kt},l.createElement($e,Object.assign({},Gt,{confirmPrefixCls:Jt}))))},ft=[],ot=function(Gt,bt){var Te={};for(var yt in Gt)Object.prototype.hasOwnProperty.call(Gt,yt)&&bt.indexOf(yt)<0&&(Te[yt]=Gt[yt]);if(Gt!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ze=0,yt=Object.getOwnPropertySymbols(Gt);ze<yt.length;ze++)bt.indexOf(yt[ze])<0&&Object.prototype.propertyIsEnumerable.call(Gt,yt[ze])&&(Te[yt[ze]]=Gt[yt[ze]]);return Te};let Je="";function Ne(){return Je}function ye(Gt){const bt=document.createDocumentFragment();let Te=Object.assign(Object.assign({},Gt),{close:dt,open:!0}),yt;function ze(){for(var Be=arguments.length,Or=new Array(Be),mt=0;mt<Be;mt++)Or[mt]=arguments[mt];const qr=Or.some(an=>an&&an.triggerCancel);Gt.onCancel&&qr&&Gt.onCancel.apply(Gt,[()=>{}].concat((0,r.Z)(Or.slice(1))));for(let an=0;an<ft.length;an++)if(ft[an]===dt){ft.splice(an,1);break}(0,i.v)(bt)}function xe(Be){var{okText:Or,cancelText:mt,prefixCls:qr,getContainer:an}=Be,Nt=ot(Be,["okText","cancelText","prefixCls","getContainer"]);clearTimeout(yt),yt=setTimeout(()=>{const qt=(0,z.A)(),{getPrefixCls:Lt,getIconPrefixCls:Xt,getTheme:Er}=(0,c.w6)(),Pr=Lt(void 0,Ne()),At=qr||`${Pr}-modal`,Kt=Xt(),Bt=Er();let Jt=an;Jt===!1&&(Jt=void 0),(0,i.s)(l.createElement(Mt,Object.assign({},Nt,{getContainer:Jt,prefixCls:At,rootPrefixCls:Pr,iconPrefixCls:Kt,okText:Or,locale:qt,theme:Bt,cancelText:mt||qt.cancelText})),bt)})}function dt(){for(var Be=arguments.length,Or=new Array(Be),mt=0;mt<Be;mt++)Or[mt]=arguments[mt];Te=Object.assign(Object.assign({},Te),{open:!1,afterClose:()=>{typeof Gt.afterClose=="function"&&Gt.afterClose(),ze.apply(this,Or)}}),Te.visible&&delete Te.visible,xe(Te)}function Pt(Be){typeof Be=="function"?Te=Be(Te):Te=Object.assign(Object.assign({},Te),Be),xe(Te)}return xe(Te),ft.push(dt),{destroy:dt,update:Pt}}function ke(Gt){return Object.assign(Object.assign({},Gt),{type:"warning"})}function Ge(Gt){return Object.assign(Object.assign({},Gt),{type:"info"})}function We(Gt){return Object.assign(Object.assign({},Gt),{type:"success"})}function Xe(Gt){return Object.assign(Object.assign({},Gt),{type:"error"})}function ut(Gt){return Object.assign(Object.assign({},Gt),{type:"confirm"})}function pt(Gt){let{rootPrefixCls:bt}=Gt;Je=bt}var or=e(53487),tr=function(Gt,bt){var Te={};for(var yt in Gt)Object.prototype.hasOwnProperty.call(Gt,yt)&&bt.indexOf(yt)<0&&(Te[yt]=Gt[yt]);if(Gt!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ze=0,yt=Object.getOwnPropertySymbols(Gt);ze<yt.length;ze++)bt.indexOf(yt[ze])<0&&Object.prototype.propertyIsEnumerable.call(Gt,yt[ze])&&(Te[yt[ze]]=Gt[yt[ze]]);return Te};const Me=Gt=>{const{prefixCls:bt,className:Te,closeIcon:yt,closable:ze,type:xe,title:dt,children:Pt}=Gt,Be=tr(Gt,["prefixCls","className","closeIcon","closable","type","title","children"]),{getPrefixCls:Or}=l.useContext(W.E_),mt=Or(),qr=bt||Or("modal"),[,an]=(0,me.ZP)(qr),Nt=`${qr}-confirm`;let qt={};return xe?qt={closable:ze!=null?ze:!1,title:"",footer:"",children:l.createElement($e,Object.assign({},Gt,{prefixCls:qr,confirmPrefixCls:Nt,rootPrefixCls:mt,content:Pt}))}:qt={closable:ze!=null?ze:!0,title:dt,footer:Gt.footer===void 0?l.createElement(ie,Object.assign({},Gt)):Gt.footer,children:Pt},l.createElement(B.s,Object.assign({prefixCls:qr,className:x()(an,`${qr}-pure-panel`,xe&&Nt,xe&&`${Nt}-${xe}`,Te)},Be,{closeIcon:j(qr,yt),closable:ze},qt))};var tt=(0,or.i)(Me);function Yt(){const[Gt,bt]=l.useState([]),Te=l.useCallback(yt=>(bt(ze=>[].concat((0,r.Z)(ze),[yt])),()=>{bt(ze=>ze.filter(xe=>xe!==yt))}),[]);return[Gt,Te]}var Ot=e(31724),zt=function(Gt,bt){var Te={};for(var yt in Gt)Object.prototype.hasOwnProperty.call(Gt,yt)&&bt.indexOf(yt)<0&&(Te[yt]=Gt[yt]);if(Gt!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ze=0,yt=Object.getOwnPropertySymbols(Gt);ze<yt.length;ze++)bt.indexOf(yt[ze])<0&&Object.prototype.propertyIsEnumerable.call(Gt,yt[ze])&&(Te[yt[ze]]=Gt[yt[ze]]);return Te};const Ht=(Gt,bt)=>{var Te,{afterClose:yt,config:ze}=Gt,xe=zt(Gt,["afterClose","config"]);const[dt,Pt]=l.useState(!0),[Be,Or]=l.useState(ze),{direction:mt,getPrefixCls:qr}=l.useContext(W.E_),an=qr("modal"),Nt=qr(),qt=()=>{var Pr;yt(),(Pr=Be.afterClose)===null||Pr===void 0||Pr.call(Be)},Lt=function(){Pt(!1);for(var Pr=arguments.length,At=new Array(Pr),Kt=0;Kt<Pr;Kt++)At[Kt]=arguments[Kt];const Bt=At.some(Jt=>Jt&&Jt.triggerCancel);Be.onCancel&&Bt&&Be.onCancel.apply(Be,[()=>{}].concat((0,r.Z)(At.slice(1))))};l.useImperativeHandle(bt,()=>({destroy:Lt,update:Pr=>{Or(At=>Object.assign(Object.assign({},At),Pr))}}));const Xt=(Te=Be.okCancel)!==null&&Te!==void 0?Te:Be.type==="confirm",[Er]=(0,y.Z)("Modal",Ot.Z.Modal);return l.createElement(Mt,Object.assign({prefixCls:an,rootPrefixCls:Nt},Be,{close:Lt,open:dt,afterClose:qt,okText:Be.okText||(Xt?Er==null?void 0:Er.okText:Er==null?void 0:Er.justOkText),direction:Be.direction||mt,cancelText:Be.cancelText||(Er==null?void 0:Er.cancelText)},xe))};var lr=l.forwardRef(Ht);let Wt=0;const Ce=l.memo(l.forwardRef((Gt,bt)=>{const[Te,yt]=Yt();return l.useImperativeHandle(bt,()=>({patchElement:yt}),[]),l.createElement(l.Fragment,null,Te)}));function ce(){const Gt=l.useRef(null),[bt,Te]=l.useState([]);l.useEffect(()=>{bt.length&&((0,r.Z)(bt).forEach(dt=>{dt()}),Te([]))},[bt]);const yt=l.useCallback(xe=>function(Pt){var Be;Wt+=1;const Or=l.createRef();let mt;const qr=new Promise(Xt=>{mt=Xt});let an=!1,Nt;const qt=l.createElement(lr,{key:`modal-${Wt}`,config:xe(Pt),ref:Or,afterClose:()=>{Nt==null||Nt()},isSilent:()=>an,onConfirm:Xt=>{mt(Xt)}});return Nt=(Be=Gt.current)===null||Be===void 0?void 0:Be.patchElement(qt),Nt&&ft.push(Nt),{destroy:()=>{function Xt(){var Er;(Er=Or.current)===null||Er===void 0||Er.destroy()}Or.current?Xt():Te(Er=>[].concat((0,r.Z)(Er),[Xt]))},update:Xt=>{function Er(){var Pr;(Pr=Or.current)===null||Pr===void 0||Pr.update(Xt)}Or.current?Er():Te(Pr=>[].concat((0,r.Z)(Pr),[Er]))},then:Xt=>(an=!0,qr.then(Xt))}},[]);return[l.useMemo(()=>({info:yt(Ge),success:yt(We),error:yt(Xe),warning:yt(ke),confirm:yt(ut)}),[]),l.createElement(Ce,{key:"modal-holder",ref:Gt})]}var pe=ce;function Ct(Gt){return ye(ke(Gt))}const Ae=Dt;Ae.useModal=pe,Ae.info=function(bt){return ye(Ge(bt))},Ae.success=function(bt){return ye(We(bt))},Ae.error=function(bt){return ye(Xe(bt))},Ae.warning=Ct,Ae.warn=Ct,Ae.confirm=function(bt){return ye(ut(bt))},Ae.destroyAll=function(){for(;ft.length;){const bt=ft.pop();bt&&bt()}},Ae.config=pt,Ae._InternalPanelDoNotUseOrYouWillBeFired=tt;var st=Ae},98044:function(d,v,e){"use strict";e.d(v,{A:function(){return o},f:function(){return f}});var r=e(31724);let i=Object.assign({},r.Z.Modal),l=[];const c=()=>l.reduce((h,u)=>Object.assign(Object.assign({},h),u),r.Z.Modal);function f(h){if(h){const u=Object.assign({},h);return l.push(u),i=c(),()=>{l=l.filter(a=>a!==u),i=c()}}i=Object.assign({},r.Z.Modal)}function o(){return i}},73819:function(d,v,e){"use strict";e.d(v,{B4:function(){return p},QA:function(){return h},eh:function(){return y}});var r=e(17313),i=e(1950),l=e(29878),c=e(37613),f=e(83116);function o(m){return{position:m,inset:0}}const h=m=>{const{componentCls:b,antCls:S}=m;return[{[`${b}-root`]:{[`${b}${S}-zoom-enter, ${b}${S}-zoom-appear`]:{transform:"none",opacity:0,animationDuration:m.motionDurationSlow,userSelect:"none"},[`${b}${S}-zoom-leave ${b}-content`]:{pointerEvents:"none"},[`${b}-mask`]:Object.assign(Object.assign({},o("fixed")),{zIndex:m.zIndexPopupBase,height:"100%",backgroundColor:m.colorBgMask,pointerEvents:"none",[`${b}-hidden`]:{display:"none"}}),[`${b}-wrap`]:Object.assign(Object.assign({},o("fixed")),{zIndex:m.zIndexPopupBase,overflow:"auto",outline:0,WebkitOverflowScrolling:"touch",[`&:has(${b}${S}-zoom-enter), &:has(${b}${S}-zoom-appear)`]:{pointerEvents:"none"}})}},{[`${b}-root`]:(0,i.J$)(m)}]},u=m=>{const{componentCls:b}=m;return[{[`${b}-root`]:{[`${b}-wrap-rtl`]:{direction:"rtl"},[`${b}-centered`]:{textAlign:"center","&::before":{display:"inline-block",width:0,height:"100%",verticalAlign:"middle",content:'""'},[b]:{top:0,display:"inline-block",paddingBottom:0,textAlign:"start",verticalAlign:"middle"}},[`@media (max-width: ${m.screenSMMax})`]:{[b]:{maxWidth:"calc(100vw - 16px)",margin:`${m.marginXS} auto`},[`${b}-centered`]:{[b]:{flex:1}}}}},{[b]:Object.assign(Object.assign({},(0,r.Wf)(m)),{pointerEvents:"none",position:"relative",top:100,width:"auto",maxWidth:`calc(100vw - ${m.margin*2}px)`,margin:"0 auto",paddingBottom:m.paddingLG,[`${b}-title`]:{margin:0,color:m.titleColor,fontWeight:m.fontWeightStrong,fontSize:m.titleFontSize,lineHeight:m.titleLineHeight,wordWrap:"break-word"},[`${b}-content`]:{position:"relative",backgroundColor:m.contentBg,backgroundClip:"padding-box",border:0,borderRadius:m.borderRadiusLG,boxShadow:m.boxShadow,pointerEvents:"auto",padding:`${m.paddingMD}px ${m.paddingContentHorizontalLG}px`},[`${b}-close`]:Object.assign({position:"absolute",top:(m.modalHeaderHeight-m.modalCloseBtnSize)/2,insetInlineEnd:(m.modalHeaderHeight-m.modalCloseBtnSize)/2,zIndex:m.zIndexPopupBase+10,padding:0,color:m.modalCloseIconColor,fontWeight:m.fontWeightStrong,lineHeight:1,textDecoration:"none",background:"transparent",borderRadius:m.borderRadiusSM,width:m.modalCloseBtnSize,height:m.modalCloseBtnSize,border:0,outline:0,cursor:"pointer",transition:`color ${m.motionDurationMid}, background-color ${m.motionDurationMid}`,"&-x":{display:"flex",fontSize:m.fontSizeLG,fontStyle:"normal",lineHeight:`${m.modalCloseBtnSize}px`,justifyContent:"center",textTransform:"none",textRendering:"auto"},"&:hover":{color:m.modalIconHoverColor,backgroundColor:m.wireframe?"transparent":m.colorFillContent,textDecoration:"none"},"&:active":{backgroundColor:m.wireframe?"transparent":m.colorFillContentHover}},(0,r.Qy)(m)),[`${b}-header`]:{color:m.colorText,background:m.headerBg,borderRadius:`${m.borderRadiusLG}px ${m.borderRadiusLG}px 0 0`,marginBottom:m.marginXS},[`${b}-body`]:{fontSize:m.fontSize,lineHeight:m.lineHeight,wordWrap:"break-word"},[`${b}-footer`]:{textAlign:"end",background:m.footerBg,marginTop:m.marginSM,[`${m.antCls}-btn + ${m.antCls}-btn:not(${m.antCls}-dropdown-trigger)`]:{marginBottom:0,marginInlineStart:m.marginXS}},[`${b}-open`]:{overflow:"hidden"}})},{[`${b}-pure-panel`]:{top:"auto",padding:0,display:"flex",flexDirection:"column",[`${b}-content,
${b}-body,
${b}-confirm-body-wrapper`]:{display:"flex",flexDirection:"column",flex:"auto"},[`${b}-confirm-body`]:{marginBottom:"auto"}}}]},a=m=>{const{componentCls:b,antCls:S}=m,k=`${b}-confirm`;return{[b]:{[`${b}-content`]:{padding:0},[`${b}-header`]:{padding:m.modalHeaderPadding,borderBottom:`${m.modalHeaderBorderWidth}px ${m.modalHeaderBorderStyle} ${m.modalHeaderBorderColorSplit}`,marginBottom:0},[`${b}-body`]:{padding:m.modalBodyPadding},[`${b}-footer`]:{padding:`${m.modalFooterPaddingVertical}px ${m.modalFooterPaddingHorizontal}px`,borderTop:`${m.modalFooterBorderWidth}px ${m.modalFooterBorderStyle} ${m.modalFooterBorderColorSplit}`,borderRadius:`0 0 ${m.borderRadiusLG}px ${m.borderRadiusLG}px`,marginTop:0}},[k]:{[`${S}-modal-body`]:{padding:`${m.padding*2}px ${m.padding*2}px ${m.paddingLG}px`},[`${k}-body`]:{[`> ${m.iconCls}`]:{marginInlineEnd:m.margin,[`+ ${k}-title + ${k}-content`]:{marginInlineStart:m.modalConfirmIconSize+m.margin}}},[`${k}-btns`]:{marginTop:m.marginLG}}}},x=m=>{const{componentCls:b}=m;return{[`${b}-root`]:{[`${b}-wrap-rtl`]:{direction:"rtl",[`${b}-confirm-body`]:{direction:"rtl"}}}}},p=m=>{const b=m.padding,S=m.fontSizeHeading5,k=m.lineHeightHeading5;return(0,c.TS)(m,{modalBodyPadding:m.paddingLG,modalHeaderPadding:`${b}px ${m.paddingLG}px`,modalHeaderBorderWidth:m.lineWidth,modalHeaderBorderStyle:m.lineType,modalHeaderBorderColorSplit:m.colorSplit,modalHeaderHeight:k*S+b*2,modalFooterBorderColorSplit:m.colorSplit,modalFooterBorderStyle:m.lineType,modalFooterPaddingVertical:m.paddingXS,modalFooterPaddingHorizontal:m.padding,modalFooterBorderWidth:m.lineWidth,modalIconHoverColor:m.colorIconHover,modalCloseIconColor:m.colorIcon,modalCloseBtnSize:m.fontSize*m.lineHeight,modalConfirmIconSize:m.fontSize*m.lineHeight})},y=m=>({footerBg:"transparent",headerBg:m.colorBgElevated,titleLineHeight:m.lineHeightHeading5,titleFontSize:m.fontSizeHeading5,contentBg:m.colorBgElevated,titleColor:m.colorTextHeading});v.ZP=(0,f.Z)("Modal",m=>{const b=p(m);return[u(b),x(b),h(b),m.wireframe&&a(b),(0,l._y)(b,"zoom")]},y)},28909:function(d,v,e){"use strict";e.d(v,{Z:function(){return ot}});var r=e(59301),i=e(1585),l=e(92736),c=e(29679),f=e(19248),o=e(99267),h=e(96512),u=e(78987),a=e(58617),x=e(92310),p=e.n(x),y=e(581),m=e(36355),b=e(36237),S=e(17313),k=e(83116),R=e(37613),P=Je=>{const{componentCls:Ne,width:ye,notificationMarginEdge:ke}=Je,Ge=new b.Keyframes("antNotificationTopFadeIn",{"0%":{marginTop:"-100%",opacity:0},"100%":{marginTop:0,opacity:1}}),We=new b.Keyframes("antNotificationBottomFadeIn",{"0%":{marginBottom:"-100%",opacity:0},"100%":{marginBottom:0,opacity:1}}),Xe=new b.Keyframes("antNotificationLeftFadeIn",{"0%":{right:{_skip_check_:!0,value:ye},opacity:0},"100%":{right:{_skip_check_:!0,value:0},opacity:1}});return{[`&${Ne}-top, &${Ne}-bottom`]:{marginInline:0},[`&${Ne}-top`]:{[`${Ne}-fade-enter${Ne}-fade-enter-active, ${Ne}-fade-appear${Ne}-fade-appear-active`]:{animationName:Ge}},[`&${Ne}-bottom`]:{[`${Ne}-fade-enter${Ne}-fade-enter-active, ${Ne}-fade-appear${Ne}-fade-appear-active`]:{animationName:We}},[`&${Ne}-topLeft, &${Ne}-bottomLeft`]:{marginInlineEnd:0,marginInlineStart:ke,[`${Ne}-fade-enter${Ne}-fade-enter-active, ${Ne}-fade-appear${Ne}-fade-appear-active`]:{animationName:Xe}}}};const M=Je=>{const{iconCls:Ne,componentCls:ye,boxShadow:ke,fontSizeLG:Ge,notificationMarginBottom:We,borderRadiusLG:Xe,colorSuccess:ut,colorInfo:pt,colorWarning:or,colorError:tr,colorTextHeading:Me,notificationBg:tt,notificationPadding:Yt,notificationMarginEdge:Ot,motionDurationMid:zt,motionEaseInOut:Ht,fontSize:lr,lineHeight:Wt,width:Ce,notificationIconSize:ce,colorText:pe}=Je,Ct=`${ye}-notice`,Ae=new b.Keyframes("antNotificationFadeIn",{"0%":{left:{_skip_check_:!0,value:Ce},opacity:0},"100%":{left:{_skip_check_:!0,value:0},opacity:1}}),st=new b.Keyframes("antNotificationFadeOut",{"0%":{maxHeight:Je.animationMaxHeight,marginBottom:We,opacity:1},"100%":{maxHeight:0,marginBottom:0,paddingTop:0,paddingBottom:0,opacity:0}}),Gt={position:"relative",width:Ce,maxWidth:`calc(100vw - ${Ot*2}px)`,marginBottom:We,marginInlineStart:"auto",padding:Yt,overflow:"hidden",lineHeight:Wt,wordWrap:"break-word",background:tt,borderRadius:Xe,boxShadow:ke,[`${ye}-close-icon`]:{fontSize:lr,cursor:"pointer"},[`${Ct}-message`]:{marginBottom:Je.marginXS,color:Me,fontSize:Ge,lineHeight:Je.lineHeightLG},[`${Ct}-description`]:{fontSize:lr,color:pe},[`&${Ct}-closable ${Ct}-message`]:{paddingInlineEnd:Je.paddingLG},[`${Ct}-with-icon ${Ct}-message`]:{marginBottom:Je.marginXS,marginInlineStart:Je.marginSM+ce,fontSize:Ge},[`${Ct}-with-icon ${Ct}-description`]:{marginInlineStart:Je.marginSM+ce,fontSize:lr},[`${Ct}-icon`]:{position:"absolute",fontSize:ce,lineHeight:0,[`&-success${Ne}`]:{color:ut},[`&-info${Ne}`]:{color:pt},[`&-warning${Ne}`]:{color:or},[`&-error${Ne}`]:{color:tr}},[`${Ct}-close`]:{position:"absolute",top:Je.notificationPaddingVertical,insetInlineEnd:Je.notificationPaddingHorizontal,color:Je.colorIcon,outline:"none",width:Je.notificationCloseButtonSize,height:Je.notificationCloseButtonSize,borderRadius:Je.borderRadiusSM,transition:`background-color ${Je.motionDurationMid}, color ${Je.motionDurationMid}`,display:"flex",alignItems:"center",justifyContent:"center","&:hover":{color:Je.colorIconHover,backgroundColor:Je.wireframe?"transparent":Je.colorFillContent}},[`${Ct}-btn`]:{float:"right",marginTop:Je.marginSM}};return[{[ye]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,S.Wf)(Je)),{position:"fixed",zIndex:Je.zIndexPopup,marginInlineEnd:Ot,[`${ye}-hook-holder`]:{position:"relative"},[`&${ye}-top, &${ye}-bottom`]:{[Ct]:{marginInline:"auto auto"}},[`&${ye}-topLeft, &${ye}-bottomLeft`]:{[Ct]:{marginInlineEnd:"auto",marginInlineStart:0}},[`${ye}-fade-enter, ${ye}-fade-appear`]:{animationDuration:Je.motionDurationMid,animationTimingFunction:Ht,animationFillMode:"both",opacity:0,animationPlayState:"paused"},[`${ye}-fade-leave`]:{animationTimingFunction:Ht,animationFillMode:"both",animationDuration:zt,animationPlayState:"paused"},[`${ye}-fade-enter${ye}-fade-enter-active, ${ye}-fade-appear${ye}-fade-appear-active`]:{animationName:Ae,animationPlayState:"running"},[`${ye}-fade-leave${ye}-fade-leave-active`]:{animationName:st,animationPlayState:"running"}}),P(Je)),{"&-rtl":{direction:"rtl",[`${Ct}-btn`]:{float:"left"}}})},{[ye]:{[Ct]:Object.assign({},Gt)}},{[`${Ct}-pure-panel`]:Object.assign(Object.assign({},Gt),{margin:0})}]};var B=(0,k.Z)("Notification",Je=>{const Ne=Je.paddingMD,ye=Je.paddingLG,ke=(0,R.TS)(Je,{notificationBg:Je.colorBgElevated,notificationPaddingVertical:Ne,notificationPaddingHorizontal:ye,notificationIconSize:Je.fontSizeLG*Je.lineHeightLG,notificationCloseButtonSize:Je.controlHeightLG*.55,notificationMarginBottom:Je.margin,notificationPadding:`${Je.paddingMD}px ${Je.paddingContentHorizontalLG}px`,notificationMarginEdge:Je.marginLG,animationMaxHeight:150});return[M(ke)]},Je=>({zIndexPopup:Je.zIndexPopupBase+50,width:384})),N=function(Je,Ne){var ye={};for(var ke in Je)Object.prototype.hasOwnProperty.call(Je,ke)&&Ne.indexOf(ke)<0&&(ye[ke]=Je[ke]);if(Je!=null&&typeof Object.getOwnPropertySymbols=="function")for(var Ge=0,ke=Object.getOwnPropertySymbols(Je);Ge<ke.length;Ge++)Ne.indexOf(ke[Ge])<0&&Object.prototype.propertyIsEnumerable.call(Je,ke[Ge])&&(ye[ke[Ge]]=Je[ke[Ge]]);return ye};const K={info:r.createElement(u.Z,null),success:r.createElement(c.Z,null),error:r.createElement(f.Z,null),warning:r.createElement(h.Z,null),loading:r.createElement(a.Z,null)};function H(Je,Ne){return Ne===null||Ne===!1?null:Ne||r.createElement("span",{className:`${Je}-close-x`},r.createElement(o.Z,{className:`${Je}-close-icon`}))}const W={success:c.Z,info:u.Z,error:f.Z,warning:h.Z},ae=Je=>{const{prefixCls:Ne,icon:ye,type:ke,message:Ge,description:We,btn:Xe,role:ut="alert"}=Je;let pt=null;return ye?pt=r.createElement("span",{className:`${Ne}-icon`},ye):ke&&(pt=r.createElement(W[ke]||null,{className:p()(`${Ne}-icon`,`${Ne}-icon-${ke}`)})),r.createElement("div",{className:p()({[`${Ne}-with-icon`]:pt}),role:ut},pt,r.createElement("div",{className:`${Ne}-message`},Ge),r.createElement("div",{className:`${Ne}-description`},We),Xe&&r.createElement("div",{className:`${Ne}-btn`},Xe))};var oe=Je=>{const{prefixCls:Ne,className:ye,icon:ke,type:Ge,message:We,description:Xe,btn:ut,closable:pt=!0,closeIcon:or}=Je,tr=N(Je,["prefixCls","className","icon","type","message","description","btn","closable","closeIcon"]),{getPrefixCls:Me}=r.useContext(m.E_),tt=Ne||Me("notification"),Yt=`${tt}-notice`,[,Ot]=B(tt);return r.createElement(y.qX,Object.assign({},tr,{prefixCls:tt,className:p()(ye,Ot,`${Yt}-pure-panel`),eventKey:"pure",duration:null,closable:pt,closeIcon:H(tt,or),content:r.createElement(ae,{prefixCls:Yt,icon:ke,type:Ge,message:We,description:Xe,btn:ut})}))};function q(Je,Ne,ye){let ke;switch(Je){case"top":ke={left:"50%",transform:"translateX(-50%)",right:"auto",top:Ne,bottom:"auto"};break;case"topLeft":ke={left:0,top:Ne,bottom:"auto"};break;case"topRight":ke={right:0,top:Ne,bottom:"auto"};break;case"bottom":ke={left:"50%",transform:"translateX(-50%)",right:"auto",top:"auto",bottom:ye};break;case"bottomLeft":ke={left:0,top:"auto",bottom:ye};break;default:ke={right:0,top:"auto",bottom:ye};break}return ke}function X(Je){return{motionName:`${Je}-fade`}}var V=function(Je,Ne){var ye={};for(var ke in Je)Object.prototype.hasOwnProperty.call(Je,ke)&&Ne.indexOf(ke)<0&&(ye[ke]=Je[ke]);if(Je!=null&&typeof Object.getOwnPropertySymbols=="function")for(var Ge=0,ke=Object.getOwnPropertySymbols(Je);Ge<ke.length;Ge++)Ne.indexOf(ke[Ge])<0&&Object.prototype.propertyIsEnumerable.call(Je,ke[Ge])&&(ye[ke[Ge]]=Je[ke[Ge]]);return ye};const se=24,ee=4.5,J="topRight",le=Je=>{let{children:Ne,prefixCls:ye}=Je;const[,ke]=B(ye);return r.createElement(y.JB,{classNames:{list:ke,notice:ke}},Ne)},z=(Je,Ne)=>{let{prefixCls:ye,key:ke}=Ne;return r.createElement(le,{prefixCls:ye,key:ke},Je)},j=r.forwardRef((Je,Ne)=>{const{top:ye,bottom:ke,prefixCls:Ge,getContainer:We,maxCount:Xe,rtl:ut,onAllRemoved:pt}=Je,{getPrefixCls:or,getPopupContainer:tr,notification:Me}=r.useContext(m.E_),tt=Ge||or("notification"),Yt=Wt=>q(Wt,ye!=null?ye:se,ke!=null?ke:se),Ot=()=>p()({[`${tt}-rtl`]:ut}),zt=()=>X(tt),[Ht,lr]=(0,y.lm)({prefixCls:tt,style:Yt,className:Ot,motion:zt,closable:!0,closeIcon:H(tt),duration:ee,getContainer:()=>(We==null?void 0:We())||(tr==null?void 0:tr())||document.body,maxCount:Xe,onAllRemoved:pt,renderNotifications:z});return r.useImperativeHandle(Ne,()=>Object.assign(Object.assign({},Ht),{prefixCls:tt,notification:Me})),lr});function ie(Je){const Ne=r.useRef(null);return[r.useMemo(()=>{const ke=ut=>{var pt;if(!Ne.current)return;const{open:or,prefixCls:tr,notification:Me}=Ne.current,tt=`${tr}-notice`,{message:Yt,description:Ot,icon:zt,type:Ht,btn:lr,className:Wt,style:Ce,role:ce="alert",closeIcon:pe}=ut,Ct=V(ut,["message","description","icon","type","btn","className","style","role","closeIcon"]),Ae=H(tt,pe);return or(Object.assign(Object.assign({placement:(pt=Je==null?void 0:Je.placement)!==null&&pt!==void 0?pt:J},Ct),{content:r.createElement(ae,{prefixCls:tt,icon:zt,type:Ht,message:Yt,description:Ot,btn:lr,role:ce}),className:p()(Ht&&`${tt}-${Ht}`,Wt,Me==null?void 0:Me.className),style:Object.assign(Object.assign({},Me==null?void 0:Me.style),Ce),closeIcon:Ae,closable:!!Ae}))},We={open:ke,destroy:ut=>{var pt,or;ut!==void 0?(pt=Ne.current)===null||pt===void 0||pt.close(ut):(or=Ne.current)===null||or===void 0||or.destroy()}};return["success","info","warning","error"].forEach(ut=>{We[ut]=pt=>ke(Object.assign(Object.assign({},pt),{type:ut}))}),We},[]),r.createElement(j,Object.assign({key:"notification-holder"},Je,{ref:Ne}))]}function me(Je){return ie(Je)}let Se=null,Ie=Je=>Je(),He=[],je={};function Dt(){const{prefixCls:Je,getContainer:Ne,rtl:ye,maxCount:ke,top:Ge,bottom:We}=je,Xe=Je!=null?Je:(0,l.w6)().getPrefixCls("notification"),ut=(Ne==null?void 0:Ne())||document.body;return{prefixCls:Xe,getContainer:()=>ut,rtl:ye,maxCount:ke,top:Ge,bottom:We}}const ht=r.forwardRef((Je,Ne)=>{const[ye,ke]=r.useState(Dt),[Ge,We]=ie(ye),Xe=(0,l.w6)(),ut=Xe.getRootPrefixCls(),pt=Xe.getIconPrefixCls(),or=Xe.getTheme(),tr=()=>{ke(Dt)};return r.useEffect(tr,[]),r.useImperativeHandle(Ne,()=>{const Me=Object.assign({},Ge);return Object.keys(Me).forEach(tt=>{Me[tt]=function(){return tr(),Ge[tt].apply(Ge,arguments)}}),{instance:Me,sync:tr}}),r.createElement(l.ZP,{prefixCls:ut,iconPrefixCls:pt,theme:or},We)});function It(){if(!Se){const Je=document.createDocumentFragment(),Ne={fragment:Je};Se=Ne,Ie(()=>{(0,i.s)(r.createElement(ht,{ref:ye=>{const{instance:ke,sync:Ge}=ye||{};Promise.resolve().then(()=>{!Ne.instance&&ke&&(Ne.instance=ke,Ne.sync=Ge,It())})}}),Je)});return}Se.instance&&(He.forEach(Je=>{switch(Je.type){case"open":{Ie(()=>{Se.instance.open(Object.assign(Object.assign({},je),Je.config))});break}case"destroy":Ie(()=>{Se==null||Se.instance.destroy(Je.key)});break}}),He=[])}function Zt(Je){je=Object.assign(Object.assign({},je),Je),Ie(()=>{var Ne;(Ne=Se==null?void 0:Se.sync)===null||Ne===void 0||Ne.call(Se)})}function Rt(Je){He.push({type:"open",config:Je}),It()}function ar(Je){He.push({type:"destroy",key:Je}),It()}const $e=["success","info","warning","error"],Mt={open:Rt,destroy:ar,config:Zt,useNotification:me,_InternalPanelDoNotUseOrYouWillBeFired:oe};$e.forEach(Je=>{Mt[Je]=Ne=>Rt(Object.assign(Object.assign({},Ne),{type:Je}))});const et=()=>{};let ft=null;var ot=Mt},95237:function(d,v,e){"use strict";var r=e(27382);v.Z=r.Z},33234:function(d,v,e){"use strict";e.d(v,{BR:function(){return p},ri:function(){return x}});var r=e(92310),i=e.n(r),l=e(11592),c=e(59301),f=e(36355),o=e(19716),h=e(2856),u=function(b,S){var k={};for(var R in b)Object.prototype.hasOwnProperty.call(b,R)&&S.indexOf(R)<0&&(k[R]=b[R]);if(b!=null&&typeof Object.getOwnPropertySymbols=="function")for(var A=0,R=Object.getOwnPropertySymbols(b);A<R.length;A++)S.indexOf(R[A])<0&&Object.prototype.propertyIsEnumerable.call(b,R[A])&&(k[R[A]]=b[R[A]]);return k};const a=c.createContext(null),x=(b,S)=>{const k=c.useContext(a),R=c.useMemo(()=>{if(!k)return"";const{compactDirection:A,isFirstItem:P,isLastItem:M}=k,B=A==="vertical"?"-vertical-":"-";return i()(`${b}-compact${B}item`,{[`${b}-compact${B}first-item`]:P,[`${b}-compact${B}last-item`]:M,[`${b}-compact${B}item-rtl`]:S==="rtl"})},[b,S,k]);return{compactSize:k==null?void 0:k.compactSize,compactDirection:k==null?void 0:k.compactDirection,compactItemClassnames:R}},p=b=>{let{children:S}=b;return c.createElement(a.Provider,{value:null},S)},y=b=>{var{children:S}=b,k=u(b,["children"]);return c.createElement(a.Provider,{value:k},S)},m=b=>{const{getPrefixCls:S,direction:k}=c.useContext(f.E_),{size:R,direction:A,block:P,prefixCls:M,className:B,rootClassName:N,children:K}=b,H=u(b,["size","direction","block","prefixCls","className","rootClassName","children"]),W=(0,o.Z)(ee=>R!=null?R:ee),ae=S("space-compact",M),[ne,oe]=(0,h.Z)(ae),q=i()(ae,oe,{[`${ae}-rtl`]:k==="rtl",[`${ae}-block`]:P,[`${ae}-vertical`]:A==="vertical"},B,N),X=c.useContext(a),V=(0,l.Z)(K),se=c.useMemo(()=>V.map((ee,J)=>{const le=ee&&ee.key||`${ae}-item-${J}`;return c.createElement(y,{key:le,compactSize:W,compactDirection:A,isFirstItem:J===0&&(!X||(X==null?void 0:X.isFirstItem)),isLastItem:J===V.length-1&&(!X||(X==null?void 0:X.isLastItem))},ee)}),[R,V,X]);return V.length===0?null:ne(c.createElement("div",Object.assign({className:q},H),se))};v.ZP=m},2856:function(d,v,e){"use strict";e.d(v,{Z:function(){return h}});var r=e(83116),i=e(37613),c=u=>{const{componentCls:a}=u;return{[a]:{"&-block":{display:"flex",width:"100%"},"&-vertical":{flexDirection:"column"}}}};const f=u=>{const{componentCls:a}=u;return{[a]:{display:"inline-flex","&-rtl":{direction:"rtl"},"&-vertical":{flexDirection:"column"},"&-align":{flexDirection:"column","&-center":{alignItems:"center"},"&-start":{alignItems:"flex-start"},"&-end":{alignItems:"flex-end"},"&-baseline":{alignItems:"baseline"}},[`${a}-item:empty`]:{display:"none"}}}},o=u=>{const{componentCls:a}=u;return{[a]:{"&-gap-row-small":{rowGap:u.spaceGapSmallSize},"&-gap-row-middle":{rowGap:u.spaceGapMiddleSize},"&-gap-row-large":{rowGap:u.spaceGapLargeSize},"&-gap-col-small":{columnGap:u.spaceGapSmallSize},"&-gap-col-middle":{columnGap:u.spaceGapMiddleSize},"&-gap-col-large":{columnGap:u.spaceGapLargeSize}}}};var h=(0,r.Z)("Space",u=>{const a=(0,i.TS)(u,{spaceGapSmallSize:u.paddingXS,spaceGapMiddleSize:u.padding,spaceGapLargeSize:u.paddingLG});return[f(a),o(a),c(a)]},()=>({}),{resetStyle:!1})},71418:function(d,v,e){"use strict";e.d(v,{Z:function(){return K}});var r=e(92310),i=e.n(r),l=e(2738),c=e(59301),f=e(53280),o=e(92343),h=e(36355),u=e(36237),a=e(17313),x=e(83116),p=e(37613);const y=new u.Keyframes("antSpinMove",{to:{opacity:1}}),m=new u.Keyframes("antRotate",{to:{transform:"rotate(405deg)"}}),b=H=>({[`${H.componentCls}`]:Object.assign(Object.assign({},(0,a.Wf)(H)),{position:"absolute",display:"none",color:H.colorPrimary,fontSize:0,textAlign:"center",verticalAlign:"middle",opacity:0,transition:`transform ${H.motionDurationSlow} ${H.motionEaseInOutCirc}`,"&-spinning":{position:"static",display:"inline-block",opacity:1},"&-nested-loading":{position:"relative",[`> div > ${H.componentCls}`]:{position:"absolute",top:0,insetInlineStart:0,zIndex:4,display:"block",width:"100%",height:"100%",maxHeight:H.contentHeight,[`${H.componentCls}-dot`]:{position:"absolute",top:"50%",insetInlineStart:"50%",margin:-H.dotSize/2},[`${H.componentCls}-text`]:{position:"absolute",top:"50%",width:"100%",paddingTop:(H.dotSize-H.fontSize)/2+2,textShadow:`0 1px 2px ${H.colorBgContainer}`,fontSize:H.fontSize},[`&${H.componentCls}-show-text ${H.componentCls}-dot`]:{marginTop:-(H.dotSize/2)-10},"&-sm":{[`${H.componentCls}-dot`]:{margin:-H.dotSizeSM/2},[`${H.componentCls}-text`]:{paddingTop:(H.dotSizeSM-H.fontSize)/2+2},[`&${H.componentCls}-show-text ${H.componentCls}-dot`]:{marginTop:-(H.dotSizeSM/2)-10}},"&-lg":{[`${H.componentCls}-dot`]:{margin:-(H.dotSizeLG/2)},[`${H.componentCls}-text`]:{paddingTop:(H.dotSizeLG-H.fontSize)/2+2},[`&${H.componentCls}-show-text ${H.componentCls}-dot`]:{marginTop:-(H.dotSizeLG/2)-10}}},[`${H.componentCls}-container`]:{position:"relative",transition:`opacity ${H.motionDurationSlow}`,"&::after":{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,zIndex:10,width:"100%",height:"100%",background:H.colorBgContainer,opacity:0,transition:`all ${H.motionDurationSlow}`,content:'""',pointerEvents:"none"}},[`${H.componentCls}-blur`]:{clear:"both",opacity:.5,userSelect:"none",pointerEvents:"none","&::after":{opacity:.4,pointerEvents:"auto"}}},"&-tip":{color:H.spinDotDefault},[`${H.componentCls}-dot`]:{position:"relative",display:"inline-block",fontSize:H.dotSize,width:"1em",height:"1em","&-item":{position:"absolute",display:"block",width:(H.dotSize-H.marginXXS/2)/2,height:(H.dotSize-H.marginXXS/2)/2,backgroundColor:H.colorPrimary,borderRadius:"100%",transform:"scale(0.75)",transformOrigin:"50% 50%",opacity:.3,animationName:y,animationDuration:"1s",animationIterationCount:"infinite",animationTimingFunction:"linear",animationDirection:"alternate","&:nth-child(1)":{top:0,insetInlineStart:0},"&:nth-child(2)":{top:0,insetInlineEnd:0,animationDelay:"0.4s"},"&:nth-child(3)":{insetInlineEnd:0,bottom:0,animationDelay:"0.8s"},"&:nth-child(4)":{bottom:0,insetInlineStart:0,animationDelay:"1.2s"}},"&-spin":{transform:"rotate(45deg)",animationName:m,animationDuration:"1.2s",animationIterationCount:"infinite",animationTimingFunction:"linear"}},[`&-sm ${H.componentCls}-dot`]:{fontSize:H.dotSizeSM,i:{width:(H.dotSizeSM-H.marginXXS/2)/2,height:(H.dotSizeSM-H.marginXXS/2)/2}},[`&-lg ${H.componentCls}-dot`]:{fontSize:H.dotSizeLG,i:{width:(H.dotSizeLG-H.marginXXS)/2,height:(H.dotSizeLG-H.marginXXS)/2}},[`&${H.componentCls}-show-text ${H.componentCls}-text`]:{display:"block"}})});var S=(0,x.Z)("Spin",H=>{const W=(0,p.TS)(H,{spinDotDefault:H.colorTextDescription});return[b(W)]},H=>({contentHeight:400,dotSize:H.controlHeightLG/2,dotSizeSM:H.controlHeightLG*.35,dotSizeLG:H.controlHeight})),k=function(H,W){var ae={};for(var ne in H)Object.prototype.hasOwnProperty.call(H,ne)&&W.indexOf(ne)<0&&(ae[ne]=H[ne]);if(H!=null&&typeof Object.getOwnPropertySymbols=="function")for(var oe=0,ne=Object.getOwnPropertySymbols(H);oe<ne.length;oe++)W.indexOf(ne[oe])<0&&Object.prototype.propertyIsEnumerable.call(H,ne[oe])&&(ae[ne[oe]]=H[ne[oe]]);return ae};const R=null;let A=null;function P(H,W){const{indicator:ae}=W,ne=`${H}-dot`;return ae===null?null:(0,o.l$)(ae)?(0,o.Tm)(ae,{className:i()(ae.props.className,ne)}):(0,o.l$)(A)?(0,o.Tm)(A,{className:i()(A.props.className,ne)}):c.createElement("span",{className:i()(ne,`${H}-dot-spin`)},c.createElement("i",{className:`${H}-dot-item`,key:1}),c.createElement("i",{className:`${H}-dot-item`,key:2}),c.createElement("i",{className:`${H}-dot-item`,key:3}),c.createElement("i",{className:`${H}-dot-item`,key:4}))}function M(H,W){return!!H&&!!W&&!isNaN(Number(W))}const B=H=>{const{spinPrefixCls:W,spinning:ae=!0,delay:ne=0,className:oe,rootClassName:q,size:X="default",tip:V,wrapperClassName:se,style:ee,children:J,hashId:le}=H,z=k(H,["spinPrefixCls","spinning","delay","className","rootClassName","size","tip","wrapperClassName","style","children","hashId"]),[j,ie]=c.useState(()=>ae&&!M(ae,ne));c.useEffect(()=>{if(ae){const Zt=(0,f.D)(ne,()=>{ie(!0)});return Zt(),()=>{var Rt;(Rt=Zt==null?void 0:Zt.cancel)===null||Rt===void 0||Rt.call(Zt)}}ie(!1)},[ne,ae]);const me=c.useMemo(()=>typeof J!="undefined",[J]),{direction:Se,spin:Ie}=c.useContext(h.E_),He=i()(W,Ie==null?void 0:Ie.className,{[`${W}-sm`]:X==="small",[`${W}-lg`]:X==="large",[`${W}-spinning`]:j,[`${W}-show-text`]:!!V,[`${W}-rtl`]:Se==="rtl"},oe,q,le),je=i()(`${W}-container`,{[`${W}-blur`]:j}),Dt=(0,l.Z)(z,["indicator","prefixCls"]),ht=Object.assign(Object.assign({},Ie==null?void 0:Ie.style),ee),It=c.createElement("div",Object.assign({},Dt,{style:ht,className:He,"aria-live":"polite","aria-busy":j}),P(W,H),V&&me?c.createElement("div",{className:`${W}-text`},V):null);return me?c.createElement("div",Object.assign({},Dt,{className:i()(`${W}-nested-loading`,se,le)}),j&&c.createElement("div",{key:"loading"},It),c.createElement("div",{className:je,key:"container"},J)):It},N=H=>{const{prefixCls:W}=H,{getPrefixCls:ae}=c.useContext(h.E_),ne=ae("spin",W),[oe,q]=S(ne),X=Object.assign(Object.assign({},H),{spinPrefixCls:ne,hashId:q});return oe(c.createElement(B,Object.assign({},X)))};N.setDefaultIndicator=H=>{A=H};var K=N},74207:function(d,v,e){"use strict";e.d(v,{c:function(){return l}});function r(c,f,o){const{focusElCls:h,focus:u,borderElCls:a}=o,x=a?"> *":"",p=["hover",u?"focus":null,"active"].filter(Boolean).map(y=>`&:${y} ${x}`).join(",");return{[`&-item:not(${f}-last-item)`]:{marginInlineEnd:-c.lineWidth},"&-item":Object.assign(Object.assign({[p]:{zIndex:2}},h?{[`&${h}`]:{zIndex:2}}:{}),{[`&[disabled] ${x}`]:{zIndex:0}})}}function i(c,f,o){const{borderElCls:h}=o,u=h?`> ${h}`:"";return{[`&-item:not(${f}-first-item):not(${f}-last-item) ${u}`]:{borderRadius:0},[`&-item:not(${f}-last-item)${f}-first-item`]:{[`& ${u}, &${c}-sm ${u}, &${c}-lg ${u}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&-item:not(${f}-first-item)${f}-last-item`]:{[`& ${u}, &${c}-sm ${u}, &${c}-lg ${u}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}}}function l(c){let f=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{focus:!0};const{componentCls:o}=c,h=`${o}-compact`;return{[h]:Object.assign(Object.assign({},r(c,h,f)),i(o,h,f))}}},17313:function(d,v,e){"use strict";e.d(v,{Lx:function(){return f},Qy:function(){return u},Ro:function(){return l},Wf:function(){return i},dF:function(){return c},du:function(){return o},oN:function(){return h},vS:function(){return r}});const r={overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"},i=a=>({boxSizing:"border-box",margin:0,padding:0,color:a.colorText,fontSize:a.fontSize,lineHeight:a.lineHeight,listStyle:"none",fontFamily:a.fontFamily}),l=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}}),c=()=>({"&::before":{display:"table",content:'""'},"&::after":{display:"table",clear:"both",content:'""'}}),f=a=>({a:{color:a.colorLink,textDecoration:a.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${a.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:a.colorLinkHover},"&:active":{color:a.colorLinkActive},"&:active,\n &:hover":{textDecoration:a.linkHoverDecoration,outline:0},"&:focus":{textDecoration:a.linkFocusDecoration,outline:0},"&[disabled]":{color:a.colorTextDisabled,cursor:"not-allowed"}}}),o=(a,x)=>{const{fontFamily:p,fontSize:y}=a,m=`[class^="${x}"], [class*=" ${x}"]`;return{[m]:{fontFamily:p,fontSize:y,boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"},[m]:{boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}}}}},h=a=>({outline:`${a.lineWidthFocus}px solid ${a.colorPrimaryBorder}`,outlineOffset:1,transition:"outline-offset 0s, outline 0s"}),u=a=>({"&:focus-visible":Object.assign({},h(a))})},1950:function(d,v,e){"use strict";e.d(v,{J$:function(){return f}});var r=e(36237),i=e(95406);const l=new r.Keyframes("antFadeIn",{"0%":{opacity:0},"100%":{opacity:1}}),c=new r.Keyframes("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}}),f=function(o){let h=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;const{antCls:u}=o,a=`${u}-fade`,x=h?"&":"";return[(0,i.R)(a,l,c,o.motionDurationMid,h),{[`
${x}${a}-enter,
${x}${a}-appear
`]:{opacity:0,animationTimingFunction:"linear"},[`${x}${a}-leave`]:{animationTimingFunction:"linear"}}]}},95406:function(d,v,e){"use strict";e.d(v,{R:function(){return l}});const r=c=>({animationDuration:c,animationFillMode:"both"}),i=c=>({animationDuration:c,animationFillMode:"both"}),l=function(c,f,o,h){const a=(arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1)?"&":"";return{[`
${a}${c}-enter,
${a}${c}-appear
`]:Object.assign(Object.assign({},r(h)),{animationPlayState:"paused"}),[`${a}${c}-leave`]:Object.assign(Object.assign({},i(h)),{animationPlayState:"paused"}),[`
${a}${c}-enter${c}-enter-active,
${a}${c}-appear${c}-appear-active
`]:{animationName:f,animationPlayState:"running"},[`${a}${c}-leave${c}-leave-active`]:{animationName:o,animationPlayState:"running",pointerEvents:"none"}}}},29878:function(d,v,e){"use strict";e.d(v,{_y:function(){return k},kr:function(){return l}});var r=e(36237),i=e(95406);const l=new r.Keyframes("antZoomIn",{"0%":{transform:"scale(0.2)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),c=new r.Keyframes("antZoomOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.2)",opacity:0}}),f=new r.Keyframes("antZoomBigIn",{"0%":{transform:"scale(0.8)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),o=new r.Keyframes("antZoomBigOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.8)",opacity:0}}),h=new r.Keyframes("antZoomUpIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 0%"}}),u=new r.Keyframes("antZoomUpOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 0%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0}}),a=new r.Keyframes("antZoomLeftIn",{"0%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"0% 50%"}}),x=new r.Keyframes("antZoomLeftOut",{"0%":{transform:"scale(1)",transformOrigin:"0% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0}}),p=new r.Keyframes("antZoomRightIn",{"0%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"100% 50%"}}),y=new r.Keyframes("antZoomRightOut",{"0%":{transform:"scale(1)",transformOrigin:"100% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0}}),m=new r.Keyframes("antZoomDownIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 100%"}}),b=new r.Keyframes("antZoomDownOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 100%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0}}),S={zoom:{inKeyframes:l,outKeyframes:c},"zoom-big":{inKeyframes:f,outKeyframes:o},"zoom-big-fast":{inKeyframes:f,outKeyframes:o},"zoom-left":{inKeyframes:a,outKeyframes:x},"zoom-right":{inKeyframes:p,outKeyframes:y},"zoom-up":{inKeyframes:h,outKeyframes:u},"zoom-down":{inKeyframes:m,outKeyframes:b}},k=(R,A)=>{const{antCls:P}=R,M=`${P}-${A}`,{inKeyframes:B,outKeyframes:N}=S[A];return[(0,i.R)(M,B,N,A==="zoom-big-fast"?R.motionDurationFast:R.motionDurationMid),{[`
${M}-enter,
${M}-appear
`]:{transform:"scale(0)",opacity:0,animationTimingFunction:R.motionEaseOutCirc,"&-prepare":{transform:"none"}},[`${M}-leave`]:{animationTimingFunction:R.motionEaseInOutCirc}}]}},19447:function(d,v,e){"use strict";e.d(v,{ZP:function(){return f},fS:function(){return l},qN:function(){return i}});var r=e(47585);const i=8;function l(o){const h=i,{contentRadius:u,limitVerticalRadius:a}=o,x=u>12?u+2:12;return{dropdownArrowOffset:x,dropdownArrowOffsetVertical:a?h:x}}function c(o,h){return o?h:{}}function f(o,h){const{componentCls:u,sizePopupArrow:a,borderRadiusXS:x,borderRadiusOuter:p,boxShadowPopoverArrow:y}=o,{colorBg:m,contentRadius:b=o.borderRadiusLG,limitVerticalRadius:S,arrowDistance:k=0,arrowPlacement:R={left:!0,right:!0,top:!0,bottom:!0}}=h,{dropdownArrowOffsetVertical:A,dropdownArrowOffset:P}=l({contentRadius:b,limitVerticalRadius:S});return{[u]:Object.assign(Object.assign(Object.assign(Object.assign({[`${u}-arrow`]:[Object.assign(Object.assign({position:"absolute",zIndex:1,display:"block"},(0,r.r)(a,x,p,m,y)),{"&:before":{background:m}})]},c(!!R.top,{[[`&-placement-top ${u}-arrow`,`&-placement-topLeft ${u}-arrow`,`&-placement-topRight ${u}-arrow`].join(",")]:{bottom:k,transform:"translateY(100%) rotate(180deg)"},[`&-placement-top ${u}-arrow`]:{left:{_skip_check_:!0,value:"50%"},transform:"translateX(-50%) translateY(100%) rotate(180deg)"},[`&-placement-topLeft ${u}-arrow`]:{left:{_skip_check_:!0,value:P}},[`&-placement-topRight ${u}-arrow`]:{right:{_skip_check_:!0,value:P}}})),c(!!R.bottom,{[[`&-placement-bottom ${u}-arrow`,`&-placement-bottomLeft ${u}-arrow`,`&-placement-bottomRight ${u}-arrow`].join(",")]:{top:k,transform:"translateY(-100%)"},[`&-placement-bottom ${u}-arrow`]:{left:{_skip_check_:!0,value:"50%"},transform:"translateX(-50%) translateY(-100%)"},[`&-placement-bottomLeft ${u}-arrow`]:{left:{_skip_check_:!0,value:P}},[`&-placement-bottomRight ${u}-arrow`]:{right:{_skip_check_:!0,value:P}}})),c(!!R.left,{[[`&-placement-left ${u}-arrow`,`&-placement-leftTop ${u}-arrow`,`&-placement-leftBottom ${u}-arrow`].join(",")]:{right:{_skip_check_:!0,value:k},transform:"translateX(100%) rotate(90deg)"},[`&-placement-left ${u}-arrow`]:{top:{_skip_check_:!0,value:"50%"},transform:"translateY(-50%) translateX(100%) rotate(90deg)"},[`&-placement-leftTop ${u}-arrow`]:{top:A},[`&-placement-leftBottom ${u}-arrow`]:{bottom:A}})),c(!!R.right,{[[`&-placement-right ${u}-arrow`,`&-placement-rightTop ${u}-arrow`,`&-placement-rightBottom ${u}-arrow`].join(",")]:{left:{_skip_check_:!0,value:k},transform:"translateX(-100%) rotate(-90deg)"},[`&-placement-right ${u}-arrow`]:{top:{_skip_check_:!0,value:"50%"},transform:"translateY(-50%) translateX(-100%) rotate(-90deg)"},[`&-placement-rightTop ${u}-arrow`]:{top:A},[`&-placement-rightBottom ${u}-arrow`]:{bottom:A}}))}}},47585:function(d,v,e){"use strict";e.d(v,{r:function(){return r}});const r=(i,l,c,f,o)=>{const h=i/2,u=0,a=h,x=c*1/Math.sqrt(2),p=h-c*(1-1/Math.sqrt(2)),y=h-l*(1/Math.sqrt(2)),m=c*(Math.sqrt(2)-1)+l*(1/Math.sqrt(2)),b=2*h-y,S=m,k=2*h-x,R=p,A=2*h-u,P=a,M=h*Math.sqrt(2)+c*(Math.sqrt(2)-2),B=c*(Math.sqrt(2)-1);return{pointerEvents:"none",width:i,height:i,overflow:"hidden","&::before":{position:"absolute",bottom:0,insetInlineStart:0,width:i,height:i/2,background:f,clipPath:{_multi_value_:!0,value:[`polygon(${B}px 100%, 50% ${B}px, ${2*h-B}px 100%, ${B}px 100%)`,`path('M ${u} ${a} A ${c} ${c} 0 0 0 ${x} ${p} L ${y} ${m} A ${l} ${l} 0 0 1 ${b} ${S} L ${k} ${R} A ${c} ${c} 0 0 0 ${A} ${P} Z')`]},content:'""'},"&::after":{content:'""',position:"absolute",width:M,height:M,bottom:0,insetInline:0,margin:"auto",borderRadius:{_skip_check_:!0,value:`0 0 ${l}px 0`},transform:"translateY(50%) rotate(-135deg)",boxShadow:o,zIndex:0,background:"transparent"}}}},45246:function(d,v,e){"use strict";e.d(v,{Mj:function(){return K},u_:function(){return N},uH:function(){return B}});var r=e(36237),i=e(59301),l=e(30071),f=H=>{const{controlHeight:W}=H;return{controlHeightSM:W*.75,controlHeightXS:W*.5,controlHeightLG:W*1.25}};function o(H){const{sizeUnit:W,sizeStep:ae}=H;return{sizeXXL:W*(ae+8),sizeXL:W*(ae+4),sizeLG:W*(ae+2),sizeMD:W*(ae+1),sizeMS:W*ae,size:W*ae,sizeSM:W*(ae-1),sizeXS:W*(ae-2),sizeXXS:W*(ae-3)}}var h=e(34117),u=e(64993);function a(H,W){let{generateColorPalettes:ae,generateNeutralColorPalettes:ne}=W;const{colorSuccess:oe,colorWarning:q,colorError:X,colorInfo:V,colorPrimary:se,colorBgBase:ee,colorTextBase:J}=H,le=ae(se),z=ae(oe),j=ae(q),ie=ae(X),me=ae(V),Se=ne(ee,J),Ie=H.colorLink||H.colorInfo,He=ae(Ie);return Object.assign(Object.assign({},Se),{colorPrimaryBg:le[1],colorPrimaryBgHover:le[2],colorPrimaryBorder:le[3],colorPrimaryBorderHover:le[4],colorPrimaryHover:le[5],colorPrimary:le[6],colorPrimaryActive:le[7],colorPrimaryTextHover:le[8],colorPrimaryText:le[9],colorPrimaryTextActive:le[10],colorSuccessBg:z[1],colorSuccessBgHover:z[2],colorSuccessBorder:z[3],colorSuccessBorderHover:z[4],colorSuccessHover:z[4],colorSuccess:z[6],colorSuccessActive:z[7],colorSuccessTextHover:z[8],colorSuccessText:z[9],colorSuccessTextActive:z[10],colorErrorBg:ie[1],colorErrorBgHover:ie[2],colorErrorBorder:ie[3],colorErrorBorderHover:ie[4],colorErrorHover:ie[5],colorError:ie[6],colorErrorActive:ie[7],colorErrorTextHover:ie[8],colorErrorText:ie[9],colorErrorTextActive:ie[10],colorWarningBg:j[1],colorWarningBgHover:j[2],colorWarningBorder:j[3],colorWarningBorderHover:j[4],colorWarningHover:j[4],colorWarning:j[6],colorWarningActive:j[7],colorWarningTextHover:j[8],colorWarningText:j[9],colorWarningTextActive:j[10],colorInfoBg:me[1],colorInfoBgHover:me[2],colorInfoBorder:me[3],colorInfoBorderHover:me[4],colorInfoHover:me[4],colorInfo:me[6],colorInfoActive:me[7],colorInfoTextHover:me[8],colorInfoText:me[9],colorInfoTextActive:me[10],colorLinkHover:He[4],colorLink:He[6],colorLinkActive:He[7],colorBgMask:new u.C("#000").setAlpha(.45).toRgbString(),colorWhite:"#fff"})}var p=H=>{let W=H,ae=H,ne=H,oe=H;return H<6&&H>=5?W=H+1:H<16&&H>=6?W=H+2:H>=16&&(W=16),H<7&&H>=5?ae=4:H<8&&H>=7?ae=5:H<14&&H>=8?ae=6:H<16&&H>=14?ae=7:H>=16&&(ae=8),H<6&&H>=2?ne=1:H>=6&&(ne=2),H>4&&H<8?oe=4:H>=8&&(oe=6),{borderRadius:H>16?16:H,borderRadiusXS:ne,borderRadiusSM:ae,borderRadiusLG:W,borderRadiusOuter:oe}};function y(H){const{motionUnit:W,motionBase:ae,borderRadius:ne,lineWidth:oe}=H;return Object.assign({motionDurationFast:`${(ae+W).toFixed(1)}s`,motionDurationMid:`${(ae+W*2).toFixed(1)}s`,motionDurationSlow:`${(ae+W*3).toFixed(1)}s`,lineWidthBold:oe+1},p(ne))}const m=(H,W)=>new u.C(H).setAlpha(W).toRgbString(),b=(H,W)=>new u.C(H).darken(W).toHexString(),S=H=>{const W=(0,l.generate)(H);return{1:W[0],2:W[1],3:W[2],4:W[3],5:W[4],6:W[5],7:W[6],8:W[4],9:W[5],10:W[6]}},k=(H,W)=>{const ae=H||"#fff",ne=W||"#000";return{colorBgBase:ae,colorTextBase:ne,colorText:m(ne,.88),colorTextSecondary:m(ne,.65),colorTextTertiary:m(ne,.45),colorTextQuaternary:m(ne,.25),colorFill:m(ne,.15),colorFillSecondary:m(ne,.06),colorFillTertiary:m(ne,.04),colorFillQuaternary:m(ne,.02),colorBgLayout:b(ae,4),colorBgContainer:b(ae,0),colorBgElevated:b(ae,0),colorBgSpotlight:m(ne,.85),colorBorder:b(ae,15),colorBorderSecondary:b(ae,6)}};function R(H){const W=new Array(10).fill(null).map((ae,ne)=>{const oe=ne-1,q=H*Math.pow(2.71828,oe/5),X=ne>1?Math.floor(q):Math.ceil(q);return Math.floor(X/2)*2});return W[1]=H,W.map(ae=>{const ne=ae+8;return{size:ae,lineHeight:ne/ae}})}var P=H=>{const W=R(H),ae=W.map(oe=>oe.size),ne=W.map(oe=>oe.lineHeight);return{fontSizeSM:ae[0],fontSize:ae[1],fontSizeLG:ae[2],fontSizeXL:ae[3],fontSizeHeading1:ae[6],fontSizeHeading2:ae[5],fontSizeHeading3:ae[4],fontSizeHeading4:ae[3],fontSizeHeading5:ae[2],lineHeight:ne[1],lineHeightLG:ne[2],lineHeightSM:ne[0],lineHeightHeading1:ne[6],lineHeightHeading2:ne[5],lineHeightHeading3:ne[4],lineHeightHeading4:ne[3],lineHeightHeading5:ne[2]}};function M(H){const W=Object.keys(h.M).map(ae=>{const ne=(0,l.generate)(H[ae]);return new Array(10).fill(1).reduce((oe,q,X)=>(oe[`${ae}-${X+1}`]=ne[X],oe[`${ae}${X+1}`]=ne[X],oe),{})}).reduce((ae,ne)=>(ae=Object.assign(Object.assign({},ae),ne),ae),{});return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},H),W),a(H,{generateColorPalettes:S,generateNeutralColorPalettes:k})),P(H.fontSize)),o(H)),f(H)),y(H))}const B=(0,r.createTheme)(M),N={token:h.Z,hashed:!0},K=i.createContext(N)},33166:function(d,v,e){"use strict";e.d(v,{i:function(){return r}});const r=["blue","purple","cyan","green","magenta","pink","red","orange","yellow","volcano","geekblue","lime","gold"]},34117:function(d,v,e){"use strict";e.d(v,{M:function(){return r}});const r={blue:"#1677ff",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#eb2f96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},i=Object.assign(Object.assign({},r),{colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,motion:!0});v.Z=i},88088:function(d,v,e){"use strict";e.d(v,{Z:function(){return S}});var r=e(36237),i=e(59301),l="5.9.0",c=l,f=e(45246),o=e(34117),h=e(64993);function u(k){return k>=0&&k<=255}function a(k,R){const{r:A,g:P,b:M,a:B}=new h.C(k).toRgb();if(B<1)return k;const{r:N,g:K,b:H}=new h.C(R).toRgb();for(let W=.01;W<=1;W+=.01){const ae=Math.round((A-N*(1-W))/W),ne=Math.round((P-K*(1-W))/W),oe=Math.round((M-H*(1-W))/W);if(u(ae)&&u(ne)&&u(oe))return new h.C({r:ae,g:ne,b:oe,a:Math.round(W*100)/100}).toRgbString()}return new h.C({r:A,g:P,b:M,a:1}).toRgbString()}var x=a,p=function(k,R){var A={};for(var P in k)Object.prototype.hasOwnProperty.call(k,P)&&R.indexOf(P)<0&&(A[P]=k[P]);if(k!=null&&typeof Object.getOwnPropertySymbols=="function")for(var M=0,P=Object.getOwnPropertySymbols(k);M<P.length;M++)R.indexOf(P[M])<0&&Object.prototype.propertyIsEnumerable.call(k,P[M])&&(A[P[M]]=k[P[M]]);return A};function y(k){const{override:R}=k,A=p(k,["override"]),P=Object.assign({},R);Object.keys(o.Z).forEach(oe=>{delete P[oe]});const M=Object.assign(Object.assign({},A),P),B=480,N=576,K=768,H=992,W=1200,ae=1600;if(M.motion===!1){const oe="0s";M.motionDurationFast=oe,M.motionDurationMid=oe,M.motionDurationSlow=oe}return Object.assign(Object.assign(Object.assign({},M),{colorFillContent:M.colorFillSecondary,colorFillContentHover:M.colorFill,colorFillAlter:M.colorFillQuaternary,colorBgContainerDisabled:M.colorFillTertiary,colorBorderBg:M.colorBgContainer,colorSplit:x(M.colorBorderSecondary,M.colorBgContainer),colorTextPlaceholder:M.colorTextQuaternary,colorTextDisabled:M.colorTextQuaternary,colorTextHeading:M.colorText,colorTextLabel:M.colorTextSecondary,colorTextDescription:M.colorTextTertiary,colorTextLightSolid:M.colorWhite,colorHighlight:M.colorError,colorBgTextHover:M.colorFillSecondary,colorBgTextActive:M.colorFill,colorIcon:M.colorTextTertiary,colorIconHover:M.colorText,colorErrorOutline:x(M.colorErrorBg,M.colorBgContainer),colorWarningOutline:x(M.colorWarningBg,M.colorBgContainer),fontSizeIcon:M.fontSizeSM,lineWidthFocus:M.lineWidth*4,lineWidth:M.lineWidth,controlOutlineWidth:M.lineWidth*2,controlInteractiveSize:M.controlHeight/2,controlItemBgHover:M.colorFillTertiary,controlItemBgActive:M.colorPrimaryBg,controlItemBgActiveHover:M.colorPrimaryBgHover,controlItemBgActiveDisabled:M.colorFill,controlTmpOutline:M.colorFillQuaternary,controlOutline:x(M.colorPrimaryBg,M.colorBgContainer),lineType:M.lineType,borderRadius:M.borderRadius,borderRadiusXS:M.borderRadiusXS,borderRadiusSM:M.borderRadiusSM,borderRadiusLG:M.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:M.sizeXXS,paddingXS:M.sizeXS,paddingSM:M.sizeSM,padding:M.size,paddingMD:M.sizeMD,paddingLG:M.sizeLG,paddingXL:M.sizeXL,paddingContentHorizontalLG:M.sizeLG,paddingContentVerticalLG:M.sizeMS,paddingContentHorizontal:M.sizeMS,paddingContentVertical:M.sizeSM,paddingContentHorizontalSM:M.size,paddingContentVerticalSM:M.sizeXS,marginXXS:M.sizeXXS,marginXS:M.sizeXS,marginSM:M.sizeSM,margin:M.size,marginMD:M.sizeMD,marginLG:M.sizeLG,marginXL:M.sizeXL,marginXXL:M.sizeXXL,boxShadow:`
0 6px 16px 0 rgba(0, 0, 0, 0.08),
0 3px 6px -4px rgba(0, 0, 0, 0.12),
0 9px 28px 8px rgba(0, 0, 0, 0.05)
`,boxShadowSecondary:`
0 6px 16px 0 rgba(0, 0, 0, 0.08),
0 3px 6px -4px rgba(0, 0, 0, 0.12),
0 9px 28px 8px rgba(0, 0, 0, 0.05)
`,boxShadowTertiary:`
0 1px 2px 0 rgba(0, 0, 0, 0.03),
0 1px 6px -1px rgba(0, 0, 0, 0.02),
0 2px 4px 0 rgba(0, 0, 0, 0.02)
`,screenXS:B,screenXSMin:B,screenXSMax:N-1,screenSM:N,screenSMMin:N,screenSMMax:K-1,screenMD:K,screenMDMin:K,screenMDMax:H-1,screenLG:H,screenLGMin:H,screenLGMax:W-1,screenXL:W,screenXLMin:W,screenXLMax:ae-1,screenXXL:ae,screenXXLMin:ae,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`
0 1px 2px -2px ${new h.C("rgba(0, 0, 0, 0.16)").toRgbString()},
0 3px 6px 0 ${new h.C("rgba(0, 0, 0, 0.12)").toRgbString()},
0 5px 12px 4px ${new h.C("rgba(0, 0, 0, 0.09)").toRgbString()}
`,boxShadowDrawerRight:`
-6px 0 16px 0 rgba(0, 0, 0, 0.08),
-3px 0 6px -4px rgba(0, 0, 0, 0.12),
-9px 0 28px 8px rgba(0, 0, 0, 0.05)
`,boxShadowDrawerLeft:`
6px 0 16px 0 rgba(0, 0, 0, 0.08),
3px 0 6px -4px rgba(0, 0, 0, 0.12),
9px 0 28px 8px rgba(0, 0, 0, 0.05)
`,boxShadowDrawerUp:`
0 6px 16px 0 rgba(0, 0, 0, 0.08),
0 3px 6px -4px rgba(0, 0, 0, 0.12),
0 9px 28px 8px rgba(0, 0, 0, 0.05)
`,boxShadowDrawerDown:`
0 -6px 16px 0 rgba(0, 0, 0, 0.08),
0 -3px 6px -4px rgba(0, 0, 0, 0.12),
0 -9px 28px 8px rgba(0, 0, 0, 0.05)
`,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)"}),P)}var m=function(k,R){var A={};for(var P in k)Object.prototype.hasOwnProperty.call(k,P)&&R.indexOf(P)<0&&(A[P]=k[P]);if(k!=null&&typeof Object.getOwnPropertySymbols=="function")for(var M=0,P=Object.getOwnPropertySymbols(k);M<P.length;M++)R.indexOf(P[M])<0&&Object.prototype.propertyIsEnumerable.call(k,P[M])&&(A[P[M]]=k[P[M]]);return A};const b=(k,R,A)=>{const P=A.getDerivativeToken(k),{override:M}=R,B=m(R,["override"]);let N=Object.assign(Object.assign({},P),{override:M});return N=y(N),B&&Object.entries(B).forEach(K=>{let[H,W]=K;const{theme:ae}=W,ne=m(W,["theme"]);let oe=ne;ae&&(oe=b(Object.assign(Object.assign({},N),ne),{override:ne},ae)),N[H]=oe}),N};function S(){const{token:k,hashed:R,theme:A,components:P}=i.useContext(f.Mj),M=`${c}-${R||""}`,B=A||f.uH,[N,K]=(0,r.useCacheToken)(B,[o.Z,k],{salt:M,override:Object.assign({override:k},P),getComputedToken:b,formatToken:y});return[B,N,R?K:""]}},83116:function(d,v,e){"use strict";e.d(v,{Z:function(){return a},b:function(){return x}});var r=e(59301),i=e(36237),l=e(70425),c=e(36355),f=e(17313),o=e(88088),h=e(37613),u=e(73040);function a(p,y,m){let b=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{};const S=Array.isArray(p)?p:[p,p],[k]=S,R=S.join("-");return A=>{const[P,M,B]=(0,o.Z)(),{getPrefixCls:N,iconPrefixCls:K,csp:H}=(0,r.useContext)(c.E_),W=N(),ae={theme:P,token:M,hashId:B,nonce:()=>H==null?void 0:H.nonce,clientOnly:b.clientOnly,order:b.order||-999};return(0,i.useStyleRegister)(Object.assign(Object.assign({},ae),{clientOnly:!1,path:["Shared",W]}),()=>[{"&":(0,f.Lx)(M)}]),(0,u.Z)(K),[(0,i.useStyleRegister)(Object.assign(Object.assign({},ae),{path:[R,A,K]}),()=>{const{token:ne,flush:oe}=(0,h.ZP)(M),q=Object.assign({},M[k]);if(b.deprecatedTokens){const{deprecatedTokens:le}=b;le.forEach(z=>{let[j,ie]=z;var me;(q!=null&&q[j]||q!=null&&q[ie])&&((me=q[ie])!==null&&me!==void 0||(q[ie]=q==null?void 0:q[j]))})}const X=typeof m=="function"?m((0,h.TS)(ne,q!=null?q:{})):m,V=Object.assign(Object.assign({},X),q),se=`.${A}`,ee=(0,h.TS)(ne,{componentCls:se,prefixCls:A,iconCls:`.${K}`,antCls:`.${W}`},V),J=y(ee,{hashId:B,prefixCls:A,rootPrefixCls:W,iconPrefixCls:K,overrideComponentToken:q});return oe(k,V),[b.resetStyle===!1?null:(0,f.du)(M,A),J]}),B]}}const x=(p,y,m,b)=>{const S=a(p,y,m,Object.assign({resetStyle:!1,order:-998},b));return R=>{let{prefixCls:A}=R;return S(A),null}}},45157:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(33166);function i(l,c){return r.i.reduce((f,o)=>{const h=l[`${o}1`],u=l[`${o}3`],a=l[`${o}6`],x=l[`${o}7`];return Object.assign(Object.assign({},f),c(o,{lightColor:h,lightBorderColor:u,darkColor:a,textColor:x}))},{})}},37613:function(d,v,e){"use strict";e.d(v,{TS:function(){return l},ZP:function(){return h}});const r=typeof CSSINJS_STATISTIC!="undefined";let i=!0;function l(){for(var u=arguments.length,a=new Array(u),x=0;x<u;x++)a[x]=arguments[x];if(!r)return Object.assign.apply(Object,[{}].concat(a));i=!1;const p={};return a.forEach(y=>{Object.keys(y).forEach(b=>{Object.defineProperty(p,b,{configurable:!0,enumerable:!0,get:()=>y[b]})})}),i=!0,p}const c={},f={};function o(){}function h(u){let a,x=u,p=o;return r&&(a=new Set,x=new Proxy(u,{get(y,m){return i&&a.add(m),y[m]}}),p=(y,m)=>{var b;c[y]={global:Array.from(a),component:Object.assign(Object.assign({},(b=c[y])===null||b===void 0?void 0:b.component),m)}}),{token:x,keys:a,flush:p}}},73040:function(d,v,e){"use strict";var r=e(36237),i=e(17313),l=e(88088);const c=(f,o)=>{const[h,u]=(0,l.Z)();return(0,r.useStyleRegister)({theme:h,token:u,hashId:"",path:["ant-design-icons",f],nonce:()=>o==null?void 0:o.nonce},()=>[{[`.${f}`]:Object.assign(Object.assign({},(0,i.Ro)()),{[`.${f} .${f}-icon`]:{display:"block"}})}])};v.Z=c},67532:function(d,v){"use strict";const e={placeholder:"Select time",rangePlaceholder:["Start time","End time"]};v.Z=e},6848:function(d,v,e){"use strict";e.d(v,{Z:function(){return oe}});var r=e(59301),i=e(92310),l=e.n(i),c=e(55477),f=e(18929),o=e(62892),h=e(79676),u=e(92343),a=e(36355),x=e(33234),p=e(88088),y=e(17313),m=e(29878),b=e(19447),S=e(45157),k=e(37613),R=e(83116);const A=q=>{const{componentCls:X,tooltipMaxWidth:V,tooltipColor:se,tooltipBg:ee,tooltipBorderRadius:J,zIndexPopup:le,controlHeight:z,boxShadowSecondary:j,paddingSM:ie,paddingXS:me,tooltipRadiusOuter:Se}=q;return[{[X]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,y.Wf)(q)),{position:"absolute",zIndex:le,display:"block",width:"max-content",maxWidth:V,visibility:"visible",transformOrigin:"var(--arrow-x, 50%) var(--arrow-y, 50%)","&-hidden":{display:"none"},"--antd-arrow-background-color":ee,[`${X}-inner`]:{minWidth:z,minHeight:z,padding:`${ie/2}px ${me}px`,color:se,textAlign:"start",textDecoration:"none",wordWrap:"break-word",backgroundColor:ee,borderRadius:J,boxShadow:j,boxSizing:"border-box"},[["&-placement-left","&-placement-leftTop","&-placement-leftBottom","&-placement-right","&-placement-rightTop","&-placement-rightBottom"].join(",")]:{[`${X}-inner`]:{borderRadius:Math.min(J,b.qN)}},[`${X}-content`]:{position:"relative"}}),(0,S.Z)(q,(Ie,He)=>{let{darkColor:je}=He;return{[`&${X}-${Ie}`]:{[`${X}-inner`]:{backgroundColor:je},[`${X}-arrow`]:{"--antd-arrow-background-color":je}}}})),{"&-rtl":{direction:"rtl"}})},(0,b.ZP)((0,k.TS)(q,{borderRadiusOuter:Se}),{colorBg:"var(--antd-arrow-background-color)",contentRadius:J,limitVerticalRadius:!0}),{[`${X}-pure`]:{position:"relative",maxWidth:"none",margin:q.sizePopupArrow}}]};var P=(q,X)=>(0,R.Z)("Tooltip",se=>{if(X===!1)return[];const{borderRadius:ee,colorTextLightSolid:J,colorBgDefault:le,borderRadiusOuter:z}=se,j=(0,k.TS)(se,{tooltipMaxWidth:250,tooltipColor:J,tooltipBorderRadius:ee,tooltipBg:le,tooltipRadiusOuter:z>4?4:z});return[A(j),(0,m._y)(se,"zoom-big-fast")]},se=>{let{zIndexPopupBase:ee,colorBgSpotlight:J}=se;return{zIndexPopup:ee+70,colorBgDefault:J}},{resetStyle:!1})(q),M=e(36785);function B(q,X){const V=(0,M.o2)(X),se=l()({[`${q}-${X}`]:X&&V}),ee={},J={};return X&&!V&&(ee.background=X,J["--antd-arrow-background-color"]=X),{className:se,overlayStyle:ee,arrowStyle:J}}var K=q=>{const{prefixCls:X,className:V,placement:se="top",title:ee,color:J,overlayInnerStyle:le}=q,{getPrefixCls:z}=r.useContext(a.E_),j=z("tooltip",X),[ie,me]=P(j,!0),Se=B(j,J),Ie=Se.arrowStyle,He=Object.assign(Object.assign({},le),Se.overlayStyle),je=l()(me,j,`${j}-pure`,`${j}-placement-${se}`,V,Se.className);return ie(r.createElement("div",{className:je,style:Ie},r.createElement("div",{className:`${j}-arrow`}),r.createElement(c.G,Object.assign({},q,{className:me,prefixCls:j,overlayInnerStyle:He}),ee)))},H=function(q,X){var V={};for(var se in q)Object.prototype.hasOwnProperty.call(q,se)&&X.indexOf(se)<0&&(V[se]=q[se]);if(q!=null&&typeof Object.getOwnPropertySymbols=="function")for(var ee=0,se=Object.getOwnPropertySymbols(q);ee<se.length;ee++)X.indexOf(se[ee])<0&&Object.prototype.propertyIsEnumerable.call(q,se[ee])&&(V[se[ee]]=q[se[ee]]);return V};const W=(q,X)=>{const V={},se=Object.assign({},q);return X.forEach(ee=>{q&&ee in q&&(V[ee]=q[ee],delete se[ee])}),{picked:V,omitted:se}};function ae(q,X){const V=q.type;if((V.__ANT_BUTTON===!0||q.type==="button")&&q.props.disabled||V.__ANT_SWITCH===!0&&(q.props.disabled||q.props.loading)||V.__ANT_RADIO===!0&&q.props.disabled){const{picked:se,omitted:ee}=W(q.props.style,["position","left","right","top","bottom","float","display","zIndex"]),J=Object.assign(Object.assign({display:"inline-block"},se),{cursor:"not-allowed",width:q.props.block?"100%":void 0}),le=Object.assign(Object.assign({},ee),{pointerEvents:"none"}),z=(0,u.Tm)(q,{style:le,className:null});return r.createElement("span",{style:J,className:l()(q.props.className,`${X}-disabled-compatible-wrapper`)},z)}return q}const ne=r.forwardRef((q,X)=>{var V,se;const{prefixCls:ee,openClassName:J,getTooltipContainer:le,overlayClassName:z,color:j,overlayInnerStyle:ie,children:me,afterOpenChange:Se,afterVisibleChange:Ie,destroyTooltipOnHide:He,arrow:je=!0,title:Dt,overlay:ht,builtinPlacements:It,arrowPointAtCenter:Zt=!1,autoAdjustOverflow:Rt=!0}=q,ar=!!je,[,$e]=(0,p.Z)(),{getPopupContainer:gt,getPrefixCls:Mt,direction:et}=r.useContext(a.E_),ft=r.useRef(null),ot=()=>{var Te;(Te=ft.current)===null||Te===void 0||Te.forceAlign()};r.useImperativeHandle(X,()=>({forceAlign:ot,forcePopupAlign:()=>{ot()}}));const[Je,Ne]=(0,f.Z)(!1,{value:(V=q.open)!==null&&V!==void 0?V:q.visible,defaultValue:(se=q.defaultOpen)!==null&&se!==void 0?se:q.defaultVisible}),ye=!Dt&&!ht&&Dt!==0,ke=Te=>{var yt,ze;Ne(ye?!1:Te),ye||((yt=q.onOpenChange)===null||yt===void 0||yt.call(q,Te),(ze=q.onVisibleChange)===null||ze===void 0||ze.call(q,Te))},Ge=r.useMemo(()=>{var Te,yt;let ze=Zt;return typeof je=="object"&&(ze=(yt=(Te=je.pointAtCenter)!==null&&Te!==void 0?Te:je.arrowPointAtCenter)!==null&&yt!==void 0?yt:Zt),It||(0,h.Z)({arrowPointAtCenter:ze,autoAdjustOverflow:Rt,arrowWidth:ar?$e.sizePopupArrow:0,borderRadius:$e.borderRadius,offset:$e.marginXXS,visibleFirst:!0})},[Zt,je,It,$e]),We=r.useMemo(()=>Dt===0?Dt:ht||Dt||"",[ht,Dt]),Xe=r.createElement(x.BR,null,typeof We=="function"?We():We),{getPopupContainer:ut,placement:pt="top",mouseEnterDelay:or=.1,mouseLeaveDelay:tr=.1,overlayStyle:Me,rootClassName:tt}=q,Yt=H(q,["getPopupContainer","placement","mouseEnterDelay","mouseLeaveDelay","overlayStyle","rootClassName"]),Ot=Mt("tooltip",ee),zt=Mt(),Ht=q["data-popover-inject"];let lr=Je;!("open"in q)&&!("visible"in q)&&ye&&(lr=!1);const Wt=ae((0,u.l$)(me)&&!(0,u.M2)(me)?me:r.createElement("span",null,me),Ot),Ce=Wt.props,ce=!Ce.className||typeof Ce.className=="string"?l()(Ce.className,J||`${Ot}-open`):Ce.className,[pe,Ct]=P(Ot,!Ht),Ae=B(Ot,j),st=Ae.arrowStyle,Gt=Object.assign(Object.assign({},ie),Ae.overlayStyle),bt=l()(z,{[`${Ot}-rtl`]:et==="rtl"},Ae.className,tt,Ct);return pe(r.createElement(c.Z,Object.assign({},Yt,{showArrow:ar,placement:pt,mouseEnterDelay:or,mouseLeaveDelay:tr,prefixCls:Ot,overlayClassName:bt,overlayStyle:Object.assign(Object.assign({},st),Me),getTooltipContainer:ut||le||gt,ref:ft,builtinPlacements:Ge,overlay:Xe,visible:lr,onVisibleChange:ke,afterVisibleChange:Se!=null?Se:Ie,overlayInnerStyle:Gt,arrowContent:r.createElement("span",{className:`${Ot}-arrow-content`}),motion:{motionName:(0,o.m)(zt,"zoom-big-fast",q.transitionName),motionDeadline:1e3},destroyTooltipOnHide:!!He}),lr?(0,u.Tm)(Wt,{className:ce}):Wt))});ne._InternalPanelDoNotUseOrYouWillBeFired=K;var oe=ne},11575:function(d,v,e){"use strict";e.d(v,{H:function(){return f}});var r=e(70425),i=e(59301);function l(){}const c=i.createContext({add:l,remove:l});function f(h){const u=i.useContext(c),a=i.useRef();return(0,r.useEvent)(p=>{if(p){const y=h?p.querySelector(h):p;u.add(y),a.current=y}else u.remove(a.current)})}var o=null},67751:function(d){var v={utf8:{stringToBytes:function(e){return v.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(v.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var r=[],i=0;i<e.length;i++)r.push(e.charCodeAt(i)&255);return r},bytesToString:function(e){for(var r=[],i=0;i<e.length;i++)r.push(String.fromCharCode(e[i]));return r.join("")}}};d.exports=v},64018:function(){var d,v,e,r=!1,i,l;window.PR_SHOULD_USE_CONTINUATION=!0;var c,f;(function(){var o=window,h=["break,continue,do,else,for,if,return,while"],u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,restrict,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],a=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],x=[a,"alignas,alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,noexcept,noreturn,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],p=[a,"abstract,assert,boolean,byte,extends,finally,final,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"],y=[a,"abstract,add,alias,as,ascending,async,await,base,bool,by,byte,checked,decimal,delegate,descending,dynamic,event,finally,fixed,foreach,from,get,global,group,implicit,in,interface,internal,into,is,join,let,lock,null,object,out,override,orderby,params,partial,readonly,ref,remove,sbyte,sealed,select,set,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,value,var,virtual,where,yield"],m="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",b=[a,"abstract,async,await,constructor,debugger,enum,eval,export,function,get,implements,instanceof,interface,let,null,set,undefined,var,with,yield,Infinity,NaN"],S="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",k=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],R=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],A=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],P=[x,y,p,b,S,k,R,A],M=/^(DIR|FILE|array|vector|(de|priority_)?queue|(forward_)?list|stack|(const_)?(reverse_)?iterator|(unordered_)?(multi)?(set|map)|bitset|u?(int|float)\d*)\b/,B="str",N="kwd",K="com",H="typ",W="lit",ae="pun",ne="pln",oe="tag",q="dec",X="src",V="atn",se="atv",ee="nocode",J="(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function le(et){for(var ft=0,ot=!1,Je=!1,Ne=0,ye=et.length;Ne<ye;++Ne){var ke=et[Ne];if(ke.ignoreCase)Je=!0;else if(/[a-z]/i.test(ke.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,""))){ot=!0,Je=!1;break}}var Ge={b:8,t:9,n:10,v:11,f:12,r:13};function We(tr){var Me=tr.charCodeAt(0);if(Me!==92)return Me;var tt=tr.charAt(1);return Me=Ge[tt],Me||("0"<=tt&&tt<="7"?parseInt(tr.substring(1),8):tt==="u"||tt==="x"?parseInt(tr.substring(2),16):tr.charCodeAt(1))}function Xe(tr){if(tr<32)return(tr<16?"\\x0":"\\x")+tr.toString(16);var Me=String.fromCharCode(tr);return Me==="\\"||Me==="-"||Me==="]"||Me==="^"?"\\"+Me:Me}function ut(tr){var Me=tr.substring(1,tr.length-1).match(new RegExp("\\\\u[0-9A-Fa-f]{4}|\\\\x[0-9A-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\s\\S]|-|[^-\\\\]","g")),tt=[],Yt=Me[0]==="^",Ot=["["];Yt&&Ot.push("^");for(var zt=Yt?1:0,Ht=Me.length;zt<Ht;++zt){var lr=Me[zt];if(/\\[bdsw]/i.test(lr))Ot.push(lr);else{var Wt=We(lr),Ce;zt+2<Ht&&Me[zt+1]==="-"?(Ce=We(Me[zt+2]),zt+=2):Ce=Wt,tt.push([Wt,Ce]),Ce<65||Wt>122||(Ce<65||Wt>90||tt.push([Math.max(65,Wt)|32,Math.min(Ce,90)|32]),Ce<97||Wt>122||tt.push([Math.max(97,Wt)&-33,Math.min(Ce,122)&-33]))}}tt.sort(function(Ae,st){return Ae[0]-st[0]||st[1]-Ae[1]});for(var ce=[],pe=[],zt=0;zt<tt.length;++zt){var Ct=tt[zt];Ct[0]<=pe[1]+1?pe[1]=Math.max(pe[1],Ct[1]):ce.push(pe=Ct)}for(var zt=0;zt<ce.length;++zt){var Ct=ce[zt];Ot.push(Xe(Ct[0])),Ct[1]>Ct[0]&&(Ct[1]+1>Ct[0]&&Ot.push("-"),Ot.push(Xe(Ct[1])))}return Ot.push("]"),Ot.join("")}function pt(tr){for(var Me=tr.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g")),tt=Me.length,Yt=[],Ot=0,zt=0;Ot<tt;++Ot){var Ht=Me[Ot];if(Ht==="(")++zt;else if(Ht.charAt(0)==="\\"){var lr=+Ht.substring(1);lr&&(lr<=zt?Yt[lr]=-1:Me[Ot]=Xe(lr))}}for(var Ot=1;Ot<Yt.length;++Ot)Yt[Ot]===-1&&(Yt[Ot]=++ft);for(var Ot=0,zt=0;Ot<tt;++Ot){var Ht=Me[Ot];if(Ht==="(")++zt,Yt[zt]||(Me[Ot]="(?:");else if(Ht.charAt(0)==="\\"){var lr=+Ht.substring(1);lr&&lr<=zt&&(Me[Ot]="\\"+Yt[lr])}}for(var Ot=0;Ot<tt;++Ot)Me[Ot]==="^"&&Me[Ot+1]!=="^"&&(Me[Ot]="");if(tr.ignoreCase&&ot)for(var Ot=0;Ot<tt;++Ot){var Ht=Me[Ot],Wt=Ht.charAt(0);Ht.length>=2&&Wt==="["?Me[Ot]=ut(Ht):Wt!=="\\"&&(Me[Ot]=Ht.replace(/[a-zA-Z]/g,function(pe){var Ct=pe.charCodeAt(0);return"["+String.fromCharCode(Ct&-33,Ct|32)+"]"}))}return Me.join("")}for(var or=[],Ne=0,ye=et.length;Ne<ye;++Ne){var ke=et[Ne];if(ke.global||ke.multiline)throw new Error(""+ke);or.push("(?:"+pt(ke)+")")}return new RegExp(or.join("|"),Je?"gi":"g")}function z(et,ft){var ot=/(?:^|\s)nocode(?:\s|$)/,Je=[],Ne=0,ye=[],ke=0;function Ge(We){var Xe=We.nodeType;if(Xe==1){if(ot.test(We.className))return;for(var ut=We.firstChild;ut;ut=ut.nextSibling)Ge(ut);var pt=We.nodeName.toLowerCase();(pt==="br"||pt==="li")&&(Je[ke]=`
`,ye[ke<<1]=Ne++,ye[ke++<<1|1]=We)}else if(Xe==3||Xe==4){var or=We.nodeValue;or.length&&(ft?or=or.replace(/\r\n?/g,`
`):or=or.replace(/[ \t\r\n]+/g," "),Je[ke]=or,ye[ke<<1]=Ne,Ne+=or.length,ye[ke++<<1|1]=We)}}return Ge(et),{sourceCode:Je.join("").replace(/\n$/,""),spans:ye}}function j(et,ft,ot,Je,Ne){if(ot){var ye={sourceNode:et,pre:1,langExtension:null,numberLines:null,sourceCode:ot,spans:null,basePos:ft,decorations:null};Je(ye),Ne.push.apply(Ne,ye.decorations)}}var ie=/\S/;function me(et){for(var ft=void 0,ot=et.firstChild;ot;ot=ot.nextSibling){var Je=ot.nodeType;ft=Je===1?ft?et:ot:Je===3&&ie.test(ot.nodeValue)?et:ft}return ft===et?void 0:ft}function Se(et,ft){var ot={},Je;(function(){for(var ke=et.concat(ft),Ge=[],We={},Xe=0,ut=ke.length;Xe<ut;++Xe){var pt=ke[Xe],or=pt[3];if(or)for(var tr=or.length;--tr>=0;)ot[or.charAt(tr)]=pt;var Me=pt[1],tt=""+Me;We.hasOwnProperty(tt)||(Ge.push(Me),We[tt]=null)}Ge.push(/[\0-\uffff]/),Je=le(Ge)})();var Ne=ft.length,ye=function(ke){for(var Ge=ke.sourceCode,We=ke.basePos,Xe=ke.sourceNode,ut=[We,ne],pt=0,or=Ge.match(Je)||[],tr={},Me=0,tt=or.length;Me<tt;++Me){var Yt=or[Me],Ot=tr[Yt],zt=void 0,Ht;if(typeof Ot=="string")Ht=!1;else{var lr=ot[Yt.charAt(0)];if(lr)zt=Yt.match(lr[1]),Ot=lr[0];else{for(var Wt=0;Wt<Ne;++Wt)if(lr=ft[Wt],zt=Yt.match(lr[1]),zt){Ot=lr[0];break}zt||(Ot=ne)}Ht=Ot.length>=5&&Ot.substring(0,5)==="lang-",Ht&&!(zt&&typeof zt[1]=="string")&&(Ht=!1,Ot=X),Ht||(tr[Yt]=Ot)}var Ce=pt;if(pt+=Yt.length,!Ht)ut.push(We+Ce,Ot);else{var ce=zt[1],pe=Yt.indexOf(ce),Ct=pe+ce.length;zt[2]&&(Ct=Yt.length-zt[2].length,pe=Ct-ce.length);var Ae=Ot.substring(5);j(Xe,We+Ce,Yt.substring(0,pe),ye,ut),j(Xe,We+Ce+pe,ce,Zt(Ae,ce),ut),j(Xe,We+Ce+Ct,Yt.substring(Ct),ye,ut)}}ke.decorations=ut};return ye}function Ie(et){var ft=[],ot=[];et.tripleQuotedStrings?ft.push([B,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,`'"`]):et.multiLineStrings?ft.push([B,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"]):ft.push([B,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,`"'`]),et.verbatimStrings&&ot.push([B,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null]);var Je=et.hashComments;Je&&(et.cStyleComments?(Je>1?ft.push([K,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"]):ft.push([K,/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"]),ot.push([B,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,null])):ft.push([K,/^#[^\r\n]*/,null,"#"])),et.cStyleComments&&(ot.push([K,/^\/\/[^\r\n]*/,null]),ot.push([K,/^\/\*[\s\S]*?(?:\*\/|$)/,null]));var Ne=et.regexLiterals;if(Ne){var ye=Ne>1?"":`
\r`,ke=ye?".":"[\\S\\s]",Ge="/(?=[^/*"+ye+"])(?:[^/\\x5B\\x5C"+ye+"]|\\x5C"+ke+"|\\x5B(?:[^\\x5C\\x5D"+ye+"]|\\x5C"+ke+")*(?:\\x5D|$))+/";ot.push(["lang-regex",RegExp("^"+J+"("+Ge+")")])}var We=et.types;We&&ot.push([H,We]);var Xe=(""+et.keywords).replace(/^ | $/g,"");Xe.length&&ot.push([N,new RegExp("^(?:"+Xe.replace(/[\s,]+/g,"|")+")\\b"),null]),ft.push([ne,/^\s+/,null,` \r
\xA0`]);var ut="^.[^\\s\\w.$@'\"`/\\\\]*";return et.regexLiterals&&(ut+="(?!s*/)"),ot.push([W,/^@[a-z_$][a-z_$@0-9]*/i,null],[H,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[ne,/^[a-z_$][a-z_$@0-9]*/i,null],[W,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[ne,/^\\[\s\S]?/,null],[ae,new RegExp(ut),null]),Se(ft,ot)}var He=Ie({keywords:P,hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0});function je(et,ft,ot){for(var Je=/(?:^|\s)nocode(?:\s|$)/,Ne=/\r\n?|\n/,ye=et.ownerDocument,ke=ye.createElement("li");et.firstChild;)ke.appendChild(et.firstChild);var Ge=[ke];function We(Me){var tt=Me.nodeType;if(tt==1&&!Je.test(Me.className))if(Me.nodeName==="br")Xe(Me),Me.parentNode&&Me.parentNode.removeChild(Me);else for(var Yt=Me.firstChild;Yt;Yt=Yt.nextSibling)We(Yt);else if((tt==3||tt==4)&&ot){var Ot=Me.nodeValue,zt=Ot.match(Ne);if(zt){var Ht=Ot.substring(0,zt.index);Me.nodeValue=Ht;var lr=Ot.substring(zt.index+zt[0].length);if(lr){var Wt=Me.parentNode;Wt.insertBefore(ye.createTextNode(lr),Me.nextSibling)}Xe(Me),Ht||Me.parentNode.removeChild(Me)}}}function Xe(Me){for(;!Me.nextSibling;)if(Me=Me.parentNode,!Me)return;function tt(zt,Ht){var lr=Ht?zt.cloneNode(!1):zt,Wt=zt.parentNode;if(Wt){var Ce=tt(Wt,1),ce=zt.nextSibling;Ce.appendChild(lr);for(var pe=ce;pe;pe=ce)ce=pe.nextSibling,Ce.appendChild(pe)}return lr}for(var Yt=tt(Me.nextSibling,0),Ot;(Ot=Yt.parentNode)&&Ot.nodeType===1;)Yt=Ot;Ge.push(Yt)}for(var ut=0;ut<Ge.length;++ut)We(Ge[ut]);ft===(ft|0)&&Ge[0].setAttribute("value",ft);var pt=ye.createElement("ol");pt.className="linenums";for(var or=Math.max(0,ft-1|0)||0,ut=0,tr=Ge.length;ut<tr;++ut)ke=Ge[ut],ke.className="L"+(ut+or)%10,ke.firstChild||ke.appendChild(ye.createTextNode("\xA0")),pt.appendChild(ke);et.appendChild(pt)}function Dt(et){var ft=/\bMSIE\s(\d+)/.exec(navigator.userAgent);ft=ft&&+ft[1]<=8;var ot=/\n/g,Je=et.sourceCode,Ne=Je.length,ye=0,ke=et.spans,Ge=ke.length,We=0,Xe=et.decorations,ut=Xe.length,pt=0;Xe[ut]=Ne;var or,tr;for(tr=or=0;tr<ut;)Xe[tr]!==Xe[tr+2]?(Xe[or++]=Xe[tr++],Xe[or++]=Xe[tr++]):tr+=2;for(ut=or,tr=or=0;tr<ut;){for(var Me=Xe[tr],tt=Xe[tr+1],Yt=tr+2;Yt+2<=ut&&Xe[Yt+1]===tt;)Yt+=2;Xe[or++]=Me,Xe[or++]=tt,tr=Yt}ut=Xe.length=or;var Ot=et.sourceNode,zt="";Ot&&(zt=Ot.style.display,Ot.style.display="none");try{for(var Ht=null;We<Ge;){var lr=ke[We],Wt=ke[We+2]||Ne,Ce=Xe[pt+2]||Ne,Yt=Math.min(Wt,Ce),ce=ke[We+1],pe;if(ce.nodeType!==1&&(pe=Je.substring(ye,Yt))){ft&&(pe=pe.replace(ot,"\r")),ce.nodeValue=pe;var Ct=ce.ownerDocument,Ae=Ct.createElement("span");Ae.className=Xe[pt+1];var st=ce.parentNode;st.replaceChild(Ae,ce),Ae.appendChild(ce),ye<Wt&&(ke[We+1]=ce=Ct.createTextNode(Je.substring(Yt,Wt)),st.insertBefore(ce,Ae.nextSibling))}ye=Yt,ye>=Wt&&(We+=2),ye>=Ce&&(pt+=2)}}finally{Ot&&(Ot.style.display=zt)}}var ht={};function It(et,ft){for(var ot=ft.length;--ot>=0;){var Je=ft[ot];ht.hasOwnProperty(Je)?o.console&&console.warn("cannot override language handler %s",Je):ht[Je]=et}}function Zt(et,ft){return et&&ht.hasOwnProperty(et)||(et=/^\s*</.test(ft)?"default-markup":"default-code"),ht[et]}It(He,["default-code"]),It(Se([],[[ne,/^[^<?]+/],[q,/^<!\w[^>]*(?:>|$)/],[K,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[ae,/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]),It(Se([[ne,/^[\s]+/,null,` \r
`],[se,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,`"'`]],[[oe,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[V,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[ae,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]),It(Se([],[[se,/^[\s\S]+/]]),["uq.val"]),It(Ie({keywords:x,hashComments:!0,cStyleComments:!0,types:M}),["c","cc","cpp","cxx","cyc","m"]),It(Ie({keywords:"null,true,false"}),["json"]),It(Ie({keywords:y,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:M}),["cs"]),It(Ie({keywords:p,cStyleComments:!0}),["java"]),It(Ie({keywords:A,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]),It(Ie({keywords:k,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]),It(Ie({keywords:S,hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]),It(Ie({keywords:R,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]),It(Ie({keywords:b,cStyleComments:!0,regexLiterals:!0}),["javascript","js","ts","typescript"]),It(Ie({keywords:m,hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]),It(Se([],[[B,/^[\s\S]+/]]),["regex"]);function Rt(et){var ft=et.langExtension;try{var ot=z(et.sourceNode,et.pre),Je=ot.sourceCode;et.sourceCode=Je,et.spans=ot.spans,et.basePos=0,Zt(ft,Je)(et),Dt(et)}catch(Ne){o.console&&console.log(Ne&&Ne.stack||Ne)}}function ar(et,ft,ot){var Je=ot||!1,Ne=ft||null,ye=document.createElement("div");ye.innerHTML="<pre>"+et+"</pre>",ye=ye.firstChild,Je&&je(ye,Je,!0);var ke={langExtension:Ne,numberLines:Je,sourceNode:ye,pre:1,sourceCode:null,basePos:null,spans:null,decorations:null};return Rt(ke),ye.innerHTML}function $e(et,ft){var ot=ft||document.body,Je=ot.ownerDocument||document;function Ne(lr){return ot.getElementsByTagName(lr)}for(var ye=[Ne("pre"),Ne("code"),Ne("xmp")],ke=[],Ge=0;Ge<ye.length;++Ge)for(var We=0,Xe=ye[Ge].length;We<Xe;++We)ke.push(ye[Ge][We]);ye=null;var ut=Date;ut.now||(ut={now:function(){return+new Date}});var pt=0,or=/\blang(?:uage)?-([\w.]+)(?!\S)/,tr=/\bprettyprint\b/,Me=/\bprettyprinted\b/,tt=/pre|xmp/i,Yt=/^code$/i,Ot=/^(?:pre|code|xmp)$/i,zt={};function Ht(){for(var lr=o.PR_SHOULD_USE_CONTINUATION?ut.now()+250:1/0;pt<ke.length&&ut.now()<lr;pt++){for(var Wt=ke[pt],Ce=zt,ce=Wt;ce=ce.previousSibling;){var pe=ce.nodeType,Ct=(pe===7||pe===8)&&ce.nodeValue;if(Ct?!/^\??prettify\b/.test(Ct):pe!==3||/\S/.test(ce.nodeValue))break;if(Ct){Ce={},Ct.replace(/\b(\w+)=([\w:.%+-]+)/g,function(mt,qr,an){Ce[qr]=an});break}}var Ae=Wt.className;if((Ce!==zt||tr.test(Ae))&&!Me.test(Ae)){for(var st=!1,Gt=Wt.parentNode;Gt;Gt=Gt.parentNode){var bt=Gt.tagName;if(Ot.test(bt)&&Gt.className&&tr.test(Gt.className)){st=!0;break}}if(!st){Wt.className+=" prettyprinted";var Te=Ce.lang;if(!Te){Te=Ae.match(or);var yt;!Te&&(yt=me(Wt))&&Yt.test(yt.tagName)&&(Te=yt.className.match(or)),Te&&(Te=Te[1])}var ze;if(tt.test(Wt.tagName))ze=1;else{var xe=Wt.currentStyle,dt=Je.defaultView,Pt=xe?xe.whiteSpace:dt&&dt.getComputedStyle?dt.getComputedStyle(Wt,null).getPropertyValue("white-space"):0;ze=Pt&&Pt.substring(0,3)==="pre"}var Be=Ce.linenums;(Be=Be==="true"||+Be)||(Be=Ae.match(/\blinenums\b(?::(\d+))?/),Be=Be?Be[1]&&Be[1].length?+Be[1]:!0:!1),Be&&je(Wt,Be,ze);var Or={langExtension:Te,sourceNode:Wt,numberLines:Be,pre:ze,sourceCode:null,basePos:null,spans:null,decorations:null};Rt(Or)}}}pt<ke.length?o.setTimeout(Ht,250):typeof et=="function"&&et()}Ht()}var gt=o.PR={createSimpleLexer:Se,registerLangHandler:It,sourceDecorator:Ie,PR_ATTRIB_NAME:V,PR_ATTRIB_VALUE:se,PR_COMMENT:K,PR_DECLARATION:q,PR_KEYWORD:N,PR_LITERAL:W,PR_NOCODE:ee,PR_PLAIN:ne,PR_PUNCTUATION:ae,PR_SOURCE:X,PR_STRING:B,PR_TAG:oe,PR_TYPE:H,prettyPrintOne:r?o.prettyPrintOne=ar:c=ar,prettyPrint:f=r?o.prettyPrint=$e:f=$e},Mt=o.define;typeof Mt=="function"&&Mt.amd&&Mt("google-code-prettify",[],function(){return gt})})()},25769:function(d,v,e){"use strict";var r=e(98040),i={"text/plain":"Text","text/html":"Url",default:"Text"},l="Copy to clipboard: #{key}, Enter";function c(o){var h=(/mac os x/i.test(navigator.userAgent)?"\u2318":"Ctrl")+"+C";return o.replace(/#{\s*key\s*}/g,h)}function f(o,h){var u,a,x,p,y,m,b=!1;h||(h={}),u=h.debug||!1;try{x=r(),p=document.createRange(),y=document.getSelection(),m=document.createElement("span"),m.textContent=o,m.ariaHidden="true",m.style.all="unset",m.style.position="fixed",m.style.top=0,m.style.clip="rect(0, 0, 0, 0)",m.style.whiteSpace="pre",m.style.webkitUserSelect="text",m.style.MozUserSelect="text",m.style.msUserSelect="text",m.style.userSelect="text",m.addEventListener("copy",function(k){if(k.stopPropagation(),h.format)if(k.preventDefault(),typeof k.clipboardData=="undefined"){u&&console.warn("unable to use e.clipboardData"),u&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var R=i[h.format]||i.default;window.clipboardData.setData(R,o)}else k.clipboardData.clearData(),k.clipboardData.setData(h.format,o);h.onCopy&&(k.preventDefault(),h.onCopy(k.clipboardData))}),document.body.appendChild(m),p.selectNodeContents(m),y.addRange(p);var S=document.execCommand("copy");if(!S)throw new Error("copy command was unsuccessful");b=!0}catch(k){u&&console.error("unable to copy using execCommand: ",k),u&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(h.format||"text",o),h.onCopy&&h.onCopy(window.clipboardData),b=!0}catch(R){u&&console.error("unable to copy using clipboardData: ",R),u&&console.error("falling back to prompt"),a=c("message"in h?h.message:l),window.prompt(a,o)}}finally{y&&(typeof y.removeRange=="function"?y.removeRange(p):y.removeAllRanges()),m&&document.body.removeChild(m),x()}return b}d.exports=f},75041:function(d){(function(){var v="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",e={rotl:function(r,i){return r<<i|r>>>32-i},rotr:function(r,i){return r<<32-i|r>>>i},endian:function(r){if(r.constructor==Number)return e.rotl(r,8)&16711935|e.rotl(r,24)&4278255360;for(var i=0;i<r.length;i++)r[i]=e.endian(r[i]);return r},randomBytes:function(r){for(var i=[];r>0;r--)i.push(Math.floor(Math.random()*256));return i},bytesToWords:function(r){for(var i=[],l=0,c=0;l<r.length;l++,c+=8)i[c>>>5]|=r[l]<<24-c%32;return i},wordsToBytes:function(r){for(var i=[],l=0;l<r.length*32;l+=8)i.push(r[l>>>5]>>>24-l%32&255);return i},bytesToHex:function(r){for(var i=[],l=0;l<r.length;l++)i.push((r[l]>>>4).toString(16)),i.push((r[l]&15).toString(16));return i.join("")},hexToBytes:function(r){for(var i=[],l=0;l<r.length;l+=2)i.push(parseInt(r.substr(l,2),16));return i},bytesToBase64:function(r){for(var i=[],l=0;l<r.length;l+=3)for(var c=r[l]<<16|r[l+1]<<8|r[l+2],f=0;f<4;f++)l*8+f*6<=r.length*8?i.push(v.charAt(c>>>6*(3-f)&63)):i.push("=");return i.join("")},base64ToBytes:function(r){r=r.replace(/[^A-Z0-9+\/]/ig,"");for(var i=[],l=0,c=0;l<r.length;c=++l%4)c!=0&&i.push((v.indexOf(r.charAt(l-1))&Math.pow(2,-2*c+8)-1)<<c*2|v.indexOf(r.charAt(l))>>>6-c*2);return i}};d.exports=e})()},84452:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(35909),e(34905),e(28492),e(93617))})(this,function(r){return function(){var i=r,l=i.lib,c=l.BlockCipher,f=i.algo,o=[],h=[],u=[],a=[],x=[],p=[],y=[],m=[],b=[],S=[];(function(){for(var A=[],P=0;P<256;P++)P<128?A[P]=P<<1:A[P]=P<<1^283;for(var M=0,B=0,P=0;P<256;P++){var N=B^B<<1^B<<2^B<<3^B<<4;N=N>>>8^N&255^99,o[M]=N,h[N]=M;var K=A[M],H=A[K],W=A[H],ae=A[N]*257^N*16843008;u[M]=ae<<24|ae>>>8,a[M]=ae<<16|ae>>>16,x[M]=ae<<8|ae>>>24,p[M]=ae;var ae=W*16843009^H*65537^K*257^M*16843008;y[N]=ae<<24|ae>>>8,m[N]=ae<<16|ae>>>16,b[N]=ae<<8|ae>>>24,S[N]=ae,M?(M=K^A[A[A[W^K]]],B^=A[A[B]]):M=B=1}})();var k=[0,1,2,4,8,16,32,64,128,27,54],R=f.AES=c.extend({_doReset:function(){var A;if(!(this._nRounds&&this._keyPriorReset===this._key)){for(var P=this._keyPriorReset=this._key,M=P.words,B=P.sigBytes/4,N=this._nRounds=B+6,K=(N+1)*4,H=this._keySchedule=[],W=0;W<K;W++)W<B?H[W]=M[W]:(A=H[W-1],W%B?B>6&&W%B==4&&(A=o[A>>>24]<<24|o[A>>>16&255]<<16|o[A>>>8&255]<<8|o[A&255]):(A=A<<8|A>>>24,A=o[A>>>24]<<24|o[A>>>16&255]<<16|o[A>>>8&255]<<8|o[A&255],A^=k[W/B|0]<<24),H[W]=H[W-B]^A);for(var ae=this._invKeySchedule=[],ne=0;ne<K;ne++){var W=K-ne;if(ne%4)var A=H[W];else var A=H[W-4];ne<4||W<=4?ae[ne]=A:ae[ne]=y[o[A>>>24]]^m[o[A>>>16&255]]^b[o[A>>>8&255]]^S[o[A&255]]}}},encryptBlock:function(A,P){this._doCryptBlock(A,P,this._keySchedule,u,a,x,p,o)},decryptBlock:function(A,P){var M=A[P+1];A[P+1]=A[P+3],A[P+3]=M,this._doCryptBlock(A,P,this._invKeySchedule,y,m,b,S,h);var M=A[P+1];A[P+1]=A[P+3],A[P+3]=M},_doCryptBlock:function(A,P,M,B,N,K,H,W){for(var ae=this._nRounds,ne=A[P]^M[0],oe=A[P+1]^M[1],q=A[P+2]^M[2],X=A[P+3]^M[3],V=4,se=1;se<ae;se++){var ee=B[ne>>>24]^N[oe>>>16&255]^K[q>>>8&255]^H[X&255]^M[V++],J=B[oe>>>24]^N[q>>>16&255]^K[X>>>8&255]^H[ne&255]^M[V++],le=B[q>>>24]^N[X>>>16&255]^K[ne>>>8&255]^H[oe&255]^M[V++],z=B[X>>>24]^N[ne>>>16&255]^K[oe>>>8&255]^H[q&255]^M[V++];ne=ee,oe=J,q=le,X=z}var ee=(W[ne>>>24]<<24|W[oe>>>16&255]<<16|W[q>>>8&255]<<8|W[X&255])^M[V++],J=(W[oe>>>24]<<24|W[q>>>16&255]<<16|W[X>>>8&255]<<8|W[ne&255])^M[V++],le=(W[q>>>24]<<24|W[X>>>16&255]<<16|W[ne>>>8&255]<<8|W[oe&255])^M[V++],z=(W[X>>>24]<<24|W[ne>>>16&255]<<16|W[oe>>>8&255]<<8|W[q&255])^M[V++];A[P]=ee,A[P+1]=J,A[P+2]=le,A[P+3]=z},keySize:256/32});i.AES=c._createHelper(R)}(),r.AES})},93617:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(28492))})(this,function(r){r.lib.Cipher||function(i){var l=r,c=l.lib,f=c.Base,o=c.WordArray,h=c.BufferedBlockAlgorithm,u=l.enc,a=u.Utf8,x=u.Base64,p=l.algo,y=p.EvpKDF,m=c.Cipher=h.extend({cfg:f.extend(),createEncryptor:function(oe,q){return this.create(this._ENC_XFORM_MODE,oe,q)},createDecryptor:function(oe,q){return this.create(this._DEC_XFORM_MODE,oe,q)},init:function(oe,q,X){this.cfg=this.cfg.extend(X),this._xformMode=oe,this._key=q,this.reset()},reset:function(){h.reset.call(this),this._doReset()},process:function(oe){return this._append(oe),this._process()},finalize:function(oe){oe&&this._append(oe);var q=this._doFinalize();return q},keySize:128/32,ivSize:128/32,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function oe(q){return typeof q=="string"?ne:H}return function(q){return{encrypt:function(X,V,se){return oe(V).encrypt(q,X,V,se)},decrypt:function(X,V,se){return oe(V).decrypt(q,X,V,se)}}}}()}),b=c.StreamCipher=m.extend({_doFinalize:function(){var oe=this._process(!0);return oe},blockSize:1}),S=l.mode={},k=c.BlockCipherMode=f.extend({createEncryptor:function(oe,q){return this.Encryptor.create(oe,q)},createDecryptor:function(oe,q){return this.Decryptor.create(oe,q)},init:function(oe,q){this._cipher=oe,this._iv=q}}),R=S.CBC=function(){var oe=k.extend();oe.Encryptor=oe.extend({processBlock:function(X,V){var se=this._cipher,ee=se.blockSize;q.call(this,X,V,ee),se.encryptBlock(X,V),this._prevBlock=X.slice(V,V+ee)}}),oe.Decryptor=oe.extend({processBlock:function(X,V){var se=this._cipher,ee=se.blockSize,J=X.slice(V,V+ee);se.decryptBlock(X,V),q.call(this,X,V,ee),this._prevBlock=J}});function q(X,V,se){var ee,J=this._iv;J?(ee=J,this._iv=i):ee=this._prevBlock;for(var le=0;le<se;le++)X[V+le]^=ee[le]}return oe}(),A=l.pad={},P=A.Pkcs7={pad:function(oe,q){for(var X=q*4,V=X-oe.sigBytes%X,se=V<<24|V<<16|V<<8|V,ee=[],J=0;J<V;J+=4)ee.push(se);var le=o.create(ee,V);oe.concat(le)},unpad:function(oe){var q=oe.words[oe.sigBytes-1>>>2]&255;oe.sigBytes-=q}},M=c.BlockCipher=m.extend({cfg:m.cfg.extend({mode:R,padding:P}),reset:function(){var oe;m.reset.call(this);var q=this.cfg,X=q.iv,V=q.mode;this._xformMode==this._ENC_XFORM_MODE?oe=V.createEncryptor:(oe=V.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==oe?this._mode.init(this,X&&X.words):(this._mode=oe.call(V,this,X&&X.words),this._mode.__creator=oe)},_doProcessBlock:function(oe,q){this._mode.processBlock(oe,q)},_doFinalize:function(){var oe,q=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(q.pad(this._data,this.blockSize),oe=this._process(!0)):(oe=this._process(!0),q.unpad(oe)),oe},blockSize:128/32}),B=c.CipherParams=f.extend({init:function(oe){this.mixIn(oe)},toString:function(oe){return(oe||this.formatter).stringify(this)}}),N=l.format={},K=N.OpenSSL={stringify:function(oe){var q,X=oe.ciphertext,V=oe.salt;return V?q=o.create([1398893684,1701076831]).concat(V).concat(X):q=X,q.toString(x)},parse:function(oe){var q,X=x.parse(oe),V=X.words;return V[0]==1398893684&&V[1]==1701076831&&(q=o.create(V.slice(2,4)),V.splice(0,4),X.sigBytes-=16),B.create({ciphertext:X,salt:q})}},H=c.SerializableCipher=f.extend({cfg:f.extend({format:K}),encrypt:function(oe,q,X,V){V=this.cfg.extend(V);var se=oe.createEncryptor(X,V),ee=se.finalize(q),J=se.cfg;return B.create({ciphertext:ee,key:X,iv:J.iv,algorithm:oe,mode:J.mode,padding:J.padding,blockSize:oe.blockSize,formatter:V.format})},decrypt:function(oe,q,X,V){V=this.cfg.extend(V),q=this._parse(q,V.format);var se=oe.createDecryptor(X,V).finalize(q.ciphertext);return se},_parse:function(oe,q){return typeof oe=="string"?q.parse(oe,this):oe}}),W=l.kdf={},ae=W.OpenSSL={execute:function(oe,q,X,V){V||(V=o.random(64/8));var se=y.create({keySize:q+X}).compute(oe,V),ee=o.create(se.words.slice(q),X*4);return se.sigBytes=q*4,B.create({key:se,iv:ee,salt:V})}},ne=c.PasswordBasedCipher=H.extend({cfg:H.cfg.extend({kdf:ae}),encrypt:function(oe,q,X,V){V=this.cfg.extend(V);var se=V.kdf.execute(X,oe.keySize,oe.ivSize);V.iv=se.iv;var ee=H.encrypt.call(this,oe,q,se.key,V);return ee.mixIn(se),ee},decrypt:function(oe,q,X,V){V=this.cfg.extend(V),q=this._parse(q,V.format);var se=V.kdf.execute(X,oe.keySize,oe.ivSize,q.salt);V.iv=se.iv;var ee=H.decrypt.call(this,oe,q,se.key,V);return ee}})}()})},52952:function(d,v,e){(function(r,i){d.exports=v=i()})(this,function(){var r=r||function(i,l){var c;if(typeof window!="undefined"&&window.crypto&&(c=window.crypto),typeof self!="undefined"&&self.crypto&&(c=self.crypto),typeof globalThis!="undefined"&&globalThis.crypto&&(c=globalThis.crypto),!c&&typeof window!="undefined"&&window.msCrypto&&(c=window.msCrypto),!c&&typeof e.g!="undefined"&&e.g.crypto&&(c=e.g.crypto),!c)try{c=e(3828)}catch(A){}var f=function(){if(c){if(typeof c.getRandomValues=="function")try{return c.getRandomValues(new Uint32Array(1))[0]}catch(A){}if(typeof c.randomBytes=="function")try{return c.randomBytes(4).readInt32LE()}catch(A){}}throw new Error("Native crypto module could not be used to get secure random number.")},o=Object.create||function(){function A(){}return function(P){var M;return A.prototype=P,M=new A,A.prototype=null,M}}(),h={},u=h.lib={},a=u.Base=function(){return{extend:function(A){var P=o(this);return A&&P.mixIn(A),(!P.hasOwnProperty("init")||this.init===P.init)&&(P.init=function(){P.$super.init.apply(this,arguments)}),P.init.prototype=P,P.$super=this,P},create:function(){var A=this.extend();return A.init.apply(A,arguments),A},init:function(){},mixIn:function(A){for(var P in A)A.hasOwnProperty(P)&&(this[P]=A[P]);A.hasOwnProperty("toString")&&(this.toString=A.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),x=u.WordArray=a.extend({init:function(A,P){A=this.words=A||[],P!=l?this.sigBytes=P:this.sigBytes=A.length*4},toString:function(A){return(A||y).stringify(this)},concat:function(A){var P=this.words,M=A.words,B=this.sigBytes,N=A.sigBytes;if(this.clamp(),B%4)for(var K=0;K<N;K++){var H=M[K>>>2]>>>24-K%4*8&255;P[B+K>>>2]|=H<<24-(B+K)%4*8}else for(var W=0;W<N;W+=4)P[B+W>>>2]=M[W>>>2];return this.sigBytes+=N,this},clamp:function(){var A=this.words,P=this.sigBytes;A[P>>>2]&=4294967295<<32-P%4*8,A.length=i.ceil(P/4)},clone:function(){var A=a.clone.call(this);return A.words=this.words.slice(0),A},random:function(A){for(var P=[],M=0;M<A;M+=4)P.push(f());return new x.init(P,A)}}),p=h.enc={},y=p.Hex={stringify:function(A){for(var P=A.words,M=A.sigBytes,B=[],N=0;N<M;N++){var K=P[N>>>2]>>>24-N%4*8&255;B.push((K>>>4).toString(16)),B.push((K&15).toString(16))}return B.join("")},parse:function(A){for(var P=A.length,M=[],B=0;B<P;B+=2)M[B>>>3]|=parseInt(A.substr(B,2),16)<<24-B%8*4;return new x.init(M,P/2)}},m=p.Latin1={stringify:function(A){for(var P=A.words,M=A.sigBytes,B=[],N=0;N<M;N++){var K=P[N>>>2]>>>24-N%4*8&255;B.push(String.fromCharCode(K))}return B.join("")},parse:function(A){for(var P=A.length,M=[],B=0;B<P;B++)M[B>>>2]|=(A.charCodeAt(B)&255)<<24-B%4*8;return new x.init(M,P)}},b=p.Utf8={stringify:function(A){try{return decodeURIComponent(escape(m.stringify(A)))}catch(P){throw new Error("Malformed UTF-8 data")}},parse:function(A){return m.parse(unescape(encodeURIComponent(A)))}},S=u.BufferedBlockAlgorithm=a.extend({reset:function(){this._data=new x.init,this._nDataBytes=0},_append:function(A){typeof A=="string"&&(A=b.parse(A)),this._data.concat(A),this._nDataBytes+=A.sigBytes},_process:function(A){var P,M=this._data,B=M.words,N=M.sigBytes,K=this.blockSize,H=K*4,W=N/H;A?W=i.ceil(W):W=i.max((W|0)-this._minBufferSize,0);var ae=W*K,ne=i.min(ae*4,N);if(ae){for(var oe=0;oe<ae;oe+=K)this._doProcessBlock(B,oe);P=B.splice(0,ae),M.sigBytes-=ne}return new x.init(P,ne)},clone:function(){var A=a.clone.call(this);return A._data=this._data.clone(),A},_minBufferSize:0}),k=u.Hasher=S.extend({cfg:a.extend(),init:function(A){this.cfg=this.cfg.extend(A),this.reset()},reset:function(){S.reset.call(this),this._doReset()},update:function(A){return this._append(A),this._process(),this},finalize:function(A){A&&this._append(A);var P=this._doFinalize();return P},blockSize:512/32,_createHelper:function(A){return function(P,M){return new A.init(M).finalize(P)}},_createHmacHelper:function(A){return function(P,M){return new R.HMAC.init(A,M).finalize(P)}}}),R=h.algo={};return h}(Math);return r})},35909:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(){var i=r,l=i.lib,c=l.WordArray,f=i.enc,o=f.Base64={stringify:function(u){var a=u.words,x=u.sigBytes,p=this._map;u.clamp();for(var y=[],m=0;m<x;m+=3)for(var b=a[m>>>2]>>>24-m%4*8&255,S=a[m+1>>>2]>>>24-(m+1)%4*8&255,k=a[m+2>>>2]>>>24-(m+2)%4*8&255,R=b<<16|S<<8|k,A=0;A<4&&m+A*.75<x;A++)y.push(p.charAt(R>>>6*(3-A)&63));var P=p.charAt(64);if(P)for(;y.length%4;)y.push(P);return y.join("")},parse:function(u){var a=u.length,x=this._map,p=this._reverseMap;if(!p){p=this._reverseMap=[];for(var y=0;y<x.length;y++)p[x.charCodeAt(y)]=y}var m=x.charAt(64);if(m){var b=u.indexOf(m);b!==-1&&(a=b)}return h(u,a,p)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="};function h(u,a,x){for(var p=[],y=0,m=0;m<a;m++)if(m%4){var b=x[u.charCodeAt(m-1)]<<m%4*2,S=x[u.charCodeAt(m)]>>>6-m%4*2,k=b|S;p[y>>>2]|=k<<24-y%4*8,y++}return c.create(p,y)}}(),r.enc.Base64})},52695:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(){var i=r,l=i.lib,c=l.WordArray,f=i.enc,o=f.Base64url={stringify:function(u,a=!0){var x=u.words,p=u.sigBytes,y=a?this._safe_map:this._map;u.clamp();for(var m=[],b=0;b<p;b+=3)for(var S=x[b>>>2]>>>24-b%4*8&255,k=x[b+1>>>2]>>>24-(b+1)%4*8&255,R=x[b+2>>>2]>>>24-(b+2)%4*8&255,A=S<<16|k<<8|R,P=0;P<4&&b+P*.75<p;P++)m.push(y.charAt(A>>>6*(3-P)&63));var M=y.charAt(64);if(M)for(;m.length%4;)m.push(M);return m.join("")},parse:function(u,a=!0){var x=u.length,p=a?this._safe_map:this._map,y=this._reverseMap;if(!y){y=this._reverseMap=[];for(var m=0;m<p.length;m++)y[p.charCodeAt(m)]=m}var b=p.charAt(64);if(b){var S=u.indexOf(b);S!==-1&&(x=S)}return h(u,x,y)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"};function h(u,a,x){for(var p=[],y=0,m=0;m<a;m++)if(m%4){var b=x[u.charCodeAt(m-1)]<<m%4*2,S=x[u.charCodeAt(m)]>>>6-m%4*2,k=b|S;p[y>>>2]|=k<<24-y%4*8,y++}return c.create(p,y)}}(),r.enc.Base64url})},73323:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(){var i=r,l=i.lib,c=l.WordArray,f=i.enc,o=f.Utf16=f.Utf16BE={stringify:function(u){for(var a=u.words,x=u.sigBytes,p=[],y=0;y<x;y+=2){var m=a[y>>>2]>>>16-y%4*8&65535;p.push(String.fromCharCode(m))}return p.join("")},parse:function(u){for(var a=u.length,x=[],p=0;p<a;p++)x[p>>>1]|=u.charCodeAt(p)<<16-p%2*16;return c.create(x,a*2)}};f.Utf16LE={stringify:function(u){for(var a=u.words,x=u.sigBytes,p=[],y=0;y<x;y+=2){var m=h(a[y>>>2]>>>16-y%4*8&65535);p.push(String.fromCharCode(m))}return p.join("")},parse:function(u){for(var a=u.length,x=[],p=0;p<a;p++)x[p>>>1]|=h(u.charCodeAt(p)<<16-p%2*16);return c.create(x,a*2)}};function h(u){return u<<8&4278255360|u>>>8&16711935}}(),r.enc.Utf16})},28492:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(49479),e(83760))})(this,function(r){return function(){var i=r,l=i.lib,c=l.Base,f=l.WordArray,o=i.algo,h=o.MD5,u=o.EvpKDF=c.extend({cfg:c.extend({keySize:128/32,hasher:h,iterations:1}),init:function(a){this.cfg=this.cfg.extend(a)},compute:function(a,x){for(var p,y=this.cfg,m=y.hasher.create(),b=f.create(),S=b.words,k=y.keySize,R=y.iterations;S.length<k;){p&&m.update(p),p=m.update(a).finalize(x),m.reset();for(var A=1;A<R;A++)p=m.finalize(p),m.reset();b.concat(p)}return b.sigBytes=k*4,b}});i.EvpKDF=function(a,x,p){return u.create(p).compute(a,x)}}(),r.EvpKDF})},24408:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return function(i){var l=r,c=l.lib,f=c.CipherParams,o=l.enc,h=o.Hex,u=l.format,a=u.Hex={stringify:function(x){return x.ciphertext.toString(h)},parse:function(x){var p=h.parse(x);return f.create({ciphertext:p})}}}(),r.format.Hex})},83760:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){(function(){var i=r,l=i.lib,c=l.Base,f=i.enc,o=f.Utf8,h=i.algo,u=h.HMAC=c.extend({init:function(a,x){a=this._hasher=new a.init,typeof x=="string"&&(x=o.parse(x));var p=a.blockSize,y=p*4;x.sigBytes>y&&(x=a.finalize(x)),x.clamp();for(var m=this._oKey=x.clone(),b=this._iKey=x.clone(),S=m.words,k=b.words,R=0;R<p;R++)S[R]^=1549556828,k[R]^=909522486;m.sigBytes=b.sigBytes=y,this.reset()},reset:function(){var a=this._hasher;a.reset(),a.update(this._iKey)},update:function(a){return this._hasher.update(a),this},finalize:function(a){var x=this._hasher,p=x.finalize(a);x.reset();var y=x.finalize(this._oKey.clone().concat(p));return y}})})()})},28209:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(41988),e(79183),e(73323),e(35909),e(52695),e(34905),e(49479),e(2481),e(93653),e(12133),e(82307),e(79421),e(25824),e(83760),e(37248),e(28492),e(93617),e(2882),e(98277),e(69972),e(30509),e(79182),e(74990),e(2593),e(10829),e(10265),e(18846),e(24408),e(84452),e(61945),e(22528),e(21865),e(35308))})(this,function(r){return r})},79183:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(){if(typeof ArrayBuffer=="function"){var i=r,l=i.lib,c=l.WordArray,f=c.init,o=c.init=function(h){if(h instanceof ArrayBuffer&&(h=new Uint8Array(h)),(h instanceof Int8Array||typeof Uint8ClampedArray!="undefined"&&h instanceof Uint8ClampedArray||h instanceof Int16Array||h instanceof Uint16Array||h instanceof Int32Array||h instanceof Uint32Array||h instanceof Float32Array||h instanceof Float64Array)&&(h=new Uint8Array(h.buffer,h.byteOffset,h.byteLength)),h instanceof Uint8Array){for(var u=h.byteLength,a=[],x=0;x<u;x++)a[x>>>2]|=h[x]<<24-x%4*8;f.call(this,a,u)}else f.apply(this,arguments)};o.prototype=c}}(),r.lib.WordArray})},34905:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(i){var l=r,c=l.lib,f=c.WordArray,o=c.Hasher,h=l.algo,u=[];(function(){for(var b=0;b<64;b++)u[b]=i.abs(i.sin(b+1))*4294967296|0})();var a=h.MD5=o.extend({_doReset:function(){this._hash=new f.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(b,S){for(var k=0;k<16;k++){var R=S+k,A=b[R];b[R]=(A<<8|A>>>24)&16711935|(A<<24|A>>>8)&4278255360}var P=this._hash.words,M=b[S+0],B=b[S+1],N=b[S+2],K=b[S+3],H=b[S+4],W=b[S+5],ae=b[S+6],ne=b[S+7],oe=b[S+8],q=b[S+9],X=b[S+10],V=b[S+11],se=b[S+12],ee=b[S+13],J=b[S+14],le=b[S+15],z=P[0],j=P[1],ie=P[2],me=P[3];z=x(z,j,ie,me,M,7,u[0]),me=x(me,z,j,ie,B,12,u[1]),ie=x(ie,me,z,j,N,17,u[2]),j=x(j,ie,me,z,K,22,u[3]),z=x(z,j,ie,me,H,7,u[4]),me=x(me,z,j,ie,W,12,u[5]),ie=x(ie,me,z,j,ae,17,u[6]),j=x(j,ie,me,z,ne,22,u[7]),z=x(z,j,ie,me,oe,7,u[8]),me=x(me,z,j,ie,q,12,u[9]),ie=x(ie,me,z,j,X,17,u[10]),j=x(j,ie,me,z,V,22,u[11]),z=x(z,j,ie,me,se,7,u[12]),me=x(me,z,j,ie,ee,12,u[13]),ie=x(ie,me,z,j,J,17,u[14]),j=x(j,ie,me,z,le,22,u[15]),z=p(z,j,ie,me,B,5,u[16]),me=p(me,z,j,ie,ae,9,u[17]),ie=p(ie,me,z,j,V,14,u[18]),j=p(j,ie,me,z,M,20,u[19]),z=p(z,j,ie,me,W,5,u[20]),me=p(me,z,j,ie,X,9,u[21]),ie=p(ie,me,z,j,le,14,u[22]),j=p(j,ie,me,z,H,20,u[23]),z=p(z,j,ie,me,q,5,u[24]),me=p(me,z,j,ie,J,9,u[25]),ie=p(ie,me,z,j,K,14,u[26]),j=p(j,ie,me,z,oe,20,u[27]),z=p(z,j,ie,me,ee,5,u[28]),me=p(me,z,j,ie,N,9,u[29]),ie=p(ie,me,z,j,ne,14,u[30]),j=p(j,ie,me,z,se,20,u[31]),z=y(z,j,ie,me,W,4,u[32]),me=y(me,z,j,ie,oe,11,u[33]),ie=y(ie,me,z,j,V,16,u[34]),j=y(j,ie,me,z,J,23,u[35]),z=y(z,j,ie,me,B,4,u[36]),me=y(me,z,j,ie,H,11,u[37]),ie=y(ie,me,z,j,ne,16,u[38]),j=y(j,ie,me,z,X,23,u[39]),z=y(z,j,ie,me,ee,4,u[40]),me=y(me,z,j,ie,M,11,u[41]),ie=y(ie,me,z,j,K,16,u[42]),j=y(j,ie,me,z,ae,23,u[43]),z=y(z,j,ie,me,q,4,u[44]),me=y(me,z,j,ie,se,11,u[45]),ie=y(ie,me,z,j,le,16,u[46]),j=y(j,ie,me,z,N,23,u[47]),z=m(z,j,ie,me,M,6,u[48]),me=m(me,z,j,ie,ne,10,u[49]),ie=m(ie,me,z,j,J,15,u[50]),j=m(j,ie,me,z,W,21,u[51]),z=m(z,j,ie,me,se,6,u[52]),me=m(me,z,j,ie,K,10,u[53]),ie=m(ie,me,z,j,X,15,u[54]),j=m(j,ie,me,z,B,21,u[55]),z=m(z,j,ie,me,oe,6,u[56]),me=m(me,z,j,ie,le,10,u[57]),ie=m(ie,me,z,j,ae,15,u[58]),j=m(j,ie,me,z,ee,21,u[59]),z=m(z,j,ie,me,H,6,u[60]),me=m(me,z,j,ie,V,10,u[61]),ie=m(ie,me,z,j,N,15,u[62]),j=m(j,ie,me,z,q,21,u[63]),P[0]=P[0]+z|0,P[1]=P[1]+j|0,P[2]=P[2]+ie|0,P[3]=P[3]+me|0},_doFinalize:function(){var b=this._data,S=b.words,k=this._nDataBytes*8,R=b.sigBytes*8;S[R>>>5]|=128<<24-R%32;var A=i.floor(k/4294967296),P=k;S[(R+64>>>9<<4)+15]=(A<<8|A>>>24)&16711935|(A<<24|A>>>8)&4278255360,S[(R+64>>>9<<4)+14]=(P<<8|P>>>24)&16711935|(P<<24|P>>>8)&4278255360,b.sigBytes=(S.length+1)*4,this._process();for(var M=this._hash,B=M.words,N=0;N<4;N++){var K=B[N];B[N]=(K<<8|K>>>24)&16711935|(K<<24|K>>>8)&4278255360}return M},clone:function(){var b=o.clone.call(this);return b._hash=this._hash.clone(),b}});function x(b,S,k,R,A,P,M){var B=b+(S&k|~S&R)+A+M;return(B<<P|B>>>32-P)+S}function p(b,S,k,R,A,P,M){var B=b+(S&R|k&~R)+A+M;return(B<<P|B>>>32-P)+S}function y(b,S,k,R,A,P,M){var B=b+(S^k^R)+A+M;return(B<<P|B>>>32-P)+S}function m(b,S,k,R,A,P,M){var B=b+(k^(S|~R))+A+M;return(B<<P|B>>>32-P)+S}l.MD5=o._createHelper(a),l.HmacMD5=o._createHmacHelper(a)}(Math),r.MD5})},2882:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.mode.CFB=function(){var i=r.lib.BlockCipherMode.extend();i.Encryptor=i.extend({processBlock:function(c,f){var o=this._cipher,h=o.blockSize;l.call(this,c,f,h,o),this._prevBlock=c.slice(f,f+h)}}),i.Decryptor=i.extend({processBlock:function(c,f){var o=this._cipher,h=o.blockSize,u=c.slice(f,f+h);l.call(this,c,f,h,o),this._prevBlock=u}});function l(c,f,o,h){var u,a=this._iv;a?(u=a.slice(0),this._iv=void 0):u=this._prevBlock,h.encryptBlock(u,0);for(var x=0;x<o;x++)c[f+x]^=u[x]}return i}(),r.mode.CFB})},69972:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.mode.CTRGladman=function(){var i=r.lib.BlockCipherMode.extend();function l(o){if((o>>24&255)===255){var h=o>>16&255,u=o>>8&255,a=o&255;h===255?(h=0,u===255?(u=0,a===255?a=0:++a):++u):++h,o=0,o+=h<<16,o+=u<<8,o+=a}else o+=16777216;return o}function c(o){return(o[0]=l(o[0]))===0&&(o[1]=l(o[1])),o}var f=i.Encryptor=i.extend({processBlock:function(o,h){var u=this._cipher,a=u.blockSize,x=this._iv,p=this._counter;x&&(p=this._counter=x.slice(0),this._iv=void 0),c(p);var y=p.slice(0);u.encryptBlock(y,0);for(var m=0;m<a;m++)o[h+m]^=y[m]}});return i.Decryptor=f,i}(),r.mode.CTRGladman})},98277:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.mode.CTR=function(){var i=r.lib.BlockCipherMode.extend(),l=i.Encryptor=i.extend({processBlock:function(c,f){var o=this._cipher,h=o.blockSize,u=this._iv,a=this._counter;u&&(a=this._counter=u.slice(0),this._iv=void 0);var x=a.slice(0);o.encryptBlock(x,0),a[h-1]=a[h-1]+1|0;for(var p=0;p<h;p++)c[f+p]^=x[p]}});return i.Decryptor=l,i}(),r.mode.CTR})},79182:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.mode.ECB=function(){var i=r.lib.BlockCipherMode.extend();return i.Encryptor=i.extend({processBlock:function(l,c){this._cipher.encryptBlock(l,c)}}),i.Decryptor=i.extend({processBlock:function(l,c){this._cipher.decryptBlock(l,c)}}),i}(),r.mode.ECB})},30509:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.mode.OFB=function(){var i=r.lib.BlockCipherMode.extend(),l=i.Encryptor=i.extend({processBlock:function(c,f){var o=this._cipher,h=o.blockSize,u=this._iv,a=this._keystream;u&&(a=this._keystream=u.slice(0),this._iv=void 0),o.encryptBlock(a,0);for(var x=0;x<h;x++)c[f+x]^=a[x]}});return i.Decryptor=l,i}(),r.mode.OFB})},74990:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.pad.AnsiX923={pad:function(i,l){var c=i.sigBytes,f=l*4,o=f-c%f,h=c+o-1;i.clamp(),i.words[h>>>2]|=o<<24-h%4*8,i.sigBytes+=o},unpad:function(i){var l=i.words[i.sigBytes-1>>>2]&255;i.sigBytes-=l}},r.pad.Ansix923})},2593:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.pad.Iso10126={pad:function(i,l){var c=l*4,f=c-i.sigBytes%c;i.concat(r.lib.WordArray.random(f-1)).concat(r.lib.WordArray.create([f<<24],1))},unpad:function(i){var l=i.words[i.sigBytes-1>>>2]&255;i.sigBytes-=l}},r.pad.Iso10126})},10829:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.pad.Iso97971={pad:function(i,l){i.concat(r.lib.WordArray.create([2147483648],1)),r.pad.ZeroPadding.pad(i,l)},unpad:function(i){r.pad.ZeroPadding.unpad(i),i.sigBytes--}},r.pad.Iso97971})},18846:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.pad.NoPadding={pad:function(){},unpad:function(){}},r.pad.NoPadding})},10265:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(93617))})(this,function(r){return r.pad.ZeroPadding={pad:function(i,l){var c=l*4;i.clamp(),i.sigBytes+=c-(i.sigBytes%c||c)},unpad:function(i){for(var l=i.words,c=i.sigBytes-1,c=i.sigBytes-1;c>=0;c--)if(l[c>>>2]>>>24-c%4*8&255){i.sigBytes=c+1;break}}},r.pad.ZeroPadding})},37248:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(49479),e(83760))})(this,function(r){return function(){var i=r,l=i.lib,c=l.Base,f=l.WordArray,o=i.algo,h=o.SHA1,u=o.HMAC,a=o.PBKDF2=c.extend({cfg:c.extend({keySize:128/32,hasher:h,iterations:1}),init:function(x){this.cfg=this.cfg.extend(x)},compute:function(x,p){for(var y=this.cfg,m=u.create(y.hasher,x),b=f.create(),S=f.create([1]),k=b.words,R=S.words,A=y.keySize,P=y.iterations;k.length<A;){var M=m.update(p).finalize(S);m.reset();for(var B=M.words,N=B.length,K=M,H=1;H<P;H++){K=m.finalize(K),m.reset();for(var W=K.words,ae=0;ae<N;ae++)B[ae]^=W[ae]}b.concat(M),R[0]++}return b.sigBytes=A*4,b}});i.PBKDF2=function(x,p,y){return a.create(y).compute(x,p)}}(),r.PBKDF2})},35308:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(35909),e(34905),e(28492),e(93617))})(this,function(r){return function(){var i=r,l=i.lib,c=l.StreamCipher,f=i.algo,o=[],h=[],u=[],a=f.RabbitLegacy=c.extend({_doReset:function(){var p=this._key.words,y=this.cfg.iv,m=this._X=[p[0],p[3]<<16|p[2]>>>16,p[1],p[0]<<16|p[3]>>>16,p[2],p[1]<<16|p[0]>>>16,p[3],p[2]<<16|p[1]>>>16],b=this._C=[p[2]<<16|p[2]>>>16,p[0]&4294901760|p[1]&65535,p[3]<<16|p[3]>>>16,p[1]&4294901760|p[2]&65535,p[0]<<16|p[0]>>>16,p[2]&4294901760|p[3]&65535,p[1]<<16|p[1]>>>16,p[3]&4294901760|p[0]&65535];this._b=0;for(var S=0;S<4;S++)x.call(this);for(var S=0;S<8;S++)b[S]^=m[S+4&7];if(y){var k=y.words,R=k[0],A=k[1],P=(R<<8|R>>>24)&16711935|(R<<24|R>>>8)&4278255360,M=(A<<8|A>>>24)&16711935|(A<<24|A>>>8)&4278255360,B=P>>>16|M&4294901760,N=M<<16|P&65535;b[0]^=P,b[1]^=B,b[2]^=M,b[3]^=N,b[4]^=P,b[5]^=B,b[6]^=M,b[7]^=N;for(var S=0;S<4;S++)x.call(this)}},_doProcessBlock:function(p,y){var m=this._X;x.call(this),o[0]=m[0]^m[5]>>>16^m[3]<<16,o[1]=m[2]^m[7]>>>16^m[5]<<16,o[2]=m[4]^m[1]>>>16^m[7]<<16,o[3]=m[6]^m[3]>>>16^m[1]<<16;for(var b=0;b<4;b++)o[b]=(o[b]<<8|o[b]>>>24)&16711935|(o[b]<<24|o[b]>>>8)&4278255360,p[y+b]^=o[b]},blockSize:128/32,ivSize:64/32});function x(){for(var p=this._X,y=this._C,m=0;m<8;m++)h[m]=y[m];y[0]=y[0]+1295307597+this._b|0,y[1]=y[1]+3545052371+(y[0]>>>0<h[0]>>>0?1:0)|0,y[2]=y[2]+886263092+(y[1]>>>0<h[1]>>>0?1:0)|0,y[3]=y[3]+1295307597+(y[2]>>>0<h[2]>>>0?1:0)|0,y[4]=y[4]+3545052371+(y[3]>>>0<h[3]>>>0?1:0)|0,y[5]=y[5]+886263092+(y[4]>>>0<h[4]>>>0?1:0)|0,y[6]=y[6]+1295307597+(y[5]>>>0<h[5]>>>0?1:0)|0,y[7]=y[7]+3545052371+(y[6]>>>0<h[6]>>>0?1:0)|0,this._b=y[7]>>>0<h[7]>>>0?1:0;for(var m=0;m<8;m++){var b=p[m]+y[m],S=b&65535,k=b>>>16,R=((S*S>>>17)+S*k>>>15)+k*k,A=((b&4294901760)*b|0)+((b&65535)*b|0);u[m]=R^A}p[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,p[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,p[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,p[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,p[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,p[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,p[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,p[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}i.RabbitLegacy=c._createHelper(a)}(),r.RabbitLegacy})},21865:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(35909),e(34905),e(28492),e(93617))})(this,function(r){return function(){var i=r,l=i.lib,c=l.StreamCipher,f=i.algo,o=[],h=[],u=[],a=f.Rabbit=c.extend({_doReset:function(){for(var p=this._key.words,y=this.cfg.iv,m=0;m<4;m++)p[m]=(p[m]<<8|p[m]>>>24)&16711935|(p[m]<<24|p[m]>>>8)&4278255360;var b=this._X=[p[0],p[3]<<16|p[2]>>>16,p[1],p[0]<<16|p[3]>>>16,p[2],p[1]<<16|p[0]>>>16,p[3],p[2]<<16|p[1]>>>16],S=this._C=[p[2]<<16|p[2]>>>16,p[0]&4294901760|p[1]&65535,p[3]<<16|p[3]>>>16,p[1]&4294901760|p[2]&65535,p[0]<<16|p[0]>>>16,p[2]&4294901760|p[3]&65535,p[1]<<16|p[1]>>>16,p[3]&4294901760|p[0]&65535];this._b=0;for(var m=0;m<4;m++)x.call(this);for(var m=0;m<8;m++)S[m]^=b[m+4&7];if(y){var k=y.words,R=k[0],A=k[1],P=(R<<8|R>>>24)&16711935|(R<<24|R>>>8)&4278255360,M=(A<<8|A>>>24)&16711935|(A<<24|A>>>8)&4278255360,B=P>>>16|M&4294901760,N=M<<16|P&65535;S[0]^=P,S[1]^=B,S[2]^=M,S[3]^=N,S[4]^=P,S[5]^=B,S[6]^=M,S[7]^=N;for(var m=0;m<4;m++)x.call(this)}},_doProcessBlock:function(p,y){var m=this._X;x.call(this),o[0]=m[0]^m[5]>>>16^m[3]<<16,o[1]=m[2]^m[7]>>>16^m[5]<<16,o[2]=m[4]^m[1]>>>16^m[7]<<16,o[3]=m[6]^m[3]>>>16^m[1]<<16;for(var b=0;b<4;b++)o[b]=(o[b]<<8|o[b]>>>24)&16711935|(o[b]<<24|o[b]>>>8)&4278255360,p[y+b]^=o[b]},blockSize:128/32,ivSize:64/32});function x(){for(var p=this._X,y=this._C,m=0;m<8;m++)h[m]=y[m];y[0]=y[0]+1295307597+this._b|0,y[1]=y[1]+3545052371+(y[0]>>>0<h[0]>>>0?1:0)|0,y[2]=y[2]+886263092+(y[1]>>>0<h[1]>>>0?1:0)|0,y[3]=y[3]+1295307597+(y[2]>>>0<h[2]>>>0?1:0)|0,y[4]=y[4]+3545052371+(y[3]>>>0<h[3]>>>0?1:0)|0,y[5]=y[5]+886263092+(y[4]>>>0<h[4]>>>0?1:0)|0,y[6]=y[6]+1295307597+(y[5]>>>0<h[5]>>>0?1:0)|0,y[7]=y[7]+3545052371+(y[6]>>>0<h[6]>>>0?1:0)|0,this._b=y[7]>>>0<h[7]>>>0?1:0;for(var m=0;m<8;m++){var b=p[m]+y[m],S=b&65535,k=b>>>16,R=((S*S>>>17)+S*k>>>15)+k*k,A=((b&4294901760)*b|0)+((b&65535)*b|0);u[m]=R^A}p[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,p[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,p[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,p[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,p[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,p[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,p[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,p[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}i.Rabbit=c._createHelper(a)}(),r.Rabbit})},22528:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(35909),e(34905),e(28492),e(93617))})(this,function(r){return function(){var i=r,l=i.lib,c=l.StreamCipher,f=i.algo,o=f.RC4=c.extend({_doReset:function(){for(var a=this._key,x=a.words,p=a.sigBytes,y=this._S=[],m=0;m<256;m++)y[m]=m;for(var m=0,b=0;m<256;m++){var S=m%p,k=x[S>>>2]>>>24-S%4*8&255;b=(b+y[m]+k)%256;var R=y[m];y[m]=y[b],y[b]=R}this._i=this._j=0},_doProcessBlock:function(a,x){a[x]^=h.call(this)},keySize:256/32,ivSize:0});function h(){for(var a=this._S,x=this._i,p=this._j,y=0,m=0;m<4;m++){x=(x+1)%256,p=(p+a[x])%256;var b=a[x];a[x]=a[p],a[p]=b,y|=a[(a[x]+a[p])%256]<<24-m*8}return this._i=x,this._j=p,y}i.RC4=c._createHelper(o);var u=f.RC4Drop=o.extend({cfg:o.cfg.extend({drop:192}),_doReset:function(){o._doReset.call(this);for(var a=this.cfg.drop;a>0;a--)h.call(this)}});i.RC4Drop=c._createHelper(u)}(),r.RC4})},25824:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(i){var l=r,c=l.lib,f=c.WordArray,o=c.Hasher,h=l.algo,u=f.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),a=f.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),x=f.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),p=f.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),y=f.create([0,1518500249,1859775393,2400959708,2840853838]),m=f.create([1352829926,1548603684,1836072691,2053994217,0]),b=h.RIPEMD160=o.extend({_doReset:function(){this._hash=f.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(B,N){for(var K=0;K<16;K++){var H=N+K,W=B[H];B[H]=(W<<8|W>>>24)&16711935|(W<<24|W>>>8)&4278255360}var ae=this._hash.words,ne=y.words,oe=m.words,q=u.words,X=a.words,V=x.words,se=p.words,ee,J,le,z,j,ie,me,Se,Ie,He;ie=ee=ae[0],me=J=ae[1],Se=le=ae[2],Ie=z=ae[3],He=j=ae[4];for(var je,K=0;K<80;K+=1)je=ee+B[N+q[K]]|0,K<16?je+=S(J,le,z)+ne[0]:K<32?je+=k(J,le,z)+ne[1]:K<48?je+=R(J,le,z)+ne[2]:K<64?je+=A(J,le,z)+ne[3]:je+=P(J,le,z)+ne[4],je=je|0,je=M(je,V[K]),je=je+j|0,ee=j,j=z,z=M(le,10),le=J,J=je,je=ie+B[N+X[K]]|0,K<16?je+=P(me,Se,Ie)+oe[0]:K<32?je+=A(me,Se,Ie)+oe[1]:K<48?je+=R(me,Se,Ie)+oe[2]:K<64?je+=k(me,Se,Ie)+oe[3]:je+=S(me,Se,Ie)+oe[4],je=je|0,je=M(je,se[K]),je=je+He|0,ie=He,He=Ie,Ie=M(Se,10),Se=me,me=je;je=ae[1]+le+Ie|0,ae[1]=ae[2]+z+He|0,ae[2]=ae[3]+j+ie|0,ae[3]=ae[4]+ee+me|0,ae[4]=ae[0]+J+Se|0,ae[0]=je},_doFinalize:function(){var B=this._data,N=B.words,K=this._nDataBytes*8,H=B.sigBytes*8;N[H>>>5]|=128<<24-H%32,N[(H+64>>>9<<4)+14]=(K<<8|K>>>24)&16711935|(K<<24|K>>>8)&4278255360,B.sigBytes=(N.length+1)*4,this._process();for(var W=this._hash,ae=W.words,ne=0;ne<5;ne++){var oe=ae[ne];ae[ne]=(oe<<8|oe>>>24)&16711935|(oe<<24|oe>>>8)&4278255360}return W},clone:function(){var B=o.clone.call(this);return B._hash=this._hash.clone(),B}});function S(B,N,K){return B^N^K}function k(B,N,K){return B&N|~B&K}function R(B,N,K){return(B|~N)^K}function A(B,N,K){return B&K|N&~K}function P(B,N,K){return B^(N|~K)}function M(B,N){return B<<N|B>>>32-N}l.RIPEMD160=o._createHelper(b),l.HmacRIPEMD160=o._createHmacHelper(b)}(Math),r.RIPEMD160})},49479:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(){var i=r,l=i.lib,c=l.WordArray,f=l.Hasher,o=i.algo,h=[],u=o.SHA1=f.extend({_doReset:function(){this._hash=new c.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(a,x){for(var p=this._hash.words,y=p[0],m=p[1],b=p[2],S=p[3],k=p[4],R=0;R<80;R++){if(R<16)h[R]=a[x+R]|0;else{var A=h[R-3]^h[R-8]^h[R-14]^h[R-16];h[R]=A<<1|A>>>31}var P=(y<<5|y>>>27)+k+h[R];R<20?P+=(m&b|~m&S)+1518500249:R<40?P+=(m^b^S)+1859775393:R<60?P+=(m&b|m&S|b&S)-1894007588:P+=(m^b^S)-899497514,k=S,S=b,b=m<<30|m>>>2,m=y,y=P}p[0]=p[0]+y|0,p[1]=p[1]+m|0,p[2]=p[2]+b|0,p[3]=p[3]+S|0,p[4]=p[4]+k|0},_doFinalize:function(){var a=this._data,x=a.words,p=this._nDataBytes*8,y=a.sigBytes*8;return x[y>>>5]|=128<<24-y%32,x[(y+64>>>9<<4)+14]=Math.floor(p/4294967296),x[(y+64>>>9<<4)+15]=p,a.sigBytes=x.length*4,this._process(),this._hash},clone:function(){var a=f.clone.call(this);return a._hash=this._hash.clone(),a}});i.SHA1=f._createHelper(u),i.HmacSHA1=f._createHmacHelper(u)}(),r.SHA1})},93653:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(2481))})(this,function(r){return function(){var i=r,l=i.lib,c=l.WordArray,f=i.algo,o=f.SHA256,h=f.SHA224=o.extend({_doReset:function(){this._hash=new c.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var u=o._doFinalize.call(this);return u.sigBytes-=4,u}});i.SHA224=o._createHelper(h),i.HmacSHA224=o._createHmacHelper(h)}(),r.SHA224})},2481:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(i){var l=r,c=l.lib,f=c.WordArray,o=c.Hasher,h=l.algo,u=[],a=[];(function(){function y(k){for(var R=i.sqrt(k),A=2;A<=R;A++)if(!(k%A))return!1;return!0}function m(k){return(k-(k|0))*4294967296|0}for(var b=2,S=0;S<64;)y(b)&&(S<8&&(u[S]=m(i.pow(b,.5))),a[S]=m(i.pow(b,.3333333333333333)),S++),b++})();var x=[],p=h.SHA256=o.extend({_doReset:function(){this._hash=new f.init(u.slice(0))},_doProcessBlock:function(y,m){for(var b=this._hash.words,S=b[0],k=b[1],R=b[2],A=b[3],P=b[4],M=b[5],B=b[6],N=b[7],K=0;K<64;K++){if(K<16)x[K]=y[m+K]|0;else{var H=x[K-15],W=(H<<25|H>>>7)^(H<<14|H>>>18)^H>>>3,ae=x[K-2],ne=(ae<<15|ae>>>17)^(ae<<13|ae>>>19)^ae>>>10;x[K]=W+x[K-7]+ne+x[K-16]}var oe=P&M^~P&B,q=S&k^S&R^k&R,X=(S<<30|S>>>2)^(S<<19|S>>>13)^(S<<10|S>>>22),V=(P<<26|P>>>6)^(P<<21|P>>>11)^(P<<7|P>>>25),se=N+V+oe+a[K]+x[K],ee=X+q;N=B,B=M,M=P,P=A+se|0,A=R,R=k,k=S,S=se+ee|0}b[0]=b[0]+S|0,b[1]=b[1]+k|0,b[2]=b[2]+R|0,b[3]=b[3]+A|0,b[4]=b[4]+P|0,b[5]=b[5]+M|0,b[6]=b[6]+B|0,b[7]=b[7]+N|0},_doFinalize:function(){var y=this._data,m=y.words,b=this._nDataBytes*8,S=y.sigBytes*8;return m[S>>>5]|=128<<24-S%32,m[(S+64>>>9<<4)+14]=i.floor(b/4294967296),m[(S+64>>>9<<4)+15]=b,y.sigBytes=m.length*4,this._process(),this._hash},clone:function(){var y=o.clone.call(this);return y._hash=this._hash.clone(),y}});l.SHA256=o._createHelper(p),l.HmacSHA256=o._createHmacHelper(p)}(Math),r.SHA256})},79421:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(41988))})(this,function(r){return function(i){var l=r,c=l.lib,f=c.WordArray,o=c.Hasher,h=l.x64,u=h.Word,a=l.algo,x=[],p=[],y=[];(function(){for(var S=1,k=0,R=0;R<24;R++){x[S+5*k]=(R+1)*(R+2)/2%64;var A=k%5,P=(2*S+3*k)%5;S=A,k=P}for(var S=0;S<5;S++)for(var k=0;k<5;k++)p[S+5*k]=k+(2*S+3*k)%5*5;for(var M=1,B=0;B<24;B++){for(var N=0,K=0,H=0;H<7;H++){if(M&1){var W=(1<<H)-1;W<32?K^=1<<W:N^=1<<W-32}M&128?M=M<<1^113:M<<=1}y[B]=u.create(N,K)}})();var m=[];(function(){for(var S=0;S<25;S++)m[S]=u.create()})();var b=a.SHA3=o.extend({cfg:o.cfg.extend({outputLength:512}),_doReset:function(){for(var S=this._state=[],k=0;k<25;k++)S[k]=new u.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(S,k){for(var R=this._state,A=this.blockSize/2,P=0;P<A;P++){var M=S[k+2*P],B=S[k+2*P+1];M=(M<<8|M>>>24)&16711935|(M<<24|M>>>8)&4278255360,B=(B<<8|B>>>24)&16711935|(B<<24|B>>>8)&4278255360;var N=R[P];N.high^=B,N.low^=M}for(var K=0;K<24;K++){for(var H=0;H<5;H++){for(var W=0,ae=0,ne=0;ne<5;ne++){var N=R[H+5*ne];W^=N.high,ae^=N.low}var oe=m[H];oe.high=W,oe.low=ae}for(var H=0;H<5;H++)for(var q=m[(H+4)%5],X=m[(H+1)%5],V=X.high,se=X.low,W=q.high^(V<<1|se>>>31),ae=q.low^(se<<1|V>>>31),ne=0;ne<5;ne++){var N=R[H+5*ne];N.high^=W,N.low^=ae}for(var ee=1;ee<25;ee++){var W,ae,N=R[ee],J=N.high,le=N.low,z=x[ee];z<32?(W=J<<z|le>>>32-z,ae=le<<z|J>>>32-z):(W=le<<z-32|J>>>64-z,ae=J<<z-32|le>>>64-z);var j=m[p[ee]];j.high=W,j.low=ae}var ie=m[0],me=R[0];ie.high=me.high,ie.low=me.low;for(var H=0;H<5;H++)for(var ne=0;ne<5;ne++){var ee=H+5*ne,N=R[ee],Se=m[ee],Ie=m[(H+1)%5+5*ne],He=m[(H+2)%5+5*ne];N.high=Se.high^~Ie.high&He.high,N.low=Se.low^~Ie.low&He.low}var N=R[0],je=y[K];N.high^=je.high,N.low^=je.low}},_doFinalize:function(){var S=this._data,k=S.words,R=this._nDataBytes*8,A=S.sigBytes*8,P=this.blockSize*32;k[A>>>5]|=1<<24-A%32,k[(i.ceil((A+1)/P)*P>>>5)-1]|=128,S.sigBytes=k.length*4,this._process();for(var M=this._state,B=this.cfg.outputLength/8,N=B/8,K=[],H=0;H<N;H++){var W=M[H],ae=W.high,ne=W.low;ae=(ae<<8|ae>>>24)&16711935|(ae<<24|ae>>>8)&4278255360,ne=(ne<<8|ne>>>24)&16711935|(ne<<24|ne>>>8)&4278255360,K.push(ne),K.push(ae)}return new f.init(K,B)},clone:function(){for(var S=o.clone.call(this),k=S._state=this._state.slice(0),R=0;R<25;R++)k[R]=k[R].clone();return S}});l.SHA3=o._createHelper(b),l.HmacSHA3=o._createHmacHelper(b)}(Math),r.SHA3})},82307:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(41988),e(12133))})(this,function(r){return function(){var i=r,l=i.x64,c=l.Word,f=l.WordArray,o=i.algo,h=o.SHA512,u=o.SHA384=h.extend({_doReset:function(){this._hash=new f.init([new c.init(3418070365,3238371032),new c.init(1654270250,914150663),new c.init(2438529370,812702999),new c.init(355462360,4144912697),new c.init(1731405415,4290775857),new c.init(2394180231,1750603025),new c.init(3675008525,1694076839),new c.init(1203062813,3204075428)])},_doFinalize:function(){var a=h._doFinalize.call(this);return a.sigBytes-=16,a}});i.SHA384=h._createHelper(u),i.HmacSHA384=h._createHmacHelper(u)}(),r.SHA384})},12133:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(41988))})(this,function(r){return function(){var i=r,l=i.lib,c=l.Hasher,f=i.x64,o=f.Word,h=f.WordArray,u=i.algo;function a(){return o.create.apply(o,arguments)}var x=[a(1116352408,3609767458),a(1899447441,602891725),a(3049323471,3964484399),a(3921009573,2173295548),a(961987163,4081628472),a(1508970993,3053834265),a(2453635748,2937671579),a(2870763221,3664609560),a(3624381080,2734883394),a(310598401,1164996542),a(607225278,1323610764),a(1426881987,3590304994),a(1925078388,4068182383),a(2162078206,991336113),a(2614888103,633803317),a(3248222580,3479774868),a(3835390401,2666613458),a(4022224774,944711139),a(264347078,2341262773),a(604807628,2007800933),a(770255983,1495990901),a(1249150122,1856431235),a(1555081692,3175218132),a(1996064986,2198950837),a(2554220882,3999719339),a(2821834349,766784016),a(2952996808,2566594879),a(3210313671,3203337956),a(3336571891,1034457026),a(3584528711,2466948901),a(113926993,3758326383),a(338241895,168717936),a(666307205,1188179964),a(773529912,1546045734),a(1294757372,1522805485),a(1396182291,2643833823),a(1695183700,2343527390),a(1986661051,1014477480),a(2177026350,1206759142),a(2456956037,344077627),a(2730485921,1290863460),a(2820302411,3158454273),a(3259730800,3505952657),a(3345764771,106217008),a(3516065817,3606008344),a(3600352804,1432725776),a(4094571909,1467031594),a(275423344,851169720),a(430227734,3100823752),a(506948616,1363258195),a(659060556,3750685593),a(883997877,3785050280),a(958139571,3318307427),a(1322822218,3812723403),a(1537002063,2003034995),a(1747873779,3602036899),a(1955562222,1575990012),a(2024104815,1125592928),a(2227730452,2716904306),a(2361852424,442776044),a(2428436474,593698344),a(2756734187,3733110249),a(3204031479,2999351573),a(3329325298,3815920427),a(3391569614,3928383900),a(3515267271,566280711),a(3940187606,3454069534),a(4118630271,4000239992),a(116418474,1914138554),a(174292421,2731055270),a(289380356,3203993006),a(460393269,320620315),a(685471733,587496836),a(852142971,1086792851),a(1017036298,365543100),a(1126000580,2618297676),a(1288033470,3409855158),a(1501505948,4234509866),a(1607167915,987167468),a(1816402316,1246189591)],p=[];(function(){for(var m=0;m<80;m++)p[m]=a()})();var y=u.SHA512=c.extend({_doReset:function(){this._hash=new h.init([new o.init(1779033703,4089235720),new o.init(3144134277,2227873595),new o.init(1013904242,4271175723),new o.init(2773480762,1595750129),new o.init(1359893119,2917565137),new o.init(2600822924,725511199),new o.init(528734635,4215389547),new o.init(1541459225,327033209)])},_doProcessBlock:function(m,b){for(var S=this._hash.words,k=S[0],R=S[1],A=S[2],P=S[3],M=S[4],B=S[5],N=S[6],K=S[7],H=k.high,W=k.low,ae=R.high,ne=R.low,oe=A.high,q=A.low,X=P.high,V=P.low,se=M.high,ee=M.low,J=B.high,le=B.low,z=N.high,j=N.low,ie=K.high,me=K.low,Se=H,Ie=W,He=ae,je=ne,Dt=oe,ht=q,It=X,Zt=V,Rt=se,ar=ee,$e=J,gt=le,Mt=z,et=j,ft=ie,ot=me,Je=0;Je<80;Je++){var Ne,ye,ke=p[Je];if(Je<16)ye=ke.high=m[b+Je*2]|0,Ne=ke.low=m[b+Je*2+1]|0;else{var Ge=p[Je-15],We=Ge.high,Xe=Ge.low,ut=(We>>>1|Xe<<31)^(We>>>8|Xe<<24)^We>>>7,pt=(Xe>>>1|We<<31)^(Xe>>>8|We<<24)^(Xe>>>7|We<<25),or=p[Je-2],tr=or.high,Me=or.low,tt=(tr>>>19|Me<<13)^(tr<<3|Me>>>29)^tr>>>6,Yt=(Me>>>19|tr<<13)^(Me<<3|tr>>>29)^(Me>>>6|tr<<26),Ot=p[Je-7],zt=Ot.high,Ht=Ot.low,lr=p[Je-16],Wt=lr.high,Ce=lr.low;Ne=pt+Ht,ye=ut+zt+(Ne>>>0<pt>>>0?1:0),Ne=Ne+Yt,ye=ye+tt+(Ne>>>0<Yt>>>0?1:0),Ne=Ne+Ce,ye=ye+Wt+(Ne>>>0<Ce>>>0?1:0),ke.high=ye,ke.low=Ne}var ce=Rt&$e^~Rt&Mt,pe=ar&gt^~ar&et,Ct=Se&He^Se&Dt^He&Dt,Ae=Ie&je^Ie&ht^je&ht,st=(Se>>>28|Ie<<4)^(Se<<30|Ie>>>2)^(Se<<25|Ie>>>7),Gt=(Ie>>>28|Se<<4)^(Ie<<30|Se>>>2)^(Ie<<25|Se>>>7),bt=(Rt>>>14|ar<<18)^(Rt>>>18|ar<<14)^(Rt<<23|ar>>>9),Te=(ar>>>14|Rt<<18)^(ar>>>18|Rt<<14)^(ar<<23|Rt>>>9),yt=x[Je],ze=yt.high,xe=yt.low,dt=ot+Te,Pt=ft+bt+(dt>>>0<ot>>>0?1:0),dt=dt+pe,Pt=Pt+ce+(dt>>>0<pe>>>0?1:0),dt=dt+xe,Pt=Pt+ze+(dt>>>0<xe>>>0?1:0),dt=dt+Ne,Pt=Pt+ye+(dt>>>0<Ne>>>0?1:0),Be=Gt+Ae,Or=st+Ct+(Be>>>0<Gt>>>0?1:0);ft=Mt,ot=et,Mt=$e,et=gt,$e=Rt,gt=ar,ar=Zt+dt|0,Rt=It+Pt+(ar>>>0<Zt>>>0?1:0)|0,It=Dt,Zt=ht,Dt=He,ht=je,He=Se,je=Ie,Ie=dt+Be|0,Se=Pt+Or+(Ie>>>0<dt>>>0?1:0)|0}W=k.low=W+Ie,k.high=H+Se+(W>>>0<Ie>>>0?1:0),ne=R.low=ne+je,R.high=ae+He+(ne>>>0<je>>>0?1:0),q=A.low=q+ht,A.high=oe+Dt+(q>>>0<ht>>>0?1:0),V=P.low=V+Zt,P.high=X+It+(V>>>0<Zt>>>0?1:0),ee=M.low=ee+ar,M.high=se+Rt+(ee>>>0<ar>>>0?1:0),le=B.low=le+gt,B.high=J+$e+(le>>>0<gt>>>0?1:0),j=N.low=j+et,N.high=z+Mt+(j>>>0<et>>>0?1:0),me=K.low=me+ot,K.high=ie+ft+(me>>>0<ot>>>0?1:0)},_doFinalize:function(){var m=this._data,b=m.words,S=this._nDataBytes*8,k=m.sigBytes*8;b[k>>>5]|=128<<24-k%32,b[(k+128>>>10<<5)+30]=Math.floor(S/4294967296),b[(k+128>>>10<<5)+31]=S,m.sigBytes=b.length*4,this._process();var R=this._hash.toX32();return R},clone:function(){var m=c.clone.call(this);return m._hash=this._hash.clone(),m},blockSize:1024/32});i.SHA512=c._createHelper(y),i.HmacSHA512=c._createHmacHelper(y)}(),r.SHA512})},61945:function(d,v,e){(function(r,i,l){d.exports=v=i(e(52952),e(35909),e(34905),e(28492),e(93617))})(this,function(r){return function(){var i=r,l=i.lib,c=l.WordArray,f=l.BlockCipher,o=i.algo,h=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],u=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],a=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],x=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],p=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],y=o.DES=f.extend({_doReset:function(){for(var k=this._key,R=k.words,A=[],P=0;P<56;P++){var M=h[P]-1;A[P]=R[M>>>5]>>>31-M%32&1}for(var B=this._subKeys=[],N=0;N<16;N++){for(var K=B[N]=[],H=a[N],P=0;P<24;P++)K[P/6|0]|=A[(u[P]-1+H)%28]<<31-P%6,K[4+(P/6|0)]|=A[28+(u[P+24]-1+H)%28]<<31-P%6;K[0]=K[0]<<1|K[0]>>>31;for(var P=1;P<7;P++)K[P]=K[P]>>>(P-1)*4+3;K[7]=K[7]<<5|K[7]>>>27}for(var W=this._invSubKeys=[],P=0;P<16;P++)W[P]=B[15-P]},encryptBlock:function(k,R){this._doCryptBlock(k,R,this._subKeys)},decryptBlock:function(k,R){this._doCryptBlock(k,R,this._invSubKeys)},_doCryptBlock:function(k,R,A){this._lBlock=k[R],this._rBlock=k[R+1],m.call(this,4,252645135),m.call(this,16,65535),b.call(this,2,858993459),b.call(this,8,16711935),m.call(this,1,1431655765);for(var P=0;P<16;P++){for(var M=A[P],B=this._lBlock,N=this._rBlock,K=0,H=0;H<8;H++)K|=x[H][((N^M[H])&p[H])>>>0];this._lBlock=N,this._rBlock=B^K}var W=this._lBlock;this._lBlock=this._rBlock,this._rBlock=W,m.call(this,1,1431655765),b.call(this,8,16711935),b.call(this,2,858993459),m.call(this,16,65535),m.call(this,4,252645135),k[R]=this._lBlock,k[R+1]=this._rBlock},keySize:64/32,ivSize:64/32,blockSize:64/32});function m(k,R){var A=(this._lBlock>>>k^this._rBlock)&R;this._rBlock^=A,this._lBlock^=A<<k}function b(k,R){var A=(this._rBlock>>>k^this._lBlock)&R;this._lBlock^=A,this._rBlock^=A<<k}i.DES=f._createHelper(y);var S=o.TripleDES=f.extend({_doReset:function(){var k=this._key,R=k.words;if(R.length!==2&&R.length!==4&&R.length<6)throw new Error("Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.");var A=R.slice(0,2),P=R.length<4?R.slice(0,2):R.slice(2,4),M=R.length<6?R.slice(0,2):R.slice(4,6);this._des1=y.createEncryptor(c.create(A)),this._des2=y.createEncryptor(c.create(P)),this._des3=y.createEncryptor(c.create(M))},encryptBlock:function(k,R){this._des1.encryptBlock(k,R),this._des2.decryptBlock(k,R),this._des3.encryptBlock(k,R)},decryptBlock:function(k,R){this._des3.decryptBlock(k,R),this._des2.encryptBlock(k,R),this._des1.decryptBlock(k,R)},keySize:192/32,ivSize:64/32,blockSize:64/32});i.TripleDES=f._createHelper(S)}(),r.TripleDES})},41988:function(d,v,e){(function(r,i){d.exports=v=i(e(52952))})(this,function(r){return function(i){var l=r,c=l.lib,f=c.Base,o=c.WordArray,h=l.x64={},u=h.Word=f.extend({init:function(x,p){this.high=x,this.low=p}}),a=h.WordArray=f.extend({init:function(x,p){x=this.words=x||[],p!=i?this.sigBytes=p:this.sigBytes=x.length*8},toX32:function(){for(var x=this.words,p=x.length,y=[],m=0;m<p;m++){var b=x[m];y.push(b.high),y.push(b.low)}return o.create(y,this.sigBytes)},clone:function(){for(var x=f.clone.call(this),p=x.words=this.words.slice(0),y=p.length,m=0;m<y;m++)p[m]=p[m].clone();return x}})}(),r})},35413:function(d,v,e){"use strict";var r=e(57046),i=e(69574),l=e(63474),c=e(47095),f=e(99363),o=d.exports=function(h,u){var a,x,p,y,m;return arguments.length<2||typeof h!="string"?(y=u,u=h,h=null):y=arguments[2],r(h)?(a=f.call(h,"c"),x=f.call(h,"e"),p=f.call(h,"w")):(a=p=!0,x=!1),m={value:u,configurable:a,enumerable:x,writable:p},y?l(c(y),m):m};o.gs=function(h,u,a){var x,p,y,m;return typeof h!="string"?(y=a,a=u,u=h,h=null):y=arguments[3],r(u)?i(u)?r(a)?i(a)||(y=a,a=void 0):a=void 0:(y=u,u=a=void 0):u=void 0,r(h)?(x=f.call(h,"c"),p=f.call(h,"e")):(x=!0,p=!1),m={get:u,set:a,configurable:x,enumerable:p},y?l(c(y),m):m}},56656:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";var v=1e3,e=6e4,r=36e5,i="millisecond",l="second",c="minute",f="hour",o="day",h="week",u="month",a="quarter",x="year",p="date",y="Invalid Date",m=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,b=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,S={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(ne){var oe=["th","st","nd","rd"],q=ne%100;return"["+ne+(oe[(q-20)%10]||oe[q]||oe[0])+"]"}},k=function(ne,oe,q){var X=String(ne);return!X||X.length>=oe?ne:""+Array(oe+1-X.length).join(q)+ne},R={s:k,z:function(ne){var oe=-ne.utcOffset(),q=Math.abs(oe),X=Math.floor(q/60),V=q%60;return(oe<=0?"+":"-")+k(X,2,"0")+":"+k(V,2,"0")},m:function ne(oe,q){if(oe.date()<q.date())return-ne(q,oe);var X=12*(q.year()-oe.year())+(q.month()-oe.month()),V=oe.clone().add(X,u),se=q-V<0,ee=oe.clone().add(X+(se?-1:1),u);return+(-(X+(q-V)/(se?V-ee:ee-V))||0)},a:function(ne){return ne<0?Math.ceil(ne)||0:Math.floor(ne)},p:function(ne){return{M:u,y:x,w:h,d:o,D:p,h:f,m:c,s:l,ms:i,Q:a}[ne]||String(ne||"").toLowerCase().replace(/s$/,"")},u:function(ne){return ne===void 0}},A="en",P={};P[A]=S;var M="$isDayjsObject",B=function(ne){return ne instanceof W||!(!ne||!ne[M])},N=function ne(oe,q,X){var V;if(!oe)return A;if(typeof oe=="string"){var se=oe.toLowerCase();P[se]&&(V=se),q&&(P[se]=q,V=se);var ee=oe.split("-");if(!V&&ee.length>1)return ne(ee[0])}else{var J=oe.name;P[J]=oe,V=J}return!X&&V&&(A=V),V||!X&&A},K=function(ne,oe){if(B(ne))return ne.clone();var q=typeof oe=="object"?oe:{};return q.date=ne,q.args=arguments,new W(q)},H=R;H.l=N,H.i=B,H.w=function(ne,oe){return K(ne,{locale:oe.$L,utc:oe.$u,x:oe.$x,$offset:oe.$offset})};var W=function(){function ne(q){this.$L=N(q.locale,null,!0),this.parse(q),this.$x=this.$x||q.x||{},this[M]=!0}var oe=ne.prototype;return oe.parse=function(q){this.$d=function(X){var V=X.date,se=X.utc;if(V===null)return new Date(NaN);if(H.u(V))return new Date;if(V instanceof Date)return new Date(V);if(typeof V=="string"&&!/Z$/i.test(V)){var ee=V.match(m);if(ee){var J=ee[2]-1||0,le=(ee[7]||"0").substring(0,3);return se?new Date(Date.UTC(ee[1],J,ee[3]||1,ee[4]||0,ee[5]||0,ee[6]||0,le)):new Date(ee[1],J,ee[3]||1,ee[4]||0,ee[5]||0,ee[6]||0,le)}}return new Date(V)}(q),this.init()},oe.init=function(){var q=this.$d;this.$y=q.getFullYear(),this.$M=q.getMonth(),this.$D=q.getDate(),this.$W=q.getDay(),this.$H=q.getHours(),this.$m=q.getMinutes(),this.$s=q.getSeconds(),this.$ms=q.getMilliseconds()},oe.$utils=function(){return H},oe.isValid=function(){return this.$d.toString()!==y},oe.isSame=function(q,X){var V=K(q);return this.startOf(X)<=V&&V<=this.endOf(X)},oe.isAfter=function(q,X){return K(q)<this.startOf(X)},oe.isBefore=function(q,X){return this.endOf(X)<K(q)},oe.$g=function(q,X,V){return H.u(q)?this[X]:this.set(V,q)},oe.unix=function(){return Math.floor(this.valueOf()/1e3)},oe.valueOf=function(){return this.$d.getTime()},oe.startOf=function(q,X){var V=this,se=!!H.u(X)||X,ee=H.p(q),J=function(He,je){var Dt=H.w(V.$u?Date.UTC(V.$y,je,He):new Date(V.$y,je,He),V);return se?Dt:Dt.endOf(o)},le=function(He,je){return H.w(V.toDate()[He].apply(V.toDate("s"),(se?[0,0,0,0]:[23,59,59,999]).slice(je)),V)},z=this.$W,j=this.$M,ie=this.$D,me="set"+(this.$u?"UTC":"");switch(ee){case x:return se?J(1,0):J(31,11);case u:return se?J(1,j):J(0,j+1);case h:var Se=this.$locale().weekStart||0,Ie=(z<Se?z+7:z)-Se;return J(se?ie-Ie:ie+(6-Ie),j);case o:case p:return le(me+"Hours",0);case f:return le(me+"Minutes",1);case c:return le(me+"Seconds",2);case l:return le(me+"Milliseconds",3);default:return this.clone()}},oe.endOf=function(q){return this.startOf(q,!1)},oe.$set=function(q,X){var V,se=H.p(q),ee="set"+(this.$u?"UTC":""),J=(V={},V[o]=ee+"Date",V[p]=ee+"Date",V[u]=ee+"Month",V[x]=ee+"FullYear",V[f]=ee+"Hours",V[c]=ee+"Minutes",V[l]=ee+"Seconds",V[i]=ee+"Milliseconds",V)[se],le=se===o?this.$D+(X-this.$W):X;if(se===u||se===x){var z=this.clone().set(p,1);z.$d[J](le),z.init(),this.$d=z.set(p,Math.min(this.$D,z.daysInMonth())).$d}else J&&this.$d[J](le);return this.init(),this},oe.set=function(q,X){return this.clone().$set(q,X)},oe.get=function(q){return this[H.p(q)]()},oe.add=function(q,X){var V,se=this;q=Number(q);var ee=H.p(X),J=function(j){var ie=K(se);return H.w(ie.date(ie.date()+Math.round(j*q)),se)};if(ee===u)return this.set(u,this.$M+q);if(ee===x)return this.set(x,this.$y+q);if(ee===o)return J(1);if(ee===h)return J(7);var le=(V={},V[c]=e,V[f]=r,V[l]=v,V)[ee]||1,z=this.$d.getTime()+q*le;return H.w(z,this)},oe.subtract=function(q,X){return this.add(-1*q,X)},oe.format=function(q){var X=this,V=this.$locale();if(!this.isValid())return V.invalidDate||y;var se=q||"YYYY-MM-DDTHH:mm:ssZ",ee=H.z(this),J=this.$H,le=this.$m,z=this.$M,j=V.weekdays,ie=V.months,me=V.meridiem,Se=function(je,Dt,ht,It){return je&&(je[Dt]||je(X,se))||ht[Dt].slice(0,It)},Ie=function(je){return H.s(J%12||12,je,"0")},He=me||function(je,Dt,ht){var It=je<12?"AM":"PM";return ht?It.toLowerCase():It};return se.replace(b,function(je,Dt){return Dt||function(ht){switch(ht){case"YY":return String(X.$y).slice(-2);case"YYYY":return H.s(X.$y,4,"0");case"M":return z+1;case"MM":return H.s(z+1,2,"0");case"MMM":return Se(V.monthsShort,z,ie,3);case"MMMM":return Se(ie,z);case"D":return X.$D;case"DD":return H.s(X.$D,2,"0");case"d":return String(X.$W);case"dd":return Se(V.weekdaysMin,X.$W,j,2);case"ddd":return Se(V.weekdaysShort,X.$W,j,3);case"dddd":return j[X.$W];case"H":return String(J);case"HH":return H.s(J,2,"0");case"h":return Ie(1);case"hh":return Ie(2);case"a":return He(J,le,!0);case"A":return He(J,le,!1);case"m":return String(le);case"mm":return H.s(le,2,"0");case"s":return String(X.$s);case"ss":return H.s(X.$s,2,"0");case"SSS":return H.s(X.$ms,3,"0");case"Z":return ee}return null}(je)||ee.replace(":","")})},oe.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},oe.diff=function(q,X,V){var se,ee=this,J=H.p(X),le=K(q),z=(le.utcOffset()-this.utcOffset())*e,j=this-le,ie=function(){return H.m(ee,le)};switch(J){case x:se=ie()/12;break;case u:se=ie();break;case a:se=ie()/3;break;case h:se=(j-z)/6048e5;break;case o:se=(j-z)/864e5;break;case f:se=j/r;break;case c:se=j/e;break;case l:se=j/v;break;default:se=j}return V?se:H.a(se)},oe.daysInMonth=function(){return this.endOf(u).$D},oe.$locale=function(){return P[this.$L]},oe.locale=function(q,X){if(!q)return this.$L;var V=this.clone(),se=N(q,X,!0);return se&&(V.$L=se),V},oe.clone=function(){return H.w(this.$d,this)},oe.toDate=function(){return new Date(this.valueOf())},oe.toJSON=function(){return this.isValid()?this.toISOString():null},oe.toISOString=function(){return this.$d.toISOString()},oe.toString=function(){return this.$d.toUTCString()},ne}(),ae=W.prototype;return K.prototype=ae,[["$ms",i],["$s",l],["$m",c],["$H",f],["$W",o],["$M",u],["$y",x],["$D",p]].forEach(function(ne){ae[ne[1]]=function(oe){return this.$g(oe,ne[0],ne[1])}}),K.extend=function(ne,oe){return ne.$i||(ne(oe,W,K),ne.$i=!0),K},K.locale=N,K.isDayjs=B,K.unix=function(ne){return K(1e3*ne)},K.en=P[A],K.Ls=P,K.p={},K})},92769:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return{name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(v){var e=["th","st","nd","rd"],r=v%100;return"["+v+(e[(r-20)%10]||e[r]||e[0])+"]"}}})},71912:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e){var r=e.prototype,i=r.format;r.format=function(l){var c=this,f=this.$locale();if(!this.isValid())return i.bind(this)(l);var o=this.$utils(),h=(l||"YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g,function(u){switch(u){case"Q":return Math.ceil((c.$M+1)/3);case"Do":return f.ordinal(c.$D);case"gggg":return c.weekYear();case"GGGG":return c.isoWeekYear();case"wo":return f.ordinal(c.week(),"W");case"w":case"ww":return o.s(c.week(),u==="w"?1:2,"0");case"W":case"WW":return o.s(c.isoWeek(),u==="W"?1:2,"0");case"k":case"kk":return o.s(String(c.$H===0?24:c.$H),u==="k"?1:2,"0");case"X":return Math.floor(c.$d.getTime()/1e3);case"x":return c.$d.getTime();case"z":return"["+c.offsetName()+"]";case"zzz":return"["+c.offsetName("long")+"]";default:return u}});return i.bind(this)(h)}}})},48228:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";var v={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},e=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,r=/\d/,i=/\d\d/,l=/\d\d?/,c=/\d*[^-_:/,()\s\d]+/,f={},o=function(m){return(m=+m)+(m>68?1900:2e3)},h=function(m){return function(b){this[m]=+b}},u=[/[+-]\d\d:?(\d\d)?|Z/,function(m){(this.zone||(this.zone={})).offset=function(b){if(!b||b==="Z")return 0;var S=b.match(/([+-]|\d\d)/g),k=60*S[1]+(+S[2]||0);return k===0?0:S[0]==="+"?-k:k}(m)}],a=function(m){var b=f[m];return b&&(b.indexOf?b:b.s.concat(b.f))},x=function(m,b){var S,k=f.meridiem;if(k){for(var R=1;R<=24;R+=1)if(m.indexOf(k(R,0,b))>-1){S=R>12;break}}else S=m===(b?"pm":"PM");return S},p={A:[c,function(m){this.afternoon=x(m,!1)}],a:[c,function(m){this.afternoon=x(m,!0)}],Q:[r,function(m){this.month=3*(m-1)+1}],S:[r,function(m){this.milliseconds=100*+m}],SS:[i,function(m){this.milliseconds=10*+m}],SSS:[/\d{3}/,function(m){this.milliseconds=+m}],s:[l,h("seconds")],ss:[l,h("seconds")],m:[l,h("minutes")],mm:[l,h("minutes")],H:[l,h("hours")],h:[l,h("hours")],HH:[l,h("hours")],hh:[l,h("hours")],D:[l,h("day")],DD:[i,h("day")],Do:[c,function(m){var b=f.ordinal,S=m.match(/\d+/);if(this.day=S[0],b)for(var k=1;k<=31;k+=1)b(k).replace(/\[|\]/g,"")===m&&(this.day=k)}],w:[l,h("week")],ww:[i,h("week")],M:[l,h("month")],MM:[i,h("month")],MMM:[c,function(m){var b=a("months"),S=(a("monthsShort")||b.map(function(k){return k.slice(0,3)})).indexOf(m)+1;if(S<1)throw new Error;this.month=S%12||S}],MMMM:[c,function(m){var b=a("months").indexOf(m)+1;if(b<1)throw new Error;this.month=b%12||b}],Y:[/[+-]?\d+/,h("year")],YY:[i,function(m){this.year=o(m)}],YYYY:[/\d{4}/,h("year")],Z:u,ZZ:u};function y(m){var b,S;b=m,S=f&&f.formats;for(var k=(m=b.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(K,H,W){var ae=W&&W.toUpperCase();return H||S[W]||v[W]||S[ae].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(ne,oe,q){return oe||q.slice(1)})})).match(e),R=k.length,A=0;A<R;A+=1){var P=k[A],M=p[P],B=M&&M[0],N=M&&M[1];k[A]=N?{regex:B,parser:N}:P.replace(/^\[|\]$/g,"")}return function(K){for(var H={},W=0,ae=0;W<R;W+=1){var ne=k[W];if(typeof ne=="string")ae+=ne.length;else{var oe=ne.regex,q=ne.parser,X=K.slice(ae),V=oe.exec(X)[0];q.call(H,V),K=K.replace(V,"")}}return function(se){var ee=se.afternoon;if(ee!==void 0){var J=se.hours;ee?J<12&&(se.hours+=12):J===12&&(se.hours=0),delete se.afternoon}}(H),H}}return function(m,b,S){S.p.customParseFormat=!0,m&&m.parseTwoDigitYear&&(o=m.parseTwoDigitYear);var k=b.prototype,R=k.parse;k.parse=function(A){var P=A.date,M=A.utc,B=A.args;this.$u=M;var N=B[1];if(typeof N=="string"){var K=B[2]===!0,H=B[3]===!0,W=K||H,ae=B[2];H&&(ae=B[2]),f=this.$locale(),!K&&ae&&(f=S.Ls[ae]),this.$d=function(X,V,se,ee){try{if(["x","X"].indexOf(V)>-1)return new Date((V==="X"?1e3:1)*X);var J=y(V)(X),le=J.year,z=J.month,j=J.day,ie=J.hours,me=J.minutes,Se=J.seconds,Ie=J.milliseconds,He=J.zone,je=J.week,Dt=new Date,ht=j||(le||z?1:Dt.getDate()),It=le||Dt.getFullYear(),Zt=0;le&&!z||(Zt=z>0?z-1:Dt.getMonth());var Rt,ar=ie||0,$e=me||0,gt=Se||0,Mt=Ie||0;return He?new Date(Date.UTC(It,Zt,ht,ar,$e,gt,Mt+60*He.offset*1e3)):se?new Date(Date.UTC(It,Zt,ht,ar,$e,gt,Mt)):(Rt=new Date(It,Zt,ht,ar,$e,gt,Mt),je&&(Rt=ee(Rt).week(je).toDate()),Rt)}catch(et){return new Date("")}}(P,N,M,S),this.init(),ae&&ae!==!0&&(this.$L=this.locale(ae).$L),W&&P!=this.format(N)&&(this.$d=new Date("")),f={}}else if(N instanceof Array)for(var ne=N.length,oe=1;oe<=ne;oe+=1){B[1]=N[oe-1];var q=S.apply(this,B);if(q.isValid()){this.$d=q.$d,this.$L=q.$L,this.init();break}oe===ne&&(this.$d=new Date(""))}else R.call(this,A)}}})},92468:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";var v,e,r=1e3,i=6e4,l=36e5,c=864e5,f=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,o=31536e6,h=2628e6,u=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/,a={years:o,months:h,days:c,hours:l,minutes:i,seconds:r,milliseconds:1,weeks:6048e5},x=function(P){return P instanceof R},p=function(P,M,B){return new R(P,B,M.$l)},y=function(P){return e.p(P)+"s"},m=function(P){return P<0},b=function(P){return m(P)?Math.ceil(P):Math.floor(P)},S=function(P){return Math.abs(P)},k=function(P,M){return P?m(P)?{negative:!0,format:""+S(P)+M}:{negative:!1,format:""+P+M}:{negative:!1,format:""}},R=function(){function P(B,N,K){var H=this;if(this.$d={},this.$l=K,B===void 0&&(this.$ms=0,this.parseFromMilliseconds()),N)return p(B*a[y(N)],this);if(typeof B=="number")return this.$ms=B,this.parseFromMilliseconds(),this;if(typeof B=="object")return Object.keys(B).forEach(function(ne){H.$d[y(ne)]=B[ne]}),this.calMilliseconds(),this;if(typeof B=="string"){var W=B.match(u);if(W){var ae=W.slice(2).map(function(ne){return ne!=null?Number(ne):0});return this.$d.years=ae[0],this.$d.months=ae[1],this.$d.weeks=ae[2],this.$d.days=ae[3],this.$d.hours=ae[4],this.$d.minutes=ae[5],this.$d.seconds=ae[6],this.calMilliseconds(),this}}return this}var M=P.prototype;return M.calMilliseconds=function(){var B=this;this.$ms=Object.keys(this.$d).reduce(function(N,K){return N+(B.$d[K]||0)*a[K]},0)},M.parseFromMilliseconds=function(){var B=this.$ms;this.$d.years=b(B/o),B%=o,this.$d.months=b(B/h),B%=h,this.$d.days=b(B/c),B%=c,this.$d.hours=b(B/l),B%=l,this.$d.minutes=b(B/i),B%=i,this.$d.seconds=b(B/r),B%=r,this.$d.milliseconds=B},M.toISOString=function(){var B=k(this.$d.years,"Y"),N=k(this.$d.months,"M"),K=+this.$d.days||0;this.$d.weeks&&(K+=7*this.$d.weeks);var H=k(K,"D"),W=k(this.$d.hours,"H"),ae=k(this.$d.minutes,"M"),ne=this.$d.seconds||0;this.$d.milliseconds&&(ne+=this.$d.milliseconds/1e3,ne=Math.round(1e3*ne)/1e3);var oe=k(ne,"S"),q=B.negative||N.negative||H.negative||W.negative||ae.negative||oe.negative,X=W.format||ae.format||oe.format?"T":"",V=(q?"-":"")+"P"+B.format+N.format+H.format+X+W.format+ae.format+oe.format;return V==="P"||V==="-P"?"P0D":V},M.toJSON=function(){return this.toISOString()},M.format=function(B){var N=B||"YYYY-MM-DDTHH:mm:ss",K={Y:this.$d.years,YY:e.s(this.$d.years,2,"0"),YYYY:e.s(this.$d.years,4,"0"),M:this.$d.months,MM:e.s(this.$d.months,2,"0"),D:this.$d.days,DD:e.s(this.$d.days,2,"0"),H:this.$d.hours,HH:e.s(this.$d.hours,2,"0"),m:this.$d.minutes,mm:e.s(this.$d.minutes,2,"0"),s:this.$d.seconds,ss:e.s(this.$d.seconds,2,"0"),SSS:e.s(this.$d.milliseconds,3,"0")};return N.replace(f,function(H,W){return W||String(K[H])})},M.as=function(B){return this.$ms/a[y(B)]},M.get=function(B){var N=this.$ms,K=y(B);return K==="milliseconds"?N%=1e3:N=K==="weeks"?b(N/a[K]):this.$d[K],N||0},M.add=function(B,N,K){var H;return H=N?B*a[y(N)]:x(B)?B.$ms:p(B,this).$ms,p(this.$ms+H*(K?-1:1),this)},M.subtract=function(B,N){return this.add(B,N,!0)},M.locale=function(B){var N=this.clone();return N.$l=B,N},M.clone=function(){return p(this.$ms,this)},M.humanize=function(B){return v().add(this.$ms,"ms").locale(this.$l).fromNow(!B)},M.valueOf=function(){return this.asMilliseconds()},M.milliseconds=function(){return this.get("milliseconds")},M.asMilliseconds=function(){return this.as("milliseconds")},M.seconds=function(){return this.get("seconds")},M.asSeconds=function(){return this.as("seconds")},M.minutes=function(){return this.get("minutes")},M.asMinutes=function(){return this.as("minutes")},M.hours=function(){return this.get("hours")},M.asHours=function(){return this.as("hours")},M.days=function(){return this.get("days")},M.asDays=function(){return this.as("days")},M.weeks=function(){return this.get("weeks")},M.asWeeks=function(){return this.as("weeks")},M.months=function(){return this.get("months")},M.asMonths=function(){return this.as("months")},M.years=function(){return this.get("years")},M.asYears=function(){return this.as("years")},P}(),A=function(P,M,B){return P.add(M.years()*B,"y").add(M.months()*B,"M").add(M.days()*B,"d").add(M.hours()*B,"h").add(M.minutes()*B,"m").add(M.seconds()*B,"s").add(M.milliseconds()*B,"ms")};return function(P,M,B){v=B,e=B().$utils(),B.duration=function(H,W){var ae=B.locale();return p(H,{$l:ae},W)},B.isDuration=x;var N=M.prototype.add,K=M.prototype.subtract;M.prototype.add=function(H,W){return x(H)?A(this,H,1):N.bind(this)(H,W)},M.prototype.subtract=function(H,W){return x(H)?A(this,H,-1):K.bind(this)(H,W)}}})},22982:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e,r){r.isMoment=function(i){return r.isDayjs(i)}}})},81626:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e){e.prototype.isSameOrAfter=function(r,i){return this.isSame(r,i)||this.isAfter(r,i)}}})},29256:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e){e.prototype.isSameOrBefore=function(r,i){return this.isSame(r,i)||this.isBefore(r,i)}}})},54449:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e,r){var i=e.prototype,l=function(u){return u&&(u.indexOf?u:u.s)},c=function(u,a,x,p,y){var m=u.name?u:u.$locale(),b=l(m[a]),S=l(m[x]),k=b||S.map(function(A){return A.slice(0,p)});if(!y)return k;var R=m.weekStart;return k.map(function(A,P){return k[(P+(R||0))%7]})},f=function(){return r.Ls[r.locale()]},o=function(u,a){return u.formats[a]||function(x){return x.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(p,y,m){return y||m.slice(1)})}(u.formats[a.toUpperCase()])},h=function(){var u=this;return{months:function(a){return a?a.format("MMMM"):c(u,"months")},monthsShort:function(a){return a?a.format("MMM"):c(u,"monthsShort","months",3)},firstDayOfWeek:function(){return u.$locale().weekStart||0},weekdays:function(a){return a?a.format("dddd"):c(u,"weekdays")},weekdaysMin:function(a){return a?a.format("dd"):c(u,"weekdaysMin","weekdays",2)},weekdaysShort:function(a){return a?a.format("ddd"):c(u,"weekdaysShort","weekdays",3)},longDateFormat:function(a){return o(u.$locale(),a)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};i.localeData=function(){return h.bind(this)()},r.localeData=function(){var u=f();return{firstDayOfWeek:function(){return u.weekStart||0},weekdays:function(){return r.weekdays()},weekdaysShort:function(){return r.weekdaysShort()},weekdaysMin:function(){return r.weekdaysMin()},months:function(){return r.months()},monthsShort:function(){return r.monthsShort()},longDateFormat:function(a){return o(u,a)},meridiem:u.meridiem,ordinal:u.ordinal}},r.months=function(){return c(f(),"months")},r.monthsShort=function(){return c(f(),"monthsShort","months",3)},r.weekdays=function(u){return c(f(),"weekdays",null,null,u)},r.weekdaysShort=function(u){return c(f(),"weekdaysShort","weekdays",3,u)},r.weekdaysMin=function(u){return c(f(),"weekdaysMin","weekdays",2,u)}}})},10564:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";var v={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};return function(e,r,i){var l=r.prototype,c=l.format;i.en.formats=v,l.format=function(f){f===void 0&&(f="YYYY-MM-DDTHH:mm:ssZ");var o=this.$locale().formats,h=function(u,a){return u.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(x,p,y){var m=y&&y.toUpperCase();return p||a[y]||v[y]||a[m].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(b,S,k){return S||k.slice(1)})})}(f,o===void 0?{}:o);return c.call(this,h)}}})},27082:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e,r){v=v||{};var i=e.prototype,l={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function c(o,h,u,a){return i.fromToBase(o,h,u,a)}r.en.relativeTime=l,i.fromToBase=function(o,h,u,a,x){for(var p,y,m,b=u.$locale().relativeTime||l,S=v.thresholds||[{l:"s",r:44,d:"second"},{l:"m",r:89},{l:"mm",r:44,d:"minute"},{l:"h",r:89},{l:"hh",r:21,d:"hour"},{l:"d",r:35},{l:"dd",r:25,d:"day"},{l:"M",r:45},{l:"MM",r:10,d:"month"},{l:"y",r:17},{l:"yy",d:"year"}],k=S.length,R=0;R<k;R+=1){var A=S[R];A.d&&(p=a?r(o).diff(u,A.d,!0):u.diff(o,A.d,!0));var P=(v.rounding||Math.round)(Math.abs(p));if(m=p>0,P<=A.r||!A.r){P<=1&&R>0&&(A=S[R-1]);var M=b[A.l];x&&(P=x(""+P)),y=typeof M=="string"?M.replace("%d",P):M(P,h,A.l,m);break}}if(h)return y;var B=m?b.future:b.past;return typeof B=="function"?B(y):B.replace("%s",y)},i.to=function(o,h){return c(o,h,this,!0)},i.from=function(o,h){return c(o,h,this)};var f=function(o){return o.$u?r.utc():r()};i.toNow=function(o){return this.to(f(this),o)},i.fromNow=function(o){return this.from(f(this),o)}}})},53501:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";var v="week",e="year";return function(r,i,l){var c=i.prototype;c.week=function(f){if(f===void 0&&(f=null),f!==null)return this.add(7*(f-this.week()),"day");var o=this.$locale().yearStart||1;if(this.month()===11&&this.date()>25){var h=l(this).startOf(e).add(1,e).date(o),u=l(this).endOf(v);if(h.isBefore(u))return 1}var a=l(this).startOf(e).date(o).startOf(v).subtract(1,"millisecond"),x=this.diff(a,v,!0);return x<0?l(this).startOf("week").week():Math.ceil(x)},c.weeks=function(f){return f===void 0&&(f=null),this.week(f)}}})},36867:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e){e.prototype.weekYear=function(){var r=this.month(),i=this.week(),l=this.year();return i===1&&r===11?l+1:r===0&&i>=52?l-1:l}}})},27112:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";return function(v,e){e.prototype.weekday=function(r){var i=this.$locale().weekStart||0,l=this.$W,c=(l<i?l+7:l)-i;return this.$utils().u(r)?c:this.subtract(c,"day").add(r,"day")}}})},89880:function(d){"use strict";function v(o,h,u){return h in o?Object.defineProperty(o,h,{value:u,enumerable:!0,configurable:!0,writable:!0}):o[h]=u,o}function e(o,h){var u=Object.keys(o);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(o);h&&(a=a.filter(function(x){return Object.getOwnPropertyDescriptor(o,x).enumerable})),u.push.apply(u,a)}return u}function r(o){for(var h=1;h<arguments.length;h++){var u=arguments[h]!=null?arguments[h]:{};h%2?e(Object(u),!0).forEach(function(a){v(o,a,u[a])}):Object.getOwnPropertyDescriptors?Object.defineProperties(o,Object.getOwnPropertyDescriptors(u)):e(Object(u)).forEach(function(a){Object.defineProperty(o,a,Object.getOwnPropertyDescriptor(u,a))})}return o}var i="@@DVA_LOADING/SHOW",l="@@DVA_LOADING/HIDE",c="loading";function f(){var o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},h=o.namespace||c,u=o.only,a=u===void 0?[]:u,x=o.except,p=x===void 0?[]:x;if(a.length>0&&p.length>0)throw Error("It is ambiguous to configurate `only` and `except` items at the same time.");var y={global:!1,models:{},effects:{}},m=v({},h,function(){var S=arguments.length>0&&arguments[0]!==void 0?arguments[0]:y,k=arguments.length>1?arguments[1]:void 0,R=k.type,A=k.payload,P=A||{},M=P.namespace,B=P.actionType,N;switch(R){case i:N=r(r({},S),{},{global:!0,models:r(r({},S.models),{},v({},M,!0)),effects:r(r({},S.effects),{},v({},B,!0))});break;case l:{var K=r(r({},S.effects),{},v({},B,!1)),H=r(r({},S.models),{},v({},M,Object.keys(K).some(function(ae){var ne=ae.split("/")[0];return ne!==M?!1:K[ae]}))),W=Object.keys(H).some(function(ae){return H[ae]});N=r(r({},S),{},{global:W,models:H,effects:K});break}default:N=S;break}return N});function b(S,k,R,A){var P=k.put,M=R.namespace;return a.length===0&&p.length===0||a.length>0&&a.indexOf(A)!==-1||p.length>0&&p.indexOf(A)===-1?regeneratorRuntime.mark(function B(){var N=arguments;return regeneratorRuntime.wrap(function(H){for(;;)switch(H.prev=H.next){case 0:return H.next=2,P({type:i,payload:{namespace:M,actionType:A}});case 2:return H.next=4,S.apply(void 0,N);case 4:return H.next=6,P({type:l,payload:{namespace:M,actionType:A}});case 6:case"end":return H.stop()}},B)}):S}return{extraReducers:m,onEffect:b}}d.exports=f},68192:function(d){"use strict";d.exports=function(){}},63474:function(d,v,e){"use strict";d.exports=e(71111)()?Object.assign:e(47597)},71111:function(d){"use strict";d.exports=function(){var v=Object.assign,e;return typeof v!="function"?!1:(e={foo:"raz"},v(e,{bar:"dwa"},{trzy:"trzy"}),e.foo+e.bar+e.trzy==="razdwatrzy")}},47597:function(d,v,e){"use strict";var r=e(90721),i=e(58883),l=Math.max;d.exports=function(c,f){var o,h,u=l(arguments.length,2),a;for(c=Object(i(c)),a=function(x){try{c[x]=f[x]}catch(p){o||(o=p)}},h=1;h<u;++h)f=arguments[h],r(f).forEach(a);if(o!==void 0)throw o;return c}},67390:function(d,v,e){"use strict";var r=e(68192)();d.exports=function(i){return i!==r&&i!==null}},90721:function(d,v,e){"use strict";d.exports=e(69075)()?Object.keys:e(34810)},69075:function(d){"use strict";d.exports=function(){try{return Object.keys("primitive"),!0}catch(v){return!1}}},34810:function(d,v,e){"use strict";var r=e(67390),i=Object.keys;d.exports=function(l){return i(r(l)?Object(l):l)}},47095:function(d,v,e){"use strict";var r=e(67390),i=Array.prototype.forEach,l=Object.create,c=function(f,o){var h;for(h in f)o[h]=f[h]};d.exports=function(f){var o=l(null);return i.call(arguments,function(h){r(h)&&c(Object(h),o)}),o}},15895:function(d){"use strict";d.exports=function(v){if(typeof v!="function")throw new TypeError(v+" is not a function");return v}},58883:function(d,v,e){"use strict";var r=e(67390);d.exports=function(i){if(!r(i))throw new TypeError("Cannot use null or undefined");return i}},99363:function(d,v,e){"use strict";d.exports=e(65136)()?String.prototype.contains:e(12444)},65136:function(d){"use strict";var v="razdwatrzy";d.exports=function(){return typeof v.contains!="function"?!1:v.contains("dwa")===!0&&v.contains("foo")===!1}},12444:function(d){"use strict";var v=String.prototype.indexOf;d.exports=function(e){return v.call(this,e,arguments[1])>-1}},3424:function(d,v,e){"use strict";var r=e(35413),i=e(15895),l=Function.prototype.apply,c=Function.prototype.call,f=Object.create,o=Object.defineProperty,h=Object.defineProperties,u=Object.prototype.hasOwnProperty,a={configurable:!0,enumerable:!1,writable:!0},x,p,y,m,b,S,k;x=function(R,A){var P;return i(A),u.call(this,"__ee__")?P=this.__ee__:(P=a.value=f(null),o(this,"__ee__",a),a.value=null),P[R]?typeof P[R]=="object"?P[R].push(A):P[R]=[P[R],A]:P[R]=A,this},p=function(R,A){var P,M;return i(A),M=this,x.call(this,R,P=function(){y.call(M,R,P),l.call(A,this,arguments)}),P.__eeOnceListener__=A,this},y=function(R,A){var P,M,B,N;if(i(A),!u.call(this,"__ee__"))return this;if(P=this.__ee__,!P[R])return this;if(M=P[R],typeof M=="object")for(N=0;B=M[N];++N)(B===A||B.__eeOnceListener__===A)&&(M.length===2?P[R]=M[N?0:1]:M.splice(N,1));else(M===A||M.__eeOnceListener__===A)&&delete P[R];return this},m=function(R){var A,P,M,B,N;if(u.call(this,"__ee__")&&(B=this.__ee__[R],!!B))if(typeof B=="object"){for(P=arguments.length,N=new Array(P-1),A=1;A<P;++A)N[A-1]=arguments[A];for(B=B.slice(),A=0;M=B[A];++A)l.call(M,this,N)}else switch(arguments.length){case 1:c.call(B,this);break;case 2:c.call(B,this,arguments[1]);break;case 3:c.call(B,this,arguments[1],arguments[2]);break;default:for(P=arguments.length,N=new Array(P-1),A=1;A<P;++A)N[A-1]=arguments[A];l.call(B,this,N)}},b={on:x,once:p,off:y,emit:m},S={on:r(x),once:r(p),off:r(y),emit:r(m)},k=h({},S),d.exports=v=function(R){return R==null?f(k):h(Object(R),S)},v.methods=b},89381:function(d){d.exports=function(e,r){if(r=typeof r=="number"?r:1/0,!r)return Array.isArray(e)?e.map(function(l){return l}):e;return i(e,1);function i(l,c){return l.reduce(function(f,o){return Array.isArray(o)&&c<r?f.concat(i(o,c+1)):f.concat(o)},[])}}},60288:function(d,v,e){var r;typeof window!="undefined"?r=window:typeof e.g!="undefined"?r=e.g:typeof self!="undefined"?r=self:r={},d.exports=r},85582:function(d,v,e){var r=v;r.utils=e(8631),r.common=e(28766),r.sha=e(26672),r.ripemd=e(20427),r.hmac=e(57969),r.sha1=r.sha.sha1,r.sha256=r.sha.sha256,r.sha224=r.sha.sha224,r.sha384=r.sha.sha384,r.sha512=r.sha.sha512,r.ripemd160=r.ripemd.ripemd160},28766:function(d,v,e){"use strict";var r=e(8631),i=e(61339);function l(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}v.BlockHash=l,l.prototype.update=function(f,o){if(f=r.toArray(f,o),this.pending?this.pending=this.pending.concat(f):this.pending=f,this.pendingTotal+=f.length,this.pending.length>=this._delta8){f=this.pending;var h=f.length%this._delta8;this.pending=f.slice(f.length-h,f.length),this.pending.length===0&&(this.pending=null),f=r.join32(f,0,f.length-h,this.endian);for(var u=0;u<f.length;u+=this._delta32)this._update(f,u,u+this._delta32)}return this},l.prototype.digest=function(f){return this.update(this._pad()),i(this.pending===null),this._digest(f)},l.prototype._pad=function(){var f=this.pendingTotal,o=this._delta8,h=o-(f+this.padLength)%o,u=new Array(h+this.padLength);u[0]=128;for(var a=1;a<h;a++)u[a]=0;if(f<<=3,this.endian==="big"){for(var x=8;x<this.padLength;x++)u[a++]=0;u[a++]=0,u[a++]=0,u[a++]=0,u[a++]=0,u[a++]=f>>>24&255,u[a++]=f>>>16&255,u[a++]=f>>>8&255,u[a++]=f&255}else for(u[a++]=f&255,u[a++]=f>>>8&255,u[a++]=f>>>16&255,u[a++]=f>>>24&255,u[a++]=0,u[a++]=0,u[a++]=0,u[a++]=0,x=8;x<this.padLength;x++)u[a++]=0;return u}},57969:function(d,v,e){"use strict";var r=e(8631),i=e(61339);function l(c,f,o){if(!(this instanceof l))return new l(c,f,o);this.Hash=c,this.blockSize=c.blockSize/8,this.outSize=c.outSize/8,this.inner=null,this.outer=null,this._init(r.toArray(f,o))}d.exports=l,l.prototype._init=function(f){f.length>this.blockSize&&(f=new this.Hash().update(f).digest()),i(f.length<=this.blockSize);for(var o=f.length;o<this.blockSize;o++)f.push(0);for(o=0;o<f.length;o++)f[o]^=54;for(this.inner=new this.Hash().update(f),o=0;o<f.length;o++)f[o]^=106;this.outer=new this.Hash().update(f)},l.prototype.update=function(f,o){return this.inner.update(f,o),this},l.prototype.digest=function(f){return this.outer.update(this.inner.digest()),this.outer.digest(f)}},20427:function(d,v,e){"use strict";var r=e(8631),i=e(28766),l=r.rotl32,c=r.sum32,f=r.sum32_3,o=r.sum32_4,h=i.BlockHash;function u(){if(!(this instanceof u))return new u;h.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}r.inherits(u,h),v.ripemd160=u,u.blockSize=512,u.outSize=160,u.hmacStrength=192,u.padLength=64,u.prototype._update=function(R,A){for(var P=this.h[0],M=this.h[1],B=this.h[2],N=this.h[3],K=this.h[4],H=P,W=M,ae=B,ne=N,oe=K,q=0;q<80;q++){var X=c(l(o(P,a(q,M,B,N),R[y[q]+A],x(q)),b[q]),K);P=K,K=N,N=l(B,10),B=M,M=X,X=c(l(o(H,a(79-q,W,ae,ne),R[m[q]+A],p(q)),S[q]),oe),H=oe,oe=ne,ne=l(ae,10),ae=W,W=X}X=f(this.h[1],B,ne),this.h[1]=f(this.h[2],N,oe),this.h[2]=f(this.h[3],K,H),this.h[3]=f(this.h[4],P,W),this.h[4]=f(this.h[0],M,ae),this.h[0]=X},u.prototype._digest=function(R){return R==="hex"?r.toHex32(this.h,"little"):r.split32(this.h,"little")};function a(k,R,A,P){return k<=15?R^A^P:k<=31?R&A|~R&P:k<=47?(R|~A)^P:k<=63?R&P|A&~P:R^(A|~P)}function x(k){return k<=15?0:k<=31?1518500249:k<=47?1859775393:k<=63?2400959708:2840853838}function p(k){return k<=15?1352829926:k<=31?1548603684:k<=47?1836072691:k<=63?2053994217:0}var y=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],m=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],b=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],S=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]},26672:function(d,v,e){"use strict";v.sha1=e(16114),v.sha224=e(44853),v.sha256=e(6586),v.sha384=e(66474),v.sha512=e(50663)},16114:function(d,v,e){"use strict";var r=e(8631),i=e(28766),l=e(81692),c=r.rotl32,f=r.sum32,o=r.sum32_5,h=l.ft_1,u=i.BlockHash,a=[1518500249,1859775393,2400959708,3395469782];function x(){if(!(this instanceof x))return new x;u.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}r.inherits(x,u),d.exports=x,x.blockSize=512,x.outSize=160,x.hmacStrength=80,x.padLength=64,x.prototype._update=function(y,m){for(var b=this.W,S=0;S<16;S++)b[S]=y[m+S];for(;S<b.length;S++)b[S]=c(b[S-3]^b[S-8]^b[S-14]^b[S-16],1);var k=this.h[0],R=this.h[1],A=this.h[2],P=this.h[3],M=this.h[4];for(S=0;S<b.length;S++){var B=~~(S/20),N=o(c(k,5),h(B,R,A,P),M,b[S],a[B]);M=P,P=A,A=c(R,30),R=k,k=N}this.h[0]=f(this.h[0],k),this.h[1]=f(this.h[1],R),this.h[2]=f(this.h[2],A),this.h[3]=f(this.h[3],P),this.h[4]=f(this.h[4],M)},x.prototype._digest=function(y){return y==="hex"?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},44853:function(d,v,e){"use strict";var r=e(8631),i=e(6586);function l(){if(!(this instanceof l))return new l;i.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}r.inherits(l,i),d.exports=l,l.blockSize=512,l.outSize=224,l.hmacStrength=192,l.padLength=64,l.prototype._digest=function(f){return f==="hex"?r.toHex32(this.h.slice(0,7),"big"):r.split32(this.h.slice(0,7),"big")}},6586:function(d,v,e){"use strict";var r=e(8631),i=e(28766),l=e(81692),c=e(61339),f=r.sum32,o=r.sum32_4,h=r.sum32_5,u=l.ch32,a=l.maj32,x=l.s0_256,p=l.s1_256,y=l.g0_256,m=l.g1_256,b=i.BlockHash,S=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function k(){if(!(this instanceof k))return new k;b.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=S,this.W=new Array(64)}r.inherits(k,b),d.exports=k,k.blockSize=512,k.outSize=256,k.hmacStrength=192,k.padLength=64,k.prototype._update=function(A,P){for(var M=this.W,B=0;B<16;B++)M[B]=A[P+B];for(;B<M.length;B++)M[B]=o(m(M[B-2]),M[B-7],y(M[B-15]),M[B-16]);var N=this.h[0],K=this.h[1],H=this.h[2],W=this.h[3],ae=this.h[4],ne=this.h[5],oe=this.h[6],q=this.h[7];for(c(this.k.length===M.length),B=0;B<M.length;B++){var X=h(q,p(ae),u(ae,ne,oe),this.k[B],M[B]),V=f(x(N),a(N,K,H));q=oe,oe=ne,ne=ae,ae=f(W,X),W=H,H=K,K=N,N=f(X,V)}this.h[0]=f(this.h[0],N),this.h[1]=f(this.h[1],K),this.h[2]=f(this.h[2],H),this.h[3]=f(this.h[3],W),this.h[4]=f(this.h[4],ae),this.h[5]=f(this.h[5],ne),this.h[6]=f(this.h[6],oe),this.h[7]=f(this.h[7],q)},k.prototype._digest=function(A){return A==="hex"?r.toHex32(this.h,"big"):r.split32(this.h,"big")}},66474:function(d,v,e){"use strict";var r=e(8631),i=e(50663);function l(){if(!(this instanceof l))return new l;i.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}r.inherits(l,i),d.exports=l,l.blockSize=1024,l.outSize=384,l.hmacStrength=192,l.padLength=128,l.prototype._digest=function(f){return f==="hex"?r.toHex32(this.h.slice(0,12),"big"):r.split32(this.h.slice(0,12),"big")}},50663:function(d,v,e){"use strict";var r=e(8631),i=e(28766),l=e(61339),c=r.rotr64_hi,f=r.rotr64_lo,o=r.shr64_hi,h=r.shr64_lo,u=r.sum64,a=r.sum64_hi,x=r.sum64_lo,p=r.sum64_4_hi,y=r.sum64_4_lo,m=r.sum64_5_hi,b=r.sum64_5_lo,S=i.BlockHash,k=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591];function R(){if(!(this instanceof R))return new R;S.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=k,this.W=new Array(160)}r.inherits(R,S),d.exports=R,R.blockSize=1024,R.outSize=512,R.hmacStrength=192,R.padLength=128,R.prototype._prepareBlock=function(V,se){for(var ee=this.W,J=0;J<32;J++)ee[J]=V[se+J];for(;J<ee.length;J+=2){var le=oe(ee[J-4],ee[J-3]),z=q(ee[J-4],ee[J-3]),j=ee[J-14],ie=ee[J-13],me=ae(ee[J-30],ee[J-29]),Se=ne(ee[J-30],ee[J-29]),Ie=ee[J-32],He=ee[J-31];ee[J]=p(le,z,j,ie,me,Se,Ie,He),ee[J+1]=y(le,z,j,ie,me,Se,Ie,He)}},R.prototype._update=function(V,se){this._prepareBlock(V,se);var ee=this.W,J=this.h[0],le=this.h[1],z=this.h[2],j=this.h[3],ie=this.h[4],me=this.h[5],Se=this.h[6],Ie=this.h[7],He=this.h[8],je=this.h[9],Dt=this.h[10],ht=this.h[11],It=this.h[12],Zt=this.h[13],Rt=this.h[14],ar=this.h[15];l(this.k.length===ee.length);for(var $e=0;$e<ee.length;$e+=2){var gt=Rt,Mt=ar,et=H(He,je),ft=W(He,je),ot=A(He,je,Dt,ht,It,Zt),Je=P(He,je,Dt,ht,It,Zt),Ne=this.k[$e],ye=this.k[$e+1],ke=ee[$e],Ge=ee[$e+1],We=m(gt,Mt,et,ft,ot,Je,Ne,ye,ke,Ge),Xe=b(gt,Mt,et,ft,ot,Je,Ne,ye,ke,Ge);gt=N(J,le),Mt=K(J,le),et=M(J,le,z,j,ie,me),ft=B(J,le,z,j,ie,me);var ut=a(gt,Mt,et,ft),pt=x(gt,Mt,et,ft);Rt=It,ar=Zt,It=Dt,Zt=ht,Dt=He,ht=je,He=a(Se,Ie,We,Xe),je=x(Ie,Ie,We,Xe),Se=ie,Ie=me,ie=z,me=j,z=J,j=le,J=a(We,Xe,ut,pt),le=x(We,Xe,ut,pt)}u(this.h,0,J,le),u(this.h,2,z,j),u(this.h,4,ie,me),u(this.h,6,Se,Ie),u(this.h,8,He,je),u(this.h,10,Dt,ht),u(this.h,12,It,Zt),u(this.h,14,Rt,ar)},R.prototype._digest=function(V){return V==="hex"?r.toHex32(this.h,"big"):r.split32(this.h,"big")};function A(X,V,se,ee,J){var le=X&se^~X&J;return le<0&&(le+=4294967296),le}function P(X,V,se,ee,J,le){var z=V&ee^~V&le;return z<0&&(z+=4294967296),z}function M(X,V,se,ee,J){var le=X&se^X&J^se&J;return le<0&&(le+=4294967296),le}function B(X,V,se,ee,J,le){var z=V&ee^V&le^ee&le;return z<0&&(z+=4294967296),z}function N(X,V){var se=c(X,V,28),ee=c(V,X,2),J=c(V,X,7),le=se^ee^J;return le<0&&(le+=4294967296),le}function K(X,V){var se=f(X,V,28),ee=f(V,X,2),J=f(V,X,7),le=se^ee^J;return le<0&&(le+=4294967296),le}function H(X,V){var se=c(X,V,14),ee=c(X,V,18),J=c(V,X,9),le=se^ee^J;return le<0&&(le+=4294967296),le}function W(X,V){var se=f(X,V,14),ee=f(X,V,18),J=f(V,X,9),le=se^ee^J;return le<0&&(le+=4294967296),le}function ae(X,V){var se=c(X,V,1),ee=c(X,V,8),J=o(X,V,7),le=se^ee^J;return le<0&&(le+=4294967296),le}function ne(X,V){var se=f(X,V,1),ee=f(X,V,8),J=h(X,V,7),le=se^ee^J;return le<0&&(le+=4294967296),le}function oe(X,V){var se=c(X,V,19),ee=c(V,X,29),J=o(X,V,6),le=se^ee^J;return le<0&&(le+=4294967296),le}function q(X,V){var se=f(X,V,19),ee=f(V,X,29),J=h(X,V,6),le=se^ee^J;return le<0&&(le+=4294967296),le}},81692:function(d,v,e){"use strict";var r=e(8631),i=r.rotr32;function l(p,y,m,b){if(p===0)return c(y,m,b);if(p===1||p===3)return o(y,m,b);if(p===2)return f(y,m,b)}v.ft_1=l;function c(p,y,m){return p&y^~p&m}v.ch32=c;function f(p,y,m){return p&y^p&m^y&m}v.maj32=f;function o(p,y,m){return p^y^m}v.p32=o;function h(p){return i(p,2)^i(p,13)^i(p,22)}v.s0_256=h;function u(p){return i(p,6)^i(p,11)^i(p,25)}v.s1_256=u;function a(p){return i(p,7)^i(p,18)^p>>>3}v.g0_256=a;function x(p){return i(p,17)^i(p,19)^p>>>10}v.g1_256=x},8631:function(d,v,e){"use strict";var r=e(61339),i=e(4603);v.inherits=i;function l(q,X){return(q.charCodeAt(X)&64512)!==55296||X<0||X+1>=q.length?!1:(q.charCodeAt(X+1)&64512)===56320}function c(q,X){if(Array.isArray(q))return q.slice();if(!q)return[];var V=[];if(typeof q=="string")if(X){if(X==="hex")for(q=q.replace(/[^a-z0-9]+/ig,""),q.length%2!==0&&(q="0"+q),ee=0;ee<q.length;ee+=2)V.push(parseInt(q[ee]+q[ee+1],16))}else for(var se=0,ee=0;ee<q.length;ee++){var J=q.charCodeAt(ee);J<128?V[se++]=J:J<2048?(V[se++]=J>>6|192,V[se++]=J&63|128):l(q,ee)?(J=65536+((J&1023)<<10)+(q.charCodeAt(++ee)&1023),V[se++]=J>>18|240,V[se++]=J>>12&63|128,V[se++]=J>>6&63|128,V[se++]=J&63|128):(V[se++]=J>>12|224,V[se++]=J>>6&63|128,V[se++]=J&63|128)}else for(ee=0;ee<q.length;ee++)V[ee]=q[ee]|0;return V}v.toArray=c;function f(q){for(var X="",V=0;V<q.length;V++)X+=u(q[V].toString(16));return X}v.toHex=f;function o(q){var X=q>>>24|q>>>8&65280|q<<8&16711680|(q&255)<<24;return X>>>0}v.htonl=o;function h(q,X){for(var V="",se=0;se<q.length;se++){var ee=q[se];X==="little"&&(ee=o(ee)),V+=a(ee.toString(16))}return V}v.toHex32=h;function u(q){return q.length===1?"0"+q:q}v.zero2=u;function a(q){return q.length===7?"0"+q:q.length===6?"00"+q:q.length===5?"000"+q:q.length===4?"0000"+q:q.length===3?"00000"+q:q.length===2?"000000"+q:q.length===1?"0000000"+q:q}v.zero8=a;function x(q,X,V,se){var ee=V-X;r(ee%4===0);for(var J=new Array(ee/4),le=0,z=X;le<J.length;le++,z+=4){var j;se==="big"?j=q[z]<<24|q[z+1]<<16|q[z+2]<<8|q[z+3]:j=q[z+3]<<24|q[z+2]<<16|q[z+1]<<8|q[z],J[le]=j>>>0}return J}v.join32=x;function p(q,X){for(var V=new Array(q.length*4),se=0,ee=0;se<q.length;se++,ee+=4){var J=q[se];X==="big"?(V[ee]=J>>>24,V[ee+1]=J>>>16&255,V[ee+2]=J>>>8&255,V[ee+3]=J&255):(V[ee+3]=J>>>24,V[ee+2]=J>>>16&255,V[ee+1]=J>>>8&255,V[ee]=J&255)}return V}v.split32=p;function y(q,X){return q>>>X|q<<32-X}v.rotr32=y;function m(q,X){return q<<X|q>>>32-X}v.rotl32=m;function b(q,X){return q+X>>>0}v.sum32=b;function S(q,X,V){return q+X+V>>>0}v.sum32_3=S;function k(q,X,V,se){return q+X+V+se>>>0}v.sum32_4=k;function R(q,X,V,se,ee){return q+X+V+se+ee>>>0}v.sum32_5=R;function A(q,X,V,se){var ee=q[X],J=q[X+1],le=se+J>>>0,z=(le<se?1:0)+V+ee;q[X]=z>>>0,q[X+1]=le}v.sum64=A;function P(q,X,V,se){var ee=X+se>>>0,J=(ee<X?1:0)+q+V;return J>>>0}v.sum64_hi=P;function M(q,X,V,se){var ee=X+se;return ee>>>0}v.sum64_lo=M;function B(q,X,V,se,ee,J,le,z){var j=0,ie=X;ie=ie+se>>>0,j+=ie<X?1:0,ie=ie+J>>>0,j+=ie<J?1:0,ie=ie+z>>>0,j+=ie<z?1:0;var me=q+V+ee+le+j;return me>>>0}v.sum64_4_hi=B;function N(q,X,V,se,ee,J,le,z){var j=X+se+J+z;return j>>>0}v.sum64_4_lo=N;function K(q,X,V,se,ee,J,le,z,j,ie){var me=0,Se=X;Se=Se+se>>>0,me+=Se<X?1:0,Se=Se+J>>>0,me+=Se<J?1:0,Se=Se+z>>>0,me+=Se<z?1:0,Se=Se+ie>>>0,me+=Se<ie?1:0;var Ie=q+V+ee+le+j+me;return Ie>>>0}v.sum64_5_hi=K;function H(q,X,V,se,ee,J,le,z,j,ie){var me=X+se+J+z+ie;return me>>>0}v.sum64_5_lo=H;function W(q,X,V){var se=X<<32-V|q>>>V;return se>>>0}v.rotr64_hi=W;function ae(q,X,V){var se=q<<32-V|X>>>V;return se>>>0}v.rotr64_lo=ae;function ne(q,X,V){return q>>>V}v.shr64_hi=ne;function oe(q,X,V){var se=q<<32-V|X>>>V;return se>>>0}v.shr64_lo=oe},19340:function(d,v,e){"use strict";e.d(v,{Ep:function(){return S},PP:function(){return x},aU:function(){return i},cP:function(){return k},lX:function(){return u},q_:function(){return a}});var r=e(54476),i;(function(R){R.Pop="POP",R.Push="PUSH",R.Replace="REPLACE"})(i||(i={}));var l=function(R){return R};function c(R,A){if(!R){typeof console!="undefined"&&console.warn(A);try{throw new Error(A)}catch(P){}}}var f="beforeunload",o="hashchange",h="popstate";function u(R){R===void 0&&(R={});var A=R,P=A.window,M=P===void 0?document.defaultView:P,B=M.history;function N(){var Se=M.location,Ie=Se.pathname,He=Se.search,je=Se.hash,Dt=B.state||{};return[Dt.idx,l({pathname:Ie,search:He,hash:je,state:Dt.usr||null,key:Dt.key||"default"})]}var K=null;function H(){if(K)X.call(K),K=null;else{var Se=i.Pop,Ie=N(),He=Ie[0],je=Ie[1];if(X.length){if(He!=null){var Dt=ne-He;Dt&&(K={action:Se,location:je,retry:function(){ie(Dt*-1)}},ie(Dt))}}else le(Se)}}M.addEventListener(h,H);var W=i.Pop,ae=N(),ne=ae[0],oe=ae[1],q=m(),X=m();ne==null&&(ne=0,B.replaceState((0,r.Z)({},B.state,{idx:ne}),""));function V(Se){return typeof Se=="string"?Se:S(Se)}function se(Se,Ie){return Ie===void 0&&(Ie=null),l((0,r.Z)({pathname:oe.pathname,hash:"",search:""},typeof Se=="string"?k(Se):Se,{state:Ie,key:b()}))}function ee(Se,Ie){return[{usr:Se.state,key:Se.key,idx:Ie},V(Se)]}function J(Se,Ie,He){return!X.length||(X.call({action:Se,location:Ie,retry:He}),!1)}function le(Se){W=Se;var Ie=N();ne=Ie[0],oe=Ie[1],q.call({action:W,location:oe})}function z(Se,Ie){var He=i.Push,je=se(Se,Ie);function Dt(){z(Se,Ie)}if(J(He,je,Dt)){var ht=ee(je,ne+1),It=ht[0],Zt=ht[1];try{B.pushState(It,"",Zt)}catch(Rt){M.location.assign(Zt)}le(He)}}function j(Se,Ie){var He=i.Replace,je=se(Se,Ie);function Dt(){j(Se,Ie)}if(J(He,je,Dt)){var ht=ee(je,ne),It=ht[0],Zt=ht[1];B.replaceState(It,"",Zt),le(He)}}function ie(Se){B.go(Se)}var me={get action(){return W},get location(){return oe},createHref:V,push:z,replace:j,go:ie,back:function(){ie(-1)},forward:function(){ie(1)},listen:function(Ie){return q.push(Ie)},block:function(Ie){var He=X.push(Ie);return X.length===1&&M.addEventListener(f,y),function(){He(),X.length||M.removeEventListener(f,y)}}};return me}function a(R){R===void 0&&(R={});var A=R,P=A.window,M=P===void 0?document.defaultView:P,B=M.history;function N(){var Ie=k(M.location.hash.substr(1)),He=Ie.pathname,je=He===void 0?"/":He,Dt=Ie.search,ht=Dt===void 0?"":Dt,It=Ie.hash,Zt=It===void 0?"":It,Rt=B.state||{};return[Rt.idx,l({pathname:je,search:ht,hash:Zt,state:Rt.usr||null,key:Rt.key||"default"})]}var K=null;function H(){if(K)X.call(K),K=null;else{var Ie=i.Pop,He=N(),je=He[0],Dt=He[1];if(X.length){if(je!=null){var ht=ne-je;ht&&(K={action:Ie,location:Dt,retry:function(){me(ht*-1)}},me(ht))}}else z(Ie)}}M.addEventListener(h,H),M.addEventListener(o,function(){var Ie=N(),He=Ie[1];S(He)!==S(oe)&&H()});var W=i.Pop,ae=N(),ne=ae[0],oe=ae[1],q=m(),X=m();ne==null&&(ne=0,B.replaceState((0,r.Z)({},B.state,{idx:ne}),""));function V(){var Ie=document.querySelector("base"),He="";if(Ie&&Ie.getAttribute("href")){var je=M.location.href,Dt=je.indexOf("#");He=Dt===-1?je:je.slice(0,Dt)}return He}function se(Ie){return V()+"#"+(typeof Ie=="string"?Ie:S(Ie))}function ee(Ie,He){return He===void 0&&(He=null),l((0,r.Z)({pathname:oe.pathname,hash:"",search:""},typeof Ie=="string"?k(Ie):Ie,{state:He,key:b()}))}function J(Ie,He){return[{usr:Ie.state,key:Ie.key,idx:He},se(Ie)]}function le(Ie,He,je){return!X.length||(X.call({action:Ie,location:He,retry:je}),!1)}function z(Ie){W=Ie;var He=N();ne=He[0],oe=He[1],q.call({action:W,location:oe})}function j(Ie,He){var je=i.Push,Dt=ee(Ie,He);function ht(){j(Ie,He)}if(le(je,Dt,ht)){var It=J(Dt,ne+1),Zt=It[0],Rt=It[1];try{B.pushState(Zt,"",Rt)}catch(ar){M.location.assign(Rt)}z(je)}}function ie(Ie,He){var je=i.Replace,Dt=ee(Ie,He);function ht(){ie(Ie,He)}if(le(je,Dt,ht)){var It=J(Dt,ne),Zt=It[0],Rt=It[1];B.replaceState(Zt,"",Rt),z(je)}}function me(Ie){B.go(Ie)}var Se={get action(){return W},get location(){return oe},createHref:se,push:j,replace:ie,go:me,back:function(){me(-1)},forward:function(){me(1)},listen:function(He){return q.push(He)},block:function(He){var je=X.push(He);return X.length===1&&M.addEventListener(f,y),function(){je(),X.length||M.removeEventListener(f,y)}}};return Se}function x(R){R===void 0&&(R={});var A=R,P=A.initialEntries,M=P===void 0?["/"]:P,B=A.initialIndex,N=M.map(function(z){var j=l((0,r.Z)({pathname:"/",search:"",hash:"",state:null,key:b()},typeof z=="string"?k(z):z));return j}),K=p(B==null?N.length-1:B,0,N.length-1),H=i.Pop,W=N[K],ae=m(),ne=m();function oe(z){return typeof z=="string"?z:S(z)}function q(z,j){return j===void 0&&(j=null),l((0,r.Z)({pathname:W.pathname,search:"",hash:""},typeof z=="string"?k(z):z,{state:j,key:b()}))}function X(z,j,ie){return!ne.length||(ne.call({action:z,location:j,retry:ie}),!1)}function V(z,j){H=z,W=j,ae.call({action:H,location:W})}function se(z,j){var ie=i.Push,me=q(z,j);function Se(){se(z,j)}X(ie,me,Se)&&(K+=1,N.splice(K,N.length,me),V(ie,me))}function ee(z,j){var ie=i.Replace,me=q(z,j);function Se(){ee(z,j)}X(ie,me,Se)&&(N[K]=me,V(ie,me))}function J(z){var j=p(K+z,0,N.length-1),ie=i.Pop,me=N[j];function Se(){J(z)}X(ie,me,Se)&&(K=j,V(ie,me))}var le={get index(){return K},get action(){return H},get location(){return W},createHref:oe,push:se,replace:ee,go:J,back:function(){J(-1)},forward:function(){J(1)},listen:function(j){return ae.push(j)},block:function(j){return ne.push(j)}};return le}function p(R,A,P){return Math.min(Math.max(R,A),P)}function y(R){R.preventDefault(),R.returnValue=""}function m(){var R=[];return{get length(){return R.length},push:function(P){return R.push(P),function(){R=R.filter(function(M){return M!==P})}},call:function(P){R.forEach(function(M){return M&&M(P)})}}}function b(){return Math.random().toString(36).substr(2,8)}function S(R){var A=R.pathname,P=A===void 0?"/":A,M=R.search,B=M===void 0?"":M,N=R.hash,K=N===void 0?"":N;return B&&B!=="?"&&(P+=B.charAt(0)==="?"?B:"?"+B),K&&K!=="#"&&(P+=K.charAt(0)==="#"?K:"#"+K),P}function k(R){var A={};if(R){var P=R.indexOf("#");P>=0&&(A.hash=R.substr(P),R=R.substr(0,P));var M=R.indexOf("?");M>=0&&(A.search=R.substr(M),R=R.substr(0,M)),R&&(A.pathname=R)}return A}},94266:function(d,v,e){"use strict";var r=e(99234),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},l={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},c={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},f={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},o={};o[r.ForwardRef]=c,o[r.Memo]=f;function h(S){return r.isMemo(S)?f:o[S.$$typeof]||i}var u=Object.defineProperty,a=Object.getOwnPropertyNames,x=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,y=Object.getPrototypeOf,m=Object.prototype;function b(S,k,R){if(typeof k!="string"){if(m){var A=y(k);A&&A!==m&&b(S,A,R)}var P=a(k);x&&(P=P.concat(x(k)));for(var M=h(S),B=h(k),N=0;N<P.length;++N){var K=P[N];if(!l[K]&&!(R&&R[K])&&!(B&&B[K])&&!(M&&M[K])){var H=p(k,K);try{u(S,K,H)}catch(W){}}}}return S}d.exports=b},4603:function(d){typeof Object.create=="function"?d.exports=function(e,r){r&&(e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:d.exports=function(e,r){if(r){e.super_=r;var i=function(){};i.prototype=r.prototype,e.prototype=new i,e.prototype.constructor=e}}},44520:function(d){"use strict";var v=function(e,r,i,l,c,f,o,h){if(!e){var u;if(r===void 0)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var a=[i,l,c,f,o,h],x=0;u=new Error(r.replace(/%s/g,function(){return a[x++]})),u.name="Invariant Violation"}throw u.framesToPop=1,u}};d.exports=v},78034:function(d){d.exports=function(r){return r!=null&&(v(r)||e(r)||!!r._isBuffer)};function v(r){return!!r.constructor&&typeof r.constructor.isBuffer=="function"&&r.constructor.isBuffer(r)}function e(r){return typeof r.readFloatLE=="function"&&typeof r.slice=="function"&&v(r.slice(0,0))}},78639:function(d,v,e){"use strict";var r=e(77497);function i(l){return r(l)===!0&&Object.prototype.toString.call(l)==="[object Object]"}d.exports=function(c){var f,o;return!(i(c)===!1||(f=c.constructor,typeof f!="function")||(o=f.prototype,i(o)===!1)||o.hasOwnProperty("isPrototypeOf")===!1)}},77497:function(d){"use strict";d.exports=function(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}},53184:function(d,v,e){"use strict";var r,i;function l(c,f,o){var h=function(u,a){return c.js_beautify(u,a)};return h.js=c.js_beautify,h.css=f.css_beautify,h.html=o.html_beautify,h.js_beautify=c.js_beautify,h.css_beautify=f.css_beautify,h.html_beautify=o.html_beautify,h}r=[e(58553),e(87804),e(40998)],i=function(c,f,o){return l(c,f,o)}.apply(v,r),i!==void 0&&(d.exports=i)},87804:function(d,v){var e,r;(function(){var i;(function(){"use strict";var c=[,,function(u){function a(y){this.__parent=y,this.__character_count=0,this.__indent_count=-1,this.__alignment_count=0,this.__wrap_point_index=0,this.__wrap_point_character_count=0,this.__wrap_point_indent_count=-1,this.__wrap_point_alignment_count=0,this.__items=[]}a.prototype.clone_empty=function(){var y=new a(this.__parent);return y.set_indent(this.__indent_count,this.__alignment_count),y},a.prototype.item=function(y){return y<0?this.__items[this.__items.length+y]:this.__items[y]},a.prototype.has_match=function(y){for(var m=this.__items.length-1;m>=0;m--)if(this.__items[m].match(y))return!0;return!1},a.prototype.set_indent=function(y,m){this.is_empty()&&(this.__indent_count=y||0,this.__alignment_count=m||0,this.__character_count=this.__parent.get_indent_size(this.__indent_count,this.__alignment_count))},a.prototype._set_wrap_point=function(){this.__parent.wrap_line_length&&(this.__wrap_point_index=this.__items.length,this.__wrap_point_character_count=this.__character_count,this.__wrap_point_indent_count=this.__parent.next_line.__indent_count,this.__wrap_point_alignment_count=this.__parent.next_line.__alignment_count)},a.prototype._should_wrap=function(){return this.__wrap_point_index&&this.__character_count>this.__parent.wrap_line_length&&this.__wrap_point_character_count>this.__parent.next_line.__character_count},a.prototype._allow_wrap=function(){if(this._should_wrap()){this.__parent.add_new_line();var y=this.__parent.current_line;return y.set_indent(this.__wrap_point_indent_count,this.__wrap_point_alignment_count),y.__items=this.__items.slice(this.__wrap_point_index),this.__items=this.__items.slice(0,this.__wrap_point_index),y.__character_count+=this.__character_count-this.__wrap_point_character_count,this.__character_count=this.__wrap_point_character_count,y.__items[0]===" "&&(y.__items.splice(0,1),y.__character_count-=1),!0}return!1},a.prototype.is_empty=function(){return this.__items.length===0},a.prototype.last=function(){return this.is_empty()?null:this.__items[this.__items.length-1]},a.prototype.push=function(y){this.__items.push(y);var m=y.lastIndexOf(`
`);m!==-1?this.__character_count=y.length-m:this.__character_count+=y.length},a.prototype.pop=function(){var y=null;return this.is_empty()||(y=this.__items.pop(),this.__character_count-=y.length),y},a.prototype._remove_indent=function(){this.__indent_count>0&&(this.__indent_count-=1,this.__character_count-=this.__parent.indent_size)},a.prototype._remove_wrap_indent=function(){this.__wrap_point_indent_count>0&&(this.__wrap_point_indent_count-=1)},a.prototype.trim=function(){for(;this.last()===" ";)this.__items.pop(),this.__character_count-=1},a.prototype.toString=function(){var y="";return this.is_empty()?this.__parent.indent_empty_lines&&(y=this.__parent.get_indent_string(this.__indent_count)):(y=this.__parent.get_indent_string(this.__indent_count,this.__alignment_count),y+=this.__items.join("")),y};function x(y,m){this.__cache=[""],this.__indent_size=y.indent_size,this.__indent_string=y.indent_char,y.indent_with_tabs||(this.__indent_string=new Array(y.indent_size+1).join(y.indent_char)),m=m||"",y.indent_level>0&&(m=new Array(y.indent_level+1).join(this.__indent_string)),this.__base_string=m,this.__base_string_length=m.length}x.prototype.get_indent_size=function(y,m){var b=this.__base_string_length;return m=m||0,y<0&&(b=0),b+=y*this.__indent_size,b+=m,b},x.prototype.get_indent_string=function(y,m){var b=this.__base_string;return m=m||0,y<0&&(y=0,b=""),m+=y*this.__indent_size,this.__ensure_cache(m),b+=this.__cache[m],b},x.prototype.__ensure_cache=function(y){for(;y>=this.__cache.length;)this.__add_column()},x.prototype.__add_column=function(){var y=this.__cache.length,m=0,b="";this.__indent_size&&y>=this.__indent_size&&(m=Math.floor(y/this.__indent_size),y-=m*this.__indent_size,b=new Array(m+1).join(this.__indent_string)),y&&(b+=new Array(y+1).join(" ")),this.__cache.push(b)};function p(y,m){this.__indent_cache=new x(y,m),this.raw=!1,this._end_with_newline=y.end_with_newline,this.indent_size=y.indent_size,this.wrap_line_length=y.wrap_line_length,this.indent_empty_lines=y.indent_empty_lines,this.__lines=[],this.previous_line=null,this.current_line=null,this.next_line=new a(this),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1,this.__add_outputline()}p.prototype.__add_outputline=function(){this.previous_line=this.current_line,this.current_line=this.next_line.clone_empty(),this.__lines.push(this.current_line)},p.prototype.get_line_number=function(){return this.__lines.length},p.prototype.get_indent_string=function(y,m){return this.__indent_cache.get_indent_string(y,m)},p.prototype.get_indent_size=function(y,m){return this.__indent_cache.get_indent_size(y,m)},p.prototype.is_empty=function(){return!this.previous_line&&this.current_line.is_empty()},p.prototype.add_new_line=function(y){return this.is_empty()||!y&&this.just_added_newline()?!1:(this.raw||this.__add_outputline(),!0)},p.prototype.get_code=function(y){this.trim(!0);var m=this.current_line.pop();m&&(m[m.length-1]===`
`&&(m=m.replace(/\n+$/g,"")),this.current_line.push(m)),this._end_with_newline&&this.__add_outputline();var b=this.__lines.join(`
`);return y!==`
`&&(b=b.replace(/[\n]/g,y)),b},p.prototype.set_wrap_point=function(){this.current_line._set_wrap_point()},p.prototype.set_indent=function(y,m){return y=y||0,m=m||0,this.next_line.set_indent(y,m),this.__lines.length>1?(this.current_line.set_indent(y,m),!0):(this.current_line.set_indent(),!1)},p.prototype.add_raw_token=function(y){for(var m=0;m<y.newlines;m++)this.__add_outputline();this.current_line.set_indent(-1),this.current_line.push(y.whitespace_before),this.current_line.push(y.text),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1},p.prototype.add_token=function(y){this.__add_space_before_token(),this.current_line.push(y),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=this.current_line._allow_wrap()},p.prototype.__add_space_before_token=function(){this.space_before_token&&!this.just_added_newline()&&(this.non_breaking_space||this.set_wrap_point(),this.current_line.push(" "))},p.prototype.remove_indent=function(y){for(var m=this.__lines.length;y<m;)this.__lines[y]._remove_indent(),y++;this.current_line._remove_wrap_indent()},p.prototype.trim=function(y){for(y=y===void 0?!1:y,this.current_line.trim();y&&this.__lines.length>1&&this.current_line.is_empty();)this.__lines.pop(),this.current_line=this.__lines[this.__lines.length-1],this.current_line.trim();this.previous_line=this.__lines.length>1?this.__lines[this.__lines.length-2]:null},p.prototype.just_added_newline=function(){return this.current_line.is_empty()},p.prototype.just_added_blankline=function(){return this.is_empty()||this.current_line.is_empty()&&this.previous_line.is_empty()},p.prototype.ensure_empty_line_above=function(y,m){for(var b=this.__lines.length-2;b>=0;){var S=this.__lines[b];if(S.is_empty())break;if(S.item(0).indexOf(y)!==0&&S.item(-1)!==m){this.__lines.splice(b+1,0,new a(this)),this.previous_line=this.__lines[this.__lines.length-2];break}b--}},u.exports.Output=p},,,,function(u){function a(y,m){this.raw_options=x(y,m),this.disabled=this._get_boolean("disabled"),this.eol=this._get_characters("eol","auto"),this.end_with_newline=this._get_boolean("end_with_newline"),this.indent_size=this._get_number("indent_size",4),this.indent_char=this._get_characters("indent_char"," "),this.indent_level=this._get_number("indent_level"),this.preserve_newlines=this._get_boolean("preserve_newlines",!0),this.max_preserve_newlines=this._get_number("max_preserve_newlines",32786),this.preserve_newlines||(this.max_preserve_newlines=0),this.indent_with_tabs=this._get_boolean("indent_with_tabs",this.indent_char===" "),this.indent_with_tabs&&(this.indent_char=" ",this.indent_size===1&&(this.indent_size=4)),this.wrap_line_length=this._get_number("wrap_line_length",this._get_number("max_char")),this.indent_empty_lines=this._get_boolean("indent_empty_lines"),this.templating=this._get_selection_list("templating",["auto","none","angular","django","erb","handlebars","php","smarty"],["auto"])}a.prototype._get_array=function(y,m){var b=this.raw_options[y],S=m||[];return typeof b=="object"?b!==null&&typeof b.concat=="function"&&(S=b.concat()):typeof b=="string"&&(S=b.split(/[^a-zA-Z0-9_\/\-]+/)),S},a.prototype._get_boolean=function(y,m){var b=this.raw_options[y],S=b===void 0?!!m:!!b;return S},a.prototype._get_characters=function(y,m){var b=this.raw_options[y],S=m||"";return typeof b=="string"&&(S=b.replace(/\\r/,"\r").replace(/\\n/,`
`).replace(/\\t/," ")),S},a.prototype._get_number=function(y,m){var b=this.raw_options[y];m=parseInt(m,10),isNaN(m)&&(m=0);var S=parseInt(b,10);return isNaN(S)&&(S=m),S},a.prototype._get_selection=function(y,m,b){var S=this._get_selection_list(y,m,b);if(S.length!==1)throw new Error("Invalid Option Value: The option '"+y+`' can only be one of the following values:
`+m+`
You passed in: '`+this.raw_options[y]+"'");return S[0]},a.prototype._get_selection_list=function(y,m,b){if(!m||m.length===0)throw new Error("Selection list cannot be empty.");if(b=b||[m[0]],!this._is_valid_selection(b,m))throw new Error("Invalid Default Value!");var S=this._get_array(y,b);if(!this._is_valid_selection(S,m))throw new Error("Invalid Option Value: The option '"+y+`' can contain only the following values:
`+m+`
You passed in: '`+this.raw_options[y]+"'");return S},a.prototype._is_valid_selection=function(y,m){return y.length&&m.length&&!y.some(function(b){return m.indexOf(b)===-1})};function x(y,m){var b={};y=p(y);var S;for(S in y)S!==m&&(b[S]=y[S]);if(m&&y[m])for(S in y[m])b[S]=y[m][S];return b}function p(y){var m={},b;for(b in y){var S=b.replace(/-/g,"_");m[S]=y[b]}return m}u.exports.Options=a,u.exports.normalizeOpts=p,u.exports.mergeOpts=x},,function(u){var a=RegExp.prototype.hasOwnProperty("sticky");function x(p){this.__input=p||"",this.__input_length=this.__input.length,this.__position=0}x.prototype.restart=function(){this.__position=0},x.prototype.back=function(){this.__position>0&&(this.__position-=1)},x.prototype.hasNext=function(){return this.__position<this.__input_length},x.prototype.next=function(){var p=null;return this.hasNext()&&(p=this.__input.charAt(this.__position),this.__position+=1),p},x.prototype.peek=function(p){var y=null;return p=p||0,p+=this.__position,p>=0&&p<this.__input_length&&(y=this.__input.charAt(p)),y},x.prototype.__match=function(p,y){p.lastIndex=y;var m=p.exec(this.__input);return m&&!(a&&p.sticky)&&m.index!==y&&(m=null),m},x.prototype.test=function(p,y){return y=y||0,y+=this.__position,y>=0&&y<this.__input_length?!!this.__match(p,y):!1},x.prototype.testChar=function(p,y){var m=this.peek(y);return p.lastIndex=0,m!==null&&p.test(m)},x.prototype.match=function(p){var y=this.__match(p,this.__position);return y?this.__position+=y[0].length:y=null,y},x.prototype.read=function(p,y,m){var b="",S;return p&&(S=this.match(p),S&&(b+=S[0])),y&&(S||!p)&&(b+=this.readUntil(y,m)),b},x.prototype.readUntil=function(p,y){var m="",b=this.__position;p.lastIndex=this.__position;var S=p.exec(this.__input);return S?(b=S.index,y&&(b+=S[0].length)):b=this.__input_length,m=this.__input.substring(this.__position,b),this.__position=b,m},x.prototype.readUntilAfter=function(p){return this.readUntil(p,!0)},x.prototype.get_regexp=function(p,y){var m=null,b="g";return y&&a&&(b="y"),typeof p=="string"&&p!==""?m=new RegExp(p,b):p&&(m=new RegExp(p.source,b)),m},x.prototype.get_literal_regexp=function(p){return RegExp(p.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"))},x.prototype.peekUntilAfter=function(p){var y=this.__position,m=this.readUntilAfter(p);return this.__position=y,m},x.prototype.lookBack=function(p){var y=this.__position-1;return y>=p.length&&this.__input.substring(y-p.length,y).toLowerCase()===p},u.exports.InputScanner=x},,,,,function(u){function a(x,p){x=typeof x=="string"?x:x.source,p=typeof p=="string"?p:p.source,this.__directives_block_pattern=new RegExp(x+/ beautify( \w+[:]\w+)+ /.source+p,"g"),this.__directive_pattern=/ (\w+)[:](\w+)/g,this.__directives_end_ignore_pattern=new RegExp(x+/\sbeautify\signore:end\s/.source+p,"g")}a.prototype.get_directives=function(x){if(!x.match(this.__directives_block_pattern))return null;var p={};this.__directive_pattern.lastIndex=0;for(var y=this.__directive_pattern.exec(x);y;)p[y[1]]=y[2],y=this.__directive_pattern.exec(x);return p},a.prototype.readIgnored=function(x){return x.readUntilAfter(this.__directives_end_ignore_pattern)},u.exports.Directives=a},,function(u,a,x){var p=x(16).Beautifier,y=x(17).Options;function m(b,S){var k=new p(b,S);return k.beautify()}u.exports=m,u.exports.defaultOptions=function(){return new y}},function(u,a,x){var p=x(17).Options,y=x(2).Output,m=x(8).InputScanner,b=x(13).Directives,S=new b(/\/\*/,/\*\//),k=/\r\n|[\r\n]/,R=/\r\n|[\r\n]/g,A=/\s/,P=/(?:\s|\n)+/g,M=/\/\*(?:[\s\S]*?)((?:\*\/)|$)/g,B=/\/\/(?:[^\n\r\u2028\u2029]*)/g;function N(K,H){this._source_text=K||"",this._options=new p(H),this._ch=null,this._input=null,this.NESTED_AT_RULE={page:!0,"font-face":!0,keyframes:!0,media:!0,supports:!0,document:!0},this.CONDITIONAL_GROUP_RULE={media:!0,supports:!0,document:!0},this.NON_SEMICOLON_NEWLINE_PROPERTY=["grid-template-areas","grid-template"]}N.prototype.eatString=function(K){var H="";for(this._ch=this._input.next();this._ch;){if(H+=this._ch,this._ch==="\\")H+=this._input.next();else if(K.indexOf(this._ch)!==-1||this._ch===`
`)break;this._ch=this._input.next()}return H},N.prototype.eatWhitespace=function(K){for(var H=A.test(this._input.peek()),W=0;A.test(this._input.peek());)this._ch=this._input.next(),K&&this._ch===`
`&&(W===0||W<this._options.max_preserve_newlines)&&(W++,this._output.add_new_line(!0));return H},N.prototype.foundNestedPseudoClass=function(){for(var K=0,H=1,W=this._input.peek(H);W;){if(W==="{")return!0;if(W==="(")K+=1;else if(W===")"){if(K===0)return!1;K-=1}else if(W===";"||W==="}")return!1;H++,W=this._input.peek(H)}return!1},N.prototype.print_string=function(K){this._output.set_indent(this._indentLevel),this._output.non_breaking_space=!0,this._output.add_token(K)},N.prototype.preserveSingleSpace=function(K){K&&(this._output.space_before_token=!0)},N.prototype.indent=function(){this._indentLevel++},N.prototype.outdent=function(){this._indentLevel>0&&this._indentLevel--},N.prototype.beautify=function(){if(this._options.disabled)return this._source_text;var K=this._source_text,H=this._options.eol;H==="auto"&&(H=`
`,K&&k.test(K||"")&&(H=K.match(k)[0])),K=K.replace(R,`
`);var W=K.match(/^[\t ]*/)[0];this._output=new y(this._options,W),this._input=new m(K),this._indentLevel=0,this._nestedLevel=0,this._ch=null;for(var ae=0,ne=!1,oe=!1,q=!1,X=!1,V=!1,se=this._ch,ee=!1,J,le,z;J=this._input.read(P),le=J!=="",z=se,this._ch=this._input.next(),this._ch==="\\"&&this._input.hasNext()&&(this._ch+=this._input.next()),se=this._ch,this._ch;)if(this._ch==="/"&&this._input.peek()==="*"){this._output.add_new_line(),this._input.back();var j=this._input.read(M),ie=S.get_directives(j);ie&&ie.ignore==="start"&&(j+=S.readIgnored(this._input)),this.print_string(j),this.eatWhitespace(!0),this._output.add_new_line()}else if(this._ch==="/"&&this._input.peek()==="/")this._output.space_before_token=!0,this._input.back(),this.print_string(this._input.read(B)),this.eatWhitespace(!0);else if(this._ch==="$"){this.preserveSingleSpace(le),this.print_string(this._ch);var me=this._input.peekUntilAfter(/[: ,;{}()[\]\/='"]/g);me.match(/[ :]$/)&&(me=this.eatString(": ").replace(/\s+$/,""),this.print_string(me),this._output.space_before_token=!0),ae===0&&me.indexOf(":")!==-1&&(oe=!0,this.indent())}else if(this._ch==="@")if(this.preserveSingleSpace(le),this._input.peek()==="{")this.print_string(this._ch+this.eatString("}"));else{this.print_string(this._ch);var Se=this._input.peekUntilAfter(/[: ,;{}()[\]\/='"]/g);Se.match(/[ :]$/)&&(Se=this.eatString(": ").replace(/\s+$/,""),this.print_string(Se),this._output.space_before_token=!0),ae===0&&Se.indexOf(":")!==-1?(oe=!0,this.indent()):Se in this.NESTED_AT_RULE?(this._nestedLevel+=1,Se in this.CONDITIONAL_GROUP_RULE&&(q=!0)):ae===0&&!oe&&(X=!0)}else if(this._ch==="#"&&this._input.peek()==="{")this.preserveSingleSpace(le),this.print_string(this._ch+this.eatString("}"));else if(this._ch==="{")oe&&(oe=!1,this.outdent()),X=!1,q?(q=!1,ne=this._indentLevel>=this._nestedLevel):ne=this._indentLevel>=this._nestedLevel-1,this._options.newline_between_rules&&ne&&this._output.previous_line&&this._output.previous_line.item(-1)!=="{"&&this._output.ensure_empty_line_above("/",","),this._output.space_before_token=!0,this._options.brace_style==="expand"?(this._output.add_new_line(),this.print_string(this._ch),this.indent(),this._output.set_indent(this._indentLevel)):(z==="("?this._output.space_before_token=!1:z!==","&&this.indent(),this.print_string(this._ch)),this.eatWhitespace(!0),this._output.add_new_line();else if(this._ch==="}")this.outdent(),this._output.add_new_line(),z==="{"&&this._output.trim(!0),oe&&(this.outdent(),oe=!1),this.print_string(this._ch),ne=!1,this._nestedLevel&&this._nestedLevel--,this.eatWhitespace(!0),this._output.add_new_line(),this._options.newline_between_rules&&!this._output.just_added_blankline()&&this._input.peek()!=="}"&&this._output.add_new_line(!0),this._input.peek()===")"&&(this._output.trim(!0),this._options.brace_style==="expand"&&this._output.add_new_line(!0));else if(this._ch===":"){for(var Ie=0;Ie<this.NON_SEMICOLON_NEWLINE_PROPERTY.length;Ie++)if(this._input.lookBack(this.NON_SEMICOLON_NEWLINE_PROPERTY[Ie])){ee=!0;break}(ne||q)&&!(this._input.lookBack("&")||this.foundNestedPseudoClass())&&!this._input.lookBack("(")&&!X&&ae===0?(this.print_string(":"),oe||(oe=!0,this._output.space_before_token=!0,this.eatWhitespace(!0),this.indent())):(this._input.lookBack(" ")&&(this._output.space_before_token=!0),this._input.peek()===":"?(this._ch=this._input.next(),this.print_string("::")):this.print_string(":"))}else if(this._ch==='"'||this._ch==="'"){var He=z==='"'||z==="'";this.preserveSingleSpace(He||le),this.print_string(this._ch+this.eatString(this._ch)),this.eatWhitespace(!0)}else if(this._ch===";")ee=!1,ae===0?(oe&&(this.outdent(),oe=!1),X=!1,this.print_string(this._ch),this.eatWhitespace(!0),this._input.peek()!=="/"&&this._output.add_new_line()):(this.print_string(this._ch),this.eatWhitespace(!0),this._output.space_before_token=!0);else if(this._ch==="(")if(this._input.lookBack("url"))this.print_string(this._ch),this.eatWhitespace(),ae++,this.indent(),this._ch=this._input.next(),this._ch===")"||this._ch==='"'||this._ch==="'"?this._input.back():this._ch&&(this.print_string(this._ch+this.eatString(")")),ae&&(ae--,this.outdent()));else{var je=!1;this._input.lookBack("with")&&(je=!0),this.preserveSingleSpace(le||je),this.print_string(this._ch),oe&&z==="$"&&this._options.selector_separator_newline?(this._output.add_new_line(),V=!0):(this.eatWhitespace(),ae++,this.indent())}else if(this._ch===")")ae&&(ae--,this.outdent()),V&&this._input.peek()===";"&&this._options.selector_separator_newline&&(V=!1,this.outdent(),this._output.add_new_line()),this.print_string(this._ch);else if(this._ch===",")this.print_string(this._ch),this.eatWhitespace(!0),this._options.selector_separator_newline&&(!oe||V)&&ae===0&&!X?this._output.add_new_line():this._output.space_before_token=!0;else if((this._ch===">"||this._ch==="+"||this._ch==="~")&&!oe&&ae===0)this._options.space_around_combinator?(this._output.space_before_token=!0,this.print_string(this._ch),this._output.space_before_token=!0):(this.print_string(this._ch),this.eatWhitespace(),this._ch&&A.test(this._ch)&&(this._ch=""));else if(this._ch==="]")this.print_string(this._ch);else if(this._ch==="[")this.preserveSingleSpace(le),this.print_string(this._ch);else if(this._ch==="=")this.eatWhitespace(),this.print_string("="),A.test(this._ch)&&(this._ch="");else if(this._ch==="!"&&!this._input.lookBack("\\"))this._output.space_before_token=!0,this.print_string(this._ch);else{var Dt=z==='"'||z==="'";this.preserveSingleSpace(Dt||le),this.print_string(this._ch),!this._output.just_added_newline()&&this._input.peek()===`
`&&ee&&this._output.add_new_line()}var ht=this._output.get_code(H);return ht},u.exports.Beautifier=N},function(u,a,x){var p=x(6).Options;function y(m){p.call(this,m,"css"),this.selector_separator_newline=this._get_boolean("selector_separator_newline",!0),this.newline_between_rules=this._get_boolean("newline_between_rules",!0);var b=this._get_boolean("space_around_selector_separator");this.space_around_combinator=this._get_boolean("space_around_combinator")||b;var S=this._get_selection_list("brace_style",["collapse","expand","end-expand","none","preserve-inline"]);this.brace_style="collapse";for(var k=0;k<S.length;k++)S[k]!=="expand"?this.brace_style="collapse":this.brace_style=S[k]}y.prototype=new p,u.exports.Options=y}],f={};function o(u){var a=f[u];if(a!==void 0)return a.exports;var x=f[u]={exports:{}};return c[u](x,x.exports,o),x.exports}var h=o(15);i=h})();var l=i;e=[],r=function(){return{css_beautify:l}}.apply(v,e),r!==void 0&&(d.exports=r)})()},40998:function(d,v,e){var r,i;(function(){var l;(function(){"use strict";var h=[,,function(p){function y(S){this.__parent=S,this.__character_count=0,this.__indent_count=-1,this.__alignment_count=0,this.__wrap_point_index=0,this.__wrap_point_character_count=0,this.__wrap_point_indent_count=-1,this.__wrap_point_alignment_count=0,this.__items=[]}y.prototype.clone_empty=function(){var S=new y(this.__parent);return S.set_indent(this.__indent_count,this.__alignment_count),S},y.prototype.item=function(S){return S<0?this.__items[this.__items.length+S]:this.__items[S]},y.prototype.has_match=function(S){for(var k=this.__items.length-1;k>=0;k--)if(this.__items[k].match(S))return!0;return!1},y.prototype.set_indent=function(S,k){this.is_empty()&&(this.__indent_count=S||0,this.__alignment_count=k||0,this.__character_count=this.__parent.get_indent_size(this.__indent_count,this.__alignment_count))},y.prototype._set_wrap_point=function(){this.__parent.wrap_line_length&&(this.__wrap_point_index=this.__items.length,this.__wrap_point_character_count=this.__character_count,this.__wrap_point_indent_count=this.__parent.next_line.__indent_count,this.__wrap_point_alignment_count=this.__parent.next_line.__alignment_count)},y.prototype._should_wrap=function(){return this.__wrap_point_index&&this.__character_count>this.__parent.wrap_line_length&&this.__wrap_point_character_count>this.__parent.next_line.__character_count},y.prototype._allow_wrap=function(){if(this._should_wrap()){this.__parent.add_new_line();var S=this.__parent.current_line;return S.set_indent(this.__wrap_point_indent_count,this.__wrap_point_alignment_count),S.__items=this.__items.slice(this.__wrap_point_index),this.__items=this.__items.slice(0,this.__wrap_point_index),S.__character_count+=this.__character_count-this.__wrap_point_character_count,this.__character_count=this.__wrap_point_character_count,S.__items[0]===" "&&(S.__items.splice(0,1),S.__character_count-=1),!0}return!1},y.prototype.is_empty=function(){return this.__items.length===0},y.prototype.last=function(){return this.is_empty()?null:this.__items[this.__items.length-1]},y.prototype.push=function(S){this.__items.push(S);var k=S.lastIndexOf(`
`);k!==-1?this.__character_count=S.length-k:this.__character_count+=S.length},y.prototype.pop=function(){var S=null;return this.is_empty()||(S=this.__items.pop(),this.__character_count-=S.length),S},y.prototype._remove_indent=function(){this.__indent_count>0&&(this.__indent_count-=1,this.__character_count-=this.__parent.indent_size)},y.prototype._remove_wrap_indent=function(){this.__wrap_point_indent_count>0&&(this.__wrap_point_indent_count-=1)},y.prototype.trim=function(){for(;this.last()===" ";)this.__items.pop(),this.__character_count-=1},y.prototype.toString=function(){var S="";return this.is_empty()?this.__parent.indent_empty_lines&&(S=this.__parent.get_indent_string(this.__indent_count)):(S=this.__parent.get_indent_string(this.__indent_count,this.__alignment_count),S+=this.__items.join("")),S};function m(S,k){this.__cache=[""],this.__indent_size=S.indent_size,this.__indent_string=S.indent_char,S.indent_with_tabs||(this.__indent_string=new Array(S.indent_size+1).join(S.indent_char)),k=k||"",S.indent_level>0&&(k=new Array(S.indent_level+1).join(this.__indent_string)),this.__base_string=k,this.__base_string_length=k.length}m.prototype.get_indent_size=function(S,k){var R=this.__base_string_length;return k=k||0,S<0&&(R=0),R+=S*this.__indent_size,R+=k,R},m.prototype.get_indent_string=function(S,k){var R=this.__base_string;return k=k||0,S<0&&(S=0,R=""),k+=S*this.__indent_size,this.__ensure_cache(k),R+=this.__cache[k],R},m.prototype.__ensure_cache=function(S){for(;S>=this.__cache.length;)this.__add_column()},m.prototype.__add_column=function(){var S=this.__cache.length,k=0,R="";this.__indent_size&&S>=this.__indent_size&&(k=Math.floor(S/this.__indent_size),S-=k*this.__indent_size,R=new Array(k+1).join(this.__indent_string)),S&&(R+=new Array(S+1).join(" ")),this.__cache.push(R)};function b(S,k){this.__indent_cache=new m(S,k),this.raw=!1,this._end_with_newline=S.end_with_newline,this.indent_size=S.indent_size,this.wrap_line_length=S.wrap_line_length,this.indent_empty_lines=S.indent_empty_lines,this.__lines=[],this.previous_line=null,this.current_line=null,this.next_line=new y(this),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1,this.__add_outputline()}b.prototype.__add_outputline=function(){this.previous_line=this.current_line,this.current_line=this.next_line.clone_empty(),this.__lines.push(this.current_line)},b.prototype.get_line_number=function(){return this.__lines.length},b.prototype.get_indent_string=function(S,k){return this.__indent_cache.get_indent_string(S,k)},b.prototype.get_indent_size=function(S,k){return this.__indent_cache.get_indent_size(S,k)},b.prototype.is_empty=function(){return!this.previous_line&&this.current_line.is_empty()},b.prototype.add_new_line=function(S){return this.is_empty()||!S&&this.just_added_newline()?!1:(this.raw||this.__add_outputline(),!0)},b.prototype.get_code=function(S){this.trim(!0);var k=this.current_line.pop();k&&(k[k.length-1]===`
`&&(k=k.replace(/\n+$/g,"")),this.current_line.push(k)),this._end_with_newline&&this.__add_outputline();var R=this.__lines.join(`
`);return S!==`
`&&(R=R.replace(/[\n]/g,S)),R},b.prototype.set_wrap_point=function(){this.current_line._set_wrap_point()},b.prototype.set_indent=function(S,k){return S=S||0,k=k||0,this.next_line.set_indent(S,k),this.__lines.length>1?(this.current_line.set_indent(S,k),!0):(this.current_line.set_indent(),!1)},b.prototype.add_raw_token=function(S){for(var k=0;k<S.newlines;k++)this.__add_outputline();this.current_line.set_indent(-1),this.current_line.push(S.whitespace_before),this.current_line.push(S.text),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1},b.prototype.add_token=function(S){this.__add_space_before_token(),this.current_line.push(S),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=this.current_line._allow_wrap()},b.prototype.__add_space_before_token=function(){this.space_before_token&&!this.just_added_newline()&&(this.non_breaking_space||this.set_wrap_point(),this.current_line.push(" "))},b.prototype.remove_indent=function(S){for(var k=this.__lines.length;S<k;)this.__lines[S]._remove_indent(),S++;this.current_line._remove_wrap_indent()},b.prototype.trim=function(S){for(S=S===void 0?!1:S,this.current_line.trim();S&&this.__lines.length>1&&this.current_line.is_empty();)this.__lines.pop(),this.current_line=this.__lines[this.__lines.length-1],this.current_line.trim();this.previous_line=this.__lines.length>1?this.__lines[this.__lines.length-2]:null},b.prototype.just_added_newline=function(){return this.current_line.is_empty()},b.prototype.just_added_blankline=function(){return this.is_empty()||this.current_line.is_empty()&&this.previous_line.is_empty()},b.prototype.ensure_empty_line_above=function(S,k){for(var R=this.__lines.length-2;R>=0;){var A=this.__lines[R];if(A.is_empty())break;if(A.item(0).indexOf(S)!==0&&A.item(-1)!==k){this.__lines.splice(R+1,0,new y(this)),this.previous_line=this.__lines[this.__lines.length-2];break}R--}},p.exports.Output=b},function(p){function y(m,b,S,k){this.type=m,this.text=b,this.comments_before=null,this.newlines=S||0,this.whitespace_before=k||"",this.parent=null,this.next=null,this.previous=null,this.opened=null,this.closed=null,this.directives=null}p.exports.Token=y},,,function(p){function y(S,k){this.raw_options=m(S,k),this.disabled=this._get_boolean("disabled"),this.eol=this._get_characters("eol","auto"),this.end_with_newline=this._get_boolean("end_with_newline"),this.indent_size=this._get_number("indent_size",4),this.indent_char=this._get_characters("indent_char"," "),this.indent_level=this._get_number("indent_level"),this.preserve_newlines=this._get_boolean("preserve_newlines",!0),this.max_preserve_newlines=this._get_number("max_preserve_newlines",32786),this.preserve_newlines||(this.max_preserve_newlines=0),this.indent_with_tabs=this._get_boolean("indent_with_tabs",this.indent_char===" "),this.indent_with_tabs&&(this.indent_char=" ",this.indent_size===1&&(this.indent_size=4)),this.wrap_line_length=this._get_number("wrap_line_length",this._get_number("max_char")),this.indent_empty_lines=this._get_boolean("indent_empty_lines"),this.templating=this._get_selection_list("templating",["auto","none","angular","django","erb","handlebars","php","smarty"],["auto"])}y.prototype._get_array=function(S,k){var R=this.raw_options[S],A=k||[];return typeof R=="object"?R!==null&&typeof R.concat=="function"&&(A=R.concat()):typeof R=="string"&&(A=R.split(/[^a-zA-Z0-9_\/\-]+/)),A},y.prototype._get_boolean=function(S,k){var R=this.raw_options[S],A=R===void 0?!!k:!!R;return A},y.prototype._get_characters=function(S,k){var R=this.raw_options[S],A=k||"";return typeof R=="string"&&(A=R.replace(/\\r/,"\r").replace(/\\n/,`
`).replace(/\\t/," ")),A},y.prototype._get_number=function(S,k){var R=this.raw_options[S];k=parseInt(k,10),isNaN(k)&&(k=0);var A=parseInt(R,10);return isNaN(A)&&(A=k),A},y.prototype._get_selection=function(S,k,R){var A=this._get_selection_list(S,k,R);if(A.length!==1)throw new Error("Invalid Option Value: The option '"+S+`' can only be one of the following values:
`+k+`
You passed in: '`+this.raw_options[S]+"'");return A[0]},y.prototype._get_selection_list=function(S,k,R){if(!k||k.length===0)throw new Error("Selection list cannot be empty.");if(R=R||[k[0]],!this._is_valid_selection(R,k))throw new Error("Invalid Default Value!");var A=this._get_array(S,R);if(!this._is_valid_selection(A,k))throw new Error("Invalid Option Value: The option '"+S+`' can contain only the following values:
`+k+`
You passed in: '`+this.raw_options[S]+"'");return A},y.prototype._is_valid_selection=function(S,k){return S.length&&k.length&&!S.some(function(R){return k.indexOf(R)===-1})};function m(S,k){var R={};S=b(S);var A;for(A in S)A!==k&&(R[A]=S[A]);if(k&&S[k])for(A in S[k])R[A]=S[k][A];return R}function b(S){var k={},R;for(R in S){var A=R.replace(/-/g,"_");k[A]=S[R]}return k}p.exports.Options=y,p.exports.normalizeOpts=b,p.exports.mergeOpts=m},,function(p){var y=RegExp.prototype.hasOwnProperty("sticky");function m(b){this.__input=b||"",this.__input_length=this.__input.length,this.__position=0}m.prototype.restart=function(){this.__position=0},m.prototype.back=function(){this.__position>0&&(this.__position-=1)},m.prototype.hasNext=function(){return this.__position<this.__input_length},m.prototype.next=function(){var b=null;return this.hasNext()&&(b=this.__input.charAt(this.__position),this.__position+=1),b},m.prototype.peek=function(b){var S=null;return b=b||0,b+=this.__position,b>=0&&b<this.__input_length&&(S=this.__input.charAt(b)),S},m.prototype.__match=function(b,S){b.lastIndex=S;var k=b.exec(this.__input);return k&&!(y&&b.sticky)&&k.index!==S&&(k=null),k},m.prototype.test=function(b,S){return S=S||0,S+=this.__position,S>=0&&S<this.__input_length?!!this.__match(b,S):!1},m.prototype.testChar=function(b,S){var k=this.peek(S);return b.lastIndex=0,k!==null&&b.test(k)},m.prototype.match=function(b){var S=this.__match(b,this.__position);return S?this.__position+=S[0].length:S=null,S},m.prototype.read=function(b,S,k){var R="",A;return b&&(A=this.match(b),A&&(R+=A[0])),S&&(A||!b)&&(R+=this.readUntil(S,k)),R},m.prototype.readUntil=function(b,S){var k="",R=this.__position;b.lastIndex=this.__position;var A=b.exec(this.__input);return A?(R=A.index,S&&(R+=A[0].length)):R=this.__input_length,k=this.__input.substring(this.__position,R),this.__position=R,k},m.prototype.readUntilAfter=function(b){return this.readUntil(b,!0)},m.prototype.get_regexp=function(b,S){var k=null,R="g";return S&&y&&(R="y"),typeof b=="string"&&b!==""?k=new RegExp(b,R):b&&(k=new RegExp(b.source,R)),k},m.prototype.get_literal_regexp=function(b){return RegExp(b.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"))},m.prototype.peekUntilAfter=function(b){var S=this.__position,k=this.readUntilAfter(b);return this.__position=S,k},m.prototype.lookBack=function(b){var S=this.__position-1;return S>=b.length&&this.__input.substring(S-b.length,S).toLowerCase()===b},p.exports.InputScanner=m},function(p,y,m){var b=m(8).InputScanner,S=m(3).Token,k=m(10).TokenStream,R=m(11).WhitespacePattern,A={START:"TK_START",RAW:"TK_RAW",EOF:"TK_EOF"},P=function(M,B){this._input=new b(M),this._options=B||{},this.__tokens=null,this._patterns={},this._patterns.whitespace=new R(this._input)};P.prototype.tokenize=function(){this._input.restart(),this.__tokens=new k,this._reset();for(var M,B=new S(A.START,""),N=null,K=[],H=new k;B.type!==A.EOF;){for(M=this._get_next_token(B,N);this._is_comment(M);)H.add(M),M=this._get_next_token(B,N);H.isEmpty()||(M.comments_before=H,H=new k),M.parent=N,this._is_opening(M)?(K.push(N),N=M):N&&this._is_closing(M,N)&&(M.opened=N,N.closed=M,N=K.pop(),M.parent=N),M.previous=B,B.next=M,this.__tokens.add(M),B=M}return this.__tokens},P.prototype._is_first_token=function(){return this.__tokens.isEmpty()},P.prototype._reset=function(){},P.prototype._get_next_token=function(M,B){this._readWhitespace();var N=this._input.read(/.+/g);return N?this._create_token(A.RAW,N):this._create_token(A.EOF,"")},P.prototype._is_comment=function(M){return!1},P.prototype._is_opening=function(M){return!1},P.prototype._is_closing=function(M,B){return!1},P.prototype._create_token=function(M,B){var N=new S(M,B,this._patterns.whitespace.newline_count,this._patterns.whitespace.whitespace_before_token);return N},P.prototype._readWhitespace=function(){return this._patterns.whitespace.read()},p.exports.Tokenizer=P,p.exports.TOKEN=A},function(p){function y(m){this.__tokens=[],this.__tokens_length=this.__tokens.length,this.__position=0,this.__parent_token=m}y.prototype.restart=function(){this.__position=0},y.prototype.isEmpty=function(){return this.__tokens_length===0},y.prototype.hasNext=function(){return this.__position<this.__tokens_length},y.prototype.next=function(){var m=null;return this.hasNext()&&(m=this.__tokens[this.__position],this.__position+=1),m},y.prototype.peek=function(m){var b=null;return m=m||0,m+=this.__position,m>=0&&m<this.__tokens_length&&(b=this.__tokens[m]),b},y.prototype.add=function(m){this.__parent_token&&(m.parent=this.__parent_token),this.__tokens.push(m),this.__tokens_length+=1},p.exports.TokenStream=y},function(p,y,m){var b=m(12).Pattern;function S(k,R){b.call(this,k,R),R?this._line_regexp=this._input.get_regexp(R._line_regexp):this.__set_whitespace_patterns("",""),this.newline_count=0,this.whitespace_before_token=""}S.prototype=new b,S.prototype.__set_whitespace_patterns=function(k,R){k+="\\t ",R+="\\n\\r",this._match_pattern=this._input.get_regexp("["+k+R+"]+",!0),this._newline_regexp=this._input.get_regexp("\\r\\n|["+R+"]")},S.prototype.read=function(){this.newline_count=0,this.whitespace_before_token="";var k=this._input.read(this._match_pattern);if(k===" ")this.whitespace_before_token=" ";else if(k){var R=this.__split(this._newline_regexp,k);this.newline_count=R.length-1,this.whitespace_before_token=R[this.newline_count]}return k},S.prototype.matching=function(k,R){var A=this._create();return A.__set_whitespace_patterns(k,R),A._update(),A},S.prototype._create=function(){return new S(this._input,this)},S.prototype.__split=function(k,R){k.lastIndex=0;for(var A=0,P=[],M=k.exec(R);M;)P.push(R.substring(A,M.index)),A=M.index+M[0].length,M=k.exec(R);return A<R.length?P.push(R.substring(A,R.length)):P.push(""),P},p.exports.WhitespacePattern=S},function(p){function y(m,b){this._input=m,this._starting_pattern=null,this._match_pattern=null,this._until_pattern=null,this._until_after=!1,b&&(this._starting_pattern=this._input.get_regexp(b._starting_pattern,!0),this._match_pattern=this._input.get_regexp(b._match_pattern,!0),this._until_pattern=this._input.get_regexp(b._until_pattern),this._until_after=b._until_after)}y.prototype.read=function(){var m=this._input.read(this._starting_pattern);return(!this._starting_pattern||m)&&(m+=this._input.read(this._match_pattern,this._until_pattern,this._until_after)),m},y.prototype.read_match=function(){return this._input.match(this._match_pattern)},y.prototype.until_after=function(m){var b=this._create();return b._until_after=!0,b._until_pattern=this._input.get_regexp(m),b._update(),b},y.prototype.until=function(m){var b=this._create();return b._until_after=!1,b._until_pattern=this._input.get_regexp(m),b._update(),b},y.prototype.starting_with=function(m){var b=this._create();return b._starting_pattern=this._input.get_regexp(m,!0),b._update(),b},y.prototype.matching=function(m){var b=this._create();return b._match_pattern=this._input.get_regexp(m,!0),b._update(),b},y.prototype._create=function(){return new y(this._input,this)},y.prototype._update=function(){},p.exports.Pattern=y},function(p){function y(m,b){m=typeof m=="string"?m:m.source,b=typeof b=="string"?b:b.source,this.__directives_block_pattern=new RegExp(m+/ beautify( \w+[:]\w+)+ /.source+b,"g"),this.__directive_pattern=/ (\w+)[:](\w+)/g,this.__directives_end_ignore_pattern=new RegExp(m+/\sbeautify\signore:end\s/.source+b,"g")}y.prototype.get_directives=function(m){if(!m.match(this.__directives_block_pattern))return null;var b={};this.__directive_pattern.lastIndex=0;for(var S=this.__directive_pattern.exec(m);S;)b[S[1]]=S[2],S=this.__directive_pattern.exec(m);return b},y.prototype.readIgnored=function(m){return m.readUntilAfter(this.__directives_end_ignore_pattern)},p.exports.Directives=y},function(p,y,m){var b=m(12).Pattern,S={django:!1,erb:!1,handlebars:!1,php:!1,smarty:!1,angular:!1};function k(R,A){b.call(this,R,A),this.__template_pattern=null,this._disabled=Object.assign({},S),this._excluded=Object.assign({},S),A&&(this.__template_pattern=this._input.get_regexp(A.__template_pattern),this._excluded=Object.assign(this._excluded,A._excluded),this._disabled=Object.assign(this._disabled,A._disabled));var P=new b(R);this.__patterns={handlebars_comment:P.starting_with(/{{!--/).until_after(/--}}/),handlebars_unescaped:P.starting_with(/{{{/).until_after(/}}}/),handlebars:P.starting_with(/{{/).until_after(/}}/),php:P.starting_with(/<\?(?:[= ]|php)/).until_after(/\?>/),erb:P.starting_with(/<%[^%]/).until_after(/[^%]%>/),django:P.starting_with(/{%/).until_after(/%}/),django_value:P.starting_with(/{{/).until_after(/}}/),django_comment:P.starting_with(/{#/).until_after(/#}/),smarty:P.starting_with(/{(?=[^}{\s\n])/).until_after(/[^\s\n]}/),smarty_comment:P.starting_with(/{\*/).until_after(/\*}/),smarty_literal:P.starting_with(/{literal}/).until_after(/{\/literal}/)}}k.prototype=new b,k.prototype._create=function(){return new k(this._input,this)},k.prototype._update=function(){this.__set_templated_pattern()},k.prototype.disable=function(R){var A=this._create();return A._disabled[R]=!0,A._update(),A},k.prototype.read_options=function(R){var A=this._create();for(var P in S)A._disabled[P]=R.templating.indexOf(P)===-1;return A._update(),A},k.prototype.exclude=function(R){var A=this._create();return A._excluded[R]=!0,A._update(),A},k.prototype.read=function(){var R="";this._match_pattern?R=this._input.read(this._starting_pattern):R=this._input.read(this._starting_pattern,this.__template_pattern);for(var A=this._read_template();A;)this._match_pattern?A+=this._input.read(this._match_pattern):A+=this._input.readUntil(this.__template_pattern),R+=A,A=this._read_template();return this._until_after&&(R+=this._input.readUntilAfter(this._until_pattern)),R},k.prototype.__set_templated_pattern=function(){var R=[];this._disabled.php||R.push(this.__patterns.php._starting_pattern.source),this._disabled.handlebars||R.push(this.__patterns.handlebars._starting_pattern.source),this._disabled.angular||R.push(this.__patterns.handlebars._starting_pattern.source),this._disabled.erb||R.push(this.__patterns.erb._starting_pattern.source),this._disabled.django||(R.push(this.__patterns.django._starting_pattern.source),R.push(this.__patterns.django_value._starting_pattern.source),R.push(this.__patterns.django_comment._starting_pattern.source)),this._disabled.smarty||R.push(this.__patterns.smarty._starting_pattern.source),this._until_pattern&&R.push(this._until_pattern.source),this.__template_pattern=this._input.get_regexp("(?:"+R.join("|")+")")},k.prototype._read_template=function(){var R="",A=this._input.peek();if(A==="<"){var P=this._input.peek(1);!this._disabled.php&&!this._excluded.php&&P==="?"&&(R=R||this.__patterns.php.read()),!this._disabled.erb&&!this._excluded.erb&&P==="%"&&(R=R||this.__patterns.erb.read())}else A==="{"&&(!this._disabled.handlebars&&!this._excluded.handlebars&&(R=R||this.__patterns.handlebars_comment.read(),R=R||this.__patterns.handlebars_unescaped.read(),R=R||this.__patterns.handlebars.read()),this._disabled.django||(!this._excluded.django&&!this._excluded.handlebars&&(R=R||this.__patterns.django_value.read()),this._excluded.django||(R=R||this.__patterns.django_comment.read(),R=R||this.__patterns.django.read())),this._disabled.smarty||this._disabled.django&&this._disabled.handlebars&&(R=R||this.__patterns.smarty_comment.read(),R=R||this.__patterns.smarty_literal.read(),R=R||this.__patterns.smarty.read()));return R},p.exports.TemplatablePattern=k},,,,function(p,y,m){var b=m(19).Beautifier,S=m(20).Options;function k(R,A,P,M){var B=new b(R,A,P,M);return B.beautify()}p.exports=k,p.exports.defaultOptions=function(){return new S}},function(p,y,m){var b=m(20).Options,S=m(2).Output,k=m(21).Tokenizer,R=m(21).TOKEN,A=/\r\n|[\r\n]/,P=/\r\n|[\r\n]/g,M=function(X,V){this.indent_level=0,this.alignment_size=0,this.max_preserve_newlines=X.max_preserve_newlines,this.preserve_newlines=X.preserve_newlines,this._output=new S(X,V)};M.prototype.current_line_has_match=function(X){return this._output.current_line.has_match(X)},M.prototype.set_space_before_token=function(X,V){this._output.space_before_token=X,this._output.non_breaking_space=V},M.prototype.set_wrap_point=function(){this._output.set_indent(this.indent_level,this.alignment_size),this._output.set_wrap_point()},M.prototype.add_raw_token=function(X){this._output.add_raw_token(X)},M.prototype.print_preserved_newlines=function(X){var V=0;X.type!==R.TEXT&&X.previous.type!==R.TEXT&&(V=X.newlines?1:0),this.preserve_newlines&&(V=X.newlines<this.max_preserve_newlines+1?X.newlines:this.max_preserve_newlines+1);for(var se=0;se<V;se++)this.print_newline(se>0);return V!==0},M.prototype.traverse_whitespace=function(X){return X.whitespace_before||X.newlines?(this.print_preserved_newlines(X)||(this._output.space_before_token=!0),!0):!1},M.prototype.previous_token_wrapped=function(){return this._output.previous_token_wrapped},M.prototype.print_newline=function(X){this._output.add_new_line(X)},M.prototype.print_token=function(X){X.text&&(this._output.set_indent(this.indent_level,this.alignment_size),this._output.add_token(X.text))},M.prototype.indent=function(){this.indent_level++},M.prototype.deindent=function(){this.indent_level>0&&(this.indent_level--,this._output.set_indent(this.indent_level,this.alignment_size))},M.prototype.get_full_indent=function(X){return X=this.indent_level+(X||0),X<1?"":this._output.get_indent_string(X)};var B=function(X){for(var V=null,se=X.next;se.type!==R.EOF&&X.closed!==se;){if(se.type===R.ATTRIBUTE&&se.text==="type"){se.next&&se.next.type===R.EQUALS&&se.next.next&&se.next.next.type===R.VALUE&&(V=se.next.next.text);break}se=se.next}return V},N=function(X,V){var se=null,ee=null;return V.closed?(X==="script"?se="text/javascript":X==="style"&&(se="text/css"),se=B(V)||se,se.search("text/css")>-1?ee="css":se.search(/module|((text|application|dojo)\/(x-)?(javascript|ecmascript|jscript|livescript|(ld\+)?json|method|aspect))/)>-1?ee="javascript":se.search(/(text|application|dojo)\/(x-)?(html)/)>-1?ee="html":se.search(/test\/null/)>-1&&(ee="null"),ee):null};function K(X,V){return V.indexOf(X)!==-1}function H(X,V,se){this.parent=X||null,this.tag=V?V.tag_name:"",this.indent_level=se||0,this.parser_token=V||null}function W(X){this._printer=X,this._current_frame=null}W.prototype.get_parser_token=function(){return this._current_frame?this._current_frame.parser_token:null},W.prototype.record_tag=function(X){var V=new H(this._current_frame,X,this._printer.indent_level);this._current_frame=V},W.prototype._try_pop_frame=function(X){var V=null;return X&&(V=X.parser_token,this._printer.indent_level=X.indent_level,this._current_frame=X.parent),V},W.prototype._get_frame=function(X,V){for(var se=this._current_frame;se&&X.indexOf(se.tag)===-1;){if(V&&V.indexOf(se.tag)!==-1){se=null;break}se=se.parent}return se},W.prototype.try_pop=function(X,V){var se=this._get_frame([X],V);return this._try_pop_frame(se)},W.prototype.indent_to_tag=function(X){var V=this._get_frame(X);V&&(this._printer.indent_level=V.indent_level)};function ae(X,V,se,ee){this._source_text=X||"",V=V||{},this._js_beautify=se,this._css_beautify=ee,this._tag_stack=null;var J=new b(V,"html");this._options=J,this._is_wrap_attributes_force=this._options.wrap_attributes.substr(0,5)==="force",this._is_wrap_attributes_force_expand_multiline=this._options.wrap_attributes==="force-expand-multiline",this._is_wrap_attributes_force_aligned=this._options.wrap_attributes==="force-aligned",this._is_wrap_attributes_aligned_multiple=this._options.wrap_attributes==="aligned-multiple",this._is_wrap_attributes_preserve=this._options.wrap_attributes.substr(0,8)==="preserve",this._is_wrap_attributes_preserve_aligned=this._options.wrap_attributes==="preserve-aligned"}ae.prototype.beautify=function(){if(this._options.disabled)return this._source_text;var X=this._source_text,V=this._options.eol;this._options.eol==="auto"&&(V=`
`,X&&A.test(X)&&(V=X.match(A)[0])),X=X.replace(P,`
`);var se=X.match(/^[\t ]*/)[0],ee={text:"",type:""},J=new ne(this._options),le=new M(this._options,se),z=new k(X,this._options).tokenize();this._tag_stack=new W(le);for(var j=null,ie=z.next();ie.type!==R.EOF;)ie.type===R.TAG_OPEN||ie.type===R.COMMENT?(j=this._handle_tag_open(le,ie,J,ee,z),J=j):ie.type===R.ATTRIBUTE||ie.type===R.EQUALS||ie.type===R.VALUE||ie.type===R.TEXT&&!J.tag_complete?j=this._handle_inside_tag(le,ie,J,ee):ie.type===R.TAG_CLOSE?j=this._handle_tag_close(le,ie,J):ie.type===R.TEXT?j=this._handle_text(le,ie,J):ie.type===R.CONTROL_FLOW_OPEN?j=this._handle_control_flow_open(le,ie):ie.type===R.CONTROL_FLOW_CLOSE?j=this._handle_control_flow_close(le,ie):le.add_raw_token(ie),ee=j,ie=z.next();var me=le._output.get_code(V);return me},ae.prototype._handle_control_flow_open=function(X,V){var se={text:V.text,type:V.type};return X.set_space_before_token(V.newlines||V.whitespace_before!=="",!0),V.newlines?X.print_preserved_newlines(V):X.set_space_before_token(V.newlines||V.whitespace_before!=="",!0),X.print_token(V),X.indent(),se},ae.prototype._handle_control_flow_close=function(X,V){var se={text:V.text,type:V.type};return X.deindent(),V.newlines?X.print_preserved_newlines(V):X.set_space_before_token(V.newlines||V.whitespace_before!=="",!0),X.print_token(V),se},ae.prototype._handle_tag_close=function(X,V,se){var ee={text:V.text,type:V.type};return X.alignment_size=0,se.tag_complete=!0,X.set_space_before_token(V.newlines||V.whitespace_before!=="",!0),se.is_unformatted?X.add_raw_token(V):(se.tag_start_char==="<"&&(X.set_space_before_token(V.text[0]==="/",!0),this._is_wrap_attributes_force_expand_multiline&&se.has_wrapped_attrs&&X.print_newline(!1)),X.print_token(V)),se.indent_content&&!(se.is_unformatted||se.is_content_unformatted)&&(X.indent(),se.indent_content=!1),!se.is_inline_element&&!(se.is_unformatted||se.is_content_unformatted)&&X.set_wrap_point(),ee},ae.prototype._handle_inside_tag=function(X,V,se,ee){var J=se.has_wrapped_attrs,le={text:V.text,type:V.type};return X.set_space_before_token(V.newlines||V.whitespace_before!=="",!0),se.is_unformatted?X.add_raw_token(V):se.tag_start_char==="{"&&V.type===R.TEXT?X.print_preserved_newlines(V)?(V.newlines=0,X.add_raw_token(V)):X.print_token(V):(V.type===R.ATTRIBUTE?X.set_space_before_token(!0):(V.type===R.EQUALS||V.type===R.VALUE&&V.previous.type===R.EQUALS)&&X.set_space_before_token(!1),V.type===R.ATTRIBUTE&&se.tag_start_char==="<"&&((this._is_wrap_attributes_preserve||this._is_wrap_attributes_preserve_aligned)&&(X.traverse_whitespace(V),J=J||V.newlines!==0),this._is_wrap_attributes_force&&se.attr_count>=this._options.wrap_attributes_min_attrs&&(ee.type!==R.TAG_OPEN||this._is_wrap_attributes_force_expand_multiline)&&(X.print_newline(!1),J=!0)),X.print_token(V),J=J||X.previous_token_wrapped(),se.has_wrapped_attrs=J),le},ae.prototype._handle_text=function(X,V,se){var ee={text:V.text,type:"TK_CONTENT"};return se.custom_beautifier_name?this._print_custom_beatifier_text(X,V,se):se.is_unformatted||se.is_content_unformatted?X.add_raw_token(V):(X.traverse_whitespace(V),X.print_token(V)),ee},ae.prototype._print_custom_beatifier_text=function(X,V,se){var ee=this;if(V.text!==""){var J=V.text,le,z=1,j="",ie="";se.custom_beautifier_name==="javascript"&&typeof this._js_beautify=="function"?le=this._js_beautify:se.custom_beautifier_name==="css"&&typeof this._css_beautify=="function"?le=this._css_beautify:se.custom_beautifier_name==="html"&&(le=function(Dt,ht){var It=new ae(Dt,ht,ee._js_beautify,ee._css_beautify);return It.beautify()}),this._options.indent_scripts==="keep"?z=0:this._options.indent_scripts==="separate"&&(z=-X.indent_level);var me=X.get_full_indent(z);if(J=J.replace(/\n[ \t]*$/,""),se.custom_beautifier_name!=="html"&&J[0]==="<"&&J.match(/^(<!--|<!\[CDATA\[)/)){var Se=/^(<!--[^\n]*|<!\[CDATA\[)(\n?)([ \t\n]*)([\s\S]*)(-->|]]>)$/.exec(J);if(!Se){X.add_raw_token(V);return}j=me+Se[1]+`
`,J=Se[4],Se[5]&&(ie=me+Se[5]),J=J.replace(/\n[ \t]*$/,""),(Se[2]||Se[3].indexOf(`
`)!==-1)&&(Se=Se[3].match(/[ \t]+$/),Se&&(V.whitespace_before=Se[0]))}if(J)if(le){var Ie=function(){this.eol=`
`};Ie.prototype=this._options.raw_options;var He=new Ie;J=le(me+J,He)}else{var je=V.whitespace_before;je&&(J=J.replace(new RegExp(`
(`+je+")?","g"),`
`)),J=me+J.replace(/\n/g,`
`+me)}j&&(J?J=j+J+`
`+ie:J=j+ie),X.print_newline(!1),J&&(V.text=J,V.whitespace_before="",V.newlines=0,X.add_raw_token(V),X.print_newline(!0))}},ae.prototype._handle_tag_open=function(X,V,se,ee,J){var le=this._get_tag_open_token(V);if((se.is_unformatted||se.is_content_unformatted)&&!se.is_empty_element&&V.type===R.TAG_OPEN&&!le.is_start_tag?(X.add_raw_token(V),le.start_tag_token=this._tag_stack.try_pop(le.tag_name)):(X.traverse_whitespace(V),this._set_tag_position(X,V,le,se,ee),le.is_inline_element||X.set_wrap_point(),X.print_token(V)),le.is_start_tag&&this._is_wrap_attributes_force){var z=0,j;do j=J.peek(z),j.type===R.ATTRIBUTE&&(le.attr_count+=1),z+=1;while(j.type!==R.EOF&&j.type!==R.TAG_CLOSE)}return(this._is_wrap_attributes_force_aligned||this._is_wrap_attributes_aligned_multiple||this._is_wrap_attributes_preserve_aligned)&&(le.alignment_size=V.text.length+1),!le.tag_complete&&!le.is_unformatted&&(X.alignment_size=le.alignment_size),le};var ne=function(X,V,se){if(this.parent=V||null,this.text="",this.type="TK_TAG_OPEN",this.tag_name="",this.is_inline_element=!1,this.is_unformatted=!1,this.is_content_unformatted=!1,this.is_empty_element=!1,this.is_start_tag=!1,this.is_end_tag=!1,this.indent_content=!1,this.multiline_content=!1,this.custom_beautifier_name=null,this.start_tag_token=null,this.attr_count=0,this.has_wrapped_attrs=!1,this.alignment_size=0,this.tag_complete=!1,this.tag_start_char="",this.tag_check="",!se)this.tag_complete=!0;else{var ee;this.tag_start_char=se.text[0],this.text=se.text,this.tag_start_char==="<"?(ee=se.text.match(/^<([^\s>]*)/),this.tag_check=ee?ee[1]:""):(ee=se.text.match(/^{{~?(?:[\^]|#\*?)?([^\s}]+)/),this.tag_check=ee?ee[1]:"",(se.text.startsWith("{{#>")||se.text.startsWith("{{~#>"))&&this.tag_check[0]===">"&&(this.tag_check===">"&&se.next!==null?this.tag_check=se.next.text.split(" ")[0]:this.tag_check=se.text.split(">")[1])),this.tag_check=this.tag_check.toLowerCase(),se.type===R.COMMENT&&(this.tag_complete=!0),this.is_start_tag=this.tag_check.charAt(0)!=="/",this.tag_name=this.is_start_tag?this.tag_check:this.tag_check.substr(1),this.is_end_tag=!this.is_start_tag||se.closed&&se.closed.text==="/>";var J=2;this.tag_start_char==="{"&&this.text.length>=3&&this.text.charAt(2)==="~"&&(J=3),this.is_end_tag=this.is_end_tag||this.tag_start_char==="{"&&(!X.indent_handlebars||this.text.length<3||/[^#\^]/.test(this.text.charAt(J)))}};ae.prototype._get_tag_open_token=function(X){var V=new ne(this._options,this._tag_stack.get_parser_token(),X);return V.alignment_size=this._options.wrap_attributes_indent_size,V.is_end_tag=V.is_end_tag||K(V.tag_check,this._options.void_elements),V.is_empty_element=V.tag_complete||V.is_start_tag&&V.is_end_tag,V.is_unformatted=!V.tag_complete&&K(V.tag_check,this._options.unformatted),V.is_content_unformatted=!V.is_empty_element&&K(V.tag_check,this._options.content_unformatted),V.is_inline_element=K(V.tag_name,this._options.inline)||this._options.inline_custom_elements&&V.tag_name.includes("-")||V.tag_start_char==="{",V},ae.prototype._set_tag_position=function(X,V,se,ee,J){if(se.is_empty_element||(se.is_end_tag?se.start_tag_token=this._tag_stack.try_pop(se.tag_name):(this._do_optional_end_element(se)&&(se.is_inline_element||X.print_newline(!1)),this._tag_stack.record_tag(se),(se.tag_name==="script"||se.tag_name==="style")&&!(se.is_unformatted||se.is_content_unformatted)&&(se.custom_beautifier_name=N(se.tag_check,V)))),K(se.tag_check,this._options.extra_liners)&&(X.print_newline(!1),X._output.just_added_blankline()||X.print_newline(!0)),se.is_empty_element){if(se.tag_start_char==="{"&&se.tag_check==="else"){this._tag_stack.indent_to_tag(["if","unless","each"]),se.indent_content=!0;var le=X.current_line_has_match(/{{#if/);le||X.print_newline(!1)}se.tag_name==="!--"&&J.type===R.TAG_CLOSE&&ee.is_end_tag&&se.text.indexOf(`
`)===-1||(se.is_inline_element||se.is_unformatted||X.print_newline(!1),this._calcluate_parent_multiline(X,se))}else if(se.is_end_tag){var z=!1;z=se.start_tag_token&&se.start_tag_token.multiline_content,z=z||!se.is_inline_element&&!(ee.is_inline_element||ee.is_unformatted)&&!(J.type===R.TAG_CLOSE&&se.start_tag_token===ee)&&J.type!=="TK_CONTENT",(se.is_content_unformatted||se.is_unformatted)&&(z=!1),z&&X.print_newline(!1)}else se.indent_content=!se.custom_beautifier_name,se.tag_start_char==="<"&&(se.tag_name==="html"?se.indent_content=this._options.indent_inner_html:se.tag_name==="head"?se.indent_content=this._options.indent_head_inner_html:se.tag_name==="body"&&(se.indent_content=this._options.indent_body_inner_html)),!(se.is_inline_element||se.is_unformatted)&&(J.type!=="TK_CONTENT"||se.is_content_unformatted)&&X.print_newline(!1),this._calcluate_parent_multiline(X,se)},ae.prototype._calcluate_parent_multiline=function(X,V){V.parent&&X._output.just_added_newline()&&!((V.is_inline_element||V.is_unformatted)&&V.parent.is_inline_element)&&(V.parent.multiline_content=!0)};var oe=["address","article","aside","blockquote","details","div","dl","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hr","main","menu","nav","ol","p","pre","section","table","ul"],q=["a","audio","del","ins","map","noscript","video"];ae.prototype._do_optional_end_element=function(X){var V=null;if(!(X.is_empty_element||!X.is_start_tag||!X.parent)){if(X.tag_name==="body")V=V||this._tag_stack.try_pop("head");else if(X.tag_name==="li")V=V||this._tag_stack.try_pop("li",["ol","ul","menu"]);else if(X.tag_name==="dd"||X.tag_name==="dt")V=V||this._tag_stack.try_pop("dt",["dl"]),V=V||this._tag_stack.try_pop("dd",["dl"]);else if(X.parent.tag_name==="p"&&oe.indexOf(X.tag_name)!==-1){var se=X.parent.parent;(!se||q.indexOf(se.tag_name)===-1)&&(V=V||this._tag_stack.try_pop("p"))}else X.tag_name==="rp"||X.tag_name==="rt"?(V=V||this._tag_stack.try_pop("rt",["ruby","rtc"]),V=V||this._tag_stack.try_pop("rp",["ruby","rtc"])):X.tag_name==="optgroup"?V=V||this._tag_stack.try_pop("optgroup",["select"]):X.tag_name==="option"?V=V||this._tag_stack.try_pop("option",["select","datalist","optgroup"]):X.tag_name==="colgroup"?V=V||this._tag_stack.try_pop("caption",["table"]):X.tag_name==="thead"?(V=V||this._tag_stack.try_pop("caption",["table"]),V=V||this._tag_stack.try_pop("colgroup",["table"])):X.tag_name==="tbody"||X.tag_name==="tfoot"?(V=V||this._tag_stack.try_pop("caption",["table"]),V=V||this._tag_stack.try_pop("colgroup",["table"]),V=V||this._tag_stack.try_pop("thead",["table"]),V=V||this._tag_stack.try_pop("tbody",["table"])):X.tag_name==="tr"?(V=V||this._tag_stack.try_pop("caption",["table"]),V=V||this._tag_stack.try_pop("colgroup",["table"]),V=V||this._tag_stack.try_pop("tr",["table","thead","tbody","tfoot"])):(X.tag_name==="th"||X.tag_name==="td")&&(V=V||this._tag_stack.try_pop("td",["table","thead","tbody","tfoot","tr"]),V=V||this._tag_stack.try_pop("th",["table","thead","tbody","tfoot","tr"]));return X.parent=this._tag_stack.get_parser_token(),V}},p.exports.Beautifier=ae},function(p,y,m){var b=m(6).Options;function S(k){b.call(this,k,"html"),this.templating.length===1&&this.templating[0]==="auto"&&(this.templating=["django","erb","handlebars","php"]),this.indent_inner_html=this._get_boolean("indent_inner_html"),this.indent_body_inner_html=this._get_boolean("indent_body_inner_html",!0),this.indent_head_inner_html=this._get_boolean("indent_head_inner_html",!0),this.indent_handlebars=this._get_boolean("indent_handlebars",!0),this.wrap_attributes=this._get_selection("wrap_attributes",["auto","force","force-aligned","force-expand-multiline","aligned-multiple","preserve","preserve-aligned"]),this.wrap_attributes_min_attrs=this._get_number("wrap_attributes_min_attrs",2),this.wrap_attributes_indent_size=this._get_number("wrap_attributes_indent_size",this.indent_size),this.extra_liners=this._get_array("extra_liners",["head","body","/html"]),this.inline=this._get_array("inline",["a","abbr","area","audio","b","bdi","bdo","br","button","canvas","cite","code","data","datalist","del","dfn","em","embed","i","iframe","img","input","ins","kbd","keygen","label","map","mark","math","meter","noscript","object","output","progress","q","ruby","s","samp","select","small","span","strong","sub","sup","svg","template","textarea","time","u","var","video","wbr","text","acronym","big","strike","tt"]),this.inline_custom_elements=this._get_boolean("inline_custom_elements",!0),this.void_elements=this._get_array("void_elements",["area","base","br","col","embed","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr","!doctype","?xml","basefont","isindex"]),this.unformatted=this._get_array("unformatted",[]),this.content_unformatted=this._get_array("content_unformatted",["pre","textarea"]),this.unformatted_content_delimiter=this._get_characters("unformatted_content_delimiter"),this.indent_scripts=this._get_selection("indent_scripts",["normal","keep","separate"])}S.prototype=new b,p.exports.Options=S},function(p,y,m){var b=m(9).Tokenizer,S=m(9).TOKEN,k=m(13).Directives,R=m(14).TemplatablePattern,A=m(12).Pattern,P={TAG_OPEN:"TK_TAG_OPEN",TAG_CLOSE:"TK_TAG_CLOSE",CONTROL_FLOW_OPEN:"TK_CONTROL_FLOW_OPEN",CONTROL_FLOW_CLOSE:"TK_CONTROL_FLOW_CLOSE",ATTRIBUTE:"TK_ATTRIBUTE",EQUALS:"TK_EQUALS",VALUE:"TK_VALUE",COMMENT:"TK_COMMENT",TEXT:"TK_TEXT",UNKNOWN:"TK_UNKNOWN",START:S.START,RAW:S.RAW,EOF:S.EOF},M=new k(/<\!--/,/-->/),B=function(N,K){b.call(this,N,K),this._current_tag_name="";var H=new R(this._input).read_options(this._options),W=new A(this._input);if(this.__patterns={word:H.until(/[\n\r\t <]/),word_control_flow_close_excluded:H.until(/[\n\r\t <}]/),single_quote:H.until_after(/'/),double_quote:H.until_after(/"/),attribute:H.until(/[\n\r\t =>]|\/>/),element_name:H.until(/[\n\r\t >\/]/),angular_control_flow_start:W.matching(/\@[a-zA-Z]+[^({]*[({]/),handlebars_comment:W.starting_with(/{{!--/).until_after(/--}}/),handlebars:W.starting_with(/{{/).until_after(/}}/),handlebars_open:W.until(/[\n\r\t }]/),handlebars_raw_close:W.until(/}}/),comment:W.starting_with(/<!--/).until_after(/-->/),cdata:W.starting_with(/<!\[CDATA\[/).until_after(/]]>/),conditional_comment:W.starting_with(/<!\[/).until_after(/]>/),processing:W.starting_with(/<\?/).until_after(/\?>/)},this._options.indent_handlebars&&(this.__patterns.word=this.__patterns.word.exclude("handlebars"),this.__patterns.word_control_flow_close_excluded=this.__patterns.word_control_flow_close_excluded.exclude("handlebars")),this._unformatted_content_delimiter=null,this._options.unformatted_content_delimiter){var ae=this._input.get_literal_regexp(this._options.unformatted_content_delimiter);this.__patterns.unformatted_content_delimiter=W.matching(ae).until_after(ae)}};B.prototype=new b,B.prototype._is_comment=function(N){return!1},B.prototype._is_opening=function(N){return N.type===P.TAG_OPEN||N.type===P.CONTROL_FLOW_OPEN},B.prototype._is_closing=function(N,K){return N.type===P.TAG_CLOSE&&K&&((N.text===">"||N.text==="/>")&&K.text[0]==="<"||N.text==="}}"&&K.text[0]==="{"&&K.text[1]==="{")||N.type===P.CONTROL_FLOW_CLOSE&&N.text==="}"&&K.text.endsWith("{")},B.prototype._reset=function(){this._current_tag_name=""},B.prototype._get_next_token=function(N,K){var H=null;this._readWhitespace();var W=this._input.peek();return W===null?this._create_token(P.EOF,""):(H=H||this._read_open_handlebars(W,K),H=H||this._read_attribute(W,N,K),H=H||this._read_close(W,K),H=H||this._read_script_and_style(W,N),H=H||this._read_control_flows(W,K),H=H||this._read_raw_content(W,N,K),H=H||this._read_content_word(W,K),H=H||this._read_comment_or_cdata(W),H=H||this._read_processing(W),H=H||this._read_open(W,K),H=H||this._create_token(P.UNKNOWN,this._input.next()),H)},B.prototype._read_comment_or_cdata=function(N){var K=null,H=null,W=null;if(N==="<"){var ae=this._input.peek(1);ae==="!"&&(H=this.__patterns.comment.read(),H?(W=M.get_directives(H),W&&W.ignore==="start"&&(H+=M.readIgnored(this._input))):H=this.__patterns.cdata.read()),H&&(K=this._create_token(P.COMMENT,H),K.directives=W)}return K},B.prototype._read_processing=function(N){var K=null,H=null,W=null;if(N==="<"){var ae=this._input.peek(1);(ae==="!"||ae==="?")&&(H=this.__patterns.conditional_comment.read(),H=H||this.__patterns.processing.read()),H&&(K=this._create_token(P.COMMENT,H),K.directives=W)}return K},B.prototype._read_open=function(N,K){var H=null,W=null;return(!K||K.type===P.CONTROL_FLOW_OPEN)&&N==="<"&&(H=this._input.next(),this._input.peek()==="/"&&(H+=this._input.next()),H+=this.__patterns.element_name.read(),W=this._create_token(P.TAG_OPEN,H)),W},B.prototype._read_open_handlebars=function(N,K){var H=null,W=null;return(!K||K.type===P.CONTROL_FLOW_OPEN)&&(this._options.templating.includes("angular")||this._options.indent_handlebars)&&N==="{"&&this._input.peek(1)==="{"&&(this._options.indent_handlebars&&this._input.peek(2)==="!"?(H=this.__patterns.handlebars_comment.read(),H=H||this.__patterns.handlebars.read(),W=this._create_token(P.COMMENT,H)):(H=this.__patterns.handlebars_open.read(),W=this._create_token(P.TAG_OPEN,H))),W},B.prototype._read_control_flows=function(N,K){var H="",W=null;if(!this._options.templating.includes("angular"))return W;if(N==="@"){if(H=this.__patterns.angular_control_flow_start.read(),H==="")return W;for(var ae=H.endsWith("(")?1:0,ne=0;!(H.endsWith("{")&&ae===ne);){var oe=this._input.next();if(oe===null)break;oe==="("?ae++:oe===")"&&ne++,H+=oe}W=this._create_token(P.CONTROL_FLOW_OPEN,H)}else N==="}"&&K&&K.type===P.CONTROL_FLOW_OPEN&&(H=this._input.next(),W=this._create_token(P.CONTROL_FLOW_CLOSE,H));return W},B.prototype._read_close=function(N,K){var H=null,W=null;return K&&K.type===P.TAG_OPEN&&(K.text[0]==="<"&&(N===">"||N==="/"&&this._input.peek(1)===">")?(H=this._input.next(),N==="/"&&(H+=this._input.next()),W=this._create_token(P.TAG_CLOSE,H)):K.text[0]==="{"&&N==="}"&&this._input.peek(1)==="}"&&(this._input.next(),this._input.next(),W=this._create_token(P.TAG_CLOSE,"}}"))),W},B.prototype._read_attribute=function(N,K,H){var W=null,ae="";if(H&&H.text[0]==="<")if(N==="=")W=this._create_token(P.EQUALS,this._input.next());else if(N==='"'||N==="'"){var ne=this._input.next();N==='"'?ne+=this.__patterns.double_quote.read():ne+=this.__patterns.single_quote.read(),W=this._create_token(P.VALUE,ne)}else ae=this.__patterns.attribute.read(),ae&&(K.type===P.EQUALS?W=this._create_token(P.VALUE,ae):W=this._create_token(P.ATTRIBUTE,ae));return W},B.prototype._is_content_unformatted=function(N){return this._options.void_elements.indexOf(N)===-1&&(this._options.content_unformatted.indexOf(N)!==-1||this._options.unformatted.indexOf(N)!==-1)},B.prototype._read_raw_content=function(N,K,H){var W="";if(H&&H.text[0]==="{")W=this.__patterns.handlebars_raw_close.read();else if(K.type===P.TAG_CLOSE&&K.opened.text[0]==="<"&&K.text[0]!=="/"){var ae=K.opened.text.substr(1).toLowerCase();this._is_content_unformatted(ae)&&(W=this._input.readUntil(new RegExp("</"+ae+"[\\n\\r\\t ]*?>","ig")))}return W?this._create_token(P.TEXT,W):null},B.prototype._read_script_and_style=function(N,K){if(K.type===P.TAG_CLOSE&&K.opened.text[0]==="<"&&K.text[0]!=="/"){var H=K.opened.text.substr(1).toLowerCase();if(H==="script"||H==="style"){var W=this._read_comment_or_cdata(N);if(W)return W.type=P.TEXT,W;var ae=this._input.readUntil(new RegExp("</"+H+"[\\n\\r\\t ]*?>","ig"));if(ae)return this._create_token(P.TEXT,ae)}}return null},B.prototype._read_content_word=function(N,K){var H="";return this._options.unformatted_content_delimiter&&N===this._options.unformatted_content_delimiter[0]&&(H=this.__patterns.unformatted_content_delimiter.read()),H||(H=K&&K.type===P.CONTROL_FLOW_OPEN?this.__patterns.word_control_flow_close_excluded.read():this.__patterns.word.read()),H?this._create_token(P.TEXT,H):null},p.exports.Tokenizer=B,p.exports.TOKEN=P}],u={};function a(p){var y=u[p];if(y!==void 0)return y.exports;var m=u[p]={exports:{}};return h[p](m,m.exports,a),m.exports}var x=a(18);l=x})();var c=l;if(1)r=[e,e(58553),e(87804)],i=function(h){var u=e(58553),a=e(87804);return{html_beautify:function(x,p){return c(x,p,u.js_beautify,a.css_beautify)}}}.apply(v,r),i!==void 0&&(d.exports=i);else var f,o})()},58553:function(d,v){var e,r;(function(){var i;(function(){"use strict";var c=[function(u,a,x){var p=x(1).Beautifier,y=x(5).Options;function m(b,S){var k=new p(b,S);return k.beautify()}u.exports=m,u.exports.defaultOptions=function(){return new y}},function(u,a,x){var p=x(2).Output,y=x(3).Token,m=x(4),b=x(5).Options,S=x(7).Tokenizer,k=x(7).line_starters,R=x(7).positionable_operators,A=x(7).TOKEN;function P(j,ie){return ie.indexOf(j)!==-1}function M(j){return j.replace(/^\s+/g,"")}function B(j){for(var ie={},me=0;me<j.length;me++)ie[j[me].replace(/-/g,"_")]=j[me];return ie}function N(j,ie){return j&&j.type===A.RESERVED&&j.text===ie}function K(j,ie){return j&&j.type===A.RESERVED&&P(j.text,ie)}var H=["case","return","do","if","throw","else","await","break","continue","async"],W=["before-newline","after-newline","preserve-newline"],ae=B(W),ne=[ae.before_newline,ae.preserve_newline],oe={BlockStatement:"BlockStatement",Statement:"Statement",ObjectLiteral:"ObjectLiteral",ArrayLiteral:"ArrayLiteral",ForInitializer:"ForInitializer",Conditional:"Conditional",Expression:"Expression"};function q(j,ie){ie.multiline_frame||ie.mode===oe.ForInitializer||ie.mode===oe.Conditional||j.remove_indent(ie.start_line_index)}function X(j){j=j.replace(m.allLineBreaks,`
`);for(var ie=[],me=j.indexOf(`
`);me!==-1;)ie.push(j.substring(0,me)),j=j.substring(me+1),me=j.indexOf(`
`);return j.length&&ie.push(j),ie}function V(j){return j===oe.ArrayLiteral}function se(j){return P(j,[oe.Expression,oe.ForInitializer,oe.Conditional])}function ee(j,ie){for(var me=0;me<j.length;me++){var Se=j[me].trim();if(Se.charAt(0)!==ie)return!1}return!0}function J(j,ie){for(var me=0,Se=j.length,Ie;me<Se;me++)if(Ie=j[me],Ie&&Ie.indexOf(ie)!==0)return!1;return!0}function le(j,ie){ie=ie||{},this._source_text=j||"",this._output=null,this._tokens=null,this._last_last_text=null,this._flags=null,this._previous_flags=null,this._flag_store=null,this._options=new b(ie)}le.prototype.create_flags=function(j,ie){var me=0;j&&(me=j.indentation_level,!this._output.just_added_newline()&&j.line_indent_level>me&&(me=j.line_indent_level));var Se={mode:ie,parent:j,last_token:j?j.last_token:new y(A.START_BLOCK,""),last_word:j?j.last_word:"",declaration_statement:!1,declaration_assignment:!1,multiline_frame:!1,inline_frame:!1,if_block:!1,else_block:!1,class_start_block:!1,do_block:!1,do_while:!1,import_block:!1,in_case_statement:!1,in_case:!1,case_body:!1,case_block:!1,indentation_level:me,alignment:0,line_indent_level:j?j.line_indent_level:me,start_line_index:this._output.get_line_number(),ternary_depth:0};return Se},le.prototype._reset=function(j){var ie=j.match(/^[\t ]*/)[0];this._last_last_text="",this._output=new p(this._options,ie),this._output.raw=this._options.test_output_raw,this._flag_store=[],this.set_mode(oe.BlockStatement);var me=new S(j,this._options);return this._tokens=me.tokenize(),j},le.prototype.beautify=function(){if(this._options.disabled)return this._source_text;var j,ie=this._reset(this._source_text),me=this._options.eol;this._options.eol==="auto"&&(me=`
`,ie&&m.lineBreak.test(ie||"")&&(me=ie.match(m.lineBreak)[0]));for(var Se=this._tokens.next();Se;)this.handle_token(Se),this._last_last_text=this._flags.last_token.text,this._flags.last_token=Se,Se=this._tokens.next();return j=this._output.get_code(me),j},le.prototype.handle_token=function(j,ie){j.type===A.START_EXPR?this.handle_start_expr(j):j.type===A.END_EXPR?this.handle_end_expr(j):j.type===A.START_BLOCK?this.handle_start_block(j):j.type===A.END_BLOCK?this.handle_end_block(j):j.type===A.WORD?this.handle_word(j):j.type===A.RESERVED?this.handle_word(j):j.type===A.SEMICOLON?this.handle_semicolon(j):j.type===A.STRING?this.handle_string(j):j.type===A.EQUALS?this.handle_equals(j):j.type===A.OPERATOR?this.handle_operator(j):j.type===A.COMMA?this.handle_comma(j):j.type===A.BLOCK_COMMENT?this.handle_block_comment(j,ie):j.type===A.COMMENT?this.handle_comment(j,ie):j.type===A.DOT?this.handle_dot(j):j.type===A.EOF?this.handle_eof(j):j.type===A.UNKNOWN?this.handle_unknown(j,ie):this.handle_unknown(j,ie)},le.prototype.handle_whitespace_and_comments=function(j,ie){var me=j.newlines,Se=this._options.keep_array_indentation&&V(this._flags.mode);if(j.comments_before)for(var Ie=j.comments_before.next();Ie;)this.handle_whitespace_and_comments(Ie,ie),this.handle_token(Ie,ie),Ie=j.comments_before.next();if(Se)for(var He=0;He<me;He+=1)this.print_newline(He>0,ie);else if(this._options.max_preserve_newlines&&me>this._options.max_preserve_newlines&&(me=this._options.max_preserve_newlines),this._options.preserve_newlines&&me>1){this.print_newline(!1,ie);for(var je=1;je<me;je+=1)this.print_newline(!0,ie)}};var z=["async","break","continue","return","throw","yield"];le.prototype.allow_wrap_or_preserved_newline=function(j,ie){if(ie=ie===void 0?!1:ie,!this._output.just_added_newline()){var me=this._options.preserve_newlines&&j.newlines||ie,Se=P(this._flags.last_token.text,R)||P(j.text,R);if(Se){var Ie=P(this._flags.last_token.text,R)&&P(this._options.operator_position,ne)||P(j.text,R);me=me&&Ie}if(me)this.print_newline(!1,!0);else if(this._options.wrap_line_length){if(K(this._flags.last_token,z))return;this._output.set_wrap_point()}}},le.prototype.print_newline=function(j,ie){if(!ie&&this._flags.last_token.text!==";"&&this._flags.last_token.text!==","&&this._flags.last_token.text!=="="&&(this._flags.last_token.type!==A.OPERATOR||this._flags.last_token.text==="--"||this._flags.last_token.text==="++"))for(var me=this._tokens.peek();this._flags.mode===oe.Statement&&!(this._flags.if_block&&N(me,"else"))&&!this._flags.do_block;)this.restore_mode();this._output.add_new_line(j)&&(this._flags.multiline_frame=!0)},le.prototype.print_token_line_indentation=function(j){this._output.just_added_newline()&&(this._options.keep_array_indentation&&j.newlines&&(j.text==="["||V(this._flags.mode))?(this._output.current_line.set_indent(-1),this._output.current_line.push(j.whitespace_before),this._output.space_before_token=!1):this._output.set_indent(this._flags.indentation_level,this._flags.alignment)&&(this._flags.line_indent_level=this._flags.indentation_level))},le.prototype.print_token=function(j){if(this._output.raw){this._output.add_raw_token(j);return}if(this._options.comma_first&&j.previous&&j.previous.type===A.COMMA&&this._output.just_added_newline()&&this._output.previous_line.last()===","){var ie=this._output.previous_line.pop();this._output.previous_line.is_empty()&&(this._output.previous_line.push(ie),this._output.trim(!0),this._output.current_line.pop(),this._output.trim()),this.print_token_line_indentation(j),this._output.add_token(","),this._output.space_before_token=!0}this.print_token_line_indentation(j),this._output.non_breaking_space=!0,this._output.add_token(j.text),this._output.previous_token_wrapped&&(this._flags.multiline_frame=!0)},le.prototype.indent=function(){this._flags.indentation_level+=1,this._output.set_indent(this._flags.indentation_level,this._flags.alignment)},le.prototype.deindent=function(){this._flags.indentation_level>0&&(!this._flags.parent||this._flags.indentation_level>this._flags.parent.indentation_level)&&(this._flags.indentation_level-=1,this._output.set_indent(this._flags.indentation_level,this._flags.alignment))},le.prototype.set_mode=function(j){this._flags?(this._flag_store.push(this._flags),this._previous_flags=this._flags):this._previous_flags=this.create_flags(null,j),this._flags=this.create_flags(this._previous_flags,j),this._output.set_indent(this._flags.indentation_level,this._flags.alignment)},le.prototype.restore_mode=function(){this._flag_store.length>0&&(this._previous_flags=this._flags,this._flags=this._flag_store.pop(),this._previous_flags.mode===oe.Statement&&q(this._output,this._previous_flags),this._output.set_indent(this._flags.indentation_level,this._flags.alignment))},le.prototype.start_of_object_property=function(){return this._flags.parent.mode===oe.ObjectLiteral&&this._flags.mode===oe.Statement&&(this._flags.last_token.text===":"&&this._flags.ternary_depth===0||K(this._flags.last_token,["get","set"]))},le.prototype.start_of_statement=function(j){var ie=!1;return ie=ie||K(this._flags.last_token,["var","let","const"])&&j.type===A.WORD,ie=ie||N(this._flags.last_token,"do"),ie=ie||!(this._flags.parent.mode===oe.ObjectLiteral&&this._flags.mode===oe.Statement)&&K(this._flags.last_token,z)&&!j.newlines,ie=ie||N(this._flags.last_token,"else")&&!(N(j,"if")&&!j.comments_before),ie=ie||this._flags.last_token.type===A.END_EXPR&&(this._previous_flags.mode===oe.ForInitializer||this._previous_flags.mode===oe.Conditional),ie=ie||this._flags.last_token.type===A.WORD&&this._flags.mode===oe.BlockStatement&&!this._flags.in_case&&!(j.text==="--"||j.text==="++")&&this._last_last_text!=="function"&&j.type!==A.WORD&&j.type!==A.RESERVED,ie=ie||this._flags.mode===oe.ObjectLiteral&&(this._flags.last_token.text===":"&&this._flags.ternary_depth===0||K(this._flags.last_token,["get","set"])),ie?(this.set_mode(oe.Statement),this.indent(),this.handle_whitespace_and_comments(j,!0),this.start_of_object_property()||this.allow_wrap_or_preserved_newline(j,K(j,["do","for","if","while"])),!0):!1},le.prototype.handle_start_expr=function(j){this.start_of_statement(j)||this.handle_whitespace_and_comments(j);var ie=oe.Expression;if(j.text==="["){if(this._flags.last_token.type===A.WORD||this._flags.last_token.text===")"){K(this._flags.last_token,k)&&(this._output.space_before_token=!0),this.print_token(j),this.set_mode(ie),this.indent(),this._options.space_in_paren&&(this._output.space_before_token=!0);return}ie=oe.ArrayLiteral,V(this._flags.mode)&&(this._flags.last_token.text==="["||this._flags.last_token.text===","&&(this._last_last_text==="]"||this._last_last_text==="}"))&&(this._options.keep_array_indentation||this.print_newline()),P(this._flags.last_token.type,[A.START_EXPR,A.END_EXPR,A.WORD,A.OPERATOR,A.DOT])||(this._output.space_before_token=!0)}else{if(this._flags.last_token.type===A.RESERVED)this._flags.last_token.text==="for"?(this._output.space_before_token=this._options.space_before_conditional,ie=oe.ForInitializer):P(this._flags.last_token.text,["if","while","switch"])?(this._output.space_before_token=this._options.space_before_conditional,ie=oe.Conditional):P(this._flags.last_word,["await","async"])?this._output.space_before_token=!0:this._flags.last_token.text==="import"&&j.whitespace_before===""?this._output.space_before_token=!1:(P(this._flags.last_token.text,k)||this._flags.last_token.text==="catch")&&(this._output.space_before_token=!0);else if(this._flags.last_token.type===A.EQUALS||this._flags.last_token.type===A.OPERATOR)this.start_of_object_property()||this.allow_wrap_or_preserved_newline(j);else if(this._flags.last_token.type===A.WORD){this._output.space_before_token=!1;var me=this._tokens.peek(-3);if(this._options.space_after_named_function&&me){var Se=this._tokens.peek(-4);K(me,["async","function"])||me.text==="*"&&K(Se,["async","function"])?this._output.space_before_token=!0:this._flags.mode===oe.ObjectLiteral?(me.text==="{"||me.text===","||me.text==="*"&&(Se.text==="{"||Se.text===","))&&(this._output.space_before_token=!0):this._flags.parent&&this._flags.parent.class_start_block&&(this._output.space_before_token=!0)}}else this.allow_wrap_or_preserved_newline(j);(this._flags.last_token.type===A.RESERVED&&(this._flags.last_word==="function"||this._flags.last_word==="typeof")||this._flags.last_token.text==="*"&&(P(this._last_last_text,["function","yield"])||this._flags.mode===oe.ObjectLiteral&&P(this._last_last_text,["{",","])))&&(this._output.space_before_token=this._options.space_after_anon_function)}this._flags.last_token.text===";"||this._flags.last_token.type===A.START_BLOCK?this.print_newline():(this._flags.last_token.type===A.END_EXPR||this._flags.last_token.type===A.START_EXPR||this._flags.last_token.type===A.END_BLOCK||this._flags.last_token.text==="."||this._flags.last_token.type===A.COMMA)&&this.allow_wrap_or_preserved_newline(j,j.newlines),this.print_token(j),this.set_mode(ie),this._options.space_in_paren&&(this._output.space_before_token=!0),this.indent()},le.prototype.handle_end_expr=function(j){for(;this._flags.mode===oe.Statement;)this.restore_mode();this.handle_whitespace_and_comments(j),this._flags.multiline_frame&&this.allow_wrap_or_preserved_newline(j,j.text==="]"&&V(this._flags.mode)&&!this._options.keep_array_indentation),this._options.space_in_paren&&(this._flags.last_token.type===A.START_EXPR&&!this._options.space_in_empty_paren?(this._output.trim(),this._output.space_before_token=!1):this._output.space_before_token=!0),this.deindent(),this.print_token(j),this.restore_mode(),q(this._output,this._previous_flags),this._flags.do_while&&this._previous_flags.mode===oe.Conditional&&(this._previous_flags.mode=oe.Expression,this._flags.do_block=!1,this._flags.do_while=!1)},le.prototype.handle_start_block=function(j){this.handle_whitespace_and_comments(j);var ie=this._tokens.peek(),me=this._tokens.peek(1);this._flags.last_word==="switch"&&this._flags.last_token.type===A.END_EXPR?(this.set_mode(oe.BlockStatement),this._flags.in_case_statement=!0):this._flags.case_body?this.set_mode(oe.BlockStatement):me&&(P(me.text,[":",","])&&P(ie.type,[A.STRING,A.WORD,A.RESERVED])||P(ie.text,["get","set","..."])&&P(me.type,[A.WORD,A.RESERVED]))?P(this._last_last_text,["class","interface"])&&!P(me.text,[":",","])?this.set_mode(oe.BlockStatement):this.set_mode(oe.ObjectLiteral):this._flags.last_token.type===A.OPERATOR&&this._flags.last_token.text==="=>"?this.set_mode(oe.BlockStatement):P(this._flags.last_token.type,[A.EQUALS,A.START_EXPR,A.COMMA,A.OPERATOR])||K(this._flags.last_token,["return","throw","import","default"])?this.set_mode(oe.ObjectLiteral):this.set_mode(oe.BlockStatement),this._flags.last_token&&K(this._flags.last_token.previous,["class","extends"])&&(this._flags.class_start_block=!0);var Se=!ie.comments_before&&ie.text==="}",Ie=Se&&this._flags.last_word==="function"&&this._flags.last_token.type===A.END_EXPR;if(this._options.brace_preserve_inline){var He=0,je=null;this._flags.inline_frame=!0;do if(He+=1,je=this._tokens.peek(He-1),je.newlines){this._flags.inline_frame=!1;break}while(je.type!==A.EOF&&!(je.type===A.END_BLOCK&&je.opened===j))}(this._options.brace_style==="expand"||this._options.brace_style==="none"&&j.newlines)&&!this._flags.inline_frame?this._flags.last_token.type!==A.OPERATOR&&(Ie||this._flags.last_token.type===A.EQUALS||K(this._flags.last_token,H)&&this._flags.last_token.text!=="else")?this._output.space_before_token=!0:this.print_newline(!1,!0):(V(this._previous_flags.mode)&&(this._flags.last_token.type===A.START_EXPR||this._flags.last_token.type===A.COMMA)&&((this._flags.last_token.type===A.COMMA||this._options.space_in_paren)&&(this._output.space_before_token=!0),(this._flags.last_token.type===A.COMMA||this._flags.last_token.type===A.START_EXPR&&this._flags.inline_frame)&&(this.allow_wrap_or_preserved_newline(j),this._previous_flags.multiline_frame=this._previous_flags.multiline_frame||this._flags.multiline_frame,this._flags.multiline_frame=!1)),this._flags.last_token.type!==A.OPERATOR&&this._flags.last_token.type!==A.START_EXPR&&(P(this._flags.last_token.type,[A.START_BLOCK,A.SEMICOLON])&&!this._flags.inline_frame?this.print_newline():this._output.space_before_token=!0)),this.print_token(j),this.indent(),!Se&&!(this._options.brace_preserve_inline&&this._flags.inline_frame)&&this.print_newline()},le.prototype.handle_end_block=function(j){for(this.handle_whitespace_and_comments(j);this._flags.mode===oe.Statement;)this.restore_mode();var ie=this._flags.last_token.type===A.START_BLOCK;this._flags.inline_frame&&!ie?this._output.space_before_token=!0:this._options.brace_style==="expand"?ie||this.print_newline():ie||(V(this._flags.mode)&&this._options.keep_array_indentation?(this._options.keep_array_indentation=!1,this.print_newline(),this._options.keep_array_indentation=!0):this.print_newline()),this.restore_mode(),this.print_token(j)},le.prototype.handle_word=function(j){if(j.type===A.RESERVED){if(P(j.text,["set","get"])&&this._flags.mode!==oe.ObjectLiteral)j.type=A.WORD;else if(j.text==="import"&&P(this._tokens.peek().text,["(","."]))j.type=A.WORD;else if(P(j.text,["as","from"])&&!this._flags.import_block)j.type=A.WORD;else if(this._flags.mode===oe.ObjectLiteral){var ie=this._tokens.peek();ie.text===":"&&(j.type=A.WORD)}}if(this.start_of_statement(j)?K(this._flags.last_token,["var","let","const"])&&j.type===A.WORD&&(this._flags.declaration_statement=!0):j.newlines&&!se(this._flags.mode)&&(this._flags.last_token.type!==A.OPERATOR||this._flags.last_token.text==="--"||this._flags.last_token.text==="++")&&this._flags.last_token.type!==A.EQUALS&&(this._options.preserve_newlines||!K(this._flags.last_token,["var","let","const","set","get"]))?(this.handle_whitespace_and_comments(j),this.print_newline()):this.handle_whitespace_and_comments(j),this._flags.do_block&&!this._flags.do_while)if(N(j,"while")){this._output.space_before_token=!0,this.print_token(j),this._output.space_before_token=!0,this._flags.do_while=!0;return}else this.print_newline(),this._flags.do_block=!1;if(this._flags.if_block)if(!this._flags.else_block&&N(j,"else"))this._flags.else_block=!0;else{for(;this._flags.mode===oe.Statement;)this.restore_mode();this._flags.if_block=!1,this._flags.else_block=!1}if(this._flags.in_case_statement&&K(j,["case","default"])){this.print_newline(),!this._flags.case_block&&(this._flags.case_body||this._options.jslint_happy)&&this.deindent(),this._flags.case_body=!1,this.print_token(j),this._flags.in_case=!0;return}if((this._flags.last_token.type===A.COMMA||this._flags.last_token.type===A.START_EXPR||this._flags.last_token.type===A.EQUALS||this._flags.last_token.type===A.OPERATOR)&&!this.start_of_object_property()&&!(P(this._flags.last_token.text,["+","-"])&&this._last_last_text===":"&&this._flags.parent.mode===oe.ObjectLiteral)&&this.allow_wrap_or_preserved_newline(j),N(j,"function")){(P(this._flags.last_token.text,["}",";"])||this._output.just_added_newline()&&!(P(this._flags.last_token.text,["(","[","{",":","=",","])||this._flags.last_token.type===A.OPERATOR))&&!this._output.just_added_blankline()&&!j.comments_before&&(this.print_newline(),this.print_newline(!0)),this._flags.last_token.type===A.RESERVED||this._flags.last_token.type===A.WORD?K(this._flags.last_token,["get","set","new","export"])||K(this._flags.last_token,z)?this._output.space_before_token=!0:N(this._flags.last_token,"default")&&this._last_last_text==="export"?this._output.space_before_token=!0:this._flags.last_token.text==="declare"?this._output.space_before_token=!0:this.print_newline():this._flags.last_token.type===A.OPERATOR||this._flags.last_token.text==="="?this._output.space_before_token=!0:!this._flags.multiline_frame&&(se(this._flags.mode)||V(this._flags.mode))||this.print_newline(),this.print_token(j),this._flags.last_word=j.text;return}var me="NONE";if(this._flags.last_token.type===A.END_BLOCK?this._previous_flags.inline_frame?me="SPACE":K(j,["else","catch","finally","from"])?this._options.brace_style==="expand"||this._options.brace_style==="end-expand"||this._options.brace_style==="none"&&j.newlines?me="NEWLINE":(me="SPACE",this._output.space_before_token=!0):me="NEWLINE":this._flags.last_token.type===A.SEMICOLON&&this._flags.mode===oe.BlockStatement?me="NEWLINE":this._flags.last_token.type===A.SEMICOLON&&se(this._flags.mode)?me="SPACE":this._flags.last_token.type===A.STRING?me="NEWLINE":this._flags.last_token.type===A.RESERVED||this._flags.last_token.type===A.WORD||this._flags.last_token.text==="*"&&(P(this._last_last_text,["function","yield"])||this._flags.mode===oe.ObjectLiteral&&P(this._last_last_text,["{",","]))?me="SPACE":this._flags.last_token.type===A.START_BLOCK?this._flags.inline_frame?me="SPACE":me="NEWLINE":this._flags.last_token.type===A.END_EXPR&&(this._output.space_before_token=!0,me="NEWLINE"),K(j,k)&&this._flags.last_token.text!==")"&&(this._flags.inline_frame||this._flags.last_token.text==="else"||this._flags.last_token.text==="export"?me="SPACE":me="NEWLINE"),K(j,["else","catch","finally"]))if((!(this._flags.last_token.type===A.END_BLOCK&&this._previous_flags.mode===oe.BlockStatement)||this._options.brace_style==="expand"||this._options.brace_style==="end-expand"||this._options.brace_style==="none"&&j.newlines)&&!this._flags.inline_frame)this.print_newline();else{this._output.trim(!0);var Se=this._output.current_line;Se.last()!=="}"&&this.print_newline(),this._output.space_before_token=!0}else me==="NEWLINE"?K(this._flags.last_token,H)?this._output.space_before_token=!0:this._flags.last_token.text==="declare"&&K(j,["var","let","const"])?this._output.space_before_token=!0:this._flags.last_token.type!==A.END_EXPR?(this._flags.last_token.type!==A.START_EXPR||!K(j,["var","let","const"]))&&this._flags.last_token.text!==":"&&(N(j,"if")&&N(j.previous,"else")?this._output.space_before_token=!0:this.print_newline()):K(j,k)&&this._flags.last_token.text!==")"&&this.print_newline():this._flags.multiline_frame&&V(this._flags.mode)&&this._flags.last_token.text===","&&this._last_last_text==="}"?this.print_newline():me==="SPACE"&&(this._output.space_before_token=!0);j.previous&&(j.previous.type===A.WORD||j.previous.type===A.RESERVED)&&(this._output.space_before_token=!0),this.print_token(j),this._flags.last_word=j.text,j.type===A.RESERVED&&(j.text==="do"?this._flags.do_block=!0:j.text==="if"?this._flags.if_block=!0:j.text==="import"?this._flags.import_block=!0:this._flags.import_block&&N(j,"from")&&(this._flags.import_block=!1))},le.prototype.handle_semicolon=function(j){this.start_of_statement(j)?this._output.space_before_token=!1:this.handle_whitespace_and_comments(j);for(var ie=this._tokens.peek();this._flags.mode===oe.Statement&&!(this._flags.if_block&&N(ie,"else"))&&!this._flags.do_block;)this.restore_mode();this._flags.import_block&&(this._flags.import_block=!1),this.print_token(j)},le.prototype.handle_string=function(j){j.text.startsWith("`")&&j.newlines===0&&j.whitespace_before===""&&(j.previous.text===")"||this._flags.last_token.type===A.WORD)||(this.start_of_statement(j)?this._output.space_before_token=!0:(this.handle_whitespace_and_comments(j),this._flags.last_token.type===A.RESERVED||this._flags.last_token.type===A.WORD||this._flags.inline_frame?this._output.space_before_token=!0:this._flags.last_token.type===A.COMMA||this._flags.last_token.type===A.START_EXPR||this._flags.last_token.type===A.EQUALS||this._flags.last_token.type===A.OPERATOR?this.start_of_object_property()||this.allow_wrap_or_preserved_newline(j):j.text.startsWith("`")&&this._flags.last_token.type===A.END_EXPR&&(j.previous.text==="]"||j.previous.text===")")&&j.newlines===0?this._output.space_before_token=!0:this.print_newline())),this.print_token(j)},le.prototype.handle_equals=function(j){this.start_of_statement(j)||this.handle_whitespace_and_comments(j),this._flags.declaration_statement&&(this._flags.declaration_assignment=!0),this._output.space_before_token=!0,this.print_token(j),this._output.space_before_token=!0},le.prototype.handle_comma=function(j){this.handle_whitespace_and_comments(j,!0),this.print_token(j),this._output.space_before_token=!0,this._flags.declaration_statement?(se(this._flags.parent.mode)&&(this._flags.declaration_assignment=!1),this._flags.declaration_assignment?(this._flags.declaration_assignment=!1,this.print_newline(!1,!0)):this._options.comma_first&&this.allow_wrap_or_preserved_newline(j)):this._flags.mode===oe.ObjectLiteral||this._flags.mode===oe.Statement&&this._flags.parent.mode===oe.ObjectLiteral?(this._flags.mode===oe.Statement&&this.restore_mode(),this._flags.inline_frame||this.print_newline()):this._options.comma_first&&this.allow_wrap_or_preserved_newline(j)},le.prototype.handle_operator=function(j){var ie=j.text==="*"&&(K(this._flags.last_token,["function","yield"])||P(this._flags.last_token.type,[A.START_BLOCK,A.COMMA,A.END_BLOCK,A.SEMICOLON])),me=P(j.text,["-","+"])&&(P(this._flags.last_token.type,[A.START_BLOCK,A.START_EXPR,A.EQUALS,A.OPERATOR])||P(this._flags.last_token.text,k)||this._flags.last_token.text===",");if(!this.start_of_statement(j)){var Se=!ie;this.handle_whitespace_and_comments(j,Se)}if(j.text==="*"&&this._flags.last_token.type===A.DOT){this.print_token(j);return}if(j.text==="::"){this.print_token(j);return}if(P(j.text,["-","+"])&&this.start_of_object_property()){this.print_token(j);return}if(this._flags.last_token.type===A.OPERATOR&&P(this._options.operator_position,ne)&&this.allow_wrap_or_preserved_newline(j),j.text===":"&&this._flags.in_case){this.print_token(j),this._flags.in_case=!1,this._flags.case_body=!0,this._tokens.peek().type!==A.START_BLOCK?(this.indent(),this.print_newline(),this._flags.case_block=!1):(this._flags.case_block=!0,this._output.space_before_token=!0);return}var Ie=!0,He=!0,je=!1;if(j.text===":"?this._flags.ternary_depth===0?Ie=!1:(this._flags.ternary_depth-=1,je=!0):j.text==="?"&&(this._flags.ternary_depth+=1),!me&&!ie&&this._options.preserve_newlines&&P(j.text,R)){var Dt=j.text===":",ht=Dt&&je,It=Dt&&!je;switch(this._options.operator_position){case ae.before_newline:this._output.space_before_token=!It,this.print_token(j),(!Dt||ht)&&this.allow_wrap_or_preserved_newline(j),this._output.space_before_token=!0;return;case ae.after_newline:this._output.space_before_token=!0,!Dt||ht?this._tokens.peek().newlines?this.print_newline(!1,!0):this.allow_wrap_or_preserved_newline(j):this._output.space_before_token=!1,this.print_token(j),this._output.space_before_token=!0;return;case ae.preserve_newline:It||this.allow_wrap_or_preserved_newline(j),Ie=!(this._output.just_added_newline()||It),this._output.space_before_token=Ie,this.print_token(j),this._output.space_before_token=!0;return}}if(ie){this.allow_wrap_or_preserved_newline(j),Ie=!1;var Zt=this._tokens.peek();He=Zt&&P(Zt.type,[A.WORD,A.RESERVED])}else if(j.text==="...")this.allow_wrap_or_preserved_newline(j),Ie=this._flags.last_token.type===A.START_BLOCK,He=!1;else if(P(j.text,["--","++","!","~"])||me){if((this._flags.last_token.type===A.COMMA||this._flags.last_token.type===A.START_EXPR)&&this.allow_wrap_or_preserved_newline(j),Ie=!1,He=!1,j.newlines&&(j.text==="--"||j.text==="++"||j.text==="~")){var Rt=K(this._flags.last_token,H)&&j.newlines;Rt&&(this._previous_flags.if_block||this._previous_flags.else_block)&&this.restore_mode(),this.print_newline(Rt,!0)}this._flags.last_token.text===";"&&se(this._flags.mode)&&(Ie=!0),this._flags.last_token.type===A.RESERVED?Ie=!0:this._flags.last_token.type===A.END_EXPR?Ie=!(this._flags.last_token.text==="]"&&(j.text==="--"||j.text==="++")):this._flags.last_token.type===A.OPERATOR&&(Ie=P(j.text,["--","-","++","+"])&&P(this._flags.last_token.text,["--","-","++","+"]),P(j.text,["+","-"])&&P(this._flags.last_token.text,["--","++"])&&(He=!0)),(this._flags.mode===oe.BlockStatement&&!this._flags.inline_frame||this._flags.mode===oe.Statement)&&(this._flags.last_token.text==="{"||this._flags.last_token.text===";")&&this.print_newline()}this._output.space_before_token=this._output.space_before_token||Ie,this.print_token(j),this._output.space_before_token=He},le.prototype.handle_block_comment=function(j,ie){if(this._output.raw){this._output.add_raw_token(j),j.directives&&j.directives.preserve==="end"&&(this._output.raw=this._options.test_output_raw);return}if(j.directives){this.print_newline(!1,ie),this.print_token(j),j.directives.preserve==="start"&&(this._output.raw=!0),this.print_newline(!1,!0);return}if(!m.newline.test(j.text)&&!j.newlines){this._output.space_before_token=!0,this.print_token(j),this._output.space_before_token=!0;return}else this.print_block_commment(j,ie)},le.prototype.print_block_commment=function(j,ie){var me=X(j.text),Se,Ie=!1,He=!1,je=j.whitespace_before,Dt=je.length;if(this.print_newline(!1,ie),this.print_token_line_indentation(j),this._output.add_token(me[0]),this.print_newline(!1,ie),me.length>1){for(me=me.slice(1),Ie=ee(me,"*"),He=J(me,je),Ie&&(this._flags.alignment=1),Se=0;Se<me.length;Se++)Ie?(this.print_token_line_indentation(j),this._output.add_token(M(me[Se]))):He&&me[Se]?(this.print_token_line_indentation(j),this._output.add_token(me[Se].substring(Dt))):(this._output.current_line.set_indent(-1),this._output.add_token(me[Se])),this.print_newline(!1,ie);this._flags.alignment=0}},le.prototype.handle_comment=function(j,ie){j.newlines?this.print_newline(!1,ie):this._output.trim(!0),this._output.space_before_token=!0,this.print_token(j),this.print_newline(!1,ie)},le.prototype.handle_dot=function(j){this.start_of_statement(j)||this.handle_whitespace_and_comments(j,!0),this._flags.last_token.text.match("^[0-9]+$")&&(this._output.space_before_token=!0),K(this._flags.last_token,H)?this._output.space_before_token=!1:this.allow_wrap_or_preserved_newline(j,this._flags.last_token.text===")"&&this._options.break_chained_methods),this._options.unindent_chained_methods&&this._output.just_added_newline()&&this.deindent(),this.print_token(j)},le.prototype.handle_unknown=function(j,ie){this.print_token(j),j.text[j.text.length-1]===`
`&&this.print_newline(!1,ie)},le.prototype.handle_eof=function(j){for(;this._flags.mode===oe.Statement;)this.restore_mode();this.handle_whitespace_and_comments(j)},u.exports.Beautifier=le},function(u){function a(y){this.__parent=y,this.__character_count=0,this.__indent_count=-1,this.__alignment_count=0,this.__wrap_point_index=0,this.__wrap_point_character_count=0,this.__wrap_point_indent_count=-1,this.__wrap_point_alignment_count=0,this.__items=[]}a.prototype.clone_empty=function(){var y=new a(this.__parent);return y.set_indent(this.__indent_count,this.__alignment_count),y},a.prototype.item=function(y){return y<0?this.__items[this.__items.length+y]:this.__items[y]},a.prototype.has_match=function(y){for(var m=this.__items.length-1;m>=0;m--)if(this.__items[m].match(y))return!0;return!1},a.prototype.set_indent=function(y,m){this.is_empty()&&(this.__indent_count=y||0,this.__alignment_count=m||0,this.__character_count=this.__parent.get_indent_size(this.__indent_count,this.__alignment_count))},a.prototype._set_wrap_point=function(){this.__parent.wrap_line_length&&(this.__wrap_point_index=this.__items.length,this.__wrap_point_character_count=this.__character_count,this.__wrap_point_indent_count=this.__parent.next_line.__indent_count,this.__wrap_point_alignment_count=this.__parent.next_line.__alignment_count)},a.prototype._should_wrap=function(){return this.__wrap_point_index&&this.__character_count>this.__parent.wrap_line_length&&this.__wrap_point_character_count>this.__parent.next_line.__character_count},a.prototype._allow_wrap=function(){if(this._should_wrap()){this.__parent.add_new_line();var y=this.__parent.current_line;return y.set_indent(this.__wrap_point_indent_count,this.__wrap_point_alignment_count),y.__items=this.__items.slice(this.__wrap_point_index),this.__items=this.__items.slice(0,this.__wrap_point_index),y.__character_count+=this.__character_count-this.__wrap_point_character_count,this.__character_count=this.__wrap_point_character_count,y.__items[0]===" "&&(y.__items.splice(0,1),y.__character_count-=1),!0}return!1},a.prototype.is_empty=function(){return this.__items.length===0},a.prototype.last=function(){return this.is_empty()?null:this.__items[this.__items.length-1]},a.prototype.push=function(y){this.__items.push(y);var m=y.lastIndexOf(`
`);m!==-1?this.__character_count=y.length-m:this.__character_count+=y.length},a.prototype.pop=function(){var y=null;return this.is_empty()||(y=this.__items.pop(),this.__character_count-=y.length),y},a.prototype._remove_indent=function(){this.__indent_count>0&&(this.__indent_count-=1,this.__character_count-=this.__parent.indent_size)},a.prototype._remove_wrap_indent=function(){this.__wrap_point_indent_count>0&&(this.__wrap_point_indent_count-=1)},a.prototype.trim=function(){for(;this.last()===" ";)this.__items.pop(),this.__character_count-=1},a.prototype.toString=function(){var y="";return this.is_empty()?this.__parent.indent_empty_lines&&(y=this.__parent.get_indent_string(this.__indent_count)):(y=this.__parent.get_indent_string(this.__indent_count,this.__alignment_count),y+=this.__items.join("")),y};function x(y,m){this.__cache=[""],this.__indent_size=y.indent_size,this.__indent_string=y.indent_char,y.indent_with_tabs||(this.__indent_string=new Array(y.indent_size+1).join(y.indent_char)),m=m||"",y.indent_level>0&&(m=new Array(y.indent_level+1).join(this.__indent_string)),this.__base_string=m,this.__base_string_length=m.length}x.prototype.get_indent_size=function(y,m){var b=this.__base_string_length;return m=m||0,y<0&&(b=0),b+=y*this.__indent_size,b+=m,b},x.prototype.get_indent_string=function(y,m){var b=this.__base_string;return m=m||0,y<0&&(y=0,b=""),m+=y*this.__indent_size,this.__ensure_cache(m),b+=this.__cache[m],b},x.prototype.__ensure_cache=function(y){for(;y>=this.__cache.length;)this.__add_column()},x.prototype.__add_column=function(){var y=this.__cache.length,m=0,b="";this.__indent_size&&y>=this.__indent_size&&(m=Math.floor(y/this.__indent_size),y-=m*this.__indent_size,b=new Array(m+1).join(this.__indent_string)),y&&(b+=new Array(y+1).join(" ")),this.__cache.push(b)};function p(y,m){this.__indent_cache=new x(y,m),this.raw=!1,this._end_with_newline=y.end_with_newline,this.indent_size=y.indent_size,this.wrap_line_length=y.wrap_line_length,this.indent_empty_lines=y.indent_empty_lines,this.__lines=[],this.previous_line=null,this.current_line=null,this.next_line=new a(this),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1,this.__add_outputline()}p.prototype.__add_outputline=function(){this.previous_line=this.current_line,this.current_line=this.next_line.clone_empty(),this.__lines.push(this.current_line)},p.prototype.get_line_number=function(){return this.__lines.length},p.prototype.get_indent_string=function(y,m){return this.__indent_cache.get_indent_string(y,m)},p.prototype.get_indent_size=function(y,m){return this.__indent_cache.get_indent_size(y,m)},p.prototype.is_empty=function(){return!this.previous_line&&this.current_line.is_empty()},p.prototype.add_new_line=function(y){return this.is_empty()||!y&&this.just_added_newline()?!1:(this.raw||this.__add_outputline(),!0)},p.prototype.get_code=function(y){this.trim(!0);var m=this.current_line.pop();m&&(m[m.length-1]===`
`&&(m=m.replace(/\n+$/g,"")),this.current_line.push(m)),this._end_with_newline&&this.__add_outputline();var b=this.__lines.join(`
`);return y!==`
`&&(b=b.replace(/[\n]/g,y)),b},p.prototype.set_wrap_point=function(){this.current_line._set_wrap_point()},p.prototype.set_indent=function(y,m){return y=y||0,m=m||0,this.next_line.set_indent(y,m),this.__lines.length>1?(this.current_line.set_indent(y,m),!0):(this.current_line.set_indent(),!1)},p.prototype.add_raw_token=function(y){for(var m=0;m<y.newlines;m++)this.__add_outputline();this.current_line.set_indent(-1),this.current_line.push(y.whitespace_before),this.current_line.push(y.text),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1},p.prototype.add_token=function(y){this.__add_space_before_token(),this.current_line.push(y),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=this.current_line._allow_wrap()},p.prototype.__add_space_before_token=function(){this.space_before_token&&!this.just_added_newline()&&(this.non_breaking_space||this.set_wrap_point(),this.current_line.push(" "))},p.prototype.remove_indent=function(y){for(var m=this.__lines.length;y<m;)this.__lines[y]._remove_indent(),y++;this.current_line._remove_wrap_indent()},p.prototype.trim=function(y){for(y=y===void 0?!1:y,this.current_line.trim();y&&this.__lines.length>1&&this.current_line.is_empty();)this.__lines.pop(),this.current_line=this.__lines[this.__lines.length-1],this.current_line.trim();this.previous_line=this.__lines.length>1?this.__lines[this.__lines.length-2]:null},p.prototype.just_added_newline=function(){return this.current_line.is_empty()},p.prototype.just_added_blankline=function(){return this.is_empty()||this.current_line.is_empty()&&this.previous_line.is_empty()},p.prototype.ensure_empty_line_above=function(y,m){for(var b=this.__lines.length-2;b>=0;){var S=this.__lines[b];if(S.is_empty())break;if(S.item(0).indexOf(y)!==0&&S.item(-1)!==m){this.__lines.splice(b+1,0,new a(this)),this.previous_line=this.__lines[this.__lines.length-2];break}b--}},u.exports.Output=p},function(u){function a(x,p,y,m){this.type=x,this.text=p,this.comments_before=null,this.newlines=y||0,this.whitespace_before=m||"",this.parent=null,this.next=null,this.previous=null,this.opened=null,this.closed=null,this.directives=null}u.exports.Token=a},function(u,a){var x="\\x23\\x24\\x40\\x41-\\x5a\\x5f\\x61-\\x7a",p="\\x24\\x30-\\x39\\x41-\\x5a\\x5f\\x61-\\x7a",y="\\xaa\\xb5\\xba\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u02c1\\u02c6-\\u02d1\\u02e0-\\u02e4\\u02ec\\u02ee\\u0370-\\u0374\\u0376\\u0377\\u037a-\\u037d\\u0386\\u0388-\\u038a\\u038c\\u038e-\\u03a1\\u03a3-\\u03f5\\u03f7-\\u0481\\u048a-\\u0527\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05d0-\\u05ea\\u05f0-\\u05f2\\u0620-\\u064a\\u066e\\u066f\\u0671-\\u06d3\\u06d5\\u06e5\\u06e6\\u06ee\\u06ef\\u06fa-\\u06fc\\u06ff\\u0710\\u0712-\\u072f\\u074d-\\u07a5\\u07b1\\u07ca-\\u07ea\\u07f4\\u07f5\\u07fa\\u0800-\\u0815\\u081a\\u0824\\u0828\\u0840-\\u0858\\u08a0\\u08a2-\\u08ac\\u0904-\\u0939\\u093d\\u0950\\u0958-\\u0961\\u0971-\\u0977\\u0979-\\u097f\\u0985-\\u098c\\u098f\\u0990\\u0993-\\u09a8\\u09aa-\\u09b0\\u09b2\\u09b6-\\u09b9\\u09bd\\u09ce\\u09dc\\u09dd\\u09df-\\u09e1\\u09f0\\u09f1\\u0a05-\\u0a0a\\u0a0f\\u0a10\\u0a13-\\u0a28\\u0a2a-\\u0a30\\u0a32\\u0a33\\u0a35\\u0a36\\u0a38\\u0a39\\u0a59-\\u0a5c\\u0a5e\\u0a72-\\u0a74\\u0a85-\\u0a8d\\u0a8f-\\u0a91\\u0a93-\\u0aa8\\u0aaa-\\u0ab0\\u0ab2\\u0ab3\\u0ab5-\\u0ab9\\u0abd\\u0ad0\\u0ae0\\u0ae1\\u0b05-\\u0b0c\\u0b0f\\u0b10\\u0b13-\\u0b28\\u0b2a-\\u0b30\\u0b32\\u0b33\\u0b35-\\u0b39\\u0b3d\\u0b5c\\u0b5d\\u0b5f-\\u0b61\\u0b71\\u0b83\\u0b85-\\u0b8a\\u0b8e-\\u0b90\\u0b92-\\u0b95\\u0b99\\u0b9a\\u0b9c\\u0b9e\\u0b9f\\u0ba3\\u0ba4\\u0ba8-\\u0baa\\u0bae-\\u0bb9\\u0bd0\\u0c05-\\u0c0c\\u0c0e-\\u0c10\\u0c12-\\u0c28\\u0c2a-\\u0c33\\u0c35-\\u0c39\\u0c3d\\u0c58\\u0c59\\u0c60\\u0c61\\u0c85-\\u0c8c\\u0c8e-\\u0c90\\u0c92-\\u0ca8\\u0caa-\\u0cb3\\u0cb5-\\u0cb9\\u0cbd\\u0cde\\u0ce0\\u0ce1\\u0cf1\\u0cf2\\u0d05-\\u0d0c\\u0d0e-\\u0d10\\u0d12-\\u0d3a\\u0d3d\\u0d4e\\u0d60\\u0d61\\u0d7a-\\u0d7f\\u0d85-\\u0d96\\u0d9a-\\u0db1\\u0db3-\\u0dbb\\u0dbd\\u0dc0-\\u0dc6\\u0e01-\\u0e30\\u0e32\\u0e33\\u0e40-\\u0e46\\u0e81\\u0e82\\u0e84\\u0e87\\u0e88\\u0e8a\\u0e8d\\u0e94-\\u0e97\\u0e99-\\u0e9f\\u0ea1-\\u0ea3\\u0ea5\\u0ea7\\u0eaa\\u0eab\\u0ead-\\u0eb0\\u0eb2\\u0eb3\\u0ebd\\u0ec0-\\u0ec4\\u0ec6\\u0edc-\\u0edf\\u0f00\\u0f40-\\u0f47\\u0f49-\\u0f6c\\u0f88-\\u0f8c\\u1000-\\u102a\\u103f\\u1050-\\u1055\\u105a-\\u105d\\u1061\\u1065\\u1066\\u106e-\\u1070\\u1075-\\u1081\\u108e\\u10a0-\\u10c5\\u10c7\\u10cd\\u10d0-\\u10fa\\u10fc-\\u1248\\u124a-\\u124d\\u1250-\\u1256\\u1258\\u125a-\\u125d\\u1260-\\u1288\\u128a-\\u128d\\u1290-\\u12b0\\u12b2-\\u12b5\\u12b8-\\u12be\\u12c0\\u12c2-\\u12c5\\u12c8-\\u12d6\\u12d8-\\u1310\\u1312-\\u1315\\u1318-\\u135a\\u1380-\\u138f\\u13a0-\\u13f4\\u1401-\\u166c\\u166f-\\u167f\\u1681-\\u169a\\u16a0-\\u16ea\\u16ee-\\u16f0\\u1700-\\u170c\\u170e-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176c\\u176e-\\u1770\\u1780-\\u17b3\\u17d7\\u17dc\\u1820-\\u1877\\u1880-\\u18a8\\u18aa\\u18b0-\\u18f5\\u1900-\\u191c\\u1950-\\u196d\\u1970-\\u1974\\u1980-\\u19ab\\u19c1-\\u19c7\\u1a00-\\u1a16\\u1a20-\\u1a54\\u1aa7\\u1b05-\\u1b33\\u1b45-\\u1b4b\\u1b83-\\u1ba0\\u1bae\\u1baf\\u1bba-\\u1be5\\u1c00-\\u1c23\\u1c4d-\\u1c4f\\u1c5a-\\u1c7d\\u1ce9-\\u1cec\\u1cee-\\u1cf1\\u1cf5\\u1cf6\\u1d00-\\u1dbf\\u1e00-\\u1f15\\u1f18-\\u1f1d\\u1f20-\\u1f45\\u1f48-\\u1f4d\\u1f50-\\u1f57\\u1f59\\u1f5b\\u1f5d\\u1f5f-\\u1f7d\\u1f80-\\u1fb4\\u1fb6-\\u1fbc\\u1fbe\\u1fc2-\\u1fc4\\u1fc6-\\u1fcc\\u1fd0-\\u1fd3\\u1fd6-\\u1fdb\\u1fe0-\\u1fec\\u1ff2-\\u1ff4\\u1ff6-\\u1ffc\\u2071\\u207f\\u2090-\\u209c\\u2102\\u2107\\u210a-\\u2113\\u2115\\u2119-\\u211d\\u2124\\u2126\\u2128\\u212a-\\u212d\\u212f-\\u2139\\u213c-\\u213f\\u2145-\\u2149\\u214e\\u2160-\\u2188\\u2c00-\\u2c2e\\u2c30-\\u2c5e\\u2c60-\\u2ce4\\u2ceb-\\u2cee\\u2cf2\\u2cf3\\u2d00-\\u2d25\\u2d27\\u2d2d\\u2d30-\\u2d67\\u2d6f\\u2d80-\\u2d96\\u2da0-\\u2da6\\u2da8-\\u2dae\\u2db0-\\u2db6\\u2db8-\\u2dbe\\u2dc0-\\u2dc6\\u2dc8-\\u2dce\\u2dd0-\\u2dd6\\u2dd8-\\u2dde\\u2e2f\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303c\\u3041-\\u3096\\u309d-\\u309f\\u30a1-\\u30fa\\u30fc-\\u30ff\\u3105-\\u312d\\u3131-\\u318e\\u31a0-\\u31ba\\u31f0-\\u31ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\ua000-\\ua48c\\ua4d0-\\ua4fd\\ua500-\\ua60c\\ua610-\\ua61f\\ua62a\\ua62b\\ua640-\\ua66e\\ua67f-\\ua697\\ua6a0-\\ua6ef\\ua717-\\ua71f\\ua722-\\ua788\\ua78b-\\ua78e\\ua790-\\ua793\\ua7a0-\\ua7aa\\ua7f8-\\ua801\\ua803-\\ua805\\ua807-\\ua80a\\ua80c-\\ua822\\ua840-\\ua873\\ua882-\\ua8b3\\ua8f2-\\ua8f7\\ua8fb\\ua90a-\\ua925\\ua930-\\ua946\\ua960-\\ua97c\\ua984-\\ua9b2\\ua9cf\\uaa00-\\uaa28\\uaa40-\\uaa42\\uaa44-\\uaa4b\\uaa60-\\uaa76\\uaa7a\\uaa80-\\uaaaf\\uaab1\\uaab5\\uaab6\\uaab9-\\uaabd\\uaac0\\uaac2\\uaadb-\\uaadd\\uaae0-\\uaaea\\uaaf2-\\uaaf4\\uab01-\\uab06\\uab09-\\uab0e\\uab11-\\uab16\\uab20-\\uab26\\uab28-\\uab2e\\uabc0-\\uabe2\\uac00-\\ud7a3\\ud7b0-\\ud7c6\\ud7cb-\\ud7fb\\uf900-\\ufa6d\\ufa70-\\ufad9\\ufb00-\\ufb06\\ufb13-\\ufb17\\ufb1d\\ufb1f-\\ufb28\\ufb2a-\\ufb36\\ufb38-\\ufb3c\\ufb3e\\ufb40\\ufb41\\ufb43\\ufb44\\ufb46-\\ufbb1\\ufbd3-\\ufd3d\\ufd50-\\ufd8f\\ufd92-\\ufdc7\\ufdf0-\\ufdfb\\ufe70-\\ufe74\\ufe76-\\ufefc\\uff21-\\uff3a\\uff41-\\uff5a\\uff66-\\uffbe\\uffc2-\\uffc7\\uffca-\\uffcf\\uffd2-\\uffd7\\uffda-\\uffdc",m="\\u0300-\\u036f\\u0483-\\u0487\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u0620-\\u0649\\u0672-\\u06d3\\u06e7-\\u06e8\\u06fb-\\u06fc\\u0730-\\u074a\\u0800-\\u0814\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0840-\\u0857\\u08e4-\\u08fe\\u0900-\\u0903\\u093a-\\u093c\\u093e-\\u094f\\u0951-\\u0957\\u0962-\\u0963\\u0966-\\u096f\\u0981-\\u0983\\u09bc\\u09be-\\u09c4\\u09c7\\u09c8\\u09d7\\u09df-\\u09e0\\u0a01-\\u0a03\\u0a3c\\u0a3e-\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a66-\\u0a71\\u0a75\\u0a81-\\u0a83\\u0abc\\u0abe-\\u0ac5\\u0ac7-\\u0ac9\\u0acb-\\u0acd\\u0ae2-\\u0ae3\\u0ae6-\\u0aef\\u0b01-\\u0b03\\u0b3c\\u0b3e-\\u0b44\\u0b47\\u0b48\\u0b4b-\\u0b4d\\u0b56\\u0b57\\u0b5f-\\u0b60\\u0b66-\\u0b6f\\u0b82\\u0bbe-\\u0bc2\\u0bc6-\\u0bc8\\u0bca-\\u0bcd\\u0bd7\\u0be6-\\u0bef\\u0c01-\\u0c03\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62-\\u0c63\\u0c66-\\u0c6f\\u0c82\\u0c83\\u0cbc\\u0cbe-\\u0cc4\\u0cc6-\\u0cc8\\u0cca-\\u0ccd\\u0cd5\\u0cd6\\u0ce2-\\u0ce3\\u0ce6-\\u0cef\\u0d02\\u0d03\\u0d46-\\u0d48\\u0d57\\u0d62-\\u0d63\\u0d66-\\u0d6f\\u0d82\\u0d83\\u0dca\\u0dcf-\\u0dd4\\u0dd6\\u0dd8-\\u0ddf\\u0df2\\u0df3\\u0e34-\\u0e3a\\u0e40-\\u0e45\\u0e50-\\u0e59\\u0eb4-\\u0eb9\\u0ec8-\\u0ecd\\u0ed0-\\u0ed9\\u0f18\\u0f19\\u0f20-\\u0f29\\u0f35\\u0f37\\u0f39\\u0f41-\\u0f47\\u0f71-\\u0f84\\u0f86-\\u0f87\\u0f8d-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u1000-\\u1029\\u1040-\\u1049\\u1067-\\u106d\\u1071-\\u1074\\u1082-\\u108d\\u108f-\\u109d\\u135d-\\u135f\\u170e-\\u1710\\u1720-\\u1730\\u1740-\\u1750\\u1772\\u1773\\u1780-\\u17b2\\u17dd\\u17e0-\\u17e9\\u180b-\\u180d\\u1810-\\u1819\\u1920-\\u192b\\u1930-\\u193b\\u1951-\\u196d\\u19b0-\\u19c0\\u19c8-\\u19c9\\u19d0-\\u19d9\\u1a00-\\u1a15\\u1a20-\\u1a53\\u1a60-\\u1a7c\\u1a7f-\\u1a89\\u1a90-\\u1a99\\u1b46-\\u1b4b\\u1b50-\\u1b59\\u1b6b-\\u1b73\\u1bb0-\\u1bb9\\u1be6-\\u1bf3\\u1c00-\\u1c22\\u1c40-\\u1c49\\u1c5b-\\u1c7d\\u1cd0-\\u1cd2\\u1d00-\\u1dbe\\u1e01-\\u1f15\\u200c\\u200d\\u203f\\u2040\\u2054\\u20d0-\\u20dc\\u20e1\\u20e5-\\u20f0\\u2d81-\\u2d96\\u2de0-\\u2dff\\u3021-\\u3028\\u3099\\u309a\\ua640-\\ua66d\\ua674-\\ua67d\\ua69f\\ua6f0-\\ua6f1\\ua7f8-\\ua800\\ua806\\ua80b\\ua823-\\ua827\\ua880-\\ua881\\ua8b4-\\ua8c4\\ua8d0-\\ua8d9\\ua8f3-\\ua8f7\\ua900-\\ua909\\ua926-\\ua92d\\ua930-\\ua945\\ua980-\\ua983\\ua9b3-\\ua9c0\\uaa00-\\uaa27\\uaa40-\\uaa41\\uaa4c-\\uaa4d\\uaa50-\\uaa59\\uaa7b\\uaae0-\\uaae9\\uaaf2-\\uaaf3\\uabc0-\\uabe1\\uabec\\uabed\\uabf0-\\uabf9\\ufb20-\\ufb28\\ufe00-\\ufe0f\\ufe20-\\ufe26\\ufe33\\ufe34\\ufe4d-\\ufe4f\\uff10-\\uff19\\uff3f",b="\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}",S="(?:"+b+"|["+x+y+"])",k="(?:"+b+"|["+p+y+m+"])*";a.identifier=new RegExp(S+k,"g"),a.identifierStart=new RegExp(S),a.identifierMatch=new RegExp("(?:"+b+"|["+p+y+m+"])+");var R=/[\u1680\u180e\u2000-\u200a\u202f\u205f\u3000\ufeff]/;a.newline=/[\n\r\u2028\u2029]/,a.lineBreak=new RegExp(`\r
|`+a.newline.source),a.allLineBreaks=new RegExp(a.lineBreak.source,"g")},function(u,a,x){var p=x(6).Options,y=["before-newline","after-newline","preserve-newline"];function m(b){p.call(this,b,"js");var S=this.raw_options.brace_style||null;S==="expand-strict"?this.raw_options.brace_style="expand":S==="collapse-preserve-inline"?this.raw_options.brace_style="collapse,preserve-inline":this.raw_options.braces_on_own_line!==void 0&&(this.raw_options.brace_style=this.raw_options.braces_on_own_line?"expand":"collapse");var k=this._get_selection_list("brace_style",["collapse","expand","end-expand","none","preserve-inline"]);this.brace_preserve_inline=!1,this.brace_style="collapse";for(var R=0;R<k.length;R++)k[R]==="preserve-inline"?this.brace_preserve_inline=!0:this.brace_style=k[R];this.unindent_chained_methods=this._get_boolean("unindent_chained_methods"),this.break_chained_methods=this._get_boolean("break_chained_methods"),this.space_in_paren=this._get_boolean("space_in_paren"),this.space_in_empty_paren=this._get_boolean("space_in_empty_paren"),this.jslint_happy=this._get_boolean("jslint_happy"),this.space_after_anon_function=this._get_boolean("space_after_anon_function"),this.space_after_named_function=this._get_boolean("space_after_named_function"),this.keep_array_indentation=this._get_boolean("keep_array_indentation"),this.space_before_conditional=this._get_boolean("space_before_conditional",!0),this.unescape_strings=this._get_boolean("unescape_strings"),this.e4x=this._get_boolean("e4x"),this.comma_first=this._get_boolean("comma_first"),this.operator_position=this._get_selection("operator_position",y),this.test_output_raw=this._get_boolean("test_output_raw"),this.jslint_happy&&(this.space_after_anon_function=!0)}m.prototype=new p,u.exports.Options=m},function(u){function a(y,m){this.raw_options=x(y,m),this.disabled=this._get_boolean("disabled"),this.eol=this._get_characters("eol","auto"),this.end_with_newline=this._get_boolean("end_with_newline"),this.indent_size=this._get_number("indent_size",4),this.indent_char=this._get_characters("indent_char"," "),this.indent_level=this._get_number("indent_level"),this.preserve_newlines=this._get_boolean("preserve_newlines",!0),this.max_preserve_newlines=this._get_number("max_preserve_newlines",32786),this.preserve_newlines||(this.max_preserve_newlines=0),this.indent_with_tabs=this._get_boolean("indent_with_tabs",this.indent_char===" "),this.indent_with_tabs&&(this.indent_char=" ",this.indent_size===1&&(this.indent_size=4)),this.wrap_line_length=this._get_number("wrap_line_length",this._get_number("max_char")),this.indent_empty_lines=this._get_boolean("indent_empty_lines"),this.templating=this._get_selection_list("templating",["auto","none","angular","django","erb","handlebars","php","smarty"],["auto"])}a.prototype._get_array=function(y,m){var b=this.raw_options[y],S=m||[];return typeof b=="object"?b!==null&&typeof b.concat=="function"&&(S=b.concat()):typeof b=="string"&&(S=b.split(/[^a-zA-Z0-9_\/\-]+/)),S},a.prototype._get_boolean=function(y,m){var b=this.raw_options[y],S=b===void 0?!!m:!!b;return S},a.prototype._get_characters=function(y,m){var b=this.raw_options[y],S=m||"";return typeof b=="string"&&(S=b.replace(/\\r/,"\r").replace(/\\n/,`
`).replace(/\\t/," ")),S},a.prototype._get_number=function(y,m){var b=this.raw_options[y];m=parseInt(m,10),isNaN(m)&&(m=0);var S=parseInt(b,10);return isNaN(S)&&(S=m),S},a.prototype._get_selection=function(y,m,b){var S=this._get_selection_list(y,m,b);if(S.length!==1)throw new Error("Invalid Option Value: The option '"+y+`' can only be one of the following values:
`+m+`
You passed in: '`+this.raw_options[y]+"'");return S[0]},a.prototype._get_selection_list=function(y,m,b){if(!m||m.length===0)throw new Error("Selection list cannot be empty.");if(b=b||[m[0]],!this._is_valid_selection(b,m))throw new Error("Invalid Default Value!");var S=this._get_array(y,b);if(!this._is_valid_selection(S,m))throw new Error("Invalid Option Value: The option '"+y+`' can contain only the following values:
`+m+`
You passed in: '`+this.raw_options[y]+"'");return S},a.prototype._is_valid_selection=function(y,m){return y.length&&m.length&&!y.some(function(b){return m.indexOf(b)===-1})};function x(y,m){var b={};y=p(y);var S;for(S in y)S!==m&&(b[S]=y[S]);if(m&&y[m])for(S in y[m])b[S]=y[m][S];return b}function p(y){var m={},b;for(b in y){var S=b.replace(/-/g,"_");m[S]=y[b]}return m}u.exports.Options=a,u.exports.normalizeOpts=p,u.exports.mergeOpts=x},function(u,a,x){var p=x(8).InputScanner,y=x(9).Tokenizer,m=x(9).TOKEN,b=x(13).Directives,S=x(4),k=x(12).Pattern,R=x(14).TemplatablePattern;function A(ee,J){return J.indexOf(ee)!==-1}var P={START_EXPR:"TK_START_EXPR",END_EXPR:"TK_END_EXPR",START_BLOCK:"TK_START_BLOCK",END_BLOCK:"TK_END_BLOCK",WORD:"TK_WORD",RESERVED:"TK_RESERVED",SEMICOLON:"TK_SEMICOLON",STRING:"TK_STRING",EQUALS:"TK_EQUALS",OPERATOR:"TK_OPERATOR",COMMA:"TK_COMMA",BLOCK_COMMENT:"TK_BLOCK_COMMENT",COMMENT:"TK_COMMENT",DOT:"TK_DOT",UNKNOWN:"TK_UNKNOWN",START:m.START,RAW:m.RAW,EOF:m.EOF},M=new b(/\/\*/,/\*\//),B=/0[xX][0123456789abcdefABCDEF_]*n?|0[oO][01234567_]*n?|0[bB][01_]*n?|\d[\d_]*n|(?:\.\d[\d_]*|\d[\d_]*\.?[\d_]*)(?:[eE][+-]?[\d_]+)?/,N=/[0-9]/,K=/[^\d\.]/,H=">>> === !== &&= ??= ||= << && >= ** != == <= >> || ?? |> < / - + > : & % ? ^ | *".split(" "),W=">>>= ... >>= <<= === >>> !== **= &&= ??= ||= => ^= :: /= << <= == && -= >= >> != -- += ** || ?? ++ %= &= *= |= |> = ! ? > < : / ^ - + * & % ~ |";W=W.replace(/[-[\]{}()*+?.,\\^$|#]/g,"\\$&"),W="\\?\\.(?!\\d) "+W,W=W.replace(/ /g,"|");var ae=new RegExp(W),ne="continue,try,throw,return,var,let,const,if,switch,case,default,for,while,break,function,import,export".split(","),oe=ne.concat(["do","in","of","else","get","set","new","catch","finally","typeof","yield","async","await","from","as","class","extends"]),q=new RegExp("^(?:"+oe.join("|")+")$"),X,V=function(ee,J){y.call(this,ee,J),this._patterns.whitespace=this._patterns.whitespace.matching(/\u00A0\u1680\u180e\u2000-\u200a\u202f\u205f\u3000\ufeff/.source,/\u2028\u2029/.source);var le=new k(this._input),z=new R(this._input).read_options(this._options);this.__patterns={template:z,identifier:z.starting_with(S.identifier).matching(S.identifierMatch),number:le.matching(B),punct:le.matching(ae),comment:le.starting_with(/\/\//).until(/[\n\r\u2028\u2029]/),block_comment:le.starting_with(/\/\*/).until_after(/\*\//),html_comment_start:le.matching(/<!--/),html_comment_end:le.matching(/-->/),include:le.starting_with(/#include/).until_after(S.lineBreak),shebang:le.starting_with(/#!/).until_after(S.lineBreak),xml:le.matching(/[\s\S]*?<(\/?)([-a-zA-Z:0-9_.]+|{[^}]+?}|!\[CDATA\[[^\]]*?\]\]|)(\s*{[^}]+?}|\s+[-a-zA-Z:0-9_.]+|\s+[-a-zA-Z:0-9_.]+\s*=\s*('[^']*'|"[^"]*"|{([^{}]|{[^}]+?})+?}))*\s*(\/?)\s*>/),single_quote:z.until(/['\\\n\r\u2028\u2029]/),double_quote:z.until(/["\\\n\r\u2028\u2029]/),template_text:z.until(/[`\\$]/),template_expression:z.until(/[`}\\]/)}};V.prototype=new y,V.prototype._is_comment=function(ee){return ee.type===P.COMMENT||ee.type===P.BLOCK_COMMENT||ee.type===P.UNKNOWN},V.prototype._is_opening=function(ee){return ee.type===P.START_BLOCK||ee.type===P.START_EXPR},V.prototype._is_closing=function(ee,J){return(ee.type===P.END_BLOCK||ee.type===P.END_EXPR)&&J&&(ee.text==="]"&&J.text==="["||ee.text===")"&&J.text==="("||ee.text==="}"&&J.text==="{")},V.prototype._reset=function(){X=!1},V.prototype._get_next_token=function(ee,J){var le=null;this._readWhitespace();var z=this._input.peek();return z===null?this._create_token(P.EOF,""):(le=le||this._read_non_javascript(z),le=le||this._read_string(z),le=le||this._read_pair(z,this._input.peek(1)),le=le||this._read_word(ee),le=le||this._read_singles(z),le=le||this._read_comment(z),le=le||this._read_regexp(z,ee),le=le||this._read_xml(z,ee),le=le||this._read_punctuation(),le=le||this._create_token(P.UNKNOWN,this._input.next()),le)},V.prototype._read_word=function(ee){var J;if(J=this.__patterns.identifier.read(),J!=="")return J=J.replace(S.allLineBreaks,`
`),!(ee.type===P.DOT||ee.type===P.RESERVED&&(ee.text==="set"||ee.text==="get"))&&q.test(J)?(J==="in"||J==="of")&&(ee.type===P.WORD||ee.type===P.STRING)?this._create_token(P.OPERATOR,J):this._create_token(P.RESERVED,J):this._create_token(P.WORD,J);if(J=this.__patterns.number.read(),J!=="")return this._create_token(P.WORD,J)},V.prototype._read_singles=function(ee){var J=null;return ee==="("||ee==="["?J=this._create_token(P.START_EXPR,ee):ee===")"||ee==="]"?J=this._create_token(P.END_EXPR,ee):ee==="{"?J=this._create_token(P.START_BLOCK,ee):ee==="}"?J=this._create_token(P.END_BLOCK,ee):ee===";"?J=this._create_token(P.SEMICOLON,ee):ee==="."&&K.test(this._input.peek(1))?J=this._create_token(P.DOT,ee):ee===","&&(J=this._create_token(P.COMMA,ee)),J&&this._input.next(),J},V.prototype._read_pair=function(ee,J){var le=null;return ee==="#"&&J==="{"&&(le=this._create_token(P.START_BLOCK,ee+J)),le&&(this._input.next(),this._input.next()),le},V.prototype._read_punctuation=function(){var ee=this.__patterns.punct.read();if(ee!=="")return ee==="="?this._create_token(P.EQUALS,ee):ee==="?."?this._create_token(P.DOT,ee):this._create_token(P.OPERATOR,ee)},V.prototype._read_non_javascript=function(ee){var J="";if(ee==="#"){if(this._is_first_token()&&(J=this.__patterns.shebang.read(),J))return this._create_token(P.UNKNOWN,J.trim()+`
`);if(J=this.__patterns.include.read(),J)return this._create_token(P.UNKNOWN,J.trim()+`
`);ee=this._input.next();var le="#";if(this._input.hasNext()&&this._input.testChar(N)){do ee=this._input.next(),le+=ee;while(this._input.hasNext()&&ee!=="#"&&ee!=="=");return ee==="#"||(this._input.peek()==="["&&this._input.peek(1)==="]"?(le+="[]",this._input.next(),this._input.next()):this._input.peek()==="{"&&this._input.peek(1)==="}"&&(le+="{}",this._input.next(),this._input.next())),this._create_token(P.WORD,le)}this._input.back()}else if(ee==="<"&&this._is_first_token()){if(J=this.__patterns.html_comment_start.read(),J){for(;this._input.hasNext()&&!this._input.testChar(S.newline);)J+=this._input.next();return X=!0,this._create_token(P.COMMENT,J)}}else if(X&&ee==="-"&&(J=this.__patterns.html_comment_end.read(),J))return X=!1,this._create_token(P.COMMENT,J);return null},V.prototype._read_comment=function(ee){var J=null;if(ee==="/"){var le="";if(this._input.peek(1)==="*"){le=this.__patterns.block_comment.read();var z=M.get_directives(le);z&&z.ignore==="start"&&(le+=M.readIgnored(this._input)),le=le.replace(S.allLineBreaks,`
`),J=this._create_token(P.BLOCK_COMMENT,le),J.directives=z}else this._input.peek(1)==="/"&&(le=this.__patterns.comment.read(),J=this._create_token(P.COMMENT,le))}return J},V.prototype._read_string=function(ee){if(ee==="`"||ee==="'"||ee==='"'){var J=this._input.next();return this.has_char_escapes=!1,ee==="`"?J+=this._read_string_recursive("`",!0,"${"):J+=this._read_string_recursive(ee),this.has_char_escapes&&this._options.unescape_strings&&(J=se(J)),this._input.peek()===ee&&(J+=this._input.next()),J=J.replace(S.allLineBreaks,`
`),this._create_token(P.STRING,J)}return null},V.prototype._allow_regexp_or_xml=function(ee){return ee.type===P.RESERVED&&A(ee.text,["return","case","throw","else","do","typeof","yield"])||ee.type===P.END_EXPR&&ee.text===")"&&ee.opened.previous.type===P.RESERVED&&A(ee.opened.previous.text,["if","while","for"])||A(ee.type,[P.COMMENT,P.START_EXPR,P.START_BLOCK,P.START,P.END_BLOCK,P.OPERATOR,P.EQUALS,P.EOF,P.SEMICOLON,P.COMMA])},V.prototype._read_regexp=function(ee,J){if(ee==="/"&&this._allow_regexp_or_xml(J)){for(var le=this._input.next(),z=!1,j=!1;this._input.hasNext()&&(z||j||this._input.peek()!==ee)&&!this._input.testChar(S.newline);)le+=this._input.peek(),z?z=!1:(z=this._input.peek()==="\\",this._input.peek()==="["?j=!0:this._input.peek()==="]"&&(j=!1)),this._input.next();return this._input.peek()===ee&&(le+=this._input.next(),le+=this._input.read(S.identifier)),this._create_token(P.STRING,le)}return null},V.prototype._read_xml=function(ee,J){if(this._options.e4x&&ee==="<"&&this._allow_regexp_or_xml(J)){var le="",z=this.__patterns.xml.read_match();if(z){for(var j=z[2].replace(/^{\s+/,"{").replace(/\s+}$/,"}"),ie=j.indexOf("{")===0,me=0;z;){var Se=!!z[1],Ie=z[2],He=!!z[z.length-1]||Ie.slice(0,8)==="![CDATA[";if(!He&&(Ie===j||ie&&Ie.replace(/^{\s+/,"{").replace(/\s+}$/,"}"))&&(Se?--me:++me),le+=z[0],me<=0)break;z=this.__patterns.xml.read_match()}return z||(le+=this._input.match(/[\s\S]*/g)[0]),le=le.replace(S.allLineBreaks,`
`),this._create_token(P.STRING,le)}}return null};function se(ee){for(var J="",le=0,z=new p(ee),j=null;z.hasNext();)if(j=z.match(/([\s]|[^\\]|\\\\)+/g),j&&(J+=j[0]),z.peek()==="\\"){if(z.next(),z.peek()==="x")j=z.match(/x([0-9A-Fa-f]{2})/g);else if(z.peek()==="u")j=z.match(/u([0-9A-Fa-f]{4})/g),j||(j=z.match(/u\{([0-9A-Fa-f]+)\}/g));else{J+="\\",z.hasNext()&&(J+=z.next());continue}if(!j||(le=parseInt(j[1],16),le>126&&le<=255&&j[0].indexOf("x")===0))return ee;le>=0&&le<32||le>1114111?J+="\\"+j[0]:le===34||le===39||le===92?J+="\\"+String.fromCharCode(le):J+=String.fromCharCode(le)}return J}V.prototype._read_string_recursive=function(ee,J,le){var z,j;ee==="'"?j=this.__patterns.single_quote:ee==='"'?j=this.__patterns.double_quote:ee==="`"?j=this.__patterns.template_text:ee==="}"&&(j=this.__patterns.template_expression);for(var ie=j.read(),me="";this._input.hasNext();){if(me=this._input.next(),me===ee||!J&&S.newline.test(me)){this._input.back();break}else me==="\\"&&this._input.hasNext()?(z=this._input.peek(),z==="x"||z==="u"?this.has_char_escapes=!0:z==="\r"&&this._input.peek(1)===`
`&&this._input.next(),me+=this._input.next()):le&&(le==="${"&&me==="$"&&this._input.peek()==="{"&&(me+=this._input.next()),le===me&&(ee==="`"?me+=this._read_string_recursive("}",J,"`"):me+=this._read_string_recursive("`",J,"${"),this._input.hasNext()&&(me+=this._input.next())));me+=j.read(),ie+=me}return ie},u.exports.Tokenizer=V,u.exports.TOKEN=P,u.exports.positionable_operators=H.slice(),u.exports.line_starters=ne.slice()},function(u){var a=RegExp.prototype.hasOwnProperty("sticky");function x(p){this.__input=p||"",this.__input_length=this.__input.length,this.__position=0}x.prototype.restart=function(){this.__position=0},x.prototype.back=function(){this.__position>0&&(this.__position-=1)},x.prototype.hasNext=function(){return this.__position<this.__input_length},x.prototype.next=function(){var p=null;return this.hasNext()&&(p=this.__input.charAt(this.__position),this.__position+=1),p},x.prototype.peek=function(p){var y=null;return p=p||0,p+=this.__position,p>=0&&p<this.__input_length&&(y=this.__input.charAt(p)),y},x.prototype.__match=function(p,y){p.lastIndex=y;var m=p.exec(this.__input);return m&&!(a&&p.sticky)&&m.index!==y&&(m=null),m},x.prototype.test=function(p,y){return y=y||0,y+=this.__position,y>=0&&y<this.__input_length?!!this.__match(p,y):!1},x.prototype.testChar=function(p,y){var m=this.peek(y);return p.lastIndex=0,m!==null&&p.test(m)},x.prototype.match=function(p){var y=this.__match(p,this.__position);return y?this.__position+=y[0].length:y=null,y},x.prototype.read=function(p,y,m){var b="",S;return p&&(S=this.match(p),S&&(b+=S[0])),y&&(S||!p)&&(b+=this.readUntil(y,m)),b},x.prototype.readUntil=function(p,y){var m="",b=this.__position;p.lastIndex=this.__position;var S=p.exec(this.__input);return S?(b=S.index,y&&(b+=S[0].length)):b=this.__input_length,m=this.__input.substring(this.__position,b),this.__position=b,m},x.prototype.readUntilAfter=function(p){return this.readUntil(p,!0)},x.prototype.get_regexp=function(p,y){var m=null,b="g";return y&&a&&(b="y"),typeof p=="string"&&p!==""?m=new RegExp(p,b):p&&(m=new RegExp(p.source,b)),m},x.prototype.get_literal_regexp=function(p){return RegExp(p.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"))},x.prototype.peekUntilAfter=function(p){var y=this.__position,m=this.readUntilAfter(p);return this.__position=y,m},x.prototype.lookBack=function(p){var y=this.__position-1;return y>=p.length&&this.__input.substring(y-p.length,y).toLowerCase()===p},u.exports.InputScanner=x},function(u,a,x){var p=x(8).InputScanner,y=x(3).Token,m=x(10).TokenStream,b=x(11).WhitespacePattern,S={START:"TK_START",RAW:"TK_RAW",EOF:"TK_EOF"},k=function(R,A){this._input=new p(R),this._options=A||{},this.__tokens=null,this._patterns={},this._patterns.whitespace=new b(this._input)};k.prototype.tokenize=function(){this._input.restart(),this.__tokens=new m,this._reset();for(var R,A=new y(S.START,""),P=null,M=[],B=new m;A.type!==S.EOF;){for(R=this._get_next_token(A,P);this._is_comment(R);)B.add(R),R=this._get_next_token(A,P);B.isEmpty()||(R.comments_before=B,B=new m),R.parent=P,this._is_opening(R)?(M.push(P),P=R):P&&this._is_closing(R,P)&&(R.opened=P,P.closed=R,P=M.pop(),R.parent=P),R.previous=A,A.next=R,this.__tokens.add(R),A=R}return this.__tokens},k.prototype._is_first_token=function(){return this.__tokens.isEmpty()},k.prototype._reset=function(){},k.prototype._get_next_token=function(R,A){this._readWhitespace();var P=this._input.read(/.+/g);return P?this._create_token(S.RAW,P):this._create_token(S.EOF,"")},k.prototype._is_comment=function(R){return!1},k.prototype._is_opening=function(R){return!1},k.prototype._is_closing=function(R,A){return!1},k.prototype._create_token=function(R,A){var P=new y(R,A,this._patterns.whitespace.newline_count,this._patterns.whitespace.whitespace_before_token);return P},k.prototype._readWhitespace=function(){return this._patterns.whitespace.read()},u.exports.Tokenizer=k,u.exports.TOKEN=S},function(u){function a(x){this.__tokens=[],this.__tokens_length=this.__tokens.length,this.__position=0,this.__parent_token=x}a.prototype.restart=function(){this.__position=0},a.prototype.isEmpty=function(){return this.__tokens_length===0},a.prototype.hasNext=function(){return this.__position<this.__tokens_length},a.prototype.next=function(){var x=null;return this.hasNext()&&(x=this.__tokens[this.__position],this.__position+=1),x},a.prototype.peek=function(x){var p=null;return x=x||0,x+=this.__position,x>=0&&x<this.__tokens_length&&(p=this.__tokens[x]),p},a.prototype.add=function(x){this.__parent_token&&(x.parent=this.__parent_token),this.__tokens.push(x),this.__tokens_length+=1},u.exports.TokenStream=a},function(u,a,x){var p=x(12).Pattern;function y(m,b){p.call(this,m,b),b?this._line_regexp=this._input.get_regexp(b._line_regexp):this.__set_whitespace_patterns("",""),this.newline_count=0,this.whitespace_before_token=""}y.prototype=new p,y.prototype.__set_whitespace_patterns=function(m,b){m+="\\t ",b+="\\n\\r",this._match_pattern=this._input.get_regexp("["+m+b+"]+",!0),this._newline_regexp=this._input.get_regexp("\\r\\n|["+b+"]")},y.prototype.read=function(){this.newline_count=0,this.whitespace_before_token="";var m=this._input.read(this._match_pattern);if(m===" ")this.whitespace_before_token=" ";else if(m){var b=this.__split(this._newline_regexp,m);this.newline_count=b.length-1,this.whitespace_before_token=b[this.newline_count]}return m},y.prototype.matching=function(m,b){var S=this._create();return S.__set_whitespace_patterns(m,b),S._update(),S},y.prototype._create=function(){return new y(this._input,this)},y.prototype.__split=function(m,b){m.lastIndex=0;for(var S=0,k=[],R=m.exec(b);R;)k.push(b.substring(S,R.index)),S=R.index+R[0].length,R=m.exec(b);return S<b.length?k.push(b.substring(S,b.length)):k.push(""),k},u.exports.WhitespacePattern=y},function(u){function a(x,p){this._input=x,this._starting_pattern=null,this._match_pattern=null,this._until_pattern=null,this._until_after=!1,p&&(this._starting_pattern=this._input.get_regexp(p._starting_pattern,!0),this._match_pattern=this._input.get_regexp(p._match_pattern,!0),this._until_pattern=this._input.get_regexp(p._until_pattern),this._until_after=p._until_after)}a.prototype.read=function(){var x=this._input.read(this._starting_pattern);return(!this._starting_pattern||x)&&(x+=this._input.read(this._match_pattern,this._until_pattern,this._until_after)),x},a.prototype.read_match=function(){return this._input.match(this._match_pattern)},a.prototype.until_after=function(x){var p=this._create();return p._until_after=!0,p._until_pattern=this._input.get_regexp(x),p._update(),p},a.prototype.until=function(x){var p=this._create();return p._until_after=!1,p._until_pattern=this._input.get_regexp(x),p._update(),p},a.prototype.starting_with=function(x){var p=this._create();return p._starting_pattern=this._input.get_regexp(x,!0),p._update(),p},a.prototype.matching=function(x){var p=this._create();return p._match_pattern=this._input.get_regexp(x,!0),p._update(),p},a.prototype._create=function(){return new a(this._input,this)},a.prototype._update=function(){},u.exports.Pattern=a},function(u){function a(x,p){x=typeof x=="string"?x:x.source,p=typeof p=="string"?p:p.source,this.__directives_block_pattern=new RegExp(x+/ beautify( \w+[:]\w+)+ /.source+p,"g"),this.__directive_pattern=/ (\w+)[:](\w+)/g,this.__directives_end_ignore_pattern=new RegExp(x+/\sbeautify\signore:end\s/.source+p,"g")}a.prototype.get_directives=function(x){if(!x.match(this.__directives_block_pattern))return null;var p={};this.__directive_pattern.lastIndex=0;for(var y=this.__directive_pattern.exec(x);y;)p[y[1]]=y[2],y=this.__directive_pattern.exec(x);return p},a.prototype.readIgnored=function(x){return x.readUntilAfter(this.__directives_end_ignore_pattern)},u.exports.Directives=a},function(u,a,x){var p=x(12).Pattern,y={django:!1,erb:!1,handlebars:!1,php:!1,smarty:!1,angular:!1};function m(b,S){p.call(this,b,S),this.__template_pattern=null,this._disabled=Object.assign({},y),this._excluded=Object.assign({},y),S&&(this.__template_pattern=this._input.get_regexp(S.__template_pattern),this._excluded=Object.assign(this._excluded,S._excluded),this._disabled=Object.assign(this._disabled,S._disabled));var k=new p(b);this.__patterns={handlebars_comment:k.starting_with(/{{!--/).until_after(/--}}/),handlebars_unescaped:k.starting_with(/{{{/).until_after(/}}}/),handlebars:k.starting_with(/{{/).until_after(/}}/),php:k.starting_with(/<\?(?:[= ]|php)/).until_after(/\?>/),erb:k.starting_with(/<%[^%]/).until_after(/[^%]%>/),django:k.starting_with(/{%/).until_after(/%}/),django_value:k.starting_with(/{{/).until_after(/}}/),django_comment:k.starting_with(/{#/).until_after(/#}/),smarty:k.starting_with(/{(?=[^}{\s\n])/).until_after(/[^\s\n]}/),smarty_comment:k.starting_with(/{\*/).until_after(/\*}/),smarty_literal:k.starting_with(/{literal}/).until_after(/{\/literal}/)}}m.prototype=new p,m.prototype._create=function(){return new m(this._input,this)},m.prototype._update=function(){this.__set_templated_pattern()},m.prototype.disable=function(b){var S=this._create();return S._disabled[b]=!0,S._update(),S},m.prototype.read_options=function(b){var S=this._create();for(var k in y)S._disabled[k]=b.templating.indexOf(k)===-1;return S._update(),S},m.prototype.exclude=function(b){var S=this._create();return S._excluded[b]=!0,S._update(),S},m.prototype.read=function(){var b="";this._match_pattern?b=this._input.read(this._starting_pattern):b=this._input.read(this._starting_pattern,this.__template_pattern);for(var S=this._read_template();S;)this._match_pattern?S+=this._input.read(this._match_pattern):S+=this._input.readUntil(this.__template_pattern),b+=S,S=this._read_template();return this._until_after&&(b+=this._input.readUntilAfter(this._until_pattern)),b},m.prototype.__set_templated_pattern=function(){var b=[];this._disabled.php||b.push(this.__patterns.php._starting_pattern.source),this._disabled.handlebars||b.push(this.__patterns.handlebars._starting_pattern.source),this._disabled.angular||b.push(this.__patterns.handlebars._starting_pattern.source),this._disabled.erb||b.push(this.__patterns.erb._starting_pattern.source),this._disabled.django||(b.push(this.__patterns.django._starting_pattern.source),b.push(this.__patterns.django_value._starting_pattern.source),b.push(this.__patterns.django_comment._starting_pattern.source)),this._disabled.smarty||b.push(this.__patterns.smarty._starting_pattern.source),this._until_pattern&&b.push(this._until_pattern.source),this.__template_pattern=this._input.get_regexp("(?:"+b.join("|")+")")},m.prototype._read_template=function(){var b="",S=this._input.peek();if(S==="<"){var k=this._input.peek(1);!this._disabled.php&&!this._excluded.php&&k==="?"&&(b=b||this.__patterns.php.read()),!this._disabled.erb&&!this._excluded.erb&&k==="%"&&(b=b||this.__patterns.erb.read())}else S==="{"&&(!this._disabled.handlebars&&!this._excluded.handlebars&&(b=b||this.__patterns.handlebars_comment.read(),b=b||this.__patterns.handlebars_unescaped.read(),b=b||this.__patterns.handlebars.read()),this._disabled.django||(!this._excluded.django&&!this._excluded.handlebars&&(b=b||this.__patterns.django_value.read()),this._excluded.django||(b=b||this.__patterns.django_comment.read(),b=b||this.__patterns.django.read())),this._disabled.smarty||this._disabled.django&&this._disabled.handlebars&&(b=b||this.__patterns.smarty_comment.read(),b=b||this.__patterns.smarty_literal.read(),b=b||this.__patterns.smarty.read()));return b},u.exports.TemplatablePattern=m}],f={};function o(u){var a=f[u];if(a!==void 0)return a.exports;var x=f[u]={exports:{}};return c[u](x,x.exports,o),x.exports}var h=o(0);i=h})();var l=i;e=[],r=function(){return{js_beautify:l}}.apply(v,e),r!==void 0&&(d.exports=r)})()},15342:function(d){(function(e,r){d.exports=r()})(typeof self!="undefined"?self:this,function(){return function(v){var e={};function r(i){if(e[i])return e[i].exports;var l=e[i]={i,l:!1,exports:{}};return v[i].call(l.exports,l,l.exports,r),l.l=!0,l.exports}return r.m=v,r.c=e,r.d=function(i,l,c){r.o(i,l)||Object.defineProperty(i,l,{enumerable:!0,get:c})},r.r=function(i){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(i,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(i,"__esModule",{value:!0})},r.t=function(i,l){if(l&1&&(i=r(i)),l&8||l&4&&typeof i=="object"&&i&&i.__esModule)return i;var c=Object.create(null);if(r.r(c),Object.defineProperty(c,"default",{enumerable:!0,value:i}),l&2&&typeof i!="string")for(var f in i)r.d(c,f,function(o){return i[o]}.bind(null,f));return c},r.n=function(i){var l=i&&i.__esModule?function(){return i.default}:function(){return i};return r.d(l,"a",l),l},r.o=function(i,l){return Object.prototype.hasOwnProperty.call(i,l)},r.p="",r(r.s=1)}([function(v,e,r){},function(v,e,r){"use strict";r.r(e);var i=r(0),l=function(){function Ve(Z,Y,te){this.lexer=void 0,this.start=void 0,this.end=void 0,this.lexer=Z,this.start=Y,this.end=te}return Ve.range=function(Y,te){return te?!Y||!Y.loc||!te.loc||Y.loc.lexer!==te.loc.lexer?null:new Ve(Y.loc.lexer,Y.loc.start,te.loc.end):Y&&Y.loc},Ve}(),c=function(){function Ve(Y,te){this.text=void 0,this.loc=void 0,this.text=Y,this.loc=te}var Z=Ve.prototype;return Z.range=function(te,he){return new Ve(he,l.range(this,te))},Ve}(),f=function Ve(Z,Y){this.position=void 0;var te="KaTeX parse error: "+Z,he,we=Y&&Y.loc;if(we&&we.start<=we.end){var Ye=we.lexer.input;he=we.start;var wt=we.end;he===Ye.length?te+=" at end of input: ":te+=" at position "+(he+1)+": ";var $t=Ye.slice(he,wt).replace(/[^]/g,"$&\u0332"),cr;he>15?cr="\u2026"+Ye.slice(he-15,he):cr=Ye.slice(0,he);var Ir;wt+15<Ye.length?Ir=Ye.slice(wt,wt+15)+"\u2026":Ir=Ye.slice(wt),te+=cr+$t+Ir}var Yr=new Error(te);return Yr.name="ParseError",Yr.__proto__=Ve.prototype,Yr.position=he,Yr};f.prototype.__proto__=Error.prototype;var o=f,h=function(Z,Y){return Z.indexOf(Y)!==-1},u=function(Z,Y){return Z===void 0?Y:Z},a=/([A-Z])/g,x=function(Z){return Z.replace(a,"-$1").toLowerCase()},p={"&":"&amp;",">":"&gt;","<":"&lt;",'"':"&quot;","'":"&#x27;"},y=/[&><"']/g;function m(Ve){return String(Ve).replace(y,function(Z){return p[Z]})}var b=function Ve(Z){return Z.type==="ordgroup"||Z.type==="color"?Z.body.length===1?Ve(Z.body[0]):Z:Z.type==="font"?Ve(Z.body):Z},S=function(Z){var Y=b(Z);return Y.type==="mathord"||Y.type==="textord"||Y.type==="atom"},k=function(Z){if(!Z)throw new Error("Expected non-null, but got "+String(Z));return Z},R=function(Z){var Y=/^\s*([^\\/#]*?)(?::|&#0*58|&#x0*3a)/i.exec(Z);return Y!=null?Y[1]:"_relative"},A={contains:h,deflt:u,escape:m,hyphenate:x,getBaseElem:b,isCharacterBox:S,protocolFromUrl:R},P=function(){function Ve(Y){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,Y=Y||{},this.displayMode=A.deflt(Y.displayMode,!1),this.output=A.deflt(Y.output,"htmlAndMathml"),this.leqno=A.deflt(Y.leqno,!1),this.fleqn=A.deflt(Y.fleqn,!1),this.throwOnError=A.deflt(Y.throwOnError,!0),this.errorColor=A.deflt(Y.errorColor,"#cc0000"),this.macros=Y.macros||{},this.minRuleThickness=Math.max(0,A.deflt(Y.minRuleThickness,0)),this.colorIsTextColor=A.deflt(Y.colorIsTextColor,!1),this.strict=A.deflt(Y.strict,"warn"),this.trust=A.deflt(Y.trust,!1),this.maxSize=Math.max(0,A.deflt(Y.maxSize,1/0)),this.maxExpand=Math.max(0,A.deflt(Y.maxExpand,1e3))}var Z=Ve.prototype;return Z.reportNonstrict=function(te,he,we){var Ye=this.strict;if(typeof Ye=="function"&&(Ye=Ye(te,he,we)),!(!Ye||Ye==="ignore")){if(Ye===!0||Ye==="error")throw new o("LaTeX-incompatible input and strict mode is set to 'error': "+(he+" ["+te+"]"),we);Ye==="warn"?typeof console!="undefined"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(he+" ["+te+"]")):typeof console!="undefined"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+Ye+"': "+he+" ["+te+"]"))}},Z.useStrictBehavior=function(te,he,we){var Ye=this.strict;if(typeof Ye=="function")try{Ye=Ye(te,he,we)}catch(wt){Ye="error"}return!Ye||Ye==="ignore"?!1:Ye===!0||Ye==="error"?!0:Ye==="warn"?(typeof console!="undefined"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(he+" ["+te+"]")),!1):(typeof console!="undefined"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+Ye+"': "+he+" ["+te+"]")),!1)},Z.isTrusted=function(te){te.url&&!te.protocol&&(te.protocol=A.protocolFromUrl(te.url));var he=typeof this.trust=="function"?this.trust(te):this.trust;return!!he},Ve}(),M=function(){function Ve(Y,te,he){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=Y,this.size=te,this.cramped=he}var Z=Ve.prototype;return Z.sup=function(){return q[X[this.id]]},Z.sub=function(){return q[V[this.id]]},Z.fracNum=function(){return q[se[this.id]]},Z.fracDen=function(){return q[ee[this.id]]},Z.cramp=function(){return q[J[this.id]]},Z.text=function(){return q[le[this.id]]},Z.isTight=function(){return this.size>=2},Ve}(),B=0,N=1,K=2,H=3,W=4,ae=5,ne=6,oe=7,q=[new M(B,0,!1),new M(N,0,!0),new M(K,1,!1),new M(H,1,!0),new M(W,2,!1),new M(ae,2,!0),new M(ne,3,!1),new M(oe,3,!0)],X=[W,ae,W,ae,ne,oe,ne,oe],V=[ae,ae,ae,ae,oe,oe,oe,oe],se=[K,H,W,ae,ne,oe,ne,oe],ee=[H,H,ae,ae,oe,oe,oe,oe],J=[N,N,H,H,ae,ae,oe,oe],le=[B,N,K,H,K,H,K,H],z={DISPLAY:q[B],TEXT:q[K],SCRIPT:q[W],SCRIPTSCRIPT:q[ne]},j=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];function ie(Ve){for(var Z=0;Z<j.length;Z++)for(var Y=j[Z],te=0;te<Y.blocks.length;te++){var he=Y.blocks[te];if(Ve>=he[0]&&Ve<=he[1])return Y.name}return null}var me=[];j.forEach(function(Ve){return Ve.blocks.forEach(function(Z){return me.push.apply(me,Z)})});function Se(Ve){for(var Z=0;Z<me.length;Z+=2)if(Ve>=me[Z]&&Ve<=me[Z+1])return!0;return!1}var Ie=80,He=function(Z,Y){return"M95,"+(622+Z+Y)+`
c-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14
c0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54
c44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10
s173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429
c69,-144,104.5,-217.7,106.5,-221
l`+Z/2.075+" -"+Z+`
c5.3,-9.3,12,-14,20,-14
H400000v`+(40+Z)+`H845.2724
s-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7
c-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z
M`+(834+Z)+" "+Y+"h400000v"+(40+Z)+"h-400000z"},je=function(Z,Y){return"M263,"+(601+Z+Y)+`c0.7,0,18,39.7,52,119
c34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120
c340,-704.7,510.7,-1060.3,512,-1067
l`+Z/2.084+" -"+Z+`
c4.7,-7.3,11,-11,19,-11
H40000v`+(40+Z)+`H1012.3
s-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232
c-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1
s-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26
c-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z
M`+(1001+Z)+" "+Y+"h400000v"+(40+Z)+"h-400000z"},Dt=function(Z,Y){return"M983 "+(10+Z+Y)+`
l`+Z/3.13+" -"+Z+`
c4,-6.7,10,-10,18,-10 H400000v`+(40+Z)+`
H1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7
s-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744
c-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30
c26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722
c56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5
c53.7,-170.3,84.5,-266.8,92.5,-289.5z
M`+(1001+Z)+" "+Y+"h400000v"+(40+Z)+"h-400000z"},ht=function(Z,Y){return"M424,"+(2398+Z+Y)+`
c-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514
c0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20
s-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121
s209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081
l`+Z/4.223+" -"+Z+`c4,-6.7,10,-10,18,-10 H400000
v`+(40+Z)+`H1014.6
s-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185
c-2,6,-10,9,-24,9
c-8,0,-12,-0.7,-12,-2z M`+(1001+Z)+" "+Y+`
h400000v`+(40+Z)+"h-400000z"},It=function(Z,Y){return"M473,"+(2713+Z+Y)+`
c339.3,-1799.3,509.3,-2700,510,-2702 l`+Z/5.298+" -"+Z+`
c3.3,-7.3,9.3,-11,18,-11 H400000v`+(40+Z)+`H1017.7
s-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9
c-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200
c0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26
s76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104,
606zM`+(1001+Z)+" "+Y+"h400000v"+(40+Z)+"H1017.7z"},Zt=function(Z,Y,te){var he=te-54-Y-Z;return"M702 "+(Z+Y)+"H400000"+(40+Z)+`
H742v`+he+`l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1
h-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170
c-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667
219 661 l218 661zM702 `+Y+"H400000v"+(40+Z)+"H742z"},Rt=function(Z,Y,te){Y=1e3*Y;var he="";switch(Z){case"sqrtMain":he=He(Y,Ie);break;case"sqrtSize1":he=je(Y,Ie);break;case"sqrtSize2":he=Dt(Y,Ie);break;case"sqrtSize3":he=ht(Y,Ie);break;case"sqrtSize4":he=It(Y,Ie);break;case"sqrtTall":he=Zt(Y,Ie,te)}return he},ar={doubleleftarrow:`M262 157
l10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3
0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28
14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5
c2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5
157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87
-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7
-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z
m8 0v40h399730v-40zm0 194v40h399730v-40z`,doublerightarrow:`M399738 392l
-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5
14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88
-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68
-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18
-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782
c-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3
-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z`,leftarrow:`M400000 241H110l3-3c68.7-52.7 113.7-120
135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8
-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247
c-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208
490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3
1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202
l-3-3h399890zM100 241v40h399900v-40z`,leftbrace:`M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117
-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7
5-6 9-10 13-.7 1-7.3 1-20 1H6z`,leftbraceunder:`M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13
35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688
0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7
-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z`,leftgroup:`M400000 80
H435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0
435 0h399565z`,leftgroupunder:`M400000 262
H435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219
435 219h399565z`,leftharpoon:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3
-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5
-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7
-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z`,leftharpoonplus:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5
20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3
-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7
-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z
m0 0v40h400000v-40z`,leftharpoondown:`M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333
5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5
1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667
-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z`,leftharpoondownplus:`M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12
10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7
-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0
v40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z`,lefthook:`M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5
-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3
-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21
71.5 23h399859zM103 281v-40h399897v40z`,leftlinesegment:`M40 281 V428 H0 V94 H40 V241 H400000 v40z
M40 281 V428 H0 V94 H40 V241 H400000 v40z`,leftmapsto:`M40 281 V448H0V74H40V241H400000v40z
M40 281 V448H0V74H40V241H400000v40z`,leftToFrom:`M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23
-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8
c28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3
68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z`,longequal:`M0 50 h400000 v40H0z m0 194h40000v40H0z
M0 50 h400000 v40H0z m0 194h40000v40H0z`,midbrace:`M200428 334
c-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14
-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7
311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11
12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z`,midbraceunder:`M199572 214
c100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14
53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3
11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0
-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z`,oiintSize1:`M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6
-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z
m368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8
60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z`,oiintSize2:`M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8
-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z
m502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2
c0 110 84 276 504 276s502.4-166 502.4-276z`,oiiintSize1:`M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6
-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z
m525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0
85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z`,oiiintSize2:`M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8
-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z
m770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1
c0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z`,rightarrow:`M0 241v40h399891c-47.3 35.3-84 78-110 128
-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20
11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7
39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85
-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5
-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67
151.7 139 205zm0 0v40h399900v-40z`,rightbrace:`M400000 542l
-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5
s-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1
c124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z`,rightbraceunder:`M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3
28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237
-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z`,rightgroup:`M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0
3-1 3-3v-38c-76-158-257-219-435-219H0z`,rightgroupunder:`M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18
0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z`,rightharpoon:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3
-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2
-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58
69.2 92 94.5zm0 0v40h399900v-40z`,rightharpoonplus:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11
-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7
2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z
m0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z`,rightharpoondown:`M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8
8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5
-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95
-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z`,rightharpoondownplus:`M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8
15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3
8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3
-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z
m0-194v40h400000v-40zm0 0v40h400000v-40z`,righthook:`M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3
15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0
-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21
66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z`,rightlinesegment:`M399960 241 V94 h40 V428 h-40 V281 H0 v-40z
M399960 241 V94 h40 V428 h-40 V281 H0 v-40z`,rightToFrom:`M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23
1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32
-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142
-167z M100 147v40h399900v-40zM0 341v40h399900v-40z`,twoheadleftarrow:`M0 167c68 40
115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69
-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3
-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19
-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101
10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z`,twoheadrightarrow:`M400000 167
c-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3
41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42
18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333
-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70
101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z`,tilde1:`M200 55.538c-77 0-168 73.953-177 73.953-3 0-7
-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0
114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0
4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128
-68.267.847-113-73.952-191-73.952z`,tilde2:`M344 55.266c-142 0-300.638 81.316-311.5 86.418
-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9
31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114
c1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751
181.476 676 181.476c-149 0-189-126.21-332-126.21z`,tilde3:`M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457
-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0
411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697
16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696
-338 0-409-156.573-744-156.573z`,tilde4:`M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345
-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409
177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9
14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409
-175.236-744-175.236z`,vec:`M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5
3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11
10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63
-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1
-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59
H213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359
c-16-25.333-24-45-24-59z`,widehat1:`M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22
c-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z`,widehat2:`M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10
-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat3:`M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10
-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat4:`M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10
-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widecheck1:`M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1,
-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z`,widecheck2:`M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,
-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck3:`M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,
-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck4:`M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,
-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,baraboveleftarrow:`M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202
c4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5
c-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130
s-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47
121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6
s2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11
c0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z
M100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z`,rightarrowabovebar:`M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32
-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0
13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39
-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5
-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5
-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67
151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z`,baraboveshortleftharpoon:`M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11
c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17
c2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21
c-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40
c-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z
M0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z`,rightharpoonaboveshortbar:`M0,241 l0,40c399126,0,399993,0,399993,0
c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,
-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6
c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z
M0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z`,shortbaraboveleftharpoon:`M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11
c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9,
1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7,
-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z
M93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z`,shortrightharpoonabovebar:`M53,241l0,40c398570,0,399437,0,399437,0
c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,
-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6
c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z
M500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z`},$e=function(){function Ve(Y){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=Y,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}var Z=Ve.prototype;return Z.hasClass=function(te){return A.contains(this.classes,te)},Z.toNode=function(){for(var te=document.createDocumentFragment(),he=0;he<this.children.length;he++)te.appendChild(this.children[he].toNode());return te},Z.toMarkup=function(){for(var te="",he=0;he<this.children.length;he++)te+=this.children[he].toMarkup();return te},Z.toText=function(){var te=function(we){return we.toText()};return this.children.map(te).join("")},Ve}(),gt=function(Z){return Z.filter(function(Y){return Y}).join(" ")},Mt=function(Z,Y,te){if(this.classes=Z||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=te||{},Y){Y.style.isTight()&&this.classes.push("mtight");var he=Y.getColor();he&&(this.style.color=he)}},et=function(Z){var Y=document.createElement(Z);Y.className=gt(this.classes);for(var te in this.style)this.style.hasOwnProperty(te)&&(Y.style[te]=this.style[te]);for(var he in this.attributes)this.attributes.hasOwnProperty(he)&&Y.setAttribute(he,this.attributes[he]);for(var we=0;we<this.children.length;we++)Y.appendChild(this.children[we].toNode());return Y},ft=function(Z){var Y="<"+Z;this.classes.length&&(Y+=' class="'+A.escape(gt(this.classes))+'"');var te="";for(var he in this.style)this.style.hasOwnProperty(he)&&(te+=A.hyphenate(he)+":"+this.style[he]+";");te&&(Y+=' style="'+A.escape(te)+'"');for(var we in this.attributes)this.attributes.hasOwnProperty(we)&&(Y+=" "+we+'="'+A.escape(this.attributes[we])+'"');Y+=">";for(var Ye=0;Ye<this.children.length;Ye++)Y+=this.children[Ye].toMarkup();return Y+="</"+Z+">",Y},ot=function(){function Ve(Y,te,he,we){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,Mt.call(this,Y,he,we),this.children=te||[]}var Z=Ve.prototype;return Z.setAttribute=function(te,he){this.attributes[te]=he},Z.hasClass=function(te){return A.contains(this.classes,te)},Z.toNode=function(){return et.call(this,"span")},Z.toMarkup=function(){return ft.call(this,"span")},Ve}(),Je=function(){function Ve(Y,te,he,we){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,Mt.call(this,te,we),this.children=he||[],this.setAttribute("href",Y)}var Z=Ve.prototype;return Z.setAttribute=function(te,he){this.attributes[te]=he},Z.hasClass=function(te){return A.contains(this.classes,te)},Z.toNode=function(){return et.call(this,"a")},Z.toMarkup=function(){return ft.call(this,"a")},Ve}(),Ne=function(){function Ve(Y,te,he){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=te,this.src=Y,this.classes=["mord"],this.style=he}var Z=Ve.prototype;return Z.hasClass=function(te){return A.contains(this.classes,te)},Z.toNode=function(){var te=document.createElement("img");te.src=this.src,te.alt=this.alt,te.className="mord";for(var he in this.style)this.style.hasOwnProperty(he)&&(te.style[he]=this.style[he]);return te},Z.toMarkup=function(){var te="<img src='"+this.src+" 'alt='"+this.alt+"' ",he="";for(var we in this.style)this.style.hasOwnProperty(we)&&(he+=A.hyphenate(we)+":"+this.style[we]+";");return he&&(te+=' style="'+A.escape(he)+'"'),te+="'/>",te},Ve}(),ye={\u00EE:"\u0131\u0302",\u00EF:"\u0131\u0308",\u00ED:"\u0131\u0301",\u00EC:"\u0131\u0300"},ke=function(){function Ve(Y,te,he,we,Ye,wt,$t,cr){this.text=void 0,this.height=void 0,this.depth=void 0,this.italic=void 0,this.skew=void 0,this.width=void 0,this.maxFontSize=void 0,this.classes=void 0,this.style=void 0,this.text=Y,this.height=te||0,this.depth=he||0,this.italic=we||0,this.skew=Ye||0,this.width=wt||0,this.classes=$t||[],this.style=cr||{},this.maxFontSize=0;var Ir=ie(this.text.charCodeAt(0));Ir&&this.classes.push(Ir+"_fallback"),/[îïíì]/.test(this.text)&&(this.text=ye[this.text])}var Z=Ve.prototype;return Z.hasClass=function(te){return A.contains(this.classes,te)},Z.toNode=function(){var te=document.createTextNode(this.text),he=null;this.italic>0&&(he=document.createElement("span"),he.style.marginRight=this.italic+"em"),this.classes.length>0&&(he=he||document.createElement("span"),he.className=gt(this.classes));for(var we in this.style)this.style.hasOwnProperty(we)&&(he=he||document.createElement("span"),he.style[we]=this.style[we]);return he?(he.appendChild(te),he):te},Z.toMarkup=function(){var te=!1,he="<span";this.classes.length&&(te=!0,he+=' class="',he+=A.escape(gt(this.classes)),he+='"');var we="";this.italic>0&&(we+="margin-right:"+this.italic+"em;");for(var Ye in this.style)this.style.hasOwnProperty(Ye)&&(we+=A.hyphenate(Ye)+":"+this.style[Ye]+";");we&&(te=!0,he+=' style="'+A.escape(we)+'"');var wt=A.escape(this.text);return te?(he+=">",he+=wt,he+="</span>",he):wt},Ve}(),Ge=function(){function Ve(Y,te){this.children=void 0,this.attributes=void 0,this.children=Y||[],this.attributes=te||{}}var Z=Ve.prototype;return Z.toNode=function(){var te="http://www.w3.org/2000/svg",he=document.createElementNS(te,"svg");for(var we in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,we)&&he.setAttribute(we,this.attributes[we]);for(var Ye=0;Ye<this.children.length;Ye++)he.appendChild(this.children[Ye].toNode());return he},Z.toMarkup=function(){var te="<svg";for(var he in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,he)&&(te+=" "+he+"='"+this.attributes[he]+"'");te+=">";for(var we=0;we<this.children.length;we++)te+=this.children[we].toMarkup();return te+="</svg>",te},Ve}(),We=function(){function Ve(Y,te){this.pathName=void 0,this.alternate=void 0,this.pathName=Y,this.alternate=te}var Z=Ve.prototype;return Z.toNode=function(){var te="http://www.w3.org/2000/svg",he=document.createElementNS(te,"path");return this.alternate?he.setAttribute("d",this.alternate):he.setAttribute("d",ar[this.pathName]),he},Z.toMarkup=function(){return this.alternate?"<path d='"+this.alternate+"'/>":"<path d='"+ar[this.pathName]+"'/>"},Ve}(),Xe=function(){function Ve(Y){this.attributes=void 0,this.attributes=Y||{}}var Z=Ve.prototype;return Z.toNode=function(){var te="http://www.w3.org/2000/svg",he=document.createElementNS(te,"line");for(var we in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,we)&&he.setAttribute(we,this.attributes[we]);return he},Z.toMarkup=function(){var te="<line";for(var he in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,he)&&(te+=" "+he+"='"+this.attributes[he]+"'");return te+="/>",te},Ve}();function ut(Ve){if(Ve instanceof ke)return Ve;throw new Error("Expected symbolNode but got "+String(Ve)+".")}function pt(Ve){if(Ve instanceof ot)return Ve;throw new Error("Expected span<HtmlDomNode> but got "+String(Ve)+".")}var or={"AMS-Regular":{65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473]},"Fraktur-Regular":{33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],163:[0,.69444,0,0,.86853],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],163:[0,.69444,0,0,.76909],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],305:[0,.43056,0,.02778,.32246],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],567:[.19444,.43056,0,.08334,.38403],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.12,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,1],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.67,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.9,0,0,.278],8943:[-.19,.31,0,0,1.172],8945:[-.1,.82,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.744,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.744,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333]},"Math-Italic":{65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059]},"Math-Regular":{65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059]},"SansSerif-Bold":{33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212]},"Size1-Regular":{40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}},tr={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},Me={\u00C5:"A",\u00C7:"C",\u00D0:"D",\u00DE:"o",\u00E5:"a",\u00E7:"c",\u00F0:"d",\u00FE:"o",\u0410:"A",\u0411:"B",\u0412:"B",\u0413:"F",\u0414:"A",\u0415:"E",\u0416:"K",\u0417:"3",\u0418:"N",\u0419:"N",\u041A:"K",\u041B:"N",\u041C:"M",\u041D:"H",\u041E:"O",\u041F:"N",\u0420:"P",\u0421:"C",\u0422:"T",\u0423:"y",\u0424:"O",\u0425:"X",\u0426:"U",\u0427:"h",\u0428:"W",\u0429:"W",\u042A:"B",\u042B:"X",\u042C:"B",\u042D:"3",\u042E:"X",\u042F:"R",\u0430:"a",\u0431:"b",\u0432:"a",\u0433:"r",\u0434:"y",\u0435:"e",\u0436:"m",\u0437:"e",\u0438:"n",\u0439:"n",\u043A:"n",\u043B:"n",\u043C:"m",\u043D:"n",\u043E:"o",\u043F:"n",\u0440:"p",\u0441:"c",\u0442:"o",\u0443:"y",\u0444:"b",\u0445:"x",\u0446:"n",\u0447:"n",\u0448:"w",\u0449:"w",\u044A:"a",\u044B:"m",\u044C:"a",\u044D:"e",\u044E:"m",\u044F:"r"};function tt(Ve,Z){or[Ve]=Z}function Yt(Ve,Z,Y){if(!or[Z])throw new Error("Font metrics not found for font: "+Z+".");var te=Ve.charCodeAt(0),he=or[Z][te];if(!he&&Ve[0]in Me&&(te=Me[Ve[0]].charCodeAt(0),he=or[Z][te]),!he&&Y==="text"&&Se(te)&&(he=or[Z][77]),he)return{depth:he[0],height:he[1],italic:he[2],skew:he[3],width:he[4]}}var Ot={};function zt(Ve){var Z;if(Ve>=5?Z=0:Ve>=3?Z=1:Z=2,!Ot[Z]){var Y=Ot[Z]={cssEmPerMu:tr.quad[Z]/18};for(var te in tr)tr.hasOwnProperty(te)&&(Y[te]=tr[te][Z])}return Ot[Z]}var Ht={bin:1,close:1,inner:1,open:1,punct:1,rel:1},lr={"accent-token":1,mathord:1,"op-token":1,spacing:1,textord:1},Wt={math:{},text:{}},Ce=Wt;function ce(Ve,Z,Y,te,he,we){Wt[Ve][he]={font:Z,group:Y,replace:te},we&&te&&(Wt[Ve][te]=Wt[Ve][he])}var pe="math",Ct="text",Ae="main",st="ams",Gt="accent-token",bt="bin",Te="close",yt="inner",ze="mathord",xe="op-token",dt="open",Pt="punct",Be="rel",Or="spacing",mt="textord";ce(pe,Ae,Be,"\u2261","\\equiv",!0),ce(pe,Ae,Be,"\u227A","\\prec",!0),ce(pe,Ae,Be,"\u227B","\\succ",!0),ce(pe,Ae,Be,"\u223C","\\sim",!0),ce(pe,Ae,Be,"\u22A5","\\perp"),ce(pe,Ae,Be,"\u2AAF","\\preceq",!0),ce(pe,Ae,Be,"\u2AB0","\\succeq",!0),ce(pe,Ae,Be,"\u2243","\\simeq",!0),ce(pe,Ae,Be,"\u2223","\\mid",!0),ce(pe,Ae,Be,"\u226A","\\ll",!0),ce(pe,Ae,Be,"\u226B","\\gg",!0),ce(pe,Ae,Be,"\u224D","\\asymp",!0),ce(pe,Ae,Be,"\u2225","\\parallel"),ce(pe,Ae,Be,"\u22C8","\\bowtie",!0),ce(pe,Ae,Be,"\u2323","\\smile",!0),ce(pe,Ae,Be,"\u2291","\\sqsubseteq",!0),ce(pe,Ae,Be,"\u2292","\\sqsupseteq",!0),ce(pe,Ae,Be,"\u2250","\\doteq",!0),ce(pe,Ae,Be,"\u2322","\\frown",!0),ce(pe,Ae,Be,"\u220B","\\ni",!0),ce(pe,Ae,Be,"\u221D","\\propto",!0),ce(pe,Ae,Be,"\u22A2","\\vdash",!0),ce(pe,Ae,Be,"\u22A3","\\dashv",!0),ce(pe,Ae,Be,"\u220B","\\owns"),ce(pe,Ae,Pt,".","\\ldotp"),ce(pe,Ae,Pt,"\u22C5","\\cdotp"),ce(pe,Ae,mt,"#","\\#"),ce(Ct,Ae,mt,"#","\\#"),ce(pe,Ae,mt,"&","\\&"),ce(Ct,Ae,mt,"&","\\&"),ce(pe,Ae,mt,"\u2135","\\aleph",!0),ce(pe,Ae,mt,"\u2200","\\forall",!0),ce(pe,Ae,mt,"\u210F","\\hbar",!0),ce(pe,Ae,mt,"\u2203","\\exists",!0),ce(pe,Ae,mt,"\u2207","\\nabla",!0),ce(pe,Ae,mt,"\u266D","\\flat",!0),ce(pe,Ae,mt,"\u2113","\\ell",!0),ce(pe,Ae,mt,"\u266E","\\natural",!0),ce(pe,Ae,mt,"\u2663","\\clubsuit",!0),ce(pe,Ae,mt,"\u2118","\\wp",!0),ce(pe,Ae,mt,"\u266F","\\sharp",!0),ce(pe,Ae,mt,"\u2662","\\diamondsuit",!0),ce(pe,Ae,mt,"\u211C","\\Re",!0),ce(pe,Ae,mt,"\u2661","\\heartsuit",!0),ce(pe,Ae,mt,"\u2111","\\Im",!0),ce(pe,Ae,mt,"\u2660","\\spadesuit",!0),ce(Ct,Ae,mt,"\xA7","\\S",!0),ce(Ct,Ae,mt,"\xB6","\\P",!0),ce(pe,Ae,mt,"\u2020","\\dag"),ce(Ct,Ae,mt,"\u2020","\\dag"),ce(Ct,Ae,mt,"\u2020","\\textdagger"),ce(pe,Ae,mt,"\u2021","\\ddag"),ce(Ct,Ae,mt,"\u2021","\\ddag"),ce(Ct,Ae,mt,"\u2021","\\textdaggerdbl"),ce(pe,Ae,Te,"\u23B1","\\rmoustache",!0),ce(pe,Ae,dt,"\u23B0","\\lmoustache",!0),ce(pe,Ae,Te,"\u27EF","\\rgroup",!0),ce(pe,Ae,dt,"\u27EE","\\lgroup",!0),ce(pe,Ae,bt,"\u2213","\\mp",!0),ce(pe,Ae,bt,"\u2296","\\ominus",!0),ce(pe,Ae,bt,"\u228E","\\uplus",!0),ce(pe,Ae,bt,"\u2293","\\sqcap",!0),ce(pe,Ae,bt,"\u2217","\\ast"),ce(pe,Ae,bt,"\u2294","\\sqcup",!0),ce(pe,Ae,bt,"\u25EF","\\bigcirc"),ce(pe,Ae,bt,"\u2219","\\bullet"),ce(pe,Ae,bt,"\u2021","\\ddagger"),ce(pe,Ae,bt,"\u2240","\\wr",!0),ce(pe,Ae,bt,"\u2A3F","\\amalg"),ce(pe,Ae,bt,"&","\\And"),ce(pe,Ae,Be,"\u27F5","\\longleftarrow",!0),ce(pe,Ae,Be,"\u21D0","\\Leftarrow",!0),ce(pe,Ae,Be,"\u27F8","\\Longleftarrow",!0),ce(pe,Ae,Be,"\u27F6","\\longrightarrow",!0),ce(pe,Ae,Be,"\u21D2","\\Rightarrow",!0),ce(pe,Ae,Be,"\u27F9","\\Longrightarrow",!0),ce(pe,Ae,Be,"\u2194","\\leftrightarrow",!0),ce(pe,Ae,Be,"\u27F7","\\longleftrightarrow",!0),ce(pe,Ae,Be,"\u21D4","\\Leftrightarrow",!0),ce(pe,Ae,Be,"\u27FA","\\Longleftrightarrow",!0),ce(pe,Ae,Be,"\u21A6","\\mapsto",!0),ce(pe,Ae,Be,"\u27FC","\\longmapsto",!0),ce(pe,Ae,Be,"\u2197","\\nearrow",!0),ce(pe,Ae,Be,"\u21A9","\\hookleftarrow",!0),ce(pe,Ae,Be,"\u21AA","\\hookrightarrow",!0),ce(pe,Ae,Be,"\u2198","\\searrow",!0),ce(pe,Ae,Be,"\u21BC","\\leftharpoonup",!0),ce(pe,Ae,Be,"\u21C0","\\rightharpoonup",!0),ce(pe,Ae,Be,"\u2199","\\swarrow",!0),ce(pe,Ae,Be,"\u21BD","\\leftharpoondown",!0),ce(pe,Ae,Be,"\u21C1","\\rightharpoondown",!0),ce(pe,Ae,Be,"\u2196","\\nwarrow",!0),ce(pe,Ae,Be,"\u21CC","\\rightleftharpoons",!0),ce(pe,st,Be,"\u226E","\\nless",!0),ce(pe,st,Be,"\uE010","\\@nleqslant"),ce(pe,st,Be,"\uE011","\\@nleqq"),ce(pe,st,Be,"\u2A87","\\lneq",!0),ce(pe,st,Be,"\u2268","\\lneqq",!0),ce(pe,st,Be,"\uE00C","\\@lvertneqq"),ce(pe,st,Be,"\u22E6","\\lnsim",!0),ce(pe,st,Be,"\u2A89","\\lnapprox",!0),ce(pe,st,Be,"\u2280","\\nprec",!0),ce(pe,st,Be,"\u22E0","\\npreceq",!0),ce(pe,st,Be,"\u22E8","\\precnsim",!0),ce(pe,st,Be,"\u2AB9","\\precnapprox",!0),ce(pe,st,Be,"\u2241","\\nsim",!0),ce(pe,st,Be,"\uE006","\\@nshortmid"),ce(pe,st,Be,"\u2224","\\nmid",!0),ce(pe,st,Be,"\u22AC","\\nvdash",!0),ce(pe,st,Be,"\u22AD","\\nvDash",!0),ce(pe,st,Be,"\u22EA","\\ntriangleleft"),ce(pe,st,Be,"\u22EC","\\ntrianglelefteq",!0),ce(pe,st,Be,"\u228A","\\subsetneq",!0),ce(pe,st,Be,"\uE01A","\\@varsubsetneq"),ce(pe,st,Be,"\u2ACB","\\subsetneqq",!0),ce(pe,st,Be,"\uE017","\\@varsubsetneqq"),ce(pe,st,Be,"\u226F","\\ngtr",!0),ce(pe,st,Be,"\uE00F","\\@ngeqslant"),ce(pe,st,Be,"\uE00E","\\@ngeqq"),ce(pe,st,Be,"\u2A88","\\gneq",!0),ce(pe,st,Be,"\u2269","\\gneqq",!0),ce(pe,st,Be,"\uE00D","\\@gvertneqq"),ce(pe,st,Be,"\u22E7","\\gnsim",!0),ce(pe,st,Be,"\u2A8A","\\gnapprox",!0),ce(pe,st,Be,"\u2281","\\nsucc",!0),ce(pe,st,Be,"\u22E1","\\nsucceq",!0),ce(pe,st,Be,"\u22E9","\\succnsim",!0),ce(pe,st,Be,"\u2ABA","\\succnapprox",!0),ce(pe,st,Be,"\u2246","\\ncong",!0),ce(pe,st,Be,"\uE007","\\@nshortparallel"),ce(pe,st,Be,"\u2226","\\nparallel",!0),ce(pe,st,Be,"\u22AF","\\nVDash",!0),ce(pe,st,Be,"\u22EB","\\ntriangleright"),ce(pe,st,Be,"\u22ED","\\ntrianglerighteq",!0),ce(pe,st,Be,"\uE018","\\@nsupseteqq"),ce(pe,st,Be,"\u228B","\\supsetneq",!0),ce(pe,st,Be,"\uE01B","\\@varsupsetneq"),ce(pe,st,Be,"\u2ACC","\\supsetneqq",!0),ce(pe,st,Be,"\uE019","\\@varsupsetneqq"),ce(pe,st,Be,"\u22AE","\\nVdash",!0),ce(pe,st,Be,"\u2AB5","\\precneqq",!0),ce(pe,st,Be,"\u2AB6","\\succneqq",!0),ce(pe,st,Be,"\uE016","\\@nsubseteqq"),ce(pe,st,bt,"\u22B4","\\unlhd"),ce(pe,st,bt,"\u22B5","\\unrhd"),ce(pe,st,Be,"\u219A","\\nleftarrow",!0),ce(pe,st,Be,"\u219B","\\nrightarrow",!0),ce(pe,st,Be,"\u21CD","\\nLeftarrow",!0),ce(pe,st,Be,"\u21CF","\\nRightarrow",!0),ce(pe,st,Be,"\u21AE","\\nleftrightarrow",!0),ce(pe,st,Be,"\u21CE","\\nLeftrightarrow",!0),ce(pe,st,Be,"\u25B3","\\vartriangle"),ce(pe,st,mt,"\u210F","\\hslash"),ce(pe,st,mt,"\u25BD","\\triangledown"),ce(pe,st,mt,"\u25CA","\\lozenge"),ce(pe,st,mt,"\u24C8","\\circledS"),ce(pe,st,mt,"\xAE","\\circledR"),ce(Ct,st,mt,"\xAE","\\circledR"),ce(pe,st,mt,"\u2221","\\measuredangle",!0),ce(pe,st,mt,"\u2204","\\nexists"),ce(pe,st,mt,"\u2127","\\mho"),ce(pe,st,mt,"\u2132","\\Finv",!0),ce(pe,st,mt,"\u2141","\\Game",!0),ce(pe,st,mt,"\u2035","\\backprime"),ce(pe,st,mt,"\u25B2","\\blacktriangle"),ce(pe,st,mt,"\u25BC","\\blacktriangledown"),ce(pe,st,mt,"\u25A0","\\blacksquare"),ce(pe,st,mt,"\u29EB","\\blacklozenge"),ce(pe,st,mt,"\u2605","\\bigstar"),ce(pe,st,mt,"\u2222","\\sphericalangle",!0),ce(pe,st,mt,"\u2201","\\complement",!0),ce(pe,st,mt,"\xF0","\\eth",!0),ce(pe,st,mt,"\u2571","\\diagup"),ce(pe,st,mt,"\u2572","\\diagdown"),ce(pe,st,mt,"\u25A1","\\square"),ce(pe,st,mt,"\u25A1","\\Box"),ce(pe,st,mt,"\u25CA","\\Diamond"),ce(pe,st,mt,"\xA5","\\yen",!0),ce(Ct,st,mt,"\xA5","\\yen",!0),ce(pe,st,mt,"\u2713","\\checkmark",!0),ce(Ct,st,mt,"\u2713","\\checkmark"),ce(pe,st,mt,"\u2136","\\beth",!0),ce(pe,st,mt,"\u2138","\\daleth",!0),ce(pe,st,mt,"\u2137","\\gimel",!0),ce(pe,st,mt,"\u03DD","\\digamma",!0),ce(pe,st,mt,"\u03F0","\\varkappa"),ce(pe,st,dt,"\u250C","\\ulcorner",!0),ce(pe,st,Te,"\u2510","\\urcorner",!0),ce(pe,st,dt,"\u2514","\\llcorner",!0),ce(pe,st,Te,"\u2518","\\lrcorner",!0),ce(pe,st,Be,"\u2266","\\leqq",!0),ce(pe,st,Be,"\u2A7D","\\leqslant",!0),ce(pe,st,Be,"\u2A95","\\eqslantless",!0),ce(pe,st,Be,"\u2272","\\lesssim",!0),ce(pe,st,Be,"\u2A85","\\lessapprox",!0),ce(pe,st,Be,"\u224A","\\approxeq",!0),ce(pe,st,bt,"\u22D6","\\lessdot"),ce(pe,st,Be,"\u22D8","\\lll",!0),ce(pe,st,Be,"\u2276","\\lessgtr",!0),ce(pe,st,Be,"\u22DA","\\lesseqgtr",!0),ce(pe,st,Be,"\u2A8B","\\lesseqqgtr",!0),ce(pe,st,Be,"\u2251","\\doteqdot"),ce(pe,st,Be,"\u2253","\\risingdotseq",!0),ce(pe,st,Be,"\u2252","\\fallingdotseq",!0),ce(pe,st,Be,"\u223D","\\backsim",!0),ce(pe,st,Be,"\u22CD","\\backsimeq",!0),ce(pe,st,Be,"\u2AC5","\\subseteqq",!0),ce(pe,st,Be,"\u22D0","\\Subset",!0),ce(pe,st,Be,"\u228F","\\sqsubset",!0),ce(pe,st,Be,"\u227C","\\preccurlyeq",!0),ce(pe,st,Be,"\u22DE","\\curlyeqprec",!0),ce(pe,st,Be,"\u227E","\\precsim",!0),ce(pe,st,Be,"\u2AB7","\\precapprox",!0),ce(pe,st,Be,"\u22B2","\\vartriangleleft"),ce(pe,st,Be,"\u22B4","\\trianglelefteq"),ce(pe,st,Be,"\u22A8","\\vDash",!0),ce(pe,st,Be,"\u22AA","\\Vvdash",!0),ce(pe,st,Be,"\u2323","\\smallsmile"),ce(pe,st,Be,"\u2322","\\smallfrown"),ce(pe,st,Be,"\u224F","\\bumpeq",!0),ce(pe,st,Be,"\u224E","\\Bumpeq",!0),ce(pe,st,Be,"\u2267","\\geqq",!0),ce(pe,st,Be,"\u2A7E","\\geqslant",!0),ce(pe,st,Be,"\u2A96","\\eqslantgtr",!0),ce(pe,st,Be,"\u2273","\\gtrsim",!0),ce(pe,st,Be,"\u2A86","\\gtrapprox",!0),ce(pe,st,bt,"\u22D7","\\gtrdot"),ce(pe,st,Be,"\u22D9","\\ggg",!0),ce(pe,st,Be,"\u2277","\\gtrless",!0),ce(pe,st,Be,"\u22DB","\\gtreqless",!0),ce(pe,st,Be,"\u2A8C","\\gtreqqless",!0),ce(pe,st,Be,"\u2256","\\eqcirc",!0),ce(pe,st,Be,"\u2257","\\circeq",!0),ce(pe,st,Be,"\u225C","\\triangleq",!0),ce(pe,st,Be,"\u223C","\\thicksim"),ce(pe,st,Be,"\u2248","\\thickapprox"),ce(pe,st,Be,"\u2AC6","\\supseteqq",!0),ce(pe,st,Be,"\u22D1","\\Supset",!0),ce(pe,st,Be,"\u2290","\\sqsupset",!0),ce(pe,st,Be,"\u227D","\\succcurlyeq",!0),ce(pe,st,Be,"\u22DF","\\curlyeqsucc",!0),ce(pe,st,Be,"\u227F","\\succsim",!0),ce(pe,st,Be,"\u2AB8","\\succapprox",!0),ce(pe,st,Be,"\u22B3","\\vartriangleright"),ce(pe,st,Be,"\u22B5","\\trianglerighteq"),ce(pe,st,Be,"\u22A9","\\Vdash",!0),ce(pe,st,Be,"\u2223","\\shortmid"),ce(pe,st,Be,"\u2225","\\shortparallel"),ce(pe,st,Be,"\u226C","\\between",!0),ce(pe,st,Be,"\u22D4","\\pitchfork",!0),ce(pe,st,Be,"\u221D","\\varpropto"),ce(pe,st,Be,"\u25C0","\\blacktriangleleft"),ce(pe,st,Be,"\u2234","\\therefore",!0),ce(pe,st,Be,"\u220D","\\backepsilon"),ce(pe,st,Be,"\u25B6","\\blacktriangleright"),ce(pe,st,Be,"\u2235","\\because",!0),ce(pe,st,Be,"\u22D8","\\llless"),ce(pe,st,Be,"\u22D9","\\gggtr"),ce(pe,st,bt,"\u22B2","\\lhd"),ce(pe,st,bt,"\u22B3","\\rhd"),ce(pe,st,Be,"\u2242","\\eqsim",!0),ce(pe,Ae,Be,"\u22C8","\\Join"),ce(pe,st,Be,"\u2251","\\Doteq",!0),ce(pe,st,bt,"\u2214","\\dotplus",!0),ce(pe,st,bt,"\u2216","\\smallsetminus"),ce(pe,st,bt,"\u22D2","\\Cap",!0),ce(pe,st,bt,"\u22D3","\\Cup",!0),ce(pe,st,bt,"\u2A5E","\\doublebarwedge",!0),ce(pe,st,bt,"\u229F","\\boxminus",!0),ce(pe,st,bt,"\u229E","\\boxplus",!0),ce(pe,st,bt,"\u22C7","\\divideontimes",!0),ce(pe,st,bt,"\u22C9","\\ltimes",!0),ce(pe,st,bt,"\u22CA","\\rtimes",!0),ce(pe,st,bt,"\u22CB","\\leftthreetimes",!0),ce(pe,st,bt,"\u22CC","\\rightthreetimes",!0),ce(pe,st,bt,"\u22CF","\\curlywedge",!0),ce(pe,st,bt,"\u22CE","\\curlyvee",!0),ce(pe,st,bt,"\u229D","\\circleddash",!0),ce(pe,st,bt,"\u229B","\\circledast",!0),ce(pe,st,bt,"\u22C5","\\centerdot"),ce(pe,st,bt,"\u22BA","\\intercal",!0),ce(pe,st,bt,"\u22D2","\\doublecap"),ce(pe,st,bt,"\u22D3","\\doublecup"),ce(pe,st,bt,"\u22A0","\\boxtimes",!0),ce(pe,st,Be,"\u21E2","\\dashrightarrow",!0),ce(pe,st,Be,"\u21E0","\\dashleftarrow",!0),ce(pe,st,Be,"\u21C7","\\leftleftarrows",!0),ce(pe,st,Be,"\u21C6","\\leftrightarrows",!0),ce(pe,st,Be,"\u21DA","\\Lleftarrow",!0),ce(pe,st,Be,"\u219E","\\twoheadleftarrow",!0),ce(pe,st,Be,"\u21A2","\\leftarrowtail",!0),ce(pe,st,Be,"\u21AB","\\looparrowleft",!0),ce(pe,st,Be,"\u21CB","\\leftrightharpoons",!0),ce(pe,st,Be,"\u21B6","\\curvearrowleft",!0),ce(pe,st,Be,"\u21BA","\\circlearrowleft",!0),ce(pe,st,Be,"\u21B0","\\Lsh",!0),ce(pe,st,Be,"\u21C8","\\upuparrows",!0),ce(pe,st,Be,"\u21BF","\\upharpoonleft",!0),ce(pe,st,Be,"\u21C3","\\downharpoonleft",!0),ce(pe,st,Be,"\u22B8","\\multimap",!0),ce(pe,st,Be,"\u21AD","\\leftrightsquigarrow",!0),ce(pe,st,Be,"\u21C9","\\rightrightarrows",!0),ce(pe,st,Be,"\u21C4","\\rightleftarrows",!0),ce(pe,st,Be,"\u21A0","\\twoheadrightarrow",!0),ce(pe,st,Be,"\u21A3","\\rightarrowtail",!0),ce(pe,st,Be,"\u21AC","\\looparrowright",!0),ce(pe,st,Be,"\u21B7","\\curvearrowright",!0),ce(pe,st,Be,"\u21BB","\\circlearrowright",!0),ce(pe,st,Be,"\u21B1","\\Rsh",!0),ce(pe,st,Be,"\u21CA","\\downdownarrows",!0),ce(pe,st,Be,"\u21BE","\\upharpoonright",!0),ce(pe,st,Be,"\u21C2","\\downharpoonright",!0),ce(pe,st,Be,"\u21DD","\\rightsquigarrow",!0),ce(pe,st,Be,"\u21DD","\\leadsto"),ce(pe,st,Be,"\u21DB","\\Rrightarrow",!0),ce(pe,st,Be,"\u21BE","\\restriction"),ce(pe,Ae,mt,"\u2018","`"),ce(pe,Ae,mt,"$","\\$"),ce(Ct,Ae,mt,"$","\\$"),ce(Ct,Ae,mt,"$","\\textdollar"),ce(pe,Ae,mt,"%","\\%"),ce(Ct,Ae,mt,"%","\\%"),ce(pe,Ae,mt,"_","\\_"),ce(Ct,Ae,mt,"_","\\_"),ce(Ct,Ae,mt,"_","\\textunderscore"),ce(pe,Ae,mt,"\u2220","\\angle",!0),ce(pe,Ae,mt,"\u221E","\\infty",!0),ce(pe,Ae,mt,"\u2032","\\prime"),ce(pe,Ae,mt,"\u25B3","\\triangle"),ce(pe,Ae,mt,"\u0393","\\Gamma",!0),ce(pe,Ae,mt,"\u0394","\\Delta",!0),ce(pe,Ae,mt,"\u0398","\\Theta",!0),ce(pe,Ae,mt,"\u039B","\\Lambda",!0),ce(pe,Ae,mt,"\u039E","\\Xi",!0),ce(pe,Ae,mt,"\u03A0","\\Pi",!0),ce(pe,Ae,mt,"\u03A3","\\Sigma",!0),ce(pe,Ae,mt,"\u03A5","\\Upsilon",!0),ce(pe,Ae,mt,"\u03A6","\\Phi",!0),ce(pe,Ae,mt,"\u03A8","\\Psi",!0),ce(pe,Ae,mt,"\u03A9","\\Omega",!0),ce(pe,Ae,mt,"A","\u0391"),ce(pe,Ae,mt,"B","\u0392"),ce(pe,Ae,mt,"E","\u0395"),ce(pe,Ae,mt,"Z","\u0396"),ce(pe,Ae,mt,"H","\u0397"),ce(pe,Ae,mt,"I","\u0399"),ce(pe,Ae,mt,"K","\u039A"),ce(pe,Ae,mt,"M","\u039C"),ce(pe,Ae,mt,"N","\u039D"),ce(pe,Ae,mt,"O","\u039F"),ce(pe,Ae,mt,"P","\u03A1"),ce(pe,Ae,mt,"T","\u03A4"),ce(pe,Ae,mt,"X","\u03A7"),ce(pe,Ae,mt,"\xAC","\\neg",!0),ce(pe,Ae,mt,"\xAC","\\lnot"),ce(pe,Ae,mt,"\u22A4","\\top"),ce(pe,Ae,mt,"\u22A5","\\bot"),ce(pe,Ae,mt,"\u2205","\\emptyset"),ce(pe,st,mt,"\u2205","\\varnothing"),ce(pe,Ae,ze,"\u03B1","\\alpha",!0),ce(pe,Ae,ze,"\u03B2","\\beta",!0),ce(pe,Ae,ze,"\u03B3","\\gamma",!0),ce(pe,Ae,ze,"\u03B4","\\delta",!0),ce(pe,Ae,ze,"\u03F5","\\epsilon",!0),ce(pe,Ae,ze,"\u03B6","\\zeta",!0),ce(pe,Ae,ze,"\u03B7","\\eta",!0),ce(pe,Ae,ze,"\u03B8","\\theta",!0),ce(pe,Ae,ze,"\u03B9","\\iota",!0),ce(pe,Ae,ze,"\u03BA","\\kappa",!0),ce(pe,Ae,ze,"\u03BB","\\lambda",!0),ce(pe,Ae,ze,"\u03BC","\\mu",!0),ce(pe,Ae,ze,"\u03BD","\\nu",!0),ce(pe,Ae,ze,"\u03BE","\\xi",!0),ce(pe,Ae,ze,"\u03BF","\\omicron",!0),ce(pe,Ae,ze,"\u03C0","\\pi",!0),ce(pe,Ae,ze,"\u03C1","\\rho",!0),ce(pe,Ae,ze,"\u03C3","\\sigma",!0),ce(pe,Ae,ze,"\u03C4","\\tau",!0),ce(pe,Ae,ze,"\u03C5","\\upsilon",!0),ce(pe,Ae,ze,"\u03D5","\\phi",!0),ce(pe,Ae,ze,"\u03C7","\\chi",!0),ce(pe,Ae,ze,"\u03C8","\\psi",!0),ce(pe,Ae,ze,"\u03C9","\\omega",!0),ce(pe,Ae,ze,"\u03B5","\\varepsilon",!0),ce(pe,Ae,ze,"\u03D1","\\vartheta",!0),ce(pe,Ae,ze,"\u03D6","\\varpi",!0),ce(pe,Ae,ze,"\u03F1","\\varrho",!0),ce(pe,Ae,ze,"\u03C2","\\varsigma",!0),ce(pe,Ae,ze,"\u03C6","\\varphi",!0),ce(pe,Ae,bt,"\u2217","*"),ce(pe,Ae,bt,"+","+"),ce(pe,Ae,bt,"\u2212","-"),ce(pe,Ae,bt,"\u22C5","\\cdot",!0),ce(pe,Ae,bt,"\u2218","\\circ"),ce(pe,Ae,bt,"\xF7","\\div",!0),ce(pe,Ae,bt,"\xB1","\\pm",!0),ce(pe,Ae,bt,"\xD7","\\times",!0),ce(pe,Ae,bt,"\u2229","\\cap",!0),ce(pe,Ae,bt,"\u222A","\\cup",!0),ce(pe,Ae,bt,"\u2216","\\setminus"),ce(pe,Ae,bt,"\u2227","\\land"),ce(pe,Ae,bt,"\u2228","\\lor"),ce(pe,Ae,bt,"\u2227","\\wedge",!0),ce(pe,Ae,bt,"\u2228","\\vee",!0),ce(pe,Ae,mt,"\u221A","\\surd"),ce(pe,Ae,dt,"(","("),ce(pe,Ae,dt,"[","["),ce(pe,Ae,dt,"\u27E8","\\langle",!0),ce(pe,Ae,dt,"\u2223","\\lvert"),ce(pe,Ae,dt,"\u2225","\\lVert"),ce(pe,Ae,Te,")",")"),ce(pe,Ae,Te,"]","]"),ce(pe,Ae,Te,"?","?"),ce(pe,Ae,Te,"!","!"),ce(pe,Ae,Te,"\u27E9","\\rangle",!0),ce(pe,Ae,Te,"\u2223","\\rvert"),ce(pe,Ae,Te,"\u2225","\\rVert"),ce(pe,Ae,Be,"=","="),ce(pe,Ae,Be,"<","<"),ce(pe,Ae,Be,">",">"),ce(pe,Ae,Be,":",":"),ce(pe,Ae,Be,"\u2248","\\approx",!0),ce(pe,Ae,Be,"\u2245","\\cong",!0),ce(pe,Ae,Be,"\u2265","\\ge"),ce(pe,Ae,Be,"\u2265","\\geq",!0),ce(pe,Ae,Be,"\u2190","\\gets"),ce(pe,Ae,Be,">","\\gt"),ce(pe,Ae,Be,"\u2208","\\in",!0),ce(pe,Ae,Be,"\uE020","\\@not"),ce(pe,Ae,Be,"\u2282","\\subset",!0),ce(pe,Ae,Be,"\u2283","\\supset",!0),ce(pe,Ae,Be,"\u2286","\\subseteq",!0),ce(pe,Ae,Be,"\u2287","\\supseteq",!0),ce(pe,st,Be,"\u2288","\\nsubseteq",!0),ce(pe,st,Be,"\u2289","\\nsupseteq",!0),ce(pe,Ae,Be,"\u22A8","\\models"),ce(pe,Ae,Be,"\u2190","\\leftarrow",!0),ce(pe,Ae,Be,"\u2264","\\le"),ce(pe,Ae,Be,"\u2264","\\leq",!0),ce(pe,Ae,Be,"<","\\lt"),ce(pe,Ae,Be,"\u2192","\\rightarrow",!0),ce(pe,Ae,Be,"\u2192","\\to"),ce(pe,st,Be,"\u2271","\\ngeq",!0),ce(pe,st,Be,"\u2270","\\nleq",!0),ce(pe,Ae,Or,"\xA0","\\ "),ce(pe,Ae,Or,"\xA0","~"),ce(pe,Ae,Or,"\xA0","\\space"),ce(pe,Ae,Or,"\xA0","\\nobreakspace"),ce(Ct,Ae,Or,"\xA0","\\ "),ce(Ct,Ae,Or,"\xA0","~"),ce(Ct,Ae,Or,"\xA0","\\space"),ce(Ct,Ae,Or,"\xA0","\\nobreakspace"),ce(pe,Ae,Or,null,"\\nobreak"),ce(pe,Ae,Or,null,"\\allowbreak"),ce(pe,Ae,Pt,",",","),ce(pe,Ae,Pt,";",";"),ce(pe,st,bt,"\u22BC","\\barwedge",!0),ce(pe,st,bt,"\u22BB","\\veebar",!0),ce(pe,Ae,bt,"\u2299","\\odot",!0),ce(pe,Ae,bt,"\u2295","\\oplus",!0),ce(pe,Ae,bt,"\u2297","\\otimes",!0),ce(pe,Ae,mt,"\u2202","\\partial",!0),ce(pe,Ae,bt,"\u2298","\\oslash",!0),ce(pe,st,bt,"\u229A","\\circledcirc",!0),ce(pe,st,bt,"\u22A1","\\boxdot",!0),ce(pe,Ae,bt,"\u25B3","\\bigtriangleup"),ce(pe,Ae,bt,"\u25BD","\\bigtriangledown"),ce(pe,Ae,bt,"\u2020","\\dagger"),ce(pe,Ae,bt,"\u22C4","\\diamond"),ce(pe,Ae,bt,"\u22C6","\\star"),ce(pe,Ae,bt,"\u25C3","\\triangleleft"),ce(pe,Ae,bt,"\u25B9","\\triangleright"),ce(pe,Ae,dt,"{","\\{"),ce(Ct,Ae,mt,"{","\\{"),ce(Ct,Ae,mt,"{","\\textbraceleft"),ce(pe,Ae,Te,"}","\\}"),ce(Ct,Ae,mt,"}","\\}"),ce(Ct,Ae,mt,"}","\\textbraceright"),ce(pe,Ae,dt,"{","\\lbrace"),ce(pe,Ae,Te,"}","\\rbrace"),ce(pe,Ae,dt,"[","\\lbrack"),ce(Ct,Ae,mt,"[","\\lbrack"),ce(pe,Ae,Te,"]","\\rbrack"),ce(Ct,Ae,mt,"]","\\rbrack"),ce(pe,Ae,dt,"(","\\lparen"),ce(pe,Ae,Te,")","\\rparen"),ce(Ct,Ae,mt,"<","\\textless"),ce(Ct,Ae,mt,">","\\textgreater"),ce(pe,Ae,dt,"\u230A","\\lfloor",!0),ce(pe,Ae,Te,"\u230B","\\rfloor",!0),ce(pe,Ae,dt,"\u2308","\\lceil",!0),ce(pe,Ae,Te,"\u2309","\\rceil",!0),ce(pe,Ae,mt,"\\","\\backslash"),ce(pe,Ae,mt,"\u2223","|"),ce(pe,Ae,mt,"\u2223","\\vert"),ce(Ct,Ae,mt,"|","\\textbar"),ce(pe,Ae,mt,"\u2225","\\|"),ce(pe,Ae,mt,"\u2225","\\Vert"),ce(Ct,Ae,mt,"\u2225","\\textbardbl"),ce(Ct,Ae,mt,"~","\\textasciitilde"),ce(Ct,Ae,mt,"\\","\\textbackslash"),ce(Ct,Ae,mt,"^","\\textasciicircum"),ce(pe,Ae,Be,"\u2191","\\uparrow",!0),ce(pe,Ae,Be,"\u21D1","\\Uparrow",!0),ce(pe,Ae,Be,"\u2193","\\downarrow",!0),ce(pe,Ae,Be,"\u21D3","\\Downarrow",!0),ce(pe,Ae,Be,"\u2195","\\updownarrow",!0),ce(pe,Ae,Be,"\u21D5","\\Updownarrow",!0),ce(pe,Ae,xe,"\u2210","\\coprod"),ce(pe,Ae,xe,"\u22C1","\\bigvee"),ce(pe,Ae,xe,"\u22C0","\\bigwedge"),ce(pe,Ae,xe,"\u2A04","\\biguplus"),ce(pe,Ae,xe,"\u22C2","\\bigcap"),ce(pe,Ae,xe,"\u22C3","\\bigcup"),ce(pe,Ae,xe,"\u222B","\\int"),ce(pe,Ae,xe,"\u222B","\\intop"),ce(pe,Ae,xe,"\u222C","\\iint"),ce(pe,Ae,xe,"\u222D","\\iiint"),ce(pe,Ae,xe,"\u220F","\\prod"),ce(pe,Ae,xe,"\u2211","\\sum"),ce(pe,Ae,xe,"\u2A02","\\bigotimes"),ce(pe,Ae,xe,"\u2A01","\\bigoplus"),ce(pe,Ae,xe,"\u2A00","\\bigodot"),ce(pe,Ae,xe,"\u222E","\\oint"),ce(pe,Ae,xe,"\u222F","\\oiint"),ce(pe,Ae,xe,"\u2230","\\oiiint"),ce(pe,Ae,xe,"\u2A06","\\bigsqcup"),ce(pe,Ae,xe,"\u222B","\\smallint"),ce(Ct,Ae,yt,"\u2026","\\textellipsis"),ce(pe,Ae,yt,"\u2026","\\mathellipsis"),ce(Ct,Ae,yt,"\u2026","\\ldots",!0),ce(pe,Ae,yt,"\u2026","\\ldots",!0),ce(pe,Ae,yt,"\u22EF","\\@cdots",!0),ce(pe,Ae,yt,"\u22F1","\\ddots",!0),ce(pe,Ae,mt,"\u22EE","\\varvdots"),ce(pe,Ae,Gt,"\u02CA","\\acute"),ce(pe,Ae,Gt,"\u02CB","\\grave"),ce(pe,Ae,Gt,"\xA8","\\ddot"),ce(pe,Ae,Gt,"~","\\tilde"),ce(pe,Ae,Gt,"\u02C9","\\bar"),ce(pe,Ae,Gt,"\u02D8","\\breve"),ce(pe,Ae,Gt,"\u02C7","\\check"),ce(pe,Ae,Gt,"^","\\hat"),ce(pe,Ae,Gt,"\u20D7","\\vec"),ce(pe,Ae,Gt,"\u02D9","\\dot"),ce(pe,Ae,Gt,"\u02DA","\\mathring"),ce(pe,Ae,ze,"\u0131","\\imath",!0),ce(pe,Ae,ze,"\u0237","\\jmath",!0),ce(Ct,Ae,mt,"\u0131","\\i",!0),ce(Ct,Ae,mt,"\u0237","\\j",!0),ce(Ct,Ae,mt,"\xDF","\\ss",!0),ce(Ct,Ae,mt,"\xE6","\\ae",!0),ce(Ct,Ae,mt,"\xE6","\\ae",!0),ce(Ct,Ae,mt,"\u0153","\\oe",!0),ce(Ct,Ae,mt,"\xF8","\\o",!0),ce(Ct,Ae,mt,"\xC6","\\AE",!0),ce(Ct,Ae,mt,"\u0152","\\OE",!0),ce(Ct,Ae,mt,"\xD8","\\O",!0),ce(Ct,Ae,Gt,"\u02CA","\\'"),ce(Ct,Ae,Gt,"\u02CB","\\`"),ce(Ct,Ae,Gt,"\u02C6","\\^"),ce(Ct,Ae,Gt,"\u02DC","\\~"),ce(Ct,Ae,Gt,"\u02C9","\\="),ce(Ct,Ae,Gt,"\u02D8","\\u"),ce(Ct,Ae,Gt,"\u02D9","\\."),ce(Ct,Ae,Gt,"\u02DA","\\r"),ce(Ct,Ae,Gt,"\u02C7","\\v"),ce(Ct,Ae,Gt,"\xA8",'\\"'),ce(Ct,Ae,Gt,"\u02DD","\\H"),ce(Ct,Ae,Gt,"\u25EF","\\textcircled");var qr={"--":!0,"---":!0,"``":!0,"''":!0};ce(Ct,Ae,mt,"\u2013","--"),ce(Ct,Ae,mt,"\u2013","\\textendash"),ce(Ct,Ae,mt,"\u2014","---"),ce(Ct,Ae,mt,"\u2014","\\textemdash"),ce(Ct,Ae,mt,"\u2018","`"),ce(Ct,Ae,mt,"\u2018","\\textquoteleft"),ce(Ct,Ae,mt,"\u2019","'"),ce(Ct,Ae,mt,"\u2019","\\textquoteright"),ce(Ct,Ae,mt,"\u201C","``"),ce(Ct,Ae,mt,"\u201C","\\textquotedblleft"),ce(Ct,Ae,mt,"\u201D","''"),ce(Ct,Ae,mt,"\u201D","\\textquotedblright"),ce(pe,Ae,mt,"\xB0","\\degree",!0),ce(Ct,Ae,mt,"\xB0","\\degree"),ce(Ct,Ae,mt,"\xB0","\\textdegree",!0),ce(pe,Ae,ze,"\xA3","\\pounds"),ce(pe,Ae,ze,"\xA3","\\mathsterling",!0),ce(Ct,Ae,ze,"\xA3","\\pounds"),ce(Ct,Ae,ze,"\xA3","\\textsterling",!0),ce(pe,st,mt,"\u2720","\\maltese"),ce(Ct,st,mt,"\u2720","\\maltese"),ce(Ct,Ae,Or,"\xA0","\\ "),ce(Ct,Ae,Or,"\xA0"," "),ce(Ct,Ae,Or,"\xA0","~");for(var an='0123456789/@."',Nt=0;Nt<an.length;Nt++){var qt=an.charAt(Nt);ce(pe,Ae,mt,qt,qt)}for(var Lt='0123456789!@*()-=+[]<>|";:?/.,',Xt=0;Xt<Lt.length;Xt++){var Er=Lt.charAt(Xt);ce(Ct,Ae,mt,Er,Er)}for(var Pr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",At=0;At<Pr.length;At++){var Kt=Pr.charAt(At);ce(pe,Ae,ze,Kt,Kt),ce(Ct,Ae,mt,Kt,Kt)}ce(pe,st,mt,"C","\u2102"),ce(Ct,st,mt,"C","\u2102"),ce(pe,st,mt,"H","\u210D"),ce(Ct,st,mt,"H","\u210D"),ce(pe,st,mt,"N","\u2115"),ce(Ct,st,mt,"N","\u2115"),ce(pe,st,mt,"P","\u2119"),ce(Ct,st,mt,"P","\u2119"),ce(pe,st,mt,"Q","\u211A"),ce(Ct,st,mt,"Q","\u211A"),ce(pe,st,mt,"R","\u211D"),ce(Ct,st,mt,"R","\u211D"),ce(pe,st,mt,"Z","\u2124"),ce(Ct,st,mt,"Z","\u2124"),ce(pe,Ae,ze,"h","\u210E"),ce(Ct,Ae,ze,"h","\u210E");for(var Bt="",Jt=0;Jt<Pr.length;Jt++){var br=Pr.charAt(Jt);Bt=String.fromCharCode(55349,56320+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56372+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56424+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56580+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56736+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56788+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56840+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56944+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Jt<26&&(Bt=String.fromCharCode(55349,56632+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt),Bt=String.fromCharCode(55349,56476+Jt),ce(pe,Ae,ze,br,Bt),ce(Ct,Ae,mt,br,Bt))}Bt="\u{1D55C}",ce(pe,Ae,ze,"k",Bt),ce(Ct,Ae,mt,"k",Bt);for(var Xr=0;Xr<10;Xr++){var Wr=Xr.toString();Bt=String.fromCharCode(55349,57294+Xr),ce(pe,Ae,ze,Wr,Bt),ce(Ct,Ae,mt,Wr,Bt),Bt=String.fromCharCode(55349,57314+Xr),ce(pe,Ae,ze,Wr,Bt),ce(Ct,Ae,mt,Wr,Bt),Bt=String.fromCharCode(55349,57324+Xr),ce(pe,Ae,ze,Wr,Bt),ce(Ct,Ae,mt,Wr,Bt),Bt=String.fromCharCode(55349,57334+Xr),ce(pe,Ae,ze,Wr,Bt),ce(Ct,Ae,mt,Wr,Bt)}for(var jn="\xC7\xD0\xDE\xE7\xFE",wn=0;wn<jn.length;wn++){var Yn=jn.charAt(wn);ce(pe,Ae,ze,Yn,Yn),ce(Ct,Ae,mt,Yn,Yn)}ce(Ct,Ae,mt,"\xF0","\xF0"),ce(Ct,Ae,mt,"\u2013","\u2013"),ce(Ct,Ae,mt,"\u2014","\u2014"),ce(Ct,Ae,mt,"\u2018","\u2018"),ce(Ct,Ae,mt,"\u2019","\u2019"),ce(Ct,Ae,mt,"\u201C","\u201C"),ce(Ct,Ae,mt,"\u201D","\u201D");var St=[["mathbf","textbf","Main-Bold"],["mathbf","textbf","Main-Bold"],["mathdefault","textit","Math-Italic"],["mathdefault","textit","Math-Italic"],["boldsymbol","boldsymbol","Main-BoldItalic"],["boldsymbol","boldsymbol","Main-BoldItalic"],["mathscr","textscr","Script-Regular"],["","",""],["","",""],["","",""],["mathfrak","textfrak","Fraktur-Regular"],["mathfrak","textfrak","Fraktur-Regular"],["mathbb","textbb","AMS-Regular"],["mathbb","textbb","AMS-Regular"],["","",""],["","",""],["mathsf","textsf","SansSerif-Regular"],["mathsf","textsf","SansSerif-Regular"],["mathboldsf","textboldsf","SansSerif-Bold"],["mathboldsf","textboldsf","SansSerif-Bold"],["mathitsf","textitsf","SansSerif-Italic"],["mathitsf","textitsf","SansSerif-Italic"],["","",""],["","",""],["mathtt","texttt","Typewriter-Regular"],["mathtt","texttt","Typewriter-Regular"]],Vr=[["mathbf","textbf","Main-Bold"],["","",""],["mathsf","textsf","SansSerif-Regular"],["mathboldsf","textboldsf","SansSerif-Bold"],["mathtt","texttt","Typewriter-Regular"]],ii=function(Z,Y){var te=Z.charCodeAt(0),he=Z.charCodeAt(1),we=(te-55296)*1024+(he-56320)+65536,Ye=Y==="math"?0:1;if(119808<=we&&we<120484){var wt=Math.floor((we-119808)/26);return[St[wt][2],St[wt][Ye]]}else if(120782<=we&&we<=120831){var $t=Math.floor((we-120782)/10);return[Vr[$t][2],Vr[$t][Ye]]}else{if(we===120485||we===120486)return[St[0][2],St[0][Ye]];if(120486<we&&we<120782)return["",""];throw new o("Unsupported character: "+Z)}},Bi=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],Gn=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],ci=function(Z,Y){return Y.size<2?Z:Bi[Z-1][Y.size-1]},Oi=function(){function Ve(Y){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=Y.style,this.color=Y.color,this.size=Y.size||Ve.BASESIZE,this.textSize=Y.textSize||this.size,this.phantom=!!Y.phantom,this.font=Y.font||"",this.fontFamily=Y.fontFamily||"",this.fontWeight=Y.fontWeight||"",this.fontShape=Y.fontShape||"",this.sizeMultiplier=Gn[this.size-1],this.maxSize=Y.maxSize,this.minRuleThickness=Y.minRuleThickness,this._fontMetrics=void 0}var Z=Ve.prototype;return Z.extend=function(te){var he={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(var we in te)te.hasOwnProperty(we)&&(he[we]=te[we]);return new Ve(he)},Z.havingStyle=function(te){return this.style===te?this:this.extend({style:te,size:ci(this.textSize,te)})},Z.havingCrampedStyle=function(){return this.havingStyle(this.style.cramp())},Z.havingSize=function(te){return this.size===te&&this.textSize===te?this:this.extend({style:this.style.text(),size:te,textSize:te,sizeMultiplier:Gn[te-1]})},Z.havingBaseStyle=function(te){te=te||this.style.text();var he=ci(Ve.BASESIZE,te);return this.size===he&&this.textSize===Ve.BASESIZE&&this.style===te?this:this.extend({style:te,size:he})},Z.havingBaseSizing=function(){var te;switch(this.style.id){case 4:case 5:te=3;break;case 6:case 7:te=1;break;default:te=6}return this.extend({style:this.style.text(),size:te})},Z.withColor=function(te){return this.extend({color:te})},Z.withPhantom=function(){return this.extend({phantom:!0})},Z.withFont=function(te){return this.extend({font:te})},Z.withTextFontFamily=function(te){return this.extend({fontFamily:te,font:""})},Z.withTextFontWeight=function(te){return this.extend({fontWeight:te,font:""})},Z.withTextFontShape=function(te){return this.extend({fontShape:te,font:""})},Z.sizingClasses=function(te){return te.size!==this.size?["sizing","reset-size"+te.size,"size"+this.size]:[]},Z.baseSizingClasses=function(){return this.size!==Ve.BASESIZE?["sizing","reset-size"+this.size,"size"+Ve.BASESIZE]:[]},Z.fontMetrics=function(){return this._fontMetrics||(this._fontMetrics=zt(this.size)),this._fontMetrics},Z.getColor=function(){return this.phantom?"transparent":this.color},Ve}();Oi.BASESIZE=6;var $i=Oi,Ai={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:803/800,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:803/800},ji={ex:!0,em:!0,mu:!0},ha=function(Z){return typeof Z!="string"&&(Z=Z.unit),Z in Ai||Z in ji||Z==="ex"},ea=function(Z,Y){var te;if(Z.unit in Ai)te=Ai[Z.unit]/Y.fontMetrics().ptPerEm/Y.sizeMultiplier;else if(Z.unit==="mu")te=Y.fontMetrics().cssEmPerMu;else{var he;if(Y.style.isTight()?he=Y.havingStyle(Y.style.text()):he=Y,Z.unit==="ex")te=he.fontMetrics().xHeight;else if(Z.unit==="em")te=he.fontMetrics().quad;else throw new o("Invalid unit: '"+Z.unit+"'");he!==Y&&(te*=he.sizeMultiplier/Y.sizeMultiplier)}return Math.min(Z.number*te,Y.maxSize)},Yi=["\\imath","\u0131","\\jmath","\u0237","\\pounds","\\mathsterling","\\textsterling","\xA3"],mi=function(Z,Y,te){return Ce[te][Z]&&Ce[te][Z].replace&&(Z=Ce[te][Z].replace),{value:Z,metrics:Yt(Z,Y,te)}},zi=function(Z,Y,te,he,we){var Ye=mi(Z,Y,te),wt=Ye.metrics;Z=Ye.value;var $t;if(wt){var cr=wt.italic;(te==="text"||he&&he.font==="mathit")&&(cr=0),$t=new ke(Z,wt.height,wt.depth,cr,wt.skew,wt.width,we)}else typeof console!="undefined"&&console.warn("No character metrics "+("for '"+Z+"' in style '"+Y+"' and mode '"+te+"'")),$t=new ke(Z,0,0,0,0,0,we);if(he){$t.maxFontSize=he.sizeMultiplier,he.style.isTight()&&$t.classes.push("mtight");var Ir=he.getColor();Ir&&($t.style.color=Ir)}return $t},Ca=function(Z,Y,te,he){return he===void 0&&(he=[]),te.font==="boldsymbol"&&mi(Z,"Main-Bold",Y).metrics?zi(Z,"Main-Bold",Y,te,he.concat(["mathbf"])):Z==="\\"||Ce[Y][Z].font==="main"?zi(Z,"Main-Regular",Y,te,he):zi(Z,"AMS-Regular",Y,te,he.concat(["amsrm"]))},xt=function(Z,Y,te,he){return/[0-9]/.test(Z.charAt(0))||A.contains(Yi,Z)?{fontName:"Main-Italic",fontClass:"mathit"}:{fontName:"Math-Italic",fontClass:"mathdefault"}},xa=function(Z,Y,te,he){return A.contains(Yi,Z)?{fontName:"Main-Italic",fontClass:"mathit"}:/[0-9]/.test(Z.charAt(0))?{fontName:"Caligraphic-Regular",fontClass:"mathcal"}:{fontName:"Math-Italic",fontClass:"mathdefault"}},Zi=function(Z,Y,te,he){return mi(Z,"Math-BoldItalic",Y).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}},_i=function(Z,Y,te){var he=Z.mode,we=Z.text,Ye=["mord"],wt=he==="math"||he==="text"&&Y.font,$t=wt?Y.font:Y.fontFamily;if(we.charCodeAt(0)===55349){var cr=ii(we,he),Ir=cr[0],Yr=cr[1];return zi(we,Ir,he,Y,Ye.concat(Yr))}else if($t){var fn,Cn;if($t==="boldsymbol"||$t==="mathnormal"){var Wn=$t==="boldsymbol"?Zi(we,he,Y,Ye):xa(we,he,Y,Ye);fn=Wn.fontName,Cn=[Wn.fontClass]}else A.contains(Yi,we)?(fn="Main-Italic",Cn=["mathit"]):wt?(fn=en[$t].fontName,Cn=[$t]):(fn=$r($t,Y.fontWeight,Y.fontShape),Cn=[$t,Y.fontWeight,Y.fontShape]);if(mi(we,fn,he).metrics)return zi(we,fn,he,Y,Ye.concat(Cn));if(qr.hasOwnProperty(we)&&fn.substr(0,10)==="Typewriter"){for(var qn=[],Di=0;Di<we.length;Di++)qn.push(zi(we[Di],fn,he,Y,Ye.concat(Cn)));return Tt(qn)}}if(te==="mathord"){var Fi=xt(we,he,Y,Ye);return zi(we,Fi.fontName,he,Y,Ye.concat([Fi.fontClass]))}else if(te==="textord"){var aa=Ce[he][we]&&Ce[he][we].font;if(aa==="ams"){var ba=$r("amsrm",Y.fontWeight,Y.fontShape);return zi(we,ba,he,Y,Ye.concat("amsrm",Y.fontWeight,Y.fontShape))}else if(aa==="main"||!aa){var Ts=$r("textrm",Y.fontWeight,Y.fontShape);return zi(we,Ts,he,Y,Ye.concat(Y.fontWeight,Y.fontShape))}else{var Fs=$r(aa,Y.fontWeight,Y.fontShape);return zi(we,Fs,he,Y,Ye.concat(Fs,Y.fontWeight,Y.fontShape))}}else throw new Error("unexpected type: "+te+" in makeOrd")},Da=function(Z,Y){if(gt(Z.classes)!==gt(Y.classes)||Z.skew!==Y.skew||Z.maxFontSize!==Y.maxFontSize)return!1;for(var te in Z.style)if(Z.style.hasOwnProperty(te)&&Z.style[te]!==Y.style[te])return!1;for(var he in Y.style)if(Y.style.hasOwnProperty(he)&&Z.style[he]!==Y.style[he])return!1;return!0},Hi=function(Z){for(var Y=0;Y<Z.length-1;Y++){var te=Z[Y],he=Z[Y+1];te instanceof ke&&he instanceof ke&&Da(te,he)&&(te.text+=he.text,te.height=Math.max(te.height,he.height),te.depth=Math.max(te.depth,he.depth),te.italic=he.italic,Z.splice(Y+1,1),Y--)}return Z},ei=function(Z){for(var Y=0,te=0,he=0,we=0;we<Z.children.length;we++){var Ye=Z.children[we];Ye.height>Y&&(Y=Ye.height),Ye.depth>te&&(te=Ye.depth),Ye.maxFontSize>he&&(he=Ye.maxFontSize)}Z.height=Y,Z.depth=te,Z.maxFontSize=he},$n=function(Z,Y,te,he){var we=new ot(Z,Y,te,he);return ei(we),we},Ee=function(Z,Y,te,he){return new ot(Z,Y,te,he)},nt=function(Z,Y,te){var he=$n([Z],[],Y);return he.height=Math.max(te||Y.fontMetrics().defaultRuleThickness,Y.minRuleThickness),he.style.borderBottomWidth=he.height+"em",he.maxFontSize=1,he},qe=function(Z,Y,te,he){var we=new Je(Z,Y,te,he);return ei(we),we},Tt=function(Z){var Y=new $e(Z);return ei(Y),Y},lt=function(Z,Y){return Z instanceof $e?$n([],[Z],Y):Z},hr=function(Z){if(Z.positionType==="individualShift"){for(var Y=Z.children,te=[Y[0]],he=-Y[0].shift-Y[0].elem.depth,we=he,Ye=1;Ye<Y.length;Ye++){var wt=-Y[Ye].shift-we-Y[Ye].elem.depth,$t=wt-(Y[Ye-1].elem.height+Y[Ye-1].elem.depth);we=we+wt,te.push({type:"kern",size:$t}),te.push(Y[Ye])}return{children:te,depth:he}}var cr;if(Z.positionType==="top"){for(var Ir=Z.positionData,Yr=0;Yr<Z.children.length;Yr++){var fn=Z.children[Yr];Ir-=fn.type==="kern"?fn.size:fn.elem.height+fn.elem.depth}cr=Ir}else if(Z.positionType==="bottom")cr=-Z.positionData;else{var Cn=Z.children[0];if(Cn.type!=="elem")throw new Error('First child must have type "elem".');if(Z.positionType==="shift")cr=-Cn.elem.depth-Z.positionData;else if(Z.positionType==="firstBaseline")cr=-Cn.elem.depth;else throw new Error("Invalid positionType "+Z.positionType+".")}return{children:Z.children,depth:cr}},pr=function(Z,Y){for(var te=hr(Z),he=te.children,we=te.depth,Ye=0,wt=0;wt<he.length;wt++){var $t=he[wt];if($t.type==="elem"){var cr=$t.elem;Ye=Math.max(Ye,cr.maxFontSize,cr.height)}}Ye+=2;var Ir=$n(["pstrut"],[]);Ir.style.height=Ye+"em";for(var Yr=[],fn=we,Cn=we,Wn=we,qn=0;qn<he.length;qn++){var Di=he[qn];if(Di.type==="kern")Wn+=Di.size;else{var Fi=Di.elem,aa=Di.wrapperClasses||[],ba=Di.wrapperStyle||{},Ts=$n(aa,[Ir,Fi],void 0,ba);Ts.style.top=-Ye-Wn-Fi.depth+"em",Di.marginLeft&&(Ts.style.marginLeft=Di.marginLeft),Di.marginRight&&(Ts.style.marginRight=Di.marginRight),Yr.push(Ts),Wn+=Fi.height+Fi.depth}fn=Math.min(fn,Wn),Cn=Math.max(Cn,Wn)}var Fs=$n(["vlist"],Yr);Fs.style.height=Cn+"em";var js;if(fn<0){var vs=$n([],[]),Oa=$n(["vlist"],[vs]);Oa.style.height=-fn+"em";var fo=$n(["vlist-s"],[new ke("\u200B")]);js=[$n(["vlist-r"],[Fs,fo]),$n(["vlist-r"],[Oa])]}else js=[$n(["vlist-r"],[Fs])];var ws=$n(["vlist-t"],js);return js.length===2&&ws.classes.push("vlist-t2"),ws.height=Cn,ws.depth=-fn,ws},Cr=function(Z,Y){var te=$n(["mspace"],[],Y),he=ea(Z,Y);return te.style.marginRight=he+"em",te},$r=function(Z,Y,te){var he="";switch(Z){case"amsrm":he="AMS";break;case"textrm":he="Main";break;case"textsf":he="SansSerif";break;case"texttt":he="Typewriter";break;default:he=Z}var we;return Y==="textbf"&&te==="textit"?we="BoldItalic":Y==="textbf"?we="Bold":Y==="textit"?we="Italic":we="Regular",he+"-"+we},en={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},Nr={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]},An=function(Z,Y){var te=Nr[Z],he=te[0],we=te[1],Ye=te[2],wt=new We(he),$t=new Ge([wt],{width:we+"em",height:Ye+"em",style:"width:"+we+"em",viewBox:"0 0 "+1e3*we+" "+1e3*Ye,preserveAspectRatio:"xMinYMin"}),cr=Ee(["overlay"],[$t],Y);return cr.height=Ye,cr.style.height=Ye+"em",cr.style.width=we+"em",cr},_r={fontMap:en,makeSymbol:zi,mathsym:Ca,makeSpan:$n,makeSvgSpan:Ee,makeLineSpan:nt,makeAnchor:qe,makeFragment:Tt,wrapFragment:lt,makeVList:pr,makeOrd:_i,makeGlue:Cr,staticSvg:An,svgData:Nr,tryCombineChars:Hi};function Fn(Ve,Z){var Y=Qn(Ve,Z);if(!Y)throw new Error("Expected node of type "+Z+", but got "+(Ve?"node of type "+Ve.type:String(Ve)));return Y}function Qn(Ve,Z){return Ve&&Ve.type===Z?Ve:null}function Ke(Ve,Z){var Y=ct(Ve,Z);if(!Y)throw new Error('Expected node of type "atom" and family "'+Z+'", but got '+(Ve?Ve.type==="atom"?"atom of family "+Ve.family:"node of type "+Ve.type:String(Ve)));return Y}function ct(Ve,Z){return Ve&&Ve.type==="atom"&&Ve.family===Z?Ve:null}function ge(Ve){var Z=sr(Ve);if(!Z)throw new Error("Expected node of symbol group type, but got "+(Ve?"node of type "+Ve.type:String(Ve)));return Z}function sr(Ve){return Ve&&(Ve.type==="atom"||lr.hasOwnProperty(Ve.type))?Ve:null}var nr={number:3,unit:"mu"},kr={number:4,unit:"mu"},Hr={number:5,unit:"mu"},Zr={mord:{mop:nr,mbin:kr,mrel:Hr,minner:nr},mop:{mord:nr,mop:nr,mrel:Hr,minner:nr},mbin:{mord:kr,mop:kr,mopen:kr,minner:kr},mrel:{mord:Hr,mop:Hr,mopen:Hr,minner:Hr},mopen:{},mclose:{mop:nr,mbin:kr,mrel:Hr,minner:nr},mpunct:{mord:nr,mop:nr,mrel:Hr,mopen:nr,mclose:nr,mpunct:nr,minner:nr},minner:{mord:nr,mop:nr,mbin:kr,mrel:Hr,mopen:nr,mpunct:nr,minner:nr}},hn={mord:{mop:nr},mop:{mord:nr,mop:nr},mbin:{},mrel:{},mopen:{},mclose:{mop:nr},mpunct:{},minner:{mop:nr}},Si={},un={},yn={};function Gr(Ve){for(var Z=Ve.type,Y=Ve.names,te=Ve.props,he=Ve.handler,we=Ve.htmlBuilder,Ye=Ve.mathmlBuilder,wt={type:Z,numArgs:te.numArgs,argTypes:te.argTypes,greediness:te.greediness===void 0?1:te.greediness,allowedInText:!!te.allowedInText,allowedInMath:te.allowedInMath===void 0?!0:te.allowedInMath,numOptionalArgs:te.numOptionalArgs||0,infix:!!te.infix,handler:he},$t=0;$t<Y.length;++$t)Si[Y[$t]]=wt;Z&&(we&&(un[Z]=we),Ye&&(yn[Z]=Ye))}function kn(Ve){var Z=Ve.type,Y=Ve.htmlBuilder,te=Ve.mathmlBuilder;Gr({type:Z,names:[],props:{numArgs:0},handler:function(){throw new Error("Should never be called.")},htmlBuilder:Y,mathmlBuilder:te})}var si=function(Z){var Y=Qn(Z,"ordgroup");return Y?Y.body:[Z]},Ea=_r.makeSpan,Js=["leftmost","mbin","mopen","mrel","mop","mpunct"],Ba=["rightmost","mrel","mclose","mpunct"],$s={display:z.DISPLAY,text:z.TEXT,script:z.SCRIPT,scriptscript:z.SCRIPTSCRIPT},Ns={mord:"mord",mop:"mop",mbin:"mbin",mrel:"mrel",mopen:"mopen",mclose:"mclose",mpunct:"mpunct",minner:"minner"},as=function(Z,Y,te,he){he===void 0&&(he=[null,null]);for(var we=[],Ye=0;Ye<Z.length;Ye++){var wt=Ji(Z[Ye],Y);if(wt instanceof $e){var $t=wt.children;we.push.apply(we,$t)}else we.push(wt)}if(!te)return we;var cr=Y;if(Z.length===1){var Ir=Qn(Z[0],"sizing")||Qn(Z[0],"styling");Ir&&(Ir.type==="sizing"?cr=Y.havingSize(Ir.size):Ir.type==="styling"&&(cr=Y.havingStyle($s[Ir.style])))}var Yr=Ea([he[0]||"leftmost"],[],Y),fn=Ea([he[1]||"rightmost"],[],Y);return oo(we,function(Cn,Wn){var qn=Wn.classes[0],Di=Cn.classes[0];qn==="mbin"&&A.contains(Ba,Di)?Wn.classes[0]="mord":Di==="mbin"&&A.contains(Js,qn)&&(Cn.classes[0]="mord")},{node:Yr},fn),oo(we,function(Cn,Wn){var qn=ps(Wn),Di=ps(Cn),Fi=qn&&Di?Cn.hasClass("mtight")?hn[qn][Di]:Zr[qn][Di]:null;if(Fi)return _r.makeGlue(Fi,cr)},{node:Yr},fn),we},oo=function Ve(Z,Y,te,he){he&&Z.push(he);for(var we=0;we<Z.length;we++){var Ye=Z[we],wt=Aa(Ye);if(wt){Ve(wt.children,Y,te);continue}if(Ye.classes[0]!=="mspace"){var $t=Y(Ye,te.node);$t&&(te.insertAfter?te.insertAfter($t):(Z.unshift($t),we++)),te.node=Ye,te.insertAfter=function(cr){return function(Ir){Z.splice(cr+1,0,Ir),we++}}(we)}}he&&Z.pop()},Aa=function(Z){return Z instanceof $e||Z instanceof Je?Z:null},Is=function Ve(Z,Y){var te=Aa(Z);if(te){var he=te.children;if(he.length){if(Y==="right")return Ve(he[he.length-1],"right");if(Y==="left")return Ve(he[0],"left")}}return Z},ps=function(Z,Y){return Z?(Y&&(Z=Is(Z,Y)),Ns[Z.classes[0]]||null):null},po=function(Z,Y){var te=["nulldelimiter"].concat(Z.baseSizingClasses());return Ea(Y.concat(te))},Ji=function(Z,Y,te){if(!Z)return Ea();if(un[Z.type]){var he=un[Z.type](Z,Y);if(te&&Y.size!==te.size){he=Ea(Y.sizingClasses(te),[he],Y);var we=Y.sizeMultiplier/te.sizeMultiplier;he.height*=we,he.depth*=we}return he}else throw new o("Got group of unknown type: '"+Z.type+"'")};function to(Ve,Z){var Y=Ea(["base"],Ve,Z),te=Ea(["strut"]);return te.style.height=Y.height+Y.depth+"em",te.style.verticalAlign=-Y.depth+"em",Y.children.unshift(te),Y}function zo(Ve,Z){var Y=null;Ve.length===1&&Ve[0].type==="tag"&&(Y=Ve[0].tag,Ve=Ve[0].body);for(var te=as(Ve,Z,!0),he=[],we=[],Ye=0;Ye<te.length;Ye++)if(we.push(te[Ye]),te[Ye].hasClass("mbin")||te[Ye].hasClass("mrel")||te[Ye].hasClass("allowbreak")){for(var wt=!1;Ye<te.length-1&&te[Ye+1].hasClass("mspace")&&!te[Ye+1].hasClass("newline");)Ye++,we.push(te[Ye]),te[Ye].hasClass("nobreak")&&(wt=!0);wt||(he.push(to(we,Z)),we=[])}else te[Ye].hasClass("newline")&&(we.pop(),we.length>0&&(he.push(to(we,Z)),we=[]),he.push(te[Ye]));we.length>0&&he.push(to(we,Z));var $t;Y&&($t=to(as(Y,Z,!0)),$t.classes=["tag"],he.push($t));var cr=Ea(["katex-html"],he);if(cr.setAttribute("aria-hidden","true"),$t){var Ir=$t.children[0];Ir.style.height=cr.height+cr.depth+"em",Ir.style.verticalAlign=-cr.depth+"em"}return cr}function Na(Ve){return new $e(Ve)}var zs=function(){function Ve(Y,te){this.type=void 0,this.attributes=void 0,this.children=void 0,this.type=Y,this.attributes={},this.children=te||[]}var Z=Ve.prototype;return Z.setAttribute=function(te,he){this.attributes[te]=he},Z.getAttribute=function(te){return this.attributes[te]},Z.toNode=function(){var te=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(var he in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,he)&&te.setAttribute(he,this.attributes[he]);for(var we=0;we<this.children.length;we++)te.appendChild(this.children[we].toNode());return te},Z.toMarkup=function(){var te="<"+this.type;for(var he in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,he)&&(te+=" "+he+'="',te+=A.escape(this.attributes[he]),te+='"');te+=">";for(var we=0;we<this.children.length;we++)te+=this.children[we].toMarkup();return te+="</"+this.type+">",te},Z.toText=function(){return this.children.map(function(te){return te.toText()}).join("")},Ve}(),di=function(){function Ve(Y){this.text=void 0,this.text=Y}var Z=Ve.prototype;return Z.toNode=function(){return document.createTextNode(this.text)},Z.toMarkup=function(){return A.escape(this.toText())},Z.toText=function(){return this.text},Ve}(),ro=function(){function Ve(Y){this.width=void 0,this.character=void 0,this.width=Y,Y>=.05555&&Y<=.05556?this.character="\u200A":Y>=.1666&&Y<=.1667?this.character="\u2009":Y>=.2222&&Y<=.2223?this.character="\u2005":Y>=.2777&&Y<=.2778?this.character="\u2005\u200A":Y>=-.05556&&Y<=-.05555?this.character="\u200A\u2063":Y>=-.1667&&Y<=-.1666?this.character="\u2009\u2063":Y>=-.2223&&Y<=-.2222?this.character="\u205F\u2063":Y>=-.2778&&Y<=-.2777?this.character="\u2005\u2063":this.character=null}var Z=Ve.prototype;return Z.toNode=function(){if(this.character)return document.createTextNode(this.character);var te=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return te.setAttribute("width",this.width+"em"),te},Z.toMarkup=function(){return this.character?"<mtext>"+this.character+"</mtext>":'<mspace width="'+this.width+'em"/>'},Z.toText=function(){return this.character?this.character:" "},Ve}(),Rn={MathNode:zs,TextNode:di,SpaceNode:ro,newDocumentFragment:Na},ss=function(Z,Y,te){return Ce[Y][Z]&&Ce[Y][Z].replace&&Z.charCodeAt(0)!==55349&&!(qr.hasOwnProperty(Z)&&te&&(te.fontFamily&&te.fontFamily.substr(4,2)==="tt"||te.font&&te.font.substr(4,2)==="tt"))&&(Z=Ce[Y][Z].replace),new Rn.TextNode(Z)},Ps=function(Z){return Z.length===1?Z[0]:new Rn.MathNode("mrow",Z)},Os=function(Z,Y){if(Y.fontFamily==="texttt")return"monospace";if(Y.fontFamily==="textsf")return Y.fontShape==="textit"&&Y.fontWeight==="textbf"?"sans-serif-bold-italic":Y.fontShape==="textit"?"sans-serif-italic":Y.fontWeight==="textbf"?"bold-sans-serif":"sans-serif";if(Y.fontShape==="textit"&&Y.fontWeight==="textbf")return"bold-italic";if(Y.fontShape==="textit")return"italic";if(Y.fontWeight==="textbf")return"bold";var te=Y.font;if(!te||te==="mathnormal")return null;var he=Z.mode;if(te==="mathit")return"italic";if(te==="boldsymbol")return"bold-italic";if(te==="mathbf")return"bold";if(te==="mathbb")return"double-struck";if(te==="mathfrak")return"fraktur";if(te==="mathscr"||te==="mathcal")return"script";if(te==="mathsf")return"sans-serif";if(te==="mathtt")return"monospace";var we=Z.text;if(A.contains(["\\imath","\\jmath"],we))return null;Ce[he][we]&&Ce[he][we].replace&&(we=Ce[he][we].replace);var Ye=_r.fontMap[te].fontName;return Yt(we,Ye,he)?_r.fontMap[te].variant:null},Qi=function(Z,Y,te){if(Z.length===1){var he=Ni(Z[0],Y);return te&&he instanceof zs&&he.type==="mo"&&(he.setAttribute("lspace","0em"),he.setAttribute("rspace","0em")),[he]}for(var we=[],Ye,wt=0;wt<Z.length;wt++){var $t=Ni(Z[wt],Y);if($t instanceof zs&&Ye instanceof zs){if($t.type==="mtext"&&Ye.type==="mtext"&&$t.getAttribute("mathvariant")===Ye.getAttribute("mathvariant")){var cr;(cr=Ye.children).push.apply(cr,$t.children);continue}else if($t.type==="mn"&&Ye.type==="mn"){var Ir;(Ir=Ye.children).push.apply(Ir,$t.children);continue}else if($t.type==="mi"&&$t.children.length===1&&Ye.type==="mn"){var Yr=$t.children[0];if(Yr instanceof di&&Yr.text==="."){var fn;(fn=Ye.children).push.apply(fn,$t.children);continue}}else if(Ye.type==="mi"&&Ye.children.length===1){var Cn=Ye.children[0];if(Cn instanceof di&&Cn.text==="\u0338"&&($t.type==="mo"||$t.type==="mi"||$t.type==="mn")){var Wn=$t.children[0];Wn instanceof di&&Wn.text.length>0&&(Wn.text=Wn.text.slice(0,1)+"\u0338"+Wn.text.slice(1),we.pop())}}}we.push($t),Ye=$t}return we},Ka=function(Z,Y,te){return Ps(Qi(Z,Y,te))},Ni=function(Z,Y){if(!Z)return new Rn.MathNode("mrow");if(yn[Z.type]){var te=yn[Z.type](Z,Y);return te}else throw new o("Got group of unknown type: '"+Z.type+"'")};function Ds(Ve,Z,Y,te){var he=Qi(Ve,Y),we;he.length===1&&he[0]instanceof zs&&A.contains(["mrow","mtable"],he[0].type)?we=he[0]:we=new Rn.MathNode("mrow",he);var Ye=new Rn.MathNode("annotation",[new Rn.TextNode(Z)]);Ye.setAttribute("encoding","application/x-tex");var wt=new Rn.MathNode("semantics",[we,Ye]),$t=new Rn.MathNode("math",[wt]);$t.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML");var cr=te?"katex":"katex-mathml";return _r.makeSpan([cr],[$t])}var xo=function(Z){return new $i({style:Z.displayMode?z.DISPLAY:z.TEXT,maxSize:Z.maxSize,minRuleThickness:Z.minRuleThickness})},Zo=function(Z,Y){if(Y.displayMode){var te=["katex-display"];Y.leqno&&te.push("leqno"),Y.fleqn&&te.push("fleqn"),Z=_r.makeSpan(te,[Z])}return Z},Qo=function(Z,Y,te){var he=xo(te),we;if(te.output==="mathml")return Ds(Z,Y,he,!0);if(te.output==="html"){var Ye=zo(Z,he);we=_r.makeSpan(["katex"],[Ye])}else{var wt=Ds(Z,Y,he,!1),$t=zo(Z,he);we=_r.makeSpan(["katex"],[wt,$t])}return Zo(we,te)},mu=function(Z,Y,te){var he=xo(te),we=zo(Z,he),Ye=_r.makeSpan(["katex"],[we]);return Zo(Ye,te)},_u=Qo,vo={widehat:"^",widecheck:"\u02C7",widetilde:"~",utilde:"~",overleftarrow:"\u2190",underleftarrow:"\u2190",xleftarrow:"\u2190",overrightarrow:"\u2192",underrightarrow:"\u2192",xrightarrow:"\u2192",underbrace:"\u23DF",overbrace:"\u23DE",overgroup:"\u23E0",undergroup:"\u23E1",overleftrightarrow:"\u2194",underleftrightarrow:"\u2194",xleftrightarrow:"\u2194",Overrightarrow:"\u21D2",xRightarrow:"\u21D2",overleftharpoon:"\u21BC",xleftharpoonup:"\u21BC",overrightharpoon:"\u21C0",xrightharpoonup:"\u21C0",xLeftarrow:"\u21D0",xLeftrightarrow:"\u21D4",xhookleftarrow:"\u21A9",xhookrightarrow:"\u21AA",xmapsto:"\u21A6",xrightharpoondown:"\u21C1",xleftharpoondown:"\u21BD",xrightleftharpoons:"\u21CC",xleftrightharpoons:"\u21CB",xtwoheadleftarrow:"\u219E",xtwoheadrightarrow:"\u21A0",xlongequal:"=",xtofrom:"\u21C4",xrightleftarrows:"\u21C4",xrightequilibrium:"\u21CC",xleftequilibrium:"\u21CB"},Wo=function(Z){var Y=new Rn.MathNode("mo",[new Rn.TextNode(vo[Z.substr(1)])]);return Y.setAttribute("stretchy","true"),Y},Oo={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]},nu=function(Z){return Z.type==="ordgroup"?Z.body.length:1},Xo=function(Z,Y){function te(){var $t=4e5,cr=Z.label.substr(1);if(A.contains(["widehat","widecheck","widetilde","utilde"],cr)){var Ir=Z,Yr=nu(Ir.base),fn,Cn,Wn;if(Yr>5)cr==="widehat"||cr==="widecheck"?(fn=420,$t=2364,Wn=.42,Cn=cr+"4"):(fn=312,$t=2340,Wn=.34,Cn="tilde4");else{var qn=[1,1,2,2,3,3][Yr];cr==="widehat"||cr==="widecheck"?($t=[0,1062,2364,2364,2364][qn],fn=[0,239,300,360,420][qn],Wn=[0,.24,.3,.3,.36,.42][qn],Cn=cr+qn):($t=[0,600,1033,2339,2340][qn],fn=[0,260,286,306,312][qn],Wn=[0,.26,.286,.3,.306,.34][qn],Cn="tilde"+qn)}var Di=new We(Cn),Fi=new Ge([Di],{width:"100%",height:Wn+"em",viewBox:"0 0 "+$t+" "+fn,preserveAspectRatio:"none"});return{span:_r.makeSvgSpan([],[Fi],Y),minWidth:0,height:Wn}}else{var aa=[],ba=Oo[cr],Ts=ba[0],Fs=ba[1],js=ba[2],vs=js/1e3,Oa=Ts.length,fo,ws;if(Oa===1){var yr=ba[3];fo=["hide-tail"],ws=[yr]}else if(Oa===2)fo=["halfarrow-left","halfarrow-right"],ws=["xMinYMin","xMaxYMin"];else if(Oa===3)fo=["brace-left","brace-center","brace-right"],ws=["xMinYMin","xMidYMin","xMaxYMin"];else throw new Error(`Correct katexImagesData or update code here to support
`+Oa+" children.");for(var ko=0;ko<Oa;ko++){var Uo=new We(Ts[ko]),Su=new Ge([Uo],{width:"400em",height:vs+"em",viewBox:"0 0 "+$t+" "+js,preserveAspectRatio:ws[ko]+" slice"}),Ws=_r.makeSvgSpan([fo[ko]],[Su],Y);if(Oa===1)return{span:Ws,minWidth:Fs,height:vs};Ws.style.height=vs+"em",aa.push(Ws)}return{span:_r.makeSpan(["stretchy"],aa,Y),minWidth:Fs,height:vs}}}var he=te(),we=he.span,Ye=he.minWidth,wt=he.height;return we.height=wt,we.style.height=wt+"em",Ye>0&&(we.style.minWidth=Ye+"em"),we},hi=function(Z,Y,te,he){var we,Ye=Z.height+Z.depth+2*te;if(/fbox|color/.test(Y)){if(we=_r.makeSpan(["stretchy",Y],[],he),Y==="fbox"){var wt=he.color&&he.getColor();wt&&(we.style.borderColor=wt)}}else{var $t=[];/^[bx]cancel$/.test(Y)&&$t.push(new Xe({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(Y)&&$t.push(new Xe({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));var cr=new Ge($t,{width:"100%",height:Ye+"em"});we=_r.makeSvgSpan([],[cr],he)}return we.height=Ye,we.style.height=Ye+"em",we},vi={encloseSpan:hi,mathMLnode:Wo,svgSpan:Xo},qa=function(Z,Y){var te,he,we=Qn(Z,"supsub"),Ye;we?(he=Fn(we.base,"accent"),te=he.base,we.base=te,Ye=pt(Ji(we,Y)),we.base=he):(he=Fn(Z,"accent"),te=he.base);var wt=Ji(te,Y.havingCrampedStyle()),$t=he.isShifty&&A.isCharacterBox(te),cr=0;if($t){var Ir=A.getBaseElem(te),Yr=Ji(Ir,Y.havingCrampedStyle());cr=ut(Yr).skew}var fn=Math.min(wt.height,Y.fontMetrics().xHeight),Cn;if(he.isStretchy)Cn=vi.svgSpan(he,Y),Cn=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:wt},{type:"elem",elem:Cn,wrapperClasses:["svg-align"],wrapperStyle:cr>0?{width:"calc(100% - "+2*cr+"em)",marginLeft:2*cr+"em"}:void 0}]},Y);else{var Wn,qn;he.label==="\\vec"?(Wn=_r.staticSvg("vec",Y),qn=_r.svgData.vec[1]):(Wn=_r.makeOrd({mode:he.mode,text:he.label},Y,"textord"),Wn=ut(Wn),Wn.italic=0,qn=Wn.width),Cn=_r.makeSpan(["accent-body"],[Wn]);var Di=he.label==="\\textcircled";Di&&(Cn.classes.push("accent-full"),fn=wt.height);var Fi=cr;Di||(Fi-=qn/2),Cn.style.left=Fi+"em",he.label==="\\textcircled"&&(Cn.style.top=".2em"),Cn=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:wt},{type:"kern",size:-fn},{type:"elem",elem:Cn}]},Y)}var aa=_r.makeSpan(["mord","accent"],[Cn],Y);return Ye?(Ye.children[0]=aa,Ye.height=Math.max(aa.height,Ye.height),Ye.classes[0]="mord",Ye):aa},ls=function(Z,Y){var te=Z.isStretchy?vi.mathMLnode(Z.label):new Rn.MathNode("mo",[ss(Z.label,Z.mode)]),he=new Rn.MathNode("mover",[Ni(Z.base,Y),te]);return he.setAttribute("accent","true"),he},es=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map(function(Ve){return"\\"+Ve}).join("|"));Gr({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:function(Z,Y){var te=Y[0],he=!es.test(Z.funcName),we=!he||Z.funcName==="\\widehat"||Z.funcName==="\\widetilde"||Z.funcName==="\\widecheck";return{type:"accent",mode:Z.parser.mode,label:Z.funcName,isStretchy:he,isShifty:we,base:te}},htmlBuilder:qa,mathmlBuilder:ls}),Gr({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!1},handler:function(Z,Y){var te=Y[0];return{type:"accent",mode:Z.parser.mode,label:Z.funcName,isStretchy:!1,isShifty:!0,base:te}},htmlBuilder:qa,mathmlBuilder:ls}),Gr({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0];return{type:"accentUnder",mode:te.mode,label:he,base:we}},htmlBuilder:function(Z,Y){var te=Ji(Z.base,Y),he=vi.svgSpan(Z,Y),we=Z.label==="\\utilde"?.12:0,Ye=_r.makeVList({positionType:"bottom",positionData:he.height+we,children:[{type:"elem",elem:he,wrapperClasses:["svg-align"]},{type:"kern",size:we},{type:"elem",elem:te}]},Y);return _r.makeSpan(["mord","accentunder"],[Ye],Y)},mathmlBuilder:function(Z,Y){var te=vi.mathMLnode(Z.label),he=new Rn.MathNode("munder",[Ni(Z.base,Y),te]);return he.setAttribute("accentunder","true"),he}});var Wa=function(Z){var Y=new Rn.MathNode("mpadded",Z?[Z]:[]);return Y.setAttribute("width","+0.6em"),Y.setAttribute("lspace","0.3em"),Y};Gr({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium"],props:{numArgs:1,numOptionalArgs:1},handler:function(Z,Y,te){var he=Z.parser,we=Z.funcName;return{type:"xArrow",mode:he.mode,label:we,body:Y[0],below:te[0]}},htmlBuilder:function(Z,Y){var te=Y.style,he=Y.havingStyle(te.sup()),we=_r.wrapFragment(Ji(Z.body,he,Y),Y);we.classes.push("x-arrow-pad");var Ye;Z.below&&(he=Y.havingStyle(te.sub()),Ye=_r.wrapFragment(Ji(Z.below,he,Y),Y),Ye.classes.push("x-arrow-pad"));var wt=vi.svgSpan(Z,Y),$t=-Y.fontMetrics().axisHeight+.5*wt.height,cr=-Y.fontMetrics().axisHeight-.5*wt.height-.111;(we.depth>.25||Z.label==="\\xleftequilibrium")&&(cr-=we.depth);var Ir;if(Ye){var Yr=-Y.fontMetrics().axisHeight+Ye.height+.5*wt.height+.111;Ir=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:we,shift:cr},{type:"elem",elem:wt,shift:$t},{type:"elem",elem:Ye,shift:Yr}]},Y)}else Ir=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:we,shift:cr},{type:"elem",elem:wt,shift:$t}]},Y);return Ir.children[0].children[0].children[1].classes.push("svg-align"),_r.makeSpan(["mrel","x-arrow"],[Ir],Y)},mathmlBuilder:function(Z,Y){var te=vi.mathMLnode(Z.label),he;if(Z.body){var we=Wa(Ni(Z.body,Y));if(Z.below){var Ye=Wa(Ni(Z.below,Y));he=new Rn.MathNode("munderover",[te,Ye,we])}else he=new Rn.MathNode("mover",[te,we])}else if(Z.below){var wt=Wa(Ni(Z.below,Y));he=new Rn.MathNode("munder",[te,wt])}else he=Wa(),he=new Rn.MathNode("mover",[te,he]);return he}}),Gr({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler:function(Z,Y){for(var te=Z.parser,he=Fn(Y[0],"ordgroup"),we=he.body,Ye="",wt=0;wt<we.length;wt++){var $t=Fn(we[wt],"textord");Ye+=$t.text}var cr=parseInt(Ye);if(isNaN(cr))throw new o("\\@char has non-numeric argument "+Ye);return{type:"textord",mode:te.mode,text:String.fromCharCode(cr)}}});var ms=function(Z,Y){var te=as(Z.body,Y.withColor(Z.color),!1);return _r.makeFragment(te)},Jo=function(Z,Y){var te=Qi(Z.body,Y.withColor(Z.color)),he=new Rn.MathNode("mstyle",te);return he.setAttribute("mathcolor",Z.color),he};Gr({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,greediness:3,argTypes:["color","original"]},handler:function(Z,Y){var te=Z.parser,he=Fn(Y[0],"color-token").color,we=Y[1];return{type:"color",mode:te.mode,color:he,body:si(we)}},htmlBuilder:ms,mathmlBuilder:Jo}),Gr({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,greediness:3,argTypes:["color"]},handler:function(Z,Y){var te=Z.parser,he=Z.breakOnTokenText,we=Fn(Y[0],"color-token").color;te.gullet.macros.set("\\current@color",we);var Ye=te.parseExpression(!0,he);return{type:"color",mode:te.mode,color:we,body:Ye}},htmlBuilder:ms,mathmlBuilder:Jo}),Gr({type:"cr",names:["\\cr","\\newline"],props:{numArgs:0,numOptionalArgs:1,argTypes:["size"],allowedInText:!0},handler:function(Z,Y,te){var he=Z.parser,we=Z.funcName,Ye=te[0],wt=we==="\\cr",$t=!1;return wt||(he.settings.displayMode&&he.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode")?$t=!1:$t=!0),{type:"cr",mode:he.mode,newLine:$t,newRow:wt,size:Ye&&Fn(Ye,"size").value}},htmlBuilder:function(Z,Y){if(Z.newRow)throw new o("\\cr valid only within a tabular/array environment");var te=_r.makeSpan(["mspace"],[],Y);return Z.newLine&&(te.classes.push("newline"),Z.size&&(te.style.marginTop=ea(Z.size,Y)+"em")),te},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mspace");return Z.newLine&&(te.setAttribute("linebreak","newline"),Z.size&&te.setAttribute("height",ea(Z.size,Y)+"em")),te}});var ks=function(Z,Y,te){var he=Ce.math[Z]&&Ce.math[Z].replace,we=Yt(he||Z,Y,te);if(!we)throw new Error("Unsupported symbol "+Z+" and font size "+Y+".");return we},Mo=function(Z,Y,te,he){var we=te.havingBaseStyle(Y),Ye=_r.makeSpan(he.concat(we.sizingClasses(te)),[Z],te),wt=we.sizeMultiplier/te.sizeMultiplier;return Ye.height*=wt,Ye.depth*=wt,Ye.maxFontSize=we.sizeMultiplier,Ye},Eu=function(Z,Y,te){var he=Y.havingBaseStyle(te),we=(1-Y.sizeMultiplier/he.sizeMultiplier)*Y.fontMetrics().axisHeight;Z.classes.push("delimcenter"),Z.style.top=we+"em",Z.height-=we,Z.depth+=we},Pu=function(Z,Y,te,he,we,Ye){var wt=_r.makeSymbol(Z,"Main-Regular",we,he),$t=Mo(wt,Y,he,Ye);return te&&Eu($t,he,Y),$t},rl=function(Z,Y,te,he){return _r.makeSymbol(Z,"Size"+Y+"-Regular",te,he)},dl=function(Z,Y,te,he,we,Ye){var wt=rl(Z,Y,we,he),$t=Mo(_r.makeSpan(["delimsizing","size"+Y],[wt],he),z.TEXT,he,Ye);return te&&Eu($t,he,z.TEXT),$t},Fo=function(Z,Y,te){var he;Y==="Size1-Regular"?he="delim-size1":he="delim-size4";var we=_r.makeSpan(["delimsizinginner",he],[_r.makeSpan([],[_r.makeSymbol(Z,Y,te)])]);return{type:"elem",elem:we}},uo={type:"kern",size:-.005},Ho=function(Z,Y,te,he,we,Ye){var wt,$t,cr,Ir;wt=cr=Ir=Z,$t=null;var Yr="Size1-Regular";Z==="\\uparrow"?cr=Ir="\u23D0":Z==="\\Uparrow"?cr=Ir="\u2016":Z==="\\downarrow"?wt=cr="\u23D0":Z==="\\Downarrow"?wt=cr="\u2016":Z==="\\updownarrow"?(wt="\\uparrow",cr="\u23D0",Ir="\\downarrow"):Z==="\\Updownarrow"?(wt="\\Uparrow",cr="\u2016",Ir="\\Downarrow"):Z==="["||Z==="\\lbrack"?(wt="\u23A1",cr="\u23A2",Ir="\u23A3",Yr="Size4-Regular"):Z==="]"||Z==="\\rbrack"?(wt="\u23A4",cr="\u23A5",Ir="\u23A6",Yr="Size4-Regular"):Z==="\\lfloor"||Z==="\u230A"?(cr=wt="\u23A2",Ir="\u23A3",Yr="Size4-Regular"):Z==="\\lceil"||Z==="\u2308"?(wt="\u23A1",cr=Ir="\u23A2",Yr="Size4-Regular"):Z==="\\rfloor"||Z==="\u230B"?(cr=wt="\u23A5",Ir="\u23A6",Yr="Size4-Regular"):Z==="\\rceil"||Z==="\u2309"?(wt="\u23A4",cr=Ir="\u23A5",Yr="Size4-Regular"):Z==="("||Z==="\\lparen"?(wt="\u239B",cr="\u239C",Ir="\u239D",Yr="Size4-Regular"):Z===")"||Z==="\\rparen"?(wt="\u239E",cr="\u239F",Ir="\u23A0",Yr="Size4-Regular"):Z==="\\{"||Z==="\\lbrace"?(wt="\u23A7",$t="\u23A8",Ir="\u23A9",cr="\u23AA",Yr="Size4-Regular"):Z==="\\}"||Z==="\\rbrace"?(wt="\u23AB",$t="\u23AC",Ir="\u23AD",cr="\u23AA",Yr="Size4-Regular"):Z==="\\lgroup"||Z==="\u27EE"?(wt="\u23A7",Ir="\u23A9",cr="\u23AA",Yr="Size4-Regular"):Z==="\\rgroup"||Z==="\u27EF"?(wt="\u23AB",Ir="\u23AD",cr="\u23AA",Yr="Size4-Regular"):Z==="\\lmoustache"||Z==="\u23B0"?(wt="\u23A7",Ir="\u23AD",cr="\u23AA",Yr="Size4-Regular"):(Z==="\\rmoustache"||Z==="\u23B1")&&(wt="\u23AB",Ir="\u23A9",cr="\u23AA",Yr="Size4-Regular");var fn=ks(wt,Yr,we),Cn=fn.height+fn.depth,Wn=ks(cr,Yr,we),qn=Wn.height+Wn.depth,Di=ks(Ir,Yr,we),Fi=Di.height+Di.depth,aa=0,ba=1;if($t!==null){var Ts=ks($t,Yr,we);aa=Ts.height+Ts.depth,ba=2}var Fs=Cn+Fi+aa,js=Math.max(0,Math.ceil((Y-Fs)/(ba*qn))),vs=Fs+js*ba*qn,Oa=he.fontMetrics().axisHeight;te&&(Oa*=he.sizeMultiplier);var fo=vs/2-Oa,ws=(js+1)*.005-qn,yr=[];if(yr.push(Fo(Ir,Yr,we)),$t===null)for(var ko=0;ko<js;ko++)yr.push(uo),yr.push(Fo(cr,Yr,we));else{for(var Uo=0;Uo<js;Uo++)yr.push(uo),yr.push(Fo(cr,Yr,we));yr.push({type:"kern",size:ws}),yr.push(Fo(cr,Yr,we)),yr.push(uo),yr.push(Fo($t,Yr,we));for(var Su=0;Su<js;Su++)yr.push(uo),yr.push(Fo(cr,Yr,we))}yr.push({type:"kern",size:ws}),yr.push(Fo(cr,Yr,we)),yr.push(uo),yr.push(Fo(wt,Yr,we));var Ws=he.havingBaseStyle(z.TEXT),qo=_r.makeVList({positionType:"bottom",positionData:fo,children:yr},Ws);return Mo(_r.makeSpan(["delimsizing","mult"],[qo],Ws),z.TEXT,he,Ye)},Hu=80,Bo=.08,Go=function(Z,Y,te,he,we){var Ye=Rt(Z,he,te),wt=new We(Z,Ye),$t=new Ge([wt],{width:"400em",height:Y+"em",viewBox:"0 0 400000 "+te,preserveAspectRatio:"xMinYMin slice"});return _r.makeSvgSpan(["hide-tail"],[$t],we)},Uu=function(Z,Y){var te=Y.havingBaseSizing(),he=Tr("\\surd",Z*te.sizeMultiplier,dr,te),we=te.sizeMultiplier,Ye=Math.max(0,Y.minRuleThickness-Y.fontMetrics().sqrtRuleThickness),wt,$t=0,cr=0,Ir=0,Yr;return he.type==="small"?(Ir=1e3+1e3*Ye+Hu,Z<1?we=1:Z<1.4&&(we=.7),$t=(1+Ye+Bo)/we,cr=(1+Ye)/we,wt=Go("sqrtMain",$t,Ir,Ye,Y),wt.style.minWidth="0.853em",Yr=.833/we):he.type==="large"?(Ir=(1e3+Hu)*gu[he.size],cr=(gu[he.size]+Ye)/we,$t=(gu[he.size]+Ye+Bo)/we,wt=Go("sqrtSize"+he.size,$t,Ir,Ye,Y),wt.style.minWidth="1.02em",Yr=1/we):($t=Z+Ye+Bo,cr=Z+Ye,Ir=Math.floor(1e3*Z+Ye)+Hu,wt=Go("sqrtTall",$t,Ir,Ye,Y),wt.style.minWidth="0.742em",Yr=1.056),wt.height=cr,wt.style.height=$t+"em",{span:wt,advanceWidth:Yr,ruleWidth:(Y.fontMetrics().sqrtRuleThickness+Ye)*we}},iu=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230A","\u230B","\\lceil","\\rceil","\u2308","\u2309","\\surd"],vu=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27EE","\u27EF","\\lmoustache","\\rmoustache","\u23B0","\u23B1"],No=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],gu=[0,1.2,1.8,2.4,3],Ko=function(Z,Y,te,he,we){if(Z==="<"||Z==="\\lt"||Z==="\u27E8"?Z="\\langle":(Z===">"||Z==="\\gt"||Z==="\u27E9")&&(Z="\\rangle"),A.contains(iu,Z)||A.contains(No,Z))return dl(Z,Y,!1,te,he,we);if(A.contains(vu,Z))return Ho(Z,gu[Y],!1,te,he,we);throw new o("Illegal delimiter: '"+Z+"'")},rr=[{type:"small",style:z.SCRIPTSCRIPT},{type:"small",style:z.SCRIPT},{type:"small",style:z.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],gr=[{type:"small",style:z.SCRIPTSCRIPT},{type:"small",style:z.SCRIPT},{type:"small",style:z.TEXT},{type:"stack"}],dr=[{type:"small",style:z.SCRIPTSCRIPT},{type:"small",style:z.SCRIPT},{type:"small",style:z.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],vr=function(Z){if(Z.type==="small")return"Main-Regular";if(Z.type==="large")return"Size"+Z.size+"-Regular";if(Z.type==="stack")return"Size4-Regular";throw new Error("Add support for delim type '"+Z.type+"' here.")},Tr=function(Z,Y,te,he){for(var we=Math.min(2,3-he.style.size),Ye=we;Ye<te.length&&te[Ye].type!=="stack";Ye++){var wt=ks(Z,vr(te[Ye]),"math"),$t=wt.height+wt.depth;if(te[Ye].type==="small"){var cr=he.havingBaseStyle(te[Ye].style);$t*=cr.sizeMultiplier}if($t>Y)return te[Ye]}return te[te.length-1]},bn=function(Z,Y,te,he,we,Ye){Z==="<"||Z==="\\lt"||Z==="\u27E8"?Z="\\langle":(Z===">"||Z==="\\gt"||Z==="\u27E9")&&(Z="\\rangle");var wt;A.contains(No,Z)?wt=rr:A.contains(iu,Z)?wt=dr:wt=gr;var $t=Tr(Z,Y,wt,he);return $t.type==="small"?Pu(Z,$t.style,te,he,we,Ye):$t.type==="large"?dl(Z,$t.size,te,he,we,Ye):Ho(Z,Y,te,he,we,Ye)},zn=function(Z,Y,te,he,we,Ye){var wt=he.fontMetrics().axisHeight*he.sizeMultiplier,$t=901,cr=5/he.fontMetrics().ptPerEm,Ir=Math.max(Y-wt,te+wt),Yr=Math.max(Ir/500*$t,2*Ir-cr);return bn(Z,Yr,!0,he,we,Ye)},Ln={sqrtImage:Uu,sizedDelim:Ko,customSizedDelim:bn,leftRightDelim:zn},Zn={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},ai=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230A","\u230B","\\lceil","\\rceil","\u2308","\u2309","<",">","\\langle","\u27E8","\\rangle","\u27E9","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27EE","\u27EF","\\lmoustache","\\rmoustache","\u23B0","\u23B1","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function Jn(Ve,Z){var Y=sr(Ve);if(Y&&A.contains(ai,Y.text))return Y;throw new o("Invalid delimiter: '"+(Y?Y.text:JSON.stringify(Ve))+"' after '"+Z.funcName+"'",Ve)}Gr({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1},handler:function(Z,Y){var te=Jn(Y[0],Z);return{type:"delimsizing",mode:Z.parser.mode,size:Zn[Z.funcName].size,mclass:Zn[Z.funcName].mclass,delim:te.text}},htmlBuilder:function(Z,Y){return Z.delim==="."?_r.makeSpan([Z.mclass]):Ln.sizedDelim(Z.delim,Z.size,Y,Z.mode,[Z.mclass])},mathmlBuilder:function(Z){var Y=[];Z.delim!=="."&&Y.push(ss(Z.delim,Z.mode));var te=new Rn.MathNode("mo",Y);return Z.mclass==="mopen"||Z.mclass==="mclose"?te.setAttribute("fence","true"):te.setAttribute("fence","false"),te}});function mr(Ve){if(!Ve.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}Gr({type:"leftright-right",names:["\\right"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser.gullet.macros.get("\\current@color");if(te&&typeof te!="string")throw new o("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:Z.parser.mode,delim:Jn(Y[0],Z).text,color:te}}}),Gr({type:"leftright",names:["\\left"],props:{numArgs:1},handler:function(Z,Y){var te=Jn(Y[0],Z),he=Z.parser;++he.leftrightDepth;var we=he.parseExpression(!1);--he.leftrightDepth,he.expect("\\right",!1);var Ye=Fn(he.parseFunction(),"leftright-right");return{type:"leftright",mode:he.mode,body:we,left:te.text,right:Ye.delim,rightColor:Ye.color}},htmlBuilder:function(Z,Y){mr(Z);for(var te=as(Z.body,Y,!0,["mopen","mclose"]),he=0,we=0,Ye=!1,wt=0;wt<te.length;wt++)te[wt].isMiddle?Ye=!0:(he=Math.max(te[wt].height,he),we=Math.max(te[wt].depth,we));he*=Y.sizeMultiplier,we*=Y.sizeMultiplier;var $t;if(Z.left==="."?$t=po(Y,["mopen"]):$t=Ln.leftRightDelim(Z.left,he,we,Y,Z.mode,["mopen"]),te.unshift($t),Ye)for(var cr=1;cr<te.length;cr++){var Ir=te[cr],Yr=Ir.isMiddle;Yr&&(te[cr]=Ln.leftRightDelim(Yr.delim,he,we,Yr.options,Z.mode,[]))}var fn;if(Z.right===".")fn=po(Y,["mclose"]);else{var Cn=Z.rightColor?Y.withColor(Z.rightColor):Y;fn=Ln.leftRightDelim(Z.right,he,we,Cn,Z.mode,["mclose"])}return te.push(fn),_r.makeSpan(["minner"],te,Y)},mathmlBuilder:function(Z,Y){mr(Z);var te=Qi(Z.body,Y);if(Z.left!=="."){var he=new Rn.MathNode("mo",[ss(Z.left,Z.mode)]);he.setAttribute("fence","true"),te.unshift(he)}if(Z.right!=="."){var we=new Rn.MathNode("mo",[ss(Z.right,Z.mode)]);we.setAttribute("fence","true"),Z.rightColor&&we.setAttribute("mathcolor",Z.rightColor),te.push(we)}return Ps(te)}}),Gr({type:"middle",names:["\\middle"],props:{numArgs:1},handler:function(Z,Y){var te=Jn(Y[0],Z);if(!Z.parser.leftrightDepth)throw new o("\\middle without preceding \\left",te);return{type:"middle",mode:Z.parser.mode,delim:te.text}},htmlBuilder:function(Z,Y){var te;if(Z.delim===".")te=po(Y,[]);else{te=Ln.sizedDelim(Z.delim,1,Y,Z.mode,[]);var he={delim:Z.delim,options:Y};te.isMiddle=he}return te},mathmlBuilder:function(Z,Y){var te=Z.delim==="\\vert"||Z.delim==="|"?ss("|","text"):ss(Z.delim,Z.mode),he=new Rn.MathNode("mo",[te]);return he.setAttribute("fence","true"),he.setAttribute("lspace","0.05em"),he.setAttribute("rspace","0.05em"),he}});var Fr=function(Z,Y){var te=_r.wrapFragment(Ji(Z.body,Y),Y),he=Z.label.substr(1),we=Y.sizeMultiplier,Ye,wt=0,$t=A.isCharacterBox(Z.body);if(he==="sout")Ye=_r.makeSpan(["stretchy","sout"]),Ye.height=Y.fontMetrics().defaultRuleThickness/we,wt=-.5*Y.fontMetrics().xHeight;else{/cancel/.test(he)?$t||te.classes.push("cancel-pad"):te.classes.push("boxpad");var cr=0,Ir=0;/box/.test(he)?(Ir=Math.max(Y.fontMetrics().fboxrule,Y.minRuleThickness),cr=Y.fontMetrics().fboxsep+(he==="colorbox"?0:Ir)):cr=$t?.2:0,Ye=vi.encloseSpan(te,he,cr,Y),/fbox|boxed|fcolorbox/.test(he)&&(Ye.style.borderStyle="solid",Ye.style.borderWidth=Ir+"em"),wt=te.depth+cr,Z.backgroundColor&&(Ye.style.backgroundColor=Z.backgroundColor,Z.borderColor&&(Ye.style.borderColor=Z.borderColor))}var Yr;return Z.backgroundColor?Yr=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:Ye,shift:wt},{type:"elem",elem:te,shift:0}]},Y):Yr=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:te,shift:0},{type:"elem",elem:Ye,shift:wt,wrapperClasses:/cancel/.test(he)?["svg-align"]:[]}]},Y),/cancel/.test(he)&&(Yr.height=te.height,Yr.depth=te.depth),/cancel/.test(he)&&!$t?_r.makeSpan(["mord","cancel-lap"],[Yr],Y):_r.makeSpan(["mord"],[Yr],Y)},Br=function(Z,Y){var te=0,he=new Rn.MathNode(Z.label.indexOf("colorbox")>-1?"mpadded":"menclose",[Ni(Z.body,Y)]);switch(Z.label){case"\\cancel":he.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":he.setAttribute("notation","downdiagonalstrike");break;case"\\sout":he.setAttribute("notation","horizontalstrike");break;case"\\fbox":he.setAttribute("notation","box");break;case"\\fcolorbox":case"\\colorbox":if(te=Y.fontMetrics().fboxsep*Y.fontMetrics().ptPerEm,he.setAttribute("width","+"+2*te+"pt"),he.setAttribute("height","+"+2*te+"pt"),he.setAttribute("lspace",te+"pt"),he.setAttribute("voffset",te+"pt"),Z.label==="\\fcolorbox"){var we=Math.max(Y.fontMetrics().fboxrule,Y.minRuleThickness);he.setAttribute("style","border: "+we+"em solid "+String(Z.borderColor))}break;case"\\xcancel":he.setAttribute("notation","updiagonalstrike downdiagonalstrike");break}return Z.backgroundColor&&he.setAttribute("mathbackground",Z.backgroundColor),he};Gr({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,greediness:3,argTypes:["color","text"]},handler:function(Z,Y,te){var he=Z.parser,we=Z.funcName,Ye=Fn(Y[0],"color-token").color,wt=Y[1];return{type:"enclose",mode:he.mode,label:we,backgroundColor:Ye,body:wt}},htmlBuilder:Fr,mathmlBuilder:Br}),Gr({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,greediness:3,argTypes:["color","color","text"]},handler:function(Z,Y,te){var he=Z.parser,we=Z.funcName,Ye=Fn(Y[0],"color-token").color,wt=Fn(Y[1],"color-token").color,$t=Y[2];return{type:"enclose",mode:he.mode,label:we,backgroundColor:wt,borderColor:Ye,body:$t}},htmlBuilder:Fr,mathmlBuilder:Br}),Gr({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler:function(Z,Y){var te=Z.parser;return{type:"enclose",mode:te.mode,label:"\\fbox",body:Y[0]}}}),Gr({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout"],props:{numArgs:1},handler:function(Z,Y,te){var he=Z.parser,we=Z.funcName,Ye=Y[0];return{type:"enclose",mode:he.mode,label:we,body:Ye}},htmlBuilder:Fr,mathmlBuilder:Br});var Tn={};function In(Ve){for(var Z=Ve.type,Y=Ve.names,te=Ve.props,he=Ve.handler,we=Ve.htmlBuilder,Ye=Ve.mathmlBuilder,wt={type:Z,numArgs:te.numArgs||0,greediness:1,allowedInText:!1,numOptionalArgs:0,handler:he},$t=0;$t<Y.length;++$t)Tn[Y[$t]]=wt;we&&(un[Z]=we),Ye&&(yn[Z]=Ye)}function oi(Ve){var Z=[];Ve.consumeSpaces();for(var Y=Ve.fetch().text;Y==="\\hline"||Y==="\\hdashline";)Ve.consume(),Z.push(Y==="\\hdashline"),Ve.consumeSpaces(),Y=Ve.fetch().text;return Z}function wi(Ve,Z,Y){var te=Z.hskipBeforeAndAfter,he=Z.addJot,we=Z.cols,Ye=Z.arraystretch,wt=Z.colSeparationType;if(Ve.gullet.beginGroup(),Ve.gullet.macros.set("\\\\","\\cr"),!Ye){var $t=Ve.gullet.expandMacroAsText("\\arraystretch");if($t==null)Ye=1;else if(Ye=parseFloat($t),!Ye||Ye<0)throw new o("Invalid \\arraystretch: "+$t)}Ve.gullet.beginGroup();var cr=[],Ir=[cr],Yr=[],fn=[];for(fn.push(oi(Ve));;){var Cn=Ve.parseExpression(!1,"\\cr");Ve.gullet.endGroup(),Ve.gullet.beginGroup(),Cn={type:"ordgroup",mode:Ve.mode,body:Cn},Y&&(Cn={type:"styling",mode:Ve.mode,style:Y,body:[Cn]}),cr.push(Cn);var Wn=Ve.fetch().text;if(Wn==="&")Ve.consume();else if(Wn==="\\end"){cr.length===1&&Cn.type==="styling"&&Cn.body[0].body.length===0&&Ir.pop(),fn.length<Ir.length+1&&fn.push([]);break}else if(Wn==="\\cr"){var qn=Fn(Ve.parseFunction(),"cr");Yr.push(qn.size),fn.push(oi(Ve)),cr=[],Ir.push(cr)}else throw new o("Expected & or \\\\ or \\cr or \\end",Ve.nextToken)}return Ve.gullet.endGroup(),Ve.gullet.endGroup(),{type:"array",mode:Ve.mode,addJot:he,arraystretch:Ye,body:Ir,cols:we,rowGaps:Yr,hskipBeforeAndAfter:te,hLinesBeforeRow:fn,colSeparationType:wt}}function Hn(Ve){return Ve.substr(0,1)==="d"?"display":"text"}var ta=function(Z,Y){var te,he,we=Z.body.length,Ye=Z.hLinesBeforeRow,wt=0,$t=new Array(we),cr=[],Ir=Math.max(Y.fontMetrics().arrayRuleWidth,Y.minRuleThickness),Yr=1/Y.fontMetrics().ptPerEm,fn=5*Yr;if(Z.colSeparationType&&Z.colSeparationType==="small"){var Cn=Y.havingStyle(z.SCRIPT).sizeMultiplier;fn=.2778*(Cn/Y.sizeMultiplier)}var Wn=12*Yr,qn=3*Yr,Di=Z.arraystretch*Wn,Fi=.7*Di,aa=.3*Di,ba=0;function Ts(au){for(var hl=0;hl<au.length;++hl)hl>0&&(ba+=.25),cr.push({pos:ba,isDashed:au[hl]})}for(Ts(Ye[0]),te=0;te<Z.body.length;++te){var Fs=Z.body[te],js=Fi,vs=aa;wt<Fs.length&&(wt=Fs.length);var Oa=new Array(Fs.length);for(he=0;he<Fs.length;++he){var fo=Ji(Fs[he],Y);vs<fo.depth&&(vs=fo.depth),js<fo.height&&(js=fo.height),Oa[he]=fo}var ws=Z.rowGaps[te],yr=0;ws&&(yr=ea(ws,Y),yr>0&&(yr+=aa,vs<yr&&(vs=yr),yr=0)),Z.addJot&&(vs+=qn),Oa.height=js,Oa.depth=vs,ba+=js,Oa.pos=ba,ba+=vs+yr,$t[te]=Oa,Ts(Ye[te+1])}var ko=ba/2+Y.fontMetrics().axisHeight,Uo=Z.cols||[],Su=[],Ws,qo;for(he=0,qo=0;he<wt||qo<Uo.length;++he,++qo){for(var yo=Uo[qo]||{},oc=!0;yo.type==="separator";){if(oc||(Ws=_r.makeSpan(["arraycolsep"],[]),Ws.style.width=Y.fontMetrics().doubleRuleSep+"em",Su.push(Ws)),yo.separator==="|"||yo.separator===":"){var wl=yo.separator==="|"?"solid":"dashed",Sl=_r.makeSpan(["vertical-separator"],[],Y);Sl.style.height=ba+"em",Sl.style.borderRightWidth=Ir+"em",Sl.style.borderRightStyle=wl,Sl.style.margin="0 -"+Ir/2+"em",Sl.style.verticalAlign=-(ba-ko)+"em",Su.push(Sl)}else throw new o("Invalid separator type: "+yo.separator);qo++,yo=Uo[qo]||{},oc=!1}if(!(he>=wt)){var nl=void 0;(he>0||Z.hskipBeforeAndAfter)&&(nl=A.deflt(yo.pregap,fn),nl!==0&&(Ws=_r.makeSpan(["arraycolsep"],[]),Ws.style.width=nl+"em",Su.push(Ws)));var Hs=[];for(te=0;te<we;++te){var Gu=$t[te],Ku=Gu[he];if(Ku){var Ro=Gu.pos-ko;Ku.depth=Gu.depth,Ku.height=Gu.height,Hs.push({type:"elem",elem:Ku,shift:Ro})}}Hs=_r.makeVList({positionType:"individualShift",children:Hs},Y),Hs=_r.makeSpan(["col-align-"+(yo.align||"c")],[Hs]),Su.push(Hs),(he<wt-1||Z.hskipBeforeAndAfter)&&(nl=A.deflt(yo.postgap,fn),nl!==0&&(Ws=_r.makeSpan(["arraycolsep"],[]),Ws.style.width=nl+"em",Su.push(Ws)))}}if($t=_r.makeSpan(["mtable"],Su),cr.length>0){for(var eu=_r.makeLineSpan("hline",Y,Ir),zl=_r.makeLineSpan("hdashline",Y,Ir),bu=[{type:"elem",elem:$t,shift:0}];cr.length>0;){var Zl=cr.pop(),So=Zl.pos-ko;Zl.isDashed?bu.push({type:"elem",elem:zl,shift:So}):bu.push({type:"elem",elem:eu,shift:So})}$t=_r.makeVList({positionType:"individualShift",children:bu},Y)}return _r.makeSpan(["mord"],[$t],Y)},ra={c:"center ",l:"left ",r:"right "},gi=function(Z,Y){var te=new Rn.MathNode("mtable",Z.body.map(function(ba){return new Rn.MathNode("mtr",ba.map(function(Ts){return new Rn.MathNode("mtd",[Ni(Ts,Y)])}))})),he=Z.arraystretch===.5?.1:.16+Z.arraystretch-1+(Z.addJot?.09:0);te.setAttribute("rowspacing",he+"em");var we="",Ye="";if(Z.cols){var wt=Z.cols,$t="",cr=!1,Ir=0,Yr=wt.length;wt[0].type==="separator"&&(we+="top ",Ir=1),wt[wt.length-1].type==="separator"&&(we+="bottom ",Yr-=1);for(var fn=Ir;fn<Yr;fn++)wt[fn].type==="align"?(Ye+=ra[wt[fn].align],cr&&($t+="none "),cr=!0):wt[fn].type==="separator"&&cr&&($t+=wt[fn].separator==="|"?"solid ":"dashed ",cr=!1);te.setAttribute("columnalign",Ye.trim()),/[sd]/.test($t)&&te.setAttribute("columnlines",$t.trim())}if(Z.colSeparationType==="align"){for(var Cn=Z.cols||[],Wn="",qn=1;qn<Cn.length;qn++)Wn+=qn%2?"0em ":"1em ";te.setAttribute("columnspacing",Wn.trim())}else Z.colSeparationType==="alignat"?te.setAttribute("columnspacing","0em"):Z.colSeparationType==="small"?te.setAttribute("columnspacing","0.2778em"):te.setAttribute("columnspacing","1em");var Di="",Fi=Z.hLinesBeforeRow;we+=Fi[0].length>0?"left ":"",we+=Fi[Fi.length-1].length>0?"right ":"";for(var aa=1;aa<Fi.length-1;aa++)Di+=Fi[aa].length===0?"none ":Fi[aa][0]?"dashed ":"solid ";return/[sd]/.test(Di)&&te.setAttribute("rowlines",Di.trim()),we!==""&&(te=new Rn.MathNode("menclose",[te]),te.setAttribute("notation",we.trim())),Z.arraystretch&&Z.arraystretch<1&&(te=new Rn.MathNode("mstyle",[te]),te.setAttribute("scriptlevel","1")),te},Et=function(Z,Y){var te=[],he=wi(Z.parser,{cols:te,addJot:!0},"display"),we,Ye=0,wt={type:"ordgroup",mode:Z.mode,body:[]},$t=Qn(Y[0],"ordgroup");if($t){for(var cr="",Ir=0;Ir<$t.body.length;Ir++){var Yr=Fn($t.body[Ir],"textord");cr+=Yr.text}we=Number(cr),Ye=we*2}var fn=!Ye;he.body.forEach(function(Di){for(var Fi=1;Fi<Di.length;Fi+=2){var aa=Fn(Di[Fi],"styling"),ba=Fn(aa.body[0],"ordgroup");ba.body.unshift(wt)}if(fn)Ye<Di.length&&(Ye=Di.length);else{var Ts=Di.length/2;if(we<Ts)throw new o("Too many math in a row: "+("expected "+we+", but got "+Ts),Di[0])}});for(var Cn=0;Cn<Ye;++Cn){var Wn="r",qn=0;Cn%2===1?Wn="l":Cn>0&&fn&&(qn=1),te[Cn]={type:"align",align:Wn,pregap:qn,postgap:0}}return he.colSeparationType=fn?"align":"alignat",he};In({type:"array",names:["array","darray"],props:{numArgs:1},handler:function(Z,Y){var te=sr(Y[0]),he=te?[Y[0]]:Fn(Y[0],"ordgroup").body,we=he.map(function(wt){var $t=ge(wt),cr=$t.text;if("lcr".indexOf(cr)!==-1)return{type:"align",align:cr};if(cr==="|")return{type:"separator",separator:"|"};if(cr===":")return{type:"separator",separator:":"};throw new o("Unknown column alignment: "+cr,wt)}),Ye={cols:we,hskipBeforeAndAfter:!0};return wi(Z.parser,Ye,Hn(Z.envName))},htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix"],props:{numArgs:0},handler:function(Z){var Y={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[Z.envName],te={hskipBeforeAndAfter:!1},he=wi(Z.parser,te,Hn(Z.envName));return Y?{type:"leftright",mode:Z.mode,body:[he],left:Y[0],right:Y[1],rightColor:void 0}:he},htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["smallmatrix"],props:{numArgs:0},handler:function(Z){var Y={arraystretch:.5},te=wi(Z.parser,Y,"script");return te.colSeparationType="small",te},htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["subarray"],props:{numArgs:1},handler:function(Z,Y){var te=sr(Y[0]),he=te?[Y[0]]:Fn(Y[0],"ordgroup").body,we=he.map(function(wt){var $t=ge(wt),cr=$t.text;if("lc".indexOf(cr)!==-1)return{type:"align",align:cr};throw new o("Unknown column alignment: "+cr,wt)});if(we.length>1)throw new o("{subarray} can contain only one column");var Ye={cols:we,hskipBeforeAndAfter:!1,arraystretch:.5};if(Ye=wi(Z.parser,Ye,"script"),Ye.body[0].length>1)throw new o("{subarray} can contain only one column");return Ye},htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["cases","dcases"],props:{numArgs:0},handler:function(Z){var Y={arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},te=wi(Z.parser,Y,Hn(Z.envName));return{type:"leftright",mode:Z.mode,body:[te],left:"\\{",right:".",rightColor:void 0}},htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["aligned"],props:{numArgs:0},handler:Et,htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["gathered"],props:{numArgs:0},handler:function(Z){var Y={cols:[{type:"align",align:"c"}],addJot:!0};return wi(Z.parser,Y,"display")},htmlBuilder:ta,mathmlBuilder:gi}),In({type:"array",names:["alignedat"],props:{numArgs:1},handler:Et,htmlBuilder:ta,mathmlBuilder:gi}),Gr({type:"text",names:["\\hline","\\hdashline"],props:{numArgs:0,allowedInText:!0,allowedInMath:!0},handler:function(Z,Y){throw new o(Z.funcName+" valid only within array environment")}});var Xn=Tn,Sa=Xn;Gr({type:"environment",names:["\\begin","\\end"],props:{numArgs:1,argTypes:["text"]},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0];if(we.type!=="ordgroup")throw new o("Invalid environment name",we);for(var Ye="",wt=0;wt<we.body.length;++wt)Ye+=Fn(we.body[wt],"textord").text;if(he==="\\begin"){if(!Sa.hasOwnProperty(Ye))throw new o("No such environment: "+Ye,we);var $t=Sa[Ye],cr=te.parseArguments("\\begin{"+Ye+"}",$t),Ir=cr.args,Yr=cr.optArgs,fn={mode:te.mode,envName:Ye,parser:te},Cn=$t.handler(fn,Ir,Yr);te.expect("\\end",!1);var Wn=te.nextToken,qn=Fn(te.parseFunction(),"environment");if(qn.name!==Ye)throw new o("Mismatch: \\begin{"+Ye+"} matched by \\end{"+qn.name+"}",Wn);return Cn}return{type:"environment",mode:te.mode,name:Ye,nameGroup:we}}});var Ra=_r.makeSpan;function Ys(Ve,Z){var Y=as(Ve.body,Z,!0);return Ra([Ve.mclass],Y,Z)}function sn(Ve,Z){var Y,te=Qi(Ve.body,Z);return Ve.mclass==="minner"?Rn.newDocumentFragment(te):(Ve.mclass==="mord"?Ve.isCharacterBox?(Y=te[0],Y.type="mi"):Y=new Rn.MathNode("mi",te):(Ve.isCharacterBox?(Y=te[0],Y.type="mo"):Y=new Rn.MathNode("mo",te),Ve.mclass==="mbin"?(Y.attributes.lspace="0.22em",Y.attributes.rspace="0.22em"):Ve.mclass==="mpunct"?(Y.attributes.lspace="0em",Y.attributes.rspace="0.17em"):(Ve.mclass==="mopen"||Ve.mclass==="mclose")&&(Y.attributes.lspace="0em",Y.attributes.rspace="0em")),Y)}Gr({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0];return{type:"mclass",mode:te.mode,mclass:"m"+he.substr(5),body:si(we),isCharacterBox:A.isCharacterBox(we)}},htmlBuilder:Ys,mathmlBuilder:sn});var Do=function(Z){var Y=Z.type==="ordgroup"&&Z.body.length?Z.body[0]:Z;return Y.type==="atom"&&(Y.family==="bin"||Y.family==="rel")?"m"+Y.family:"mord"};Gr({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler:function(Z,Y){var te=Z.parser;return{type:"mclass",mode:te.mode,mclass:Do(Y[0]),body:[Y[1]],isCharacterBox:A.isCharacterBox(Y[1])}}}),Gr({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[1],Ye=Y[0],wt;he!=="\\stackrel"?wt=Do(we):wt="mrel";var $t={type:"op",mode:we.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:he!=="\\stackrel",body:si(we)},cr={type:"supsub",mode:Ye.mode,base:$t,sup:he==="\\underset"?null:Ye,sub:he==="\\underset"?Ye:null};return{type:"mclass",mode:te.mode,mclass:wt,body:[cr],isCharacterBox:A.isCharacterBox(cr)}},htmlBuilder:Ys,mathmlBuilder:sn});var lo=function(Z,Y){var te=Z.font,he=Y.withFont(te);return Ji(Z.body,he)},Rs=function(Z,Y){var te=Z.font,he=Y.withFont(te);return Ni(Z.body,he)},no={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};Gr({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,greediness:2},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0],Ye=he;return Ye in no&&(Ye=no[Ye]),{type:"font",mode:te.mode,font:Ye.slice(1),body:we}},htmlBuilder:lo,mathmlBuilder:Rs}),Gr({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1,greediness:2},handler:function(Z,Y){var te=Z.parser,he=Y[0],we=A.isCharacterBox(he);return{type:"mclass",mode:te.mode,mclass:Do(he),body:[{type:"font",mode:te.mode,font:"boldsymbol",body:he}],isCharacterBox:we}}}),Gr({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it"],props:{numArgs:0,allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Z.breakOnTokenText,Ye=te.mode,wt=te.parseExpression(!0,we),$t="math"+he.slice(1);return{type:"font",mode:Ye,font:$t,body:{type:"ordgroup",mode:te.mode,body:wt}}},htmlBuilder:lo,mathmlBuilder:Rs});var io=function(Z,Y){var te=Y;return Z==="display"?te=te.id>=z.SCRIPT.id?te.text():z.DISPLAY:Z==="text"&&te.size===z.DISPLAY.size?te=z.TEXT:Z==="script"?te=z.SCRIPT:Z==="scriptscript"&&(te=z.SCRIPTSCRIPT),te},ts=function(Z,Y){var te=io(Z.size,Y.style),he=te.fracNum(),we=te.fracDen(),Ye;Ye=Y.havingStyle(he);var wt=Ji(Z.numer,Ye,Y);if(Z.continued){var $t=8.5/Y.fontMetrics().ptPerEm,cr=3.5/Y.fontMetrics().ptPerEm;wt.height=wt.height<$t?$t:wt.height,wt.depth=wt.depth<cr?cr:wt.depth}Ye=Y.havingStyle(we);var Ir=Ji(Z.denom,Ye,Y),Yr,fn,Cn;Z.hasBarLine?(Z.barSize?(fn=ea(Z.barSize,Y),Yr=_r.makeLineSpan("frac-line",Y,fn)):Yr=_r.makeLineSpan("frac-line",Y),fn=Yr.height,Cn=Yr.height):(Yr=null,fn=0,Cn=Y.fontMetrics().defaultRuleThickness);var Wn,qn,Di;te.size===z.DISPLAY.size||Z.size==="display"?(Wn=Y.fontMetrics().num1,fn>0?qn=3*Cn:qn=7*Cn,Di=Y.fontMetrics().denom1):(fn>0?(Wn=Y.fontMetrics().num2,qn=Cn):(Wn=Y.fontMetrics().num3,qn=3*Cn),Di=Y.fontMetrics().denom2);var Fi;if(Yr){var ba=Y.fontMetrics().axisHeight;Wn-wt.depth-(ba+.5*fn)<qn&&(Wn+=qn-(Wn-wt.depth-(ba+.5*fn))),ba-.5*fn-(Ir.height-Di)<qn&&(Di+=qn-(ba-.5*fn-(Ir.height-Di)));var Ts=-(ba-.5*fn);Fi=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:Ir,shift:Di},{type:"elem",elem:Yr,shift:Ts},{type:"elem",elem:wt,shift:-Wn}]},Y)}else{var aa=Wn-wt.depth-(Ir.height-Di);aa<qn&&(Wn+=.5*(qn-aa),Di+=.5*(qn-aa)),Fi=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:Ir,shift:Di},{type:"elem",elem:wt,shift:-Wn}]},Y)}Ye=Y.havingStyle(te),Fi.height*=Ye.sizeMultiplier/Y.sizeMultiplier,Fi.depth*=Ye.sizeMultiplier/Y.sizeMultiplier;var Fs;te.size===z.DISPLAY.size?Fs=Y.fontMetrics().delim1:Fs=Y.fontMetrics().delim2;var js,vs;return Z.leftDelim==null?js=po(Y,["mopen"]):js=Ln.customSizedDelim(Z.leftDelim,Fs,!0,Y.havingStyle(te),Z.mode,["mopen"]),Z.continued?vs=_r.makeSpan([]):Z.rightDelim==null?vs=po(Y,["mclose"]):vs=Ln.customSizedDelim(Z.rightDelim,Fs,!0,Y.havingStyle(te),Z.mode,["mclose"]),_r.makeSpan(["mord"].concat(Ye.sizingClasses(Y)),[js,_r.makeSpan(["mfrac"],[Fi]),vs],Y)},cs=function(Z,Y){var te=new Rn.MathNode("mfrac",[Ni(Z.numer,Y),Ni(Z.denom,Y)]);if(!Z.hasBarLine)te.setAttribute("linethickness","0px");else if(Z.barSize){var he=ea(Z.barSize,Y);te.setAttribute("linethickness",he+"em")}var we=io(Z.size,Y.style);if(we.size!==Y.style.size){te=new Rn.MathNode("mstyle",[te]);var Ye=we.size===z.DISPLAY.size?"true":"false";te.setAttribute("displaystyle",Ye),te.setAttribute("scriptlevel","0")}if(Z.leftDelim!=null||Z.rightDelim!=null){var wt=[];if(Z.leftDelim!=null){var $t=new Rn.MathNode("mo",[new Rn.TextNode(Z.leftDelim.replace("\\",""))]);$t.setAttribute("fence","true"),wt.push($t)}if(wt.push(te),Z.rightDelim!=null){var cr=new Rn.MathNode("mo",[new Rn.TextNode(Z.rightDelim.replace("\\",""))]);cr.setAttribute("fence","true"),wt.push(cr)}return Ps(wt)}return te};Gr({type:"genfrac",names:["\\cfrac","\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,greediness:2},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0],Ye=Y[1],wt,$t=null,cr=null,Ir="auto";switch(he){case"\\cfrac":case"\\dfrac":case"\\frac":case"\\tfrac":wt=!0;break;case"\\\\atopfrac":wt=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":wt=!1,$t="(",cr=")";break;case"\\\\bracefrac":wt=!1,$t="\\{",cr="\\}";break;case"\\\\brackfrac":wt=!1,$t="[",cr="]";break;default:throw new Error("Unrecognized genfrac command")}switch(he){case"\\cfrac":case"\\dfrac":case"\\dbinom":Ir="display";break;case"\\tfrac":case"\\tbinom":Ir="text";break}return{type:"genfrac",mode:te.mode,continued:he==="\\cfrac",numer:we,denom:Ye,hasBarLine:wt,leftDelim:$t,rightDelim:cr,size:Ir,barSize:null}},htmlBuilder:ts,mathmlBuilder:cs}),Gr({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler:function(Z){var Y=Z.parser,te=Z.funcName,he=Z.token,we;switch(te){case"\\over":we="\\frac";break;case"\\choose":we="\\binom";break;case"\\atop":we="\\\\atopfrac";break;case"\\brace":we="\\\\bracefrac";break;case"\\brack":we="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:Y.mode,replaceWith:we,token:he}}});var ja=["display","text","script","scriptscript"],os=function(Z){var Y=null;return Z.length>0&&(Y=Z,Y=Y==="."?null:Y),Y};Gr({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,greediness:6,argTypes:["math","math","size","text","math","math"]},handler:function(Z,Y){var te=Z.parser,he=Y[4],we=Y[5],Ye=Qn(Y[0],"atom");Ye&&(Ye=Ke(Y[0],"open"));var wt=Ye?os(Ye.text):null,$t=Qn(Y[1],"atom");$t&&($t=Ke(Y[1],"close"));var cr=$t?os($t.text):null,Ir=Fn(Y[2],"size"),Yr,fn=null;Ir.isBlank?Yr=!0:(fn=Ir.value,Yr=fn.number>0);var Cn="auto",Wn=Qn(Y[3],"ordgroup");if(Wn){if(Wn.body.length>0){var qn=Fn(Wn.body[0],"textord");Cn=ja[Number(qn.text)]}}else Wn=Fn(Y[3],"textord"),Cn=ja[Number(Wn.text)];return{type:"genfrac",mode:te.mode,numer:he,denom:we,continued:!1,hasBarLine:Yr,barSize:fn,leftDelim:wt,rightDelim:cr,size:Cn}},htmlBuilder:ts,mathmlBuilder:cs}),Gr({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Z.token;return{type:"infix",mode:te.mode,replaceWith:"\\\\abovefrac",size:Fn(Y[0],"size").value,token:we}}}),Gr({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0],Ye=k(Fn(Y[1],"infix").size),wt=Y[2],$t=Ye.number>0;return{type:"genfrac",mode:te.mode,numer:we,denom:wt,continued:!1,hasBarLine:$t,barSize:Ye,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:ts,mathmlBuilder:cs});var Qe=function(Z,Y){var te=Y.style,he,we,Ye=Qn(Z,"supsub");Ye?(he=Ye.sup?Ji(Ye.sup,Y.havingStyle(te.sup()),Y):Ji(Ye.sub,Y.havingStyle(te.sub()),Y),we=Fn(Ye.base,"horizBrace")):we=Fn(Z,"horizBrace");var wt=Ji(we.base,Y.havingBaseStyle(z.DISPLAY)),$t=vi.svgSpan(we,Y),cr;if(we.isOver?(cr=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:wt},{type:"kern",size:.1},{type:"elem",elem:$t}]},Y),cr.children[0].children[0].children[1].classes.push("svg-align")):(cr=_r.makeVList({positionType:"bottom",positionData:wt.depth+.1+$t.height,children:[{type:"elem",elem:$t},{type:"kern",size:.1},{type:"elem",elem:wt}]},Y),cr.children[0].children[0].children[0].classes.push("svg-align")),he){var Ir=_r.makeSpan(["mord",we.isOver?"mover":"munder"],[cr],Y);we.isOver?cr=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:Ir},{type:"kern",size:.2},{type:"elem",elem:he}]},Y):cr=_r.makeVList({positionType:"bottom",positionData:Ir.depth+.2+he.height+he.depth,children:[{type:"elem",elem:he},{type:"kern",size:.2},{type:"elem",elem:Ir}]},Y)}return _r.makeSpan(["mord",we.isOver?"mover":"munder"],[cr],Y)},Pe=function(Z,Y){var te=vi.mathMLnode(Z.label);return new Rn.MathNode(Z.isOver?"mover":"munder",[Ni(Z.base,Y),te])};Gr({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser,he=Z.funcName;return{type:"horizBrace",mode:te.mode,label:he,isOver:/^\\over/.test(he),base:Y[0]}},htmlBuilder:Qe,mathmlBuilder:Pe}),Gr({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Y[1],we=Fn(Y[0],"url").url;return te.settings.isTrusted({command:"\\href",url:we})?{type:"href",mode:te.mode,href:we,body:si(he)}:te.formatUnsupportedCmd("\\href")},htmlBuilder:function(Z,Y){var te=as(Z.body,Y,!1);return _r.makeAnchor(Z.href,[],te,Y)},mathmlBuilder:function(Z,Y){var te=Ka(Z.body,Y);return te instanceof zs||(te=new zs("mrow",[te])),te.setAttribute("href",Z.href),te}}),Gr({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Fn(Y[0],"url").url;if(!te.settings.isTrusted({command:"\\url",url:he}))return te.formatUnsupportedCmd("\\url");for(var we=[],Ye=0;Ye<he.length;Ye++){var wt=he[Ye];wt==="~"&&(wt="\\textasciitilde"),we.push({type:"textord",mode:"text",text:wt})}var $t={type:"text",mode:te.mode,font:"\\texttt",body:we};return{type:"href",mode:te.mode,href:he,body:si($t)}}}),Gr({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:function(Z,Y){var te=Z.parser;return{type:"htmlmathml",mode:te.mode,html:si(Y[0]),mathml:si(Y[1])}},htmlBuilder:function(Z,Y){var te=as(Z.html,Y,!1);return _r.makeFragment(te)},mathmlBuilder:function(Z,Y){return Ka(Z.mathml,Y)}});var Ft=function(Z){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(Z))return{number:+Z,unit:"bp"};var Y=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(Z);if(!Y)throw new o("Invalid size: '"+Z+"' in \\includegraphics");var te={number:+(Y[1]+Y[2]),unit:Y[3]};if(!ha(te))throw new o("Invalid unit: '"+te.unit+"' in \\includegraphics.");return te};Gr({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:function(Z,Y,te){var he=Z.parser,we={number:0,unit:"em"},Ye={number:.9,unit:"em"},wt={number:0,unit:"em"},$t="";if(te[0])for(var cr=Fn(te[0],"raw").string,Ir=cr.split(","),Yr=0;Yr<Ir.length;Yr++){var fn=Ir[Yr].split("=");if(fn.length===2){var Cn=fn[1].trim();switch(fn[0].trim()){case"alt":$t=Cn;break;case"width":we=Ft(Cn);break;case"height":Ye=Ft(Cn);break;case"totalheight":wt=Ft(Cn);break;default:throw new o("Invalid key: '"+fn[0]+"' in \\includegraphics.")}}}var Wn=Fn(Y[0],"url").url;return $t===""&&($t=Wn,$t=$t.replace(/^.*[\\/]/,""),$t=$t.substring(0,$t.lastIndexOf("."))),he.settings.isTrusted({command:"\\includegraphics",url:Wn})?{type:"includegraphics",mode:he.mode,alt:$t,width:we,height:Ye,totalheight:wt,src:Wn}:he.formatUnsupportedCmd("\\includegraphics")},htmlBuilder:function(Z,Y){var te=ea(Z.height,Y),he=0;Z.totalheight.number>0&&(he=ea(Z.totalheight,Y)-te,he=Number(he.toFixed(2)));var we=0;Z.width.number>0&&(we=ea(Z.width,Y));var Ye={height:te+he+"em"};we>0&&(Ye.width=we+"em"),he>0&&(Ye.verticalAlign=-he+"em");var wt=new Ne(Z.src,Z.alt,Ye);return wt.height=te,wt.depth=he,wt},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mglyph",[]);te.setAttribute("alt",Z.alt);var he=ea(Z.height,Y),we=0;if(Z.totalheight.number>0&&(we=ea(Z.totalheight,Y)-he,we=we.toFixed(2),te.setAttribute("valign","-"+we+"em")),te.setAttribute("height",he+we+"em"),Z.width.number>0){var Ye=ea(Z.width,Y);te.setAttribute("width",Ye+"em")}return te.setAttribute("src",Z.src),te}}),Gr({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Fn(Y[0],"size");if(te.settings.strict){var Ye=he[1]==="m",wt=we.value.unit==="mu";Ye?(wt||te.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+he+" supports only mu units, "+("not "+we.value.unit+" units")),te.mode!=="math"&&te.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+he+" works only in math mode")):wt&&te.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+he+" doesn't support mu units")}return{type:"kern",mode:te.mode,dimension:we.value}},htmlBuilder:function(Z,Y){return _r.makeGlue(Z.dimension,Y)},mathmlBuilder:function(Z,Y){var te=ea(Z.dimension,Y);return new Rn.SpaceNode(te)}}),Gr({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0];return{type:"lap",mode:te.mode,alignment:he.slice(5),body:we}},htmlBuilder:function(Z,Y){var te;Z.alignment==="clap"?(te=_r.makeSpan([],[Ji(Z.body,Y)]),te=_r.makeSpan(["inner"],[te],Y)):te=_r.makeSpan(["inner"],[Ji(Z.body,Y)]);var he=_r.makeSpan(["fix"],[]),we=_r.makeSpan([Z.alignment],[te,he],Y),Ye=_r.makeSpan(["strut"]);return Ye.style.height=we.height+we.depth+"em",Ye.style.verticalAlign=-we.depth+"em",we.children.unshift(Ye),we=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:we}]},Y),_r.makeSpan(["mord"],[we],Y)},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mpadded",[Ni(Z.body,Y)]);if(Z.alignment!=="rlap"){var he=Z.alignment==="llap"?"-1":"-0.5";te.setAttribute("lspace",he+"width")}return te.setAttribute("width","0px"),te}}),Gr({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler:function(Z,Y){var te=Z.funcName,he=Z.parser,we=he.mode;he.switchMode("math");var Ye=te==="\\("?"\\)":"$",wt=he.parseExpression(!1,Ye);return he.expect(Ye),he.switchMode(we),{type:"styling",mode:he.mode,style:"text",body:wt}}}),Gr({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler:function(Z,Y){throw new o("Mismatched "+Z.funcName)}});var _t=function(Z,Y){switch(Y.style.size){case z.DISPLAY.size:return Z.display;case z.TEXT.size:return Z.text;case z.SCRIPT.size:return Z.script;case z.SCRIPTSCRIPT.size:return Z.scriptscript;default:return Z.text}};Gr({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4},handler:function(Z,Y){var te=Z.parser;return{type:"mathchoice",mode:te.mode,display:si(Y[0]),text:si(Y[1]),script:si(Y[2]),scriptscript:si(Y[3])}},htmlBuilder:function(Z,Y){var te=_t(Z,Y),he=as(te,Y,!1);return _r.makeFragment(he)},mathmlBuilder:function(Z,Y){var te=_t(Z,Y);return Ka(te,Y)}});var Sr=function(Z,Y,te,he,we,Ye,wt){Z=_r.makeSpan([],[Z]);var $t,cr;if(Y){var Ir=Ji(Y,he.havingStyle(we.sup()),he);cr={elem:Ir,kern:Math.max(he.fontMetrics().bigOpSpacing1,he.fontMetrics().bigOpSpacing3-Ir.depth)}}if(te){var Yr=Ji(te,he.havingStyle(we.sub()),he);$t={elem:Yr,kern:Math.max(he.fontMetrics().bigOpSpacing2,he.fontMetrics().bigOpSpacing4-Yr.height)}}var fn;if(cr&&$t){var Cn=he.fontMetrics().bigOpSpacing5+$t.elem.height+$t.elem.depth+$t.kern+Z.depth+wt;fn=_r.makeVList({positionType:"bottom",positionData:Cn,children:[{type:"kern",size:he.fontMetrics().bigOpSpacing5},{type:"elem",elem:$t.elem,marginLeft:-Ye+"em"},{type:"kern",size:$t.kern},{type:"elem",elem:Z},{type:"kern",size:cr.kern},{type:"elem",elem:cr.elem,marginLeft:Ye+"em"},{type:"kern",size:he.fontMetrics().bigOpSpacing5}]},he)}else if($t){var Wn=Z.height-wt;fn=_r.makeVList({positionType:"top",positionData:Wn,children:[{type:"kern",size:he.fontMetrics().bigOpSpacing5},{type:"elem",elem:$t.elem,marginLeft:-Ye+"em"},{type:"kern",size:$t.kern},{type:"elem",elem:Z}]},he)}else if(cr){var qn=Z.depth+wt;fn=_r.makeVList({positionType:"bottom",positionData:qn,children:[{type:"elem",elem:Z},{type:"kern",size:cr.kern},{type:"elem",elem:cr.elem,marginLeft:Ye+"em"},{type:"kern",size:he.fontMetrics().bigOpSpacing5}]},he)}else return Z;return _r.makeSpan(["mop","op-limits"],[fn],he)},Mr=["\\smallint"],Kr=function(Z,Y){var te,he,we=!1,Ye,wt=Qn(Z,"supsub");wt?(te=wt.sup,he=wt.sub,Ye=Fn(wt.base,"op"),we=!0):Ye=Fn(Z,"op");var $t=Y.style,cr=!1;$t.size===z.DISPLAY.size&&Ye.symbol&&!A.contains(Mr,Ye.name)&&(cr=!0);var Ir;if(Ye.symbol){var Yr=cr?"Size2-Regular":"Size1-Regular",fn="";if((Ye.name==="\\oiint"||Ye.name==="\\oiiint")&&(fn=Ye.name.substr(1),Ye.name=fn==="oiint"?"\\iint":"\\iiint"),Ir=_r.makeSymbol(Ye.name,Yr,"math",Y,["mop","op-symbol",cr?"large-op":"small-op"]),fn.length>0){var Cn=Ir.italic,Wn=_r.staticSvg(fn+"Size"+(cr?"2":"1"),Y);Ir=_r.makeVList({positionType:"individualShift",children:[{type:"elem",elem:Ir,shift:0},{type:"elem",elem:Wn,shift:cr?.08:0}]},Y),Ye.name="\\"+fn,Ir.classes.unshift("mop"),Ir.italic=Cn}}else if(Ye.body){var qn=as(Ye.body,Y,!0);qn.length===1&&qn[0]instanceof ke?(Ir=qn[0],Ir.classes[0]="mop"):Ir=_r.makeSpan(["mop"],_r.tryCombineChars(qn),Y)}else{for(var Di=[],Fi=1;Fi<Ye.name.length;Fi++)Di.push(_r.mathsym(Ye.name[Fi],Ye.mode,Y));Ir=_r.makeSpan(["mop"],Di,Y)}var aa=0,ba=0;return(Ir instanceof ke||Ye.name==="\\oiint"||Ye.name==="\\oiiint")&&!Ye.suppressBaseShift&&(aa=(Ir.height-Ir.depth)/2-Y.fontMetrics().axisHeight,ba=Ir.italic),we?Sr(Ir,te,he,Y,$t,ba,aa):(aa&&(Ir.style.position="relative",Ir.style.top=aa+"em"),Ir)},xn=function(Z,Y){var te;if(Z.symbol)te=new zs("mo",[ss(Z.name,Z.mode)]),A.contains(Mr,Z.name)&&te.setAttribute("largeop","false");else if(Z.body)te=new zs("mo",Qi(Z.body,Y));else{te=new zs("mi",[new di(Z.name.slice(1))]);var he=new zs("mo",[ss("\u2061","text")]);Z.parentIsSupSub?te=new zs("mo",[te,he]):te=Na([te,he])}return te},cn={"\u220F":"\\prod","\u2210":"\\coprod","\u2211":"\\sum","\u22C0":"\\bigwedge","\u22C1":"\\bigvee","\u22C2":"\\bigcap","\u22C3":"\\bigcup","\u2A00":"\\bigodot","\u2A01":"\\bigoplus","\u2A02":"\\bigotimes","\u2A04":"\\biguplus","\u2A06":"\\bigsqcup"};Gr({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","\u220F","\u2210","\u2211","\u22C0","\u22C1","\u22C2","\u22C3","\u2A00","\u2A01","\u2A02","\u2A04","\u2A06"],props:{numArgs:0},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=he;return we.length===1&&(we=cn[we]),{type:"op",mode:te.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:we}},htmlBuilder:Kr,mathmlBuilder:xn}),Gr({type:"op",names:["\\mathop"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser,he=Y[0];return{type:"op",mode:te.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:si(he)}},htmlBuilder:Kr,mathmlBuilder:xn});var Sn={"\u222B":"\\int","\u222C":"\\iint","\u222D":"\\iiint","\u222E":"\\oint","\u222F":"\\oiint","\u2230":"\\oiiint"};Gr({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler:function(Z){var Y=Z.parser,te=Z.funcName;return{type:"op",mode:Y.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:te}},htmlBuilder:Kr,mathmlBuilder:xn}),Gr({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler:function(Z){var Y=Z.parser,te=Z.funcName;return{type:"op",mode:Y.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:te}},htmlBuilder:Kr,mathmlBuilder:xn}),Gr({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","\u222B","\u222C","\u222D","\u222E","\u222F","\u2230"],props:{numArgs:0},handler:function(Z){var Y=Z.parser,te=Z.funcName,he=te;return he.length===1&&(he=Sn[he]),{type:"op",mode:Y.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:he}},htmlBuilder:Kr,mathmlBuilder:xn});var ri=function(Z,Y){var te,he,we=!1,Ye,wt=Qn(Z,"supsub");wt?(te=wt.sup,he=wt.sub,Ye=Fn(wt.base,"operatorname"),we=!0):Ye=Fn(Z,"operatorname");var $t;if(Ye.body.length>0){for(var cr=Ye.body.map(function(Cn){var Wn=Cn.text;return typeof Wn=="string"?{type:"textord",mode:Cn.mode,text:Wn}:Cn}),Ir=as(cr,Y.withFont("mathrm"),!0),Yr=0;Yr<Ir.length;Yr++){var fn=Ir[Yr];fn instanceof ke&&(fn.text=fn.text.replace(/\u2212/,"-").replace(/\u2217/,"*"))}$t=_r.makeSpan(["mop"],Ir,Y)}else $t=_r.makeSpan(["mop"],[],Y);return we?Sr($t,te,he,Y,Y.style,0,0):$t},ni=function(Z,Y){for(var te=Qi(Z.body,Y.withFont("mathrm")),he=!0,we=0;we<te.length;we++){var Ye=te[we];if(!(Ye instanceof Rn.SpaceNode))if(Ye instanceof Rn.MathNode)switch(Ye.type){case"mi":case"mn":case"ms":case"mspace":case"mtext":break;case"mo":{var wt=Ye.children[0];Ye.children.length===1&&wt instanceof Rn.TextNode?wt.text=wt.text.replace(/\u2212/,"-").replace(/\u2217/,"*"):he=!1;break}default:he=!1}else he=!1}if(he){var $t=te.map(function(Yr){return Yr.toText()}).join("");te=[new Rn.TextNode($t)]}var cr=new Rn.MathNode("mi",te);cr.setAttribute("mathvariant","normal");var Ir=new Rn.MathNode("mo",[ss("\u2061","text")]);return Z.parentIsSupSub?new Rn.MathNode("mo",[cr,Ir]):Rn.newDocumentFragment([cr,Ir])};Gr({type:"operatorname",names:["\\operatorname","\\operatorname*"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0];return{type:"operatorname",mode:te.mode,body:si(we),alwaysHandleSupSub:he==="\\operatorname*",limits:!1,parentIsSupSub:!1}},htmlBuilder:ri,mathmlBuilder:ni}),kn({type:"ordgroup",htmlBuilder:function(Z,Y){return Z.semisimple?_r.makeFragment(as(Z.body,Y,!1)):_r.makeSpan(["mord"],as(Z.body,Y,!0),Y)},mathmlBuilder:function(Z,Y){return Ka(Z.body,Y,!0)}}),Gr({type:"overline",names:["\\overline"],props:{numArgs:1},handler:function(Z,Y){var te=Z.parser,he=Y[0];return{type:"overline",mode:te.mode,body:he}},htmlBuilder:function(Z,Y){var te=Ji(Z.body,Y.havingCrampedStyle()),he=_r.makeLineSpan("overline-line",Y),we=Y.fontMetrics().defaultRuleThickness,Ye=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:te},{type:"kern",size:3*we},{type:"elem",elem:he},{type:"kern",size:we}]},Y);return _r.makeSpan(["mord","overline"],[Ye],Y)},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mo",[new Rn.TextNode("\u203E")]);te.setAttribute("stretchy","true");var he=new Rn.MathNode("mover",[Ni(Z.body,Y),te]);return he.setAttribute("accent","true"),he}}),Gr({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Y[0];return{type:"phantom",mode:te.mode,body:si(he)}},htmlBuilder:function(Z,Y){var te=as(Z.body,Y.withPhantom(),!1);return _r.makeFragment(te)},mathmlBuilder:function(Z,Y){var te=Qi(Z.body,Y);return new Rn.MathNode("mphantom",te)}}),Gr({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Y[0];return{type:"hphantom",mode:te.mode,body:he}},htmlBuilder:function(Z,Y){var te=_r.makeSpan([],[Ji(Z.body,Y.withPhantom())]);if(te.height=0,te.depth=0,te.children)for(var he=0;he<te.children.length;he++)te.children[he].height=0,te.children[he].depth=0;return te=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:te}]},Y),_r.makeSpan(["mord"],[te],Y)},mathmlBuilder:function(Z,Y){var te=Qi(si(Z.body),Y),he=new Rn.MathNode("mphantom",te),we=new Rn.MathNode("mpadded",[he]);return we.setAttribute("height","0px"),we.setAttribute("depth","0px"),we}}),Gr({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Y[0];return{type:"vphantom",mode:te.mode,body:he}},htmlBuilder:function(Z,Y){var te=_r.makeSpan(["inner"],[Ji(Z.body,Y.withPhantom())]),he=_r.makeSpan(["fix"],[]);return _r.makeSpan(["mord","rlap"],[te,he],Y)},mathmlBuilder:function(Z,Y){var te=Qi(si(Z.body),Y),he=new Rn.MathNode("mphantom",te),we=new Rn.MathNode("mpadded",[he]);return we.setAttribute("width","0px"),we}}),Gr({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Fn(Y[0],"size").value,we=Y[1];return{type:"raisebox",mode:te.mode,dy:he,body:we}},htmlBuilder:function(Z,Y){var te=Ji(Z.body,Y),he=ea(Z.dy,Y);return _r.makeVList({positionType:"shift",positionData:-he,children:[{type:"elem",elem:te}]},Y)},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mpadded",[Ni(Z.body,Y)]),he=Z.dy.number+Z.dy.unit;return te.setAttribute("voffset",he),te}}),Gr({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,argTypes:["size","size","size"]},handler:function(Z,Y,te){var he=Z.parser,we=te[0],Ye=Fn(Y[0],"size"),wt=Fn(Y[1],"size");return{type:"rule",mode:he.mode,shift:we&&Fn(we,"size").value,width:Ye.value,height:wt.value}},htmlBuilder:function(Z,Y){var te=_r.makeSpan(["mord","rule"],[],Y),he=ea(Z.width,Y),we=ea(Z.height,Y),Ye=Z.shift?ea(Z.shift,Y):0;return te.style.borderRightWidth=he+"em",te.style.borderTopWidth=we+"em",te.style.bottom=Ye+"em",te.width=he,te.height=we+Ye,te.depth=-Ye,te.maxFontSize=we*1.125*Y.sizeMultiplier,te},mathmlBuilder:function(Z,Y){var te=ea(Z.width,Y),he=ea(Z.height,Y),we=Z.shift?ea(Z.shift,Y):0,Ye=Y.color&&Y.getColor()||"black",wt=new Rn.MathNode("mspace");wt.setAttribute("mathbackground",Ye),wt.setAttribute("width",te+"em"),wt.setAttribute("height",he+"em");var $t=new Rn.MathNode("mpadded",[wt]);return we>=0?$t.setAttribute("height","+"+we+"em"):($t.setAttribute("height",we+"em"),$t.setAttribute("depth","+"+-we+"em")),$t.setAttribute("voffset",we+"em"),$t}});function yi(Ve,Z,Y){for(var te=as(Ve,Z,!1),he=Z.sizeMultiplier/Y.sizeMultiplier,we=0;we<te.length;we++){var Ye=te[we].classes.indexOf("sizing");Ye<0?Array.prototype.push.apply(te[we].classes,Z.sizingClasses(Y)):te[we].classes[Ye+1]==="reset-size"+Z.size&&(te[we].classes[Ye+1]="reset-size"+Y.size),te[we].height*=he,te[we].depth*=he}return _r.makeFragment(te)}var Li=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"],na=function(Z,Y){var te=Y.havingSize(Z.size);return yi(Z.body,te,Y)};Gr({type:"sizing",names:Li,props:{numArgs:0,allowedInText:!0},handler:function(Z,Y){var te=Z.breakOnTokenText,he=Z.funcName,we=Z.parser,Ye=we.parseExpression(!1,te);return{type:"sizing",mode:we.mode,size:Li.indexOf(he)+1,body:Ye}},htmlBuilder:na,mathmlBuilder:function(Z,Y){var te=Y.havingSize(Z.size),he=Qi(Z.body,te),we=new Rn.MathNode("mstyle",he);return we.setAttribute("mathsize",te.sizeMultiplier+"em"),we}}),Gr({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:function(Z,Y,te){var he=Z.parser,we=!1,Ye=!1,wt=te[0]&&Fn(te[0],"ordgroup");if(wt)for(var $t="",cr=0;cr<wt.body.length;++cr){var Ir=wt.body[cr];if($t=Ir.text,$t==="t")we=!0;else if($t==="b")Ye=!0;else{we=!1,Ye=!1;break}}else we=!0,Ye=!0;var Yr=Y[0];return{type:"smash",mode:he.mode,body:Yr,smashHeight:we,smashDepth:Ye}},htmlBuilder:function(Z,Y){var te=_r.makeSpan([],[Ji(Z.body,Y)]);if(!Z.smashHeight&&!Z.smashDepth)return te;if(Z.smashHeight&&(te.height=0,te.children))for(var he=0;he<te.children.length;he++)te.children[he].height=0;if(Z.smashDepth&&(te.depth=0,te.children))for(var we=0;we<te.children.length;we++)te.children[we].depth=0;var Ye=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:te}]},Y);return _r.makeSpan(["mord"],[Ye],Y)},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mpadded",[Ni(Z.body,Y)]);return Z.smashHeight&&te.setAttribute("height","0px"),Z.smashDepth&&te.setAttribute("depth","0px"),te}}),Gr({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler:function(Z,Y,te){var he=Z.parser,we=te[0],Ye=Y[0];return{type:"sqrt",mode:he.mode,body:Ye,index:we}},htmlBuilder:function(Z,Y){var te=Ji(Z.body,Y.havingCrampedStyle());te.height===0&&(te.height=Y.fontMetrics().xHeight),te=_r.wrapFragment(te,Y);var he=Y.fontMetrics(),we=he.defaultRuleThickness,Ye=we;Y.style.id<z.TEXT.id&&(Ye=Y.fontMetrics().xHeight);var wt=we+Ye/4,$t=te.height+te.depth+wt+we,cr=Ln.sqrtImage($t,Y),Ir=cr.span,Yr=cr.ruleWidth,fn=cr.advanceWidth,Cn=Ir.height-Yr;Cn>te.height+te.depth+wt&&(wt=(wt+Cn-te.height-te.depth)/2);var Wn=Ir.height-te.height-wt-Yr;te.style.paddingLeft=fn+"em";var qn=_r.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:te,wrapperClasses:["svg-align"]},{type:"kern",size:-(te.height+Wn)},{type:"elem",elem:Ir},{type:"kern",size:Yr}]},Y);if(Z.index){var Di=Y.havingStyle(z.SCRIPTSCRIPT),Fi=Ji(Z.index,Di,Y),aa=.6*(qn.height-qn.depth),ba=_r.makeVList({positionType:"shift",positionData:-aa,children:[{type:"elem",elem:Fi}]},Y),Ts=_r.makeSpan(["root"],[ba]);return _r.makeSpan(["mord","sqrt"],[Ts,qn],Y)}else return _r.makeSpan(["mord","sqrt"],[qn],Y)},mathmlBuilder:function(Z,Y){var te=Z.body,he=Z.index;return he?new Rn.MathNode("mroot",[Ni(te,Y),Ni(he,Y)]):new Rn.MathNode("msqrt",[Ni(te,Y)])}});var Wi={display:z.DISPLAY,text:z.TEXT,script:z.SCRIPT,scriptscript:z.SCRIPTSCRIPT};Gr({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0},handler:function(Z,Y){var te=Z.breakOnTokenText,he=Z.funcName,we=Z.parser,Ye=we.parseExpression(!0,te),wt=he.slice(1,he.length-5);return{type:"styling",mode:we.mode,style:wt,body:Ye}},htmlBuilder:function(Z,Y){var te=Wi[Z.style],he=Y.havingStyle(te).withFont("");return yi(Z.body,he,Y)},mathmlBuilder:function(Z,Y){var te=Wi[Z.style],he=Y.havingStyle(te),we=Qi(Z.body,he),Ye=new Rn.MathNode("mstyle",we),wt={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]},$t=wt[Z.style];return Ye.setAttribute("scriptlevel",$t[0]),Ye.setAttribute("displaystyle",$t[1]),Ye}});var Ci=function(Z,Y){var te=Z.base;if(te)if(te.type==="op"){var he=te.limits&&(Y.style.size===z.DISPLAY.size||te.alwaysHandleSupSub);return he?Kr:null}else if(te.type==="operatorname"){var we=te.alwaysHandleSupSub&&(Y.style.size===z.DISPLAY.size||te.limits);return we?ri:null}else{if(te.type==="accent")return A.isCharacterBox(te.base)?qa:null;if(te.type==="horizBrace"){var Ye=!Z.sub;return Ye===te.isOver?Qe:null}else return null}else return null};kn({type:"supsub",htmlBuilder:function(Z,Y){var te=Ci(Z,Y);if(te)return te(Z,Y);var he=Z.base,we=Z.sup,Ye=Z.sub,wt=Ji(he,Y),$t,cr,Ir=Y.fontMetrics(),Yr=0,fn=0,Cn=he&&A.isCharacterBox(he);if(we){var Wn=Y.havingStyle(Y.style.sup());$t=Ji(we,Wn,Y),Cn||(Yr=wt.height-Wn.fontMetrics().supDrop*Wn.sizeMultiplier/Y.sizeMultiplier)}if(Ye){var qn=Y.havingStyle(Y.style.sub());cr=Ji(Ye,qn,Y),Cn||(fn=wt.depth+qn.fontMetrics().subDrop*qn.sizeMultiplier/Y.sizeMultiplier)}var Di;Y.style===z.DISPLAY?Di=Ir.sup1:Y.style.cramped?Di=Ir.sup3:Di=Ir.sup2;var Fi=Y.sizeMultiplier,aa=.5/Ir.ptPerEm/Fi+"em",ba=null;if(cr){var Ts=Z.base&&Z.base.type==="op"&&Z.base.name&&(Z.base.name==="\\oiint"||Z.base.name==="\\oiiint");(wt instanceof ke||Ts)&&(ba=-wt.italic+"em")}var Fs;if($t&&cr){Yr=Math.max(Yr,Di,$t.depth+.25*Ir.xHeight),fn=Math.max(fn,Ir.sub2);var js=Ir.defaultRuleThickness,vs=4*js;if(Yr-$t.depth-(cr.height-fn)<vs){fn=vs-(Yr-$t.depth)+cr.height;var Oa=.8*Ir.xHeight-(Yr-$t.depth);Oa>0&&(Yr+=Oa,fn-=Oa)}var fo=[{type:"elem",elem:cr,shift:fn,marginRight:aa,marginLeft:ba},{type:"elem",elem:$t,shift:-Yr,marginRight:aa}];Fs=_r.makeVList({positionType:"individualShift",children:fo},Y)}else if(cr){fn=Math.max(fn,Ir.sub1,cr.height-.8*Ir.xHeight);var ws=[{type:"elem",elem:cr,marginLeft:ba,marginRight:aa}];Fs=_r.makeVList({positionType:"shift",positionData:fn,children:ws},Y)}else if($t)Yr=Math.max(Yr,Di,$t.depth+.25*Ir.xHeight),Fs=_r.makeVList({positionType:"shift",positionData:-Yr,children:[{type:"elem",elem:$t,marginRight:aa}]},Y);else throw new Error("supsub must have either sup or sub.");var yr=ps(wt,"right")||"mord";return _r.makeSpan([yr],[wt,_r.makeSpan(["msupsub"],[Fs])],Y)},mathmlBuilder:function(Z,Y){var te=!1,he,we,Ye=Qn(Z.base,"horizBrace");Ye&&(we=!!Z.sup,we===Ye.isOver&&(te=!0,he=Ye.isOver)),Z.base&&(Z.base.type==="op"||Z.base.type==="operatorname")&&(Z.base.parentIsSupSub=!0);var wt=[Ni(Z.base,Y)];Z.sub&&wt.push(Ni(Z.sub,Y)),Z.sup&&wt.push(Ni(Z.sup,Y));var $t;if(te)$t=he?"mover":"munder";else if(Z.sub)if(Z.sup){var Yr=Z.base;Yr&&Yr.type==="op"&&Yr.limits&&Y.style===z.DISPLAY||Yr&&Yr.type==="operatorname"&&Yr.alwaysHandleSupSub&&(Y.style===z.DISPLAY||Yr.limits)?$t="munderover":$t="msubsup"}else{var Ir=Z.base;Ir&&Ir.type==="op"&&Ir.limits&&(Y.style===z.DISPLAY||Ir.alwaysHandleSupSub)||Ir&&Ir.type==="operatorname"&&Ir.alwaysHandleSupSub&&(Ir.limits||Y.style===z.DISPLAY)?$t="munder":$t="msub"}else{var cr=Z.base;cr&&cr.type==="op"&&cr.limits&&(Y.style===z.DISPLAY||cr.alwaysHandleSupSub)||cr&&cr.type==="operatorname"&&cr.alwaysHandleSupSub&&(cr.limits||Y.style===z.DISPLAY)?$t="mover":$t="msup"}var fn=new Rn.MathNode($t,wt);return fn}}),kn({type:"atom",htmlBuilder:function(Z,Y){return _r.mathsym(Z.text,Z.mode,Y,["m"+Z.family])},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mo",[ss(Z.text,Z.mode)]);if(Z.family==="bin"){var he=Os(Z,Y);he==="bold-italic"&&te.setAttribute("mathvariant",he)}else Z.family==="punct"?te.setAttribute("separator","true"):(Z.family==="open"||Z.family==="close")&&te.setAttribute("stretchy","false");return te}});var Ia={mi:"italic",mn:"normal",mtext:"normal"};kn({type:"mathord",htmlBuilder:function(Z,Y){return _r.makeOrd(Z,Y,"mathord")},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mi",[ss(Z.text,Z.mode,Y)]),he=Os(Z,Y)||"italic";return he!==Ia[te.type]&&te.setAttribute("mathvariant",he),te}}),kn({type:"textord",htmlBuilder:function(Z,Y){return _r.makeOrd(Z,Y,"textord")},mathmlBuilder:function(Z,Y){var te=ss(Z.text,Z.mode,Y),he=Os(Z,Y)||"normal",we;return Z.mode==="text"?we=new Rn.MathNode("mtext",[te]):/[0-9]/.test(Z.text)?we=new Rn.MathNode("mn",[te]):Z.text==="\\prime"?we=new Rn.MathNode("mo",[te]):we=new Rn.MathNode("mi",[te]),he!==Ia[we.type]&&we.setAttribute("mathvariant",he),we}});var Ii={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},pi={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};kn({type:"spacing",htmlBuilder:function(Z,Y){if(pi.hasOwnProperty(Z.text)){var te=pi[Z.text].className||"";if(Z.mode==="text"){var he=_r.makeOrd(Z,Y,"textord");return he.classes.push(te),he}else return _r.makeSpan(["mspace",te],[_r.mathsym(Z.text,Z.mode,Y)],Y)}else{if(Ii.hasOwnProperty(Z.text))return _r.makeSpan(["mspace",Ii[Z.text]],[],Y);throw new o('Unknown type of space "'+Z.text+'"')}},mathmlBuilder:function(Z,Y){var te;if(pi.hasOwnProperty(Z.text))te=new Rn.MathNode("mtext",[new Rn.TextNode("\xA0")]);else{if(Ii.hasOwnProperty(Z.text))return new Rn.MathNode("mspace");throw new o('Unknown type of space "'+Z.text+'"')}return te}});var ca=function(){var Z=new Rn.MathNode("mtd",[]);return Z.setAttribute("width","50%"),Z};kn({type:"tag",mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mtable",[new Rn.MathNode("mtr",[ca(),new Rn.MathNode("mtd",[Ka(Z.body,Y)]),ca(),new Rn.MathNode("mtd",[Ka(Z.tag,Y)])])]);return te.setAttribute("width","100%"),te}});var Eo={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},Qs={"\\textbf":"textbf","\\textmd":"textmd"},ia={"\\textit":"textit","\\textup":"textup"},fs=function(Z,Y){var te=Z.font;return te?Eo[te]?Y.withTextFontFamily(Eo[te]):Qs[te]?Y.withTextFontWeight(Qs[te]):Y.withTextFontShape(ia[te]):Y};Gr({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup"],props:{numArgs:1,argTypes:["text"],greediness:2,allowedInText:!0},handler:function(Z,Y){var te=Z.parser,he=Z.funcName,we=Y[0];return{type:"text",mode:te.mode,body:si(we),font:he}},htmlBuilder:function(Z,Y){var te=fs(Z,Y),he=as(Z.body,te,!0);return _r.makeSpan(["mord","text"],_r.tryCombineChars(he),te)},mathmlBuilder:function(Z,Y){var te=fs(Z,Y);return Ka(Z.body,te)}}),Gr({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler:function(Z,Y){var te=Z.parser;return{type:"underline",mode:te.mode,body:Y[0]}},htmlBuilder:function(Z,Y){var te=Ji(Z.body,Y),he=_r.makeLineSpan("underline-line",Y),we=Y.fontMetrics().defaultRuleThickness,Ye=_r.makeVList({positionType:"top",positionData:te.height,children:[{type:"kern",size:we},{type:"elem",elem:he},{type:"kern",size:3*we},{type:"elem",elem:te}]},Y);return _r.makeSpan(["mord","underline"],[Ye],Y)},mathmlBuilder:function(Z,Y){var te=new Rn.MathNode("mo",[new Rn.TextNode("\u203E")]);te.setAttribute("stretchy","true");var he=new Rn.MathNode("munder",[Ni(Z.body,Y),te]);return he.setAttribute("accentunder","true"),he}}),Gr({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler:function(Z,Y,te){throw new o("\\verb ended by end of line instead of matching delimiter")},htmlBuilder:function(Z,Y){for(var te=ya(Z),he=[],we=Y.havingStyle(Y.style.text()),Ye=0;Ye<te.length;Ye++){var wt=te[Ye];wt==="~"&&(wt="\\textasciitilde"),he.push(_r.makeSymbol(wt,"Typewriter-Regular",Z.mode,we,["mord","texttt"]))}return _r.makeSpan(["mord","text"].concat(we.sizingClasses(Y)),_r.tryCombineChars(he),we)},mathmlBuilder:function(Z,Y){var te=new Rn.TextNode(ya(Z)),he=new Rn.MathNode("mtext",[te]);return he.setAttribute("mathvariant","monospace"),he}});var ya=function(Z){return Z.body.replace(/ /g,Z.star?"\u2423":"\xA0")},_s=Si,La=_s,rs=`[ \r
]`,Ls="\\\\[a-zA-Z@]+",ao="\\\\[^\uD800-\uDFFF]",xs=""+Ls+rs+"*",pa=new RegExp("^("+Ls+")"+rs+"*$"),Ms="[\u0300-\u036F]",jo=new RegExp(Ms+"+$"),qs="("+rs+"+)|([!-\\[\\]-\u2027\u202A-\uD7FF\uF900-\uFFFF]"+(Ms+"*")+"|[\uD800-\uDBFF][\uDC00-\uDFFF]"+(Ms+"*")+"|\\\\verb\\*([^]).*?\\3|\\\\verb([^*a-zA-Z]).*?\\4|\\\\operatorname\\*"+("|"+xs)+("|"+ao+")"),Ha=function(){function Ve(Y,te){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=Y,this.settings=te,this.tokenRegex=new RegExp(qs,"g"),this.catcodes={"%":14}}var Z=Ve.prototype;return Z.setCatcode=function(te,he){this.catcodes[te]=he},Z.lex=function(){var te=this.input,he=this.tokenRegex.lastIndex;if(he===te.length)return new c("EOF",new l(this,he,he));var we=this.tokenRegex.exec(te);if(we===null||we.index!==he)throw new o("Unexpected character: '"+te[he]+"'",new c(te[he],new l(this,he,he+1)));var Ye=we[2]||" ";if(this.catcodes[Ye]===14){var wt=te.indexOf(`
`,this.tokenRegex.lastIndex);return wt===-1?(this.tokenRegex.lastIndex=te.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=wt+1,this.lex()}var $t=Ye.match(pa);return $t&&(Ye=$t[1]),new c(Ye,new l(this,he,this.tokenRegex.lastIndex))},Ve}(),us=function(){function Ve(Y,te){Y===void 0&&(Y={}),te===void 0&&(te={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=te,this.builtins=Y,this.undefStack=[]}var Z=Ve.prototype;return Z.beginGroup=function(){this.undefStack.push({})},Z.endGroup=function(){if(this.undefStack.length===0)throw new o("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");var te=this.undefStack.pop();for(var he in te)te.hasOwnProperty(he)&&(te[he]===void 0?delete this.current[he]:this.current[he]=te[he])},Z.has=function(te){return this.current.hasOwnProperty(te)||this.builtins.hasOwnProperty(te)},Z.get=function(te){return this.current.hasOwnProperty(te)?this.current[te]:this.builtins[te]},Z.set=function(te,he,we){if(we===void 0&&(we=!1),we){for(var Ye=0;Ye<this.undefStack.length;Ye++)delete this.undefStack[Ye][te];this.undefStack.length>0&&(this.undefStack[this.undefStack.length-1][te]=he)}else{var wt=this.undefStack[this.undefStack.length-1];wt&&!wt.hasOwnProperty(te)&&(wt[te]=this.current[te])}this.current[te]=he},Ve}(),co={},Va=co;function Vt(Ve,Z){co[Ve]=Z}Vt("\\@firstoftwo",function(Ve){var Z=Ve.consumeArgs(2);return{tokens:Z[0],numArgs:0}}),Vt("\\@secondoftwo",function(Ve){var Z=Ve.consumeArgs(2);return{tokens:Z[1],numArgs:0}}),Vt("\\@ifnextchar",function(Ve){var Z=Ve.consumeArgs(3),Y=Ve.future();return Z[0].length===1&&Z[0][0].text===Y.text?{tokens:Z[1],numArgs:0}:{tokens:Z[2],numArgs:0}}),Vt("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}"),Vt("\\TextOrMath",function(Ve){var Z=Ve.consumeArgs(2);return Ve.mode==="text"?{tokens:Z[0],numArgs:0}:{tokens:Z[1],numArgs:0}});var kt={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};Vt("\\char",function(Ve){var Z=Ve.popToken(),Y,te="";if(Z.text==="'")Y=8,Z=Ve.popToken();else if(Z.text==='"')Y=16,Z=Ve.popToken();else if(Z.text==="`")if(Z=Ve.popToken(),Z.text[0]==="\\")te=Z.text.charCodeAt(1);else{if(Z.text==="EOF")throw new o("\\char` missing argument");te=Z.text.charCodeAt(0)}else Y=10;if(Y){if(te=kt[Z.text],te==null||te>=Y)throw new o("Invalid base-"+Y+" digit "+Z.text);for(var he;(he=kt[Ve.future().text])!=null&&he<Y;)te*=Y,te+=he,Ve.popToken()}return"\\@char{"+te+"}"});var Pa=function(Z,Y){var te=Z.consumeArgs(1)[0];if(te.length!==1)throw new o("\\gdef's first argument must be a macro name");var he=te[0].text,we=0;for(te=Z.consumeArgs(1)[0];te.length===1&&te[0].text==="#";){if(te=Z.consumeArgs(1)[0],te.length!==1)throw new o('Invalid argument number length "'+te.length+'"');if(!/^[1-9]$/.test(te[0].text))throw new o('Invalid argument number "'+te[0].text+'"');if(we++,parseInt(te[0].text)!==we)throw new o('Argument number "'+te[0].text+'" out of order');te=Z.consumeArgs(1)[0]}return Z.macros.set(he,{tokens:te,numArgs:we},Y),""};Vt("\\gdef",function(Ve){return Pa(Ve,!0)}),Vt("\\def",function(Ve){return Pa(Ve,!1)}),Vt("\\global",function(Ve){var Z=Ve.consumeArgs(1)[0];if(Z.length!==1)throw new o("Invalid command after \\global");var Y=Z[0].text;if(Y==="\\def")return Pa(Ve,!0);throw new o("Invalid command '"+Y+"' after \\global")});var Zs=function(Z,Y,te){var he=Z.consumeArgs(1)[0];if(he.length!==1)throw new o("\\newcommand's first argument must be a macro name");var we=he[0].text,Ye=Z.isDefined(we);if(Ye&&!Y)throw new o("\\newcommand{"+we+"} attempting to redefine "+(we+"; use \\renewcommand"));if(!Ye&&!te)throw new o("\\renewcommand{"+we+"} when command "+we+" does not yet exist; use \\newcommand");var wt=0;if(he=Z.consumeArgs(1)[0],he.length===1&&he[0].text==="["){for(var $t="",cr=Z.expandNextToken();cr.text!=="]"&&cr.text!=="EOF";)$t+=cr.text,cr=Z.expandNextToken();if(!$t.match(/^\s*[0-9]+\s*$/))throw new o("Invalid number of arguments: "+$t);wt=parseInt($t),he=Z.consumeArgs(1)[0]}return Z.macros.set(we,{tokens:he,numArgs:wt}),""};Vt("\\newcommand",function(Ve){return Zs(Ve,!1,!0)}),Vt("\\renewcommand",function(Ve){return Zs(Ve,!0,!1)}),Vt("\\providecommand",function(Ve){return Zs(Ve,!0,!0)}),Vt("\\bgroup","{"),Vt("\\egroup","}"),Vt("\\lq","`"),Vt("\\rq","'"),Vt("\\aa","\\r a"),Vt("\\AA","\\r A"),Vt("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`\xA9}"),Vt("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}"),Vt("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`\xAE}"),Vt("\u212C","\\mathscr{B}"),Vt("\u2130","\\mathscr{E}"),Vt("\u2131","\\mathscr{F}"),Vt("\u210B","\\mathscr{H}"),Vt("\u2110","\\mathscr{I}"),Vt("\u2112","\\mathscr{L}"),Vt("\u2133","\\mathscr{M}"),Vt("\u211B","\\mathscr{R}"),Vt("\u212D","\\mathfrak{C}"),Vt("\u210C","\\mathfrak{H}"),Vt("\u2128","\\mathfrak{Z}"),Vt("\\Bbbk","\\Bbb{k}"),Vt("\xB7","\\cdotp"),Vt("\\llap","\\mathllap{\\textrm{#1}}"),Vt("\\rlap","\\mathrlap{\\textrm{#1}}"),Vt("\\clap","\\mathclap{\\textrm{#1}}"),Vt("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}'),Vt("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`\u2260}}"),Vt("\\ne","\\neq"),Vt("\u2260","\\neq"),Vt("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`\u2209}}"),Vt("\u2209","\\notin"),Vt("\u2258","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`\u2258}}"),Vt("\u2259","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`\u2258}}"),Vt("\u225A","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`\u225A}}"),Vt("\u225B","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`\u225B}}"),Vt("\u225D","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`\u225D}}"),Vt("\u225E","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`\u225E}}"),Vt("\u225F","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`\u225F}}"),Vt("\u27C2","\\perp"),Vt("\u203C","\\mathclose{!\\mkern-0.8mu!}"),Vt("\u220C","\\notni"),Vt("\u231C","\\ulcorner"),Vt("\u231D","\\urcorner"),Vt("\u231E","\\llcorner"),Vt("\u231F","\\lrcorner"),Vt("\xA9","\\copyright"),Vt("\xAE","\\textregistered"),Vt("\uFE0F","\\textregistered"),Vt("\\vdots","\\mathord{\\varvdots\\rule{0pt}{15pt}}"),Vt("\u22EE","\\vdots"),Vt("\\varGamma","\\mathit{\\Gamma}"),Vt("\\varDelta","\\mathit{\\Delta}"),Vt("\\varTheta","\\mathit{\\Theta}"),Vt("\\varLambda","\\mathit{\\Lambda}"),Vt("\\varXi","\\mathit{\\Xi}"),Vt("\\varPi","\\mathit{\\Pi}"),Vt("\\varSigma","\\mathit{\\Sigma}"),Vt("\\varUpsilon","\\mathit{\\Upsilon}"),Vt("\\varPhi","\\mathit{\\Phi}"),Vt("\\varPsi","\\mathit{\\Psi}"),Vt("\\varOmega","\\mathit{\\Omega}"),Vt("\\substack","\\begin{subarray}{c}#1\\end{subarray}"),Vt("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu"),Vt("\\boxed","\\fbox{$\\displaystyle{#1}$}"),Vt("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;"),Vt("\\implies","\\DOTSB\\;\\Longrightarrow\\;"),Vt("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");var _n={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};Vt("\\dots",function(Ve){var Z="\\dotso",Y=Ve.expandAfterFuture().text;return Y in _n?Z=_n[Y]:(Y.substr(0,4)==="\\not"||Y in Ce.math&&A.contains(["bin","rel"],Ce.math[Y].group))&&(Z="\\dotsb"),Z});var En={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};Vt("\\dotso",function(Ve){var Z=Ve.future().text;return Z in En?"\\ldots\\,":"\\ldots"}),Vt("\\dotsc",function(Ve){var Z=Ve.future().text;return Z in En&&Z!==","?"\\ldots\\,":"\\ldots"}),Vt("\\cdots",function(Ve){var Z=Ve.future().text;return Z in En?"\\@cdots\\,":"\\@cdots"}),Vt("\\dotsb","\\cdots"),Vt("\\dotsm","\\cdots"),Vt("\\dotsi","\\!\\cdots"),Vt("\\dotsx","\\ldots\\,"),Vt("\\DOTSI","\\relax"),Vt("\\DOTSB","\\relax"),Vt("\\DOTSX","\\relax"),Vt("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax"),Vt("\\,","\\tmspace+{3mu}{.1667em}"),Vt("\\thinspace","\\,"),Vt("\\>","\\mskip{4mu}"),Vt("\\:","\\tmspace+{4mu}{.2222em}"),Vt("\\medspace","\\:"),Vt("\\;","\\tmspace+{5mu}{.2777em}"),Vt("\\thickspace","\\;"),Vt("\\!","\\tmspace-{3mu}{.1667em}"),Vt("\\negthinspace","\\!"),Vt("\\negmedspace","\\tmspace-{4mu}{.2222em}"),Vt("\\negthickspace","\\tmspace-{5mu}{.277em}"),Vt("\\enspace","\\kern.5em "),Vt("\\enskip","\\hskip.5em\\relax"),Vt("\\quad","\\hskip1em\\relax"),Vt("\\qquad","\\hskip2em\\relax"),Vt("\\tag","\\@ifstar\\tag@literal\\tag@paren"),Vt("\\tag@paren","\\tag@literal{({#1})}"),Vt("\\tag@literal",function(Ve){if(Ve.macros.get("\\df@tag"))throw new o("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"}),Vt("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}"),Vt("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)"),Vt("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}"),Vt("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1"),Vt("\\pmb","\\html@mathml{\\@binrel{#1}{\\mathrlap{#1}\\kern0.5px#1}}{\\mathbf{#1}}"),Vt("\\\\","\\newline"),Vt("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");var Ze=or["Main-Regular"][84][1]-.7*or["Main-Regular"][65][1]+"em";Vt("\\LaTeX","\\textrm{\\html@mathml{"+("L\\kern-.36em\\raisebox{"+Ze+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{LaTeX}}"),Vt("\\KaTeX","\\textrm{\\html@mathml{"+("K\\kern-.17em\\raisebox{"+Ze+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{KaTeX}}"),Vt("\\hspace","\\@ifstar\\@hspacer\\@hspace"),Vt("\\@hspace","\\hskip #1\\relax"),Vt("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax"),Vt("\\ordinarycolon",":"),Vt("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}"),Vt("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}'),Vt("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}'),Vt("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}'),Vt("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}'),Vt("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}'),Vt("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}'),Vt("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}'),Vt("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}'),Vt("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}'),Vt("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}'),Vt("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}'),Vt("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}'),Vt("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}'),Vt("\u2237","\\dblcolon"),Vt("\u2239","\\eqcolon"),Vt("\u2254","\\coloneqq"),Vt("\u2255","\\eqqcolon"),Vt("\u2A74","\\Coloneqq"),Vt("\\ratio","\\vcentcolon"),Vt("\\coloncolon","\\dblcolon"),Vt("\\colonequals","\\coloneqq"),Vt("\\coloncolonequals","\\Coloneqq"),Vt("\\equalscolon","\\eqqcolon"),Vt("\\equalscoloncolon","\\Eqqcolon"),Vt("\\colonminus","\\coloneq"),Vt("\\coloncolonminus","\\Coloneq"),Vt("\\minuscolon","\\eqcolon"),Vt("\\minuscoloncolon","\\Eqcolon"),Vt("\\coloncolonapprox","\\Colonapprox"),Vt("\\coloncolonsim","\\Colonsim"),Vt("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Vt("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Vt("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Vt("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Vt("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`\u220C}}"),Vt("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}"),Vt("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}"),Vt("\\gvertneqq","\\html@mathml{\\@gvertneqq}{\u2269}"),Vt("\\lvertneqq","\\html@mathml{\\@lvertneqq}{\u2268}"),Vt("\\ngeqq","\\html@mathml{\\@ngeqq}{\u2271}"),Vt("\\ngeqslant","\\html@mathml{\\@ngeqslant}{\u2271}"),Vt("\\nleqq","\\html@mathml{\\@nleqq}{\u2270}"),Vt("\\nleqslant","\\html@mathml{\\@nleqslant}{\u2270}"),Vt("\\nshortmid","\\html@mathml{\\@nshortmid}{\u2224}"),Vt("\\nshortparallel","\\html@mathml{\\@nshortparallel}{\u2226}"),Vt("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{\u2288}"),Vt("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{\u2289}"),Vt("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{\u228A}"),Vt("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{\u2ACB}"),Vt("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{\u228B}"),Vt("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{\u2ACC}"),Vt("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`\u27E6}}"),Vt("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`\u27E7}}"),Vt("\u27E6","\\llbracket"),Vt("\u27E7","\\rrbracket"),Vt("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`\u2983}}"),Vt("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`\u2984}}"),Vt("\u2983","\\lBrace"),Vt("\u2984","\\rBrace"),Vt("\\darr","\\downarrow"),Vt("\\dArr","\\Downarrow"),Vt("\\Darr","\\Downarrow"),Vt("\\lang","\\langle"),Vt("\\rang","\\rangle"),Vt("\\uarr","\\uparrow"),Vt("\\uArr","\\Uparrow"),Vt("\\Uarr","\\Uparrow"),Vt("\\N","\\mathbb{N}"),Vt("\\R","\\mathbb{R}"),Vt("\\Z","\\mathbb{Z}"),Vt("\\alef","\\aleph"),Vt("\\alefsym","\\aleph"),Vt("\\Alpha","\\mathrm{A}"),Vt("\\Beta","\\mathrm{B}"),Vt("\\bull","\\bullet"),Vt("\\Chi","\\mathrm{X}"),Vt("\\clubs","\\clubsuit"),Vt("\\cnums","\\mathbb{C}"),Vt("\\Complex","\\mathbb{C}"),Vt("\\Dagger","\\ddagger"),Vt("\\diamonds","\\diamondsuit"),Vt("\\empty","\\emptyset"),Vt("\\Epsilon","\\mathrm{E}"),Vt("\\Eta","\\mathrm{H}"),Vt("\\exist","\\exists"),Vt("\\harr","\\leftrightarrow"),Vt("\\hArr","\\Leftrightarrow"),Vt("\\Harr","\\Leftrightarrow"),Vt("\\hearts","\\heartsuit"),Vt("\\image","\\Im"),Vt("\\infin","\\infty"),Vt("\\Iota","\\mathrm{I}"),Vt("\\isin","\\in"),Vt("\\Kappa","\\mathrm{K}"),Vt("\\larr","\\leftarrow"),Vt("\\lArr","\\Leftarrow"),Vt("\\Larr","\\Leftarrow"),Vt("\\lrarr","\\leftrightarrow"),Vt("\\lrArr","\\Leftrightarrow"),Vt("\\Lrarr","\\Leftrightarrow"),Vt("\\Mu","\\mathrm{M}"),Vt("\\natnums","\\mathbb{N}"),Vt("\\Nu","\\mathrm{N}"),Vt("\\Omicron","\\mathrm{O}"),Vt("\\plusmn","\\pm"),Vt("\\rarr","\\rightarrow"),Vt("\\rArr","\\Rightarrow"),Vt("\\Rarr","\\Rightarrow"),Vt("\\real","\\Re"),Vt("\\reals","\\mathbb{R}"),Vt("\\Reals","\\mathbb{R}"),Vt("\\Rho","\\mathrm{P}"),Vt("\\sdot","\\cdot"),Vt("\\sect","\\S"),Vt("\\spades","\\spadesuit"),Vt("\\sub","\\subset"),Vt("\\sube","\\subseteq"),Vt("\\supe","\\supseteq"),Vt("\\Tau","\\mathrm{T}"),Vt("\\thetasym","\\vartheta"),Vt("\\weierp","\\wp"),Vt("\\Zeta","\\mathrm{Z}"),Vt("\\argmin","\\DOTSB\\operatorname*{arg\\,min}"),Vt("\\argmax","\\DOTSB\\operatorname*{arg\\,max}"),Vt("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits"),Vt("\\blue","\\textcolor{##6495ed}{#1}"),Vt("\\orange","\\textcolor{##ffa500}{#1}"),Vt("\\pink","\\textcolor{##ff00af}{#1}"),Vt("\\red","\\textcolor{##df0030}{#1}"),Vt("\\green","\\textcolor{##28ae7b}{#1}"),Vt("\\gray","\\textcolor{gray}{#1}"),Vt("\\purple","\\textcolor{##9d38bd}{#1}"),Vt("\\blueA","\\textcolor{##ccfaff}{#1}"),Vt("\\blueB","\\textcolor{##80f6ff}{#1}"),Vt("\\blueC","\\textcolor{##63d9ea}{#1}"),Vt("\\blueD","\\textcolor{##11accd}{#1}"),Vt("\\blueE","\\textcolor{##0c7f99}{#1}"),Vt("\\tealA","\\textcolor{##94fff5}{#1}"),Vt("\\tealB","\\textcolor{##26edd5}{#1}"),Vt("\\tealC","\\textcolor{##01d1c1}{#1}"),Vt("\\tealD","\\textcolor{##01a995}{#1}"),Vt("\\tealE","\\textcolor{##208170}{#1}"),Vt("\\greenA","\\textcolor{##b6ffb0}{#1}"),Vt("\\greenB","\\textcolor{##8af281}{#1}"),Vt("\\greenC","\\textcolor{##74cf70}{#1}"),Vt("\\greenD","\\textcolor{##1fab54}{#1}"),Vt("\\greenE","\\textcolor{##0d923f}{#1}"),Vt("\\goldA","\\textcolor{##ffd0a9}{#1}"),Vt("\\goldB","\\textcolor{##ffbb71}{#1}"),Vt("\\goldC","\\textcolor{##ff9c39}{#1}"),Vt("\\goldD","\\textcolor{##e07d10}{#1}"),Vt("\\goldE","\\textcolor{##a75a05}{#1}"),Vt("\\redA","\\textcolor{##fca9a9}{#1}"),Vt("\\redB","\\textcolor{##ff8482}{#1}"),Vt("\\redC","\\textcolor{##f9685d}{#1}"),Vt("\\redD","\\textcolor{##e84d39}{#1}"),Vt("\\redE","\\textcolor{##bc2612}{#1}"),Vt("\\maroonA","\\textcolor{##ffbde0}{#1}"),Vt("\\maroonB","\\textcolor{##ff92c6}{#1}"),Vt("\\maroonC","\\textcolor{##ed5fa6}{#1}"),Vt("\\maroonD","\\textcolor{##ca337c}{#1}"),Vt("\\maroonE","\\textcolor{##9e034e}{#1}"),Vt("\\purpleA","\\textcolor{##ddd7ff}{#1}"),Vt("\\purpleB","\\textcolor{##c6b9fc}{#1}"),Vt("\\purpleC","\\textcolor{##aa87ff}{#1}"),Vt("\\purpleD","\\textcolor{##7854ab}{#1}"),Vt("\\purpleE","\\textcolor{##543b78}{#1}"),Vt("\\mintA","\\textcolor{##f5f9e8}{#1}"),Vt("\\mintB","\\textcolor{##edf2df}{#1}"),Vt("\\mintC","\\textcolor{##e0e5cc}{#1}"),Vt("\\grayA","\\textcolor{##f6f7f7}{#1}"),Vt("\\grayB","\\textcolor{##f0f1f2}{#1}"),Vt("\\grayC","\\textcolor{##e3e5e6}{#1}"),Vt("\\grayD","\\textcolor{##d6d8da}{#1}"),Vt("\\grayE","\\textcolor{##babec2}{#1}"),Vt("\\grayF","\\textcolor{##888d93}{#1}"),Vt("\\grayG","\\textcolor{##626569}{#1}"),Vt("\\grayH","\\textcolor{##3b3e40}{#1}"),Vt("\\grayI","\\textcolor{##21242c}{#1}"),Vt("\\kaBlue","\\textcolor{##314453}{#1}"),Vt("\\kaGreen","\\textcolor{##71B307}{#1}");var jt={"\\relax":!0,"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0},wr=function(){function Ve(Y,te,he){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=te,this.expansionCount=0,this.feed(Y),this.macros=new us(Va,te.macros),this.mode=he,this.stack=[]}var Z=Ve.prototype;return Z.feed=function(te){this.lexer=new Ha(te,this.settings)},Z.switchMode=function(te){this.mode=te},Z.beginGroup=function(){this.macros.beginGroup()},Z.endGroup=function(){this.macros.endGroup()},Z.future=function(){return this.stack.length===0&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]},Z.popToken=function(){return this.future(),this.stack.pop()},Z.pushToken=function(te){this.stack.push(te)},Z.pushTokens=function(te){var he;(he=this.stack).push.apply(he,te)},Z.consumeSpaces=function(){for(;;){var te=this.future();if(te.text===" ")this.stack.pop();else break}},Z.consumeArgs=function(te){for(var he=[],we=0;we<te;++we){this.consumeSpaces();var Ye=this.popToken();if(Ye.text==="{"){for(var wt=[],$t=1;$t!==0;){var cr=this.popToken();if(wt.push(cr),cr.text==="{")++$t;else if(cr.text==="}")--$t;else if(cr.text==="EOF")throw new o("End of input in macro argument",Ye)}wt.pop(),wt.reverse(),he[we]=wt}else{if(Ye.text==="EOF")throw new o("End of input expecting macro argument");he[we]=[Ye]}}return he},Z.expandOnce=function(){var te=this.popToken(),he=te.text,we=this._getExpansion(he);if(we==null)return this.pushToken(te),te;if(this.expansionCount++,this.expansionCount>this.settings.maxExpand)throw new o("Too many expansions: infinite loop or need to increase maxExpand setting");var Ye=we.tokens;if(we.numArgs){var wt=this.consumeArgs(we.numArgs);Ye=Ye.slice();for(var $t=Ye.length-1;$t>=0;--$t){var cr=Ye[$t];if(cr.text==="#"){if($t===0)throw new o("Incomplete placeholder at end of macro body",cr);if(cr=Ye[--$t],cr.text==="#")Ye.splice($t+1,1);else if(/^[1-9]$/.test(cr.text)){var Ir;(Ir=Ye).splice.apply(Ir,[$t,2].concat(wt[+cr.text-1]))}else throw new o("Not a valid argument number",cr)}}}return this.pushTokens(Ye),Ye},Z.expandAfterFuture=function(){return this.expandOnce(),this.future()},Z.expandNextToken=function(){for(;;){var te=this.expandOnce();if(te instanceof c)if(te.text==="\\relax")this.stack.pop();else return this.stack.pop()}throw new Error},Z.expandMacro=function(te){if(this.macros.get(te)){var he=[],we=this.stack.length;for(this.pushToken(new c(te));this.stack.length>we;){var Ye=this.expandOnce();Ye instanceof c&&he.push(this.stack.pop())}return he}},Z.expandMacroAsText=function(te){var he=this.expandMacro(te);return he&&he.map(function(we){return we.text}).join("")},Z._getExpansion=function(te){var he=this.macros.get(te);if(he==null)return he;var we=typeof he=="function"?he(this):he;if(typeof we=="string"){var Ye=0;if(we.indexOf("#")!==-1)for(var wt=we.replace(/##/g,"");wt.indexOf("#"+(Ye+1))!==-1;)++Ye;for(var $t=new Ha(we,this.settings),cr=[],Ir=$t.lex();Ir.text!=="EOF";)cr.push(Ir),Ir=$t.lex();cr.reverse();var Yr={tokens:cr,numArgs:Ye};return Yr}return we},Z.isDefined=function(te){return this.macros.has(te)||La.hasOwnProperty(te)||Ce.math.hasOwnProperty(te)||Ce.text.hasOwnProperty(te)||jt.hasOwnProperty(te)},Ve}(),Rr={"\u0301":{text:"\\'",math:"\\acute"},"\u0300":{text:"\\`",math:"\\grave"},"\u0308":{text:'\\"',math:"\\ddot"},"\u0303":{text:"\\~",math:"\\tilde"},"\u0304":{text:"\\=",math:"\\bar"},"\u0306":{text:"\\u",math:"\\breve"},"\u030C":{text:"\\v",math:"\\check"},"\u0302":{text:"\\^",math:"\\hat"},"\u0307":{text:"\\.",math:"\\dot"},"\u030A":{text:"\\r",math:"\\mathring"},"\u030B":{text:"\\H"}},Jr={\u00E1:"a\u0301",\u00E0:"a\u0300",\u00E4:"a\u0308",\u01DF:"a\u0308\u0304",\u00E3:"a\u0303",\u0101:"a\u0304",\u0103:"a\u0306",\u1EAF:"a\u0306\u0301",\u1EB1:"a\u0306\u0300",\u1EB5:"a\u0306\u0303",\u01CE:"a\u030C",\u00E2:"a\u0302",\u1EA5:"a\u0302\u0301",\u1EA7:"a\u0302\u0300",\u1EAB:"a\u0302\u0303",\u0227:"a\u0307",\u01E1:"a\u0307\u0304",\u00E5:"a\u030A",\u01FB:"a\u030A\u0301",\u1E03:"b\u0307",\u0107:"c\u0301",\u010D:"c\u030C",\u0109:"c\u0302",\u010B:"c\u0307",\u010F:"d\u030C",\u1E0B:"d\u0307",\u00E9:"e\u0301",\u00E8:"e\u0300",\u00EB:"e\u0308",\u1EBD:"e\u0303",\u0113:"e\u0304",\u1E17:"e\u0304\u0301",\u1E15:"e\u0304\u0300",\u0115:"e\u0306",\u011B:"e\u030C",\u00EA:"e\u0302",\u1EBF:"e\u0302\u0301",\u1EC1:"e\u0302\u0300",\u1EC5:"e\u0302\u0303",\u0117:"e\u0307",\u1E1F:"f\u0307",\u01F5:"g\u0301",\u1E21:"g\u0304",\u011F:"g\u0306",\u01E7:"g\u030C",\u011D:"g\u0302",\u0121:"g\u0307",\u1E27:"h\u0308",\u021F:"h\u030C",\u0125:"h\u0302",\u1E23:"h\u0307",\u00ED:"i\u0301",\u00EC:"i\u0300",\u00EF:"i\u0308",\u1E2F:"i\u0308\u0301",\u0129:"i\u0303",\u012B:"i\u0304",\u012D:"i\u0306",\u01D0:"i\u030C",\u00EE:"i\u0302",\u01F0:"j\u030C",\u0135:"j\u0302",\u1E31:"k\u0301",\u01E9:"k\u030C",\u013A:"l\u0301",\u013E:"l\u030C",\u1E3F:"m\u0301",\u1E41:"m\u0307",\u0144:"n\u0301",\u01F9:"n\u0300",\u00F1:"n\u0303",\u0148:"n\u030C",\u1E45:"n\u0307",\u00F3:"o\u0301",\u00F2:"o\u0300",\u00F6:"o\u0308",\u022B:"o\u0308\u0304",\u00F5:"o\u0303",\u1E4D:"o\u0303\u0301",\u1E4F:"o\u0303\u0308",\u022D:"o\u0303\u0304",\u014D:"o\u0304",\u1E53:"o\u0304\u0301",\u1E51:"o\u0304\u0300",\u014F:"o\u0306",\u01D2:"o\u030C",\u00F4:"o\u0302",\u1ED1:"o\u0302\u0301",\u1ED3:"o\u0302\u0300",\u1ED7:"o\u0302\u0303",\u022F:"o\u0307",\u0231:"o\u0307\u0304",\u0151:"o\u030B",\u1E55:"p\u0301",\u1E57:"p\u0307",\u0155:"r\u0301",\u0159:"r\u030C",\u1E59:"r\u0307",\u015B:"s\u0301",\u1E65:"s\u0301\u0307",\u0161:"s\u030C",\u1E67:"s\u030C\u0307",\u015D:"s\u0302",\u1E61:"s\u0307",\u1E97:"t\u0308",\u0165:"t\u030C",\u1E6B:"t\u0307",\u00FA:"u\u0301",\u00F9:"u\u0300",\u00FC:"u\u0308",\u01D8:"u\u0308\u0301",\u01DC:"u\u0308\u0300",\u01D6:"u\u0308\u0304",\u01DA:"u\u0308\u030C",\u0169:"u\u0303",\u1E79:"u\u0303\u0301",\u016B:"u\u0304",\u1E7B:"u\u0304\u0308",\u016D:"u\u0306",\u01D4:"u\u030C",\u00FB:"u\u0302",\u016F:"u\u030A",\u0171:"u\u030B",\u1E7D:"v\u0303",\u1E83:"w\u0301",\u1E81:"w\u0300",\u1E85:"w\u0308",\u0175:"w\u0302",\u1E87:"w\u0307",\u1E98:"w\u030A",\u1E8D:"x\u0308",\u1E8B:"x\u0307",\u00FD:"y\u0301",\u1EF3:"y\u0300",\u00FF:"y\u0308",\u1EF9:"y\u0303",\u0233:"y\u0304",\u0177:"y\u0302",\u1E8F:"y\u0307",\u1E99:"y\u030A",\u017A:"z\u0301",\u017E:"z\u030C",\u1E91:"z\u0302",\u017C:"z\u0307",\u00C1:"A\u0301",\u00C0:"A\u0300",\u00C4:"A\u0308",\u01DE:"A\u0308\u0304",\u00C3:"A\u0303",\u0100:"A\u0304",\u0102:"A\u0306",\u1EAE:"A\u0306\u0301",\u1EB0:"A\u0306\u0300",\u1EB4:"A\u0306\u0303",\u01CD:"A\u030C",\u00C2:"A\u0302",\u1EA4:"A\u0302\u0301",\u1EA6:"A\u0302\u0300",\u1EAA:"A\u0302\u0303",\u0226:"A\u0307",\u01E0:"A\u0307\u0304",\u00C5:"A\u030A",\u01FA:"A\u030A\u0301",\u1E02:"B\u0307",\u0106:"C\u0301",\u010C:"C\u030C",\u0108:"C\u0302",\u010A:"C\u0307",\u010E:"D\u030C",\u1E0A:"D\u0307",\u00C9:"E\u0301",\u00C8:"E\u0300",\u00CB:"E\u0308",\u1EBC:"E\u0303",\u0112:"E\u0304",\u1E16:"E\u0304\u0301",\u1E14:"E\u0304\u0300",\u0114:"E\u0306",\u011A:"E\u030C",\u00CA:"E\u0302",\u1EBE:"E\u0302\u0301",\u1EC0:"E\u0302\u0300",\u1EC4:"E\u0302\u0303",\u0116:"E\u0307",\u1E1E:"F\u0307",\u01F4:"G\u0301",\u1E20:"G\u0304",\u011E:"G\u0306",\u01E6:"G\u030C",\u011C:"G\u0302",\u0120:"G\u0307",\u1E26:"H\u0308",\u021E:"H\u030C",\u0124:"H\u0302",\u1E22:"H\u0307",\u00CD:"I\u0301",\u00CC:"I\u0300",\u00CF:"I\u0308",\u1E2E:"I\u0308\u0301",\u0128:"I\u0303",\u012A:"I\u0304",\u012C:"I\u0306",\u01CF:"I\u030C",\u00CE:"I\u0302",\u0130:"I\u0307",\u0134:"J\u0302",\u1E30:"K\u0301",\u01E8:"K\u030C",\u0139:"L\u0301",\u013D:"L\u030C",\u1E3E:"M\u0301",\u1E40:"M\u0307",\u0143:"N\u0301",\u01F8:"N\u0300",\u00D1:"N\u0303",\u0147:"N\u030C",\u1E44:"N\u0307",\u00D3:"O\u0301",\u00D2:"O\u0300",\u00D6:"O\u0308",\u022A:"O\u0308\u0304",\u00D5:"O\u0303",\u1E4C:"O\u0303\u0301",\u1E4E:"O\u0303\u0308",\u022C:"O\u0303\u0304",\u014C:"O\u0304",\u1E52:"O\u0304\u0301",\u1E50:"O\u0304\u0300",\u014E:"O\u0306",\u01D1:"O\u030C",\u00D4:"O\u0302",\u1ED0:"O\u0302\u0301",\u1ED2:"O\u0302\u0300",\u1ED6:"O\u0302\u0303",\u022E:"O\u0307",\u0230:"O\u0307\u0304",\u0150:"O\u030B",\u1E54:"P\u0301",\u1E56:"P\u0307",\u0154:"R\u0301",\u0158:"R\u030C",\u1E58:"R\u0307",\u015A:"S\u0301",\u1E64:"S\u0301\u0307",\u0160:"S\u030C",\u1E66:"S\u030C\u0307",\u015C:"S\u0302",\u1E60:"S\u0307",\u0164:"T\u030C",\u1E6A:"T\u0307",\u00DA:"U\u0301",\u00D9:"U\u0300",\u00DC:"U\u0308",\u01D7:"U\u0308\u0301",\u01DB:"U\u0308\u0300",\u01D5:"U\u0308\u0304",\u01D9:"U\u0308\u030C",\u0168:"U\u0303",\u1E78:"U\u0303\u0301",\u016A:"U\u0304",\u1E7A:"U\u0304\u0308",\u016C:"U\u0306",\u01D3:"U\u030C",\u00DB:"U\u0302",\u016E:"U\u030A",\u0170:"U\u030B",\u1E7C:"V\u0303",\u1E82:"W\u0301",\u1E80:"W\u0300",\u1E84:"W\u0308",\u0174:"W\u0302",\u1E86:"W\u0307",\u1E8C:"X\u0308",\u1E8A:"X\u0307",\u00DD:"Y\u0301",\u1EF2:"Y\u0300",\u0178:"Y\u0308",\u1EF8:"Y\u0303",\u0232:"Y\u0304",\u0176:"Y\u0302",\u1E8E:"Y\u0307",\u0179:"Z\u0301",\u017D:"Z\u030C",\u1E90:"Z\u0302",\u017B:"Z\u0307",\u03AC:"\u03B1\u0301",\u1F70:"\u03B1\u0300",\u1FB1:"\u03B1\u0304",\u1FB0:"\u03B1\u0306",\u03AD:"\u03B5\u0301",\u1F72:"\u03B5\u0300",\u03AE:"\u03B7\u0301",\u1F74:"\u03B7\u0300",\u03AF:"\u03B9\u0301",\u1F76:"\u03B9\u0300",\u03CA:"\u03B9\u0308",\u0390:"\u03B9\u0308\u0301",\u1FD2:"\u03B9\u0308\u0300",\u1FD1:"\u03B9\u0304",\u1FD0:"\u03B9\u0306",\u03CC:"\u03BF\u0301",\u1F78:"\u03BF\u0300",\u03CD:"\u03C5\u0301",\u1F7A:"\u03C5\u0300",\u03CB:"\u03C5\u0308",\u03B0:"\u03C5\u0308\u0301",\u1FE2:"\u03C5\u0308\u0300",\u1FE1:"\u03C5\u0304",\u1FE0:"\u03C5\u0306",\u03CE:"\u03C9\u0301",\u1F7C:"\u03C9\u0300",\u038E:"\u03A5\u0301",\u1FEA:"\u03A5\u0300",\u03AB:"\u03A5\u0308",\u1FE9:"\u03A5\u0304",\u1FE8:"\u03A5\u0306",\u038F:"\u03A9\u0301",\u1FFA:"\u03A9\u0300"},gn=function(){function Ve(Y,te){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new wr(Y,te,this.mode),this.settings=te,this.leftrightDepth=0}var Z=Ve.prototype;return Z.expect=function(te,he){if(he===void 0&&(he=!0),this.fetch().text!==te)throw new o("Expected '"+te+"', got '"+this.fetch().text+"'",this.fetch());he&&this.consume()},Z.consume=function(){this.nextToken=null},Z.fetch=function(){return this.nextToken==null&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken},Z.switchMode=function(te){this.mode=te,this.gullet.switchMode(te)},Z.parse=function(){this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");var te=this.parseExpression(!1);return this.expect("EOF"),this.gullet.endGroup(),te},Z.parseExpression=function(te,he){for(var we=[];;){this.mode==="math"&&this.consumeSpaces();var Ye=this.fetch();if(Ve.endOfExpression.indexOf(Ye.text)!==-1||he&&Ye.text===he||te&&La[Ye.text]&&La[Ye.text].infix)break;var wt=this.parseAtom(he);if(!wt)break;we.push(wt)}return this.mode==="text"&&this.formLigatures(we),this.handleInfixNodes(we)},Z.handleInfixNodes=function(te){for(var he=-1,we,Ye=0;Ye<te.length;Ye++){var wt=Qn(te[Ye],"infix");if(wt){if(he!==-1)throw new o("only one infix operator per group",wt.token);he=Ye,we=wt.replaceWith}}if(he!==-1&&we){var $t,cr,Ir=te.slice(0,he),Yr=te.slice(he+1);Ir.length===1&&Ir[0].type==="ordgroup"?$t=Ir[0]:$t={type:"ordgroup",mode:this.mode,body:Ir},Yr.length===1&&Yr[0].type==="ordgroup"?cr=Yr[0]:cr={type:"ordgroup",mode:this.mode,body:Yr};var fn;return we==="\\\\abovefrac"?fn=this.callFunction(we,[$t,te[he],cr],[]):fn=this.callFunction(we,[$t,cr],[]),[fn]}else return te},Z.handleSupSubscript=function(te){var he=this.fetch(),we=he.text;this.consume();var Ye=this.parseGroup(te,!1,Ve.SUPSUB_GREEDINESS,void 0,void 0,!0);if(!Ye)throw new o("Expected group after '"+we+"'",he);return Ye},Z.formatUnsupportedCmd=function(te){for(var he=[],we=0;we<te.length;we++)he.push({type:"textord",mode:"text",text:te[we]});var Ye={type:"text",mode:this.mode,body:he},wt={type:"color",mode:this.mode,color:this.settings.errorColor,body:[Ye]};return wt},Z.parseAtom=function(te){var he=this.parseGroup("atom",!1,null,te);if(this.mode==="text")return he;for(var we,Ye;;){this.consumeSpaces();var wt=this.fetch();if(wt.text==="\\limits"||wt.text==="\\nolimits"){var $t=Qn(he,"op");if($t){var cr=wt.text==="\\limits";$t.limits=cr,$t.alwaysHandleSupSub=!0}else if($t=Qn(he,"operatorname"),$t&&$t.alwaysHandleSupSub){var Ir=wt.text==="\\limits";$t.limits=Ir}else throw new o("Limit controls must follow a math operator",wt);this.consume()}else if(wt.text==="^"){if(we)throw new o("Double superscript",wt);we=this.handleSupSubscript("superscript")}else if(wt.text==="_"){if(Ye)throw new o("Double subscript",wt);Ye=this.handleSupSubscript("subscript")}else if(wt.text==="'"){if(we)throw new o("Double superscript",wt);var Yr={type:"textord",mode:this.mode,text:"\\prime"},fn=[Yr];for(this.consume();this.fetch().text==="'";)fn.push(Yr),this.consume();this.fetch().text==="^"&&fn.push(this.handleSupSubscript("superscript")),we={type:"ordgroup",mode:this.mode,body:fn}}else break}return we||Ye?{type:"supsub",mode:this.mode,base:he,sup:we,sub:Ye}:he},Z.parseFunction=function(te,he,we){var Ye=this.fetch(),wt=Ye.text,$t=La[wt];if(!$t)return null;if(this.consume(),we!=null&&$t.greediness<=we)throw new o("Got function '"+wt+"' with no arguments"+(he?" as "+he:""),Ye);if(this.mode==="text"&&!$t.allowedInText)throw new o("Can't use function '"+wt+"' in text mode",Ye);if(this.mode==="math"&&$t.allowedInMath===!1)throw new o("Can't use function '"+wt+"' in math mode",Ye);var cr=this.parseArguments(wt,$t),Ir=cr.args,Yr=cr.optArgs;return this.callFunction(wt,Ir,Yr,Ye,te)},Z.callFunction=function(te,he,we,Ye,wt){var $t={funcName:te,parser:this,token:Ye,breakOnTokenText:wt},cr=La[te];if(cr&&cr.handler)return cr.handler($t,he,we);throw new o("No function handler for "+te)},Z.parseArguments=function(te,he){var we=he.numArgs+he.numOptionalArgs;if(we===0)return{args:[],optArgs:[]};for(var Ye=he.greediness,wt=[],$t=[],cr=0;cr<we;cr++){var Ir=he.argTypes&&he.argTypes[cr],Yr=cr<he.numOptionalArgs,fn=cr>0&&!Yr||cr===0&&!Yr&&this.mode==="math",Cn=this.parseGroupOfType("argument to '"+te+"'",Ir,Yr,Ye,fn);if(!Cn){if(Yr){$t.push(null);continue}throw new o("Expected group after '"+te+"'",this.fetch())}(Yr?$t:wt).push(Cn)}return{args:wt,optArgs:$t}},Z.parseGroupOfType=function(te,he,we,Ye,wt){switch(he){case"color":return wt&&this.consumeSpaces(),this.parseColorGroup(we);case"size":return wt&&this.consumeSpaces(),this.parseSizeGroup(we);case"url":return this.parseUrlGroup(we,wt);case"math":case"text":return this.parseGroup(te,we,Ye,void 0,he,wt);case"hbox":{var $t=this.parseGroup(te,we,Ye,void 0,"text",wt);if(!$t)return $t;var cr={type:"styling",mode:$t.mode,body:[$t],style:"text"};return cr}case"raw":{if(wt&&this.consumeSpaces(),we&&this.fetch().text==="{")return null;var Ir=this.parseStringGroup("raw",we,!0);if(Ir)return{type:"raw",mode:"text",string:Ir.text};throw new o("Expected raw group",this.fetch())}case"original":case null:case void 0:return this.parseGroup(te,we,Ye,void 0,void 0,wt);default:throw new o("Unknown group type as "+te,this.fetch())}},Z.consumeSpaces=function(){for(;this.fetch().text===" ";)this.consume()},Z.parseStringGroup=function(te,he,we){var Ye=he?"[":"{",wt=he?"]":"}",$t=this.fetch();if($t.text!==Ye){if(he)return null;if(we&&$t.text!=="EOF"&&/[^{}[\]]/.test($t.text))return this.consume(),$t}var cr=this.mode;this.mode="text",this.expect(Ye);for(var Ir="",Yr=this.fetch(),fn=0,Cn=Yr,Wn;(Wn=this.fetch()).text!==wt||we&&fn>0;){switch(Wn.text){case"EOF":throw new o("Unexpected end of input in "+te,Yr.range(Cn,Ir));case Ye:fn++;break;case wt:fn--;break}Cn=Wn,Ir+=Cn.text,this.consume()}return this.expect(wt),this.mode=cr,Yr.range(Cn,Ir)},Z.parseRegexGroup=function(te,he){var we=this.mode;this.mode="text";for(var Ye=this.fetch(),wt=Ye,$t="",cr;(cr=this.fetch()).text!=="EOF"&&te.test($t+cr.text);)wt=cr,$t+=wt.text,this.consume();if($t==="")throw new o("Invalid "+he+": '"+Ye.text+"'",Ye);return this.mode=we,Ye.range(wt,$t)},Z.parseColorGroup=function(te){var he=this.parseStringGroup("color",te);if(!he)return null;var we=/^(#[a-f0-9]{3}|#?[a-f0-9]{6}|[a-z]+)$/i.exec(he.text);if(!we)throw new o("Invalid color: '"+he.text+"'",he);var Ye=we[0];return/^[0-9a-f]{6}$/i.test(Ye)&&(Ye="#"+Ye),{type:"color-token",mode:this.mode,color:Ye}},Z.parseSizeGroup=function(te){var he,we=!1;if(!te&&this.fetch().text!=="{"?he=this.parseRegexGroup(/^[-+]? *(?:$|\d+|\d+\.\d*|\.\d*) *[a-z]{0,2} *$/,"size"):he=this.parseStringGroup("size",te),!he)return null;!te&&he.text.length===0&&(he.text="0pt",we=!0);var Ye=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(he.text);if(!Ye)throw new o("Invalid size: '"+he.text+"'",he);var wt={number:+(Ye[1]+Ye[2]),unit:Ye[3]};if(!ha(wt))throw new o("Invalid unit: '"+wt.unit+"'",he);return{type:"size",mode:this.mode,value:wt,isBlank:we}},Z.parseUrlGroup=function(te,he){this.gullet.lexer.setCatcode("%",13);var we=this.parseStringGroup("url",te,!0);if(this.gullet.lexer.setCatcode("%",14),!we)return null;var Ye=we.text.replace(/\\([#$%&~_^{}])/g,"$1");return{type:"url",mode:this.mode,url:Ye}},Z.parseGroup=function(te,he,we,Ye,wt,$t){var cr=this.mode;wt&&this.switchMode(wt),$t&&this.consumeSpaces();var Ir=this.fetch(),Yr=Ir.text,fn;if(he?Yr==="[":Yr==="{"||Yr==="\\begingroup"){this.consume();var Cn=Ve.endOfGroup[Yr];this.gullet.beginGroup();var Wn=this.parseExpression(!1,Cn),qn=this.fetch();this.expect(Cn),this.gullet.endGroup(),fn={type:"ordgroup",mode:this.mode,loc:l.range(Ir,qn),body:Wn,semisimple:Yr==="\\begingroup"||void 0}}else if(he)fn=null;else if(fn=this.parseFunction(Ye,te,we)||this.parseSymbol(),fn==null&&Yr[0]==="\\"&&!jt.hasOwnProperty(Yr)){if(this.settings.throwOnError)throw new o("Undefined control sequence: "+Yr,Ir);fn=this.formatUnsupportedCmd(Yr),this.consume()}return wt&&this.switchMode(cr),fn},Z.formLigatures=function(te){for(var he=te.length-1,we=0;we<he;++we){var Ye=te[we],wt=Ye.text;wt==="-"&&te[we+1].text==="-"&&(we+1<he&&te[we+2].text==="-"?(te.splice(we,3,{type:"textord",mode:"text",loc:l.range(Ye,te[we+2]),text:"---"}),he-=2):(te.splice(we,2,{type:"textord",mode:"text",loc:l.range(Ye,te[we+1]),text:"--"}),he-=1)),(wt==="'"||wt==="`")&&te[we+1].text===wt&&(te.splice(we,2,{type:"textord",mode:"text",loc:l.range(Ye,te[we+1]),text:wt+wt}),he-=1)}},Z.parseSymbol=function(){var te=this.fetch(),he=te.text;if(/^\\verb[^a-zA-Z]/.test(he)){this.consume();var we=he.slice(5),Ye=we.charAt(0)==="*";if(Ye&&(we=we.slice(1)),we.length<2||we.charAt(0)!==we.slice(-1))throw new o(`\\verb assertion failed --
please report what input caused this bug`);return we=we.slice(1,-1),{type:"verb",mode:"text",body:we,star:Ye}}Jr.hasOwnProperty(he[0])&&!Ce[this.mode][he[0]]&&(this.settings.strict&&this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Accented Unicode text character "'+he[0]+'" used in math mode',te),he=Jr[he[0]]+he.substr(1));var wt=jo.exec(he);wt&&(he=he.substring(0,wt.index),he==="i"?he="\u0131":he==="j"&&(he="\u0237"));var $t;if(Ce[this.mode][he]){this.settings.strict&&this.mode==="math"&&jn.indexOf(he)>=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+he[0]+'" used in math mode',te);var cr=Ce[this.mode][he].group,Ir=l.range(te),Yr;if(Ht.hasOwnProperty(cr)){var fn=cr;Yr={type:"atom",mode:this.mode,family:fn,loc:Ir,text:he}}else Yr={type:cr,mode:this.mode,loc:Ir,text:he};$t=Yr}else if(he.charCodeAt(0)>=128)this.settings.strict&&(Se(he.charCodeAt(0))?this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+he[0]+'" used in math mode',te):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+he[0]+'"'+(" ("+he.charCodeAt(0)+")"),te)),$t={type:"textord",mode:"text",loc:l.range(te),text:he};else return null;if(this.consume(),wt)for(var Cn=0;Cn<wt[0].length;Cn++){var Wn=wt[0][Cn];if(!Rr[Wn])throw new o("Unknown accent ' "+Wn+"'",te);var qn=Rr[Wn][this.mode];if(!qn)throw new o("Accent "+Wn+" unsupported in "+this.mode+" mode",te);$t={type:"accent",mode:this.mode,loc:l.range(te),label:qn,isStretchy:!1,isShifty:!0,base:$t}}return $t},Ve}();gn.endOfExpression=["}","\\endgroup","\\end","\\right","&"],gn.endOfGroup={"[":"]","{":"}","\\begingroup":"\\endgroup"},gn.SUPSUB_GREEDINESS=1;var Xi=function(Z,Y){if(!(typeof Z=="string"||Z instanceof String))throw new TypeError("KaTeX can only parse string typed expression");var te=new gn(Z,Y);delete te.gullet.macros.current["\\df@tag"];var he=te.parse();if(te.gullet.macros.get("\\df@tag")){if(!Y.displayMode)throw new o("\\tag works only in display equations");te.gullet.feed("\\df@tag"),he=[{type:"tag",mode:"text",body:he,tag:te.parse()}]}return he},ui=Xi,wo=function(Z,Y,te){Y.textContent="";var he=Es(Z,te).toNode();Y.appendChild(he)};typeof document!="undefined"&&document.compatMode!=="CSS1Compat"&&(typeof console!="undefined"&&console.warn("Warning: KaTeX doesn't work in quirks mode. Make sure your website has a suitable doctype."),wo=function(){throw new o("KaTeX doesn't work in quirks mode.")});var fa=function(Z,Y){var te=Es(Z,Y).toMarkup();return te},ns=function(Z,Y){var te=new P(Y);return ui(Z,te)},Xa=function(Z,Y,te){if(te.throwOnError||!(Z instanceof o))throw Z;var he=_r.makeSpan(["katex-error"],[new ke(Y)]);return he.setAttribute("title",Z.toString()),he.setAttribute("style","color:"+te.errorColor),he},Es=function(Z,Y){var te=new P(Y);try{var he=ui(Z,te);return Qo(he,Z,te)}catch(we){return Xa(we,Z,te)}},go=function(Z,Y){var te=new P(Y);try{var he=ui(Z,te);return mu(he,Z,te)}catch(we){return Xa(we,Z,te)}},wu={version:"0.11.1",render:wo,renderToString:fa,ParseError:o,__parse:ns,__renderToDomTree:Es,__renderToHTMLTree:go,__setFontMetrics:tt,__defineSymbol:ce,__defineMacro:Vt,__domTree:{Span:ot,Anchor:Je,SymbolNode:ke,SvgNode:Ge,PathNode:We,LineNode:Xe}},yu=e.default=wu}]).default})},76414:function(d,v,e){var r=e(64696),i=e(16824),l=e(23476),c=e(63122),f=e(37279);function o(h){var u=-1,a=h==null?0:h.length;for(this.clear();++u<a;){var x=h[u];this.set(x[0],x[1])}}o.prototype.clear=r,o.prototype.delete=i,o.prototype.get=l,o.prototype.has=c,o.prototype.set=f,d.exports=o},99746:function(d,v,e){var r=e(34251),i=e(24968),l=e(28290),c=e(88068),f=e(54238);function o(h){var u=-1,a=h==null?0:h.length;for(this.clear();++u<a;){var x=h[u];this.set(x[0],x[1])}}o.prototype.clear=r,o.prototype.delete=i,o.prototype.get=l,o.prototype.has=c,o.prototype.set=f,d.exports=o},40164:function(d,v,e){var r=e(73893),i=e(33152),l=r(i,"Map");d.exports=l},52166:function(d,v,e){var r=e(35365),i=e(63765),l=e(12608),c=e(10203),f=e(11298);function o(h){var u=-1,a=h==null?0:h.length;for(this.clear();++u<a;){var x=h[u];this.set(x[0],x[1])}}o.prototype.clear=r,o.prototype.delete=i,o.prototype.get=l,o.prototype.has=c,o.prototype.set=f,d.exports=o},91866:function(d,v,e){var r=e(99746),i=e(31119),l=e(64399),c=e(81897),f=e(90558),o=e(64841);function h(u){var a=this.__data__=new r(u);this.size=a.size}h.prototype.clear=i,h.prototype.delete=l,h.prototype.get=c,h.prototype.has=f,h.prototype.set=o,d.exports=h},91869:function(d,v,e){var r=e(33152),i=r.Symbol;d.exports=i},77945:function(d,v,e){var r=e(33152),i=r.Uint8Array;d.exports=i},79628:function(d){function v(e,r,i){switch(i.length){case 0:return e.call(r);case 1:return e.call(r,i[0]);case 2:return e.call(r,i[0],i[1]);case 3:return e.call(r,i[0],i[1],i[2])}return e.apply(r,i)}d.exports=v},63333:function(d,v,e){var r=e(67943),i=e(13053),l=e(80744),c=e(57835),f=e(70213),o=e(18397),h=Object.prototype,u=h.hasOwnProperty;function a(x,p){var y=l(x),m=!y&&i(x),b=!y&&!m&&c(x),S=!y&&!m&&!b&&o(x),k=y||m||b||S,R=k?r(x.length,String):[],A=R.length;for(var P in x)(p||u.call(x,P))&&!(k&&(P=="length"||b&&(P=="offset"||P=="parent")||S&&(P=="buffer"||P=="byteLength"||P=="byteOffset")||f(P,A)))&&R.push(P);return R}d.exports=a},89135:function(d,v,e){var r=e(42813),i=e(43607);function l(c,f,o){(o!==void 0&&!i(c[f],o)||o===void 0&&!(f in c))&&r(c,f,o)}d.exports=l},60348:function(d,v,e){var r=e(42813),i=e(43607),l=Object.prototype,c=l.hasOwnProperty;function f(o,h,u){var a=o[h];(!(c.call(o,h)&&i(a,u))||u===void 0&&!(h in o))&&r(o,h,u)}d.exports=f},67971:function(d,v,e){var r=e(43607);function i(l,c){for(var f=l.length;f--;)if(r(l[f][0],c))return f;return-1}d.exports=i},42813:function(d,v,e){var r=e(35234);function i(l,c,f){c=="__proto__"&&r?r(l,c,{configurable:!0,enumerable:!0,value:f,writable:!0}):l[c]=f}d.exports=i},35024:function(d,v,e){var r=e(20816),i=Object.create,l=function(){function c(){}return function(f){if(!r(f))return{};if(i)return i(f);c.prototype=f;var o=new c;return c.prototype=void 0,o}}();d.exports=l},14018:function(d,v,e){var r=e(78010),i=r();d.exports=i},86756:function(d,v,e){var r=e(91869),i=e(72533),l=e(74702),c="[object Null]",f="[object Undefined]",o=r?r.toStringTag:void 0;function h(u){return u==null?u===void 0?f:c:o&&o in Object(u)?i(u):l(u)}d.exports=h},61506:function(d,v,e){var r=e(86756),i=e(93913),l="[object Arguments]";function c(f){return i(f)&&r(f)==l}d.exports=c},6367:function(d,v,e){var r=e(9363),i=e(89379),l=e(20816),c=e(63256),f=/[\\^$.*+?()[\]{}|]/g,o=/^\[object .+?Constructor\]$/,h=Function.prototype,u=Object.prototype,a=h.toString,x=u.hasOwnProperty,p=RegExp("^"+a.call(x).replace(f,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function y(m){if(!l(m)||i(m))return!1;var b=r(m)?p:o;return b.test(c(m))}d.exports=y},10766:function(d,v,e){var r=e(86756),i=e(11156),l=e(93913),c="[object Arguments]",f="[object Array]",o="[object Boolean]",h="[object Date]",u="[object Error]",a="[object Function]",x="[object Map]",p="[object Number]",y="[object Object]",m="[object RegExp]",b="[object Set]",S="[object String]",k="[object WeakMap]",R="[object ArrayBuffer]",A="[object DataView]",P="[object Float32Array]",M="[object Float64Array]",B="[object Int8Array]",N="[object Int16Array]",K="[object Int32Array]",H="[object Uint8Array]",W="[object Uint8ClampedArray]",ae="[object Uint16Array]",ne="[object Uint32Array]",oe={};oe[P]=oe[M]=oe[B]=oe[N]=oe[K]=oe[H]=oe[W]=oe[ae]=oe[ne]=!0,oe[c]=oe[f]=oe[R]=oe[o]=oe[A]=oe[h]=oe[u]=oe[a]=oe[x]=oe[p]=oe[y]=oe[m]=oe[b]=oe[S]=oe[k]=!1;function q(X){return l(X)&&i(X.length)&&!!oe[r(X)]}d.exports=q},33988:function(d,v,e){var r=e(20816),i=e(7975),l=e(97817),c=Object.prototype,f=c.hasOwnProperty;function o(h){if(!r(h))return l(h);var u=i(h),a=[];for(var x in h)x=="constructor"&&(u||!f.call(h,x))||a.push(x);return a}d.exports=o},50097:function(d,v,e){var r=e(91866),i=e(89135),l=e(14018),c=e(23585),f=e(20816),o=e(56730),h=e(47052);function u(a,x,p,y,m){a!==x&&l(x,function(b,S){if(m||(m=new r),f(b))c(a,x,S,p,u,y,m);else{var k=y?y(h(a,S),b,S+"",a,x,m):void 0;k===void 0&&(k=b),i(a,S,k)}},o)}d.exports=u},23585:function(d,v,e){var r=e(89135),i=e(32315),l=e(78358),c=e(47760),f=e(4084),o=e(13053),h=e(80744),u=e(41590),a=e(57835),x=e(9363),p=e(20816),y=e(19308),m=e(18397),b=e(47052),S=e(20480);function k(R,A,P,M,B,N,K){var H=b(R,P),W=b(A,P),ae=K.get(W);if(ae){r(R,P,ae);return}var ne=N?N(H,W,P+"",R,A,K):void 0,oe=ne===void 0;if(oe){var q=h(W),X=!q&&a(W),V=!q&&!X&&m(W);ne=W,q||X||V?h(H)?ne=H:u(H)?ne=c(H):X?(oe=!1,ne=i(W,!0)):V?(oe=!1,ne=l(W,!0)):ne=[]:y(W)||o(W)?(ne=H,o(H)?ne=S(H):(!p(H)||x(H))&&(ne=f(W))):oe=!1}oe&&(K.set(W,ne),B(ne,W,M,N,K),K.delete(W)),r(R,P,ne)}d.exports=k},92918:function(d,v,e){var r=e(46962),i=e(19652),l=e(71152);function c(f,o){return l(i(f,o,r),f+"")}d.exports=c},63989:function(d,v,e){var r=e(13503),i=e(35234),l=e(46962),c=i?function(f,o){return i(f,"toString",{configurable:!0,enumerable:!1,value:r(o),writable:!0})}:l;d.exports=c},67943:function(d){function v(e,r){for(var i=-1,l=Array(e);++i<e;)l[i]=r(i);return l}d.exports=v},38342:function(d){function v(e){return function(r){return e(r)}}d.exports=v},20188:function(d,v,e){var r=e(77945);function i(l){var c=new l.constructor(l.byteLength);return new r(c).set(new r(l)),c}d.exports=i},32315:function(d,v,e){d=e.nmd(d);var r=e(33152),i=v&&!v.nodeType&&v,l=i&&!0&&d&&!d.nodeType&&d,c=l&&l.exports===i,f=c?r.Buffer:void 0,o=f?f.allocUnsafe:void 0;function h(u,a){if(a)return u.slice();var x=u.length,p=o?o(x):new u.constructor(x);return u.copy(p),p}d.exports=h},78358:function(d,v,e){var r=e(20188);function i(l,c){var f=c?r(l.buffer):l.buffer;return new l.constructor(f,l.byteOffset,l.length)}d.exports=i},47760:function(d){function v(e,r){var i=-1,l=e.length;for(r||(r=Array(l));++i<l;)r[i]=e[i];return r}d.exports=v},95378:function(d,v,e){var r=e(60348),i=e(42813);function l(c,f,o,h){var u=!o;o||(o={});for(var a=-1,x=f.length;++a<x;){var p=f[a],y=h?h(o[p],c[p],p,o,c):void 0;y===void 0&&(y=c[p]),u?i(o,p,y):r(o,p,y)}return o}d.exports=l},64218:function(d,v,e){var r=e(33152),i=r["__core-js_shared__"];d.exports=i},63323:function(d,v,e){var r=e(92918),i=e(8138);function l(c){return r(function(f,o){var h=-1,u=o.length,a=u>1?o[u-1]:void 0,x=u>2?o[2]:void 0;for(a=c.length>3&&typeof a=="function"?(u--,a):void 0,x&&i(o[0],o[1],x)&&(a=u<3?void 0:a,u=1),f=Object(f);++h<u;){var p=o[h];p&&c(f,p,h,a)}return f})}d.exports=l},78010:function(d){function v(e){return function(r,i,l){for(var c=-1,f=Object(r),o=l(r),h=o.length;h--;){var u=o[e?h:++c];if(i(f[u],u,f)===!1)break}return r}}d.exports=v},35234:function(d,v,e){var r=e(73893),i=function(){try{var l=r(Object,"defineProperty");return l({},"",{}),l}catch(c){}}();d.exports=i},37675:function(d,v,e){var r=typeof e.g=="object"&&e.g&&e.g.Object===Object&&e.g;d.exports=r},89819:function(d,v,e){var r=e(94358);function i(l,c){var f=l.__data__;return r(c)?f[typeof c=="string"?"string":"hash"]:f.map}d.exports=i},73893:function(d,v,e){var r=e(6367),i=e(49966);function l(c,f){var o=i(c,f);return r(o)?o:void 0}d.exports=l},49217:function(d,v,e){var r=e(31030),i=r(Object.getPrototypeOf,Object);d.exports=i},72533:function(d,v,e){var r=e(91869),i=Object.prototype,l=i.hasOwnProperty,c=i.toString,f=r?r.toStringTag:void 0;function o(h){var u=l.call(h,f),a=h[f];try{h[f]=void 0;var x=!0}catch(y){}var p=c.call(h);return x&&(u?h[f]=a:delete h[f]),p}d.exports=o},49966:function(d){function v(e,r){return e==null?void 0:e[r]}d.exports=v},64696:function(d,v,e){var r=e(65294);function i(){this.__data__=r?r(null):{},this.size=0}d.exports=i},16824:function(d){function v(e){var r=this.has(e)&&delete this.__data__[e];return this.size-=r?1:0,r}d.exports=v},23476:function(d,v,e){var r=e(65294),i="__lodash_hash_undefined__",l=Object.prototype,c=l.hasOwnProperty;function f(o){var h=this.__data__;if(r){var u=h[o];return u===i?void 0:u}return c.call(h,o)?h[o]:void 0}d.exports=f},63122:function(d,v,e){var r=e(65294),i=Object.prototype,l=i.hasOwnProperty;function c(f){var o=this.__data__;return r?o[f]!==void 0:l.call(o,f)}d.exports=c},37279:function(d,v,e){var r=e(65294),i="__lodash_hash_undefined__";function l(c,f){var o=this.__data__;return this.size+=this.has(c)?0:1,o[c]=r&&f===void 0?i:f,this}d.exports=l},4084:function(d,v,e){var r=e(35024),i=e(49217),l=e(7975);function c(f){return typeof f.constructor=="function"&&!l(f)?r(i(f)):{}}d.exports=c},70213:function(d){var v=9007199254740991,e=/^(?:0|[1-9]\d*)$/;function r(i,l){var c=typeof i;return l=l==null?v:l,!!l&&(c=="number"||c!="symbol"&&e.test(i))&&i>-1&&i%1==0&&i<l}d.exports=r},8138:function(d,v,e){var r=e(43607),i=e(24665),l=e(70213),c=e(20816);function f(o,h,u){if(!c(u))return!1;var a=typeof h;return(a=="number"?i(u)&&l(h,u.length):a=="string"&&h in u)?r(u[h],o):!1}d.exports=f},94358:function(d){function v(e){var r=typeof e;return r=="string"||r=="number"||r=="symbol"||r=="boolean"?e!=="__proto__":e===null}d.exports=v},89379:function(d,v,e){var r=e(64218),i=function(){var c=/[^.]+$/.exec(r&&r.keys&&r.keys.IE_PROTO||"");return c?"Symbol(src)_1."+c:""}();function l(c){return!!i&&i in c}d.exports=l},7975:function(d){var v=Object.prototype;function e(r){var i=r&&r.constructor,l=typeof i=="function"&&i.prototype||v;return r===l}d.exports=e},34251:function(d){function v(){this.__data__=[],this.size=0}d.exports=v},24968:function(d,v,e){var r=e(67971),i=Array.prototype,l=i.splice;function c(f){var o=this.__data__,h=r(o,f);if(h<0)return!1;var u=o.length-1;return h==u?o.pop():l.call(o,h,1),--this.size,!0}d.exports=c},28290:function(d,v,e){var r=e(67971);function i(l){var c=this.__data__,f=r(c,l);return f<0?void 0:c[f][1]}d.exports=i},88068:function(d,v,e){var r=e(67971);function i(l){return r(this.__data__,l)>-1}d.exports=i},54238:function(d,v,e){var r=e(67971);function i(l,c){var f=this.__data__,o=r(f,l);return o<0?(++this.size,f.push([l,c])):f[o][1]=c,this}d.exports=i},35365:function(d,v,e){var r=e(76414),i=e(99746),l=e(40164);function c(){this.size=0,this.__data__={hash:new r,map:new(l||i),string:new r}}d.exports=c},63765:function(d,v,e){var r=e(89819);function i(l){var c=r(this,l).delete(l);return this.size-=c?1:0,c}d.exports=i},12608:function(d,v,e){var r=e(89819);function i(l){return r(this,l).get(l)}d.exports=i},10203:function(d,v,e){var r=e(89819);function i(l){return r(this,l).has(l)}d.exports=i},11298:function(d,v,e){var r=e(89819);function i(l,c){var f=r(this,l),o=f.size;return f.set(l,c),this.size+=f.size==o?0:1,this}d.exports=i},65294:function(d,v,e){var r=e(73893),i=r(Object,"create");d.exports=i},97817:function(d){function v(e){var r=[];if(e!=null)for(var i in Object(e))r.push(i);return r}d.exports=v},52495:function(d,v,e){d=e.nmd(d);var r=e(37675),i=v&&!v.nodeType&&v,l=i&&!0&&d&&!d.nodeType&&d,c=l&&l.exports===i,f=c&&r.process,o=function(){try{var h=l&&l.require&&l.require("util").types;return h||f&&f.binding&&f.binding("util")}catch(u){}}();d.exports=o},74702:function(d){var v=Object.prototype,e=v.toString;function r(i){return e.call(i)}d.exports=r},31030:function(d){function v(e,r){return function(i){return e(r(i))}}d.exports=v},19652:function(d,v,e){var r=e(79628),i=Math.max;function l(c,f,o){return f=i(f===void 0?c.length-1:f,0),function(){for(var h=arguments,u=-1,a=i(h.length-f,0),x=Array(a);++u<a;)x[u]=h[f+u];u=-1;for(var p=Array(f+1);++u<f;)p[u]=h[u];return p[f]=o(x),r(c,this,p)}}d.exports=l},33152:function(d,v,e){var r=e(37675),i=typeof self=="object"&&self&&self.Object===Object&&self,l=r||i||Function("return this")();d.exports=l},47052:function(d){function v(e,r){if(!(r==="constructor"&&typeof e[r]=="function")&&r!="__proto__")return e[r]}d.exports=v},71152:function(d,v,e){var r=e(63989),i=e(12345),l=i(r);d.exports=l},12345:function(d){var v=800,e=16,r=Date.now;function i(l){var c=0,f=0;return function(){var o=r(),h=e-(o-f);if(f=o,h>0){if(++c>=v)return arguments[0]}else c=0;return l.apply(void 0,arguments)}}d.exports=i},31119:function(d,v,e){var r=e(99746);function i(){this.__data__=new r,this.size=0}d.exports=i},64399:function(d){function v(e){var r=this.__data__,i=r.delete(e);return this.size=r.size,i}d.exports=v},81897:function(d){function v(e){return this.__data__.get(e)}d.exports=v},90558:function(d){function v(e){return this.__data__.has(e)}d.exports=v},64841:function(d,v,e){var r=e(99746),i=e(40164),l=e(52166),c=200;function f(o,h){var u=this.__data__;if(u instanceof r){var a=u.__data__;if(!i||a.length<c-1)return a.push([o,h]),this.size=++u.size,this;u=this.__data__=new l(a)}return u.set(o,h),this.size=u.size,this}d.exports=f},63256:function(d){var v=Function.prototype,e=v.toString;function r(i){if(i!=null){try{return e.call(i)}catch(l){}try{return i+""}catch(l){}}return""}d.exports=r},13503:function(d){function v(e){return function(){return e}}d.exports=v},43607:function(d){function v(e,r){return e===r||e!==e&&r!==r}d.exports=v},46962:function(d){function v(e){return e}d.exports=v},13053:function(d,v,e){var r=e(61506),i=e(93913),l=Object.prototype,c=l.hasOwnProperty,f=l.propertyIsEnumerable,o=r(function(){return arguments}())?r:function(h){return i(h)&&c.call(h,"callee")&&!f.call(h,"callee")};d.exports=o},80744:function(d){var v=Array.isArray;d.exports=v},24665:function(d,v,e){var r=e(9363),i=e(11156);function l(c){return c!=null&&i(c.length)&&!r(c)}d.exports=l},41590:function(d,v,e){var r=e(24665),i=e(93913);function l(c){return i(c)&&r(c)}d.exports=l},57835:function(d,v,e){d=e.nmd(d);var r=e(33152),i=e(55950),l=v&&!v.nodeType&&v,c=l&&!0&&d&&!d.nodeType&&d,f=c&&c.exports===l,o=f?r.Buffer:void 0,h=o?o.isBuffer:void 0,u=h||i;d.exports=u},9363:function(d,v,e){var r=e(86756),i=e(20816),l="[object AsyncFunction]",c="[object Function]",f="[object GeneratorFunction]",o="[object Proxy]";function h(u){if(!i(u))return!1;var a=r(u);return a==c||a==f||a==l||a==o}d.exports=h},11156:function(d){var v=9007199254740991;function e(r){return typeof r=="number"&&r>-1&&r%1==0&&r<=v}d.exports=e},20816:function(d){function v(e){var r=typeof e;return e!=null&&(r=="object"||r=="function")}d.exports=v},93913:function(d){function v(e){return e!=null&&typeof e=="object"}d.exports=v},19308:function(d,v,e){var r=e(86756),i=e(49217),l=e(93913),c="[object Object]",f=Function.prototype,o=Object.prototype,h=f.toString,u=o.hasOwnProperty,a=h.call(Object);function x(p){if(!l(p)||r(p)!=c)return!1;var y=i(p);if(y===null)return!0;var m=u.call(y,"constructor")&&y.constructor;return typeof m=="function"&&m instanceof m&&h.call(m)==a}d.exports=x},18397:function(d,v,e){var r=e(10766),i=e(38342),l=e(52495),c=l&&l.isTypedArray,f=c?i(c):r;d.exports=f},56730:function(d,v,e){var r=e(63333),i=e(33988),l=e(24665);function c(f){return l(f)?r(f,!0):i(f)}d.exports=c},89392:function(d,v,e){d=e.nmd(d);var r;(function(){var i,l="4.17.21",c=200,f="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",o="Expected a function",h="Invalid `variable` option passed into `_.template`",u="__lodash_hash_undefined__",a=500,x="__lodash_placeholder__",p=1,y=2,m=4,b=1,S=2,k=1,R=2,A=4,P=8,M=16,B=32,N=64,K=128,H=256,W=512,ae=30,ne="...",oe=800,q=16,X=1,V=2,se=3,ee=1/0,J=9007199254740991,le=17976931348623157e292,z=NaN,j=4294967295,ie=j-1,me=j>>>1,Se=[["ary",K],["bind",k],["bindKey",R],["curry",P],["curryRight",M],["flip",W],["partial",B],["partialRight",N],["rearg",H]],Ie="[object Arguments]",He="[object Array]",je="[object AsyncFunction]",Dt="[object Boolean]",ht="[object Date]",It="[object DOMException]",Zt="[object Error]",Rt="[object Function]",ar="[object GeneratorFunction]",$e="[object Map]",gt="[object Number]",Mt="[object Null]",et="[object Object]",ft="[object Promise]",ot="[object Proxy]",Je="[object RegExp]",Ne="[object Set]",ye="[object String]",ke="[object Symbol]",Ge="[object Undefined]",We="[object WeakMap]",Xe="[object WeakSet]",ut="[object ArrayBuffer]",pt="[object DataView]",or="[object Float32Array]",tr="[object Float64Array]",Me="[object Int8Array]",tt="[object Int16Array]",Yt="[object Int32Array]",Ot="[object Uint8Array]",zt="[object Uint8ClampedArray]",Ht="[object Uint16Array]",lr="[object Uint32Array]",Wt=/\b__p \+= '';/g,Ce=/\b(__p \+=) '' \+/g,ce=/(__e\(.*?\)|\b__t\)) \+\n'';/g,pe=/&(?:amp|lt|gt|quot|#39);/g,Ct=/[&<>"']/g,Ae=RegExp(pe.source),st=RegExp(Ct.source),Gt=/<%-([\s\S]+?)%>/g,bt=/<%([\s\S]+?)%>/g,Te=/<%=([\s\S]+?)%>/g,yt=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ze=/^\w*$/,xe=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,dt=/[\\^$.*+?()[\]{}|]/g,Pt=RegExp(dt.source),Be=/^\s+/,Or=/\s/,mt=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,qr=/\{\n\/\* \[wrapped with (.+)\] \*/,an=/,? & /,Nt=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,qt=/[()=,{}\[\]\/\s]/,Lt=/\\(\\)?/g,Xt=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Er=/\w*$/,Pr=/^[-+]0x[0-9a-f]+$/i,At=/^0b[01]+$/i,Kt=/^\[object .+?Constructor\]$/,Bt=/^0o[0-7]+$/i,Jt=/^(?:0|[1-9]\d*)$/,br=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Xr=/($^)/,Wr=/['\n\r\u2028\u2029\\]/g,jn="\\ud800-\\udfff",wn="\\u0300-\\u036f",Yn="\\ufe20-\\ufe2f",St="\\u20d0-\\u20ff",Vr=wn+Yn+St,ii="\\u2700-\\u27bf",Bi="a-z\\xdf-\\xf6\\xf8-\\xff",Gn="\\xac\\xb1\\xd7\\xf7",ci="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Oi="\\u2000-\\u206f",$i=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ai="A-Z\\xc0-\\xd6\\xd8-\\xde",ji="\\ufe0e\\ufe0f",ha=Gn+ci+Oi+$i,ea="['\u2019]",Yi="["+jn+"]",mi="["+ha+"]",zi="["+Vr+"]",Ca="\\d+",xt="["+ii+"]",xa="["+Bi+"]",Zi="[^"+jn+ha+Ca+ii+Bi+Ai+"]",_i="\\ud83c[\\udffb-\\udfff]",Da="(?:"+zi+"|"+_i+")",Hi="[^"+jn+"]",ei="(?:\\ud83c[\\udde6-\\uddff]){2}",$n="[\\ud800-\\udbff][\\udc00-\\udfff]",Ee="["+Ai+"]",nt="\\u200d",qe="(?:"+xa+"|"+Zi+")",Tt="(?:"+Ee+"|"+Zi+")",lt="(?:"+ea+"(?:d|ll|m|re|s|t|ve))?",hr="(?:"+ea+"(?:D|LL|M|RE|S|T|VE))?",pr=Da+"?",Cr="["+ji+"]?",$r="(?:"+nt+"(?:"+[Hi,ei,$n].join("|")+")"+Cr+pr+")*",en="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Nr="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",An=Cr+pr+$r,_r="(?:"+[xt,ei,$n].join("|")+")"+An,Fn="(?:"+[Hi+zi+"?",zi,ei,$n,Yi].join("|")+")",Qn=RegExp(ea,"g"),Ke=RegExp(zi,"g"),ct=RegExp(_i+"(?="+_i+")|"+Fn+An,"g"),ge=RegExp([Ee+"?"+xa+"+"+lt+"(?="+[mi,Ee,"$"].join("|")+")",Tt+"+"+hr+"(?="+[mi,Ee+qe,"$"].join("|")+")",Ee+"?"+qe+"+"+lt,Ee+"+"+hr,Nr,en,Ca,_r].join("|"),"g"),sr=RegExp("["+nt+jn+Vr+ji+"]"),nr=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,kr=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Hr=-1,Zr={};Zr[or]=Zr[tr]=Zr[Me]=Zr[tt]=Zr[Yt]=Zr[Ot]=Zr[zt]=Zr[Ht]=Zr[lr]=!0,Zr[Ie]=Zr[He]=Zr[ut]=Zr[Dt]=Zr[pt]=Zr[ht]=Zr[Zt]=Zr[Rt]=Zr[$e]=Zr[gt]=Zr[et]=Zr[Je]=Zr[Ne]=Zr[ye]=Zr[We]=!1;var hn={};hn[Ie]=hn[He]=hn[ut]=hn[pt]=hn[Dt]=hn[ht]=hn[or]=hn[tr]=hn[Me]=hn[tt]=hn[Yt]=hn[$e]=hn[gt]=hn[et]=hn[Je]=hn[Ne]=hn[ye]=hn[ke]=hn[Ot]=hn[zt]=hn[Ht]=hn[lr]=!0,hn[Zt]=hn[Rt]=hn[We]=!1;var Si={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},un={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},yn={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"},Gr={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},kn=parseFloat,si=parseInt,Ea=typeof e.g=="object"&&e.g&&e.g.Object===Object&&e.g,Js=typeof self=="object"&&self&&self.Object===Object&&self,Ba=Ea||Js||Function("return this")(),$s=v&&!v.nodeType&&v,Ns=$s&&!0&&d&&!d.nodeType&&d,as=Ns&&Ns.exports===$s,oo=as&&Ea.process,Aa=function(){try{var mr=Ns&&Ns.require&&Ns.require("util").types;return mr||oo&&oo.binding&&oo.binding("util")}catch(Fr){}}(),Is=Aa&&Aa.isArrayBuffer,ps=Aa&&Aa.isDate,po=Aa&&Aa.isMap,Ji=Aa&&Aa.isRegExp,to=Aa&&Aa.isSet,zo=Aa&&Aa.isTypedArray;function Na(mr,Fr,Br){switch(Br.length){case 0:return mr.call(Fr);case 1:return mr.call(Fr,Br[0]);case 2:return mr.call(Fr,Br[0],Br[1]);case 3:return mr.call(Fr,Br[0],Br[1],Br[2])}return mr.apply(Fr,Br)}function zs(mr,Fr,Br,Tn){for(var In=-1,oi=mr==null?0:mr.length;++In<oi;){var wi=mr[In];Fr(Tn,wi,Br(wi),mr)}return Tn}function di(mr,Fr){for(var Br=-1,Tn=mr==null?0:mr.length;++Br<Tn&&Fr(mr[Br],Br,mr)!==!1;);return mr}function ro(mr,Fr){for(var Br=mr==null?0:mr.length;Br--&&Fr(mr[Br],Br,mr)!==!1;);return mr}function Rn(mr,Fr){for(var Br=-1,Tn=mr==null?0:mr.length;++Br<Tn;)if(!Fr(mr[Br],Br,mr))return!1;return!0}function ss(mr,Fr){for(var Br=-1,Tn=mr==null?0:mr.length,In=0,oi=[];++Br<Tn;){var wi=mr[Br];Fr(wi,Br,mr)&&(oi[In++]=wi)}return oi}function Ps(mr,Fr){var Br=mr==null?0:mr.length;return!!Br&&Wo(mr,Fr,0)>-1}function Os(mr,Fr,Br){for(var Tn=-1,In=mr==null?0:mr.length;++Tn<In;)if(Br(Fr,mr[Tn]))return!0;return!1}function Qi(mr,Fr){for(var Br=-1,Tn=mr==null?0:mr.length,In=Array(Tn);++Br<Tn;)In[Br]=Fr(mr[Br],Br,mr);return In}function Ka(mr,Fr){for(var Br=-1,Tn=Fr.length,In=mr.length;++Br<Tn;)mr[In+Br]=Fr[Br];return mr}function Ni(mr,Fr,Br,Tn){var In=-1,oi=mr==null?0:mr.length;for(Tn&&oi&&(Br=mr[++In]);++In<oi;)Br=Fr(Br,mr[In],In,mr);return Br}function Ds(mr,Fr,Br,Tn){var In=mr==null?0:mr.length;for(Tn&&In&&(Br=mr[--In]);In--;)Br=Fr(Br,mr[In],In,mr);return Br}function xo(mr,Fr){for(var Br=-1,Tn=mr==null?0:mr.length;++Br<Tn;)if(Fr(mr[Br],Br,mr))return!0;return!1}var Zo=hi("length");function Qo(mr){return mr.split("")}function mu(mr){return mr.match(Nt)||[]}function _u(mr,Fr,Br){var Tn;return Br(mr,function(In,oi,wi){if(Fr(In,oi,wi))return Tn=oi,!1}),Tn}function vo(mr,Fr,Br,Tn){for(var In=mr.length,oi=Br+(Tn?1:-1);Tn?oi--:++oi<In;)if(Fr(mr[oi],oi,mr))return oi;return-1}function Wo(mr,Fr,Br){return Fr===Fr?rr(mr,Fr,Br):vo(mr,nu,Br)}function Oo(mr,Fr,Br,Tn){for(var In=Br-1,oi=mr.length;++In<oi;)if(Tn(mr[In],Fr))return In;return-1}function nu(mr){return mr!==mr}function Xo(mr,Fr){var Br=mr==null?0:mr.length;return Br?es(mr,Fr)/Br:z}function hi(mr){return function(Fr){return Fr==null?i:Fr[mr]}}function vi(mr){return function(Fr){return mr==null?i:mr[Fr]}}function qa(mr,Fr,Br,Tn,In){return In(mr,function(oi,wi,Hn){Br=Tn?(Tn=!1,oi):Fr(Br,oi,wi,Hn)}),Br}function ls(mr,Fr){var Br=mr.length;for(mr.sort(Fr);Br--;)mr[Br]=mr[Br].value;return mr}function es(mr,Fr){for(var Br,Tn=-1,In=mr.length;++Tn<In;){var oi=Fr(mr[Tn]);oi!==i&&(Br=Br===i?oi:Br+oi)}return Br}function Wa(mr,Fr){for(var Br=-1,Tn=Array(mr);++Br<mr;)Tn[Br]=Fr(Br);return Tn}function ms(mr,Fr){return Qi(Fr,function(Br){return[Br,mr[Br]]})}function Jo(mr){return mr&&mr.slice(0,Tr(mr)+1).replace(Be,"")}function ks(mr){return function(Fr){return mr(Fr)}}function Mo(mr,Fr){return Qi(Fr,function(Br){return mr[Br]})}function Eu(mr,Fr){return mr.has(Fr)}function Pu(mr,Fr){for(var Br=-1,Tn=mr.length;++Br<Tn&&Wo(Fr,mr[Br],0)>-1;);return Br}function rl(mr,Fr){for(var Br=mr.length;Br--&&Wo(Fr,mr[Br],0)>-1;);return Br}function dl(mr,Fr){for(var Br=mr.length,Tn=0;Br--;)mr[Br]===Fr&&++Tn;return Tn}var Fo=vi(Si),uo=vi(un);function Ho(mr){return"\\"+Gr[mr]}function Hu(mr,Fr){return mr==null?i:mr[Fr]}function Bo(mr){return sr.test(mr)}function Go(mr){return nr.test(mr)}function Uu(mr){for(var Fr,Br=[];!(Fr=mr.next()).done;)Br.push(Fr.value);return Br}function iu(mr){var Fr=-1,Br=Array(mr.size);return mr.forEach(function(Tn,In){Br[++Fr]=[In,Tn]}),Br}function vu(mr,Fr){return function(Br){return mr(Fr(Br))}}function No(mr,Fr){for(var Br=-1,Tn=mr.length,In=0,oi=[];++Br<Tn;){var wi=mr[Br];(wi===Fr||wi===x)&&(mr[Br]=x,oi[In++]=Br)}return oi}function gu(mr){var Fr=-1,Br=Array(mr.size);return mr.forEach(function(Tn){Br[++Fr]=Tn}),Br}function Ko(mr){var Fr=-1,Br=Array(mr.size);return mr.forEach(function(Tn){Br[++Fr]=[Tn,Tn]}),Br}function rr(mr,Fr,Br){for(var Tn=Br-1,In=mr.length;++Tn<In;)if(mr[Tn]===Fr)return Tn;return-1}function gr(mr,Fr,Br){for(var Tn=Br+1;Tn--;)if(mr[Tn]===Fr)return Tn;return Tn}function dr(mr){return Bo(mr)?zn(mr):Zo(mr)}function vr(mr){return Bo(mr)?Ln(mr):Qo(mr)}function Tr(mr){for(var Fr=mr.length;Fr--&&Or.test(mr.charAt(Fr)););return Fr}var bn=vi(yn);function zn(mr){for(var Fr=ct.lastIndex=0;ct.test(mr);)++Fr;return Fr}function Ln(mr){return mr.match(ct)||[]}function Zn(mr){return mr.match(ge)||[]}var ai=function mr(Fr){Fr=Fr==null?Ba:Jn.defaults(Ba.Object(),Fr,Jn.pick(Ba,kr));var Br=Fr.Array,Tn=Fr.Date,In=Fr.Error,oi=Fr.Function,wi=Fr.Math,Hn=Fr.Object,ta=Fr.RegExp,ra=Fr.String,gi=Fr.TypeError,Et=Br.prototype,Xn=oi.prototype,Sa=Hn.prototype,Ra=Fr["__core-js_shared__"],Ys=Xn.toString,sn=Sa.hasOwnProperty,Do=0,lo=function(){var w=/[^.]+$/.exec(Ra&&Ra.keys&&Ra.keys.IE_PROTO||"");return w?"Symbol(src)_1."+w:""}(),Rs=Sa.toString,no=Ys.call(Hn),io=Ba._,ts=ta("^"+Ys.call(sn).replace(dt,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),cs=as?Fr.Buffer:i,ja=Fr.Symbol,os=Fr.Uint8Array,Qe=cs?cs.allocUnsafe:i,Pe=vu(Hn.getPrototypeOf,Hn),Ft=Hn.create,_t=Sa.propertyIsEnumerable,Sr=Et.splice,Mr=ja?ja.isConcatSpreadable:i,Kr=ja?ja.iterator:i,xn=ja?ja.toStringTag:i,cn=function(){try{var w=Ga(Hn,"defineProperty");return w({},"",{}),w}catch(F){}}(),Sn=Fr.clearTimeout!==Ba.clearTimeout&&Fr.clearTimeout,ri=Tn&&Tn.now!==Ba.Date.now&&Tn.now,ni=Fr.setTimeout!==Ba.setTimeout&&Fr.setTimeout,yi=wi.ceil,Li=wi.floor,na=Hn.getOwnPropertySymbols,Wi=cs?cs.isBuffer:i,Ci=Fr.isFinite,Ia=Et.join,Ii=vu(Hn.keys,Hn),pi=wi.max,ca=wi.min,Eo=Tn.now,Qs=Fr.parseInt,ia=wi.random,fs=Et.reverse,ya=Ga(Fr,"DataView"),_s=Ga(Fr,"Map"),La=Ga(Fr,"Promise"),rs=Ga(Fr,"Set"),Ls=Ga(Fr,"WeakMap"),ao=Ga(Hn,"create"),xs=Ls&&new Ls,pa={},Ms=wa(ya),jo=wa(_s),qs=wa(La),Ha=wa(rs),us=wa(Ls),co=ja?ja.prototype:i,Va=co?co.valueOf:i,Vt=co?co.toString:i;function kt(w){if(cu(w)&&!ma(w)&&!(w instanceof En)){if(w instanceof _n)return w;if(sn.call(w,"__wrapped__"))return Bs(w)}return new _n(w)}var Pa=function(){function w(){}return function(F){if(!$o(F))return{};if(Ft)return Ft(F);w.prototype=F;var fe=new w;return w.prototype=i,fe}}();function Zs(){}function _n(w,F){this.__wrapped__=w,this.__actions__=[],this.__chain__=!!F,this.__index__=0,this.__values__=i}kt.templateSettings={escape:Gt,evaluate:bt,interpolate:Te,variable:"",imports:{_:kt}},kt.prototype=Zs.prototype,kt.prototype.constructor=kt,_n.prototype=Pa(Zs.prototype),_n.prototype.constructor=_n;function En(w){this.__wrapped__=w,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=j,this.__views__=[]}function Ze(){var w=new En(this.__wrapped__);return w.__actions__=hu(this.__actions__),w.__dir__=this.__dir__,w.__filtered__=this.__filtered__,w.__iteratees__=hu(this.__iteratees__),w.__takeCount__=this.__takeCount__,w.__views__=hu(this.__views__),w}function jt(){if(this.__filtered__){var w=new En(this);w.__dir__=-1,w.__filtered__=!0}else w=this.clone(),w.__dir__*=-1;return w}function wr(){var w=this.__wrapped__.value(),F=this.__dir__,fe=ma(w),Fe=F<0,vt=fe?w.length:0,er=tf(0,vt,this.__views__),xr=er.start,Lr=er.end,tn=Lr-xr,Bn=Fe?Lr:xr-1,Nn=this.__iteratees__,Vn=Nn.length,Ri=0,ga=ca(tn,this.__takeCount__);if(!fe||!Fe&&vt==tn&&ga==tn)return gf(w,this.__actions__);var za=[];e:for(;tn--&&Ri<ga;){Bn+=F;for(var Cs=-1,Za=w[Bn];++Cs<Vn;){var Vs=Nn[Cs],eo=Vs.iteratee,wc=Vs.type,$l=eo(Za);if(wc==V)Za=$l;else if(!$l){if(wc==X)continue e;break e}}za[Ri++]=Za}return za}En.prototype=Pa(Zs.prototype),En.prototype.constructor=En;function Rr(w){var F=-1,fe=w==null?0:w.length;for(this.clear();++F<fe;){var Fe=w[F];this.set(Fe[0],Fe[1])}}function Jr(){this.__data__=ao?ao(null):{},this.size=0}function gn(w){var F=this.has(w)&&delete this.__data__[w];return this.size-=F?1:0,F}function Xi(w){var F=this.__data__;if(ao){var fe=F[w];return fe===u?i:fe}return sn.call(F,w)?F[w]:i}function ui(w){var F=this.__data__;return ao?F[w]!==i:sn.call(F,w)}function wo(w,F){var fe=this.__data__;return this.size+=this.has(w)?0:1,fe[w]=ao&&F===i?u:F,this}Rr.prototype.clear=Jr,Rr.prototype.delete=gn,Rr.prototype.get=Xi,Rr.prototype.has=ui,Rr.prototype.set=wo;function fa(w){var F=-1,fe=w==null?0:w.length;for(this.clear();++F<fe;){var Fe=w[F];this.set(Fe[0],Fe[1])}}function ns(){this.__data__=[],this.size=0}function Xa(w){var F=this.__data__,fe=Ts(F,w);if(fe<0)return!1;var Fe=F.length-1;return fe==Fe?F.pop():Sr.call(F,fe,1),--this.size,!0}function Es(w){var F=this.__data__,fe=Ts(F,w);return fe<0?i:F[fe][1]}function go(w){return Ts(this.__data__,w)>-1}function wu(w,F){var fe=this.__data__,Fe=Ts(fe,w);return Fe<0?(++this.size,fe.push([w,F])):fe[Fe][1]=F,this}fa.prototype.clear=ns,fa.prototype.delete=Xa,fa.prototype.get=Es,fa.prototype.has=go,fa.prototype.set=wu;function yu(w){var F=-1,fe=w==null?0:w.length;for(this.clear();++F<fe;){var Fe=w[F];this.set(Fe[0],Fe[1])}}function Ve(){this.size=0,this.__data__={hash:new Rr,map:new(_s||fa),string:new Rr}}function Z(w){var F=Mi(this,w).delete(w);return this.size-=F?1:0,F}function Y(w){return Mi(this,w).get(w)}function te(w){return Mi(this,w).has(w)}function he(w,F){var fe=Mi(this,w),Fe=fe.size;return fe.set(w,F),this.size+=fe.size==Fe?0:1,this}yu.prototype.clear=Ve,yu.prototype.delete=Z,yu.prototype.get=Y,yu.prototype.has=te,yu.prototype.set=he;function we(w){var F=-1,fe=w==null?0:w.length;for(this.__data__=new yu;++F<fe;)this.add(w[F])}function Ye(w){return this.__data__.set(w,u),this}function wt(w){return this.__data__.has(w)}we.prototype.add=we.prototype.push=Ye,we.prototype.has=wt;function $t(w){var F=this.__data__=new fa(w);this.size=F.size}function cr(){this.__data__=new fa,this.size=0}function Ir(w){var F=this.__data__,fe=F.delete(w);return this.size=F.size,fe}function Yr(w){return this.__data__.get(w)}function fn(w){return this.__data__.has(w)}function Cn(w,F){var fe=this.__data__;if(fe instanceof fa){var Fe=fe.__data__;if(!_s||Fe.length<c-1)return Fe.push([w,F]),this.size=++fe.size,this;fe=this.__data__=new yu(Fe)}return fe.set(w,F),this.size=fe.size,this}$t.prototype.clear=cr,$t.prototype.delete=Ir,$t.prototype.get=Yr,$t.prototype.has=fn,$t.prototype.set=Cn;function Wn(w,F){var fe=ma(w),Fe=!fe&&pu(w),vt=!fe&&!Fe&&Zc(w),er=!fe&&!Fe&&!vt&&rd(w),xr=fe||Fe||vt||er,Lr=xr?Wa(w.length,ra):[],tn=Lr.length;for(var Bn in w)(F||sn.call(w,Bn))&&!(xr&&(Bn=="length"||vt&&(Bn=="offset"||Bn=="parent")||er&&(Bn=="buffer"||Bn=="byteLength"||Bn=="byteOffset")||su(Bn,tn)))&&Lr.push(Bn);return Lr}function qn(w){var F=w.length;return F?w[Vu(0,F-1)]:i}function Di(w,F){return Gi(hu(w),ws(F,0,w.length))}function Fi(w){return Gi(hu(w))}function aa(w,F,fe){(fe!==i&&!bs(w[F],fe)||fe===i&&!(F in w))&&Oa(w,F,fe)}function ba(w,F,fe){var Fe=w[F];(!(sn.call(w,F)&&bs(Fe,fe))||fe===i&&!(F in w))&&Oa(w,F,fe)}function Ts(w,F){for(var fe=w.length;fe--;)if(bs(w[fe][0],F))return fe;return-1}function Fs(w,F,fe,Fe){return qo(w,function(vt,er,xr){F(Fe,vt,fe(vt),xr)}),Fe}function js(w,F){return w&&Xu(F,fl(F),w)}function vs(w,F){return w&&Xu(F,ac(F),w)}function Oa(w,F,fe){F=="__proto__"&&cn?cn(w,F,{configurable:!0,enumerable:!0,value:fe,writable:!0}):w[F]=fe}function fo(w,F){for(var fe=-1,Fe=F.length,vt=Br(Fe),er=w==null;++fe<Fe;)vt[fe]=er?i:Rd(w,F[fe]);return vt}function ws(w,F,fe){return w===w&&(fe!==i&&(w=w<=fe?w:fe),F!==i&&(w=w>=F?w:F)),w}function yr(w,F,fe,Fe,vt,er){var xr,Lr=F&p,tn=F&y,Bn=F&m;if(fe&&(xr=vt?fe(w,Fe,vt,er):fe(w)),xr!==i)return xr;if(!$o(w))return w;var Nn=ma(w);if(Nn){if(xr=rf(w),!Lr)return hu(w,xr)}else{var Vn=Gs(w),Ri=Vn==Rt||Vn==ar;if(Zc(w))return kf(w,Lr);if(Vn==et||Vn==Ie||Ri&&!vt){if(xr=tn||Ri?{}:Ju(w),!Lr)return tn?hc(w,vs(xr,w)):dc(w,js(xr,w))}else{if(!hn[Vn])return vt?w:{};xr=Ti(w,Vn,Lr)}}er||(er=new $t);var ga=er.get(w);if(ga)return ga;er.set(w,xr),Wd(w)?w.forEach(function(Za){xr.add(yr(Za,F,fe,Za,w,er))}):Gf(w)&&w.forEach(function(Za,Vs){xr.set(Vs,yr(Za,F,fe,Vs,w,er))});var za=Bn?tn?_e:L:tn?ac:fl,Cs=Nn?i:za(w);return di(Cs||w,function(Za,Vs){Cs&&(Vs=Za,Za=w[Vs]),ba(xr,Vs,yr(Za,F,fe,Vs,w,er))}),xr}function ko(w){var F=fl(w);return function(fe){return Uo(fe,w,F)}}function Uo(w,F,fe){var Fe=fe.length;if(w==null)return!Fe;for(w=Hn(w);Fe--;){var vt=fe[Fe],er=F[vt],xr=w[vt];if(xr===i&&!(vt in w)||!er(xr))return!1}return!0}function Su(w,F,fe){if(typeof w!="function")throw new gi(o);return Cu(function(){w.apply(i,fe)},F)}function Ws(w,F,fe,Fe){var vt=-1,er=Ps,xr=!0,Lr=w.length,tn=[],Bn=F.length;if(!Lr)return tn;fe&&(F=Qi(F,ks(fe))),Fe?(er=Os,xr=!1):F.length>=c&&(er=Eu,xr=!1,F=new we(F));e:for(;++vt<Lr;){var Nn=w[vt],Vn=fe==null?Nn:fe(Nn);if(Nn=Fe||Nn!==0?Nn:0,xr&&Vn===Vn){for(var Ri=Bn;Ri--;)if(F[Ri]===Vn)continue e;tn.push(Nn)}else er(F,Vn,Fe)||tn.push(Nn)}return tn}var qo=Mu(Ro),yo=Mu(eu,!0);function oc(w,F){var fe=!0;return qo(w,function(Fe,vt,er){return fe=!!F(Fe,vt,er),fe}),fe}function wl(w,F,fe){for(var Fe=-1,vt=w.length;++Fe<vt;){var er=w[Fe],xr=F(er);if(xr!=null&&(Lr===i?xr===xr&&!Ec(xr):fe(xr,Lr)))var Lr=xr,tn=er}return tn}function Sl(w,F,fe,Fe){var vt=w.length;for(fe=As(fe),fe<0&&(fe=-fe>vt?0:vt+fe),Fe=Fe===i||Fe>vt?vt:As(Fe),Fe<0&&(Fe+=vt),Fe=fe>Fe?0:Gd(Fe);fe<Fe;)w[fe++]=F;return w}function nl(w,F){var fe=[];return qo(w,function(Fe,vt,er){F(Fe,vt,er)&&fe.push(Fe)}),fe}function Hs(w,F,fe,Fe,vt){var er=-1,xr=w.length;for(fe||(fe=Nc),vt||(vt=[]);++er<xr;){var Lr=w[er];F>0&&fe(Lr)?F>1?Hs(Lr,F-1,fe,Fe,vt):Ka(vt,Lr):Fe||(vt[vt.length]=Lr)}return vt}var Gu=yf(),Ku=yf(!0);function Ro(w,F){return w&&Gu(w,F,fl)}function eu(w,F){return w&&Ku(w,F,fl)}function zl(w,F){return ss(F,function(fe){return Ol(w[fe])})}function bu(w,F){F=gl(F,w);for(var fe=0,Fe=F.length;w!=null&&fe<Fe;)w=w[sa(F[fe++])];return fe&&fe==Fe?w:i}function Zl(w,F,fe){var Fe=F(w);return ma(w)?Fe:Ka(Fe,fe(w))}function So(w){return w==null?w===i?Ge:Mt:xn&&xn in Hn(w)?Yo(w):wf(w)}function au(w,F){return w>F}function hl(w,F){return w!=null&&sn.call(w,F)}function Wl(w,F){return w!=null&&F in Hn(w)}function tu(w,F,fe){return w>=ca(F,fe)&&w<pi(F,fe)}function Hl(w,F,fe){for(var Fe=fe?Os:Ps,vt=w[0].length,er=w.length,xr=er,Lr=Br(er),tn=1/0,Bn=[];xr--;){var Nn=w[xr];xr&&F&&(Nn=Qi(Nn,ks(F))),tn=ca(Nn.length,tn),Lr[xr]=!fe&&(F||vt>=120&&Nn.length>=120)?new we(xr&&Nn):i}Nn=w[0];var Vn=-1,Ri=Lr[0];e:for(;++Vn<vt&&Bn.length<tn;){var ga=Nn[Vn],za=F?F(ga):ga;if(ga=fe||ga!==0?ga:0,!(Ri?Eu(Ri,za):Fe(Bn,za,fe))){for(xr=er;--xr;){var Cs=Lr[xr];if(!(Cs?Eu(Cs,za):Fe(w[xr],za,fe)))continue e}Ri&&Ri.push(za),Bn.push(ga)}}return Bn}function Gl(w,F,fe,Fe){return Ro(w,function(vt,er,xr){F(Fe,fe(vt),er,xr)}),Fe}function li(w,F,fe){F=gl(F,w),w=Il(w,F);var Fe=w==null?w:w[sa(uu(F))];return Fe==null?i:Na(Fe,w,fe)}function uc(w){return cu(w)&&So(w)==Ie}function ho(w){return cu(w)&&So(w)==ut}function Hc(w){return cu(w)&&So(w)==ht}function $u(w,F,fe,Fe,vt){return w===F?!0:w==null||F==null||!cu(w)&&!cu(F)?w!==w&&F!==F:pl(w,F,fe,Fe,$u,vt)}function pl(w,F,fe,Fe,vt,er){var xr=ma(w),Lr=ma(F),tn=xr?He:Gs(w),Bn=Lr?He:Gs(F);tn=tn==Ie?et:tn,Bn=Bn==Ie?et:Bn;var Nn=tn==et,Vn=Bn==et,Ri=tn==Bn;if(Ri&&Zc(w)){if(!Zc(F))return!1;xr=!0,Nn=!1}if(Ri&&!Nn)return er||(er=new $t),xr||rd(w)?Fc(w,F,fe,Fe,vt,er):xf(w,F,tn,fe,Fe,vt,er);if(!(fe&b)){var ga=Nn&&sn.call(w,"__wrapped__"),za=Vn&&sn.call(F,"__wrapped__");if(ga||za){var Cs=ga?w.value():w,Za=za?F.value():F;return er||(er=new $t),vt(Cs,Za,fe,Fe,er)}}return Ri?(er||(er=new $t),C(w,F,fe,Fe,vt,er)):!1}function il(w){return cu(w)&&Gs(w)==$e}function Ac(w,F,fe,Fe){var vt=fe.length,er=vt,xr=!Fe;if(w==null)return!er;for(w=Hn(w);vt--;){var Lr=fe[vt];if(xr&&Lr[2]?Lr[1]!==w[Lr[0]]:!(Lr[0]in w))return!1}for(;++vt<er;){Lr=fe[vt];var tn=Lr[0],Bn=w[tn],Nn=Lr[1];if(xr&&Lr[2]){if(Bn===i&&!(tn in w))return!1}else{var Vn=new $t;if(Fe)var Ri=Fe(Bn,Nn,tn,w,F,Vn);if(!(Ri===i?$u(Nn,Bn,b|S,Fe,Vn):Ri))return!1}}return!0}function Gc(w){if(!$o(w)||xl(w))return!1;var F=Ol(w)?ts:Kt;return F.test(wa(w))}function Ao(w){return cu(w)&&So(w)==Je}function Kc(w){return cu(w)&&Gs(w)==Ne}function Kl(w){return cu(w)&&Xf(w.length)&&!!Zr[So(w)]}function lc(w){return typeof w=="function"?w:w==null?sc:typeof w=="object"?ma(w)?mo(w[0],w[1]):Vl(w):n0(w)}function Dl(w){if(!Cl(w))return Ii(w);var F=[];for(var fe in Hn(w))sn.call(w,fe)&&fe!="constructor"&&F.push(fe);return F}function Vc(w){if(!$o(w))return Nl(w);var F=Cl(w),fe=[];for(var Fe in w)Fe=="constructor"&&(F||!sn.call(w,Fe))||fe.push(Fe);return fe}function kl(w,F){return w<F}function Ou(w,F){var fe=-1,Fe=lu(w)?Br(w.length):[];return qo(w,function(vt,er,xr){Fe[++fe]=F(vt,er,xr)}),Fe}function Vl(w){var F=ds(w);return F.length==1&&F[0][2]?Bu(F[0][0],F[0][1]):function(fe){return fe===w||Ac(fe,w,F)}}function mo(w,F){return gs(w)&&Ef(F)?Bu(sa(w),F):function(fe){var Fe=Rd(fe,w);return Fe===i&&Fe===F?Ld(fe,w):$u(F,Fe,b|S)}}function ru(w,F,fe,Fe,vt){w!==F&&Gu(F,function(er,xr){if(vt||(vt=new $t),$o(er))fu(w,F,xr,fe,ru,Fe,vt);else{var Lr=Fe?Fe(jc(w,xr),er,xr+"",w,F,vt):i;Lr===i&&(Lr=er),aa(w,xr,Lr)}},ac)}function fu(w,F,fe,Fe,vt,er,xr){var Lr=jc(w,fe),tn=jc(F,fe),Bn=xr.get(tn);if(Bn){aa(w,fe,Bn);return}var Nn=er?er(Lr,tn,fe+"",w,F,xr):i,Vn=Nn===i;if(Vn){var Ri=ma(tn),ga=!Ri&&Zc(tn),za=!Ri&&!ga&&rd(tn);Nn=tn,Ri||ga||za?ma(Lr)?Nn=Lr:Lo(Lr)?Nn=hu(Lr):ga?(Vn=!1,Nn=kf(tn,!0)):za?(Vn=!1,Nn=Lu(tn,!0)):Nn=[]:dd(tn)||pu(tn)?(Nn=Lr,pu(Lr)?Nn=Kd(Lr):(!$o(Lr)||Ol(Lr))&&(Nn=Ju(tn))):Vn=!1}Vn&&(xr.set(tn,Nn),vt(Nn,tn,Fe,er,xr),xr.delete(tn)),aa(w,fe,Nn)}function Yl(w,F){var fe=w.length;if(fe)return F+=F<0?fe:0,su(F,fe)?w[F]:i}function Al(w,F,fe){F.length?F=Qi(F,function(er){return ma(er)?function(xr){return bu(xr,er.length===1?er[0]:er)}:er}):F=[sc];var Fe=-1;F=Qi(F,ks(pn()));var vt=Ou(w,function(er,xr,Lr){var tn=Qi(F,function(Bn){return Bn(er)});return{criteria:tn,index:++Fe,value:er}});return ls(vt,function(er,xr){return Qu(er,xr,fe)})}function zu(w,F){return du(w,F,function(fe,Fe){return Ld(w,Fe)})}function du(w,F,fe){for(var Fe=-1,vt=F.length,er={};++Fe<vt;){var xr=F[Fe],Lr=bu(w,xr);fe(Lr,xr)&&ml(er,gl(xr,w),Lr)}return er}function pf(w){return function(F){return bu(F,w)}}function Du(w,F,fe,Fe){var vt=Fe?Oo:Wo,er=-1,xr=F.length,Lr=w;for(w===F&&(F=hu(F)),fe&&(Lr=Qi(w,ks(fe)));++er<xr;)for(var tn=0,Bn=F[er],Nn=fe?fe(Bn):Bn;(tn=vt(Lr,Nn,tn,Fe))>-1;)Lr!==w&&Sr.call(Lr,tn,1),Sr.call(w,tn,1);return w}function xu(w,F){for(var fe=w?F.length:0,Fe=fe-1;fe--;){var vt=F[fe];if(fe==Fe||vt!==er){var er=vt;su(vt)?Sr.call(w,vt,1):Oc(w,vt)}}return w}function Vu(w,F){return w+Li(ia()*(F-w+1))}function Tc(w,F,fe,Fe){for(var vt=-1,er=pi(yi((F-w)/(fe||1)),0),xr=Br(er);er--;)xr[Fe?er:++vt]=w,w+=fe;return xr}function Rl(w,F){var fe="";if(!w||F<1||F>J)return fe;do F%2&&(fe+=w),F=Li(F/2),F&&(w+=w);while(F);return fe}function Ta(w,F){return Iu(Nu(w,F,sc),w+"")}function mf(w){return qn(nd(w))}function Yc(w,F){var fe=nd(w);return Gi(fe,ws(F,0,fe.length))}function ml(w,F,fe,Fe){if(!$o(w))return w;F=gl(F,w);for(var vt=-1,er=F.length,xr=er-1,Lr=w;Lr!=null&&++vt<er;){var tn=sa(F[vt]),Bn=fe;if(tn==="__proto__"||tn==="constructor"||tn==="prototype")return w;if(vt!=xr){var Nn=Lr[tn];Bn=Fe?Fe(Nn,tn,Lr):i,Bn===i&&(Bn=$o(Nn)?Nn:su(F[vt+1])?[]:{})}ba(Lr,tn,Bn),Lr=Lr[tn]}return w}var Qc=xs?function(w,F){return xs.set(w,F),w}:sc,Df=cn?function(w,F){return cn(w,"toString",{configurable:!0,enumerable:!1,value:Fd(F),writable:!0})}:sc;function Cc(w){return Gi(nd(w))}function ku(w,F,fe){var Fe=-1,vt=w.length;F<0&&(F=-F>vt?0:vt+F),fe=fe>vt?vt:fe,fe<0&&(fe+=vt),vt=F>fe?0:fe-F>>>0,F>>>=0;for(var er=Br(vt);++Fe<vt;)er[Fe]=w[Fe+F];return er}function _f(w,F){var fe;return qo(w,function(Fe,vt,er){return fe=F(Fe,vt,er),!fe}),!!fe}function Ic(w,F,fe){var Fe=0,vt=w==null?Fe:w.length;if(typeof F=="number"&&F===F&&vt<=me){for(;Fe<vt;){var er=Fe+vt>>>1,xr=w[er];xr!==null&&!Ec(xr)&&(fe?xr<=F:xr<F)?Fe=er+1:vt=er}return vt}return Ql(w,F,sc,fe)}function Ql(w,F,fe,Fe){var vt=0,er=w==null?0:w.length;if(er===0)return 0;F=fe(F);for(var xr=F!==F,Lr=F===null,tn=Ec(F),Bn=F===i;vt<er;){var Nn=Li((vt+er)/2),Vn=fe(w[Nn]),Ri=Vn!==i,ga=Vn===null,za=Vn===Vn,Cs=Ec(Vn);if(xr)var Za=Fe||za;else Bn?Za=za&&(Fe||Ri):Lr?Za=za&&Ri&&(Fe||!ga):tn?Za=za&&Ri&&!ga&&(Fe||!Cs):ga||Cs?Za=!1:Za=Fe?Vn<=F:Vn<F;Za?vt=Nn+1:er=Nn}return ca(er,ie)}function vf(w,F){for(var fe=-1,Fe=w.length,vt=0,er=[];++fe<Fe;){var xr=w[fe],Lr=F?F(xr):xr;if(!fe||!bs(Lr,tn)){var tn=Lr;er[vt++]=xr===0?0:xr}}return er}function Pc(w){return typeof w=="number"?w:Ec(w)?z:+w}function Ru(w){if(typeof w=="string")return w;if(ma(w))return Qi(w,Ru)+"";if(Ec(w))return Vt?Vt.call(w):"";var F=w+"";return F=="0"&&1/w==-ee?"-0":F}function _l(w,F,fe){var Fe=-1,vt=Ps,er=w.length,xr=!0,Lr=[],tn=Lr;if(fe)xr=!1,vt=Os;else if(er>=c){var Bn=F?null:bf(w);if(Bn)return gu(Bn);xr=!1,vt=Eu,tn=new we}else tn=F?[]:Lr;e:for(;++Fe<er;){var Nn=w[Fe],Vn=F?F(Nn):Nn;if(Nn=fe||Nn!==0?Nn:0,xr&&Vn===Vn){for(var Ri=tn.length;Ri--;)if(tn[Ri]===Vn)continue e;F&&tn.push(Vn),Lr.push(Nn)}else vt(tn,Vn,fe)||(tn!==Lr&&tn.push(Vn),Lr.push(Nn))}return Lr}function Oc(w,F){return F=gl(F,w),w=Il(w,F),w==null||delete w[sa(uu(F))]}function vl(w,F,fe,Fe){return ml(w,F,fe(bu(w,F)),Fe)}function Xc(w,F,fe,Fe){for(var vt=w.length,er=Fe?vt:-1;(Fe?er--:++er<vt)&&F(w[er],er,w););return fe?ku(w,Fe?0:er,Fe?er+1:vt):ku(w,Fe?er+1:0,Fe?vt:er)}function gf(w,F){var fe=w;return fe instanceof En&&(fe=fe.value()),Ni(F,function(Fe,vt){return vt.func.apply(vt.thisArg,Ka([Fe],vt.args))},fe)}function cc(w,F,fe){var Fe=w.length;if(Fe<2)return Fe?_l(w[0]):[];for(var vt=-1,er=Br(Fe);++vt<Fe;)for(var xr=w[vt],Lr=-1;++Lr<Fe;)Lr!=vt&&(er[vt]=Ws(er[vt]||xr,w[Lr],F,fe));return _l(Hs(er,1),F,fe)}function To(w,F,fe){for(var Fe=-1,vt=w.length,er=F.length,xr={};++Fe<vt;){var Lr=Fe<er?F[Fe]:i;fe(xr,w[Fe],Lr)}return xr}function Dc(w){return Lo(w)?w:[]}function Jc(w){return typeof w=="function"?w:sc}function gl(w,F){return ma(w)?w:gs(w,F)?[w]:Ma(Po(w))}var Zu=Ta;function Co(w,F,fe){var Fe=w.length;return fe=fe===i?Fe:fe,!F&&fe>=Fe?w:ku(w,F,fe)}var Ll=Sn||function(w){return Ba.clearTimeout(w)};function kf(w,F){if(F)return w.slice();var fe=w.length,Fe=Qe?Qe(fe):new w.constructor(fe);return w.copy(Fe),Fe}function kc(w){var F=new w.constructor(w.byteLength);return new os(F).set(new os(w)),F}function Yu(w,F){var fe=F?kc(w.buffer):w.buffer;return new w.constructor(fe,w.byteOffset,w.byteLength)}function Xs(w){var F=new w.constructor(w.source,Er.exec(w));return F.lastIndex=w.lastIndex,F}function bo(w){return Va?Hn(Va.call(w)):{}}function Lu(w,F){var fe=F?kc(w.buffer):w.buffer;return new w.constructor(fe,w.byteOffset,w.length)}function Ue(w,F){if(w!==F){var fe=w!==i,Fe=w===null,vt=w===w,er=Ec(w),xr=F!==i,Lr=F===null,tn=F===F,Bn=Ec(F);if(!Lr&&!Bn&&!er&&w>F||er&&xr&&tn&&!Lr&&!Bn||Fe&&xr&&tn||!fe&&tn||!vt)return 1;if(!Fe&&!er&&!Bn&&w<F||Bn&&fe&&vt&&!Fe&&!er||Lr&&fe&&vt||!xr&&vt||!tn)return-1}return 0}function Qu(w,F,fe){for(var Fe=-1,vt=w.criteria,er=F.criteria,xr=vt.length,Lr=fe.length;++Fe<xr;){var tn=Ue(vt[Fe],er[Fe]);if(tn){if(Fe>=Lr)return tn;var Bn=fe[Fe];return tn*(Bn=="desc"?-1:1)}}return w.index-F.index}function Au(w,F,fe,Fe){for(var vt=-1,er=w.length,xr=fe.length,Lr=-1,tn=F.length,Bn=pi(er-xr,0),Nn=Br(tn+Bn),Vn=!Fe;++Lr<tn;)Nn[Lr]=F[Lr];for(;++vt<xr;)(Vn||vt<er)&&(Nn[fe[vt]]=w[vt]);for(;Bn--;)Nn[Lr++]=w[vt++];return Nn}function fc(w,F,fe,Fe){for(var vt=-1,er=w.length,xr=-1,Lr=fe.length,tn=-1,Bn=F.length,Nn=pi(er-Lr,0),Vn=Br(Nn+Bn),Ri=!Fe;++vt<Nn;)Vn[vt]=w[vt];for(var ga=vt;++tn<Bn;)Vn[ga+tn]=F[tn];for(;++xr<Lr;)(Ri||vt<er)&&(Vn[ga+fe[xr]]=w[vt++]);return Vn}function hu(w,F){var fe=-1,Fe=w.length;for(F||(F=Br(Fe));++fe<Fe;)F[fe]=w[fe];return F}function Xu(w,F,fe,Fe){var vt=!fe;fe||(fe={});for(var er=-1,xr=F.length;++er<xr;){var Lr=F[er],tn=Fe?Fe(fe[Lr],w[Lr],Lr,fe,w):i;tn===i&&(tn=w[Lr]),vt?Oa(fe,Lr,tn):ba(fe,Lr,tn)}return fe}function dc(w,F){return Xu(w,is(w),F)}function hc(w,F){return Xu(w,Io(w),F)}function al(w,F){return function(fe,Fe){var vt=ma(fe)?zs:Fs,er=F?F():{};return vt(fe,w,pn(Fe,2),er)}}function sl(w){return Ta(function(F,fe){var Fe=-1,vt=fe.length,er=vt>1?fe[vt-1]:i,xr=vt>2?fe[2]:i;for(er=w.length>3&&typeof er=="function"?(vt--,er):i,xr&&_o(fe[0],fe[1],xr)&&(er=vt<3?i:er,vt=1),F=Hn(F);++Fe<vt;){var Lr=fe[Fe];Lr&&w(F,Lr,Fe,er)}return F})}function Mu(w,F){return function(fe,Fe){if(fe==null)return fe;if(!lu(fe))return w(fe,Fe);for(var vt=fe.length,er=F?vt:-1,xr=Hn(fe);(F?er--:++er<vt)&&Fe(xr[er],er,xr)!==!1;);return fe}}function yf(w){return function(F,fe,Fe){for(var vt=-1,er=Hn(F),xr=Fe(F),Lr=xr.length;Lr--;){var tn=xr[w?Lr:++vt];if(fe(er[tn],tn,er)===!1)break}return F}}function pc(w,F,fe){var Fe=F&k,vt=Fu(w);function er(){var xr=this&&this!==Ba&&this instanceof er?vt:w;return xr.apply(Fe?fe:this,arguments)}return er}function Tu(w){return function(F){F=Po(F);var fe=Bo(F)?vr(F):i,Fe=fe?fe[0]:F.charAt(0),vt=fe?Co(fe,1).join(""):F.slice(1);return Fe[w]()+vt}}function yl(w){return function(F){return Ni(t0(e0(F).replace(Qn,"")),w,"")}}function Fu(w){return function(){var F=arguments;switch(F.length){case 0:return new w;case 1:return new w(F[0]);case 2:return new w(F[0],F[1]);case 3:return new w(F[0],F[1],F[2]);case 4:return new w(F[0],F[1],F[2],F[3]);case 5:return new w(F[0],F[1],F[2],F[3],F[4]);case 6:return new w(F[0],F[1],F[2],F[3],F[4],F[5]);case 7:return new w(F[0],F[1],F[2],F[3],F[4],F[5],F[6])}var fe=Pa(w.prototype),Fe=w.apply(fe,F);return $o(Fe)?Fe:fe}}function $f(w,F,fe){var Fe=Fu(w);function vt(){for(var er=arguments.length,xr=Br(er),Lr=er,tn=Pn(vt);Lr--;)xr[Lr]=arguments[Lr];var Bn=er<3&&xr[0]!==tn&&xr[er-1]!==tn?[]:No(xr,tn);if(er-=Bn.length,er<fe)return Xl(w,F,Ml,vt.placeholder,i,xr,Bn,i,i,fe-er);var Nn=this&&this!==Ba&&this instanceof vt?Fe:w;return Na(Nn,this,xr)}return vt}function qc(w){return function(F,fe,Fe){var vt=Hn(F);if(!lu(F)){var er=pn(fe,3);F=fl(F),fe=function(Lr){return er(vt[Lr],Lr,vt)}}var xr=w(F,fe,Fe);return xr>-1?vt[er?F[xr]:xr]:i}}function Vo(w){return O(function(F){var fe=F.length,Fe=fe,vt=_n.prototype.thru;for(w&&F.reverse();Fe--;){var er=F[Fe];if(typeof er!="function")throw new gi(o);if(vt&&!xr&&dn(er)=="wrapper")var xr=new _n([],!0)}for(Fe=xr?Fe:fe;++Fe<fe;){er=F[Fe];var Lr=dn(er),tn=Lr=="wrapper"?Oe(er):i;tn&&ec(tn[0])&&tn[1]==(K|P|B|H)&&!tn[4].length&&tn[9]==1?xr=xr[dn(tn[0])].apply(xr,tn[3]):xr=er.length==1&&ec(er)?xr[Lr]():xr.thru(er)}return function(){var Bn=arguments,Nn=Bn[0];if(xr&&Bn.length==1&&ma(Nn))return xr.plant(Nn).value();for(var Vn=0,Ri=fe?F[Vn].apply(this,Bn):Nn;++Vn<fe;)Ri=F[Vn].call(this,Ri);return Ri}})}function Ml(w,F,fe,Fe,vt,er,xr,Lr,tn,Bn){var Nn=F&K,Vn=F&k,Ri=F&R,ga=F&(P|M),za=F&W,Cs=Ri?i:Fu(w);function Za(){for(var Vs=arguments.length,eo=Br(Vs),wc=Vs;wc--;)eo[wc]=arguments[wc];if(ga)var $l=Pn(Za),Sc=dl(eo,$l);if(Fe&&(eo=Au(eo,Fe,vt,ga)),er&&(eo=fc(eo,er,xr,ga)),Vs-=Sc,ga&&Vs<Bn){var ju=No(eo,$l);return Xl(w,F,Ml,Za.placeholder,fe,eo,ju,Lr,tn,Bn-Vs)}var hf=Vn?fe:this,Uf=Ri?hf[w]:w;return Vs=eo.length,Lr?eo=tc(eo,Lr):za&&Vs>1&&eo.reverse(),Nn&&tn<Vs&&(eo.length=tn),this&&this!==Ba&&this instanceof Za&&(Uf=Cs||Fu(Uf)),Uf.apply(hf,eo)}return Za}function Rc(w,F){return function(fe,Fe){return Gl(fe,w,F(Fe),{})}}function mc(w,F){return function(fe,Fe){var vt;if(fe===i&&Fe===i)return F;if(fe!==i&&(vt=fe),Fe!==i){if(vt===i)return Fe;typeof fe=="string"||typeof Fe=="string"?(fe=Ru(fe),Fe=Ru(Fe)):(fe=Pc(fe),Fe=Pc(Fe)),vt=w(fe,Fe)}return vt}}function _c(w){return O(function(F){return F=Qi(F,ks(pn())),Ta(function(fe){var Fe=this;return w(F,function(vt){return Na(vt,Fe,fe)})})})}function vc(w,F){F=F===i?" ":Ru(F);var fe=F.length;if(fe<2)return fe?Rl(F,w):F;var Fe=Rl(F,yi(w/dr(F)));return Bo(F)?Co(vr(Fe),0,w).join(""):Fe.slice(0,w)}function gc(w,F,fe,Fe){var vt=F&k,er=Fu(w);function xr(){for(var Lr=-1,tn=arguments.length,Bn=-1,Nn=Fe.length,Vn=Br(Nn+tn),Ri=this&&this!==Ba&&this instanceof xr?er:w;++Bn<Nn;)Vn[Bn]=Fe[Bn];for(;tn--;)Vn[Bn++]=arguments[++Lr];return Na(Ri,vt?fe:this,Vn)}return xr}function Rf(w){return function(F,fe,Fe){return Fe&&typeof Fe!="number"&&_o(F,fe,Fe)&&(fe=Fe=i),F=jf(F),fe===i?(fe=F,F=0):fe=jf(fe),Fe=Fe===i?F<fe?1:-1:jf(Fe),Tc(F,fe,Fe,w)}}function Lc(w){return function(F,fe){return typeof F=="string"&&typeof fe=="string"||(F=Wc(F),fe=Wc(fe)),w(F,fe)}}function Xl(w,F,fe,Fe,vt,er,xr,Lr,tn,Bn){var Nn=F&P,Vn=Nn?xr:i,Ri=Nn?i:xr,ga=Nn?er:i,za=Nn?i:er;F|=Nn?B:N,F&=~(Nn?N:B),F&A||(F&=~(k|R));var Cs=[w,F,vt,ga,Vn,za,Ri,Lr,tn,Bn],Za=fe.apply(i,Cs);return ec(w)&&Wu(Za,Cs),Za.placeholder=Fe,Mn(Za,w,F)}function Jl(w){var F=wi[w];return function(fe,Fe){if(fe=Wc(fe),Fe=Fe==null?0:ca(As(Fe),292),Fe&&Ci(fe)){var vt=(Po(fe)+"e").split("e"),er=F(vt[0]+"e"+(+vt[1]+Fe));return vt=(Po(er)+"e").split("e"),+(vt[0]+"e"+(+vt[1]-Fe))}return F(fe)}}var bf=rs&&1/gu(new rs([,-0]))[1]==ee?function(w){return new rs(w)}:jd;function ef(w){return function(F){var fe=Gs(F);return fe==$e?iu(F):fe==Ne?Ko(F):ms(F,w(F))}}function ol(w,F,fe,Fe,vt,er,xr,Lr){var tn=F&R;if(!tn&&typeof w!="function")throw new gi(o);var Bn=Fe?Fe.length:0;if(Bn||(F&=~(B|N),Fe=vt=i),xr=xr===i?xr:pi(As(xr),0),Lr=Lr===i?Lr:As(Lr),Bn-=vt?vt.length:0,F&N){var Nn=Fe,Vn=vt;Fe=vt=i}var Ri=tn?i:Oe(w),ga=[w,F,fe,Fe,vt,Nn,Vn,er,xr,Lr];if(Ri&&nf(ga,Ri),w=ga[0],F=ga[1],fe=ga[2],Fe=ga[3],vt=ga[4],Lr=ga[9]=ga[9]===i?tn?0:w.length:pi(ga[9]-Bn,0),!Lr&&F&(P|M)&&(F&=~(P|M)),!F||F==k)var za=pc(w,F,fe);else F==P||F==M?za=$f(w,F,Lr):(F==B||F==(k|B))&&!vt.length?za=gc(w,F,fe,Fe):za=Ml.apply(i,ga);var Cs=Ri?Qc:Wu;return Mn(Cs(za,ga),w,F)}function yc(w,F,fe,Fe){return w===i||bs(w,Sa[fe])&&!sn.call(Fe,fe)?F:w}function bc(w,F,fe,Fe,vt,er){return $o(w)&&$o(F)&&(er.set(F,w),ru(w,F,i,bc,er),er.delete(F)),w}function Mc(w){return dd(w)?i:w}function Fc(w,F,fe,Fe,vt,er){var xr=fe&b,Lr=w.length,tn=F.length;if(Lr!=tn&&!(xr&&tn>Lr))return!1;var Bn=er.get(w),Nn=er.get(F);if(Bn&&Nn)return Bn==F&&Nn==w;var Vn=-1,Ri=!0,ga=fe&S?new we:i;for(er.set(w,F),er.set(F,w);++Vn<Lr;){var za=w[Vn],Cs=F[Vn];if(Fe)var Za=xr?Fe(Cs,za,Vn,F,w,er):Fe(za,Cs,Vn,w,F,er);if(Za!==i){if(Za)continue;Ri=!1;break}if(ga){if(!xo(F,function(Vs,eo){if(!Eu(ga,eo)&&(za===Vs||vt(za,Vs,fe,Fe,er)))return ga.push(eo)})){Ri=!1;break}}else if(!(za===Cs||vt(za,Cs,fe,Fe,er))){Ri=!1;break}}return er.delete(w),er.delete(F),Ri}function xf(w,F,fe,Fe,vt,er,xr){switch(fe){case pt:if(w.byteLength!=F.byteLength||w.byteOffset!=F.byteOffset)return!1;w=w.buffer,F=F.buffer;case ut:return!(w.byteLength!=F.byteLength||!er(new os(w),new os(F)));case Dt:case ht:case gt:return bs(+w,+F);case Zt:return w.name==F.name&&w.message==F.message;case Je:case ye:return w==F+"";case $e:var Lr=iu;case Ne:var tn=Fe&b;if(Lr||(Lr=gu),w.size!=F.size&&!tn)return!1;var Bn=xr.get(w);if(Bn)return Bn==F;Fe|=S,xr.set(w,F);var Nn=Fc(Lr(w),Lr(F),Fe,vt,er,xr);return xr.delete(w),Nn;case ke:if(Va)return Va.call(w)==Va.call(F)}return!1}function C(w,F,fe,Fe,vt,er){var xr=fe&b,Lr=L(w),tn=Lr.length,Bn=L(F),Nn=Bn.length;if(tn!=Nn&&!xr)return!1;for(var Vn=tn;Vn--;){var Ri=Lr[Vn];if(!(xr?Ri in F:sn.call(F,Ri)))return!1}var ga=er.get(w),za=er.get(F);if(ga&&za)return ga==F&&za==w;var Cs=!0;er.set(w,F),er.set(F,w);for(var Za=xr;++Vn<tn;){Ri=Lr[Vn];var Vs=w[Ri],eo=F[Ri];if(Fe)var wc=xr?Fe(eo,Vs,Ri,F,w,er):Fe(Vs,eo,Ri,w,F,er);if(!(wc===i?Vs===eo||vt(Vs,eo,fe,Fe,er):wc)){Cs=!1;break}Za||(Za=Ri=="constructor")}if(Cs&&!Za){var $l=w.constructor,Sc=F.constructor;$l!=Sc&&"constructor"in w&&"constructor"in F&&!(typeof $l=="function"&&$l instanceof $l&&typeof Sc=="function"&&Sc instanceof Sc)&&(Cs=!1)}return er.delete(w),er.delete(F),Cs}function O(w){return Iu(Nu(w,i,of),w+"")}function L(w){return Zl(w,fl,is)}function _e(w){return Zl(w,ac,Io)}var Oe=xs?function(w){return xs.get(w)}:jd;function dn(w){for(var F=w.name+"",fe=pa[F],Fe=sn.call(pa,F)?fe.length:0;Fe--;){var vt=fe[Fe],er=vt.func;if(er==null||er==w)return vt.name}return F}function Pn(w){var F=sn.call(kt,"placeholder")?kt:w;return F.placeholder}function pn(){var w=kt.iteratee||Bd;return w=w===Bd?lc:w,arguments.length?w(arguments[0],arguments[1]):w}function Mi(w,F){var fe=w.__data__;return bl(F)?fe[typeof F=="string"?"string":"hash"]:fe.map}function ds(w){for(var F=fl(w),fe=F.length;fe--;){var Fe=F[fe],vt=w[Fe];F[fe]=[Fe,vt,Ef(vt)]}return F}function Ga(w,F){var fe=Hu(w,F);return Gc(fe)?fe:i}function Yo(w){var F=sn.call(w,xn),fe=w[xn];try{w[xn]=i;var Fe=!0}catch(er){}var vt=Rs.call(w);return Fe&&(F?w[xn]=fe:delete w[xn]),vt}var is=na?function(w){return w==null?[]:(w=Hn(w),ss(na(w),function(F){return _t.call(w,F)}))}:Ud,Io=na?function(w){for(var F=[];w;)Ka(F,is(w)),w=Pe(w);return F}:Ud,Gs=So;(ya&&Gs(new ya(new ArrayBuffer(1)))!=pt||_s&&Gs(new _s)!=$e||La&&Gs(La.resolve())!=ft||rs&&Gs(new rs)!=Ne||Ls&&Gs(new Ls)!=We)&&(Gs=function(w){var F=So(w),fe=F==et?w.constructor:i,Fe=fe?wa(fe):"";if(Fe)switch(Fe){case Ms:return pt;case jo:return $e;case qs:return ft;case Ha:return Ne;case us:return We}return F});function tf(w,F,fe){for(var Fe=-1,vt=fe.length;++Fe<vt;){var er=fe[Fe],xr=er.size;switch(er.type){case"drop":w+=xr;break;case"dropRight":F-=xr;break;case"take":F=ca(F,w+xr);break;case"takeRight":w=pi(w,F-xr);break}}return{start:w,end:F}}function ql(w){var F=w.match(qr);return F?F[1].split(an):[]}function Bc(w,F,fe){F=gl(F,w);for(var Fe=-1,vt=F.length,er=!1;++Fe<vt;){var xr=sa(F[Fe]);if(!(er=w!=null&&fe(w,xr)))break;w=w[xr]}return er||++Fe!=vt?er:(vt=w==null?0:w.length,!!vt&&Xf(vt)&&su(xr,vt)&&(ma(w)||pu(w)))}function rf(w){var F=w.length,fe=new w.constructor(F);return F&&typeof w[0]=="string"&&sn.call(w,"index")&&(fe.index=w.index,fe.input=w.input),fe}function Ju(w){return typeof w.constructor=="function"&&!Cl(w)?Pa(Pe(w)):{}}function Ti(w,F,fe){var Fe=w.constructor;switch(F){case ut:return kc(w);case Dt:case ht:return new Fe(+w);case pt:return Yu(w,fe);case or:case tr:case Me:case tt:case Yt:case Ot:case zt:case Ht:case lr:return Lu(w,fe);case $e:return new Fe;case gt:case ye:return new Fe(w);case Je:return Xs(w);case Ne:return new Fe;case ke:return bo(w)}}function Tl(w,F){var fe=F.length;if(!fe)return w;var Fe=fe-1;return F[Fe]=(fe>1?"& ":"")+F[Fe],F=F.join(fe>2?", ":" "),w.replace(mt,`{
/* [wrapped with `+F+`] */
`)}function Nc(w){return ma(w)||pu(w)||!!(Mr&&w&&w[Mr])}function su(w,F){var fe=typeof w;return F=F==null?J:F,!!F&&(fe=="number"||fe!="symbol"&&Jt.test(w))&&w>-1&&w%1==0&&w<F}function _o(w,F,fe){if(!$o(fe))return!1;var Fe=typeof F;return(Fe=="number"?lu(fe)&&su(F,fe.length):Fe=="string"&&F in fe)?bs(fe[F],w):!1}function gs(w,F){if(ma(w))return!1;var fe=typeof w;return fe=="number"||fe=="symbol"||fe=="boolean"||w==null||Ec(w)?!0:ze.test(w)||!yt.test(w)||F!=null&&w in Hn(F)}function bl(w){var F=typeof w;return F=="string"||F=="number"||F=="symbol"||F=="boolean"?w!=="__proto__":w===null}function ec(w){var F=dn(w),fe=kt[F];if(typeof fe!="function"||!(F in En.prototype))return!1;if(w===fe)return!0;var Fe=Oe(fe);return!!Fe&&w===Fe[0]}function xl(w){return!!lo&&lo in w}var Fl=Ra?Ol:$d;function Cl(w){var F=w&&w.constructor,fe=typeof F=="function"&&F.prototype||Sa;return w===fe}function Ef(w){return w===w&&!$o(w)}function Bu(w,F){return function(fe){return fe==null?!1:fe[w]===F&&(F!==i||w in Hn(fe))}}function Bl(w){var F=mn(w,function(Fe){return fe.size===a&&fe.clear(),Fe}),fe=F.cache;return F}function nf(w,F){var fe=w[1],Fe=F[1],vt=fe|Fe,er=vt<(k|R|K),xr=Fe==K&&fe==P||Fe==K&&fe==H&&w[7].length<=F[8]||Fe==(K|H)&&F[7].length<=F[8]&&fe==P;if(!(er||xr))return w;Fe&k&&(w[2]=F[2],vt|=fe&k?0:A);var Lr=F[3];if(Lr){var tn=w[3];w[3]=tn?Au(tn,Lr,F[4]):Lr,w[4]=tn?No(w[3],x):F[4]}return Lr=F[5],Lr&&(tn=w[5],w[5]=tn?fc(tn,Lr,F[6]):Lr,w[6]=tn?No(w[5],x):F[6]),Lr=F[7],Lr&&(w[7]=Lr),Fe&K&&(w[8]=w[8]==null?F[8]:ca(w[8],F[8])),w[9]==null&&(w[9]=F[9]),w[0]=F[0],w[1]=vt,w}function Nl(w){var F=[];if(w!=null)for(var fe in Hn(w))F.push(fe);return F}function wf(w){return Rs.call(w)}function Nu(w,F,fe){return F=pi(F===i?w.length-1:F,0),function(){for(var Fe=arguments,vt=-1,er=pi(Fe.length-F,0),xr=Br(er);++vt<er;)xr[vt]=Fe[F+vt];vt=-1;for(var Lr=Br(F+1);++vt<F;)Lr[vt]=Fe[vt];return Lr[F]=fe(xr),Na(w,this,Lr)}}function Il(w,F){return F.length<2?w:bu(w,ku(F,0,-1))}function tc(w,F){for(var fe=w.length,Fe=ca(F.length,fe),vt=hu(w);Fe--;){var er=F[Fe];w[Fe]=su(er,fe)?vt[er]:i}return w}function jc(w,F){if(!(F==="constructor"&&typeof w[F]=="function")&&F!="__proto__")return w[F]}var Wu=ti(Qc),Cu=ni||function(w,F){return Ba.setTimeout(w,F)},Iu=ti(Df);function Mn(w,F,fe){var Fe=F+"";return Iu(w,Tl(Fe,va(ql(Fe),fe)))}function ti(w){var F=0,fe=0;return function(){var Fe=Eo(),vt=q-(Fe-fe);if(fe=Fe,vt>0){if(++F>=oe)return arguments[0]}else F=0;return w.apply(i,arguments)}}function Gi(w,F){var fe=-1,Fe=w.length,vt=Fe-1;for(F=F===i?Fe:F;++fe<F;){var er=Vu(fe,vt),xr=w[er];w[er]=w[fe],w[fe]=xr}return w.length=F,w}var Ma=Bl(function(w){var F=[];return w.charCodeAt(0)===46&&F.push(""),w.replace(xe,function(fe,Fe,vt,er){F.push(vt?er.replace(Lt,"$1"):Fe||fe)}),F});function sa(w){if(typeof w=="string"||Ec(w))return w;var F=w+"";return F=="0"&&1/w==-ee?"-0":F}function wa(w){if(w!=null){try{return Ys.call(w)}catch(F){}try{return w+""}catch(F){}}return""}function va(w,F){return di(Se,function(fe){var Fe="_."+fe[0];F&fe[1]&&!Ps(w,Fe)&&w.push(Fe)}),w.sort()}function Bs(w){if(w instanceof En)return w.clone();var F=new _n(w.__wrapped__,w.__chain__);return F.__actions__=hu(w.__actions__),F.__index__=w.__index__,F.__values__=w.__values__,F}function oa(w,F,fe){(fe?_o(w,F,fe):F===i)?F=1:F=pi(As(F),0);var Fe=w==null?0:w.length;if(!Fe||F<1)return[];for(var vt=0,er=0,xr=Br(yi(Fe/F));vt<Fe;)xr[er++]=ku(w,vt,vt+=F);return xr}function Us(w){for(var F=-1,fe=w==null?0:w.length,Fe=0,vt=[];++F<fe;){var er=w[F];er&&(vt[Fe++]=er)}return vt}function qu(){var w=arguments.length;if(!w)return[];for(var F=Br(w-1),fe=arguments[0],Fe=w;Fe--;)F[Fe-1]=arguments[Fe];return Ka(ma(fe)?hu(fe):[fe],Hs(F,1))}var ul=Ta(function(w,F){return Lo(w)?Ws(w,Hs(F,1,Lo,!0)):[]}),El=Ta(function(w,F){var fe=uu(F);return Lo(fe)&&(fe=i),Lo(w)?Ws(w,Hs(F,1,Lo,!0),pn(fe,2)):[]}),el=Ta(function(w,F){var fe=uu(F);return Lo(fe)&&(fe=i),Lo(w)?Ws(w,Hs(F,1,Lo,!0),i,fe):[]});function jl(w,F,fe){var Fe=w==null?0:w.length;return Fe?(F=fe||F===i?1:As(F),ku(w,F<0?0:F,Fe)):[]}function Kf(w,F,fe){var Fe=w==null?0:w.length;return Fe?(F=fe||F===i?1:As(F),F=Fe-F,ku(w,0,F<0?0:F)):[]}function Sf(w,F){return w&&w.length?Xc(w,pn(F,3),!0,!0):[]}function rc(w,F){return w&&w.length?Xc(w,pn(F,3),!0):[]}function Lf(w,F,fe,Fe){var vt=w==null?0:w.length;return vt?(fe&&typeof fe!="number"&&_o(w,F,fe)&&(fe=0,Fe=vt),Sl(w,F,fe,Fe)):[]}function af(w,F,fe){var Fe=w==null?0:w.length;if(!Fe)return-1;var vt=fe==null?0:As(fe);return vt<0&&(vt=pi(Fe+vt,0)),vo(w,pn(F,3),vt)}function sf(w,F,fe){var Fe=w==null?0:w.length;if(!Fe)return-1;var vt=Fe-1;return fe!==i&&(vt=As(fe),vt=fe<0?pi(Fe+vt,0):ca(vt,Fe-1)),vo(w,pn(F,3),vt,!0)}function of(w){var F=w==null?0:w.length;return F?Hs(w,1):[]}function tl(w){var F=w==null?0:w.length;return F?Hs(w,ee):[]}function Vf(w,F){var fe=w==null?0:w.length;return fe?(F=F===i?1:As(F),Hs(w,F)):[]}function ll(w){for(var F=-1,fe=w==null?0:w.length,Fe={};++F<fe;){var vt=w[F];Fe[vt[0]]=vt[1]}return Fe}function uf(w){return w&&w.length?w[0]:i}function Mf(w,F,fe){var Fe=w==null?0:w.length;if(!Fe)return-1;var vt=fe==null?0:As(fe);return vt<0&&(vt=pi(Fe+vt,0)),Wo(w,F,vt)}function ou(w){var F=w==null?0:w.length;return F?ku(w,0,-1):[]}var Af=Ta(function(w){var F=Qi(w,Dc);return F.length&&F[0]===w[0]?Hl(F):[]}),lf=Ta(function(w){var F=uu(w),fe=Qi(w,Dc);return F===uu(fe)?F=i:fe.pop(),fe.length&&fe[0]===w[0]?Hl(fe,pn(F,2)):[]}),Pl=Ta(function(w){var F=uu(w),fe=Qi(w,Dc);return F=typeof F=="function"?F:i,F&&fe.pop(),fe.length&&fe[0]===w[0]?Hl(fe,i,F):[]});function Uc(w,F){return w==null?"":Ia.call(w,F)}function uu(w){var F=w==null?0:w.length;return F?w[F-1]:i}function Tf(w,F,fe){var Fe=w==null?0:w.length;if(!Fe)return-1;var vt=Fe;return fe!==i&&(vt=As(fe),vt=vt<0?pi(Fe+vt,0):ca(vt,Fe-1)),F===F?gr(w,F,vt):vo(w,nu,vt,!0)}function Cf(w,F){return w&&w.length?Yl(w,As(F)):i}var cf=Ta($c);function $c(w,F){return w&&w.length&&F&&F.length?Du(w,F):w}function Ff(w,F,fe){return w&&w.length&&F&&F.length?Du(w,F,pn(fe,2)):w}function zc(w,F,fe){return w&&w.length&&F&&F.length?Du(w,F,i,fe):w}var zf=O(function(w,F){var fe=w==null?0:w.length,Fe=fo(w,F);return xu(w,Qi(F,function(vt){return su(vt,fe)?+vt:vt}).sort(Ue)),Fe});function Yf(w,F){var fe=[];if(!(w&&w.length))return fe;var Fe=-1,vt=[],er=w.length;for(F=pn(F,3);++Fe<er;){var xr=w[Fe];F(xr,Fe,w)&&(fe.push(xr),vt.push(Fe))}return xu(w,vt),fe}function Bf(w){return w==null?w:fs.call(w)}function Qf(w,F,fe){var Fe=w==null?0:w.length;return Fe?(fe&&typeof fe!="number"&&_o(w,F,fe)?(F=0,fe=Fe):(F=F==null?0:As(F),fe=fe===i?Fe:As(fe)),ku(w,F,fe)):[]}function Zf(w,F){return Ic(w,F)}function ff(w,F,fe){return Ql(w,F,pn(fe,2))}function id(w,F){var fe=w==null?0:w.length;if(fe){var Fe=Ic(w,F);if(Fe<fe&&bs(w[Fe],F))return Fe}return-1}function Wf(w,F){return Ic(w,F,!0)}function Nf(w,F,fe){return Ql(w,F,pn(fe,2),!0)}function ad(w,F){var fe=w==null?0:w.length;if(fe){var Fe=Ic(w,F,!0)-1;if(bs(w[Fe],F))return Fe}return-1}function If(w){return w&&w.length?vf(w):[]}function qf(w,F){return w&&w.length?vf(w,pn(F,2)):[]}function Hf(w){var F=w==null?0:w.length;return F?ku(w,1,F):[]}function g(w,F,fe){return w&&w.length?(F=fe||F===i?1:As(F),ku(w,0,F<0?0:F)):[]}function T(w,F,fe){var Fe=w==null?0:w.length;return Fe?(F=fe||F===i?1:As(F),F=Fe-F,ku(w,F<0?0:F,Fe)):[]}function $(w,F){return w&&w.length?Xc(w,pn(F,3),!1,!0):[]}function ve(w,F){return w&&w.length?Xc(w,pn(F,3)):[]}var De=Ta(function(w){return _l(Hs(w,1,Lo,!0))}),rt=Ta(function(w){var F=uu(w);return Lo(F)&&(F=i),_l(Hs(w,1,Lo,!0),pn(F,2))}),Ut=Ta(function(w){var F=uu(w);return F=typeof F=="function"?F:i,_l(Hs(w,1,Lo,!0),i,F)});function fr(w){return w&&w.length?_l(w):[]}function Dr(w,F){return w&&w.length?_l(w,pn(F,2)):[]}function vn(w,F){return F=typeof F=="function"?F:i,w&&w.length?_l(w,i,F):[]}function Pi(w){if(!(w&&w.length))return[];var F=0;return w=ss(w,function(fe){if(Lo(fe))return F=pi(fe.length,F),!0}),Wa(F,function(fe){return Qi(w,hi(fe))})}function Ua(w,F){if(!(w&&w.length))return[];var fe=Pi(w);return F==null?fe:Qi(fe,function(Fe){return Na(F,i,Fe)})}var Kn=Ta(function(w,F){return Lo(w)?Ws(w,F):[]}),la=Ta(function(w){return cc(ss(w,Lo))}),$a=Ta(function(w){var F=uu(w);return Lo(F)&&(F=i),cc(ss(w,Lo),pn(F,2))}),ka=Ta(function(w){var F=uu(w);return F=typeof F=="function"?F:i,cc(ss(w,Lo),i,F)}),nn=Ta(Pi);function jr(w,F){return To(w||[],F||[],ba)}function rn(w,F){return To(w||[],F||[],ml)}var On=Ta(function(w){var F=w.length,fe=F>1?w[F-1]:i;return fe=typeof fe=="function"?(w.pop(),fe):i,Ua(w,fe)});function Un(w){var F=kt(w);return F.__chain__=!0,F}function Ya(w,F){return F(w),w}function Ui(w,F){return F(w)}var Qa=O(function(w){var F=w.length,fe=F?w[0]:0,Fe=this.__wrapped__,vt=function(er){return fo(er,w)};return F>1||this.__actions__.length||!(Fe instanceof En)||!su(fe)?this.thru(vt):(Fe=Fe.slice(fe,+fe+(F?1:0)),Fe.__actions__.push({func:Ui,args:[vt],thisArg:i}),new _n(Fe,this.__chain__).thru(function(er){return F&&!er.length&&er.push(i),er}))});function hs(){return Un(this)}function Ja(){return new _n(this.value(),this.__chain__)}function Ul(){this.__values__===i&&(this.__values__=Hd(this.value()));var w=this.__index__>=this.__values__.length,F=w?i:this.__values__[this.__index__++];return{done:w,value:F}}function sd(){return this}function od(w){for(var F,fe=this;fe instanceof Zs;){var Fe=Bs(fe);Fe.__index__=0,Fe.__values__=i,F?vt.__wrapped__=Fe:F=Fe;var vt=Fe;fe=fe.__wrapped__}return vt.__wrapped__=w,F}function ud(){var w=this.__wrapped__;if(w instanceof En){var F=w;return this.__actions__.length&&(F=new En(this)),F=F.reverse(),F.__actions__.push({func:Ui,args:[Bf],thisArg:i}),new _n(F,this.__chain__)}return this.thru(Bf)}function ed(){return gf(this.__wrapped__,this.__actions__)}var Sd=al(function(w,F,fe){sn.call(w,fe)?++w[fe]:Oa(w,fe,1)});function Ad(w,F,fe){var Fe=ma(w)?Rn:oc;return fe&&_o(w,F,fe)&&(F=i),Fe(w,pn(F,3))}function Td(w,F){var fe=ma(w)?ss:nl;return fe(w,pn(F,3))}var hd=qc(af),pd=qc(sf);function md(w,F){return Hs(td(w,F),1)}function Cd(w,F){return Hs(td(w,F),ee)}function Id(w,F,fe){return fe=fe===i?1:As(fe),Hs(td(w,F),fe)}function _d(w,F){var fe=ma(w)?di:qo;return fe(w,pn(F,3))}function vd(w,F){var fe=ma(w)?ro:yo;return fe(w,pn(F,3))}var Pd=al(function(w,F,fe){sn.call(w,fe)?w[fe].push(F):Oa(w,fe,[F])});function ld(w,F,fe,Fe){w=lu(w)?w:nd(w),fe=fe&&!Fe?As(fe):0;var vt=w.length;return fe<0&&(fe=pi(vt+fe,0)),Ed(w)?fe<=vt&&w.indexOf(F,fe)>-1:!!vt&&Wo(w,F,fe)>-1}var gd=Ta(function(w,F,fe){var Fe=-1,vt=typeof F=="function",er=lu(w)?Br(w.length):[];return qo(w,function(xr){er[++Fe]=vt?Na(F,xr,fe):li(xr,F,fe)}),er}),cd=al(function(w,F,fe){Oa(w,fe,F)});function td(w,F){var fe=ma(w)?Qi:Ou;return fe(w,pn(F,3))}function Pf(w,F,fe,Fe){return w==null?[]:(ma(F)||(F=F==null?[]:[F]),fe=Fe?i:fe,ma(fe)||(fe=fe==null?[]:[fe]),Al(w,F,fe))}var D=al(function(w,F,fe){w[fe?0:1].push(F)},function(){return[[],[]]});function t(w,F,fe){var Fe=ma(w)?Ni:qa,vt=arguments.length<3;return Fe(w,pn(F,4),fe,vt,qo)}function n(w,F,fe){var Fe=ma(w)?Ds:qa,vt=arguments.length<3;return Fe(w,pn(F,4),fe,vt,yo)}function s(w,F){var fe=ma(w)?ss:nl;return fe(w,zr(pn(F,3)))}function _(w){var F=ma(w)?qn:mf;return F(w)}function E(w,F,fe){(fe?_o(w,F,fe):F===i)?F=1:F=As(F);var Fe=ma(w)?Di:Yc;return Fe(w,F)}function I(w){var F=ma(w)?Fi:Cc;return F(w)}function U(w){if(w==null)return 0;if(lu(w))return Ed(w)?dr(w):w.length;var F=Gs(w);return F==$e||F==Ne?w.size:Dl(w).length}function Q(w,F,fe){var Fe=ma(w)?xo:_f;return fe&&_o(w,F,fe)&&(F=i),Fe(w,pn(F,3))}var G=Ta(function(w,F){if(w==null)return[];var fe=F.length;return fe>1&&_o(w,F[0],F[1])?F=[]:fe>2&&_o(F[0],F[1],F[2])&&(F=[F[0]]),Al(w,Hs(F,1),[])}),ue=ri||function(){return Ba.Date.now()};function de(w,F){if(typeof F!="function")throw new gi(o);return w=As(w),function(){if(--w<1)return F.apply(this,arguments)}}function be(w,F,fe){return F=fe?i:F,F=w&&F==null?w.length:F,ol(w,K,i,i,i,i,F)}function Re(w,F){var fe;if(typeof F!="function")throw new gi(o);return w=As(w),function(){return--w>0&&(fe=F.apply(this,arguments)),w<=1&&(F=i),fe}}var Le=Ta(function(w,F,fe){var Fe=k;if(fe.length){var vt=No(fe,Pn(Le));Fe|=B}return ol(w,Fe,F,fe,vt)}),at=Ta(function(w,F,fe){var Fe=k|R;if(fe.length){var vt=No(fe,Pn(at));Fe|=B}return ol(F,Fe,w,fe,vt)});function it(w,F,fe){F=fe?i:F;var Fe=ol(w,P,i,i,i,i,i,F);return Fe.placeholder=it.placeholder,Fe}function Qt(w,F,fe){F=fe?i:F;var Fe=ol(w,M,i,i,i,i,i,F);return Fe.placeholder=Qt.placeholder,Fe}function ir(w,F,fe){var Fe,vt,er,xr,Lr,tn,Bn=0,Nn=!1,Vn=!1,Ri=!0;if(typeof w!="function")throw new gi(o);F=Wc(F)||0,$o(fe)&&(Nn=!!fe.leading,Vn="maxWait"in fe,er=Vn?pi(Wc(fe.maxWait)||0,F):er,Ri="trailing"in fe?!!fe.trailing:Ri);function ga(ju){var hf=Fe,Uf=vt;return Fe=vt=i,Bn=ju,xr=w.apply(Uf,hf),xr}function za(ju){return Bn=ju,Lr=Cu(Vs,F),Nn?ga(ju):xr}function Cs(ju){var hf=ju-tn,Uf=ju-Bn,i0=F-hf;return Vn?ca(i0,er-Uf):i0}function Za(ju){var hf=ju-tn,Uf=ju-Bn;return tn===i||hf>=F||hf<0||Vn&&Uf>=er}function Vs(){var ju=ue();if(Za(ju))return eo(ju);Lr=Cu(Vs,Cs(ju))}function eo(ju){return Lr=i,Ri&&Fe?ga(ju):(Fe=vt=i,xr)}function wc(){Lr!==i&&Ll(Lr),Bn=0,Fe=tn=vt=Lr=i}function $l(){return Lr===i?xr:eo(ue())}function Sc(){var ju=ue(),hf=Za(ju);if(Fe=arguments,vt=this,tn=ju,hf){if(Lr===i)return za(tn);if(Vn)return Ll(Lr),Lr=Cu(Vs,F),ga(tn)}return Lr===i&&(Lr=Cu(Vs,F)),xr}return Sc.cancel=wc,Sc.flush=$l,Sc}var ur=Ta(function(w,F){return Su(w,1,F)}),Ar=Ta(function(w,F,fe){return Su(w,Wc(F)||0,fe)});function Ur(w){return ol(w,W)}function mn(w,F){if(typeof w!="function"||F!=null&&typeof F!="function")throw new gi(o);var fe=function(){var Fe=arguments,vt=F?F.apply(this,Fe):Fe[0],er=fe.cache;if(er.has(vt))return er.get(vt);var xr=w.apply(this,Fe);return fe.cache=er.set(vt,xr)||er,xr};return fe.cache=new(mn.Cache||yu),fe}mn.Cache=yu;function zr(w){if(typeof w!="function")throw new gi(o);return function(){var F=arguments;switch(F.length){case 0:return!w.call(this);case 1:return!w.call(this,F[0]);case 2:return!w.call(this,F[0],F[1]);case 3:return!w.call(this,F[0],F[1],F[2])}return!w.apply(this,F)}}function ln(w){return Re(2,w)}var on=Zu(function(w,F){F=F.length==1&&ma(F[0])?Qi(F[0],ks(pn())):Qi(Hs(F,1),ks(pn()));var fe=F.length;return Ta(function(Fe){for(var vt=-1,er=ca(Fe.length,fe);++vt<er;)Fe[vt]=F[vt].call(this,Fe[vt]);return Na(w,this,Fe)})}),Qr=Ta(function(w,F){var fe=No(F,Pn(Qr));return ol(w,B,i,F,fe)}),Dn=Ta(function(w,F){var fe=No(F,Pn(Dn));return ol(w,N,i,F,fe)}),Ei=O(function(w,F){return ol(w,H,i,i,i,F)});function Ki(w,F){if(typeof w!="function")throw new gi(o);return F=F===i?F:As(F),Ta(w,F)}function da(w,F){if(typeof w!="function")throw new gi(o);return F=F==null?0:pi(As(F),0),Ta(function(fe){var Fe=fe[F],vt=Co(fe,0,F);return Fe&&Ka(vt,Fe),Na(w,this,vt)})}function Vi(w,F,fe){var Fe=!0,vt=!0;if(typeof w!="function")throw new gi(o);return $o(fe)&&(Fe="leading"in fe?!!fe.leading:Fe,vt="trailing"in fe?!!fe.trailing:vt),ir(w,F,{leading:Fe,maxWait:F,trailing:vt})}function fi(w){return be(w,1)}function qi(w,F){return Qr(Jc(F),w)}function ki(){if(!arguments.length)return[];var w=arguments[0];return ma(w)?w:[w]}function ua(w){return yr(w,m)}function Fa(w,F){return F=typeof F=="function"?F:i,yr(w,m,F)}function bi(w){return yr(w,p|m)}function xi(w,F){return F=typeof F=="function"?F:i,yr(w,p|m,F)}function ys(w,F){return F==null||Uo(w,F,fl(F))}function bs(w,F){return w===F||w!==w&&F!==F}var Ss=Lc(au),Ks=Lc(function(w,F){return w>=F}),pu=uc(function(){return arguments}())?uc:function(w){return cu(w)&&sn.call(w,"callee")&&!_t.call(w,"callee")},ma=Br.isArray,nc=Is?ks(Is):ho;function lu(w){return w!=null&&Xf(w.length)&&!Ol(w)}function Lo(w){return cu(w)&&lu(w)}function Od(w){return w===!0||w===!1||cu(w)&&So(w)==Dt}var Zc=Wi||$d,fd=ps?ks(ps):Hc;function zd(w){return cu(w)&&w.nodeType===1&&!dd(w)}function so(w){if(w==null)return!0;if(lu(w)&&(ma(w)||typeof w=="string"||typeof w.splice=="function"||Zc(w)||rd(w)||pu(w)))return!w.length;var F=Gs(w);if(F==$e||F==Ne)return!w.size;if(Cl(w))return!Dl(w).length;for(var fe in w)if(sn.call(w,fe))return!1;return!0}function cl(w,F){return $u(w,F)}function ic(w,F,fe){fe=typeof fe=="function"?fe:i;var Fe=fe?fe(w,F):i;return Fe===i?$u(w,F,i,fe):!!Fe}function df(w){if(!cu(w))return!1;var F=So(w);return F==Zt||F==It||typeof w.message=="string"&&typeof w.name=="string"&&!dd(w)}function xc(w){return typeof w=="number"&&Ci(w)}function Ol(w){if(!$o(w))return!1;var F=So(w);return F==Rt||F==ar||F==je||F==ot}function Of(w){return typeof w=="number"&&w==As(w)}function Xf(w){return typeof w=="number"&&w>-1&&w%1==0&&w<=J}function $o(w){var F=typeof w;return w!=null&&(F=="object"||F=="function")}function cu(w){return w!=null&&typeof w=="object"}var Gf=po?ks(po):il;function yd(w,F){return w===F||Ac(w,F,ds(F))}function Dd(w,F,fe){return fe=typeof fe=="function"?fe:i,Ac(w,F,ds(F),fe)}function bd(w){return Zd(w)&&w!=+w}function xd(w){if(Fl(w))throw new In(f);return Gc(w)}function Jf(w){return w===null}function o0(w){return w==null}function Zd(w){return typeof w=="number"||cu(w)&&So(w)==gt}function dd(w){if(!cu(w)||So(w)!=et)return!1;var F=Pe(w);if(F===null)return!0;var fe=sn.call(F,"constructor")&&F.constructor;return typeof fe=="function"&&fe instanceof fe&&Ys.call(fe)==no}var kd=Ji?ks(Ji):Ao;function u0(w){return Of(w)&&w>=-J&&w<=J}var Wd=to?ks(to):Kc;function Ed(w){return typeof w=="string"||!ma(w)&&cu(w)&&So(w)==ye}function Ec(w){return typeof w=="symbol"||cu(w)&&So(w)==ke}var rd=zo?ks(zo):Kl;function l0(w){return w===i}function c0(w){return cu(w)&&Gs(w)==We}function f0(w){return cu(w)&&So(w)==Xe}var d0=Lc(kl),h0=Lc(function(w,F){return w<=F});function Hd(w){if(!w)return[];if(lu(w))return Ed(w)?vr(w):hu(w);if(Kr&&w[Kr])return Uu(w[Kr]());var F=Gs(w),fe=F==$e?iu:F==Ne?gu:nd;return fe(w)}function jf(w){if(!w)return w===0?w:0;if(w=Wc(w),w===ee||w===-ee){var F=w<0?-1:1;return F*le}return w===w?w:0}function As(w){var F=jf(w),fe=F%1;return F===F?fe?F-fe:F:0}function Gd(w){return w?ws(As(w),0,j):0}function Wc(w){if(typeof w=="number")return w;if(Ec(w))return z;if($o(w)){var F=typeof w.valueOf=="function"?w.valueOf():w;w=$o(F)?F+"":F}if(typeof w!="string")return w===0?w:+w;w=Jo(w);var fe=At.test(w);return fe||Bt.test(w)?si(w.slice(2),fe?2:8):Pr.test(w)?z:+w}function Kd(w){return Xu(w,ac(w))}function p0(w){return w?ws(As(w),-J,J):w===0?w:0}function Po(w){return w==null?"":Ru(w)}var m0=sl(function(w,F){if(Cl(F)||lu(F)){Xu(F,fl(F),w);return}for(var fe in F)sn.call(F,fe)&&ba(w,fe,F[fe])}),Vd=sl(function(w,F){Xu(F,ac(F),w)}),wd=sl(function(w,F,fe,Fe){Xu(F,ac(F),w,Fe)}),_0=sl(function(w,F,fe,Fe){Xu(F,fl(F),w,Fe)}),v0=O(fo);function g0(w,F){var fe=Pa(w);return F==null?fe:js(fe,F)}var y0=Ta(function(w,F){w=Hn(w);var fe=-1,Fe=F.length,vt=Fe>2?F[2]:i;for(vt&&_o(F[0],F[1],vt)&&(Fe=1);++fe<Fe;)for(var er=F[fe],xr=ac(er),Lr=-1,tn=xr.length;++Lr<tn;){var Bn=xr[Lr],Nn=w[Bn];(Nn===i||bs(Nn,Sa[Bn])&&!sn.call(w,Bn))&&(w[Bn]=er[Bn])}return w}),b0=Ta(function(w){return w.push(i,bc),Na(Yd,i,w)});function x0(w,F){return _u(w,pn(F,3),Ro)}function E0(w,F){return _u(w,pn(F,3),eu)}function w0(w,F){return w==null?w:Gu(w,pn(F,3),ac)}function S0(w,F){return w==null?w:Ku(w,pn(F,3),ac)}function A0(w,F){return w&&Ro(w,pn(F,3))}function T0(w,F){return w&&eu(w,pn(F,3))}function C0(w){return w==null?[]:zl(w,fl(w))}function I0(w){return w==null?[]:zl(w,ac(w))}function Rd(w,F,fe){var Fe=w==null?i:bu(w,F);return Fe===i?fe:Fe}function P0(w,F){return w!=null&&Bc(w,F,hl)}function Ld(w,F){return w!=null&&Bc(w,F,Wl)}var O0=Rc(function(w,F,fe){F!=null&&typeof F.toString!="function"&&(F=Rs.call(F)),w[F]=fe},Fd(sc)),D0=Rc(function(w,F,fe){F!=null&&typeof F.toString!="function"&&(F=Rs.call(F)),sn.call(w,F)?w[F].push(fe):w[F]=[fe]},pn),k0=Ta(li);function fl(w){return lu(w)?Wn(w):Dl(w)}function ac(w){return lu(w)?Wn(w,!0):Vc(w)}function R0(w,F){var fe={};return F=pn(F,3),Ro(w,function(Fe,vt,er){Oa(fe,F(Fe,vt,er),Fe)}),fe}function L0(w,F){var fe={};return F=pn(F,3),Ro(w,function(Fe,vt,er){Oa(fe,vt,F(Fe,vt,er))}),fe}var M0=sl(function(w,F,fe){ru(w,F,fe)}),Yd=sl(function(w,F,fe,Fe){ru(w,F,fe,Fe)}),F0=O(function(w,F){var fe={};if(w==null)return fe;var Fe=!1;F=Qi(F,function(er){return er=gl(er,w),Fe||(Fe=er.length>1),er}),Xu(w,_e(w),fe),Fe&&(fe=yr(fe,p|y|m,Mc));for(var vt=F.length;vt--;)Oc(fe,F[vt]);return fe});function B0(w,F){return Qd(w,zr(pn(F)))}var N0=O(function(w,F){return w==null?{}:zu(w,F)});function Qd(w,F){if(w==null)return{};var fe=Qi(_e(w),function(Fe){return[Fe]});return F=pn(F),du(w,fe,function(Fe,vt){return F(Fe,vt[0])})}function j0(w,F,fe){F=gl(F,w);var Fe=-1,vt=F.length;for(vt||(vt=1,w=i);++Fe<vt;){var er=w==null?i:w[sa(F[Fe])];er===i&&(Fe=vt,er=fe),w=Ol(er)?er.call(w):er}return w}function U0(w,F,fe){return w==null?w:ml(w,F,fe)}function $0(w,F,fe,Fe){return Fe=typeof Fe=="function"?Fe:i,w==null?w:ml(w,F,fe,Fe)}var Xd=ef(fl),Jd=ef(ac);function z0(w,F,fe){var Fe=ma(w),vt=Fe||Zc(w)||rd(w);if(F=pn(F,4),fe==null){var er=w&&w.constructor;vt?fe=Fe?new er:[]:$o(w)?fe=Ol(er)?Pa(Pe(w)):{}:fe={}}return(vt?di:Ro)(w,function(xr,Lr,tn){return F(fe,xr,Lr,tn)}),fe}function Z0(w,F){return w==null?!0:Oc(w,F)}function W0(w,F,fe){return w==null?w:vl(w,F,Jc(fe))}function H0(w,F,fe,Fe){return Fe=typeof Fe=="function"?Fe:i,w==null?w:vl(w,F,Jc(fe),Fe)}function nd(w){return w==null?[]:Mo(w,fl(w))}function G0(w){return w==null?[]:Mo(w,ac(w))}function K0(w,F,fe){return fe===i&&(fe=F,F=i),fe!==i&&(fe=Wc(fe),fe=fe===fe?fe:0),F!==i&&(F=Wc(F),F=F===F?F:0),ws(Wc(w),F,fe)}function V0(w,F,fe){return F=jf(F),fe===i?(fe=F,F=0):fe=jf(fe),w=Wc(w),tu(w,F,fe)}function Y0(w,F,fe){if(fe&&typeof fe!="boolean"&&_o(w,F,fe)&&(F=fe=i),fe===i&&(typeof F=="boolean"?(fe=F,F=i):typeof w=="boolean"&&(fe=w,w=i)),w===i&&F===i?(w=0,F=1):(w=jf(w),F===i?(F=w,w=0):F=jf(F)),w>F){var Fe=w;w=F,F=Fe}if(fe||w%1||F%1){var vt=ia();return ca(w+vt*(F-w+kn("1e-"+((vt+"").length-1))),F)}return Vu(w,F)}var Q0=yl(function(w,F,fe){return F=F.toLowerCase(),w+(fe?qd(F):F)});function qd(w){return Md(Po(w).toLowerCase())}function e0(w){return w=Po(w),w&&w.replace(br,Fo).replace(Ke,"")}function X0(w,F,fe){w=Po(w),F=Ru(F);var Fe=w.length;fe=fe===i?Fe:ws(As(fe),0,Fe);var vt=fe;return fe-=F.length,fe>=0&&w.slice(fe,vt)==F}function J0(w){return w=Po(w),w&&st.test(w)?w.replace(Ct,uo):w}function q0(w){return w=Po(w),w&&Pt.test(w)?w.replace(dt,"\\$&"):w}var eh=yl(function(w,F,fe){return w+(fe?"-":"")+F.toLowerCase()}),th=yl(function(w,F,fe){return w+(fe?" ":"")+F.toLowerCase()}),rh=Tu("toLowerCase");function nh(w,F,fe){w=Po(w),F=As(F);var Fe=F?dr(w):0;if(!F||Fe>=F)return w;var vt=(F-Fe)/2;return vc(Li(vt),fe)+w+vc(yi(vt),fe)}function ih(w,F,fe){w=Po(w),F=As(F);var Fe=F?dr(w):0;return F&&Fe<F?w+vc(F-Fe,fe):w}function ah(w,F,fe){w=Po(w),F=As(F);var Fe=F?dr(w):0;return F&&Fe<F?vc(F-Fe,fe)+w:w}function sh(w,F,fe){return fe||F==null?F=0:F&&(F=+F),Qs(Po(w).replace(Be,""),F||0)}function oh(w,F,fe){return(fe?_o(w,F,fe):F===i)?F=1:F=As(F),Rl(Po(w),F)}function uh(){var w=arguments,F=Po(w[0]);return w.length<3?F:F.replace(w[1],w[2])}var lh=yl(function(w,F,fe){return w+(fe?"_":"")+F.toLowerCase()});function ch(w,F,fe){return fe&&typeof fe!="number"&&_o(w,F,fe)&&(F=fe=i),fe=fe===i?j:fe>>>0,fe?(w=Po(w),w&&(typeof F=="string"||F!=null&&!kd(F))&&(F=Ru(F),!F&&Bo(w))?Co(vr(w),0,fe):w.split(F,fe)):[]}var fh=yl(function(w,F,fe){return w+(fe?" ":"")+Md(F)});function dh(w,F,fe){return w=Po(w),fe=fe==null?0:ws(As(fe),0,w.length),F=Ru(F),w.slice(fe,fe+F.length)==F}function hh(w,F,fe){var Fe=kt.templateSettings;fe&&_o(w,F,fe)&&(F=i),w=Po(w),F=wd({},F,Fe,yc);var vt=wd({},F.imports,Fe.imports,yc),er=fl(vt),xr=Mo(vt,er),Lr,tn,Bn=0,Nn=F.interpolate||Xr,Vn="__p += '",Ri=ta((F.escape||Xr).source+"|"+Nn.source+"|"+(Nn===Te?Xt:Xr).source+"|"+(F.evaluate||Xr).source+"|$","g"),ga="//# sourceURL="+(sn.call(F,"sourceURL")?(F.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Hr+"]")+`
`;w.replace(Ri,function(Za,Vs,eo,wc,$l,Sc){return eo||(eo=wc),Vn+=w.slice(Bn,Sc).replace(Wr,Ho),Vs&&(Lr=!0,Vn+=`' +
__e(`+Vs+`) +
'`),$l&&(tn=!0,Vn+=`';
`+$l+`;
__p += '`),eo&&(Vn+=`' +
((__t = (`+eo+`)) == null ? '' : __t) +
'`),Bn=Sc+Za.length,Za}),Vn+=`';
`;var za=sn.call(F,"variable")&&F.variable;if(!za)Vn=`with (obj) {
`+Vn+`
}
`;else if(qt.test(za))throw new In(h);Vn=(tn?Vn.replace(Wt,""):Vn).replace(Ce,"$1").replace(ce,"$1;"),Vn="function("+(za||"obj")+`) {
`+(za?"":`obj || (obj = {});
`)+"var __t, __p = ''"+(Lr?", __e = _.escape":"")+(tn?`, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
`:`;
`)+Vn+`return __p
}`;var Cs=r0(function(){return oi(er,ga+"return "+Vn).apply(i,xr)});if(Cs.source=Vn,df(Cs))throw Cs;return Cs}function ph(w){return Po(w).toLowerCase()}function mh(w){return Po(w).toUpperCase()}function _h(w,F,fe){if(w=Po(w),w&&(fe||F===i))return Jo(w);if(!w||!(F=Ru(F)))return w;var Fe=vr(w),vt=vr(F),er=Pu(Fe,vt),xr=rl(Fe,vt)+1;return Co(Fe,er,xr).join("")}function vh(w,F,fe){if(w=Po(w),w&&(fe||F===i))return w.slice(0,Tr(w)+1);if(!w||!(F=Ru(F)))return w;var Fe=vr(w),vt=rl(Fe,vr(F))+1;return Co(Fe,0,vt).join("")}function gh(w,F,fe){if(w=Po(w),w&&(fe||F===i))return w.replace(Be,"");if(!w||!(F=Ru(F)))return w;var Fe=vr(w),vt=Pu(Fe,vr(F));return Co(Fe,vt).join("")}function yh(w,F){var fe=ae,Fe=ne;if($o(F)){var vt="separator"in F?F.separator:vt;fe="length"in F?As(F.length):fe,Fe="omission"in F?Ru(F.omission):Fe}w=Po(w);var er=w.length;if(Bo(w)){var xr=vr(w);er=xr.length}if(fe>=er)return w;var Lr=fe-dr(Fe);if(Lr<1)return Fe;var tn=xr?Co(xr,0,Lr).join(""):w.slice(0,Lr);if(vt===i)return tn+Fe;if(xr&&(Lr+=tn.length-Lr),kd(vt)){if(w.slice(Lr).search(vt)){var Bn,Nn=tn;for(vt.global||(vt=ta(vt.source,Po(Er.exec(vt))+"g")),vt.lastIndex=0;Bn=vt.exec(Nn);)var Vn=Bn.index;tn=tn.slice(0,Vn===i?Lr:Vn)}}else if(w.indexOf(Ru(vt),Lr)!=Lr){var Ri=tn.lastIndexOf(vt);Ri>-1&&(tn=tn.slice(0,Ri))}return tn+Fe}function bh(w){return w=Po(w),w&&Ae.test(w)?w.replace(pe,bn):w}var xh=yl(function(w,F,fe){return w+(fe?" ":"")+F.toUpperCase()}),Md=Tu("toUpperCase");function t0(w,F,fe){return w=Po(w),F=fe?i:F,F===i?Go(w)?Zn(w):mu(w):w.match(F)||[]}var r0=Ta(function(w,F){try{return Na(w,i,F)}catch(fe){return df(fe)?fe:new In(fe)}}),Eh=O(function(w,F){return di(F,function(fe){fe=sa(fe),Oa(w,fe,Le(w[fe],w))}),w});function wh(w){var F=w==null?0:w.length,fe=pn();return w=F?Qi(w,function(Fe){if(typeof Fe[1]!="function")throw new gi(o);return[fe(Fe[0]),Fe[1]]}):[],Ta(function(Fe){for(var vt=-1;++vt<F;){var er=w[vt];if(Na(er[0],this,Fe))return Na(er[1],this,Fe)}})}function Sh(w){return ko(yr(w,p))}function Fd(w){return function(){return w}}function Ah(w,F){return w==null||w!==w?F:w}var Th=Vo(),Ch=Vo(!0);function sc(w){return w}function Bd(w){return lc(typeof w=="function"?w:yr(w,p))}function Ih(w){return Vl(yr(w,p))}function Ph(w,F){return mo(w,yr(F,p))}var Oh=Ta(function(w,F){return function(fe){return li(fe,w,F)}}),Dh=Ta(function(w,F){return function(fe){return li(w,fe,F)}});function Nd(w,F,fe){var Fe=fl(F),vt=zl(F,Fe);fe==null&&!($o(F)&&(vt.length||!Fe.length))&&(fe=F,F=w,w=this,vt=zl(F,fl(F)));var er=!($o(fe)&&"chain"in fe)||!!fe.chain,xr=Ol(w);return di(vt,function(Lr){var tn=F[Lr];w[Lr]=tn,xr&&(w.prototype[Lr]=function(){var Bn=this.__chain__;if(er||Bn){var Nn=w(this.__wrapped__),Vn=Nn.__actions__=hu(this.__actions__);return Vn.push({func:tn,args:arguments,thisArg:w}),Nn.__chain__=Bn,Nn}return tn.apply(w,Ka([this.value()],arguments))})}),w}function kh(){return Ba._===this&&(Ba._=io),this}function jd(){}function Rh(w){return w=As(w),Ta(function(F){return Yl(F,w)})}var Lh=_c(Qi),Mh=_c(Rn),Fh=_c(xo);function n0(w){return gs(w)?hi(sa(w)):pf(w)}function Bh(w){return function(F){return w==null?i:bu(w,F)}}var Nh=Rf(),jh=Rf(!0);function Ud(){return[]}function $d(){return!1}function Uh(){return{}}function $h(){return""}function zh(){return!0}function Zh(w,F){if(w=As(w),w<1||w>J)return[];var fe=j,Fe=ca(w,j);F=pn(F),w-=j;for(var vt=Wa(Fe,F);++fe<w;)F(fe);return vt}function Wh(w){return ma(w)?Qi(w,sa):Ec(w)?[w]:hu(Ma(Po(w)))}function Hh(w){var F=++Do;return Po(w)+F}var Gh=mc(function(w,F){return w+F},0),Kh=Jl("ceil"),Vh=mc(function(w,F){return w/F},1),Yh=Jl("floor");function Qh(w){return w&&w.length?wl(w,sc,au):i}function Xh(w,F){return w&&w.length?wl(w,pn(F,2),au):i}function Jh(w){return Xo(w,sc)}function qh(w,F){return Xo(w,pn(F,2))}function ep(w){return w&&w.length?wl(w,sc,kl):i}function tp(w,F){return w&&w.length?wl(w,pn(F,2),kl):i}var rp=mc(function(w,F){return w*F},1),np=Jl("round"),ip=mc(function(w,F){return w-F},0);function ap(w){return w&&w.length?es(w,sc):0}function sp(w,F){return w&&w.length?es(w,pn(F,2)):0}return kt.after=de,kt.ary=be,kt.assign=m0,kt.assignIn=Vd,kt.assignInWith=wd,kt.assignWith=_0,kt.at=v0,kt.before=Re,kt.bind=Le,kt.bindAll=Eh,kt.bindKey=at,kt.castArray=ki,kt.chain=Un,kt.chunk=oa,kt.compact=Us,kt.concat=qu,kt.cond=wh,kt.conforms=Sh,kt.constant=Fd,kt.countBy=Sd,kt.create=g0,kt.curry=it,kt.curryRight=Qt,kt.debounce=ir,kt.defaults=y0,kt.defaultsDeep=b0,kt.defer=ur,kt.delay=Ar,kt.difference=ul,kt.differenceBy=El,kt.differenceWith=el,kt.drop=jl,kt.dropRight=Kf,kt.dropRightWhile=Sf,kt.dropWhile=rc,kt.fill=Lf,kt.filter=Td,kt.flatMap=md,kt.flatMapDeep=Cd,kt.flatMapDepth=Id,kt.flatten=of,kt.flattenDeep=tl,kt.flattenDepth=Vf,kt.flip=Ur,kt.flow=Th,kt.flowRight=Ch,kt.fromPairs=ll,kt.functions=C0,kt.functionsIn=I0,kt.groupBy=Pd,kt.initial=ou,kt.intersection=Af,kt.intersectionBy=lf,kt.intersectionWith=Pl,kt.invert=O0,kt.invertBy=D0,kt.invokeMap=gd,kt.iteratee=Bd,kt.keyBy=cd,kt.keys=fl,kt.keysIn=ac,kt.map=td,kt.mapKeys=R0,kt.mapValues=L0,kt.matches=Ih,kt.matchesProperty=Ph,kt.memoize=mn,kt.merge=M0,kt.mergeWith=Yd,kt.method=Oh,kt.methodOf=Dh,kt.mixin=Nd,kt.negate=zr,kt.nthArg=Rh,kt.omit=F0,kt.omitBy=B0,kt.once=ln,kt.orderBy=Pf,kt.over=Lh,kt.overArgs=on,kt.overEvery=Mh,kt.overSome=Fh,kt.partial=Qr,kt.partialRight=Dn,kt.partition=D,kt.pick=N0,kt.pickBy=Qd,kt.property=n0,kt.propertyOf=Bh,kt.pull=cf,kt.pullAll=$c,kt.pullAllBy=Ff,kt.pullAllWith=zc,kt.pullAt=zf,kt.range=Nh,kt.rangeRight=jh,kt.rearg=Ei,kt.reject=s,kt.remove=Yf,kt.rest=Ki,kt.reverse=Bf,kt.sampleSize=E,kt.set=U0,kt.setWith=$0,kt.shuffle=I,kt.slice=Qf,kt.sortBy=G,kt.sortedUniq=If,kt.sortedUniqBy=qf,kt.split=ch,kt.spread=da,kt.tail=Hf,kt.take=g,kt.takeRight=T,kt.takeRightWhile=$,kt.takeWhile=ve,kt.tap=Ya,kt.throttle=Vi,kt.thru=Ui,kt.toArray=Hd,kt.toPairs=Xd,kt.toPairsIn=Jd,kt.toPath=Wh,kt.toPlainObject=Kd,kt.transform=z0,kt.unary=fi,kt.union=De,kt.unionBy=rt,kt.unionWith=Ut,kt.uniq=fr,kt.uniqBy=Dr,kt.uniqWith=vn,kt.unset=Z0,kt.unzip=Pi,kt.unzipWith=Ua,kt.update=W0,kt.updateWith=H0,kt.values=nd,kt.valuesIn=G0,kt.without=Kn,kt.words=t0,kt.wrap=qi,kt.xor=la,kt.xorBy=$a,kt.xorWith=ka,kt.zip=nn,kt.zipObject=jr,kt.zipObjectDeep=rn,kt.zipWith=On,kt.entries=Xd,kt.entriesIn=Jd,kt.extend=Vd,kt.extendWith=wd,Nd(kt,kt),kt.add=Gh,kt.attempt=r0,kt.camelCase=Q0,kt.capitalize=qd,kt.ceil=Kh,kt.clamp=K0,kt.clone=ua,kt.cloneDeep=bi,kt.cloneDeepWith=xi,kt.cloneWith=Fa,kt.conformsTo=ys,kt.deburr=e0,kt.defaultTo=Ah,kt.divide=Vh,kt.endsWith=X0,kt.eq=bs,kt.escape=J0,kt.escapeRegExp=q0,kt.every=Ad,kt.find=hd,kt.findIndex=af,kt.findKey=x0,kt.findLast=pd,kt.findLastIndex=sf,kt.findLastKey=E0,kt.floor=Yh,kt.forEach=_d,kt.forEachRight=vd,kt.forIn=w0,kt.forInRight=S0,kt.forOwn=A0,kt.forOwnRight=T0,kt.get=Rd,kt.gt=Ss,kt.gte=Ks,kt.has=P0,kt.hasIn=Ld,kt.head=uf,kt.identity=sc,kt.includes=ld,kt.indexOf=Mf,kt.inRange=V0,kt.invoke=k0,kt.isArguments=pu,kt.isArray=ma,kt.isArrayBuffer=nc,kt.isArrayLike=lu,kt.isArrayLikeObject=Lo,kt.isBoolean=Od,kt.isBuffer=Zc,kt.isDate=fd,kt.isElement=zd,kt.isEmpty=so,kt.isEqual=cl,kt.isEqualWith=ic,kt.isError=df,kt.isFinite=xc,kt.isFunction=Ol,kt.isInteger=Of,kt.isLength=Xf,kt.isMap=Gf,kt.isMatch=yd,kt.isMatchWith=Dd,kt.isNaN=bd,kt.isNative=xd,kt.isNil=o0,kt.isNull=Jf,kt.isNumber=Zd,kt.isObject=$o,kt.isObjectLike=cu,kt.isPlainObject=dd,kt.isRegExp=kd,kt.isSafeInteger=u0,kt.isSet=Wd,kt.isString=Ed,kt.isSymbol=Ec,kt.isTypedArray=rd,kt.isUndefined=l0,kt.isWeakMap=c0,kt.isWeakSet=f0,kt.join=Uc,kt.kebabCase=eh,kt.last=uu,kt.lastIndexOf=Tf,kt.lowerCase=th,kt.lowerFirst=rh,kt.lt=d0,kt.lte=h0,kt.max=Qh,kt.maxBy=Xh,kt.mean=Jh,kt.meanBy=qh,kt.min=ep,kt.minBy=tp,kt.stubArray=Ud,kt.stubFalse=$d,kt.stubObject=Uh,kt.stubString=$h,kt.stubTrue=zh,kt.multiply=rp,kt.nth=Cf,kt.noConflict=kh,kt.noop=jd,kt.now=ue,kt.pad=nh,kt.padEnd=ih,kt.padStart=ah,kt.parseInt=sh,kt.random=Y0,kt.reduce=t,kt.reduceRight=n,kt.repeat=oh,kt.replace=uh,kt.result=j0,kt.round=np,kt.runInContext=mr,kt.sample=_,kt.size=U,kt.snakeCase=lh,kt.some=Q,kt.sortedIndex=Zf,kt.sortedIndexBy=ff,kt.sortedIndexOf=id,kt.sortedLastIndex=Wf,kt.sortedLastIndexBy=Nf,kt.sortedLastIndexOf=ad,kt.startCase=fh,kt.startsWith=dh,kt.subtract=ip,kt.sum=ap,kt.sumBy=sp,kt.template=hh,kt.times=Zh,kt.toFinite=jf,kt.toInteger=As,kt.toLength=Gd,kt.toLower=ph,kt.toNumber=Wc,kt.toSafeInteger=p0,kt.toString=Po,kt.toUpper=mh,kt.trim=_h,kt.trimEnd=vh,kt.trimStart=gh,kt.truncate=yh,kt.unescape=bh,kt.uniqueId=Hh,kt.upperCase=xh,kt.upperFirst=Md,kt.each=_d,kt.eachRight=vd,kt.first=uf,Nd(kt,function(){var w={};return Ro(kt,function(F,fe){sn.call(kt.prototype,fe)||(w[fe]=F)}),w}(),{chain:!1}),kt.VERSION=l,di(["bind","bindKey","curry","curryRight","partial","partialRight"],function(w){kt[w].placeholder=kt}),di(["drop","take"],function(w,F){En.prototype[w]=function(fe){fe=fe===i?1:pi(As(fe),0);var Fe=this.__filtered__&&!F?new En(this):this.clone();return Fe.__filtered__?Fe.__takeCount__=ca(fe,Fe.__takeCount__):Fe.__views__.push({size:ca(fe,j),type:w+(Fe.__dir__<0?"Right":"")}),Fe},En.prototype[w+"Right"]=function(fe){return this.reverse()[w](fe).reverse()}}),di(["filter","map","takeWhile"],function(w,F){var fe=F+1,Fe=fe==X||fe==se;En.prototype[w]=function(vt){var er=this.clone();return er.__iteratees__.push({iteratee:pn(vt,3),type:fe}),er.__filtered__=er.__filtered__||Fe,er}}),di(["head","last"],function(w,F){var fe="take"+(F?"Right":"");En.prototype[w]=function(){return this[fe](1).value()[0]}}),di(["initial","tail"],function(w,F){var fe="drop"+(F?"":"Right");En.prototype[w]=function(){return this.__filtered__?new En(this):this[fe](1)}}),En.prototype.compact=function(){return this.filter(sc)},En.prototype.find=function(w){return this.filter(w).head()},En.prototype.findLast=function(w){return this.reverse().find(w)},En.prototype.invokeMap=Ta(function(w,F){return typeof w=="function"?new En(this):this.map(function(fe){return li(fe,w,F)})}),En.prototype.reject=function(w){return this.filter(zr(pn(w)))},En.prototype.slice=function(w,F){w=As(w);var fe=this;return fe.__filtered__&&(w>0||F<0)?new En(fe):(w<0?fe=fe.takeRight(-w):w&&(fe=fe.drop(w)),F!==i&&(F=As(F),fe=F<0?fe.dropRight(-F):fe.take(F-w)),fe)},En.prototype.takeRightWhile=function(w){return this.reverse().takeWhile(w).reverse()},En.prototype.toArray=function(){return this.take(j)},Ro(En.prototype,function(w,F){var fe=/^(?:filter|find|map|reject)|While$/.test(F),Fe=/^(?:head|last)$/.test(F),vt=kt[Fe?"take"+(F=="last"?"Right":""):F],er=Fe||/^find/.test(F);vt&&(kt.prototype[F]=function(){var xr=this.__wrapped__,Lr=Fe?[1]:arguments,tn=xr instanceof En,Bn=Lr[0],Nn=tn||ma(xr),Vn=function(Vs){var eo=vt.apply(kt,Ka([Vs],Lr));return Fe&&Ri?eo[0]:eo};Nn&&fe&&typeof Bn=="function"&&Bn.length!=1&&(tn=Nn=!1);var Ri=this.__chain__,ga=!!this.__actions__.length,za=er&&!Ri,Cs=tn&&!ga;if(!er&&Nn){xr=Cs?xr:new En(this);var Za=w.apply(xr,Lr);return Za.__actions__.push({func:Ui,args:[Vn],thisArg:i}),new _n(Za,Ri)}return za&&Cs?w.apply(this,Lr):(Za=this.thru(Vn),za?Fe?Za.value()[0]:Za.value():Za)})}),di(["pop","push","shift","sort","splice","unshift"],function(w){var F=Et[w],fe=/^(?:push|sort|unshift)$/.test(w)?"tap":"thru",Fe=/^(?:pop|shift)$/.test(w);kt.prototype[w]=function(){var vt=arguments;if(Fe&&!this.__chain__){var er=this.value();return F.apply(ma(er)?er:[],vt)}return this[fe](function(xr){return F.apply(ma(xr)?xr:[],vt)})}}),Ro(En.prototype,function(w,F){var fe=kt[F];if(fe){var Fe=fe.name+"";sn.call(pa,Fe)||(pa[Fe]=[]),pa[Fe].push({name:F,func:fe})}}),pa[Ml(i,R).name]=[{name:"wrapper",func:i}],En.prototype.clone=Ze,En.prototype.reverse=jt,En.prototype.value=wr,kt.prototype.at=Qa,kt.prototype.chain=hs,kt.prototype.commit=Ja,kt.prototype.next=Ul,kt.prototype.plant=od,kt.prototype.reverse=ud,kt.prototype.toJSON=kt.prototype.valueOf=kt.prototype.value=ed,kt.prototype.first=kt.prototype.head,Kr&&(kt.prototype[Kr]=sd),kt},Jn=ai();Ba._=Jn,r=function(){return Jn}.call(v,e,v,d),r!==i&&(d.exports=r)}).call(this)},28440:function(d,v,e){var r=e(50097),i=e(63323),l=i(function(c,f,o){r(c,f,o)});d.exports=l},55950:function(d){function v(){return!1}d.exports=v},20480:function(d,v,e){var r=e(95378),i=e(56730);function l(c){return r(c,i(c))}d.exports=l},32834:function(d){(function(v,e){d.exports=e()})(this,function(){"use strict";function v(bt,Te){for(var yt=0;yt<Te.length;yt++){var ze=Te[yt];ze.enumerable=ze.enumerable||!1,ze.configurable=!0,"value"in ze&&(ze.writable=!0),Object.defineProperty(bt,ze.key,ze)}}function e(bt,Te,yt){return Te&&v(bt.prototype,Te),yt&&v(bt,yt),bt}function r(bt,Te){if(bt){if(typeof bt=="string")return i(bt,Te);var yt=Object.prototype.toString.call(bt).slice(8,-1);if(yt==="Object"&&bt.constructor&&(yt=bt.constructor.name),yt==="Map"||yt==="Set")return Array.from(bt);if(yt==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(yt))return i(bt,Te)}}function i(bt,Te){(Te==null||Te>bt.length)&&(Te=bt.length);for(var yt=0,ze=new Array(Te);yt<Te;yt++)ze[yt]=bt[yt];return ze}function l(bt,Te){var yt=typeof Symbol!="undefined"&&bt[Symbol.iterator]||bt["@@iterator"];if(yt)return(yt=yt.call(bt)).next.bind(yt);if(Array.isArray(bt)||(yt=r(bt))||Te&&bt&&typeof bt.length=="number"){yt&&(bt=yt);var ze=0;return function(){return ze>=bt.length?{done:!0}:{done:!1,value:bt[ze++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var c={exports:{}};function f(){return{baseUrl:null,breaks:!1,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}function o(bt){c.exports.defaults=bt}c.exports={defaults:f(),getDefaults:f,changeDefaults:o};var h=/[&<>"']/,u=/[&<>"']/g,a=/[<>"']|&(?!#?\w+;)/,x=/[<>"']|&(?!#?\w+;)/g,p={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},y=function(Te){return p[Te]};function m(bt,Te){if(Te){if(h.test(bt))return bt.replace(u,y)}else if(a.test(bt))return bt.replace(x,y);return bt}var b=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig;function S(bt){return bt.replace(b,function(Te,yt){return yt=yt.toLowerCase(),yt==="colon"?":":yt.charAt(0)==="#"?yt.charAt(1)==="x"?String.fromCharCode(parseInt(yt.substring(2),16)):String.fromCharCode(+yt.substring(1)):""})}var k=/(^|[^\[])\^/g;function R(bt,Te){bt=bt.source||bt,Te=Te||"";var yt={replace:function(xe,dt){return dt=dt.source||dt,dt=dt.replace(k,"$1"),bt=bt.replace(xe,dt),yt},getRegex:function(){return new RegExp(bt,Te)}};return yt}var A=/[^\w:]/g,P=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function M(bt,Te,yt){if(bt){var ze;try{ze=decodeURIComponent(S(yt)).replace(A,"").toLowerCase()}catch(xe){return null}if(ze.indexOf("javascript:")===0||ze.indexOf("vbscript:")===0||ze.indexOf("data:")===0)return null}Te&&!P.test(yt)&&(yt=W(Te,yt));try{yt=encodeURI(yt).replace(/%25/g,"%")}catch(xe){return null}return yt}var B={},N=/^[^:]+:\/*[^/]*$/,K=/^([^:]+:)[\s\S]*$/,H=/^([^:]+:\/*[^/]*)[\s\S]*$/;function W(bt,Te){B[" "+bt]||(N.test(bt)?B[" "+bt]=bt+"/":B[" "+bt]=q(bt,"/",!0)),bt=B[" "+bt];var yt=bt.indexOf(":")===-1;return Te.substring(0,2)==="//"?yt?Te:bt.replace(K,"$1")+Te:Te.charAt(0)==="/"?yt?Te:bt.replace(H,"$1")+Te:bt+Te}var ae={exec:function(){}};function ne(bt){for(var Te=1,yt,ze;Te<arguments.length;Te++){yt=arguments[Te];for(ze in yt)Object.prototype.hasOwnProperty.call(yt,ze)&&(bt[ze]=yt[ze])}return bt}function oe(bt,Te){var yt=bt.replace(/\|/g,function(dt,Pt,Be){for(var Or=!1,mt=Pt;--mt>=0&&Be[mt]==="\\";)Or=!Or;return Or?"|":" |"}),ze=yt.split(/ \|/),xe=0;if(ze.length>Te)ze.splice(Te);else for(;ze.length<Te;)ze.push("");for(;xe<ze.length;xe++)ze[xe]=ze[xe].trim().replace(/\\\|/g,"|");return ze}function q(bt,Te,yt){var ze=bt.length;if(ze===0)return"";for(var xe=0;xe<ze;){var dt=bt.charAt(ze-xe-1);if(dt===Te&&!yt)xe++;else if(dt!==Te&&yt)xe++;else break}return bt.substr(0,ze-xe)}function X(bt,Te){if(bt.indexOf(Te[1])===-1)return-1;for(var yt=bt.length,ze=0,xe=0;xe<yt;xe++)if(bt[xe]==="\\")xe++;else if(bt[xe]===Te[0])ze++;else if(bt[xe]===Te[1]&&(ze--,ze<0))return xe;return-1}function V(bt){bt&&bt.sanitize&&!bt.silent&&console.warn("marked(): sanitize and sanitizer parameters are deprecated since version 0.7.0, should not be used and will be removed in the future. Read more here: https://marked.js.org/#/USING_ADVANCED.md#options")}function se(bt,Te){if(Te<1)return"";for(var yt="";Te>1;)Te&1&&(yt+=bt),Te>>=1,bt+=bt;return yt+bt}var ee={escape:m,unescape:S,edit:R,cleanUrl:M,resolveUrl:W,noopTest:ae,merge:ne,splitCells:oe,rtrim:q,findClosingBracket:X,checkSanitizeDeprecation:V,repeatString:se},J=c.exports.defaults,le=ee.rtrim,z=ee.splitCells,j=ee.escape,ie=ee.findClosingBracket;function me(bt,Te,yt){var ze=Te.href,xe=Te.title?j(Te.title):null,dt=bt[1].replace(/\\([\[\]])/g,"$1");return bt[0].charAt(0)!=="!"?{type:"link",raw:yt,href:ze,title:xe,text:dt}:{type:"image",raw:yt,href:ze,title:xe,text:j(dt)}}function Se(bt,Te){var yt=bt.match(/^(\s+)(?:```)/);if(yt===null)return Te;var ze=yt[1];return Te.split(`
`).map(function(xe){var dt=xe.match(/^\s+/);if(dt===null)return xe;var Pt=dt[0];return Pt.length>=ze.length?xe.slice(ze.length):xe}).join(`
`)}var Ie=function(){function bt(yt){this.options=yt||J}var Te=bt.prototype;return Te.space=function(ze){var xe=this.rules.block.newline.exec(ze);if(xe)return xe[0].length>1?{type:"space",raw:xe[0]}:{raw:`
`}},Te.code=function(ze){var xe=this.rules.block.code.exec(ze);if(xe){var dt=xe[0].replace(/^ {1,4}/gm,"");return{type:"code",raw:xe[0],codeBlockStyle:"indented",text:this.options.pedantic?dt:le(dt,`
`)}}},Te.fences=function(ze){var xe=this.rules.block.fences.exec(ze);if(xe){var dt=xe[0],Pt=Se(dt,xe[3]||"");return{type:"code",raw:dt,lang:xe[2]?xe[2].trim():xe[2],text:Pt}}},Te.heading=function(ze){var xe=this.rules.block.heading.exec(ze);if(xe){var dt=xe[2].trim();if(/#$/.test(dt)){var Pt=le(dt,"#");(this.options.pedantic||!Pt||/ $/.test(Pt))&&(dt=Pt.trim())}return{type:"heading",raw:xe[0],depth:xe[1].length,text:dt}}},Te.nptable=function(ze){var xe=this.rules.block.nptable.exec(ze);if(xe){var dt={type:"table",header:z(xe[1].replace(/^ *| *\| *$/g,"")),align:xe[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:xe[3]?xe[3].replace(/\n$/,"").split(`
`):[],raw:xe[0]};if(dt.header.length===dt.align.length){var Pt=dt.align.length,Be;for(Be=0;Be<Pt;Be++)/^ *-+: *$/.test(dt.align[Be])?dt.align[Be]="right":/^ *:-+: *$/.test(dt.align[Be])?dt.align[Be]="center":/^ *:-+ *$/.test(dt.align[Be])?dt.align[Be]="left":dt.align[Be]=null;for(Pt=dt.cells.length,Be=0;Be<Pt;Be++)dt.cells[Be]=z(dt.cells[Be],dt.header.length);return dt}}},Te.hr=function(ze){var xe=this.rules.block.hr.exec(ze);if(xe)return{type:"hr",raw:xe[0]}},Te.blockquote=function(ze){var xe=this.rules.block.blockquote.exec(ze);if(xe){var dt=xe[0].replace(/^ *> ?/gm,"");return{type:"blockquote",raw:xe[0],text:dt}}},Te.list=function(ze){var xe=this.rules.block.list.exec(ze);if(xe){var dt=xe[0],Pt=xe[2],Be=Pt.length>1,Or={type:"list",raw:dt,ordered:Be,start:Be?+Pt.slice(0,-1):"",loose:!1,items:[]},mt=xe[0].match(this.rules.block.item),qr=!1,an,Nt,qt,Lt,Xt,Er,Pr,At,Kt,Bt=mt.length;qt=this.rules.block.listItemStart.exec(mt[0]);for(var Jt=0;Jt<Bt;Jt++){if(an=mt[Jt],dt=an,this.options.pedantic||(Kt=an.match(new RegExp("\\n\\s*\\n {0,"+(qt[0].length-1)+"}\\S")),Kt&&(Xt=an.length-Kt.index+mt.slice(Jt+1).join(`
`).length,Or.raw=Or.raw.substring(0,Or.raw.length-Xt),an=an.substring(0,Kt.index),dt=an,Bt=Jt+1)),Jt!==Bt-1){if(Lt=this.rules.block.listItemStart.exec(mt[Jt+1]),this.options.pedantic?Lt[1].length>qt[1].length:Lt[1].length>=qt[0].length||Lt[1].length>3){mt.splice(Jt,2,mt[Jt]+(!this.options.pedantic&&Lt[1].length<qt[0].length&&!mt[Jt].match(/\n$/)?"":`
`)+mt[Jt+1]),Jt--,Bt--;continue}else(!this.options.pedantic||this.options.smartLists?Lt[2][Lt[2].length-1]!==Pt[Pt.length-1]:Be===(Lt[2].length===1))&&(Xt=mt.slice(Jt+1).join(`
`).length,Or.raw=Or.raw.substring(0,Or.raw.length-Xt),Jt=Bt-1);qt=Lt}Nt=an.length,an=an.replace(/^ *([*+-]|\d+[.)]) ?/,""),~an.indexOf(`
`)&&(Nt-=an.length,an=this.options.pedantic?an.replace(/^ {1,4}/gm,""):an.replace(new RegExp("^ {1,"+Nt+"}","gm"),"")),an=le(an,`
`),Jt!==Bt-1&&(dt=dt+`
`),Er=qr||/\n\n(?!\s*$)/.test(dt),Jt!==Bt-1&&(qr=dt.slice(-2)===`
`,Er||(Er=qr)),Er&&(Or.loose=!0),this.options.gfm&&(Pr=/^\[[ xX]\] /.test(an),At=void 0,Pr&&(At=an[1]!==" ",an=an.replace(/^\[[ xX]\] +/,""))),Or.items.push({type:"list_item",raw:dt,task:Pr,checked:At,loose:Er,text:an})}return Or}},Te.html=function(ze){var xe=this.rules.block.html.exec(ze);if(xe)return{type:this.options.sanitize?"paragraph":"html",raw:xe[0],pre:!this.options.sanitizer&&(xe[1]==="pre"||xe[1]==="script"||xe[1]==="style"),text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(xe[0]):j(xe[0]):xe[0]}},Te.def=function(ze){var xe=this.rules.block.def.exec(ze);if(xe){xe[3]&&(xe[3]=xe[3].substring(1,xe[3].length-1));var dt=xe[1].toLowerCase().replace(/\s+/g," ");return{type:"def",tag:dt,raw:xe[0],href:xe[2],title:xe[3]}}},Te.table=function(ze){var xe=this.rules.block.table.exec(ze);if(xe){var dt={type:"table",header:z(xe[1].replace(/^ *| *\| *$/g,"")),align:xe[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:xe[3]?xe[3].replace(/\n$/,"").split(`
`):[]};if(dt.header.length===dt.align.length){dt.raw=xe[0];var Pt=dt.align.length,Be;for(Be=0;Be<Pt;Be++)/^ *-+: *$/.test(dt.align[Be])?dt.align[Be]="right":/^ *:-+: *$/.test(dt.align[Be])?dt.align[Be]="center":/^ *:-+ *$/.test(dt.align[Be])?dt.align[Be]="left":dt.align[Be]=null;for(Pt=dt.cells.length,Be=0;Be<Pt;Be++)dt.cells[Be]=z(dt.cells[Be].replace(/^ *\| *| *\| *$/g,""),dt.header.length);return dt}}},Te.lheading=function(ze){var xe=this.rules.block.lheading.exec(ze);if(xe)return{type:"heading",raw:xe[0],depth:xe[2].charAt(0)==="="?1:2,text:xe[1]}},Te.paragraph=function(ze){var xe=this.rules.block.paragraph.exec(ze);if(xe)return{type:"paragraph",raw:xe[0],text:xe[1].charAt(xe[1].length-1)===`
`?xe[1].slice(0,-1):xe[1]}},Te.text=function(ze){var xe=this.rules.block.text.exec(ze);if(xe)return{type:"text",raw:xe[0],text:xe[0]}},Te.escape=function(ze){var xe=this.rules.inline.escape.exec(ze);if(xe)return{type:"escape",raw:xe[0],text:j(xe[1])}},Te.tag=function(ze,xe,dt){var Pt=this.rules.inline.tag.exec(ze);if(Pt)return!xe&&/^<a /i.test(Pt[0])?xe=!0:xe&&/^<\/a>/i.test(Pt[0])&&(xe=!1),!dt&&/^<(pre|code|kbd|script)(\s|>)/i.test(Pt[0])?dt=!0:dt&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(Pt[0])&&(dt=!1),{type:this.options.sanitize?"text":"html",raw:Pt[0],inLink:xe,inRawBlock:dt,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(Pt[0]):j(Pt[0]):Pt[0]}},Te.link=function(ze){var xe=this.rules.inline.link.exec(ze);if(xe){var dt=xe[2].trim();if(!this.options.pedantic&&/^</.test(dt)){if(!/>$/.test(dt))return;var Pt=le(dt.slice(0,-1),"\\");if((dt.length-Pt.length)%2===0)return}else{var Be=ie(xe[2],"()");if(Be>-1){var Or=xe[0].indexOf("!")===0?5:4,mt=Or+xe[1].length+Be;xe[2]=xe[2].substring(0,Be),xe[0]=xe[0].substring(0,mt).trim(),xe[3]=""}}var qr=xe[2],an="";if(this.options.pedantic){var Nt=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(qr);Nt&&(qr=Nt[1],an=Nt[3])}else an=xe[3]?xe[3].slice(1,-1):"";return qr=qr.trim(),/^</.test(qr)&&(this.options.pedantic&&!/>$/.test(dt)?qr=qr.slice(1):qr=qr.slice(1,-1)),me(xe,{href:qr&&qr.replace(this.rules.inline._escapes,"$1"),title:an&&an.replace(this.rules.inline._escapes,"$1")},xe[0])}},Te.reflink=function(ze,xe){var dt;if((dt=this.rules.inline.reflink.exec(ze))||(dt=this.rules.inline.nolink.exec(ze))){var Pt=(dt[2]||dt[1]).replace(/\s+/g," ");if(Pt=xe[Pt.toLowerCase()],!Pt||!Pt.href){var Be=dt[0].charAt(0);return{type:"text",raw:Be,text:Be}}return me(dt,Pt,dt[0])}},Te.emStrong=function(ze,xe,dt){dt===void 0&&(dt="");var Pt=this.rules.inline.emStrong.lDelim.exec(ze);if(Pt&&!(Pt[3]&&dt.match(/(?:[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08C7\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\u9FFC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7BF\uA7C2-\uA7CA\uA7F5-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82C[\uDC00-\uDD1E\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDD\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])/))){var Be=Pt[1]||Pt[2]||"";if(!Be||Be&&(dt===""||this.rules.inline.punctuation.exec(dt))){var Or=Pt[0].length-1,mt,qr,an=Or,Nt=0,qt=Pt[0][0]==="*"?this.rules.inline.emStrong.rDelimAst:this.rules.inline.emStrong.rDelimUnd;for(qt.lastIndex=0,xe=xe.slice(-1*ze.length+Or);(Pt=qt.exec(xe))!=null;)if(mt=Pt[1]||Pt[2]||Pt[3]||Pt[4]||Pt[5]||Pt[6],!!mt){if(qr=mt.length,Pt[3]||Pt[4]){an+=qr;continue}else if((Pt[5]||Pt[6])&&Or%3&&!((Or+qr)%3)){Nt+=qr;continue}if(an-=qr,!(an>0))return qr=Math.min(qr,qr+an+Nt),Math.min(Or,qr)%2?{type:"em",raw:ze.slice(0,Or+Pt.index+qr+1),text:ze.slice(1,Or+Pt.index+qr)}:{type:"strong",raw:ze.slice(0,Or+Pt.index+qr+1),text:ze.slice(2,Or+Pt.index+qr-1)}}}}},Te.codespan=function(ze){var xe=this.rules.inline.code.exec(ze);if(xe){var dt=xe[2].replace(/\n/g," "),Pt=/[^ ]/.test(dt),Be=/^ /.test(dt)&&/ $/.test(dt);return Pt&&Be&&(dt=dt.substring(1,dt.length-1)),dt=j(dt,!0),{type:"codespan",raw:xe[0],text:dt}}},Te.br=function(ze){var xe=this.rules.inline.br.exec(ze);if(xe)return{type:"br",raw:xe[0]}},Te.del=function(ze){var xe=this.rules.inline.del.exec(ze);if(xe)return{type:"del",raw:xe[0],text:xe[2]}},Te.autolink=function(ze,xe){var dt=this.rules.inline.autolink.exec(ze);if(dt){var Pt,Be;return dt[2]==="@"?(Pt=j(this.options.mangle?xe(dt[1]):dt[1]),Be="mailto:"+Pt):(Pt=j(dt[1]),Be=Pt),{type:"link",raw:dt[0],text:Pt,href:Be,tokens:[{type:"text",raw:Pt,text:Pt}]}}},Te.url=function(ze,xe){var dt;if(dt=this.rules.inline.url.exec(ze)){var Pt,Be;if(dt[2]==="@")Pt=j(this.options.mangle?xe(dt[0]):dt[0]),Be="mailto:"+Pt;else{var Or;do Or=dt[0],dt[0]=this.rules.inline._backpedal.exec(dt[0])[0];while(Or!==dt[0]);Pt=j(dt[0]),dt[1]==="www."?Be="http://"+Pt:Be=Pt}return{type:"link",raw:dt[0],text:Pt,href:Be,tokens:[{type:"text",raw:Pt,text:Pt}]}}},Te.inlineText=function(ze,xe,dt){var Pt=this.rules.inline.text.exec(ze);if(Pt){var Be;return xe?Be=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(Pt[0]):j(Pt[0]):Pt[0]:Be=j(this.options.smartypants?dt(Pt[0]):Pt[0]),{type:"text",raw:Pt[0],text:Be}}},bt}(),He=ee.noopTest,je=ee.edit,Dt=ee.merge,ht={newline:/^(?: *(?:\n|$))+/,code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*\n)|~{3,})([^\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?:\n+|$)|$)/,hr:/^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\* *){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3})(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?! {0,3}bull )\n*|\s*$)/,html:"^ {0,3}(?:<(script|pre|style)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|</(?!script|pre|style)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))",def:/^ {0,3}\[(label)\]: *\n? *<?([^\s>]+)>?(?:(?: +\n? *| *\n *)(title))? *(?:\n+|$)/,nptable:He,table:He,lheading:/^([^\n]+)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html| +\n)[^\n]+)*)/,text:/^[^\n]+/};ht._label=/(?!\s*\])(?:\\[\[\]]|[^\[\]])+/,ht._title=/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/,ht.def=je(ht.def).replace("label",ht._label).replace("title",ht._title).getRegex(),ht.bullet=/(?:[*+-]|\d{1,9}[.)])/,ht.item=/^( *)(bull) ?[^\n]*(?:\n(?! *bull ?)[^\n]*)*/,ht.item=je(ht.item,"gm").replace(/bull/g,ht.bullet).getRegex(),ht.listItemStart=je(/^( *)(bull) */).replace("bull",ht.bullet).getRegex(),ht.list=je(ht.list).replace(/bull/g,ht.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+ht.def.source+")").getRegex(),ht._tag="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",ht._comment=/<!--(?!-?>)[\s\S]*?(?:-->|$)/,ht.html=je(ht.html,"i").replace("comment",ht._comment).replace("tag",ht._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),ht.paragraph=je(ht._paragraph).replace("hr",ht.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|!--)").replace("tag",ht._tag).getRegex(),ht.blockquote=je(ht.blockquote).replace("paragraph",ht.paragraph).getRegex(),ht.normal=Dt({},ht),ht.gfm=Dt({},ht.normal,{nptable:"^ *([^|\\n ].*\\|.*)\\n {0,3}([-:]+ *\\|[-| :]*)(?:\\n((?:(?!\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)",table:"^ *\\|(.+)\\n {0,3}\\|?( *[-:]+[-| :]*)(?:\\n *((?:(?!\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"}),ht.gfm.nptable=je(ht.gfm.nptable).replace("hr",ht.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|!--)").replace("tag",ht._tag).getRegex(),ht.gfm.table=je(ht.gfm.table).replace("hr",ht.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|!--)").replace("tag",ht._tag).getRegex(),ht.pedantic=Dt({},ht.normal,{html:je(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",ht._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:He,paragraph:je(ht.normal._paragraph).replace("hr",ht.hr).replace("heading",` *#{1,6} *[^
]`).replace("lheading",ht.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var It={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:He,tag:"^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(?!\s*\])((?:\\[\[\]]?|[^\[\]\\])+)\]/,nolink:/^!?\[(?!\s*\])((?:\[[^\[\]]*\]|\\[\[\]]|[^\[\]])*)\](?:\[\])?/,reflinkSearch:"reflink|nolink(?!\\()",emStrong:{lDelim:/^(?:\*+(?:([punct_])|[^\s*]))|^_+(?:([punct*])|([^\s_]))/,rDelimAst:/\_\_[^_*]*?\*[^_*]*?\_\_|[punct_](\*+)(?=[\s]|$)|[^punct*_\s](\*+)(?=[punct_\s]|$)|[punct_\s](\*+)(?=[^punct*_\s])|[\s](\*+)(?=[punct_])|[punct_](\*+)(?=[punct_])|[^punct*_\s](\*+)(?=[^punct*_\s])/,rDelimUnd:/\*\*[^_*]*?\_[^_*]*?\*\*|[punct*](\_+)(?=[\s]|$)|[^punct*_\s](\_+)(?=[punct*\s]|$)|[punct*\s](\_+)(?=[^punct*_\s])|[\s](\_+)(?=[punct*])|[punct*](\_+)(?=[punct*])/},code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:He,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,punctuation:/^([\spunctuation])/};It._punctuation="!\"#$%&'()+\\-.,/:;<=>?@\\[\\]`^{|}~",It.punctuation=je(It.punctuation).replace(/punctuation/g,It._punctuation).getRegex(),It.blockSkip=/\[[^\]]*?\]\([^\)]*?\)|`[^`]*?`|<[^>]*?>/g,It.escapedEmSt=/\\\*|\\_/g,It._comment=je(ht._comment).replace("(?:-->|$)","-->").getRegex(),It.emStrong.lDelim=je(It.emStrong.lDelim).replace(/punct/g,It._punctuation).getRegex(),It.emStrong.rDelimAst=je(It.emStrong.rDelimAst,"g").replace(/punct/g,It._punctuation).getRegex(),It.emStrong.rDelimUnd=je(It.emStrong.rDelimUnd,"g").replace(/punct/g,It._punctuation).getRegex(),It._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g,It._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,It._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,It.autolink=je(It.autolink).replace("scheme",It._scheme).replace("email",It._email).getRegex(),It._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/,It.tag=je(It.tag).replace("comment",It._comment).replace("attribute",It._attribute).getRegex(),It._label=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,It._href=/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/,It._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/,It.link=je(It.link).replace("label",It._label).replace("href",It._href).replace("title",It._title).getRegex(),It.reflink=je(It.reflink).replace("label",It._label).getRegex(),It.reflinkSearch=je(It.reflinkSearch,"g").replace("reflink",It.reflink).replace("nolink",It.nolink).getRegex(),It.normal=Dt({},It),It.pedantic=Dt({},It.normal,{strong:{start:/^__|\*\*/,middle:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,endAst:/\*\*(?!\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\*/,middle:/^()\*(?=\S)([\s\S]*?\S)\*(?!\*)|^_(?=\S)([\s\S]*?\S)_(?!_)/,endAst:/\*(?!\*)/g,endUnd:/_(?!_)/g},link:je(/^!?\[(label)\]\((.*?)\)/).replace("label",It._label).getRegex(),reflink:je(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",It._label).getRegex()}),It.gfm=Dt({},It.normal,{escape:je(It.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/}),It.gfm.url=je(It.gfm.url,"i").replace("email",It.gfm._extended_email).getRegex(),It.breaks=Dt({},It.gfm,{br:je(It.br).replace("{2,}","*").getRegex(),text:je(It.gfm.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()});var Zt={block:ht,inline:It},Rt=Ie,ar=c.exports.defaults,$e=Zt.block,gt=Zt.inline,Mt=ee.repeatString;function et(bt){return bt.replace(/---/g,"\u2014").replace(/--/g,"\u2013").replace(/(^|[-\u2014/(\[{"\s])'/g,"$1\u2018").replace(/'/g,"\u2019").replace(/(^|[-\u2014/(\[{\u2018\s])"/g,"$1\u201C").replace(/"/g,"\u201D").replace(/\.{3}/g,"\u2026")}function ft(bt){var Te="",yt,ze,xe=bt.length;for(yt=0;yt<xe;yt++)ze=bt.charCodeAt(yt),Math.random()>.5&&(ze="x"+ze.toString(16)),Te+="&#"+ze+";";return Te}var ot=function(){function bt(yt){this.tokens=[],this.tokens.links=Object.create(null),this.options=yt||ar,this.options.tokenizer=this.options.tokenizer||new Rt,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options;var ze={block:$e.normal,inline:gt.normal};this.options.pedantic?(ze.block=$e.pedantic,ze.inline=gt.pedantic):this.options.gfm&&(ze.block=$e.gfm,this.options.breaks?ze.inline=gt.breaks:ze.inline=gt.gfm),this.tokenizer.rules=ze}bt.lex=function(ze,xe){var dt=new bt(xe);return dt.lex(ze)},bt.lexInline=function(ze,xe){var dt=new bt(xe);return dt.inlineTokens(ze)};var Te=bt.prototype;return Te.lex=function(ze){return ze=ze.replace(/\r\n|\r/g,`
`).replace(/\t/g," "),this.blockTokens(ze,this.tokens,!0),this.inline(this.tokens),this.tokens},Te.blockTokens=function(ze,xe,dt){xe===void 0&&(xe=[]),dt===void 0&&(dt=!0),this.options.pedantic&&(ze=ze.replace(/^ +$/gm,""));for(var Pt,Be,Or,mt;ze;){if(Pt=this.tokenizer.space(ze)){ze=ze.substring(Pt.raw.length),Pt.type&&xe.push(Pt);continue}if(Pt=this.tokenizer.code(ze)){ze=ze.substring(Pt.raw.length),mt=xe[xe.length-1],mt&&mt.type==="paragraph"?(mt.raw+=`
`+Pt.raw,mt.text+=`
`+Pt.text):xe.push(Pt);continue}if(Pt=this.tokenizer.fences(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(Pt=this.tokenizer.heading(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(Pt=this.tokenizer.nptable(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(Pt=this.tokenizer.hr(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(Pt=this.tokenizer.blockquote(ze)){ze=ze.substring(Pt.raw.length),Pt.tokens=this.blockTokens(Pt.text,[],dt),xe.push(Pt);continue}if(Pt=this.tokenizer.list(ze)){for(ze=ze.substring(Pt.raw.length),Or=Pt.items.length,Be=0;Be<Or;Be++)Pt.items[Be].tokens=this.blockTokens(Pt.items[Be].text,[],!1);xe.push(Pt);continue}if(Pt=this.tokenizer.html(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(dt&&(Pt=this.tokenizer.def(ze))){ze=ze.substring(Pt.raw.length),this.tokens.links[Pt.tag]||(this.tokens.links[Pt.tag]={href:Pt.href,title:Pt.title});continue}if(Pt=this.tokenizer.table(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(Pt=this.tokenizer.lheading(ze)){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(dt&&(Pt=this.tokenizer.paragraph(ze))){ze=ze.substring(Pt.raw.length),xe.push(Pt);continue}if(Pt=this.tokenizer.text(ze)){ze=ze.substring(Pt.raw.length),mt=xe[xe.length-1],mt&&mt.type==="text"?(mt.raw+=`
`+Pt.raw,mt.text+=`
`+Pt.text):xe.push(Pt);continue}if(ze){var qr="Infinite loop on byte: "+ze.charCodeAt(0);if(this.options.silent){console.error(qr);break}else throw new Error(qr)}}return xe},Te.inline=function(ze){var xe,dt,Pt,Be,Or,mt,qr=ze.length;for(xe=0;xe<qr;xe++)switch(mt=ze[xe],mt.type){case"paragraph":case"text":case"heading":{mt.tokens=[],this.inlineTokens(mt.text,mt.tokens);break}case"table":{for(mt.tokens={header:[],cells:[]},Be=mt.header.length,dt=0;dt<Be;dt++)mt.tokens.header[dt]=[],this.inlineTokens(mt.header[dt],mt.tokens.header[dt]);for(Be=mt.cells.length,dt=0;dt<Be;dt++)for(Or=mt.cells[dt],mt.tokens.cells[dt]=[],Pt=0;Pt<Or.length;Pt++)mt.tokens.cells[dt][Pt]=[],this.inlineTokens(Or[Pt],mt.tokens.cells[dt][Pt]);break}case"blockquote":{this.inline(mt.tokens);break}case"list":{for(Be=mt.items.length,dt=0;dt<Be;dt++)this.inline(mt.items[dt].tokens);break}}return ze},Te.inlineTokens=function(ze,xe,dt,Pt){xe===void 0&&(xe=[]),dt===void 0&&(dt=!1),Pt===void 0&&(Pt=!1);var Be,Or,mt=ze,qr,an,Nt;if(this.tokens.links){var qt=Object.keys(this.tokens.links);if(qt.length>0)for(;(qr=this.tokenizer.rules.inline.reflinkSearch.exec(mt))!=null;)qt.includes(qr[0].slice(qr[0].lastIndexOf("[")+1,-1))&&(mt=mt.slice(0,qr.index)+"["+Mt("a",qr[0].length-2)+"]"+mt.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(qr=this.tokenizer.rules.inline.blockSkip.exec(mt))!=null;)mt=mt.slice(0,qr.index)+"["+Mt("a",qr[0].length-2)+"]"+mt.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;(qr=this.tokenizer.rules.inline.escapedEmSt.exec(mt))!=null;)mt=mt.slice(0,qr.index)+"++"+mt.slice(this.tokenizer.rules.inline.escapedEmSt.lastIndex);for(;ze;){if(an||(Nt=""),an=!1,Be=this.tokenizer.escape(ze)){ze=ze.substring(Be.raw.length),xe.push(Be);continue}if(Be=this.tokenizer.tag(ze,dt,Pt)){ze=ze.substring(Be.raw.length),dt=Be.inLink,Pt=Be.inRawBlock;var Lt=xe[xe.length-1];Lt&&Be.type==="text"&&Lt.type==="text"?(Lt.raw+=Be.raw,Lt.text+=Be.text):xe.push(Be);continue}if(Be=this.tokenizer.link(ze)){ze=ze.substring(Be.raw.length),Be.type==="link"&&(Be.tokens=this.inlineTokens(Be.text,[],!0,Pt)),xe.push(Be);continue}if(Be=this.tokenizer.reflink(ze,this.tokens.links)){ze=ze.substring(Be.raw.length);var Xt=xe[xe.length-1];Be.type==="link"?(Be.tokens=this.inlineTokens(Be.text,[],!0,Pt),xe.push(Be)):Xt&&Be.type==="text"&&Xt.type==="text"?(Xt.raw+=Be.raw,Xt.text+=Be.text):xe.push(Be);continue}if(Be=this.tokenizer.emStrong(ze,mt,Nt)){ze=ze.substring(Be.raw.length),Be.tokens=this.inlineTokens(Be.text,[],dt,Pt),xe.push(Be);continue}if(Be=this.tokenizer.codespan(ze)){ze=ze.substring(Be.raw.length),xe.push(Be);continue}if(Be=this.tokenizer.br(ze)){ze=ze.substring(Be.raw.length),xe.push(Be);continue}if(Be=this.tokenizer.del(ze)){ze=ze.substring(Be.raw.length),Be.tokens=this.inlineTokens(Be.text,[],dt,Pt),xe.push(Be);continue}if(Be=this.tokenizer.autolink(ze,ft)){ze=ze.substring(Be.raw.length),xe.push(Be);continue}if(!dt&&(Be=this.tokenizer.url(ze,ft))){ze=ze.substring(Be.raw.length),xe.push(Be);continue}if(Be=this.tokenizer.inlineText(ze,Pt,et)){ze=ze.substring(Be.raw.length),Be.raw.slice(-1)!=="_"&&(Nt=Be.raw.slice(-1)),an=!0,Or=xe[xe.length-1],Or&&Or.type==="text"?(Or.raw+=Be.raw,Or.text+=Be.text):xe.push(Be);continue}if(ze){var Er="Infinite loop on byte: "+ze.charCodeAt(0);if(this.options.silent){console.error(Er);break}else throw new Error(Er)}}return xe},e(bt,null,[{key:"rules",get:function(){return{block:$e,inline:gt}}}]),bt}(),Je=c.exports.defaults,Ne=ee.cleanUrl,ye=ee.escape,ke=function(){function bt(yt){this.options=yt||Je}var Te=bt.prototype;return Te.code=function(ze,xe,dt){var Pt=(xe||"").match(/\S*/)[0];if(this.options.highlight){var Be=this.options.highlight(ze,Pt);Be!=null&&Be!==ze&&(dt=!0,ze=Be)}return ze=ze.replace(/\n$/,"")+`
`,Pt?'<pre><code class="'+this.options.langPrefix+ye(Pt,!0)+'">'+(dt?ze:ye(ze,!0))+`</code></pre>
`:"<pre><code>"+(dt?ze:ye(ze,!0))+`</code></pre>
`},Te.blockquote=function(ze){return`<blockquote>
`+ze+`</blockquote>
`},Te.html=function(ze){return ze},Te.heading=function(ze,xe,dt,Pt){return this.options.headerIds?"<h"+xe+' id="'+this.options.headerPrefix+Pt.slug(dt)+'">'+ze+"</h"+xe+`>
`:"<h"+xe+">"+ze+"</h"+xe+`>
`},Te.hr=function(){return this.options.xhtml?`<hr/>
`:`<hr>
`},Te.list=function(ze,xe,dt){var Pt=xe?"ol":"ul",Be=xe&&dt!==1?' start="'+dt+'"':"";return"<"+Pt+Be+`>
`+ze+"</"+Pt+`>
`},Te.listitem=function(ze){return"<li>"+ze+`</li>
`},Te.checkbox=function(ze){return"<input "+(ze?'checked="" ':"")+'disabled="" type="checkbox"'+(this.options.xhtml?" /":"")+"> "},Te.paragraph=function(ze){return"<p>"+ze+`</p>
`},Te.table=function(ze,xe){return xe&&(xe="<tbody>"+xe+"</tbody>"),`<table>
<thead>
`+ze+`</thead>
`+xe+`</table>
`},Te.tablerow=function(ze){return`<tr>
`+ze+`</tr>
`},Te.tablecell=function(ze,xe){var dt=xe.header?"th":"td",Pt=xe.align?"<"+dt+' align="'+xe.align+'">':"<"+dt+">";return Pt+ze+"</"+dt+`>
`},Te.strong=function(ze){return"<strong>"+ze+"</strong>"},Te.em=function(ze){return"<em>"+ze+"</em>"},Te.codespan=function(ze){return"<code>"+ze+"</code>"},Te.br=function(){return this.options.xhtml?"<br/>":"<br>"},Te.del=function(ze){return"<del>"+ze+"</del>"},Te.link=function(ze,xe,dt){if(ze=Ne(this.options.sanitize,this.options.baseUrl,ze),ze===null)return dt;var Pt='<a href="'+ye(ze)+'"';return xe&&(Pt+=' title="'+xe+'"'),Pt+=">"+dt+"</a>",Pt},Te.image=function(ze,xe,dt){if(ze=Ne(this.options.sanitize,this.options.baseUrl,ze),ze===null)return dt;var Pt='<img src="'+ze+'" alt="'+dt+'"';return xe&&(Pt+=' title="'+xe+'"'),Pt+=this.options.xhtml?"/>":">",Pt},Te.text=function(ze){return ze},bt}(),Ge=function(){function bt(){}var Te=bt.prototype;return Te.strong=function(ze){return ze},Te.em=function(ze){return ze},Te.codespan=function(ze){return ze},Te.del=function(ze){return ze},Te.html=function(ze){return ze},Te.text=function(ze){return ze},Te.link=function(ze,xe,dt){return""+dt},Te.image=function(ze,xe,dt){return""+dt},Te.br=function(){return""},bt}(),We=function(){function bt(){this.seen={}}var Te=bt.prototype;return Te.serialize=function(ze){return ze.toLowerCase().trim().replace(/<[!\/a-z].*?>/ig,"").replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-")},Te.getNextSafeSlug=function(ze,xe){var dt=ze,Pt=0;if(this.seen.hasOwnProperty(dt)){Pt=this.seen[ze];do Pt++,dt=ze+"-"+Pt;while(this.seen.hasOwnProperty(dt))}return xe||(this.seen[ze]=Pt,this.seen[dt]=0),dt},Te.slug=function(ze,xe){xe===void 0&&(xe={});var dt=this.serialize(ze);return this.getNextSafeSlug(dt,xe.dryrun)},bt}(),Xe=ke,ut=Ge,pt=We,or=c.exports.defaults,tr=ee.unescape,Me=function(){function bt(yt){this.options=yt||or,this.options.renderer=this.options.renderer||new Xe,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new ut,this.slugger=new pt}bt.parse=function(ze,xe){var dt=new bt(xe);return dt.parse(ze)},bt.parseInline=function(ze,xe){var dt=new bt(xe);return dt.parseInline(ze)};var Te=bt.prototype;return Te.parse=function(ze,xe){xe===void 0&&(xe=!0);var dt="",Pt,Be,Or,mt,qr,an,Nt,qt,Lt,Xt,Er,Pr,At,Kt,Bt,Jt,br,Xr,Wr=ze.length;for(Pt=0;Pt<Wr;Pt++)switch(Xt=ze[Pt],Xt.type){case"space":continue;case"hr":{dt+=this.renderer.hr();continue}case"heading":{dt+=this.renderer.heading(this.parseInline(Xt.tokens),Xt.depth,tr(this.parseInline(Xt.tokens,this.textRenderer)),this.slugger);continue}case"code":{dt+=this.renderer.code(Xt.text,Xt.lang,Xt.escaped);continue}case"table":{for(qt="",Nt="",mt=Xt.header.length,Be=0;Be<mt;Be++)Nt+=this.renderer.tablecell(this.parseInline(Xt.tokens.header[Be]),{header:!0,align:Xt.align[Be]});for(qt+=this.renderer.tablerow(Nt),Lt="",mt=Xt.cells.length,Be=0;Be<mt;Be++){for(an=Xt.tokens.cells[Be],Nt="",qr=an.length,Or=0;Or<qr;Or++)Nt+=this.renderer.tablecell(this.parseInline(an[Or]),{header:!1,align:Xt.align[Or]});Lt+=this.renderer.tablerow(Nt)}dt+=this.renderer.table(qt,Lt);continue}case"blockquote":{Lt=this.parse(Xt.tokens),dt+=this.renderer.blockquote(Lt);continue}case"list":{for(Er=Xt.ordered,Pr=Xt.start,At=Xt.loose,mt=Xt.items.length,Lt="",Be=0;Be<mt;Be++)Bt=Xt.items[Be],Jt=Bt.checked,br=Bt.task,Kt="",Bt.task&&(Xr=this.renderer.checkbox(Jt),At?Bt.tokens.length>0&&Bt.tokens[0].type==="text"?(Bt.tokens[0].text=Xr+" "+Bt.tokens[0].text,Bt.tokens[0].tokens&&Bt.tokens[0].tokens.length>0&&Bt.tokens[0].tokens[0].type==="text"&&(Bt.tokens[0].tokens[0].text=Xr+" "+Bt.tokens[0].tokens[0].text)):Bt.tokens.unshift({type:"text",text:Xr}):Kt+=Xr),Kt+=this.parse(Bt.tokens,At),Lt+=this.renderer.listitem(Kt,br,Jt);dt+=this.renderer.list(Lt,Er,Pr);continue}case"html":{dt+=this.renderer.html(Xt.text);continue}case"paragraph":{dt+=this.renderer.paragraph(this.parseInline(Xt.tokens));continue}case"text":{for(Lt=Xt.tokens?this.parseInline(Xt.tokens):Xt.text;Pt+1<Wr&&ze[Pt+1].type==="text";)Xt=ze[++Pt],Lt+=`
`+(Xt.tokens?this.parseInline(Xt.tokens):Xt.text);dt+=xe?this.renderer.paragraph(Lt):Lt;continue}default:{var jn='Token with "'+Xt.type+'" type was not found.';if(this.options.silent){console.error(jn);return}else throw new Error(jn)}}return dt},Te.parseInline=function(ze,xe){xe=xe||this.renderer;var dt="",Pt,Be,Or=ze.length;for(Pt=0;Pt<Or;Pt++)switch(Be=ze[Pt],Be.type){case"escape":{dt+=xe.text(Be.text);break}case"html":{dt+=xe.html(Be.text);break}case"link":{dt+=xe.link(Be.href,Be.title,this.parseInline(Be.tokens,xe));break}case"image":{dt+=xe.image(Be.href,Be.title,Be.text);break}case"strong":{dt+=xe.strong(this.parseInline(Be.tokens,xe));break}case"em":{dt+=xe.em(this.parseInline(Be.tokens,xe));break}case"codespan":{dt+=xe.codespan(Be.text);break}case"br":{dt+=xe.br();break}case"del":{dt+=xe.del(this.parseInline(Be.tokens,xe));break}case"text":{dt+=xe.text(Be.text);break}default:{var mt='Token with "'+Be.type+'" type was not found.';if(this.options.silent){console.error(mt);return}else throw new Error(mt)}}return dt},bt}(),tt=ot,Yt=Me,Ot=Ie,zt=ke,Ht=Ge,lr=We,Wt=ee.merge,Ce=ee.checkSanitizeDeprecation,ce=ee.escape,pe=c.exports.getDefaults,Ct=c.exports.changeDefaults,Ae=c.exports.defaults;function st(bt,Te,yt){if(typeof bt=="undefined"||bt===null)throw new Error("marked(): input parameter is undefined or null");if(typeof bt!="string")throw new Error("marked(): input parameter is of type "+Object.prototype.toString.call(bt)+", string expected");if(typeof Te=="function"&&(yt=Te,Te=null),Te=Wt({},st.defaults,Te||{}),Ce(Te),yt){var ze=Te.highlight,xe;try{xe=tt.lex(bt,Te)}catch(Or){return yt(Or)}var dt=function(mt){var qr;if(!mt)try{Te.walkTokens&&st.walkTokens(xe,Te.walkTokens),qr=Yt.parse(xe,Te)}catch(an){mt=an}return Te.highlight=ze,mt?yt(mt):yt(null,qr)};if(!ze||ze.length<3||(delete Te.highlight,!xe.length))return dt();var Pt=0;st.walkTokens(xe,function(Or){Or.type==="code"&&(Pt++,setTimeout(function(){ze(Or.text,Or.lang,function(mt,qr){if(mt)return dt(mt);qr!=null&&qr!==Or.text&&(Or.text=qr,Or.escaped=!0),Pt--,Pt===0&&dt()})},0))}),Pt===0&&dt();return}try{var Be=tt.lex(bt,Te);return Te.walkTokens&&st.walkTokens(Be,Te.walkTokens),Yt.parse(Be,Te)}catch(Or){if(Or.message+=`
Please report this to https://github.com/markedjs/marked.`,Te.silent)return"<p>An error occurred:</p><pre>"+ce(Or.message+"",!0)+"</pre>";throw Or}}st.options=st.setOptions=function(bt){return Wt(st.defaults,bt),Ct(st.defaults),st},st.getDefaults=pe,st.defaults=Ae,st.use=function(bt){var Te=Wt({},bt);if(bt.renderer&&function(){var ze=st.defaults.renderer||new zt,xe=function(Be){var Or=ze[Be];ze[Be]=function(){for(var mt=arguments.length,qr=new Array(mt),an=0;an<mt;an++)qr[an]=arguments[an];var Nt=bt.renderer[Be].apply(ze,qr);return Nt===!1&&(Nt=Or.apply(ze,qr)),Nt}};for(var dt in bt.renderer)xe(dt);Te.renderer=ze}(),bt.tokenizer&&function(){var ze=st.defaults.tokenizer||new Ot,xe=function(Be){var Or=ze[Be];ze[Be]=function(){for(var mt=arguments.length,qr=new Array(mt),an=0;an<mt;an++)qr[an]=arguments[an];var Nt=bt.tokenizer[Be].apply(ze,qr);return Nt===!1&&(Nt=Or.apply(ze,qr)),Nt}};for(var dt in bt.tokenizer)xe(dt);Te.tokenizer=ze}(),bt.walkTokens){var yt=st.defaults.walkTokens;Te.walkTokens=function(ze){bt.walkTokens(ze),yt&&yt(ze)}}st.setOptions(Te)},st.walkTokens=function(bt,Te){for(var yt=l(bt),ze;!(ze=yt()).done;){var xe=ze.value;switch(Te(xe),xe.type){case"table":{for(var dt=l(xe.tokens.header),Pt;!(Pt=dt()).done;){var Be=Pt.value;st.walkTokens(Be,Te)}for(var Or=l(xe.tokens.cells),mt;!(mt=Or()).done;)for(var qr=mt.value,an=l(qr),Nt;!(Nt=an()).done;){var qt=Nt.value;st.walkTokens(qt,Te)}break}case"list":{st.walkTokens(xe.items,Te);break}default:xe.tokens&&st.walkTokens(xe.tokens,Te)}}},st.parseInline=function(bt,Te){if(typeof bt=="undefined"||bt===null)throw new Error("marked.parseInline(): input parameter is undefined or null");if(typeof bt!="string")throw new Error("marked.parseInline(): input parameter is of type "+Object.prototype.toString.call(bt)+", string expected");Te=Wt({},st.defaults,Te||{}),Ce(Te);try{var yt=tt.lexInline(bt,Te);return Te.walkTokens&&st.walkTokens(yt,Te.walkTokens),Yt.parseInline(yt,Te)}catch(ze){if(ze.message+=`
Please report this to https://github.com/markedjs/marked.`,Te.silent)return"<p>An error occurred:</p><pre>"+ce(ze.message+"",!0)+"</pre>";throw ze}},st.Parser=Yt,st.parser=Yt.parse,st.Renderer=zt,st.TextRenderer=Ht,st.Lexer=tt,st.lexer=tt.lex,st.Tokenizer=Ot,st.Slugger=lr,st.parse=st;var Gt=st;return Gt})},11690:function(d){const v=/[&<>"']/,e=/[&<>"']/g,r=/[<>"']|&(?!#?\w+;)/,i=/[<>"']|&(?!#?\w+;)/g,l={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},c=W=>l[W];function f(W,ae){if(ae){if(v.test(W))return W.replace(e,c)}else if(r.test(W))return W.replace(i,c);return W}const o=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig;function h(W){return W.replace(o,(ae,ne)=>(ne=ne.toLowerCase(),ne==="colon"?":":ne.charAt(0)==="#"?ne.charAt(1)==="x"?String.fromCharCode(parseInt(ne.substring(2),16)):String.fromCharCode(+ne.substring(1)):""))}const u=/(^|[^\[])\^/g;function a(W,ae){W=W.source||W,ae=ae||"";const ne={replace:(oe,q)=>(q=q.source||q,q=q.replace(u,"$1"),W=W.replace(oe,q),ne),getRegex:()=>new RegExp(W,ae)};return ne}const x=/[^\w:]/g,p=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function y(W,ae,ne){if(W){let oe;try{oe=decodeURIComponent(h(ne)).replace(x,"").toLowerCase()}catch(q){return null}if(oe.indexOf("javascript:")===0||oe.indexOf("vbscript:")===0||oe.indexOf("data:")===0)return null}ae&&!p.test(ne)&&(ne=R(ae,ne));try{ne=encodeURI(ne).replace(/%25/g,"%")}catch(oe){return null}return ne}const m={},b=/^[^:]+:\/*[^/]*$/,S=/^([^:]+:)[\s\S]*$/,k=/^([^:]+:\/*[^/]*)[\s\S]*$/;function R(W,ae){m[" "+W]||(b.test(W)?m[" "+W]=W+"/":m[" "+W]=B(W,"/",!0)),W=m[" "+W];const ne=W.indexOf(":")===-1;return ae.substring(0,2)==="//"?ne?ae:W.replace(S,"$1")+ae:ae.charAt(0)==="/"?ne?ae:W.replace(k,"$1")+ae:W+ae}const A={exec:function(){}};function P(W){let ae=1,ne,oe;for(;ae<arguments.length;ae++){ne=arguments[ae];for(oe in ne)Object.prototype.hasOwnProperty.call(ne,oe)&&(W[oe]=ne[oe])}return W}function M(W,ae){const ne=W.replace(/\|/g,(X,V,se)=>{let ee=!1,J=V;for(;--J>=0&&se[J]==="\\";)ee=!ee;return ee?"|":" |"}),oe=ne.split(/ \|/);let q=0;if(oe.length>ae)oe.splice(ae);else for(;oe.length<ae;)oe.push("");for(;q<oe.length;q++)oe[q]=oe[q].trim().replace(/\\\|/g,"|");return oe}function B(W,ae,ne){const oe=W.length;if(oe===0)return"";let q=0;for(;q<oe;){const X=W.charAt(oe-q-1);if(X===ae&&!ne)q++;else if(X!==ae&&ne)q++;else break}return W.substr(0,oe-q)}function N(W,ae){if(W.indexOf(ae[1])===-1)return-1;const ne=W.length;let oe=0,q=0;for(;q<ne;q++)if(W[q]==="\\")q++;else if(W[q]===ae[0])oe++;else if(W[q]===ae[1]&&(oe--,oe<0))return q;return-1}function K(W){W&&W.sanitize&&!W.silent&&console.warn("marked(): sanitize and sanitizer parameters are deprecated since version 0.7.0, should not be used and will be removed in the future. Read more here: https://marked.js.org/#/USING_ADVANCED.md#options")}function H(W,ae){if(ae<1)return"";let ne="";for(;ae>1;)ae&1&&(ne+=W),ae>>=1,W+=W;return ne+W}d.exports={escape:f,unescape:h,edit:a,cleanUrl:y,resolveUrl:R,noopTest:A,merge:P,splitCells:M,rtrim:B,findClosingBracket:N,checkSanitizeDeprecation:K,repeatString:H}},93735:function(d,v,e){(function(){var r=e(75041),i=e(67751).utf8,l=e(78034),c=e(67751).bin,f=function(o,h){o.constructor==String?h&&h.encoding==="binary"?o=c.stringToBytes(o):o=i.stringToBytes(o):l(o)?o=Array.prototype.slice.call(o,0):!Array.isArray(o)&&o.constructor!==Uint8Array&&(o=o.toString());for(var u=r.bytesToWords(o),a=o.length*8,x=1732584193,p=-271733879,y=-1732584194,m=271733878,b=0;b<u.length;b++)u[b]=(u[b]<<8|u[b]>>>24)&16711935|(u[b]<<24|u[b]>>>8)&4278255360;u[a>>>5]|=128<<a%32,u[(a+64>>>9<<4)+14]=a;for(var S=f._ff,k=f._gg,R=f._hh,A=f._ii,b=0;b<u.length;b+=16){var P=x,M=p,B=y,N=m;x=S(x,p,y,m,u[b+0],7,-680876936),m=S(m,x,p,y,u[b+1],12,-389564586),y=S(y,m,x,p,u[b+2],17,606105819),p=S(p,y,m,x,u[b+3],22,-1044525330),x=S(x,p,y,m,u[b+4],7,-176418897),m=S(m,x,p,y,u[b+5],12,1200080426),y=S(y,m,x,p,u[b+6],17,-1473231341),p=S(p,y,m,x,u[b+7],22,-45705983),x=S(x,p,y,m,u[b+8],7,1770035416),m=S(m,x,p,y,u[b+9],12,-1958414417),y=S(y,m,x,p,u[b+10],17,-42063),p=S(p,y,m,x,u[b+11],22,-1990404162),x=S(x,p,y,m,u[b+12],7,1804603682),m=S(m,x,p,y,u[b+13],12,-40341101),y=S(y,m,x,p,u[b+14],17,-1502002290),p=S(p,y,m,x,u[b+15],22,1236535329),x=k(x,p,y,m,u[b+1],5,-165796510),m=k(m,x,p,y,u[b+6],9,-1069501632),y=k(y,m,x,p,u[b+11],14,643717713),p=k(p,y,m,x,u[b+0],20,-373897302),x=k(x,p,y,m,u[b+5],5,-701558691),m=k(m,x,p,y,u[b+10],9,38016083),y=k(y,m,x,p,u[b+15],14,-660478335),p=k(p,y,m,x,u[b+4],20,-405537848),x=k(x,p,y,m,u[b+9],5,568446438),m=k(m,x,p,y,u[b+14],9,-1019803690),y=k(y,m,x,p,u[b+3],14,-187363961),p=k(p,y,m,x,u[b+8],20,1163531501),x=k(x,p,y,m,u[b+13],5,-1444681467),m=k(m,x,p,y,u[b+2],9,-51403784),y=k(y,m,x,p,u[b+7],14,1735328473),p=k(p,y,m,x,u[b+12],20,-1926607734),x=R(x,p,y,m,u[b+5],4,-378558),m=R(m,x,p,y,u[b+8],11,-2022574463),y=R(y,m,x,p,u[b+11],16,1839030562),p=R(p,y,m,x,u[b+14],23,-35309556),x=R(x,p,y,m,u[b+1],4,-1530992060),m=R(m,x,p,y,u[b+4],11,1272893353),y=R(y,m,x,p,u[b+7],16,-155497632),p=R(p,y,m,x,u[b+10],23,-1094730640),x=R(x,p,y,m,u[b+13],4,681279174),m=R(m,x,p,y,u[b+0],11,-358537222),y=R(y,m,x,p,u[b+3],16,-722521979),p=R(p,y,m,x,u[b+6],23,76029189),x=R(x,p,y,m,u[b+9],4,-640364487),m=R(m,x,p,y,u[b+12],11,-421815835),y=R(y,m,x,p,u[b+15],16,530742520),p=R(p,y,m,x,u[b+2],23,-995338651),x=A(x,p,y,m,u[b+0],6,-198630844),m=A(m,x,p,y,u[b+7],10,1126891415),y=A(y,m,x,p,u[b+14],15,-1416354905),p=A(p,y,m,x,u[b+5],21,-57434055),x=A(x,p,y,m,u[b+12],6,1700485571),m=A(m,x,p,y,u[b+3],10,-1894986606),y=A(y,m,x,p,u[b+10],15,-1051523),p=A(p,y,m,x,u[b+1],21,-2054922799),x=A(x,p,y,m,u[b+8],6,1873313359),m=A(m,x,p,y,u[b+15],10,-30611744),y=A(y,m,x,p,u[b+6],15,-1560198380),p=A(p,y,m,x,u[b+13],21,1309151649),x=A(x,p,y,m,u[b+4],6,-145523070),m=A(m,x,p,y,u[b+11],10,-1120210379),y=A(y,m,x,p,u[b+2],15,718787259),p=A(p,y,m,x,u[b+9],21,-343485551),x=x+P>>>0,p=p+M>>>0,y=y+B>>>0,m=m+N>>>0}return r.endian([x,p,y,m])};f._ff=function(o,h,u,a,x,p,y){var m=o+(h&u|~h&a)+(x>>>0)+y;return(m<<p|m>>>32-p)+h},f._gg=function(o,h,u,a,x,p,y){var m=o+(h&a|u&~a)+(x>>>0)+y;return(m<<p|m>>>32-p)+h},f._hh=function(o,h,u,a,x,p,y){var m=o+(h^u^a)+(x>>>0)+y;return(m<<p|m>>>32-p)+h},f._ii=function(o,h,u,a,x,p,y){var m=o+(u^(h|~a))+(x>>>0)+y;return(m<<p|m>>>32-p)+h},f._blocksize=16,f._digestsize=16,d.exports=function(o,h){if(o==null)throw new Error("Illegal argument "+o);var u=r.wordsToBytes(f(o,h));return h&&h.asBytes?u:h&&h.asString?c.bytesToString(u):r.bytesToHex(u)}})()},61339:function(d){d.exports=v;function v(e,r){if(!e)throw new Error(r||"Assertion failed")}v.equal=function(r,i,l){if(r!=i)throw new Error(l||"Assertion failed: "+r+" != "+i)}},75918:function(d,v,e){"use strict";e.d(v,{Wi:function(){return o},Z0:function(){return h},aU:function(){return f},eZ:function(){return a},wY:function(){return u}});var r=e(4348),i=e(69323),l=e(13268),c=function(x,p,y,m){function b(S){return S instanceof y?S:new y(function(k){k(S)})}return new(y||(y=Promise))(function(S,k){function R(M){try{P(m.next(M))}catch(B){k(B)}}function A(M){try{P(m.throw(M))}catch(B){k(B)}}function P(M){M.done?S(M.value):b(M.value).then(R,A)}P((m=m.apply(x,p||[])).next())})};class f extends i.JT{constructor(p,y="",m="",b=!0,S){super(),this._onDidChange=this._register(new r.Q5),this.onDidChange=this._onDidChange.event,this._enabled=!0,this._id=p,this._label=y,this._cssClass=m,this._enabled=b,this._actionCallback=S}get id(){return this._id}get label(){return this._label}set label(p){this._setLabel(p)}_setLabel(p){this._label!==p&&(this._label=p,this._onDidChange.fire({label:p}))}get tooltip(){return this._tooltip||""}set tooltip(p){this._setTooltip(p)}_setTooltip(p){this._tooltip!==p&&(this._tooltip=p,this._onDidChange.fire({tooltip:p}))}get class(){return this._cssClass}set class(p){this._setClass(p)}_setClass(p){this._cssClass!==p&&(this._cssClass=p,this._onDidChange.fire({class:p}))}get enabled(){return this._enabled}set enabled(p){this._setEnabled(p)}_setEnabled(p){this._enabled!==p&&(this._enabled=p,this._onDidChange.fire({enabled:p}))}get checked(){return this._checked}set checked(p){this._setChecked(p)}_setChecked(p){this._checked!==p&&(this._checked=p,this._onDidChange.fire({checked:p}))}run(p,y){return c(this,void 0,void 0,function*(){this._actionCallback&&(yield this._actionCallback(p))})}}class o extends i.JT{constructor(){super(...arguments),this._onBeforeRun=this._register(new r.Q5),this.onBeforeRun=this._onBeforeRun.event,this._onDidRun=this._register(new r.Q5),this.onDidRun=this._onDidRun.event}run(p,y){return c(this,void 0,void 0,function*(){if(!p.enabled)return;this._onBeforeRun.fire({action:p});let m;try{yield this.runAction(p,y)}catch(b){m=b}this._onDidRun.fire({action:p,error:m})})}runAction(p,y){return c(this,void 0,void 0,function*(){yield p.run(y)})}}class h extends f{constructor(p){super(h.ID,p,p?"separator text":"separator"),this.checked=!1,this.enabled=!1}}h.ID="vs.actions.separator";class u{constructor(p,y,m,b){this.tooltip="",this.enabled=!0,this.checked=!1,this.id=p,this.label=y,this.class=b,this._actions=m}get actions(){return this._actions}dispose(){}run(){return c(this,void 0,void 0,function*(){})}}class a extends f{constructor(){super(a.ID,l.N("submenu.empty","(empty)"),void 0,!1)}}a.ID="vs.actions.empty"},76068:function(d,v,e){"use strict";e.d(v,{ok:function(){return r}});function r(i,l){if(!i)throw new Error(l?`Assertion failed (${l})`:"Assertion Failed")}},52615:function(d,v,e){"use strict";e.d(v,{CM:function(){return f},JL:function(){return o},dT:function(){return u},fK:function(){return c},lA:function(){return h}});var r=e(4348);class i{constructor(){this._icons=new Map,this._onDidRegister=new r.Q5}add(x){const p=this._icons.get(x.id);p?x.description?p.description=x.description:console.error(`Duplicate registration of codicon ${x.id}`):(this._icons.set(x.id,x),this._onDidRegister.fire(x))}get(x){return this._icons.get(x)}get all(){return this._icons.values()}get onDidRegister(){return this._onDidRegister.event}}const l=new i,c=l;function f(a,x){return new h(a,x)}function o(a){return a?a.replace(/\$\((.*?)\)/g,(x,p)=>` ${p} `).trim():""}class h{constructor(x,p,y){this.id=x,this.definition=p,this.description=y,l.add(this)}get classNames(){return"codicon codicon-"+this.id}get classNamesArray(){return["codicon","codicon-"+this.id]}get cssSelector(){return".codicon.codicon-"+this.id}}var u;(function(a){a.iconNameSegment="[A-Za-z0-9]+",a.iconNameExpression="[A-Za-z0-9\\-]+",a.iconModifierExpression="~[A-Za-z]+";const x=new RegExp(`^(${a.iconNameExpression})(${a.iconModifierExpression})?$`);function p(b){if(b instanceof h)return["codicon","codicon-"+b.id];const S=x.exec(b.id);if(!S)return p(h.error);let[,k,R]=S;const A=["codicon","codicon-"+k];return R&&A.push("codicon-modifier-"+R.substr(1)),A}a.asClassNameArray=p;function y(b){return p(b).join(" ")}a.asClassName=y;function m(b){return"."+p(b).join(".")}a.asCSSSelector=m})(u||(u={})),function(a){a.add=new a("add",{fontCharacter:"\\ea60"}),a.plus=new a("plus",a.add.definition),a.gistNew=new a("gist-new",a.add.definition),a.repoCreate=new a("repo-create",a.add.definition),a.lightbulb=new a("lightbulb",{fontCharacter:"\\ea61"}),a.lightBulb=new a("light-bulb",{fontCharacter:"\\ea61"}),a.repo=new a("repo",{fontCharacter:"\\ea62"}),a.repoDelete=new a("repo-delete",{fontCharacter:"\\ea62"}),a.gistFork=new a("gist-fork",{fontCharacter:"\\ea63"}),a.repoForked=new a("repo-forked",{fontCharacter:"\\ea63"}),a.gitPullRequest=new a("git-pull-request",{fontCharacter:"\\ea64"}),a.gitPullRequestAbandoned=new a("git-pull-request-abandoned",{fontCharacter:"\\ea64"}),a.recordKeys=new a("record-keys",{fontCharacter:"\\ea65"}),a.keyboard=new a("keyboard",{fontCharacter:"\\ea65"}),a.tag=new a("tag",{fontCharacter:"\\ea66"}),a.tagAdd=new a("tag-add",{fontCharacter:"\\ea66"}),a.tagRemove=new a("tag-remove",{fontCharacter:"\\ea66"}),a.person=new a("person",{fontCharacter:"\\ea67"}),a.personFollow=new a("person-follow",{fontCharacter:"\\ea67"}),a.personOutline=new a("person-outline",{fontCharacter:"\\ea67"}),a.personFilled=new a("person-filled",{fontCharacter:"\\ea67"}),a.gitBranch=new a("git-branch",{fontCharacter:"\\ea68"}),a.gitBranchCreate=new a("git-branch-create",{fontCharacter:"\\ea68"}),a.gitBranchDelete=new a("git-branch-delete",{fontCharacter:"\\ea68"}),a.sourceControl=new a("source-control",{fontCharacter:"\\ea68"}),a.mirror=new a("mirror",{fontCharacter:"\\ea69"}),a.mirrorPublic=new a("mirror-public",{fontCharacter:"\\ea69"}),a.star=new a("star",{fontCharacter:"\\ea6a"}),a.starAdd=new a("star-add",{fontCharacter:"\\ea6a"}),a.starDelete=new a("star-delete",{fontCharacter:"\\ea6a"}),a.starEmpty=new a("star-empty",{fontCharacter:"\\ea6a"}),a.comment=new a("comment",{fontCharacter:"\\ea6b"}),a.commentAdd=new a("comment-add",{fontCharacter:"\\ea6b"}),a.alert=new a("alert",{fontCharacter:"\\ea6c"}),a.warning=new a("warning",{fontCharacter:"\\ea6c"}),a.search=new a("search",{fontCharacter:"\\ea6d"}),a.searchSave=new a("search-save",{fontCharacter:"\\ea6d"}),a.logOut=new a("log-out",{fontCharacter:"\\ea6e"}),a.signOut=new a("sign-out",{fontCharacter:"\\ea6e"}),a.logIn=new a("log-in",{fontCharacter:"\\ea6f"}),a.signIn=new a("sign-in",{fontCharacter:"\\ea6f"}),a.eye=new a("eye",{fontCharacter:"\\ea70"}),a.eyeUnwatch=new a("eye-unwatch",{fontCharacter:"\\ea70"}),a.eyeWatch=new a("eye-watch",{fontCharacter:"\\ea70"}),a.circleFilled=new a("circle-filled",{fontCharacter:"\\ea71"}),a.primitiveDot=new a("primitive-dot",{fontCharacter:"\\ea71"}),a.closeDirty=new a("close-dirty",{fontCharacter:"\\ea71"}),a.debugBreakpoint=new a("debug-breakpoint",{fontCharacter:"\\ea71"}),a.debugBreakpointDisabled=new a("debug-breakpoint-disabled",{fontCharacter:"\\ea71"}),a.debugHint=new a("debug-hint",{fontCharacter:"\\ea71"}),a.primitiveSquare=new a("primitive-square",{fontCharacter:"\\ea72"}),a.edit=new a("edit",{fontCharacter:"\\ea73"}),a.pencil=new a("pencil",{fontCharacter:"\\ea73"}),a.info=new a("info",{fontCharacter:"\\ea74"}),a.issueOpened=new a("issue-opened",{fontCharacter:"\\ea74"}),a.gistPrivate=new a("gist-private",{fontCharacter:"\\ea75"}),a.gitForkPrivate=new a("git-fork-private",{fontCharacter:"\\ea75"}),a.lock=new a("lock",{fontCharacter:"\\ea75"}),a.mirrorPrivate=new a("mirror-private",{fontCharacter:"\\ea75"}),a.close=new a("close",{fontCharacter:"\\ea76"}),a.removeClose=new a("remove-close",{fontCharacter:"\\ea76"}),a.x=new a("x",{fontCharacter:"\\ea76"}),a.repoSync=new a("repo-sync",{fontCharacter:"\\ea77"}),a.sync=new a("sync",{fontCharacter:"\\ea77"}),a.clone=new a("clone",{fontCharacter:"\\ea78"}),a.desktopDownload=new a("desktop-download",{fontCharacter:"\\ea78"}),a.beaker=new a("beaker",{fontCharacter:"\\ea79"}),a.microscope=new a("microscope",{fontCharacter:"\\ea79"}),a.vm=new a("vm",{fontCharacter:"\\ea7a"}),a.deviceDesktop=new a("device-desktop",{fontCharacter:"\\ea7a"}),a.file=new a("file",{fontCharacter:"\\ea7b"}),a.fileText=new a("file-text",{fontCharacter:"\\ea7b"}),a.more=new a("more",{fontCharacter:"\\ea7c"}),a.ellipsis=new a("ellipsis",{fontCharacter:"\\ea7c"}),a.kebabHorizontal=new a("kebab-horizontal",{fontCharacter:"\\ea7c"}),a.mailReply=new a("mail-reply",{fontCharacter:"\\ea7d"}),a.reply=new a("reply",{fontCharacter:"\\ea7d"}),a.organization=new a("organization",{fontCharacter:"\\ea7e"}),a.organizationFilled=new a("organization-filled",{fontCharacter:"\\ea7e"}),a.organizationOutline=new a("organization-outline",{fontCharacter:"\\ea7e"}),a.newFile=new a("new-file",{fontCharacter:"\\ea7f"}),a.fileAdd=new a("file-add",{fontCharacter:"\\ea7f"}),a.newFolder=new a("new-folder",{fontCharacter:"\\ea80"}),a.fileDirectoryCreate=new a("file-directory-create",{fontCharacter:"\\ea80"}),a.trash=new a("trash",{fontCharacter:"\\ea81"}),a.trashcan=new a("trashcan",{fontCharacter:"\\ea81"}),a.history=new a("history",{fontCharacter:"\\ea82"}),a.clock=new a("clock",{fontCharacter:"\\ea82"}),a.folder=new a("folder",{fontCharacter:"\\ea83"}),a.fileDirectory=new a("file-directory",{fontCharacter:"\\ea83"}),a.symbolFolder=new a("symbol-folder",{fontCharacter:"\\ea83"}),a.logoGithub=new a("logo-github",{fontCharacter:"\\ea84"}),a.markGithub=new a("mark-github",{fontCharacter:"\\ea84"}),a.github=new a("github",{fontCharacter:"\\ea84"}),a.terminal=new a("terminal",{fontCharacter:"\\ea85"}),a.console=new a("console",{fontCharacter:"\\ea85"}),a.repl=new a("repl",{fontCharacter:"\\ea85"}),a.zap=new a("zap",{fontCharacter:"\\ea86"}),a.symbolEvent=new a("symbol-event",{fontCharacter:"\\ea86"}),a.error=new a("error",{fontCharacter:"\\ea87"}),a.stop=new a("stop",{fontCharacter:"\\ea87"}),a.variable=new a("variable",{fontCharacter:"\\ea88"}),a.symbolVariable=new a("symbol-variable",{fontCharacter:"\\ea88"}),a.array=new a("array",{fontCharacter:"\\ea8a"}),a.symbolArray=new a("symbol-array",{fontCharacter:"\\ea8a"}),a.symbolModule=new a("symbol-module",{fontCharacter:"\\ea8b"}),a.symbolPackage=new a("symbol-package",{fontCharacter:"\\ea8b"}),a.symbolNamespace=new a("symbol-namespace",{fontCharacter:"\\ea8b"}),a.symbolObject=new a("symbol-object",{fontCharacter:"\\ea8b"}),a.symbolMethod=new a("symbol-method",{fontCharacter:"\\ea8c"}),a.symbolFunction=new a("symbol-function",{fontCharacter:"\\ea8c"}),a.symbolConstructor=new a("symbol-constructor",{fontCharacter:"\\ea8c"}),a.symbolBoolean=new a("symbol-boolean",{fontCharacter:"\\ea8f"}),a.symbolNull=new a("symbol-null",{fontCharacter:"\\ea8f"}),a.symbolNumeric=new a("symbol-numeric",{fontCharacter:"\\ea90"}),a.symbolNumber=new a("symbol-number",{fontCharacter:"\\ea90"}),a.symbolStructure=new a("symbol-structure",{fontCharacter:"\\ea91"}),a.symbolStruct=new a("symbol-struct",{fontCharacter:"\\ea91"}),a.symbolParameter=new a("symbol-parameter",{fontCharacter:"\\ea92"}),a.symbolTypeParameter=new a("symbol-type-parameter",{fontCharacter:"\\ea92"}),a.symbolKey=new a("symbol-key",{fontCharacter:"\\ea93"}),a.symbolText=new a("symbol-text",{fontCharacter:"\\ea93"}),a.symbolReference=new a("symbol-reference",{fontCharacter:"\\ea94"}),a.goToFile=new a("go-to-file",{fontCharacter:"\\ea94"}),a.symbolEnum=new a("symbol-enum",{fontCharacter:"\\ea95"}),a.symbolValue=new a("symbol-value",{fontCharacter:"\\ea95"}),a.symbolRuler=new a("symbol-ruler",{fontCharacter:"\\ea96"}),a.symbolUnit=new a("symbol-unit",{fontCharacter:"\\ea96"}),a.activateBreakpoints=new a("activate-breakpoints",{fontCharacter:"\\ea97"}),a.archive=new a("archive",{fontCharacter:"\\ea98"}),a.arrowBoth=new a("arrow-both",{fontCharacter:"\\ea99"}),a.arrowDown=new a("arrow-down",{fontCharacter:"\\ea9a"}),a.arrowLeft=new a("arrow-left",{fontCharacter:"\\ea9b"}),a.arrowRight=new a("arrow-right",{fontCharacter:"\\ea9c"}),a.arrowSmallDown=new a("arrow-small-down",{fontCharacter:"\\ea9d"}),a.arrowSmallLeft=new a("arrow-small-left",{fontCharacter:"\\ea9e"}),a.arrowSmallRight=new a("arrow-small-right",{fontCharacter:"\\ea9f"}),a.arrowSmallUp=new a("arrow-small-up",{fontCharacter:"\\eaa0"}),a.arrowUp=new a("arrow-up",{fontCharacter:"\\eaa1"}),a.bell=new a("bell",{fontCharacter:"\\eaa2"}),a.bold=new a("bold",{fontCharacter:"\\eaa3"}),a.book=new a("book",{fontCharacter:"\\eaa4"}),a.bookmark=new a("bookmark",{fontCharacter:"\\eaa5"}),a.debugBreakpointConditionalUnverified=new a("debug-breakpoint-conditional-unverified",{fontCharacter:"\\eaa6"}),a.debugBreakpointConditional=new a("debug-breakpoint-conditional",{fontCharacter:"\\eaa7"}),a.debugBreakpointConditionalDisabled=new a("debug-breakpoint-conditional-disabled",{fontCharacter:"\\eaa7"}),a.debugBreakpointDataUnverified=new a("debug-breakpoint-data-unverified",{fontCharacter:"\\eaa8"}),a.debugBreakpointData=new a("debug-breakpoint-data",{fontCharacter:"\\eaa9"}),a.debugBreakpointDataDisabled=new a("debug-breakpoint-data-disabled",{fontCharacter:"\\eaa9"}),a.debugBreakpointLogUnverified=new a("debug-breakpoint-log-unverified",{fontCharacter:"\\eaaa"}),a.debugBreakpointLog=new a("debug-breakpoint-log",{fontCharacter:"\\eaab"}),a.debugBreakpointLogDisabled=new a("debug-breakpoint-log-disabled",{fontCharacter:"\\eaab"}),a.briefcase=new a("briefcase",{fontCharacter:"\\eaac"}),a.broadcast=new a("broadcast",{fontCharacter:"\\eaad"}),a.browser=new a("browser",{fontCharacter:"\\eaae"}),a.bug=new a("bug",{fontCharacter:"\\eaaf"}),a.calendar=new a("calendar",{fontCharacter:"\\eab0"}),a.caseSensitive=new a("case-sensitive",{fontCharacter:"\\eab1"}),a.check=new a("check",{fontCharacter:"\\eab2"}),a.checklist=new a("checklist",{fontCharacter:"\\eab3"}),a.chevronDown=new a("chevron-down",{fontCharacter:"\\eab4"}),a.dropDownButton=new a("drop-down-button",a.chevronDown.definition),a.chevronLeft=new a("chevron-left",{fontCharacter:"\\eab5"}),a.chevronRight=new a("chevron-right",{fontCharacter:"\\eab6"}),a.chevronUp=new a("chevron-up",{fontCharacter:"\\eab7"}),a.chromeClose=new a("chrome-close",{fontCharacter:"\\eab8"}),a.chromeMaximize=new a("chrome-maximize",{fontCharacter:"\\eab9"}),a.chromeMinimize=new a("chrome-minimize",{fontCharacter:"\\eaba"}),a.chromeRestore=new a("chrome-restore",{fontCharacter:"\\eabb"}),a.circleOutline=new a("circle-outline",{fontCharacter:"\\eabc"}),a.debugBreakpointUnverified=new a("debug-breakpoint-unverified",{fontCharacter:"\\eabc"}),a.circleSlash=new a("circle-slash",{fontCharacter:"\\eabd"}),a.circuitBoard=new a("circuit-board",{fontCharacter:"\\eabe"}),a.clearAll=new a("clear-all",{fontCharacter:"\\eabf"}),a.clippy=new a("clippy",{fontCharacter:"\\eac0"}),a.closeAll=new a("close-all",{fontCharacter:"\\eac1"}),a.cloudDownload=new a("cloud-download",{fontCharacter:"\\eac2"}),a.cloudUpload=new a("cloud-upload",{fontCharacter:"\\eac3"}),a.code=new a("code",{fontCharacter:"\\eac4"}),a.collapseAll=new a("collapse-all",{fontCharacter:"\\eac5"}),a.colorMode=new a("color-mode",{fontCharacter:"\\eac6"}),a.commentDiscussion=new a("comment-discussion",{fontCharacter:"\\eac7"}),a.compareChanges=new a("compare-changes",{fontCharacter:"\\eafd"}),a.creditCard=new a("credit-card",{fontCharacter:"\\eac9"}),a.dash=new a("dash",{fontCharacter:"\\eacc"}),a.dashboard=new a("dashboard",{fontCharacter:"\\eacd"}),a.database=new a("database",{fontCharacter:"\\eace"}),a.debugContinue=new a("debug-continue",{fontCharacter:"\\eacf"}),a.debugDisconnect=new a("debug-disconnect",{fontCharacter:"\\ead0"}),a.debugPause=new a("debug-pause",{fontCharacter:"\\ead1"}),a.debugRestart=new a("debug-restart",{fontCharacter:"\\ead2"}),a.debugStart=new a("debug-start",{fontCharacter:"\\ead3"}),a.debugStepInto=new a("debug-step-into",{fontCharacter:"\\ead4"}),a.debugStepOut=new a("debug-step-out",{fontCharacter:"\\ead5"}),a.debugStepOver=new a("debug-step-over",{fontCharacter:"\\ead6"}),a.debugStop=new a("debug-stop",{fontCharacter:"\\ead7"}),a.debug=new a("debug",{fontCharacter:"\\ead8"}),a.deviceCameraVideo=new a("device-camera-video",{fontCharacter:"\\ead9"}),a.deviceCamera=new a("device-camera",{fontCharacter:"\\eada"}),a.deviceMobile=new a("device-mobile",{fontCharacter:"\\eadb"}),a.diffAdded=new a("diff-added",{fontCharacter:"\\eadc"}),a.diffIgnored=new a("diff-ignored",{fontCharacter:"\\eadd"}),a.diffModified=new a("diff-modified",{fontCharacter:"\\eade"}),a.diffRemoved=new a("diff-removed",{fontCharacter:"\\eadf"}),a.diffRenamed=new a("diff-renamed",{fontCharacter:"\\eae0"}),a.diff=new a("diff",{fontCharacter:"\\eae1"}),a.discard=new a("discard",{fontCharacter:"\\eae2"}),a.editorLayout=new a("editor-layout",{fontCharacter:"\\eae3"}),a.emptyWindow=new a("empty-window",{fontCharacter:"\\eae4"}),a.exclude=new a("exclude",{fontCharacter:"\\eae5"}),a.extensions=new a("extensions",{fontCharacter:"\\eae6"}),a.eyeClosed=new a("eye-closed",{fontCharacter:"\\eae7"}),a.fileBinary=new a("file-binary",{fontCharacter:"\\eae8"}),a.fileCode=new a("file-code",{fontCharacter:"\\eae9"}),a.fileMedia=new a("file-media",{fontCharacter:"\\eaea"}),a.filePdf=new a("file-pdf",{fontCharacter:"\\eaeb"}),a.fileSubmodule=new a("file-submodule",{fontCharacter:"\\eaec"}),a.fileSymlinkDirectory=new a("file-symlink-directory",{fontCharacter:"\\eaed"}),a.fileSymlinkFile=new a("file-symlink-file",{fontCharacter:"\\eaee"}),a.fileZip=new a("file-zip",{fontCharacter:"\\eaef"}),a.files=new a("files",{fontCharacter:"\\eaf0"}),a.filter=new a("filter",{fontCharacter:"\\eaf1"}),a.flame=new a("flame",{fontCharacter:"\\eaf2"}),a.foldDown=new a("fold-down",{fontCharacter:"\\eaf3"}),a.foldUp=new a("fold-up",{fontCharacter:"\\eaf4"}),a.fold=new a("fold",{fontCharacter:"\\eaf5"}),a.folderActive=new a("folder-active",{fontCharacter:"\\eaf6"}),a.folderOpened=new a("folder-opened",{fontCharacter:"\\eaf7"}),a.gear=new a("gear",{fontCharacter:"\\eaf8"}),a.gift=new a("gift",{fontCharacter:"\\eaf9"}),a.gistSecret=new a("gist-secret",{fontCharacter:"\\eafa"}),a.gist=new a("gist",{fontCharacter:"\\eafb"}),a.gitCommit=new a("git-commit",{fontCharacter:"\\eafc"}),a.gitCompare=new a("git-compare",{fontCharacter:"\\eafd"}),a.gitMerge=new a("git-merge",{fontCharacter:"\\eafe"}),a.githubAction=new a("github-action",{fontCharacter:"\\eaff"}),a.githubAlt=new a("github-alt",{fontCharacter:"\\eb00"}),a.globe=new a("globe",{fontCharacter:"\\eb01"}),a.grabber=new a("grabber",{fontCharacter:"\\eb02"}),a.graph=new a("graph",{fontCharacter:"\\eb03"}),a.gripper=new a("gripper",{fontCharacter:"\\eb04"}),a.heart=new a("heart",{fontCharacter:"\\eb05"}),a.home=new a("home",{fontCharacter:"\\eb06"}),a.horizontalRule=new a("horizontal-rule",{fontCharacter:"\\eb07"}),a.hubot=new a("hubot",{fontCharacter:"\\eb08"}),a.inbox=new a("inbox",{fontCharacter:"\\eb09"}),a.issueClosed=new a("issue-closed",{fontCharacter:"\\eba4"}),a.issueReopened=new a("issue-reopened",{fontCharacter:"\\eb0b"}),a.issues=new a("issues",{fontCharacter:"\\eb0c"}),a.italic=new a("italic",{fontCharacter:"\\eb0d"}),a.jersey=new a("jersey",{fontCharacter:"\\eb0e"}),a.json=new a("json",{fontCharacter:"\\eb0f"}),a.kebabVertical=new a("kebab-vertical",{fontCharacter:"\\eb10"}),a.key=new a("key",{fontCharacter:"\\eb11"}),a.law=new a("law",{fontCharacter:"\\eb12"}),a.lightbulbAutofix=new a("lightbulb-autofix",{fontCharacter:"\\eb13"}),a.linkExternal=new a("link-external",{fontCharacter:"\\eb14"}),a.link=new a("link",{fontCharacter:"\\eb15"}),a.listOrdered=new a("list-ordered",{fontCharacter:"\\eb16"}),a.listUnordered=new a("list-unordered",{fontCharacter:"\\eb17"}),a.liveShare=new a("live-share",{fontCharacter:"\\eb18"}),a.loading=new a("loading",{fontCharacter:"\\eb19"}),a.location=new a("location",{fontCharacter:"\\eb1a"}),a.mailRead=new a("mail-read",{fontCharacter:"\\eb1b"}),a.mail=new a("mail",{fontCharacter:"\\eb1c"}),a.markdown=new a("markdown",{fontCharacter:"\\eb1d"}),a.megaphone=new a("megaphone",{fontCharacter:"\\eb1e"}),a.mention=new a("mention",{fontCharacter:"\\eb1f"}),a.milestone=new a("milestone",{fontCharacter:"\\eb20"}),a.mortarBoard=new a("mortar-board",{fontCharacter:"\\eb21"}),a.move=new a("move",{fontCharacter:"\\eb22"}),a.multipleWindows=new a("multiple-windows",{fontCharacter:"\\eb23"}),a.mute=new a("mute",{fontCharacter:"\\eb24"}),a.noNewline=new a("no-newline",{fontCharacter:"\\eb25"}),a.note=new a("note",{fontCharacter:"\\eb26"}),a.octoface=new a("octoface",{fontCharacter:"\\eb27"}),a.openPreview=new a("open-preview",{fontCharacter:"\\eb28"}),a.package_=new a("package",{fontCharacter:"\\eb29"}),a.paintcan=new a("paintcan",{fontCharacter:"\\eb2a"}),a.pin=new a("pin",{fontCharacter:"\\eb2b"}),a.play=new a("play",{fontCharacter:"\\eb2c"}),a.run=new a("run",{fontCharacter:"\\eb2c"}),a.plug=new a("plug",{fontCharacter:"\\eb2d"}),a.preserveCase=new a("preserve-case",{fontCharacter:"\\eb2e"}),a.preview=new a("preview",{fontCharacter:"\\eb2f"}),a.project=new a("project",{fontCharacter:"\\eb30"}),a.pulse=new a("pulse",{fontCharacter:"\\eb31"}),a.question=new a("question",{fontCharacter:"\\eb32"}),a.quote=new a("quote",{fontCharacter:"\\eb33"}),a.radioTower=new a("radio-tower",{fontCharacter:"\\eb34"}),a.reactions=new a("reactions",{fontCharacter:"\\eb35"}),a.references=new a("references",{fontCharacter:"\\eb36"}),a.refresh=new a("refresh",{fontCharacter:"\\eb37"}),a.regex=new a("regex",{fontCharacter:"\\eb38"}),a.remoteExplorer=new a("remote-explorer",{fontCharacter:"\\eb39"}),a.remote=new a("remote",{fontCharacter:"\\eb3a"}),a.remove=new a("remove",{fontCharacter:"\\eb3b"}),a.replaceAll=new a("replace-all",{fontCharacter:"\\eb3c"}),a.replace=new a("replace",{fontCharacter:"\\eb3d"}),a.repoClone=new a("repo-clone",{fontCharacter:"\\eb3e"}),a.repoForcePush=new a("repo-force-push",{fontCharacter:"\\eb3f"}),a.repoPull=new a("repo-pull",{fontCharacter:"\\eb40"}),a.repoPush=new a("repo-push",{fontCharacter:"\\eb41"}),a.report=new a("report",{fontCharacter:"\\eb42"}),a.requestChanges=new a("request-changes",{fontCharacter:"\\eb43"}),a.rocket=new a("rocket",{fontCharacter:"\\eb44"}),a.rootFolderOpened=new a("root-folder-opened",{fontCharacter:"\\eb45"}),a.rootFolder=new a("root-folder",{fontCharacter:"\\eb46"}),a.rss=new a("rss",{fontCharacter:"\\eb47"}),a.ruby=new a("ruby",{fontCharacter:"\\eb48"}),a.saveAll=new a("save-all",{fontCharacter:"\\eb49"}),a.saveAs=new a("save-as",{fontCharacter:"\\eb4a"}),a.save=new a("save",{fontCharacter:"\\eb4b"}),a.screenFull=new a("screen-full",{fontCharacter:"\\eb4c"}),a.screenNormal=new a("screen-normal",{fontCharacter:"\\eb4d"}),a.searchStop=new a("search-stop",{fontCharacter:"\\eb4e"}),a.server=new a("server",{fontCharacter:"\\eb50"}),a.settingsGear=new a("settings-gear",{fontCharacter:"\\eb51"}),a.settings=new a("settings",{fontCharacter:"\\eb52"}),a.shield=new a("shield",{fontCharacter:"\\eb53"}),a.smiley=new a("smiley",{fontCharacter:"\\eb54"}),a.sortPrecedence=new a("sort-precedence",{fontCharacter:"\\eb55"}),a.splitHorizontal=new a("split-horizontal",{fontCharacter:"\\eb56"}),a.splitVertical=new a("split-vertical",{fontCharacter:"\\eb57"}),a.squirrel=new a("squirrel",{fontCharacter:"\\eb58"}),a.starFull=new a("star-full",{fontCharacter:"\\eb59"}),a.starHalf=new a("star-half",{fontCharacter:"\\eb5a"}),a.symbolClass=new a("symbol-class",{fontCharacter:"\\eb5b"}),a.symbolColor=new a("symbol-color",{fontCharacter:"\\eb5c"}),a.symbolConstant=new a("symbol-constant",{fontCharacter:"\\eb5d"}),a.symbolEnumMember=new a("symbol-enum-member",{fontCharacter:"\\eb5e"}),a.symbolField=new a("symbol-field",{fontCharacter:"\\eb5f"}),a.symbolFile=new a("symbol-file",{fontCharacter:"\\eb60"}),a.symbolInterface=new a("symbol-interface",{fontCharacter:"\\eb61"}),a.symbolKeyword=new a("symbol-keyword",{fontCharacter:"\\eb62"}),a.symbolMisc=new a("symbol-misc",{fontCharacter:"\\eb63"}),a.symbolOperator=new a("symbol-operator",{fontCharacter:"\\eb64"}),a.symbolProperty=new a("symbol-property",{fontCharacter:"\\eb65"}),a.wrench=new a("wrench",{fontCharacter:"\\eb65"}),a.wrenchSubaction=new a("wrench-subaction",{fontCharacter:"\\eb65"}),a.symbolSnippet=new a("symbol-snippet",{fontCharacter:"\\eb66"}),a.tasklist=new a("tasklist",{fontCharacter:"\\eb67"}),a.telescope=new a("telescope",{fontCharacter:"\\eb68"}),a.textSize=new a("text-size",{fontCharacter:"\\eb69"}),a.threeBars=new a("three-bars",{fontCharacter:"\\eb6a"}),a.thumbsdown=new a("thumbsdown",{fontCharacter:"\\eb6b"}),a.thumbsup=new a("thumbsup",{fontCharacter:"\\eb6c"}),a.tools=new a("tools",{fontCharacter:"\\eb6d"}),a.triangleDown=new a("triangle-down",{fontCharacter:"\\eb6e"}),a.triangleLeft=new a("triangle-left",{fontCharacter:"\\eb6f"}),a.triangleRight=new a("triangle-right",{fontCharacter:"\\eb70"}),a.triangleUp=new a("triangle-up",{fontCharacter:"\\eb71"}),a.twitter=new a("twitter",{fontCharacter:"\\eb72"}),a.unfold=new a("unfold",{fontCharacter:"\\eb73"}),a.unlock=new a("unlock",{fontCharacter:"\\eb74"}),a.unmute=new a("unmute",{fontCharacter:"\\eb75"}),a.unverified=new a("unverified",{fontCharacter:"\\eb76"}),a.verified=new a("verified",{fontCharacter:"\\eb77"}),a.versions=new a("versions",{fontCharacter:"\\eb78"}),a.vmActive=new a("vm-active",{fontCharacter:"\\eb79"}),a.vmOutline=new a("vm-outline",{fontCharacter:"\\eb7a"}),a.vmRunning=new a("vm-running",{fontCharacter:"\\eb7b"}),a.watch=new a("watch",{fontCharacter:"\\eb7c"}),a.whitespace=new a("whitespace",{fontCharacter:"\\eb7d"}),a.wholeWord=new a("whole-word",{fontCharacter:"\\eb7e"}),a.window=new a("window",{fontCharacter:"\\eb7f"}),a.wordWrap=new a("word-wrap",{fontCharacter:"\\eb80"}),a.zoomIn=new a("zoom-in",{fontCharacter:"\\eb81"}),a.zoomOut=new a("zoom-out",{fontCharacter:"\\eb82"}),a.listFilter=new a("list-filter",{fontCharacter:"\\eb83"}),a.listFlat=new a("list-flat",{fontCharacter:"\\eb84"}),a.listSelection=new a("list-selection",{fontCharacter:"\\eb85"}),a.selection=new a("selection",{fontCharacter:"\\eb85"}),a.listTree=new a("list-tree",{fontCharacter:"\\eb86"}),a.debugBreakpointFunctionUnverified=new a("debug-breakpoint-function-unverified",{fontCharacter:"\\eb87"}),a.debugBreakpointFunction=new a("debug-breakpoint-function",{fontCharacter:"\\eb88"}),a.debugBreakpointFunctionDisabled=new a("debug-breakpoint-function-disabled",{fontCharacter:"\\eb88"}),a.debugStackframeActive=new a("debug-stackframe-active",{fontCharacter:"\\eb89"}),a.debugStackframeDot=new a("debug-stackframe-dot",{fontCharacter:"\\eb8a"}),a.debugStackframe=new a("debug-stackframe",{fontCharacter:"\\eb8b"}),a.debugStackframeFocused=new a("debug-stackframe-focused",{fontCharacter:"\\eb8b"}),a.debugBreakpointUnsupported=new a("debug-breakpoint-unsupported",{fontCharacter:"\\eb8c"}),a.symbolString=new a("symbol-string",{fontCharacter:"\\eb8d"}),a.debugReverseContinue=new a("debug-reverse-continue",{fontCharacter:"\\eb8e"}),a.debugStepBack=new a("debug-step-back",{fontCharacter:"\\eb8f"}),a.debugRestartFrame=new a("debug-restart-frame",{fontCharacter:"\\eb90"}),a.callIncoming=new a("call-incoming",{fontCharacter:"\\eb92"}),a.callOutgoing=new a("call-outgoing",{fontCharacter:"\\eb93"}),a.menu=new a("menu",{fontCharacter:"\\eb94"}),a.expandAll=new a("expand-all",{fontCharacter:"\\eb95"}),a.feedback=new a("feedback",{fontCharacter:"\\eb96"}),a.groupByRefType=new a("group-by-ref-type",{fontCharacter:"\\eb97"}),a.ungroupByRefType=new a("ungroup-by-ref-type",{fontCharacter:"\\eb98"}),a.account=new a("account",{fontCharacter:"\\eb99"}),a.bellDot=new a("bell-dot",{fontCharacter:"\\eb9a"}),a.debugConsole=new a("debug-console",{fontCharacter:"\\eb9b"}),a.library=new a("library",{fontCharacter:"\\eb9c"}),a.output=new a("output",{fontCharacter:"\\eb9d"}),a.runAll=new a("run-all",{fontCharacter:"\\eb9e"}),a.syncIgnored=new a("sync-ignored",{fontCharacter:"\\eb9f"}),a.pinned=new a("pinned",{fontCharacter:"\\eba0"}),a.githubInverted=new a("github-inverted",{fontCharacter:"\\eba1"}),a.debugAlt=new a("debug-alt",{fontCharacter:"\\eb91"}),a.serverProcess=new a("server-process",{fontCharacter:"\\eba2"}),a.serverEnvironment=new a("server-environment",{fontCharacter:"\\eba3"}),a.pass=new a("pass",{fontCharacter:"\\eba4"}),a.stopCircle=new a("stop-circle",{fontCharacter:"\\eba5"}),a.playCircle=new a("play-circle",{fontCharacter:"\\eba6"}),a.record=new a("record",{fontCharacter:"\\eba7"}),a.debugAltSmall=new a("debug-alt-small",{fontCharacter:"\\eba8"}),a.vmConnect=new a("vm-connect",{fontCharacter:"\\eba9"}),a.cloud=new a("cloud",{fontCharacter:"\\ebaa"}),a.merge=new a("merge",{fontCharacter:"\\ebab"}),a.exportIcon=new a("export",{fontCharacter:"\\ebac"}),a.graphLeft=new a("graph-left",{fontCharacter:"\\ebad"}),a.magnet=new a("magnet",{fontCharacter:"\\ebae"}),a.notebook=new a("notebook",{fontCharacter:"\\ebaf"}),a.redo=new a("redo",{fontCharacter:"\\ebb0"}),a.checkAll=new a("check-all",{fontCharacter:"\\ebb1"}),a.pinnedDirty=new a("pinned-dirty",{fontCharacter:"\\ebb2"}),a.passFilled=new a("pass-filled",{fontCharacter:"\\ebb3"}),a.circleLargeFilled=new a("circle-large-filled",{fontCharacter:"\\ebb4"}),a.circleLargeOutline=new a("circle-large-outline",{fontCharacter:"\\ebb5"}),a.combine=new a("combine",{fontCharacter:"\\ebb6"}),a.gather=new a("gather",{fontCharacter:"\\ebb6"}),a.table=new a("table",{fontCharacter:"\\ebb7"}),a.variableGroup=new a("variable-group",{fontCharacter:"\\ebb8"}),a.typeHierarchy=new a("type-hierarchy",{fontCharacter:"\\ebb9"}),a.typeHierarchySub=new a("type-hierarchy-sub",{fontCharacter:"\\ebba"}),a.typeHierarchySuper=new a("type-hierarchy-super",{fontCharacter:"\\ebbb"}),a.gitPullRequestCreate=new a("git-pull-request-create",{fontCharacter:"\\ebbc"}),a.runAbove=new a("run-above",{fontCharacter:"\\ebbd"}),a.runBelow=new a("run-below",{fontCharacter:"\\ebbe"}),a.notebookTemplate=new a("notebook-template",{fontCharacter:"\\ebbf"}),a.debugRerun=new a("debug-rerun",{fontCharacter:"\\ebc0"}),a.workspaceTrusted=new a("workspace-trusted",{fontCharacter:"\\ebc1"}),a.workspaceUntrusted=new a("workspace-untrusted",{fontCharacter:"\\ebc2"}),a.workspaceUnspecified=new a("workspace-unspecified",{fontCharacter:"\\ebc3"}),a.terminalCmd=new a("terminal-cmd",{fontCharacter:"\\ebc4"}),a.terminalDebian=new a("terminal-debian",{fontCharacter:"\\ebc5"}),a.terminalLinux=new a("terminal-linux",{fontCharacter:"\\ebc6"}),a.terminalPowershell=new a("terminal-powershell",{fontCharacter:"\\ebc7"}),a.terminalTmux=new a("terminal-tmux",{fontCharacter:"\\ebc8"}),a.terminalUbuntu=new a("terminal-ubuntu",{fontCharacter:"\\ebc9"}),a.terminalBash=new a("terminal-bash",{fontCharacter:"\\ebca"}),a.arrowSwap=new a("arrow-swap",{fontCharacter:"\\ebcb"}),a.copy=new a("copy",{fontCharacter:"\\ebcc"}),a.personAdd=new a("person-add",{fontCharacter:"\\ebcd"}),a.filterFilled=new a("filter-filled",{fontCharacter:"\\ebce"}),a.wand=new a("wand",{fontCharacter:"\\ebcf"}),a.debugLineByLine=new a("debug-line-by-line",{fontCharacter:"\\ebd0"}),a.inspect=new a("inspect",{fontCharacter:"\\ebd1"}),a.layers=new a("layers",{fontCharacter:"\\ebd2"}),a.layersDot=new a("layers-dot",{fontCharacter:"\\ebd3"}),a.layersActive=new a("layers-active",{fontCharacter:"\\ebd4"}),a.compass=new a("compass",{fontCharacter:"\\ebd5"}),a.compassDot=new a("compass-dot",{fontCharacter:"\\ebd6"}),a.compassActive=new a("compass-active",{fontCharacter:"\\ebd7"}),a.azure=new a("azure",{fontCharacter:"\\ebd8"}),a.issueDraft=new a("issue-draft",{fontCharacter:"\\ebd9"}),a.gitPullRequestClosed=new a("git-pull-request-closed",{fontCharacter:"\\ebda"}),a.gitPullRequestDraft=new a("git-pull-request-draft",{fontCharacter:"\\ebdb"}),a.debugAll=new a("debug-all",{fontCharacter:"\\ebdc"}),a.debugCoverage=new a("debug-coverage",{fontCharacter:"\\ebdd"}),a.runErrors=new a("run-errors",{fontCharacter:"\\ebde"}),a.folderLibrary=new a("folder-library",{fontCharacter:"\\ebdf"}),a.debugContinueSmall=new a("debug-continue-small",{fontCharacter:"\\ebe0"}),a.beakerStop=new a("beaker-stop",{fontCharacter:"\\ebe1"}),a.graphLine=new a("graph-line",{fontCharacter:"\\ebe2"}),a.graphScatter=new a("graph-scatter",{fontCharacter:"\\ebe3"}),a.pieChart=new a("pie-chart",{fontCharacter:"\\ebe4"}),a.bracket=new a("bracket",a.json.definition),a.bracketDot=new a("bracket-dot",{fontCharacter:"\\ebe5"}),a.bracketError=new a("bracket-error",{fontCharacter:"\\ebe6"}),a.lockSmall=new a("lock-small",{fontCharacter:"\\ebe7"}),a.azureDevops=new a("azure-devops",{fontCharacter:"\\ebe8"}),a.verifiedFilled=new a("verified-filled",{fontCharacter:"\\ebe9"})}(h||(h={}))},79881:function(d,v,e){"use strict";e.d(v,{B8:function(){return p},Cp:function(){return c},F0:function(){return u},L6:function(){return x},VV:function(){return h},b1:function(){return a},dL:function(){return l},ri:function(){return f}});class r{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(m){setTimeout(()=>{throw m.stack?new Error(m.message+`
`+m.stack):m},0)}}emit(m){this.listeners.forEach(b=>{b(m)})}onUnexpectedError(m){this.unexpectedErrorHandler(m),this.emit(m)}onUnexpectedExternalError(m){this.unexpectedErrorHandler(m)}}const i=new r;function l(y){h(y)||i.onUnexpectedError(y)}function c(y){h(y)||i.onUnexpectedExternalError(y)}function f(y){if(y instanceof Error){let{name:m,message:b}=y;const S=y.stacktrace||y.stack;return{$isError:!0,name:m,message:b,stack:S}}return y}const o="Canceled";function h(y){return y instanceof Error&&y.name===o&&y.message===o}function u(){const y=new Error(o);return y.name=y.message,y}function a(y){return y?new Error(`Illegal argument: ${y}`):new Error("Illegal argument")}function x(y){return y?new Error(`Illegal state: ${y}`):new Error("Illegal state")}class p extends Error{constructor(m){super("NotSupported"),m&&(this.message=m)}}},4348:function(d,v,e){"use strict";e.d(v,{D0:function(){return p},E7:function(){return y},K3:function(){return x},Q5:function(){return a},ZD:function(){return m},ju:function(){return f}});var r=e(79881),i=e(69323),l=e(34502),c=e(95830),f;(function(b){b.None=()=>i.JT.None;function S(se){return(ee,J=null,le)=>{let z=!1,j;return j=se(ie=>{if(!z)return j?j.dispose():z=!0,ee.call(J,ie)},null,le),z&&j.dispose(),j}}b.once=S;function k(se,ee){return N((J,le=null,z)=>se(j=>J.call(le,ee(j)),null,z))}b.map=k;function R(se,ee){return N((J,le=null,z)=>se(j=>{ee(j),J.call(le,j)},null,z))}b.forEach=R;function A(se,ee){return N((J,le=null,z)=>se(j=>ee(j)&&J.call(le,j),null,z))}b.filter=A;function P(se){return se}b.signal=P;function M(...se){return(ee,J=null,le)=>(0,i.F8)(...se.map(z=>z(j=>ee.call(J,j),null,le)))}b.any=M;function B(se,ee,J){let le=J;return k(se,z=>(le=ee(le,z),le))}b.reduce=B;function N(se){let ee;const J=new a({onFirstListenerAdd(){ee=se(J.fire,J)},onLastListenerRemove(){ee.dispose()}});return J.event}function K(se,ee,J=100,le=!1,z){let j,ie,me,Se=0;const Ie=new a({leakWarningThreshold:z,onFirstListenerAdd(){j=se(He=>{Se++,ie=ee(ie,He),le&&!me&&(Ie.fire(ie),ie=void 0),clearTimeout(me),me=setTimeout(()=>{const je=ie;ie=void 0,me=void 0,(!le||Se>1)&&Ie.fire(je),Se=0},J)})},onLastListenerRemove(){j.dispose()}});return Ie.event}b.debounce=K;function H(se,ee=(J,le)=>J===le){let J=!0,le;return A(se,z=>{const j=J||!ee(z,le);return J=!1,le=z,j})}b.latch=H;function W(se,ee){return[b.filter(se,ee),b.filter(se,J=>!ee(J))]}b.split=W;function ae(se,ee=!1,J=[]){let le=J.slice(),z=se(me=>{le?le.push(me):ie.fire(me)});const j=()=>{le&&le.forEach(me=>ie.fire(me)),le=null},ie=new a({onFirstListenerAdd(){z||(z=se(me=>ie.fire(me)))},onFirstListenerDidAdd(){le&&(ee?setTimeout(j):j())},onLastListenerRemove(){z&&z.dispose(),z=null}});return ie.event}b.buffer=ae;class ne{constructor(ee){this.event=ee}map(ee){return new ne(k(this.event,ee))}forEach(ee){return new ne(R(this.event,ee))}filter(ee){return new ne(A(this.event,ee))}reduce(ee,J){return new ne(B(this.event,ee,J))}latch(){return new ne(H(this.event))}debounce(ee,J=100,le=!1,z){return new ne(K(this.event,ee,J,le,z))}on(ee,J,le){return this.event(ee,J,le)}once(ee,J,le){return S(this.event)(ee,J,le)}}function oe(se){return new ne(se)}b.chain=oe;function q(se,ee,J=le=>le){const le=(...me)=>ie.fire(J(...me)),z=()=>se.on(ee,le),j=()=>se.removeListener(ee,le),ie=new a({onFirstListenerAdd:z,onLastListenerRemove:j});return ie.event}b.fromNodeEventEmitter=q;function X(se,ee,J=le=>le){const le=(...me)=>ie.fire(J(...me)),z=()=>se.addEventListener(ee,le),j=()=>se.removeEventListener(ee,le),ie=new a({onFirstListenerAdd:z,onLastListenerRemove:j});return ie.event}b.fromDOMEventEmitter=X;function V(se){return new Promise(ee=>S(se)(ee))}b.toPromise=V})(f||(f={}));class o{constructor(S){this._listenerCount=0,this._invocationCount=0,this._elapsedOverall=0,this._name=`${S}_${o._idPool++}`}start(S){this._stopWatch=new c.G(!0),this._listenerCount=S}stop(){if(this._stopWatch){const S=this._stopWatch.elapsed();this._elapsedOverall+=S,this._invocationCount+=1,console.info(`did FIRE ${this._name}: elapsed_ms: ${S.toFixed(5)}, listener: ${this._listenerCount} (elapsed_overall: ${this._elapsedOverall.toFixed(2)}, invocations: ${this._invocationCount})`),this._stopWatch=void 0}}}o._idPool=0;let h=-1;class u{constructor(S,k=Math.random().toString(18).slice(2,5)){this.customThreshold=S,this.name=k,this._warnCountdown=0}dispose(){this._stacks&&this._stacks.clear()}check(S){let k=h;if(typeof this.customThreshold=="number"&&(k=this.customThreshold),k<=0||S<k)return;this._stacks||(this._stacks=new Map);const R=new Error().stack.split(`
`).slice(3).join(`
`),A=this._stacks.get(R)||0;if(this._stacks.set(R,A+1),this._warnCountdown-=1,this._warnCountdown<=0){this._warnCountdown=k*.5;let P,M=0;for(const[B,N]of this._stacks)(!P||M<N)&&(P=B,M=N);console.warn(`[${this.name}] potential listener LEAK detected, having ${S} listeners already. MOST frequent listener (${M}):`),console.warn(P)}return()=>{const P=this._stacks.get(R)||0;this._stacks.set(R,P-1)}}}class a{constructor(S){var k;this._disposed=!1,this._options=S,this._leakageMon=h>0?new u(this._options&&this._options.leakWarningThreshold):void 0,this._perfMon=!((k=this._options)===null||k===void 0)&&k._profName?new o(this._options._profName):void 0}get event(){return this._event||(this._event=(S,k,R)=>{var A;this._listeners||(this._listeners=new l.S);const P=this._listeners.isEmpty();P&&this._options&&this._options.onFirstListenerAdd&&this._options.onFirstListenerAdd(this);const M=this._listeners.push(k?[S,k]:S);P&&this._options&&this._options.onFirstListenerDidAdd&&this._options.onFirstListenerDidAdd(this),this._options&&this._options.onListenerDidAdd&&this._options.onListenerDidAdd(this,S,k);const B=(A=this._leakageMon)===null||A===void 0?void 0:A.check(this._listeners.size),N=(0,i.OF)(()=>{B&&B(),this._disposed||(M(),this._options&&this._options.onLastListenerRemove&&(this._listeners&&!this._listeners.isEmpty()||this._options.onLastListenerRemove(this)))});return R instanceof i.SL?R.add(N):Array.isArray(R)&&R.push(N),N}),this._event}fire(S){var k,R;if(this._listeners){this._deliveryQueue||(this._deliveryQueue=new l.S);for(let A of this._listeners)this._deliveryQueue.push([A,S]);for((k=this._perfMon)===null||k===void 0||k.start(this._deliveryQueue.size);this._deliveryQueue.size>0;){const[A,P]=this._deliveryQueue.shift();try{typeof A=="function"?A.call(void 0,P):A[0].call(A[1],P)}catch(M){(0,r.dL)(M)}}(R=this._perfMon)===null||R===void 0||R.stop()}}dispose(){var S,k,R,A,P;this._disposed||(this._disposed=!0,(S=this._listeners)===null||S===void 0||S.clear(),(k=this._deliveryQueue)===null||k===void 0||k.clear(),(A=(R=this._options)===null||R===void 0?void 0:R.onLastListenerRemove)===null||A===void 0||A.call(R),(P=this._leakageMon)===null||P===void 0||P.dispose())}}class x extends a{constructor(S){super(S),this._isPaused=0,this._eventQueue=new l.S,this._mergeFn=S==null?void 0:S.merge}pause(){this._isPaused++}resume(){if(this._isPaused!==0&&--this._isPaused===0)if(this._mergeFn){const S=Array.from(this._eventQueue);this._eventQueue.clear(),super.fire(this._mergeFn(S))}else for(;!this._isPaused&&this._eventQueue.size!==0;)super.fire(this._eventQueue.shift())}fire(S){this._listeners&&(this._isPaused!==0?this._eventQueue.push(S):super.fire(S))}}class p extends x{constructor(S){var k;super(S),this._delay=(k=S.delay)!==null&&k!==void 0?k:100}fire(S){this._handle||(this.pause(),this._handle=setTimeout(()=>{this._handle=void 0,this.resume()},this._delay)),super.fire(S)}}class y{constructor(){this.buffers=[]}wrapEvent(S){return(k,R,A)=>S(P=>{const M=this.buffers[this.buffers.length-1];M?M.push(()=>k.call(R,P)):k.call(R,P)},void 0,A)}bufferEvents(S){const k=[];this.buffers.push(k);const R=S();return this.buffers.pop(),k.forEach(A=>A()),R}}class m{constructor(){this.listening=!1,this.inputEvent=f.None,this.inputEventListener=i.JT.None,this.emitter=new a({onFirstListenerDidAdd:()=>{this.listening=!0,this.inputEventListener=this.inputEvent(this.emitter.fire,this.emitter)},onLastListenerRemove:()=>{this.listening=!1,this.inputEventListener.dispose()}}),this.event=this.emitter.event}set input(S){this.inputEvent=S,this.listening&&(this.inputEventListener.dispose(),this.inputEventListener=S(this.emitter.fire,this.emitter))}dispose(){this.inputEventListener.dispose(),this.emitter.dispose()}}},17845:function(d,v,e){"use strict";e.d(v,{I:function(){return r}});function r(i){const l=this;let c=!1,f;return function(){return c||(c=!0,f=i.apply(l,arguments)),f}}},88226:function(d,v,e){"use strict";e.d(v,{$:function(){return r}});var r;(function(i){function l(M){return M&&typeof M=="object"&&typeof M[Symbol.iterator]=="function"}i.is=l;const c=Object.freeze([]);function f(){return c}i.empty=f;function*o(M){yield M}i.single=o;function h(M){return M||c}i.from=h;function u(M){return!M||M[Symbol.iterator]().next().done===!0}i.isEmpty=u;function a(M){return M[Symbol.iterator]().next().value}i.first=a;function x(M,B){for(const N of M)if(B(N))return!0;return!1}i.some=x;function p(M,B){for(const N of M)if(B(N))return N}i.find=p;function*y(M,B){for(const N of M)B(N)&&(yield N)}i.filter=y;function*m(M,B){let N=0;for(const K of M)yield B(K,N++)}i.map=m;function*b(...M){for(const B of M)for(const N of B)yield N}i.concat=b;function*S(M){for(const B of M)for(const N of B)yield N}i.concatNested=S;function k(M,B,N){let K=N;for(const H of M)K=B(K,H);return K}i.reduce=k;function*R(M,B,N=M.length){for(B<0&&(B+=M.length),N<0?N+=M.length:N>M.length&&(N=M.length);B<N;B++)yield M[B]}i.slice=R;function A(M,B=Number.POSITIVE_INFINITY){const N=[];if(B===0)return[N,M];const K=M[Symbol.iterator]();for(let H=0;H<B;H++){const W=K.next();if(W.done)return[N,i.empty()];N.push(W.value)}return[N,{[Symbol.iterator](){return K}}]}i.consume=A;function P(M,B,N=(K,H)=>K===H){const K=M[Symbol.iterator](),H=B[Symbol.iterator]();for(;;){const W=K.next(),ae=H.next();if(W.done!==ae.done)return!1;if(W.done)return!0;if(!N(W.value,ae.value))return!1}}i.equals=P})(r||(r={}))},69323:function(d,v,e){"use strict";e.d(v,{B9:function(){return m},F8:function(){return b},JT:function(){return R},Jz:function(){return P},OF:function(){return S},SL:function(){return k},Wf:function(){return y},XK:function(){return A},dk:function(){return x}});var r=e(17845),i=e(88226);const l=!1;let c=null;function f(M){c=M}if(l){const M="__is_disposable_tracked__";f(new class{trackDisposable(B){const N=new Error("Potentially leaked disposable").stack;setTimeout(()=>{B[M]||console.log(N)},3e3)}setParent(B,N){if(B&&B!==R.None)try{B[M]=!0}catch(K){}}markAsDisposed(B){if(B&&B!==R.None)try{B[M]=!0}catch(N){}}markAsSingleton(B){}})}function o(M){return c==null||c.trackDisposable(M),M}function h(M){c==null||c.markAsDisposed(M)}function u(M,B){c==null||c.setParent(M,B)}function a(M,B){if(c)for(const N of M)c.setParent(N,B)}function x(M){return c==null||c.markAsSingleton(M),M}class p extends Error{constructor(B){super(`Encountered errors while disposing of store. Errors: [${B.join(", ")}]`),this.errors=B}}function y(M){return typeof M.dispose=="function"&&M.dispose.length===0}function m(M){if(i.$.is(M)){let B=[];for(const N of M)if(N)try{N.dispose()}catch(K){B.push(K)}if(B.length===1)throw B[0];if(B.length>1)throw new p(B);return Array.isArray(M)?[]:M}else if(M)return M.dispose(),M}function b(...M){const B=S(()=>m(M));return a(M,B),B}function S(M){const B=o({dispose:(0,r.I)(()=>{h(B),M()})});return B}class k{constructor(){this._toDispose=new Set,this._isDisposed=!1,o(this)}dispose(){this._isDisposed||(h(this),this._isDisposed=!0,this.clear())}clear(){try{m(this._toDispose.values())}finally{this._toDispose.clear()}}add(B){if(!B)return B;if(B===this)throw new Error("Cannot register a disposable on itself!");return u(B,this),this._isDisposed?k.DISABLE_DISPOSED_WARNING||console.warn(new Error("Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!").stack):this._toDispose.add(B),B}}k.DISABLE_DISPOSED_WARNING=!1;class R{constructor(){this._store=new k,o(this),u(this._store,this)}dispose(){h(this),this._store.dispose()}_register(B){if(B===this)throw new Error("Cannot register a disposable on itself!");return this._store.add(B)}}R.None=Object.freeze({dispose(){}});class A{constructor(){this._isDisposed=!1,o(this)}get value(){return this._isDisposed?void 0:this._value}set value(B){var N;this._isDisposed||B===this._value||((N=this._value)===null||N===void 0||N.dispose(),B&&u(B,this),this._value=B)}clear(){this.value=void 0}dispose(){var B;this._isDisposed=!0,h(this),(B=this._value)===null||B===void 0||B.dispose(),this._value=void 0}clearAndLeak(){const B=this._value;return this._value=void 0,B&&u(B,null),B}}class P{constructor(B){this.object=B}dispose(){}}},34502:function(d,v,e){"use strict";e.d(v,{S:function(){return i}});class r{constructor(c){this.element=c,this.next=r.Undefined,this.prev=r.Undefined}}r.Undefined=new r(void 0);class i{constructor(){this._first=r.Undefined,this._last=r.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===r.Undefined}clear(){let c=this._first;for(;c!==r.Undefined;){const f=c.next;c.prev=r.Undefined,c.next=r.Undefined,c=f}this._first=r.Undefined,this._last=r.Undefined,this._size=0}unshift(c){return this._insert(c,!1)}push(c){return this._insert(c,!0)}_insert(c,f){const o=new r(c);if(this._first===r.Undefined)this._first=o,this._last=o;else if(f){const u=this._last;this._last=o,o.prev=u,u.next=o}else{const u=this._first;this._first=o,o.next=u,u.prev=o}this._size+=1;let h=!1;return()=>{h||(h=!0,this._remove(o))}}shift(){if(this._first!==r.Undefined){const c=this._first.element;return this._remove(this._first),c}}pop(){if(this._last!==r.Undefined){const c=this._last.element;return this._remove(this._last),c}}_remove(c){if(c.prev!==r.Undefined&&c.next!==r.Undefined){const f=c.prev;f.next=c.next,c.next.prev=f}else c.prev===r.Undefined&&c.next===r.Undefined?(this._first=r.Undefined,this._last=r.Undefined):c.next===r.Undefined?(this._last=this._last.prev,this._last.next=r.Undefined):c.prev===r.Undefined&&(this._first=this._first.next,this._first.prev=r.Undefined);this._size-=1}*[Symbol.iterator](){let c=this._first;for(;c!==r.Undefined;)yield c.element,c=c.next}}},23345:function(d,v,e){"use strict";e.d(v,{$L:function(){return K},ED:function(){return P},IJ:function(){return B},OS:function(){return ne},WE:function(){return W},dz:function(){return M},gn:function(){return H},li:function(){return S},r:function(){return X},tY:function(){return N},xS:function(){return ae}});var r=e(97671),i;const l="en";let c=!1,f=!1,o=!1,h=!1,u=!1,a=!1,x=!1,p,y=null,m=null,b;const S=typeof self=="object"?self:typeof e.g=="object"?e.g:{};let k;typeof S.vscode!="undefined"&&typeof S.vscode.process!="undefined"?k=S.vscode.process:typeof r!="undefined"&&(k=r);const R=typeof((i=k==null?void 0:k.versions)===null||i===void 0?void 0:i.electron)=="string"&&k.type==="renderer";if(typeof navigator=="object"&&!R)b=navigator.userAgent,c=b.indexOf("Windows")>=0,f=b.indexOf("Macintosh")>=0,x=(b.indexOf("Macintosh")>=0||b.indexOf("iPad")>=0||b.indexOf("iPhone")>=0)&&!!navigator.maxTouchPoints&&navigator.maxTouchPoints>0,o=b.indexOf("Linux")>=0,a=!0,p=navigator.language,y=p;else if(typeof k=="object"){c=k.platform==="win32",f=k.platform==="darwin",o=k.platform==="linux",h=o&&!!k.env.SNAP&&!!k.env.SNAP_REVISION,p=l,y=l;const V=k.env.VSCODE_NLS_CONFIG;if(V)try{const se=JSON.parse(V),ee=se.availableLanguages["*"];p=se.locale,y=ee||l,m=se._translationsConfigFile}catch(se){}u=!0}else console.error("Unable to resolve platform.");let A=0;f?A=1:c?A=3:o&&(A=2);const P=c,M=f,B=o,N=u,K=a,H=x,W=b,ae=function(){if(S.setImmediate)return S.setImmediate.bind(S);if(typeof S.postMessage=="function"&&!S.importScripts){let ee=[];S.addEventListener("message",le=>{if(le.data&&le.data.vscodeSetImmediateId)for(let z=0,j=ee.length;z<j;z++){const ie=ee[z];if(ie.id===le.data.vscodeSetImmediateId){ee.splice(z,1),ie.callback();return}}});let J=0;return le=>{const z=++J;ee.push({id:z,callback:le}),S.postMessage({vscodeSetImmediateId:z},"*")}}if(typeof(k==null?void 0:k.nextTick)=="function")return k.nextTick.bind(k);const se=Promise.resolve();return ee=>se.then(ee)}(),ne=f||x?2:c?1:3;let oe=!0,q=!1;function X(){if(!q){q=!0;const V=new Uint8Array(2);V[0]=1,V[1]=2,oe=new Uint16Array(V.buffer)[0]===513}return oe}},95830:function(d,v,e){"use strict";e.d(v,{G:function(){return l}});var r=e(23345);const i=r.li.performance&&typeof r.li.performance.now=="function";class l{constructor(f){this._highResolution=i&&f,this._startTime=this._now(),this._stopTime=-1}static create(f=!0){return new l(f)}stop(){this._stopTime=this._now()}elapsed(){return this._stopTime!==-1?this._stopTime-this._startTime:this._now()-this._startTime}_now(){return this._highResolution?r.li.performance.now():Date.now()}}},82983:function(d,v,e){"use strict";e.d(v,{$i:function(){return Se},C8:function(){return ht},GF:function(){return p},HO:function(){return J},IO:function(){return y},K7:function(){return Dt},Kw:function(){return Rt},LC:function(){return S},Mh:function(){return ae},P1:function(){return ne},PJ:function(){return ar},Qe:function(){return Ie},R1:function(){return x},RP:function(){return ie},S6:function(){return $e},TT:function(){return P},Ut:function(){return z},V8:function(){return k},WU:function(){return l},YK:function(){return q},YU:function(){return c},ZG:function(){return oe},ZH:function(){return V},ab:function(){return He},c1:function(){return It},df:function(){return K},ec:function(){return f},fi:function(){return gt},fy:function(){return o},j3:function(){return h},j_:function(){return B},m5:function(){return r},mK:function(){return N},mr:function(){return m},oH:function(){return ft},oL:function(){return u},ok:function(){return W},ow:function(){return R},qq:function(){return H},qu:function(){return A},rL:function(){return X},uS:function(){return Zt},un:function(){return a},uq:function(){return b},vH:function(){return ee},xe:function(){return je},zY:function(){return M}});function r(ye){return!ye||typeof ye!="string"?!0:ye.trim().length===0}const i=/{(\d+)}/g;function l(ye,...ke){return ke.length===0?ye:ye.replace(i,function(Ge,We){const Xe=parseInt(We,10);return isNaN(Xe)||Xe<0||Xe>=ke.length?Ge:ke[Xe]})}function c(ye){return ye.replace(/[<>&]/g,function(ke){switch(ke){case"<":return"&lt;";case">":return"&gt;";case"&":return"&amp;";default:return ke}})}function f(ye){return ye.replace(/[\\\{\}\*\+\?\|\^\$\.\[\]\(\)]/g,"\\$&")}function o(ye,ke=" "){const Ge=h(ye,ke);return u(Ge,ke)}function h(ye,ke){if(!ye||!ke)return ye;const Ge=ke.length;if(Ge===0||ye.length===0)return ye;let We=0;for(;ye.indexOf(ke,We)===We;)We=We+Ge;return ye.substring(We)}function u(ye,ke){if(!ye||!ke)return ye;const Ge=ke.length,We=ye.length;if(Ge===0||We===0)return ye;let Xe=We,ut=-1;for(;ut=ye.lastIndexOf(ke,Xe-1),!(ut===-1||ut+Ge!==Xe);){if(ut===0)return"";Xe=ut}return ye.substring(0,Xe)}function a(ye){return ye.replace(/[\-\\\{\}\+\?\|\^\$\.\,\[\]\(\)\#\s]/g,"\\$&").replace(/[\*]/g,".*")}function x(ye){return ye.replace(/\*/g,"")}function p(ye,ke,Ge={}){if(!ye)throw new Error("Cannot create regex from empty string");ke||(ye=f(ye)),Ge.wholeWord&&(/\B/.test(ye.charAt(0))||(ye="\\b"+ye),/\B/.test(ye.charAt(ye.length-1))||(ye=ye+"\\b"));let We="";return Ge.global&&(We+="g"),Ge.matchCase||(We+="i"),Ge.multiline&&(We+="m"),Ge.unicode&&(We+="u"),new RegExp(ye,We)}function y(ye){return ye.source==="^"||ye.source==="^$"||ye.source==="$"||ye.source==="^\\s*$"?!1:!!(ye.exec("")&&ye.lastIndex===0)}function m(ye){return(ye.global?"g":"")+(ye.ignoreCase?"i":"")+(ye.multiline?"m":"")+(ye.unicode?"u":"")}function b(ye){return ye.split(/\r\n|\r|\n/)}function S(ye){for(let ke=0,Ge=ye.length;ke<Ge;ke++){const We=ye.charCodeAt(ke);if(We!==32&&We!==9)return ke}return-1}function k(ye,ke=0,Ge=ye.length){for(let We=ke;We<Ge;We++){const Xe=ye.charCodeAt(We);if(Xe!==32&&Xe!==9)return ye.substring(ke,We)}return ye.substring(ke,Ge)}function R(ye,ke=ye.length-1){for(let Ge=ke;Ge>=0;Ge--){const We=ye.charCodeAt(Ge);if(We!==32&&We!==9)return Ge}return-1}function A(ye,ke){return ye<ke?-1:ye>ke?1:0}function P(ye,ke,Ge=0,We=ye.length,Xe=0,ut=ke.length){for(;Ge<We&&Xe<ut;Ge++,Xe++){let tr=ye.charCodeAt(Ge),Me=ke.charCodeAt(Xe);if(tr<Me)return-1;if(tr>Me)return 1}const pt=We-Ge,or=ut-Xe;return pt<or?-1:pt>or?1:0}function M(ye,ke){return B(ye,ke,0,ye.length,0,ke.length)}function B(ye,ke,Ge=0,We=ye.length,Xe=0,ut=ke.length){for(;Ge<We&&Xe<ut;Ge++,Xe++){let tr=ye.charCodeAt(Ge),Me=ke.charCodeAt(Xe);if(tr===Me)continue;if(tr>=128||Me>=128)return P(ye.toLowerCase(),ke.toLowerCase(),Ge,We,Xe,ut);N(tr)&&(tr-=32),N(Me)&&(Me-=32);const tt=tr-Me;if(tt!==0)return tt}const pt=We-Ge,or=ut-Xe;return pt<or?-1:pt>or?1:0}function N(ye){return ye>=97&&ye<=122}function K(ye){return ye>=65&&ye<=90}function H(ye,ke){return ye.length===ke.length&&B(ye,ke)===0}function W(ye,ke){const Ge=ke.length;return ke.length>ye.length?!1:B(ye,ke,0,Ge)===0}function ae(ye,ke){let Ge,We=Math.min(ye.length,ke.length);for(Ge=0;Ge<We;Ge++)if(ye.charCodeAt(Ge)!==ke.charCodeAt(Ge))return Ge;return We}function ne(ye,ke){let Ge,We=Math.min(ye.length,ke.length);const Xe=ye.length-1,ut=ke.length-1;for(Ge=0;Ge<We;Ge++)if(ye.charCodeAt(Xe-Ge)!==ke.charCodeAt(ut-Ge))return Ge;return We}function oe(ye){return 55296<=ye&&ye<=56319}function q(ye){return 56320<=ye&&ye<=57343}function X(ye,ke){return(ye-55296<<10)+(ke-56320)+65536}function V(ye,ke,Ge){const We=ye.charCodeAt(Ge);if(oe(We)&&Ge+1<ke){const Xe=ye.charCodeAt(Ge+1);if(q(Xe))return X(We,Xe)}return We}function se(ye,ke){const Ge=ye.charCodeAt(ke-1);if(q(Ge)&&ke>1){const We=ye.charCodeAt(ke-2);if(oe(We))return X(We,Ge)}return Ge}function ee(ye,ke){const Ge=Mt.getInstance(),We=ke,Xe=ye.length,ut=V(ye,Xe,ke);ke+=ut>=65536?2:1;let pt=Ge.getGraphemeBreakType(ut);for(;ke<Xe;){const or=V(ye,Xe,ke),tr=Ge.getGraphemeBreakType(or);if(gt(pt,tr))break;ke+=or>=65536?2:1,pt=tr}return ke-We}function J(ye,ke){const Ge=Mt.getInstance(),We=ke,Xe=se(ye,ke);ke-=Xe>=65536?2:1;let ut=Ge.getGraphemeBreakType(Xe);for(;ke>0;){const pt=se(ye,ke),or=Ge.getGraphemeBreakType(pt);if(gt(or,ut))break;ke-=pt>=65536?2:1,ut=or}return We-ke}const le=/(?:[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05F4\u0608\u060B\u060D\u061B-\u064A\u066D-\u066F\u0671-\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u0710\u0712-\u072F\u074D-\u07A5\u07B1-\u07EA\u07F4\u07F5\u07FA-\u0815\u081A\u0824\u0828\u0830-\u0858\u085E-\u08BD\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFD3D\uFD50-\uFDFC\uFE70-\uFEFC]|\uD802[\uDC00-\uDD1B\uDD20-\uDE00\uDE10-\uDE33\uDE40-\uDEE4\uDEEB-\uDF35\uDF40-\uDFFF]|\uD803[\uDC00-\uDCFF]|\uD83A[\uDC00-\uDCCF\uDD00-\uDD43\uDD50-\uDFFF]|\uD83B[\uDC00-\uDEBB])/;function z(ye){return le.test(ye)}const j=/(?:[\u231A\u231B\u23F0\u23F3\u2600-\u27BF\u2B50\u2B55]|\uD83C[\uDDE6-\uDDFF\uDF00-\uDFFF]|\uD83D[\uDC00-\uDE4F\uDE80-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD00-\uDDFF\uDE70-\uDED6])/;function ie(ye){return j.test(ye)}const me=/^[\t\n\r\x20-\x7E]*$/;function Se(ye){return me.test(ye)}const Ie=/[\u2028\u2029]/;function He(ye){return Ie.test(ye)}function je(ye){for(let ke=0,Ge=ye.length;ke<Ge;ke++)if(Dt(ye.charCodeAt(ke)))return!0;return!1}function Dt(ye){return ye=+ye,ye>=11904&&ye<=55215||ye>=63744&&ye<=64255||ye>=65281&&ye<=65374}function ht(ye){return ye>=127462&&ye<=127487||ye===8986||ye===8987||ye===9200||ye===9203||ye>=9728&&ye<=10175||ye===11088||ye===11093||ye>=127744&&ye<=128591||ye>=128640&&ye<=128764||ye>=128992&&ye<=129003||ye>=129280&&ye<=129535||ye>=129648&&ye<=129750}const It="\uFEFF";function Zt(ye){return!!(ye&&ye.length>0&&ye.charCodeAt(0)===65279)}function Rt(ye,ke=!1){return ye?(ke&&(ye=ye.replace(/\\./g,"")),ye.toLowerCase()!==ye):!1}function ar(ye){return ye=ye%52,ye<26?String.fromCharCode(97+ye):String.fromCharCode(65+ye-26)}function $e(ye){return Mt.getInstance().getGraphemeBreakType(ye)}function gt(ye,ke){return ye===0?ke!==5&&ke!==7:ye===2&&ke===3?!1:ye===4||ye===2||ye===3||ke===4||ke===2||ke===3?!0:!(ye===8&&(ke===8||ke===9||ke===11||ke===12)||(ye===11||ye===9)&&(ke===9||ke===10)||(ye===12||ye===10)&&ke===10||ke===5||ke===13||ke===7||ye===1||ye===13&&ke===14||ye===6&&ke===6)}class Mt{constructor(){this._data=et()}static getInstance(){return Mt._INSTANCE||(Mt._INSTANCE=new Mt),Mt._INSTANCE}getGraphemeBreakType(ke){if(ke<32)return ke===10?3:ke===13?2:4;if(ke<127)return 0;const Ge=this._data,We=Ge.length/3;let Xe=1;for(;Xe<=We;)if(ke<Ge[3*Xe])Xe=2*Xe;else if(ke>Ge[3*Xe+1])Xe=2*Xe+1;else return Ge[3*Xe+2];return 0}}Mt._INSTANCE=null;function et(){return JSON.parse("[0,0,0,51592,51592,11,44424,44424,11,72251,72254,5,7150,7150,7,48008,48008,11,55176,55176,11,128420,128420,14,3276,3277,5,9979,9980,14,46216,46216,11,49800,49800,11,53384,53384,11,70726,70726,5,122915,122916,5,129320,129327,14,2558,2558,5,5906,5908,5,9762,9763,14,43360,43388,8,45320,45320,11,47112,47112,11,48904,48904,11,50696,50696,11,52488,52488,11,54280,54280,11,70082,70083,1,71350,71350,7,73111,73111,5,127892,127893,14,128726,128727,14,129473,129474,14,2027,2035,5,2901,2902,5,3784,3789,5,6754,6754,5,8418,8420,5,9877,9877,14,11088,11088,14,44008,44008,5,44872,44872,11,45768,45768,11,46664,46664,11,47560,47560,11,48456,48456,11,49352,49352,11,50248,50248,11,51144,51144,11,52040,52040,11,52936,52936,11,53832,53832,11,54728,54728,11,69811,69814,5,70459,70460,5,71096,71099,7,71998,71998,5,72874,72880,5,119149,119149,7,127374,127374,14,128335,128335,14,128482,128482,14,128765,128767,14,129399,129400,14,129680,129685,14,1476,1477,5,2377,2380,7,2759,2760,5,3137,3140,7,3458,3459,7,4153,4154,5,6432,6434,5,6978,6978,5,7675,7679,5,9723,9726,14,9823,9823,14,9919,9923,14,10035,10036,14,42736,42737,5,43596,43596,5,44200,44200,11,44648,44648,11,45096,45096,11,45544,45544,11,45992,45992,11,46440,46440,11,46888,46888,11,47336,47336,11,47784,47784,11,48232,48232,11,48680,48680,11,49128,49128,11,49576,49576,11,50024,50024,11,50472,50472,11,50920,50920,11,51368,51368,11,51816,51816,11,52264,52264,11,52712,52712,11,53160,53160,11,53608,53608,11,54056,54056,11,54504,54504,11,54952,54952,11,68108,68111,5,69933,69940,5,70197,70197,7,70498,70499,7,70845,70845,5,71229,71229,5,71727,71735,5,72154,72155,5,72344,72345,5,73023,73029,5,94095,94098,5,121403,121452,5,126981,127182,14,127538,127546,14,127990,127990,14,128391,128391,14,128445,128449,14,128500,128505,14,128752,128752,14,129160,129167,14,129356,129356,14,129432,129442,14,129648,129651,14,129751,131069,14,173,173,4,1757,1757,1,2274,2274,1,2494,2494,5,2641,2641,5,2876,2876,5,3014,3016,7,3262,3262,7,3393,3396,5,3570,3571,7,3968,3972,5,4228,4228,7,6086,6086,5,6679,6680,5,6912,6915,5,7080,7081,5,7380,7392,5,8252,8252,14,9096,9096,14,9748,9749,14,9784,9786,14,9833,9850,14,9890,9894,14,9938,9938,14,9999,9999,14,10085,10087,14,12349,12349,14,43136,43137,7,43454,43456,7,43755,43755,7,44088,44088,11,44312,44312,11,44536,44536,11,44760,44760,11,44984,44984,11,45208,45208,11,45432,45432,11,45656,45656,11,45880,45880,11,46104,46104,11,46328,46328,11,46552,46552,11,46776,46776,11,47000,47000,11,47224,47224,11,47448,47448,11,47672,47672,11,47896,47896,11,48120,48120,11,48344,48344,11,48568,48568,11,48792,48792,11,49016,49016,11,49240,49240,11,49464,49464,11,49688,49688,11,49912,49912,11,50136,50136,11,50360,50360,11,50584,50584,11,50808,50808,11,51032,51032,11,51256,51256,11,51480,51480,11,51704,51704,11,51928,51928,11,52152,52152,11,52376,52376,11,52600,52600,11,52824,52824,11,53048,53048,11,53272,53272,11,53496,53496,11,53720,53720,11,53944,53944,11,54168,54168,11,54392,54392,11,54616,54616,11,54840,54840,11,55064,55064,11,65438,65439,5,69633,69633,5,69837,69837,1,70018,70018,7,70188,70190,7,70368,70370,7,70465,70468,7,70712,70719,5,70835,70840,5,70850,70851,5,71132,71133,5,71340,71340,7,71458,71461,5,71985,71989,7,72002,72002,7,72193,72202,5,72281,72283,5,72766,72766,7,72885,72886,5,73104,73105,5,92912,92916,5,113824,113827,4,119173,119179,5,121505,121519,5,125136,125142,5,127279,127279,14,127489,127490,14,127570,127743,14,127900,127901,14,128254,128254,14,128369,128370,14,128400,128400,14,128425,128432,14,128468,128475,14,128489,128494,14,128715,128720,14,128745,128745,14,128759,128760,14,129004,129023,14,129296,129304,14,129340,129342,14,129388,129392,14,129404,129407,14,129454,129455,14,129485,129487,14,129659,129663,14,129719,129727,14,917536,917631,5,13,13,2,1160,1161,5,1564,1564,4,1807,1807,1,2085,2087,5,2363,2363,7,2402,2403,5,2507,2508,7,2622,2624,7,2691,2691,7,2786,2787,5,2881,2884,5,3006,3006,5,3072,3072,5,3170,3171,5,3267,3268,7,3330,3331,7,3406,3406,1,3538,3540,5,3655,3662,5,3897,3897,5,4038,4038,5,4184,4185,5,4352,4447,8,6068,6069,5,6155,6157,5,6448,6449,7,6742,6742,5,6783,6783,5,6966,6970,5,7042,7042,7,7143,7143,7,7212,7219,5,7412,7412,5,8206,8207,4,8294,8303,4,8596,8601,14,9410,9410,14,9742,9742,14,9757,9757,14,9770,9770,14,9794,9794,14,9828,9828,14,9855,9855,14,9882,9882,14,9900,9903,14,9929,9933,14,9963,9967,14,9987,9988,14,10006,10006,14,10062,10062,14,10175,10175,14,11744,11775,5,42607,42607,5,43043,43044,7,43263,43263,5,43444,43445,7,43569,43570,5,43698,43700,5,43766,43766,5,44032,44032,11,44144,44144,11,44256,44256,11,44368,44368,11,44480,44480,11,44592,44592,11,44704,44704,11,44816,44816,11,44928,44928,11,45040,45040,11,45152,45152,11,45264,45264,11,45376,45376,11,45488,45488,11,45600,45600,11,45712,45712,11,45824,45824,11,45936,45936,11,46048,46048,11,46160,46160,11,46272,46272,11,46384,46384,11,46496,46496,11,46608,46608,11,46720,46720,11,46832,46832,11,46944,46944,11,47056,47056,11,47168,47168,11,47280,47280,11,47392,47392,11,47504,47504,11,47616,47616,11,47728,47728,11,47840,47840,11,47952,47952,11,48064,48064,11,48176,48176,11,48288,48288,11,48400,48400,11,48512,48512,11,48624,48624,11,48736,48736,11,48848,48848,11,48960,48960,11,49072,49072,11,49184,49184,11,49296,49296,11,49408,49408,11,49520,49520,11,49632,49632,11,49744,49744,11,49856,49856,11,49968,49968,11,50080,50080,11,50192,50192,11,50304,50304,11,50416,50416,11,50528,50528,11,50640,50640,11,50752,50752,11,50864,50864,11,50976,50976,11,51088,51088,11,51200,51200,11,51312,51312,11,51424,51424,11,51536,51536,11,51648,51648,11,51760,51760,11,51872,51872,11,51984,51984,11,52096,52096,11,52208,52208,11,52320,52320,11,52432,52432,11,52544,52544,11,52656,52656,11,52768,52768,11,52880,52880,11,52992,52992,11,53104,53104,11,53216,53216,11,53328,53328,11,53440,53440,11,53552,53552,11,53664,53664,11,53776,53776,11,53888,53888,11,54000,54000,11,54112,54112,11,54224,54224,11,54336,54336,11,54448,54448,11,54560,54560,11,54672,54672,11,54784,54784,11,54896,54896,11,55008,55008,11,55120,55120,11,64286,64286,5,66272,66272,5,68900,68903,5,69762,69762,7,69817,69818,5,69927,69931,5,70003,70003,5,70070,70078,5,70094,70094,7,70194,70195,7,70206,70206,5,70400,70401,5,70463,70463,7,70475,70477,7,70512,70516,5,70722,70724,5,70832,70832,5,70842,70842,5,70847,70848,5,71088,71089,7,71102,71102,7,71219,71226,5,71231,71232,5,71342,71343,7,71453,71455,5,71463,71467,5,71737,71738,5,71995,71996,5,72000,72000,7,72145,72147,7,72160,72160,5,72249,72249,7,72273,72278,5,72330,72342,5,72752,72758,5,72850,72871,5,72882,72883,5,73018,73018,5,73031,73031,5,73109,73109,5,73461,73462,7,94031,94031,5,94192,94193,7,119142,119142,7,119155,119162,4,119362,119364,5,121476,121476,5,122888,122904,5,123184,123190,5,126976,126979,14,127184,127231,14,127344,127345,14,127405,127461,14,127514,127514,14,127561,127567,14,127778,127779,14,127896,127896,14,127985,127986,14,127995,127999,5,128326,128328,14,128360,128366,14,128378,128378,14,128394,128397,14,128405,128406,14,128422,128423,14,128435,128443,14,128453,128464,14,128479,128480,14,128484,128487,14,128496,128498,14,128640,128709,14,128723,128724,14,128736,128741,14,128747,128748,14,128755,128755,14,128762,128762,14,128981,128991,14,129096,129103,14,129292,129292,14,129311,129311,14,129329,129330,14,129344,129349,14,129360,129374,14,129394,129394,14,129402,129402,14,129413,129425,14,129445,129450,14,129466,129471,14,129483,129483,14,129511,129535,14,129653,129655,14,129667,129670,14,129705,129711,14,129731,129743,14,917505,917505,4,917760,917999,5,10,10,3,127,159,4,768,879,5,1471,1471,5,1536,1541,1,1648,1648,5,1767,1768,5,1840,1866,5,2070,2073,5,2137,2139,5,2307,2307,7,2366,2368,7,2382,2383,7,2434,2435,7,2497,2500,5,2519,2519,5,2563,2563,7,2631,2632,5,2677,2677,5,2750,2752,7,2763,2764,7,2817,2817,5,2879,2879,5,2891,2892,7,2914,2915,5,3008,3008,5,3021,3021,5,3076,3076,5,3146,3149,5,3202,3203,7,3264,3265,7,3271,3272,7,3298,3299,5,3390,3390,5,3402,3404,7,3426,3427,5,3535,3535,5,3544,3550,7,3635,3635,7,3763,3763,7,3893,3893,5,3953,3966,5,3981,3991,5,4145,4145,7,4157,4158,5,4209,4212,5,4237,4237,5,4520,4607,10,5970,5971,5,6071,6077,5,6089,6099,5,6277,6278,5,6439,6440,5,6451,6456,7,6683,6683,5,6744,6750,5,6765,6770,7,6846,6846,5,6964,6964,5,6972,6972,5,7019,7027,5,7074,7077,5,7083,7085,5,7146,7148,7,7154,7155,7,7222,7223,5,7394,7400,5,7416,7417,5,8204,8204,5,8233,8233,4,8288,8292,4,8413,8416,5,8482,8482,14,8986,8987,14,9193,9203,14,9654,9654,14,9733,9733,14,9745,9745,14,9752,9752,14,9760,9760,14,9766,9766,14,9774,9775,14,9792,9792,14,9800,9811,14,9825,9826,14,9831,9831,14,9852,9853,14,9872,9873,14,9880,9880,14,9885,9887,14,9896,9897,14,9906,9916,14,9926,9927,14,9936,9936,14,9941,9960,14,9974,9974,14,9982,9985,14,9992,9997,14,10002,10002,14,10017,10017,14,10055,10055,14,10071,10071,14,10145,10145,14,11013,11015,14,11503,11505,5,12334,12335,5,12951,12951,14,42612,42621,5,43014,43014,5,43047,43047,7,43204,43205,5,43335,43345,5,43395,43395,7,43450,43451,7,43561,43566,5,43573,43574,5,43644,43644,5,43710,43711,5,43758,43759,7,44005,44005,5,44012,44012,7,44060,44060,11,44116,44116,11,44172,44172,11,44228,44228,11,44284,44284,11,44340,44340,11,44396,44396,11,44452,44452,11,44508,44508,11,44564,44564,11,44620,44620,11,44676,44676,11,44732,44732,11,44788,44788,11,44844,44844,11,44900,44900,11,44956,44956,11,45012,45012,11,45068,45068,11,45124,45124,11,45180,45180,11,45236,45236,11,45292,45292,11,45348,45348,11,45404,45404,11,45460,45460,11,45516,45516,11,45572,45572,11,45628,45628,11,45684,45684,11,45740,45740,11,45796,45796,11,45852,45852,11,45908,45908,11,45964,45964,11,46020,46020,11,46076,46076,11,46132,46132,11,46188,46188,11,46244,46244,11,46300,46300,11,46356,46356,11,46412,46412,11,46468,46468,11,46524,46524,11,46580,46580,11,46636,46636,11,46692,46692,11,46748,46748,11,46804,46804,11,46860,46860,11,46916,46916,11,46972,46972,11,47028,47028,11,47084,47084,11,47140,47140,11,47196,47196,11,47252,47252,11,47308,47308,11,47364,47364,11,47420,47420,11,47476,47476,11,47532,47532,11,47588,47588,11,47644,47644,11,47700,47700,11,47756,47756,11,47812,47812,11,47868,47868,11,47924,47924,11,47980,47980,11,48036,48036,11,48092,48092,11,48148,48148,11,48204,48204,11,48260,48260,11,48316,48316,11,48372,48372,11,48428,48428,11,48484,48484,11,48540,48540,11,48596,48596,11,48652,48652,11,48708,48708,11,48764,48764,11,48820,48820,11,48876,48876,11,48932,48932,11,48988,48988,11,49044,49044,11,49100,49100,11,49156,49156,11,49212,49212,11,49268,49268,11,49324,49324,11,49380,49380,11,49436,49436,11,49492,49492,11,49548,49548,11,49604,49604,11,49660,49660,11,49716,49716,11,49772,49772,11,49828,49828,11,49884,49884,11,49940,49940,11,49996,49996,11,50052,50052,11,50108,50108,11,50164,50164,11,50220,50220,11,50276,50276,11,50332,50332,11,50388,50388,11,50444,50444,11,50500,50500,11,50556,50556,11,50612,50612,11,50668,50668,11,50724,50724,11,50780,50780,11,50836,50836,11,50892,50892,11,50948,50948,11,51004,51004,11,51060,51060,11,51116,51116,11,51172,51172,11,51228,51228,11,51284,51284,11,51340,51340,11,51396,51396,11,51452,51452,11,51508,51508,11,51564,51564,11,51620,51620,11,51676,51676,11,51732,51732,11,51788,51788,11,51844,51844,11,51900,51900,11,51956,51956,11,52012,52012,11,52068,52068,11,52124,52124,11,52180,52180,11,52236,52236,11,52292,52292,11,52348,52348,11,52404,52404,11,52460,52460,11,52516,52516,11,52572,52572,11,52628,52628,11,52684,52684,11,52740,52740,11,52796,52796,11,52852,52852,11,52908,52908,11,52964,52964,11,53020,53020,11,53076,53076,11,53132,53132,11,53188,53188,11,53244,53244,11,53300,53300,11,53356,53356,11,53412,53412,11,53468,53468,11,53524,53524,11,53580,53580,11,53636,53636,11,53692,53692,11,53748,53748,11,53804,53804,11,53860,53860,11,53916,53916,11,53972,53972,11,54028,54028,11,54084,54084,11,54140,54140,11,54196,54196,11,54252,54252,11,54308,54308,11,54364,54364,11,54420,54420,11,54476,54476,11,54532,54532,11,54588,54588,11,54644,54644,11,54700,54700,11,54756,54756,11,54812,54812,11,54868,54868,11,54924,54924,11,54980,54980,11,55036,55036,11,55092,55092,11,55148,55148,11,55216,55238,9,65056,65071,5,65529,65531,4,68097,68099,5,68159,68159,5,69446,69456,5,69688,69702,5,69808,69810,7,69815,69816,7,69821,69821,1,69888,69890,5,69932,69932,7,69957,69958,7,70016,70017,5,70067,70069,7,70079,70080,7,70089,70092,5,70095,70095,5,70191,70193,5,70196,70196,5,70198,70199,5,70367,70367,5,70371,70378,5,70402,70403,7,70462,70462,5,70464,70464,5,70471,70472,7,70487,70487,5,70502,70508,5,70709,70711,7,70720,70721,7,70725,70725,7,70750,70750,5,70833,70834,7,70841,70841,7,70843,70844,7,70846,70846,7,70849,70849,7,71087,71087,5,71090,71093,5,71100,71101,5,71103,71104,5,71216,71218,7,71227,71228,7,71230,71230,7,71339,71339,5,71341,71341,5,71344,71349,5,71351,71351,5,71456,71457,7,71462,71462,7,71724,71726,7,71736,71736,7,71984,71984,5,71991,71992,7,71997,71997,7,71999,71999,1,72001,72001,1,72003,72003,5,72148,72151,5,72156,72159,7,72164,72164,7,72243,72248,5,72250,72250,1,72263,72263,5,72279,72280,7,72324,72329,1,72343,72343,7,72751,72751,7,72760,72765,5,72767,72767,5,72873,72873,7,72881,72881,7,72884,72884,7,73009,73014,5,73020,73021,5,73030,73030,1,73098,73102,7,73107,73108,7,73110,73110,7,73459,73460,5,78896,78904,4,92976,92982,5,94033,94087,7,94180,94180,5,113821,113822,5,119141,119141,5,119143,119145,5,119150,119154,5,119163,119170,5,119210,119213,5,121344,121398,5,121461,121461,5,121499,121503,5,122880,122886,5,122907,122913,5,122918,122922,5,123628,123631,5,125252,125258,5,126980,126980,14,127183,127183,14,127245,127247,14,127340,127343,14,127358,127359,14,127377,127386,14,127462,127487,6,127491,127503,14,127535,127535,14,127548,127551,14,127568,127569,14,127744,127777,14,127780,127891,14,127894,127895,14,127897,127899,14,127902,127984,14,127987,127989,14,127991,127994,14,128000,128253,14,128255,128317,14,128329,128334,14,128336,128359,14,128367,128368,14,128371,128377,14,128379,128390,14,128392,128393,14,128398,128399,14,128401,128404,14,128407,128419,14,128421,128421,14,128424,128424,14,128433,128434,14,128444,128444,14,128450,128452,14,128465,128467,14,128476,128478,14,128481,128481,14,128483,128483,14,128488,128488,14,128495,128495,14,128499,128499,14,128506,128591,14,128710,128714,14,128721,128722,14,128725,128725,14,128728,128735,14,128742,128744,14,128746,128746,14,128749,128751,14,128753,128754,14,128756,128758,14,128761,128761,14,128763,128764,14,128884,128895,14,128992,129003,14,129036,129039,14,129114,129119,14,129198,129279,14,129293,129295,14,129305,129310,14,129312,129319,14,129328,129328,14,129331,129338,14,129343,129343,14,129351,129355,14,129357,129359,14,129375,129387,14,129393,129393,14,129395,129398,14,129401,129401,14,129403,129403,14,129408,129412,14,129426,129431,14,129443,129444,14,129451,129453,14,129456,129465,14,129472,129472,14,129475,129482,14,129484,129484,14,129488,129510,14,129536,129647,14,129652,129652,14,129656,129658,14,129664,129666,14,129671,129679,14,129686,129704,14,129712,129718,14,129728,129730,14,129744,129750,14,917504,917504,4,917506,917535,4,917632,917759,4,918000,921599,4,0,9,4,11,12,4,14,31,4,169,169,14,174,174,14,1155,1159,5,1425,1469,5,1473,1474,5,1479,1479,5,1552,1562,5,1611,1631,5,1750,1756,5,1759,1764,5,1770,1773,5,1809,1809,5,1958,1968,5,2045,2045,5,2075,2083,5,2089,2093,5,2259,2273,5,2275,2306,5,2362,2362,5,2364,2364,5,2369,2376,5,2381,2381,5,2385,2391,5,2433,2433,5,2492,2492,5,2495,2496,7,2503,2504,7,2509,2509,5,2530,2531,5,2561,2562,5,2620,2620,5,2625,2626,5,2635,2637,5,2672,2673,5,2689,2690,5,2748,2748,5,2753,2757,5,2761,2761,7,2765,2765,5,2810,2815,5,2818,2819,7,2878,2878,5,2880,2880,7,2887,2888,7,2893,2893,5,2903,2903,5,2946,2946,5,3007,3007,7,3009,3010,7,3018,3020,7,3031,3031,5,3073,3075,7,3134,3136,5,3142,3144,5,3157,3158,5,3201,3201,5,3260,3260,5,3263,3263,5,3266,3266,5,3270,3270,5,3274,3275,7,3285,3286,5,3328,3329,5,3387,3388,5,3391,3392,7,3398,3400,7,3405,3405,5,3415,3415,5,3457,3457,5,3530,3530,5,3536,3537,7,3542,3542,5,3551,3551,5,3633,3633,5,3636,3642,5,3761,3761,5,3764,3772,5,3864,3865,5,3895,3895,5,3902,3903,7,3967,3967,7,3974,3975,5,3993,4028,5,4141,4144,5,4146,4151,5,4155,4156,7,4182,4183,7,4190,4192,5,4226,4226,5,4229,4230,5,4253,4253,5,4448,4519,9,4957,4959,5,5938,5940,5,6002,6003,5,6070,6070,7,6078,6085,7,6087,6088,7,6109,6109,5,6158,6158,4,6313,6313,5,6435,6438,7,6441,6443,7,6450,6450,5,6457,6459,5,6681,6682,7,6741,6741,7,6743,6743,7,6752,6752,5,6757,6764,5,6771,6780,5,6832,6845,5,6847,6848,5,6916,6916,7,6965,6965,5,6971,6971,7,6973,6977,7,6979,6980,7,7040,7041,5,7073,7073,7,7078,7079,7,7082,7082,7,7142,7142,5,7144,7145,5,7149,7149,5,7151,7153,5,7204,7211,7,7220,7221,7,7376,7378,5,7393,7393,7,7405,7405,5,7415,7415,7,7616,7673,5,8203,8203,4,8205,8205,13,8232,8232,4,8234,8238,4,8265,8265,14,8293,8293,4,8400,8412,5,8417,8417,5,8421,8432,5,8505,8505,14,8617,8618,14,9000,9000,14,9167,9167,14,9208,9210,14,9642,9643,14,9664,9664,14,9728,9732,14,9735,9741,14,9743,9744,14,9746,9746,14,9750,9751,14,9753,9756,14,9758,9759,14,9761,9761,14,9764,9765,14,9767,9769,14,9771,9773,14,9776,9783,14,9787,9791,14,9793,9793,14,9795,9799,14,9812,9822,14,9824,9824,14,9827,9827,14,9829,9830,14,9832,9832,14,9851,9851,14,9854,9854,14,9856,9861,14,9874,9876,14,9878,9879,14,9881,9881,14,9883,9884,14,9888,9889,14,9895,9895,14,9898,9899,14,9904,9905,14,9917,9918,14,9924,9925,14,9928,9928,14,9934,9935,14,9937,9937,14,9939,9940,14,9961,9962,14,9968,9973,14,9975,9978,14,9981,9981,14,9986,9986,14,9989,9989,14,9998,9998,14,10000,10001,14,10004,10004,14,10013,10013,14,10024,10024,14,10052,10052,14,10060,10060,14,10067,10069,14,10083,10084,14,10133,10135,14,10160,10160,14,10548,10549,14,11035,11036,14,11093,11093,14,11647,11647,5,12330,12333,5,12336,12336,14,12441,12442,5,12953,12953,14,42608,42610,5,42654,42655,5,43010,43010,5,43019,43019,5,43045,43046,5,43052,43052,5,43188,43203,7,43232,43249,5,43302,43309,5,43346,43347,7,43392,43394,5,43443,43443,5,43446,43449,5,43452,43453,5,43493,43493,5,43567,43568,7,43571,43572,7,43587,43587,5,43597,43597,7,43696,43696,5,43703,43704,5,43713,43713,5,43756,43757,5,43765,43765,7,44003,44004,7,44006,44007,7,44009,44010,7,44013,44013,5,44033,44059,12,44061,44087,12,44089,44115,12,44117,44143,12,44145,44171,12,44173,44199,12,44201,44227,12,44229,44255,12,44257,44283,12,44285,44311,12,44313,44339,12,44341,44367,12,44369,44395,12,44397,44423,12,44425,44451,12,44453,44479,12,44481,44507,12,44509,44535,12,44537,44563,12,44565,44591,12,44593,44619,12,44621,44647,12,44649,44675,12,44677,44703,12,44705,44731,12,44733,44759,12,44761,44787,12,44789,44815,12,44817,44843,12,44845,44871,12,44873,44899,12,44901,44927,12,44929,44955,12,44957,44983,12,44985,45011,12,45013,45039,12,45041,45067,12,45069,45095,12,45097,45123,12,45125,45151,12,45153,45179,12,45181,45207,12,45209,45235,12,45237,45263,12,45265,45291,12,45293,45319,12,45321,45347,12,45349,45375,12,45377,45403,12,45405,45431,12,45433,45459,12,45461,45487,12,45489,45515,12,45517,45543,12,45545,45571,12,45573,45599,12,45601,45627,12,45629,45655,12,45657,45683,12,45685,45711,12,45713,45739,12,45741,45767,12,45769,45795,12,45797,45823,12,45825,45851,12,45853,45879,12,45881,45907,12,45909,45935,12,45937,45963,12,45965,45991,12,45993,46019,12,46021,46047,12,46049,46075,12,46077,46103,12,46105,46131,12,46133,46159,12,46161,46187,12,46189,46215,12,46217,46243,12,46245,46271,12,46273,46299,12,46301,46327,12,46329,46355,12,46357,46383,12,46385,46411,12,46413,46439,12,46441,46467,12,46469,46495,12,46497,46523,12,46525,46551,12,46553,46579,12,46581,46607,12,46609,46635,12,46637,46663,12,46665,46691,12,46693,46719,12,46721,46747,12,46749,46775,12,46777,46803,12,46805,46831,12,46833,46859,12,46861,46887,12,46889,46915,12,46917,46943,12,46945,46971,12,46973,46999,12,47001,47027,12,47029,47055,12,47057,47083,12,47085,47111,12,47113,47139,12,47141,47167,12,47169,47195,12,47197,47223,12,47225,47251,12,47253,47279,12,47281,47307,12,47309,47335,12,47337,47363,12,47365,47391,12,47393,47419,12,47421,47447,12,47449,47475,12,47477,47503,12,47505,47531,12,47533,47559,12,47561,47587,12,47589,47615,12,47617,47643,12,47645,47671,12,47673,47699,12,47701,47727,12,47729,47755,12,47757,47783,12,47785,47811,12,47813,47839,12,47841,47867,12,47869,47895,12,47897,47923,12,47925,47951,12,47953,47979,12,47981,48007,12,48009,48035,12,48037,48063,12,48065,48091,12,48093,48119,12,48121,48147,12,48149,48175,12,48177,48203,12,48205,48231,12,48233,48259,12,48261,48287,12,48289,48315,12,48317,48343,12,48345,48371,12,48373,48399,12,48401,48427,12,48429,48455,12,48457,48483,12,48485,48511,12,48513,48539,12,48541,48567,12,48569,48595,12,48597,48623,12,48625,48651,12,48653,48679,12,48681,48707,12,48709,48735,12,48737,48763,12,48765,48791,12,48793,48819,12,48821,48847,12,48849,48875,12,48877,48903,12,48905,48931,12,48933,48959,12,48961,48987,12,48989,49015,12,49017,49043,12,49045,49071,12,49073,49099,12,49101,49127,12,49129,49155,12,49157,49183,12,49185,49211,12,49213,49239,12,49241,49267,12,49269,49295,12,49297,49323,12,49325,49351,12,49353,49379,12,49381,49407,12,49409,49435,12,49437,49463,12,49465,49491,12,49493,49519,12,49521,49547,12,49549,49575,12,49577,49603,12,49605,49631,12,49633,49659,12,49661,49687,12,49689,49715,12,49717,49743,12,49745,49771,12,49773,49799,12,49801,49827,12,49829,49855,12,49857,49883,12,49885,49911,12,49913,49939,12,49941,49967,12,49969,49995,12,49997,50023,12,50025,50051,12,50053,50079,12,50081,50107,12,50109,50135,12,50137,50163,12,50165,50191,12,50193,50219,12,50221,50247,12,50249,50275,12,50277,50303,12,50305,50331,12,50333,50359,12,50361,50387,12,50389,50415,12,50417,50443,12,50445,50471,12,50473,50499,12,50501,50527,12,50529,50555,12,50557,50583,12,50585,50611,12,50613,50639,12,50641,50667,12,50669,50695,12,50697,50723,12,50725,50751,12,50753,50779,12,50781,50807,12,50809,50835,12,50837,50863,12,50865,50891,12,50893,50919,12,50921,50947,12,50949,50975,12,50977,51003,12,51005,51031,12,51033,51059,12,51061,51087,12,51089,51115,12,51117,51143,12,51145,51171,12,51173,51199,12,51201,51227,12,51229,51255,12,51257,51283,12,51285,51311,12,51313,51339,12,51341,51367,12,51369,51395,12,51397,51423,12,51425,51451,12,51453,51479,12,51481,51507,12,51509,51535,12,51537,51563,12,51565,51591,12,51593,51619,12,51621,51647,12,51649,51675,12,51677,51703,12,51705,51731,12,51733,51759,12,51761,51787,12,51789,51815,12,51817,51843,12,51845,51871,12,51873,51899,12,51901,51927,12,51929,51955,12,51957,51983,12,51985,52011,12,52013,52039,12,52041,52067,12,52069,52095,12,52097,52123,12,52125,52151,12,52153,52179,12,52181,52207,12,52209,52235,12,52237,52263,12,52265,52291,12,52293,52319,12,52321,52347,12,52349,52375,12,52377,52403,12,52405,52431,12,52433,52459,12,52461,52487,12,52489,52515,12,52517,52543,12,52545,52571,12,52573,52599,12,52601,52627,12,52629,52655,12,52657,52683,12,52685,52711,12,52713,52739,12,52741,52767,12,52769,52795,12,52797,52823,12,52825,52851,12,52853,52879,12,52881,52907,12,52909,52935,12,52937,52963,12,52965,52991,12,52993,53019,12,53021,53047,12,53049,53075,12,53077,53103,12,53105,53131,12,53133,53159,12,53161,53187,12,53189,53215,12,53217,53243,12,53245,53271,12,53273,53299,12,53301,53327,12,53329,53355,12,53357,53383,12,53385,53411,12,53413,53439,12,53441,53467,12,53469,53495,12,53497,53523,12,53525,53551,12,53553,53579,12,53581,53607,12,53609,53635,12,53637,53663,12,53665,53691,12,53693,53719,12,53721,53747,12,53749,53775,12,53777,53803,12,53805,53831,12,53833,53859,12,53861,53887,12,53889,53915,12,53917,53943,12,53945,53971,12,53973,53999,12,54001,54027,12,54029,54055,12,54057,54083,12,54085,54111,12,54113,54139,12,54141,54167,12,54169,54195,12,54197,54223,12,54225,54251,12,54253,54279,12,54281,54307,12,54309,54335,12,54337,54363,12,54365,54391,12,54393,54419,12,54421,54447,12,54449,54475,12,54477,54503,12,54505,54531,12,54533,54559,12,54561,54587,12,54589,54615,12,54617,54643,12,54645,54671,12,54673,54699,12,54701,54727,12,54729,54755,12,54757,54783,12,54785,54811,12,54813,54839,12,54841,54867,12,54869,54895,12,54897,54923,12,54925,54951,12,54953,54979,12,54981,55007,12,55009,55035,12,55037,55063,12,55065,55091,12,55093,55119,12,55121,55147,12,55149,55175,12,55177,55203,12,55243,55291,10,65024,65039,5,65279,65279,4,65520,65528,4,66045,66045,5,66422,66426,5,68101,68102,5,68152,68154,5,68325,68326,5,69291,69292,5,69632,69632,7,69634,69634,7,69759,69761,5]")}function ft(ye,ke){if(ye===0)return 0;const Ge=ot(ye,ke);if(Ge!==void 0)return Ge;const We=se(ke,ye);return ye-=Je(We),ye}function ot(ye,ke){let Ge=se(ke,ye);for(ye-=Je(Ge);Ne(Ge)||Ge===65039||Ge===8419;){if(ye===0)return;Ge=se(ke,ye),ye-=Je(Ge)}if(ht(Ge)){if(ye>=0){const We=se(ke,ye);We===8205&&(ye-=Je(We))}return ye}}function Je(ye){return ye>=65536?2:1}function Ne(ye){return 127995<=ye&&ye<=127999}},72999:function(d,v,e){"use strict";e.d(v,{$E:function(){return S},$K:function(){return h},D8:function(){return y},HD:function(){return i},IU:function(){return k},Jp:function(){return u},Kn:function(){return l},cW:function(){return x},f6:function(){return R},hj:function(){return c},jn:function(){return f},kJ:function(){return r},mf:function(){return p},o8:function(){return o},p_:function(){return a},vE:function(){return A}});function r(P){return Array.isArray(P)}function i(P){return typeof P=="string"}function l(P){return typeof P=="object"&&P!==null&&!Array.isArray(P)&&!(P instanceof RegExp)&&!(P instanceof Date)}function c(P){return typeof P=="number"&&!isNaN(P)}function f(P){return P===!0||P===!1}function o(P){return typeof P=="undefined"}function h(P){return!u(P)}function u(P){return o(P)||P===null}function a(P,M){if(!P)throw new Error(M?`Unexpected type, expected '${M}'`:"Unexpected type")}function x(P){if(u(P))throw new Error("Assertion Failed: argument is undefined or null");return P}function p(P){return typeof P=="function"}function y(P,M){const B=Math.min(P.length,M.length);for(let N=0;N<B;N++)m(P[N],M[N])}function m(P,M){if(i(M)){if(typeof P!==M)throw new Error(`argument does not match constraint: typeof ${M}`)}else if(p(M)){try{if(P instanceof M)return}catch(B){}if(!u(P)&&P.constructor===M||M.length===1&&M.call(void 0,P)===!0)return;throw new Error("argument does not match one of these constraints: arg instanceof constraint, arg.constructor === constraint, nor constraint(arg) === true")}}function b(P){let M=[],B=Object.getPrototypeOf(P);for(;Object.prototype!==B;)M=M.concat(Object.getOwnPropertyNames(B)),B=Object.getPrototypeOf(B);return M}function S(P){const M=[];for(const B of b(P))typeof P[B]=="function"&&M.push(B);return M}function k(P,M){const B=K=>function(){const H=Array.prototype.slice.call(arguments,0);return M(K,H)};let N={};for(const K of P)N[K]=B(K);return N}function R(P){return P===null?void 0:P}function A(P,M="Unreachable"){throw new Error(M)}},13268:function(d,v,e){"use strict";e.d(v,{N:function(){return i}});function r(l,c){let f;return c.length===0?f=l:f=l.replace(/\{(\d+)\}/g,function(o,h){const u=h[0];return typeof c[u]!="undefined"?c[u]:o}),f}function i(l,c,...f){return r(c,f)}},96236:function(d,v,e){"use strict";e.d(v,{BH:function(){return k},NZ:function(){return R},U8:function(){return A},co:function(){return S},eH:function(){return b},vr:function(){return m}});var r=e(75918),i=e(52615),l=e(4348),c=e(88226),f=e(69323),o=e(34502),h=e(35884),u=e(90689),a=e(16925),x=e(49055),p=function(P,M,B,N){var K=arguments.length,H=K<3?M:N===null?N=Object.getOwnPropertyDescriptor(M,B):N,W;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")H=Reflect.decorate(P,M,B,N);else for(var ae=P.length-1;ae>=0;ae--)(W=P[ae])&&(H=(K<3?W(H):K>3?W(M,B,H):W(M,B))||H);return K>3&&H&&Object.defineProperty(M,B,H),H},y=function(P,M){return function(B,N){M(B,N,P)}};function m(P){return P.command!==void 0}class b{constructor(M){this.id=b._idPool++,this._debugName=M}}b._idPool=0,b.CommandPalette=new b("CommandPalette"),b.EditorContext=new b("EditorContext"),b.SimpleEditorContext=new b("SimpleEditorContext"),b.EditorContextCopy=new b("EditorContextCopy"),b.EditorContextPeek=new b("EditorContextPeek"),b.MenubarEditMenu=new b("MenubarEditMenu"),b.MenubarCopy=new b("MenubarCopy"),b.MenubarGoMenu=new b("MenubarGoMenu"),b.MenubarSelectionMenu=new b("MenubarSelectionMenu"),b.InlineCompletionsActions=new b("InlineCompletionsActions");const S=(0,a.yh)("menuService"),k=new class{constructor(){this._commands=new Map,this._menuItems=new Map,this._onDidChangeMenu=new l.Q5,this.onDidChangeMenu=this._onDidChangeMenu.event,this._commandPaletteChangeEvent={has:P=>P===b.CommandPalette}}addCommand(P){return this.addCommands(c.$.single(P))}addCommands(P){for(const M of P)this._commands.set(M.id,M);return this._onDidChangeMenu.fire(this._commandPaletteChangeEvent),(0,f.OF)(()=>{let M=!1;for(const B of P)M=this._commands.delete(B.id)||M;M&&this._onDidChangeMenu.fire(this._commandPaletteChangeEvent)})}getCommand(P){return this._commands.get(P)}getCommands(){const P=new Map;return this._commands.forEach((M,B)=>P.set(B,M)),P}appendMenuItem(P,M){return this.appendMenuItems(c.$.single({id:P,item:M}))}appendMenuItems(P){const M=new Set,B=new o.S;for(const{id:N,item:K}of P){let H=this._menuItems.get(N);H||(H=new o.S,this._menuItems.set(N,H)),B.push(H.push(K)),M.add(N)}return this._onDidChangeMenu.fire(M),(0,f.OF)(()=>{if(B.size>0){for(let N of B)N();this._onDidChangeMenu.fire(M),B.clear()}})}getMenuItems(P){let M;return this._menuItems.has(P)?M=[...this._menuItems.get(P)]:M=[],P===b.CommandPalette&&this._appendImplicitItems(M),M}_appendImplicitItems(P){const M=new Set;for(const B of P)m(B)&&(M.add(B.command.id),B.alt&&M.add(B.alt.id));this._commands.forEach((B,N)=>{M.has(N)||P.push({command:B})})}};class R extends r.wY{constructor(M,B,N,K){super(`submenuitem.${M.submenu.id}`,typeof M.title=="string"?M.title:M.title.value,[],"submenu"),this.item=M,this._menuService=B,this._contextKeyService=N,this._options=K}get actions(){const M=[],B=this._menuService.createMenu(this.item.submenu,this._contextKeyService),N=B.getActions(this._options);B.dispose();for(const[,K]of N)K.length>0&&(M.push(...K),M.push(new r.Z0));return M.length&&M.pop(),M}}let A=class s0{constructor(M,B,N,K,H){var W,ae;if(this._commandService=H,this.id=M.id,this.label=N!=null&&N.renderShortTitle&&M.shortTitle?typeof M.shortTitle=="string"?M.shortTitle:M.shortTitle.value:typeof M.title=="string"?M.title:M.title.value,this.tooltip=(ae=typeof M.tooltip=="string"?M.tooltip:(W=M.tooltip)===null||W===void 0?void 0:W.value)!==null&&ae!==void 0?ae:"",this.enabled=!M.precondition||K.contextMatchesRules(M.precondition),this.checked=void 0,M.toggled){const ne=M.toggled.condition?M.toggled:{condition:M.toggled};this.checked=K.contextMatchesRules(ne.condition),this.checked&&ne.tooltip&&(this.tooltip=typeof ne.tooltip=="string"?ne.tooltip:ne.tooltip.value),ne.title&&(this.label=typeof ne.title=="string"?ne.title:ne.title.value)}this.item=M,this.alt=B?new s0(B,void 0,N,K,H):void 0,this._options=N,x.kS.isThemeIcon(M.icon)&&(this.class=i.dT.asClassName(M.icon))}dispose(){}run(...M){var B,N;let K=[];return!((B=this._options)===null||B===void 0)&&B.arg&&(K=[...K,this._options.arg]),!((N=this._options)===null||N===void 0)&&N.shouldForwardArgs&&(K=[...K,...M]),this._commandService.executeCommand(this.id,...K)}};A=p([y(3,u.i6),y(4,h.H)],A)},35884:function(d,v,e){"use strict";e.d(v,{H:function(){return h},P:function(){return u}});var r=e(4348),i=e(88226),l=e(69323),c=e(34502),f=e(72999),o=e(16925);const h=(0,o.yh)("commandService"),u=new class{constructor(){this._commands=new Map,this._onDidRegisterCommand=new r.Q5,this.onDidRegisterCommand=this._onDidRegisterCommand.event}registerCommand(a,x){if(!a)throw new Error("invalid command");if(typeof a=="string"){if(!x)throw new Error("invalid command");return this.registerCommand({id:a,handler:x})}if(a.description){const S=[];for(let R of a.description.args)S.push(R.constraint);const k=a.handler;a.handler=function(R,...A){return(0,f.D8)(A,S),k(R,...A)}}const{id:p}=a;let y=this._commands.get(p);y||(y=new c.S,this._commands.set(p,y));let m=y.unshift(a),b=(0,l.OF)(()=>{m();const S=this._commands.get(p);S!=null&&S.isEmpty()&&this._commands.delete(p)});return this._onDidRegisterCommand.fire(p),b}registerCommandAlias(a,x){return u.registerCommand(a,(p,...y)=>p.get(h).executeCommand(x,...y))}getCommand(a){const x=this._commands.get(a);if(!(!x||x.isEmpty()))return i.$.first(x)}getCommands(){const a=new Map;for(const x of this._commands.keys()){const p=this.getCommand(x);p&&a.set(x,p)}return a}};u.registerCommand("noop",()=>{})},90689:function(d,v,e){"use strict";e.d(v,{Ao:function(){return h},Eq:function(){return X},Fb:function(){return u},K8:function(){return ee},i6:function(){return q},uy:function(){return oe}});var r=e(23345),i=e(82983),l=e(16925);let c=r.WE||"";const f=new Map;f.set("false",!1),f.set("true",!0),f.set("isMac",r.dz),f.set("isLinux",r.IJ),f.set("isWindows",r.ED),f.set("isWeb",r.$L),f.set("isMacNative",r.dz&&!r.$L),f.set("isEdge",c.indexOf("Edg/")>=0),f.set("isFirefox",c.indexOf("Firefox")>=0),f.set("isChrome",c.indexOf("Chrome")>=0),f.set("isSafari",c.indexOf("Safari")>=0);const o=Object.prototype.hasOwnProperty;class h{static has(z){return y.create(z)}static equals(z,j){return m.create(z,j)}static regex(z,j){return K.create(z,j)}static not(z){return R.create(z)}static and(...z){return ae.create(z,null)}static or(...z){return ne.create(z,null,!0)}static deserialize(z,j=!1){if(z)return this._deserializeOrExpression(z,j)}static _deserializeOrExpression(z,j){let ie=z.split("||");return ne.create(ie.map(me=>this._deserializeAndExpression(me,j)),null,!0)}static _deserializeAndExpression(z,j){let ie=z.split("&&");return ae.create(ie.map(me=>this._deserializeOne(me,j)),null)}static _deserializeOne(z,j){if(z=z.trim(),z.indexOf("!=")>=0){let ie=z.split("!=");return k.create(ie[0].trim(),this._deserializeValue(ie[1],j))}if(z.indexOf("==")>=0){let ie=z.split("==");return m.create(ie[0].trim(),this._deserializeValue(ie[1],j))}if(z.indexOf("=~")>=0){let ie=z.split("=~");return K.create(ie[0].trim(),this._deserializeRegexValue(ie[1],j))}if(z.indexOf(" in ")>=0){let ie=z.split(" in ");return b.create(ie[0].trim(),ie[1].trim())}if(/^[^<=>]+>=[^<=>]+$/.test(z)){const ie=z.split(">=");return M.create(ie[0].trim(),ie[1].trim())}if(/^[^<=>]+>[^<=>]+$/.test(z)){const ie=z.split(">");return P.create(ie[0].trim(),ie[1].trim())}if(/^[^<=>]+<=[^<=>]+$/.test(z)){const ie=z.split("<=");return N.create(ie[0].trim(),ie[1].trim())}if(/^[^<=>]+<[^<=>]+$/.test(z)){const ie=z.split("<");return B.create(ie[0].trim(),ie[1].trim())}return/^\!\s*/.test(z)?R.create(z.substr(1).trim()):y.create(z)}static _deserializeValue(z,j){if(z=z.trim(),z==="true")return!0;if(z==="false")return!1;let ie=/^'([^']*)'$/.exec(z);return ie?ie[1].trim():z}static _deserializeRegexValue(z,j){if((0,i.m5)(z)){if(j)throw new Error("missing regexp-value for =~-expression");return console.warn("missing regexp-value for =~-expression"),null}let ie=z.indexOf("/"),me=z.lastIndexOf("/");if(ie===me||ie<0){if(j)throw new Error(`bad regexp-value '${z}', missing /-enclosure`);return console.warn(`bad regexp-value '${z}', missing /-enclosure`),null}let Se=z.slice(ie+1,me),Ie=z[me+1]==="i"?"i":"";try{return new RegExp(Se,Ie)}catch(He){if(j)throw new Error(`bad regexp-value '${z}', parse error: ${He}`);return console.warn(`bad regexp-value '${z}', parse error: ${He}`),null}}}function u(le,z){const j=le?le.substituteConstants():void 0,ie=z?z.substituteConstants():void 0;return!j&&!ie?!0:!j||!ie?!1:j.equals(ie)}function a(le,z){return le.cmp(z)}class x{constructor(){this.type=0}cmp(z){return this.type-z.type}equals(z){return z.type===this.type}substituteConstants(){return this}evaluate(z){return!1}serialize(){return"false"}keys(){return[]}negate(){return p.INSTANCE}}x.INSTANCE=new x;class p{constructor(){this.type=1}cmp(z){return this.type-z.type}equals(z){return z.type===this.type}substituteConstants(){return this}evaluate(z){return!0}serialize(){return"true"}keys(){return[]}negate(){return x.INSTANCE}}p.INSTANCE=new p;class y{constructor(z,j){this.key=z,this.negated=j,this.type=2}static create(z,j=null){const ie=f.get(z);return typeof ie=="boolean"?ie?p.INSTANCE:x.INSTANCE:new y(z,j)}cmp(z){return z.type!==this.type?this.type-z.type:V(this.key,z.key)}equals(z){return z.type===this.type?this.key===z.key:!1}substituteConstants(){const z=f.get(this.key);return typeof z=="boolean"?z?p.INSTANCE:x.INSTANCE:this}evaluate(z){return!!z.getValue(this.key)}serialize(){return this.key}keys(){return[this.key]}negate(){return this.negated||(this.negated=R.create(this.key,this)),this.negated}}class m{constructor(z,j,ie){this.key=z,this.value=j,this.negated=ie,this.type=4}static create(z,j,ie=null){if(typeof j=="boolean")return j?y.create(z,ie):R.create(z,ie);const me=f.get(z);return typeof me=="boolean"?j===(me?"true":"false")?p.INSTANCE:x.INSTANCE:new m(z,j,ie)}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.value,z.key,z.value)}equals(z){return z.type===this.type?this.key===z.key&&this.value===z.value:!1}substituteConstants(){const z=f.get(this.key);if(typeof z=="boolean"){const j=z?"true":"false";return this.value===j?p.INSTANCE:x.INSTANCE}return this}evaluate(z){return z.getValue(this.key)==this.value}serialize(){return`${this.key} == '${this.value}'`}keys(){return[this.key]}negate(){return this.negated||(this.negated=k.create(this.key,this.value,this)),this.negated}}class b{constructor(z,j){this.key=z,this.valueKey=j,this.type=10,this.negated=null}static create(z,j){return new b(z,j)}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.valueKey,z.key,z.valueKey)}equals(z){return z.type===this.type?this.key===z.key&&this.valueKey===z.valueKey:!1}substituteConstants(){return this}evaluate(z){const j=z.getValue(this.valueKey),ie=z.getValue(this.key);return Array.isArray(j)?j.indexOf(ie)>=0:typeof ie=="string"&&typeof j=="object"&&j!==null?o.call(j,ie):!1}serialize(){return`${this.key} in '${this.valueKey}'`}keys(){return[this.key,this.valueKey]}negate(){return this.negated||(this.negated=S.create(this)),this.negated}}class S{constructor(z){this._actual=z,this.type=11}static create(z){return new S(z)}cmp(z){return z.type!==this.type?this.type-z.type:this._actual.cmp(z._actual)}equals(z){return z.type===this.type?this._actual.equals(z._actual):!1}substituteConstants(){return this}evaluate(z){return!this._actual.evaluate(z)}serialize(){throw new Error("Method not implemented.")}keys(){return this._actual.keys()}negate(){return this._actual}}class k{constructor(z,j,ie){this.key=z,this.value=j,this.negated=ie,this.type=5}static create(z,j,ie=null){if(typeof j=="boolean")return j?R.create(z,ie):y.create(z,ie);const me=f.get(z);return typeof me=="boolean"?j===(me?"true":"false")?x.INSTANCE:p.INSTANCE:new k(z,j,ie)}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.value,z.key,z.value)}equals(z){return z.type===this.type?this.key===z.key&&this.value===z.value:!1}substituteConstants(){const z=f.get(this.key);if(typeof z=="boolean"){const j=z?"true":"false";return this.value===j?x.INSTANCE:p.INSTANCE}return this}evaluate(z){return z.getValue(this.key)!=this.value}serialize(){return`${this.key} != '${this.value}'`}keys(){return[this.key]}negate(){return this.negated||(this.negated=m.create(this.key,this.value,this)),this.negated}}class R{constructor(z,j){this.key=z,this.negated=j,this.type=3}static create(z,j=null){const ie=f.get(z);return typeof ie=="boolean"?ie?x.INSTANCE:p.INSTANCE:new R(z,j)}cmp(z){return z.type!==this.type?this.type-z.type:V(this.key,z.key)}equals(z){return z.type===this.type?this.key===z.key:!1}substituteConstants(){const z=f.get(this.key);return typeof z=="boolean"?z?x.INSTANCE:p.INSTANCE:this}evaluate(z){return!z.getValue(this.key)}serialize(){return`!${this.key}`}keys(){return[this.key]}negate(){return this.negated||(this.negated=y.create(this.key,this)),this.negated}}function A(le,z){if(typeof le=="string"){const j=parseFloat(le);isNaN(j)||(le=j)}return typeof le=="string"||typeof le=="number"?z(le):x.INSTANCE}class P{constructor(z,j,ie){this.key=z,this.value=j,this.negated=ie,this.type=12}static create(z,j,ie=null){return A(j,me=>new P(z,me,ie))}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.value,z.key,z.value)}equals(z){return z.type===this.type?this.key===z.key&&this.value===z.value:!1}substituteConstants(){return this}evaluate(z){return typeof this.value=="string"?!1:parseFloat(z.getValue(this.key))>this.value}serialize(){return`${this.key} > ${this.value}`}keys(){return[this.key]}negate(){return this.negated||(this.negated=N.create(this.key,this.value,this)),this.negated}}class M{constructor(z,j,ie){this.key=z,this.value=j,this.negated=ie,this.type=13}static create(z,j,ie=null){return A(j,me=>new M(z,me,ie))}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.value,z.key,z.value)}equals(z){return z.type===this.type?this.key===z.key&&this.value===z.value:!1}substituteConstants(){return this}evaluate(z){return typeof this.value=="string"?!1:parseFloat(z.getValue(this.key))>=this.value}serialize(){return`${this.key} >= ${this.value}`}keys(){return[this.key]}negate(){return this.negated||(this.negated=B.create(this.key,this.value,this)),this.negated}}class B{constructor(z,j,ie){this.key=z,this.value=j,this.negated=ie,this.type=14}static create(z,j,ie=null){return A(j,me=>new B(z,me,ie))}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.value,z.key,z.value)}equals(z){return z.type===this.type?this.key===z.key&&this.value===z.value:!1}substituteConstants(){return this}evaluate(z){return typeof this.value=="string"?!1:parseFloat(z.getValue(this.key))<this.value}serialize(){return`${this.key} < ${this.value}`}keys(){return[this.key]}negate(){return this.negated||(this.negated=M.create(this.key,this.value,this)),this.negated}}class N{constructor(z,j,ie){this.key=z,this.value=j,this.negated=ie,this.type=15}static create(z,j,ie=null){return A(j,me=>new N(z,me,ie))}cmp(z){return z.type!==this.type?this.type-z.type:se(this.key,this.value,z.key,z.value)}equals(z){return z.type===this.type?this.key===z.key&&this.value===z.value:!1}substituteConstants(){return this}evaluate(z){return typeof this.value=="string"?!1:parseFloat(z.getValue(this.key))<=this.value}serialize(){return`${this.key} <= ${this.value}`}keys(){return[this.key]}negate(){return this.negated||(this.negated=P.create(this.key,this.value,this)),this.negated}}class K{constructor(z,j){this.key=z,this.regexp=j,this.type=7,this.negated=null}static create(z,j){return new K(z,j)}cmp(z){if(z.type!==this.type)return this.type-z.type;if(this.key<z.key)return-1;if(this.key>z.key)return 1;const j=this.regexp?this.regexp.source:"",ie=z.regexp?z.regexp.source:"";return j<ie?-1:j>ie?1:0}equals(z){if(z.type===this.type){const j=this.regexp?this.regexp.source:"",ie=z.regexp?z.regexp.source:"";return this.key===z.key&&j===ie}return!1}substituteConstants(){return this}evaluate(z){let j=z.getValue(this.key);return this.regexp?this.regexp.test(j):!1}serialize(){const z=this.regexp?`/${this.regexp.source}/${this.regexp.ignoreCase?"i":""}`:"/invalid/";return`${this.key} =~ ${z}`}keys(){return[this.key]}negate(){return this.negated||(this.negated=H.create(this)),this.negated}}class H{constructor(z){this._actual=z,this.type=8}static create(z){return new H(z)}cmp(z){return z.type!==this.type?this.type-z.type:this._actual.cmp(z._actual)}equals(z){return z.type===this.type?this._actual.equals(z._actual):!1}substituteConstants(){return this}evaluate(z){return!this._actual.evaluate(z)}serialize(){throw new Error("Method not implemented.")}keys(){return this._actual.keys()}negate(){return this._actual}}function W(le){let z=null;for(let j=0,ie=le.length;j<ie;j++){const me=le[j].substituteConstants();if(le[j]!==me&&z===null){z=[];for(let Se=0;Se<j;Se++)z[Se]=le[Se]}z!==null&&(z[j]=me)}return z===null?le:z}class ae{constructor(z,j){this.expr=z,this.negated=j,this.type=6}static create(z,j){return ae._normalizeArr(z,j)}cmp(z){if(z.type!==this.type)return this.type-z.type;if(this.expr.length<z.expr.length)return-1;if(this.expr.length>z.expr.length)return 1;for(let j=0,ie=this.expr.length;j<ie;j++){const me=a(this.expr[j],z.expr[j]);if(me!==0)return me}return 0}equals(z){if(z.type===this.type){if(this.expr.length!==z.expr.length)return!1;for(let j=0,ie=this.expr.length;j<ie;j++)if(!this.expr[j].equals(z.expr[j]))return!1;return!0}return!1}substituteConstants(){const z=W(this.expr);return z===this.expr?this:ae.create(z,this.negated)}evaluate(z){for(let j=0,ie=this.expr.length;j<ie;j++)if(!this.expr[j].evaluate(z))return!1;return!0}static _normalizeArr(z,j){const ie=[];let me=!1;for(const Se of z)if(Se){if(Se.type===1){me=!0;continue}if(Se.type===0)return x.INSTANCE;if(Se.type===6){ie.push(...Se.expr);continue}ie.push(Se)}if(ie.length===0&&me)return p.INSTANCE;if(ie.length!==0){if(ie.length===1)return ie[0];ie.sort(a);for(let Se=1;Se<ie.length;Se++)ie[Se-1].equals(ie[Se])&&(ie.splice(Se,1),Se--);if(ie.length===1)return ie[0];for(;ie.length>1;){const Se=ie[ie.length-1];if(Se.type!==9)break;ie.pop();const Ie=ie.pop(),He=ie.length===0,je=ne.create(Se.expr.map(Dt=>ae.create([Dt,Ie],null)),null,He);je&&(ie.push(je),ie.sort(a))}return ie.length===1?ie[0]:new ae(ie,j)}}serialize(){return this.expr.map(z=>z.serialize()).join(" && ")}keys(){const z=[];for(let j of this.expr)z.push(...j.keys());return z}negate(){if(!this.negated){const z=[];for(let j of this.expr)z.push(j.negate());this.negated=ne.create(z,this,!0)}return this.negated}}class ne{constructor(z,j){this.expr=z,this.negated=j,this.type=9}static create(z,j,ie){return ne._normalizeArr(z,j,ie)}cmp(z){if(z.type!==this.type)return this.type-z.type;if(this.expr.length<z.expr.length)return-1;if(this.expr.length>z.expr.length)return 1;for(let j=0,ie=this.expr.length;j<ie;j++){const me=a(this.expr[j],z.expr[j]);if(me!==0)return me}return 0}equals(z){if(z.type===this.type){if(this.expr.length!==z.expr.length)return!1;for(let j=0,ie=this.expr.length;j<ie;j++)if(!this.expr[j].equals(z.expr[j]))return!1;return!0}return!1}substituteConstants(){const z=W(this.expr);return z===this.expr?this:ne.create(z,this.negated,!1)}evaluate(z){for(let j=0,ie=this.expr.length;j<ie;j++)if(this.expr[j].evaluate(z))return!0;return!1}static _normalizeArr(z,j,ie){let me=[],Se=!1;if(z){for(let Ie=0,He=z.length;Ie<He;Ie++){const je=z[Ie];if(je){if(je.type===0){Se=!0;continue}if(je.type===1)return p.INSTANCE;if(je.type===9){me=me.concat(je.expr);continue}me.push(je)}}if(me.length===0&&Se)return x.INSTANCE;me.sort(a)}if(me.length!==0){if(me.length===1)return me[0];for(let Ie=1;Ie<me.length;Ie++)me[Ie-1].equals(me[Ie])&&(me.splice(Ie,1),Ie--);if(me.length===1)return me[0];if(ie){for(let Ie=0;Ie<me.length;Ie++)for(let He=Ie+1;He<me.length;He++)ee(me[Ie],me[He])&&(me.splice(He,1),He--);if(me.length===1)return me[0]}return new ne(me,j)}}serialize(){return this.expr.map(z=>z.serialize()).join(" || ")}keys(){const z=[];for(let j of this.expr)z.push(...j.keys());return z}negate(){if(!this.negated){let z=[];for(let j of this.expr)z.push(j.negate());for(;z.length>1;){const j=z.shift(),ie=z.shift(),me=[];for(const Ie of J(j))for(const He of J(ie))me.push(ae.create([Ie,He],null));const Se=z.length===0;z.unshift(ne.create(me,null,Se))}this.negated=z[0]}return this.negated}}class oe extends y{constructor(z,j,ie){super(z,null),this._defaultValue=j,typeof ie=="object"?oe._info.push(Object.assign(Object.assign({},ie),{key:z})):ie!==!0&&oe._info.push({key:z,description:ie,type:j!=null?typeof j:void 0})}static all(){return oe._info.values()}bindTo(z){return z.createKey(this.key,this._defaultValue)}getValue(z){return z.getContextKeyValue(this.key)}toNegated(){return this.negate()}isEqualTo(z){return m.create(this.key,z)}}oe._info=[];const q=(0,l.yh)("contextKeyService"),X="setContext";function V(le,z){return le<z?-1:le>z?1:0}function se(le,z,j,ie){return le<j?-1:le>j?1:z<ie?-1:z>ie?1:0}function ee(le,z){if(z.type===6&&le.type!==9&&le.type!==6){for(const me of z.expr)if(le.equals(me))return!0}const j=le.negate(),ie=J(j).concat(J(z));ie.sort(a);for(let me=0;me<ie.length;me++){const Ie=ie[me].negate();for(let He=me+1;He<ie.length;He++){const je=ie[He];if(Ie.equals(je))return!0}}return!1}function J(le){return le.type===9?le.expr:[le]}},16925:function(d,v,e){"use strict";e.d(v,{I8:function(){return r},TG:function(){return i},jt:function(){return f},yh:function(){return c}});var r;(function(o){o.serviceIds=new Map,o.DI_TARGET="$di$target",o.DI_DEPENDENCIES="$di$dependencies";function h(u){return u[o.DI_DEPENDENCIES]||[]}o.getServiceDependencies=h})(r||(r={}));const i=c("instantiationService");function l(o,h,u,a){h[r.DI_TARGET]===h?h[r.DI_DEPENDENCIES].push({id:o,index:u,optional:a}):(h[r.DI_DEPENDENCIES]=[{id:o,index:u,optional:a}],h[r.DI_TARGET]=h)}function c(o){if(r.serviceIds.has(o))return r.serviceIds.get(o);const h=function(u,a,x){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");l(h,u,x,!1)};return h.toString=()=>o,r.serviceIds.set(o,h),h}function f(o){return function(h,u,a){if(arguments.length!==3)throw new Error("@optional-decorator can only be used to decorate a parameter");l(o,h,a,!0)}}},44650:function(d,v,e){"use strict";e.d(v,{B:function(){return c}});var r=e(76068),i=e(72999);class l{constructor(){this.data=new Map}add(o,h){r.ok(i.HD(o)),r.ok(i.Kn(h)),r.ok(!this.data.has(o),"There is already an extension with this id"),this.data.set(o,h)}as(o){return this.data.get(o)||null}}const c=new l},66213:function(d,v,e){"use strict";e.d(v,{e:function(){return r}});var r;(function(i){i.DARK="dark",i.LIGHT="light",i.HIGH_CONTRAST="hc"})(r||(r={}))},49055:function(d,v,e){"use strict";e.d(v,{EN:function(){return a},IP:function(){return y},Ic:function(){return S},XE:function(){return h},bB:function(){return k},kS:function(){return x},m6:function(){return p}});var r=e(52615),i=e(4348),l=e(69323),c=e(16925),f=e(44650),o=e(66213);const h=(0,c.yh)("themeService");var u;(function(R){function A(P){return P&&typeof P=="object"&&typeof P.id=="string"}R.isThemeColor=A})(u||(u={}));function a(R){return{id:R}}var x;(function(R){function A(H){return H&&typeof H=="object"&&typeof H.id=="string"&&(typeof H.color=="undefined"||u.isThemeColor(H.color))}R.isThemeIcon=A;const P=new RegExp(`^\\$\\((${r.dT.iconNameExpression}(?:${r.dT.iconModifierExpression})?)\\)$`);function M(H){const W=P.exec(H);if(!W)return;let[,ae]=W;return{id:ae}}R.fromString=M;function B(H,W){let ae=H.id;const ne=ae.lastIndexOf("~");return ne!==-1&&(ae=ae.substring(0,ne)),W&&(ae=`${ae}~${W}`),{id:ae}}R.modify=B;function N(H,W){var ae,ne;return H.id===W.id&&((ae=H.color)===null||ae===void 0?void 0:ae.id)===((ne=W.color)===null||ne===void 0?void 0:ne.id)}R.isEqual=N;function K(H,W){return{id:H.id,color:W?a(W):void 0}}R.asThemeIcon=K,R.asClassNameArray=r.dT.asClassNameArray,R.asClassName=r.dT.asClassName,R.asCSSSelector=r.dT.asCSSSelector})(x||(x={}));function p(R){switch(R){case o.e.DARK:return"vs-dark";case o.e.HIGH_CONTRAST:return"hc-black";default:return"vs"}}const y={ThemingContribution:"base.contributions.theming"};class m{constructor(){this.themingParticipants=[],this.themingParticipants=[],this.onThemingParticipantAddedEmitter=new i.Q5}onColorThemeChange(A){return this.themingParticipants.push(A),this.onThemingParticipantAddedEmitter.fire(A),(0,l.OF)(()=>{const P=this.themingParticipants.indexOf(A);this.themingParticipants.splice(P,1)})}getThemingParticipants(){return this.themingParticipants}}let b=new m;f.B.add(y.ThemingContribution,b);function S(R){return b.onColorThemeChange(R)}class k extends l.JT{constructor(A){super(),this.themeService=A,this.theme=A.getColorTheme(),this._register(this.themeService.onDidColorThemeChange(P=>this.onThemeChange(P)))}onThemeChange(A){this.theme=A,this.updateStyles()}updateStyles(){}}},84126:function(d){"use strict";var v=Object.getOwnPropertySymbols,e=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(c){if(c==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(c)}function l(){try{if(!Object.assign)return!1;var c=new String("abc");if(c[5]="de",Object.getOwnPropertyNames(c)[0]==="5")return!1;for(var f={},o=0;o<10;o++)f["_"+String.fromCharCode(o)]=o;var h=Object.getOwnPropertyNames(f).map(function(a){return f[a]});if(h.join("")!=="0123456789")return!1;var u={};return"abcdefghijklmnopqrst".split("").forEach(function(a){u[a]=a}),Object.keys(Object.assign({},u)).join("")==="abcdefghijklmnopqrst"}catch(a){return!1}}d.exports=l()?Object.assign:function(c,f){for(var o,h=i(c),u,a=1;a<arguments.length;a++){o=Object(arguments[a]);for(var x in o)e.call(o,x)&&(h[x]=o[x]);if(v){u=v(o);for(var p=0;p<u.length;p++)r.call(o,u[p])&&(h[u[p]]=o[u[p]])}}return h}},97671:function(d){var v=d.exports={},e,r;function i(){throw new Error("setTimeout has not been defined")}function l(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?e=setTimeout:e=i}catch(b){e=i}try{typeof clearTimeout=="function"?r=clearTimeout:r=l}catch(b){r=l}})();function c(b){if(e===setTimeout)return setTimeout(b,0);if((e===i||!e)&&setTimeout)return e=setTimeout,setTimeout(b,0);try{return e(b,0)}catch(S){try{return e.call(null,b,0)}catch(k){return e.call(this,b,0)}}}function f(b){if(r===clearTimeout)return clearTimeout(b);if((r===l||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(b);try{return r(b)}catch(S){try{return r.call(null,b)}catch(k){return r.call(this,b)}}}var o=[],h=!1,u,a=-1;function x(){!h||!u||(h=!1,u.length?o=u.concat(o):a=-1,o.length&&p())}function p(){if(!h){var b=c(x);h=!0;for(var S=o.length;S;){for(u=o,o=[];++a<S;)u&&u[a].run();a=-1,S=o.length}u=null,h=!1,f(b)}}v.nextTick=function(b){var S=new Array(arguments.length-1);if(arguments.length>1)for(var k=1;k<arguments.length;k++)S[k-1]=arguments[k];o.push(new y(b,S)),o.length===1&&!h&&c(p)};function y(b,S){this.fun=b,this.array=S}y.prototype.run=function(){this.fun.apply(null,this.array)},v.title="browser",v.browser=!0,v.env={},v.argv=[],v.version="",v.versions={};function m(){}v.on=m,v.addListener=m,v.once=m,v.off=m,v.removeListener=m,v.removeAllListeners=m,v.emit=m,v.prependListener=m,v.prependOnceListener=m,v.listeners=function(b){return[]},v.binding=function(b){throw new Error("process.binding is not supported")},v.cwd=function(){return"/"},v.chdir=function(b){throw new Error("process.chdir is not supported")},v.umask=function(){return 0}},79442:function(d,v,e){"use strict";var r=e(97825);function i(){}function l(){}l.resetWarningCache=i,d.exports=function(){function c(h,u,a,x,p,y){if(y!==r){var m=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw m.name="Invariant Violation",m}}c.isRequired=c;function f(){return c}var o={array:c,bigint:c,bool:c,func:c,number:c,object:c,string:c,symbol:c,any:c,arrayOf:f,element:c,elementType:c,instanceOf:f,node:c,objectOf:f,oneOf:f,oneOfType:f,shape:f,exact:f,checkPropTypes:l,resetWarningCache:i};return o.PropTypes=o,o}},12708:function(d,v,e){if(0)var r,i;else d.exports=e(79442)()},97825:function(d){"use strict";var v="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";d.exports=v},86923:function(d,v,e){"use strict";e.d(v,{s:function(){return B},Z:function(){return oe}});var r=e(54476),i=e(42978),l=e(43403),c=e(59301),f=c.createContext({}),o=e(33885),h=e(92310),u=e.n(h),a=e(48519),x=e(80402),p=e(10228),y=e(26112);function m(q,X,V){var se=X;return!se&&V&&(se="".concat(q,"-").concat(V)),se}function b(q,X){var V=q["page".concat(X?"Y":"X","Offset")],se="scroll".concat(X?"Top":"Left");if(typeof V!="number"){var ee=q.document;V=ee.documentElement[se],typeof V!="number"&&(V=ee.body[se])}return V}function S(q){var X=q.getBoundingClientRect(),V={left:X.left,top:X.top},se=q.ownerDocument,ee=se.defaultView||se.parentWindow;return V.left+=b(ee),V.top+=b(ee,!0),V}var k=e(77900),R=e(8654),A=c.memo(function(q){var X=q.children;return X},function(q,X){var V=X.shouldUpdate;return!V}),P={width:0,height:0,overflow:"hidden",outline:"none"},M=c.forwardRef(function(q,X){var V=q.prefixCls,se=q.className,ee=q.style,J=q.title,le=q.ariaId,z=q.footer,j=q.closable,ie=q.closeIcon,me=q.onClose,Se=q.children,Ie=q.bodyStyle,He=q.bodyProps,je=q.modalRender,Dt=q.onMouseDown,ht=q.onMouseUp,It=q.holderRef,Zt=q.visible,Rt=q.forceRender,ar=q.width,$e=q.height,gt=c.useContext(f),Mt=gt.panel,et=(0,R.x1)(It,Mt),ft=(0,c.useRef)(),ot=(0,c.useRef)();c.useImperativeHandle(X,function(){return{focus:function(){var Xe;(Xe=ft.current)===null||Xe===void 0||Xe.focus()},changeActive:function(Xe){var ut=document,pt=ut.activeElement;Xe&&pt===ot.current?ft.current.focus():!Xe&&pt===ft.current&&ot.current.focus()}}});var Je={};ar!==void 0&&(Je.width=ar),$e!==void 0&&(Je.height=$e);var Ne;z&&(Ne=c.createElement("div",{className:"".concat(V,"-footer")},z));var ye;J&&(ye=c.createElement("div",{className:"".concat(V,"-header")},c.createElement("div",{className:"".concat(V,"-title"),id:le},J)));var ke;j&&(ke=c.createElement("button",{type:"button",onClick:me,"aria-label":"Close",className:"".concat(V,"-close")},ie||c.createElement("span",{className:"".concat(V,"-close-x")})));var Ge=c.createElement("div",{className:"".concat(V,"-content")},ke,ye,c.createElement("div",(0,r.Z)({className:"".concat(V,"-body"),style:Ie},He),Se),Ne);return c.createElement("div",{key:"dialog-element",role:"dialog","aria-labelledby":J?le:null,"aria-modal":"true",ref:et,style:(0,o.Z)((0,o.Z)({},ee),Je),className:u()(V,se),onMouseDown:Dt,onMouseUp:ht},c.createElement("div",{tabIndex:0,ref:ft,style:P,"aria-hidden":"true"}),c.createElement(A,{shouldUpdate:Zt||Rt},je?je(Ge):Ge),c.createElement("div",{tabIndex:0,ref:ot,style:P,"aria-hidden":"true"}))}),B=M,N=c.forwardRef(function(q,X){var V=q.prefixCls,se=q.title,ee=q.style,J=q.className,le=q.visible,z=q.forceRender,j=q.destroyOnClose,ie=q.motionName,me=q.ariaId,Se=q.onVisibleChanged,Ie=q.mousePosition,He=(0,c.useRef)(),je=c.useState(),Dt=(0,i.Z)(je,2),ht=Dt[0],It=Dt[1],Zt={};ht&&(Zt.transformOrigin=ht);function Rt(){var ar=S(He.current);It(Ie?"".concat(Ie.x-ar.left,"px ").concat(Ie.y-ar.top,"px"):"")}return c.createElement(k.default,{visible:le,onVisibleChanged:Se,onAppearPrepare:Rt,onEnterPrepare:Rt,forceRender:z,motionName:ie,removeOnLeave:j,ref:He},function(ar,$e){var gt=ar.className,Mt=ar.style;return c.createElement(B,(0,r.Z)({},q,{ref:X,title:se,ariaId:me,prefixCls:V,holderRef:$e,style:(0,o.Z)((0,o.Z)((0,o.Z)({},Mt),ee),Zt),className:u()(J,gt)}))})});N.displayName="Content";var K=N;function H(q){var X=q.prefixCls,V=q.style,se=q.visible,ee=q.maskProps,J=q.motionName;return c.createElement(k.default,{key:"mask",visible:se,motionName:J,leavedClassName:"".concat(X,"-mask-hidden")},function(le,z){var j=le.className,ie=le.style;return c.createElement("div",(0,r.Z)({ref:z,style:(0,o.Z)((0,o.Z)({},ie),V),className:u()("".concat(X,"-mask"),j)},ee))})}function W(q){var X=q.prefixCls,V=X===void 0?"rc-dialog":X,se=q.zIndex,ee=q.visible,J=ee===void 0?!1:ee,le=q.keyboard,z=le===void 0?!0:le,j=q.focusTriggerAfterClose,ie=j===void 0?!0:j,me=q.wrapStyle,Se=q.wrapClassName,Ie=q.wrapProps,He=q.onClose,je=q.afterOpenChange,Dt=q.afterClose,ht=q.transitionName,It=q.animation,Zt=q.closable,Rt=Zt===void 0?!0:Zt,ar=q.mask,$e=ar===void 0?!0:ar,gt=q.maskTransitionName,Mt=q.maskAnimation,et=q.maskClosable,ft=et===void 0?!0:et,ot=q.maskStyle,Je=q.maskProps,Ne=q.rootClassName,ye=(0,c.useRef)(),ke=(0,c.useRef)(),Ge=(0,c.useRef)(),We=c.useState(J),Xe=(0,i.Z)(We,2),ut=Xe[0],pt=Xe[1],or=(0,x.Z)();function tr(){(0,a.Z)(ke.current,document.activeElement)||(ye.current=document.activeElement)}function Me(){if(!(0,a.Z)(ke.current,document.activeElement)){var ce;(ce=Ge.current)===null||ce===void 0||ce.focus()}}function tt(ce){if(ce)Me();else{if(pt(!1),$e&&ye.current&&ie){try{ye.current.focus({preventScroll:!0})}catch(pe){}ye.current=null}ut&&(Dt==null||Dt())}je==null||je(ce)}function Yt(ce){He==null||He(ce)}var Ot=(0,c.useRef)(!1),zt=(0,c.useRef)(),Ht=function(){clearTimeout(zt.current),Ot.current=!0},lr=function(){zt.current=setTimeout(function(){Ot.current=!1})},Wt=null;ft&&(Wt=function(pe){Ot.current?Ot.current=!1:ke.current===pe.target&&Yt(pe)});function Ce(ce){if(z&&ce.keyCode===p.Z.ESC){ce.stopPropagation(),Yt(ce);return}J&&ce.keyCode===p.Z.TAB&&Ge.current.changeActive(!ce.shiftKey)}return(0,c.useEffect)(function(){J&&(pt(!0),tr())},[J]),(0,c.useEffect)(function(){return function(){clearTimeout(zt.current)}},[]),c.createElement("div",(0,r.Z)({className:u()("".concat(V,"-root"),Ne)},(0,y.Z)(q,{data:!0})),c.createElement(H,{prefixCls:V,visible:$e&&J,motionName:m(V,gt,Mt),style:(0,o.Z)({zIndex:se},ot),maskProps:Je}),c.createElement("div",(0,r.Z)({tabIndex:-1,onKeyDown:Ce,className:u()("".concat(V,"-wrap"),Se),ref:ke,onClick:Wt,style:(0,o.Z)((0,o.Z)({zIndex:se},me),{},{display:ut?null:"none"})},Ie),c.createElement(K,(0,r.Z)({},q,{onMouseDown:Ht,onMouseUp:lr,ref:Ge,closable:Rt,ariaId:or,prefixCls:V,visible:J&&ut,onClose:Yt,onVisibleChanged:tt,motionName:m(V,ht,It)}))))}var ae=function(X){var V=X.visible,se=X.getContainer,ee=X.forceRender,J=X.destroyOnClose,le=J===void 0?!1:J,z=X.afterClose,j=X.panelRef,ie=c.useState(V),me=(0,i.Z)(ie,2),Se=me[0],Ie=me[1],He=c.useMemo(function(){return{panel:j}},[j]);return c.useEffect(function(){V&&Ie(!0)},[V]),!ee&&le&&!Se?null:c.createElement(f.Provider,{value:He},c.createElement(l.Z,{open:V||ee||Se,autoDestroy:!1,getContainer:se,autoLock:V||Se},c.createElement(W,(0,r.Z)({},X,{destroyOnClose:le,afterClose:function(){z==null||z(),Ie(!1)}}))))};ae.displayName="Dialog";var ne=ae,oe=ne},95013:function(d,v,e){"use strict";e.r(v),e.d(v,{Field:function(){return wn},FieldContext:function(){return M},FormProvider:function(){return Yi},List:function(){return St},ListContext:function(){return N},default:function(){return $n},useForm:function(){return ha},useWatch:function(){return Da}});var r=e(59301),i=e(54476),l=e(75931),c=e(75044),f=e(3202),o=e(33885),h=e(94480),u=e(67732),a=e(83652),x=e(31226),p=e(42403),y=e(158),m=e(20068),b=e(11592),S=e(13697),k=e(48736),R="RC_FORM_INTERNAL_HOOKS",A=function(){(0,k.ZP)(!1,"Can not find FormContext. Please make sure you wrap Field under Form.")},P=r.createContext({getFieldValue:A,getFieldsValue:A,getFieldError:A,getFieldWarning:A,getFieldsError:A,isFieldsTouched:A,isFieldTouched:A,isFieldValidating:A,isFieldsValidating:A,resetFields:A,setFields:A,setFieldValue:A,setFieldsValue:A,validateFields:A,submit:A,getInternalHooks:function(){return A(),{dispatch:A,initEntityValue:A,registerField:A,useSubscribe:A,setInitialValues:A,destroyForm:A,setCallbacks:A,registerWatch:A,getFields:A,setValidateMessages:A,setPreserve:A,getInitialValue:A}}}),M=P,B=r.createContext(null),N=B;function K(Ee){return Ee==null?[]:Array.isArray(Ee)?Ee:[Ee]}function H(Ee){return Ee&&!!Ee._init}var W=e(97671);function ae(){return ae=Object.assign?Object.assign.bind():function(Ee){for(var nt=1;nt<arguments.length;nt++){var qe=arguments[nt];for(var Tt in qe)Object.prototype.hasOwnProperty.call(qe,Tt)&&(Ee[Tt]=qe[Tt])}return Ee},ae.apply(this,arguments)}function ne(Ee,nt){Ee.prototype=Object.create(nt.prototype),Ee.prototype.constructor=Ee,q(Ee,nt)}function oe(Ee){return oe=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(qe){return qe.__proto__||Object.getPrototypeOf(qe)},oe(Ee)}function q(Ee,nt){return q=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(Tt,lt){return Tt.__proto__=lt,Tt},q(Ee,nt)}function X(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(Ee){return!1}}function V(Ee,nt,qe){return X()?V=Reflect.construct.bind():V=function(lt,hr,pr){var Cr=[null];Cr.push.apply(Cr,hr);var $r=Function.bind.apply(lt,Cr),en=new $r;return pr&&q(en,pr.prototype),en},V.apply(null,arguments)}function se(Ee){return Function.toString.call(Ee).indexOf("[native code]")!==-1}function ee(Ee){var nt=typeof Map=="function"?new Map:void 0;return ee=function(Tt){if(Tt===null||!se(Tt))return Tt;if(typeof Tt!="function")throw new TypeError("Super expression must either be null or a function");if(typeof nt!="undefined"){if(nt.has(Tt))return nt.get(Tt);nt.set(Tt,lt)}function lt(){return V(Tt,arguments,oe(this).constructor)}return lt.prototype=Object.create(Tt.prototype,{constructor:{value:lt,enumerable:!1,writable:!0,configurable:!0}}),q(lt,Tt)},ee(Ee)}var J=/%[sdj%]/g,le=function(){};function z(Ee){if(!Ee||!Ee.length)return null;var nt={};return Ee.forEach(function(qe){var Tt=qe.field;nt[Tt]=nt[Tt]||[],nt[Tt].push(qe)}),nt}function j(Ee){for(var nt=arguments.length,qe=new Array(nt>1?nt-1:0),Tt=1;Tt<nt;Tt++)qe[Tt-1]=arguments[Tt];var lt=0,hr=qe.length;if(typeof Ee=="function")return Ee.apply(null,qe);if(typeof Ee=="string"){var pr=Ee.replace(J,function(Cr){if(Cr==="%%")return"%";if(lt>=hr)return Cr;switch(Cr){case"%s":return String(qe[lt++]);case"%d":return Number(qe[lt++]);case"%j":try{return JSON.stringify(qe[lt++])}catch($r){return"[Circular]"}break;default:return Cr}});return pr}return Ee}function ie(Ee){return Ee==="string"||Ee==="url"||Ee==="hex"||Ee==="email"||Ee==="date"||Ee==="pattern"}function me(Ee,nt){return!!(Ee==null||nt==="array"&&Array.isArray(Ee)&&!Ee.length||ie(nt)&&typeof Ee=="string"&&!Ee)}function Se(Ee,nt,qe){var Tt=[],lt=0,hr=Ee.length;function pr(Cr){Tt.push.apply(Tt,Cr||[]),lt++,lt===hr&&qe(Tt)}Ee.forEach(function(Cr){nt(Cr,pr)})}function Ie(Ee,nt,qe){var Tt=0,lt=Ee.length;function hr(pr){if(pr&&pr.length){qe(pr);return}var Cr=Tt;Tt=Tt+1,Cr<lt?nt(Ee[Cr],hr):qe([])}hr([])}function He(Ee){var nt=[];return Object.keys(Ee).forEach(function(qe){nt.push.apply(nt,Ee[qe]||[])}),nt}var je=function(Ee){ne(nt,Ee);function nt(qe,Tt){var lt;return lt=Ee.call(this,"Async Validation Error")||this,lt.errors=qe,lt.fields=Tt,lt}return nt}(ee(Error));function Dt(Ee,nt,qe,Tt,lt){if(nt.first){var hr=new Promise(function(_r,Fn){var Qn=function(ge){return Tt(ge),ge.length?Fn(new je(ge,z(ge))):_r(lt)},Ke=He(Ee);Ie(Ke,qe,Qn)});return hr.catch(function(_r){return _r}),hr}var pr=nt.firstFields===!0?Object.keys(Ee):nt.firstFields||[],Cr=Object.keys(Ee),$r=Cr.length,en=0,Nr=[],An=new Promise(function(_r,Fn){var Qn=function(ct){if(Nr.push.apply(Nr,ct),en++,en===$r)return Tt(Nr),Nr.length?Fn(new je(Nr,z(Nr))):_r(lt)};Cr.length||(Tt(Nr),_r(lt)),Cr.forEach(function(Ke){var ct=Ee[Ke];pr.indexOf(Ke)!==-1?Ie(ct,qe,Qn):Se(ct,qe,Qn)})});return An.catch(function(_r){return _r}),An}function ht(Ee){return!!(Ee&&Ee.message!==void 0)}function It(Ee,nt){for(var qe=Ee,Tt=0;Tt<nt.length;Tt++){if(qe==null)return qe;qe=qe[nt[Tt]]}return qe}function Zt(Ee,nt){return function(qe){var Tt;return Ee.fullFields?Tt=It(nt,Ee.fullFields):Tt=nt[qe.field||Ee.fullField],ht(qe)?(qe.field=qe.field||Ee.fullField,qe.fieldValue=Tt,qe):{message:typeof qe=="function"?qe():qe,fieldValue:Tt,field:qe.field||Ee.fullField}}}function Rt(Ee,nt){if(nt){for(var qe in nt)if(nt.hasOwnProperty(qe)){var Tt=nt[qe];typeof Tt=="object"&&typeof Ee[qe]=="object"?Ee[qe]=ae({},Ee[qe],Tt):Ee[qe]=Tt}}return Ee}var ar=function(nt,qe,Tt,lt,hr,pr){nt.required&&(!Tt.hasOwnProperty(nt.field)||me(qe,pr||nt.type))&&lt.push(j(hr.messages.required,nt.fullField))},$e=function(nt,qe,Tt,lt,hr){(/^\s+$/.test(qe)||qe==="")&&lt.push(j(hr.messages.whitespace,nt.fullField))},gt,Mt=function(){if(gt)return gt;var Ee="[a-fA-F\\d:]",nt=function(kr){return kr&&kr.includeBoundaries?"(?:(?<=\\s|^)(?="+Ee+")|(?<="+Ee+")(?=\\s|$))":""},qe="(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}",Tt="[a-fA-F\\d]{1,4}",lt=(`
(?:
(?:`+Tt+":){7}(?:"+Tt+`|:)| // 1:2:3:4:5:6:7:: 1:2:3:4:5:6:7:8
(?:`+Tt+":){6}(?:"+qe+"|:"+Tt+`|:)| // 1:2:3:4:5:6:: 1:2:3:4:5:6::8 1:2:3:4:5:6::8 1:2:3:4:5:6::1.2.3.4
(?:`+Tt+":){5}(?::"+qe+"|(?::"+Tt+`){1,2}|:)| // 1:2:3:4:5:: 1:2:3:4:5::7:8 1:2:3:4:5::8 1:2:3:4:5::7:1.2.3.4
(?:`+Tt+":){4}(?:(?::"+Tt+"){0,1}:"+qe+"|(?::"+Tt+`){1,3}|:)| // 1:2:3:4:: 1:2:3:4::6:7:8 1:2:3:4::8 1:2:3:4::6:7:1.2.3.4
(?:`+Tt+":){3}(?:(?::"+Tt+"){0,2}:"+qe+"|(?::"+Tt+`){1,4}|:)| // 1:2:3:: 1:2:3::5:6:7:8 1:2:3::8 1:2:3::5:6:7:1.2.3.4
(?:`+Tt+":){2}(?:(?::"+Tt+"){0,3}:"+qe+"|(?::"+Tt+`){1,5}|:)| // 1:2:: 1:2::4:5:6:7:8 1:2::8 1:2::4:5:6:7:1.2.3.4
(?:`+Tt+":){1}(?:(?::"+Tt+"){0,4}:"+qe+"|(?::"+Tt+`){1,6}|:)| // 1:: 1::3:4:5:6:7:8 1::8 1::3:4:5:6:7:1.2.3.4
(?::(?:(?::`+Tt+"){0,5}:"+qe+"|(?::"+Tt+`){1,7}|:)) // ::2:3:4:5:6:7:8 ::2:3:4:5:6:7:8 ::8 ::1.2.3.4
)(?:%[0-9a-zA-Z]{1,})? // %eth0 %1
`).replace(/\s*\/\/.*$/gm,"").replace(/\n/g,"").trim(),hr=new RegExp("(?:^"+qe+"$)|(?:^"+lt+"$)"),pr=new RegExp("^"+qe+"$"),Cr=new RegExp("^"+lt+"$"),$r=function(kr){return kr&&kr.exact?hr:new RegExp("(?:"+nt(kr)+qe+nt(kr)+")|(?:"+nt(kr)+lt+nt(kr)+")","g")};$r.v4=function(nr){return nr&&nr.exact?pr:new RegExp(""+nt(nr)+qe+nt(nr),"g")},$r.v6=function(nr){return nr&&nr.exact?Cr:new RegExp(""+nt(nr)+lt+nt(nr),"g")};var en="(?:(?:[a-z]+:)?//)",Nr="(?:\\S+(?::\\S*)?@)?",An=$r.v4().source,_r=$r.v6().source,Fn="(?:(?:[a-z\\u00a1-\\uffff0-9][-_]*)*[a-z\\u00a1-\\uffff0-9]+)",Qn="(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*",Ke="(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))",ct="(?::\\d{2,5})?",ge='(?:[/?#][^\\s"]*)?',sr="(?:"+en+"|www\\.)"+Nr+"(?:localhost|"+An+"|"+_r+"|"+Fn+Qn+Ke+")"+ct+ge;return gt=new RegExp("(?:^"+sr+"$)","i"),gt},et={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},ft={integer:function(nt){return ft.number(nt)&&parseInt(nt,10)===nt},float:function(nt){return ft.number(nt)&&!ft.integer(nt)},array:function(nt){return Array.isArray(nt)},regexp:function(nt){if(nt instanceof RegExp)return!0;try{return!!new RegExp(nt)}catch(qe){return!1}},date:function(nt){return typeof nt.getTime=="function"&&typeof nt.getMonth=="function"&&typeof nt.getYear=="function"&&!isNaN(nt.getTime())},number:function(nt){return isNaN(nt)?!1:typeof nt=="number"},object:function(nt){return typeof nt=="object"&&!ft.array(nt)},method:function(nt){return typeof nt=="function"},email:function(nt){return typeof nt=="string"&&nt.length<=320&&!!nt.match(et.email)},url:function(nt){return typeof nt=="string"&&nt.length<=2048&&!!nt.match(Mt())},hex:function(nt){return typeof nt=="string"&&!!nt.match(et.hex)}},ot=function(nt,qe,Tt,lt,hr){if(nt.required&&qe===void 0){ar(nt,qe,Tt,lt,hr);return}var pr=["integer","float","array","regexp","object","method","email","number","date","url","hex"],Cr=nt.type;pr.indexOf(Cr)>-1?ft[Cr](qe)||lt.push(j(hr.messages.types[Cr],nt.fullField,nt.type)):Cr&&typeof qe!==nt.type&&lt.push(j(hr.messages.types[Cr],nt.fullField,nt.type))},Je=function(nt,qe,Tt,lt,hr){var pr=typeof nt.len=="number",Cr=typeof nt.min=="number",$r=typeof nt.max=="number",en=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Nr=qe,An=null,_r=typeof qe=="number",Fn=typeof qe=="string",Qn=Array.isArray(qe);if(_r?An="number":Fn?An="string":Qn&&(An="array"),!An)return!1;Qn&&(Nr=qe.length),Fn&&(Nr=qe.replace(en,"_").length),pr?Nr!==nt.len&&lt.push(j(hr.messages[An].len,nt.fullField,nt.len)):Cr&&!$r&&Nr<nt.min?lt.push(j(hr.messages[An].min,nt.fullField,nt.min)):$r&&!Cr&&Nr>nt.max?lt.push(j(hr.messages[An].max,nt.fullField,nt.max)):Cr&&$r&&(Nr<nt.min||Nr>nt.max)&&lt.push(j(hr.messages[An].range,nt.fullField,nt.min,nt.max))},Ne="enum",ye=function(nt,qe,Tt,lt,hr){nt[Ne]=Array.isArray(nt[Ne])?nt[Ne]:[],nt[Ne].indexOf(qe)===-1&&lt.push(j(hr.messages[Ne],nt.fullField,nt[Ne].join(", ")))},ke=function(nt,qe,Tt,lt,hr){if(nt.pattern){if(nt.pattern instanceof RegExp)nt.pattern.lastIndex=0,nt.pattern.test(qe)||lt.push(j(hr.messages.pattern.mismatch,nt.fullField,qe,nt.pattern));else if(typeof nt.pattern=="string"){var pr=new RegExp(nt.pattern);pr.test(qe)||lt.push(j(hr.messages.pattern.mismatch,nt.fullField,qe,nt.pattern))}}},Ge={required:ar,whitespace:$e,type:ot,range:Je,enum:ye,pattern:ke},We=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe,"string")&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr,"string"),me(qe,"string")||(Ge.type(nt,qe,lt,pr,hr),Ge.range(nt,qe,lt,pr,hr),Ge.pattern(nt,qe,lt,pr,hr),nt.whitespace===!0&&Ge.whitespace(nt,qe,lt,pr,hr))}Tt(pr)},Xe=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&Ge.type(nt,qe,lt,pr,hr)}Tt(pr)},ut=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(qe===""&&(qe=void 0),me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&(Ge.type(nt,qe,lt,pr,hr),Ge.range(nt,qe,lt,pr,hr))}Tt(pr)},pt=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&Ge.type(nt,qe,lt,pr,hr)}Tt(pr)},or=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),me(qe)||Ge.type(nt,qe,lt,pr,hr)}Tt(pr)},tr=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&(Ge.type(nt,qe,lt,pr,hr),Ge.range(nt,qe,lt,pr,hr))}Tt(pr)},Me=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&(Ge.type(nt,qe,lt,pr,hr),Ge.range(nt,qe,lt,pr,hr))}Tt(pr)},tt=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(qe==null&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr,"array"),qe!=null&&(Ge.type(nt,qe,lt,pr,hr),Ge.range(nt,qe,lt,pr,hr))}Tt(pr)},Yt=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&Ge.type(nt,qe,lt,pr,hr)}Tt(pr)},Ot="enum",zt=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),qe!==void 0&&Ge[Ot](nt,qe,lt,pr,hr)}Tt(pr)},Ht=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe,"string")&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr),me(qe,"string")||Ge.pattern(nt,qe,lt,pr,hr)}Tt(pr)},lr=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe,"date")&&!nt.required)return Tt();if(Ge.required(nt,qe,lt,pr,hr),!me(qe,"date")){var $r;qe instanceof Date?$r=qe:$r=new Date(qe),Ge.type(nt,$r,lt,pr,hr),$r&&Ge.range(nt,$r.getTime(),lt,pr,hr)}}Tt(pr)},Wt=function(nt,qe,Tt,lt,hr){var pr=[],Cr=Array.isArray(qe)?"array":typeof qe;Ge.required(nt,qe,lt,pr,hr,Cr),Tt(pr)},Ce=function(nt,qe,Tt,lt,hr){var pr=nt.type,Cr=[],$r=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if($r){if(me(qe,pr)&&!nt.required)return Tt();Ge.required(nt,qe,lt,Cr,hr,pr),me(qe,pr)||Ge.type(nt,qe,lt,Cr,hr)}Tt(Cr)},ce=function(nt,qe,Tt,lt,hr){var pr=[],Cr=nt.required||!nt.required&&lt.hasOwnProperty(nt.field);if(Cr){if(me(qe)&&!nt.required)return Tt();Ge.required(nt,qe,lt,pr,hr)}Tt(pr)},pe={string:We,method:Xe,number:ut,boolean:pt,regexp:or,integer:tr,float:Me,array:tt,object:Yt,enum:zt,pattern:Ht,date:lr,url:Ce,hex:Ce,email:Ce,required:Wt,any:ce};function Ct(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var nt=JSON.parse(JSON.stringify(this));return nt.clone=this.clone,nt}}}var Ae=Ct(),st=function(){function Ee(qe){this.rules=null,this._messages=Ae,this.define(qe)}var nt=Ee.prototype;return nt.define=function(Tt){var lt=this;if(!Tt)throw new Error("Cannot configure a schema with no rules");if(typeof Tt!="object"||Array.isArray(Tt))throw new Error("Rules must be an object");this.rules={},Object.keys(Tt).forEach(function(hr){var pr=Tt[hr];lt.rules[hr]=Array.isArray(pr)?pr:[pr]})},nt.messages=function(Tt){return Tt&&(this._messages=Rt(Ct(),Tt)),this._messages},nt.validate=function(Tt,lt,hr){var pr=this;lt===void 0&&(lt={}),hr===void 0&&(hr=function(){});var Cr=Tt,$r=lt,en=hr;if(typeof $r=="function"&&(en=$r,$r={}),!this.rules||Object.keys(this.rules).length===0)return en&&en(null,Cr),Promise.resolve(Cr);function Nr(Ke){var ct=[],ge={};function sr(kr){if(Array.isArray(kr)){var Hr;ct=(Hr=ct).concat.apply(Hr,kr)}else ct.push(kr)}for(var nr=0;nr<Ke.length;nr++)sr(Ke[nr]);ct.length?(ge=z(ct),en(ct,ge)):en(null,Cr)}if($r.messages){var An=this.messages();An===Ae&&(An=Ct()),Rt(An,$r.messages),$r.messages=An}else $r.messages=this.messages();var _r={},Fn=$r.keys||Object.keys(this.rules);Fn.forEach(function(Ke){var ct=pr.rules[Ke],ge=Cr[Ke];ct.forEach(function(sr){var nr=sr;typeof nr.transform=="function"&&(Cr===Tt&&(Cr=ae({},Cr)),ge=Cr[Ke]=nr.transform(ge)),typeof nr=="function"?nr={validator:nr}:nr=ae({},nr),nr.validator=pr.getValidationMethod(nr),nr.validator&&(nr.field=Ke,nr.fullField=nr.fullField||Ke,nr.type=pr.getType(nr),_r[Ke]=_r[Ke]||[],_r[Ke].push({rule:nr,value:ge,source:Cr,field:Ke}))})});var Qn={};return Dt(_r,$r,function(Ke,ct){var ge=Ke.rule,sr=(ge.type==="object"||ge.type==="array")&&(typeof ge.fields=="object"||typeof ge.defaultField=="object");sr=sr&&(ge.required||!ge.required&&Ke.value),ge.field=Ke.field;function nr(Zr,hn){return ae({},hn,{fullField:ge.fullField+"."+Zr,fullFields:ge.fullFields?[].concat(ge.fullFields,[Zr]):[Zr]})}function kr(Zr){Zr===void 0&&(Zr=[]);var hn=Array.isArray(Zr)?Zr:[Zr];!$r.suppressWarning&&hn.length&&Ee.warning("async-validator:",hn),hn.length&&ge.message!==void 0&&(hn=[].concat(ge.message));var Si=hn.map(Zt(ge,Cr));if($r.first&&Si.length)return Qn[ge.field]=1,ct(Si);if(!sr)ct(Si);else{if(ge.required&&!Ke.value)return ge.message!==void 0?Si=[].concat(ge.message).map(Zt(ge,Cr)):$r.error&&(Si=[$r.error(ge,j($r.messages.required,ge.field))]),ct(Si);var un={};ge.defaultField&&Object.keys(Ke.value).map(function(kn){un[kn]=ge.defaultField}),un=ae({},un,Ke.rule.fields);var yn={};Object.keys(un).forEach(function(kn){var si=un[kn],Ea=Array.isArray(si)?si:[si];yn[kn]=Ea.map(nr.bind(null,kn))});var Gr=new Ee(yn);Gr.messages($r.messages),Ke.rule.options&&(Ke.rule.options.messages=$r.messages,Ke.rule.options.error=$r.error),Gr.validate(Ke.value,Ke.rule.options||$r,function(kn){var si=[];Si&&Si.length&&si.push.apply(si,Si),kn&&kn.length&&si.push.apply(si,kn),ct(si.length?si:null)})}}var Hr;if(ge.asyncValidator)Hr=ge.asyncValidator(ge,Ke.value,kr,Ke.source,$r);else if(ge.validator){try{Hr=ge.validator(ge,Ke.value,kr,Ke.source,$r)}catch(Zr){console.error==null||console.error(Zr),$r.suppressValidatorError||setTimeout(function(){throw Zr},0),kr(Zr.message)}Hr===!0?kr():Hr===!1?kr(typeof ge.message=="function"?ge.message(ge.fullField||ge.field):ge.message||(ge.fullField||ge.field)+" fails"):Hr instanceof Array?kr(Hr):Hr instanceof Error&&kr(Hr.message)}Hr&&Hr.then&&Hr.then(function(){return kr()},function(Zr){return kr(Zr)})},function(Ke){Nr(Ke)},Cr)},nt.getType=function(Tt){if(Tt.type===void 0&&Tt.pattern instanceof RegExp&&(Tt.type="pattern"),typeof Tt.validator!="function"&&Tt.type&&!pe.hasOwnProperty(Tt.type))throw new Error(j("Unknown rule type %s",Tt.type));return Tt.type||"string"},nt.getValidationMethod=function(Tt){if(typeof Tt.validator=="function")return Tt.validator;var lt=Object.keys(Tt),hr=lt.indexOf("message");return hr!==-1&&lt.splice(hr,1),lt.length===1&&lt[0]==="required"?pe.required:pe[this.getType(Tt)]||void 0},Ee}();st.register=function(nt,qe){if(typeof qe!="function")throw new Error("Cannot register a validator by type, validator is not a function");pe[nt]=qe},st.warning=le,st.messages=Ae,st.validators=pe;var Gt="'${name}' is not a valid ${type}",bt={default:"Validation error on field '${name}'",required:"'${name}' is required",enum:"'${name}' must be one of [${enum}]",whitespace:"'${name}' cannot be empty",date:{format:"'${name}' is invalid for format date",parse:"'${name}' could not be parsed as date",invalid:"'${name}' is invalid date"},types:{string:Gt,method:Gt,array:Gt,object:Gt,number:Gt,date:Gt,boolean:Gt,integer:Gt,float:Gt,regexp:Gt,email:Gt,url:Gt,hex:Gt},string:{len:"'${name}' must be exactly ${len} characters",min:"'${name}' must be at least ${min} characters",max:"'${name}' cannot be longer than ${max} characters",range:"'${name}' must be between ${min} and ${max} characters"},number:{len:"'${name}' must equal ${len}",min:"'${name}' cannot be less than ${min}",max:"'${name}' cannot be greater than ${max}",range:"'${name}' must be between ${min} and ${max}"},array:{len:"'${name}' must be exactly ${len} in length",min:"'${name}' cannot be less than ${min} in length",max:"'${name}' cannot be greater than ${max} in length",range:"'${name}' must be between ${min} and ${max} in length"},pattern:{mismatch:"'${name}' does not match pattern ${pattern}"}},Te=e(24434),yt=st;function ze(Ee,nt){return Ee.replace(/\$\{\w+\}/g,function(qe){var Tt=qe.slice(2,-1);return nt[Tt]})}var xe="CODE_LOGIC_ERROR";function dt(Ee,nt,qe,Tt,lt){return Pt.apply(this,arguments)}function Pt(){return Pt=(0,f.Z)((0,c.Z)().mark(function Ee(nt,qe,Tt,lt,hr){var pr,Cr,$r,en,Nr,An,_r,Fn,Qn;return(0,c.Z)().wrap(function(ct){for(;;)switch(ct.prev=ct.next){case 0:return pr=(0,o.Z)({},Tt),delete pr.ruleIndex,yt.warning=function(){},pr.validator&&(Cr=pr.validator,pr.validator=function(){try{return Cr.apply(void 0,arguments)}catch(ge){return console.error(ge),Promise.reject(xe)}}),$r=null,pr&&pr.type==="array"&&pr.defaultField&&($r=pr.defaultField,delete pr.defaultField),en=new yt((0,m.Z)({},nt,[pr])),Nr=(0,Te.T)(bt,lt.validateMessages),en.messages(Nr),An=[],ct.prev=10,ct.next=13,Promise.resolve(en.validate((0,m.Z)({},nt,qe),(0,o.Z)({},lt)));case 13:ct.next=18;break;case 15:ct.prev=15,ct.t0=ct.catch(10),ct.t0.errors&&(An=ct.t0.errors.map(function(ge,sr){var nr=ge.message,kr=nr===xe?Nr.default:nr;return r.isValidElement(kr)?r.cloneElement(kr,{key:"error_".concat(sr)}):kr}));case 18:if(!(!An.length&&$r)){ct.next=23;break}return ct.next=21,Promise.all(qe.map(function(ge,sr){return dt("".concat(nt,".").concat(sr),ge,$r,lt,hr)}));case 21:return _r=ct.sent,ct.abrupt("return",_r.reduce(function(ge,sr){return[].concat((0,h.Z)(ge),(0,h.Z)(sr))},[]));case 23:return Fn=(0,o.Z)((0,o.Z)({},Tt),{},{name:nt,enum:(Tt.enum||[]).join(", ")},hr),Qn=An.map(function(ge){return typeof ge=="string"?ze(ge,Fn):ge}),ct.abrupt("return",Qn);case 26:case"end":return ct.stop()}},Ee,null,[[10,15]])})),Pt.apply(this,arguments)}function Be(Ee,nt,qe,Tt,lt,hr){var pr=Ee.join("."),Cr=qe.map(function(Nr,An){var _r=Nr.validator,Fn=(0,o.Z)((0,o.Z)({},Nr),{},{ruleIndex:An});return _r&&(Fn.validator=function(Qn,Ke,ct){var ge=!1,sr=function(){for(var Hr=arguments.length,Zr=new Array(Hr),hn=0;hn<Hr;hn++)Zr[hn]=arguments[hn];Promise.resolve().then(function(){(0,k.ZP)(!ge,"Your validator function has already return a promise. `callback` will be ignored."),ge||ct.apply(void 0,Zr)})},nr=_r(Qn,Ke,sr);ge=nr&&typeof nr.then=="function"&&typeof nr.catch=="function",(0,k.ZP)(ge,"`callback` is deprecated. Please return a promise instead."),ge&&nr.then(function(){ct()}).catch(function(kr){ct(kr||" ")})}),Fn}).sort(function(Nr,An){var _r=Nr.warningOnly,Fn=Nr.ruleIndex,Qn=An.warningOnly,Ke=An.ruleIndex;return!!_r==!!Qn?Fn-Ke:_r?1:-1}),$r;if(lt===!0)$r=new Promise(function(){var Nr=(0,f.Z)((0,c.Z)().mark(function An(_r,Fn){var Qn,Ke,ct;return(0,c.Z)().wrap(function(sr){for(;;)switch(sr.prev=sr.next){case 0:Qn=0;case 1:if(!(Qn<Cr.length)){sr.next=12;break}return Ke=Cr[Qn],sr.next=5,dt(pr,nt,Ke,Tt,hr);case 5:if(ct=sr.sent,!ct.length){sr.next=9;break}return Fn([{errors:ct,rule:Ke}]),sr.abrupt("return");case 9:Qn+=1,sr.next=1;break;case 12:_r([]);case 13:case"end":return sr.stop()}},An)}));return function(An,_r){return Nr.apply(this,arguments)}}());else{var en=Cr.map(function(Nr){return dt(pr,nt,Nr,Tt,hr).then(function(An){return{errors:An,rule:Nr}})});$r=(lt?qr(en):Or(en)).then(function(Nr){return Promise.reject(Nr)})}return $r.catch(function(Nr){return Nr}),$r}function Or(Ee){return mt.apply(this,arguments)}function mt(){return mt=(0,f.Z)((0,c.Z)().mark(function Ee(nt){return(0,c.Z)().wrap(function(Tt){for(;;)switch(Tt.prev=Tt.next){case 0:return Tt.abrupt("return",Promise.all(nt).then(function(lt){var hr,pr=(hr=[]).concat.apply(hr,(0,h.Z)(lt));return pr}));case 1:case"end":return Tt.stop()}},Ee)})),mt.apply(this,arguments)}function qr(Ee){return an.apply(this,arguments)}function an(){return an=(0,f.Z)((0,c.Z)().mark(function Ee(nt){var qe;return(0,c.Z)().wrap(function(lt){for(;;)switch(lt.prev=lt.next){case 0:return qe=0,lt.abrupt("return",new Promise(function(hr){nt.forEach(function(pr){pr.then(function(Cr){Cr.errors.length&&hr([Cr]),qe+=1,qe===nt.length&&hr([])})})}));case 2:case"end":return lt.stop()}},Ee)})),an.apply(this,arguments)}var Nt=e(76190),qt=e(97938);function Lt(Ee){return K(Ee)}function Xt(Ee,nt){var qe={};return nt.forEach(function(Tt){var lt=(0,qt.Z)(Ee,Tt);qe=(0,Te.Z)(qe,Tt,lt)}),qe}function Er(Ee,nt){var qe=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;return Ee&&Ee.some(function(Tt){return Pr(nt,Tt,qe)})}function Pr(Ee,nt){var qe=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;return!Ee||!nt||!qe&&Ee.length!==nt.length?!1:nt.every(function(Tt,lt){return Ee[lt]===Tt})}function At(Ee,nt){if(Ee===nt)return!0;if(!Ee&&nt||Ee&&!nt||!Ee||!nt||(0,Nt.Z)(Ee)!=="object"||(0,Nt.Z)(nt)!=="object")return!1;var qe=Object.keys(Ee),Tt=Object.keys(nt),lt=new Set([].concat(qe,Tt));return(0,h.Z)(lt).every(function(hr){var pr=Ee[hr],Cr=nt[hr];return typeof pr=="function"&&typeof Cr=="function"?!0:pr===Cr})}function Kt(Ee){var nt=arguments.length<=1?void 0:arguments[1];return nt&&nt.target&&(0,Nt.Z)(nt.target)==="object"&&Ee in nt.target?nt.target[Ee]:nt}function Bt(Ee,nt,qe){var Tt=Ee.length;if(nt<0||nt>=Tt||qe<0||qe>=Tt)return Ee;var lt=Ee[nt],hr=nt-qe;return hr>0?[].concat((0,h.Z)(Ee.slice(0,qe)),[lt],(0,h.Z)(Ee.slice(qe,nt)),(0,h.Z)(Ee.slice(nt+1,Tt))):hr<0?[].concat((0,h.Z)(Ee.slice(0,nt)),(0,h.Z)(Ee.slice(nt+1,qe+1)),[lt],(0,h.Z)(Ee.slice(qe+1,Tt))):Ee}var Jt=["name"],br=[];function Xr(Ee,nt,qe,Tt,lt,hr){return typeof Ee=="function"?Ee(nt,qe,"source"in hr?{source:hr.source}:{}):Tt!==lt}var Wr=function(Ee){(0,p.Z)(qe,Ee);var nt=(0,y.Z)(qe);function qe(Tt){var lt;if((0,u.Z)(this,qe),lt=nt.call(this,Tt),(0,m.Z)((0,x.Z)(lt),"state",{resetCount:0}),(0,m.Z)((0,x.Z)(lt),"cancelRegisterFunc",null),(0,m.Z)((0,x.Z)(lt),"mounted",!1),(0,m.Z)((0,x.Z)(lt),"touched",!1),(0,m.Z)((0,x.Z)(lt),"dirty",!1),(0,m.Z)((0,x.Z)(lt),"validatePromise",void 0),(0,m.Z)((0,x.Z)(lt),"prevValidating",void 0),(0,m.Z)((0,x.Z)(lt),"errors",br),(0,m.Z)((0,x.Z)(lt),"warnings",br),(0,m.Z)((0,x.Z)(lt),"cancelRegister",function(){var $r=lt.props,en=$r.preserve,Nr=$r.isListField,An=$r.name;lt.cancelRegisterFunc&&lt.cancelRegisterFunc(Nr,en,Lt(An)),lt.cancelRegisterFunc=null}),(0,m.Z)((0,x.Z)(lt),"getNamePath",function(){var $r=lt.props,en=$r.name,Nr=$r.fieldContext,An=Nr.prefixName,_r=An===void 0?[]:An;return en!==void 0?[].concat((0,h.Z)(_r),(0,h.Z)(en)):[]}),(0,m.Z)((0,x.Z)(lt),"getRules",function(){var $r=lt.props,en=$r.rules,Nr=en===void 0?[]:en,An=$r.fieldContext;return Nr.map(function(_r){return typeof _r=="function"?_r(An):_r})}),(0,m.Z)((0,x.Z)(lt),"refresh",function(){lt.mounted&&lt.setState(function($r){var en=$r.resetCount;return{resetCount:en+1}})}),(0,m.Z)((0,x.Z)(lt),"metaCache",null),(0,m.Z)((0,x.Z)(lt),"triggerMetaEvent",function($r){var en=lt.props.onMetaChange;if(en){var Nr=(0,o.Z)((0,o.Z)({},lt.getMeta()),{},{destroy:$r});(0,S.Z)(lt.metaCache,Nr)||en(Nr),lt.metaCache=Nr}else lt.metaCache=null}),(0,m.Z)((0,x.Z)(lt),"onStoreChange",function($r,en,Nr){var An=lt.props,_r=An.shouldUpdate,Fn=An.dependencies,Qn=Fn===void 0?[]:Fn,Ke=An.onReset,ct=Nr.store,ge=lt.getNamePath(),sr=lt.getValue($r),nr=lt.getValue(ct),kr=en&&Er(en,ge);switch(Nr.type==="valueUpdate"&&Nr.source==="external"&&sr!==nr&&(lt.touched=!0,lt.dirty=!0,lt.validatePromise=null,lt.errors=br,lt.warnings=br,lt.triggerMetaEvent()),Nr.type){case"reset":if(!en||kr){lt.touched=!1,lt.dirty=!1,lt.validatePromise=void 0,lt.errors=br,lt.warnings=br,lt.triggerMetaEvent(),Ke==null||Ke(),lt.refresh();return}break;case"remove":{if(_r){lt.reRender();return}break}case"setField":{var Hr=Nr.data;if(kr){"touched"in Hr&&(lt.touched=Hr.touched),"validating"in Hr&&!("originRCField"in Hr)&&(lt.validatePromise=Hr.validating?Promise.resolve([]):null),"errors"in Hr&&(lt.errors=Hr.errors||br),"warnings"in Hr&&(lt.warnings=Hr.warnings||br),lt.dirty=!0,lt.triggerMetaEvent(),lt.reRender();return}else if("value"in Hr&&Er(en,ge,!0)){lt.reRender();return}if(_r&&!ge.length&&Xr(_r,$r,ct,sr,nr,Nr)){lt.reRender();return}break}case"dependenciesUpdate":{var Zr=Qn.map(Lt);if(Zr.some(function(hn){return Er(Nr.relatedFields,hn)})){lt.reRender();return}break}default:if(kr||(!Qn.length||ge.length||_r)&&Xr(_r,$r,ct,sr,nr,Nr)){lt.reRender();return}break}_r===!0&&lt.reRender()}),(0,m.Z)((0,x.Z)(lt),"validateRules",function($r){var en=lt.getNamePath(),Nr=lt.getValue(),An=$r||{},_r=An.triggerName,Fn=An.validateOnly,Qn=Fn===void 0?!1:Fn,Ke=Promise.resolve().then((0,f.Z)((0,c.Z)().mark(function ct(){var ge,sr,nr,kr,Hr,Zr,hn;return(0,c.Z)().wrap(function(un){for(;;)switch(un.prev=un.next){case 0:if(lt.mounted){un.next=2;break}return un.abrupt("return",[]);case 2:if(ge=lt.props,sr=ge.validateFirst,nr=sr===void 0?!1:sr,kr=ge.messageVariables,Hr=ge.validateDebounce,Zr=lt.getRules(),_r&&(Zr=Zr.filter(function(yn){return yn}).filter(function(yn){var Gr=yn.validateTrigger;if(!Gr)return!0;var kn=K(Gr);return kn.includes(_r)})),!(Hr&&_r)){un.next=10;break}return un.next=8,new Promise(function(yn){setTimeout(yn,Hr)});case 8:if(lt.validatePromise===Ke){un.next=10;break}return un.abrupt("return",[]);case 10:return hn=Be(en,Nr,Zr,$r,nr,kr),hn.catch(function(yn){return yn}).then(function(){var yn=arguments.length>0&&arguments[0]!==void 0?arguments[0]:br;if(lt.validatePromise===Ke){var Gr;lt.validatePromise=null;var kn=[],si=[];(Gr=yn.forEach)===null||Gr===void 0||Gr.call(yn,function(Ea){var Js=Ea.rule.warningOnly,Ba=Ea.errors,$s=Ba===void 0?br:Ba;Js?si.push.apply(si,(0,h.Z)($s)):kn.push.apply(kn,(0,h.Z)($s))}),lt.errors=kn,lt.warnings=si,lt.triggerMetaEvent(),lt.reRender()}}),un.abrupt("return",hn);case 13:case"end":return un.stop()}},ct)})));return Qn||(lt.validatePromise=Ke,lt.dirty=!0,lt.errors=br,lt.warnings=br,lt.triggerMetaEvent(),lt.reRender()),Ke}),(0,m.Z)((0,x.Z)(lt),"isFieldValidating",function(){return!!lt.validatePromise}),(0,m.Z)((0,x.Z)(lt),"isFieldTouched",function(){return lt.touched}),(0,m.Z)((0,x.Z)(lt),"isFieldDirty",function(){if(lt.dirty||lt.props.initialValue!==void 0)return!0;var $r=lt.props.fieldContext,en=$r.getInternalHooks(R),Nr=en.getInitialValue;return Nr(lt.getNamePath())!==void 0}),(0,m.Z)((0,x.Z)(lt),"getErrors",function(){return lt.errors}),(0,m.Z)((0,x.Z)(lt),"getWarnings",function(){return lt.warnings}),(0,m.Z)((0,x.Z)(lt),"isListField",function(){return lt.props.isListField}),(0,m.Z)((0,x.Z)(lt),"isList",function(){return lt.props.isList}),(0,m.Z)((0,x.Z)(lt),"isPreserve",function(){return lt.props.preserve}),(0,m.Z)((0,x.Z)(lt),"getMeta",function(){lt.prevValidating=lt.isFieldValidating();var $r={touched:lt.isFieldTouched(),validating:lt.prevValidating,errors:lt.errors,warnings:lt.warnings,name:lt.getNamePath(),validated:lt.validatePromise===null};return $r}),(0,m.Z)((0,x.Z)(lt),"getOnlyChild",function($r){if(typeof $r=="function"){var en=lt.getMeta();return(0,o.Z)((0,o.Z)({},lt.getOnlyChild($r(lt.getControlled(),en,lt.props.fieldContext))),{},{isFunction:!0})}var Nr=(0,b.Z)($r);return Nr.length!==1||!r.isValidElement(Nr[0])?{child:Nr,isFunction:!1}:{child:Nr[0],isFunction:!1}}),(0,m.Z)((0,x.Z)(lt),"getValue",function($r){var en=lt.props.fieldContext.getFieldsValue,Nr=lt.getNamePath();return(0,qt.Z)($r||en(!0),Nr)}),(0,m.Z)((0,x.Z)(lt),"getControlled",function(){var $r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},en=lt.props,Nr=en.trigger,An=en.validateTrigger,_r=en.getValueFromEvent,Fn=en.normalize,Qn=en.valuePropName,Ke=en.getValueProps,ct=en.fieldContext,ge=An!==void 0?An:ct.validateTrigger,sr=lt.getNamePath(),nr=ct.getInternalHooks,kr=ct.getFieldsValue,Hr=nr(R),Zr=Hr.dispatch,hn=lt.getValue(),Si=Ke||function(kn){return(0,m.Z)({},Qn,kn)},un=$r[Nr],yn=(0,o.Z)((0,o.Z)({},$r),Si(hn));yn[Nr]=function(){lt.touched=!0,lt.dirty=!0,lt.triggerMetaEvent();for(var kn,si=arguments.length,Ea=new Array(si),Js=0;Js<si;Js++)Ea[Js]=arguments[Js];_r?kn=_r.apply(void 0,Ea):kn=Kt.apply(void 0,[Qn].concat(Ea)),Fn&&(kn=Fn(kn,hn,kr(!0))),Zr({type:"updateValue",namePath:sr,value:kn}),un&&un.apply(void 0,Ea)};var Gr=K(ge||[]);return Gr.forEach(function(kn){var si=yn[kn];yn[kn]=function(){si&&si.apply(void 0,arguments);var Ea=lt.props.rules;Ea&&Ea.length&&Zr({type:"validateField",namePath:sr,triggerName:kn})}}),yn}),Tt.fieldContext){var hr=Tt.fieldContext.getInternalHooks,pr=hr(R),Cr=pr.initEntityValue;Cr((0,x.Z)(lt))}return lt}return(0,a.Z)(qe,[{key:"componentDidMount",value:function(){var lt=this.props,hr=lt.shouldUpdate,pr=lt.fieldContext;if(this.mounted=!0,pr){var Cr=pr.getInternalHooks,$r=Cr(R),en=$r.registerField;this.cancelRegisterFunc=en(this)}hr===!0&&this.reRender()}},{key:"componentWillUnmount",value:function(){this.cancelRegister(),this.triggerMetaEvent(!0),this.mounted=!1}},{key:"reRender",value:function(){this.mounted&&this.forceUpdate()}},{key:"render",value:function(){var lt=this.state.resetCount,hr=this.props.children,pr=this.getOnlyChild(hr),Cr=pr.child,$r=pr.isFunction,en;return $r?en=Cr:r.isValidElement(Cr)?en=r.cloneElement(Cr,this.getControlled(Cr.props)):((0,k.ZP)(!Cr,"`children` of Field is not validate ReactElement."),en=Cr),r.createElement(r.Fragment,{key:lt},en)}}]),qe}(r.Component);(0,m.Z)(Wr,"contextType",M),(0,m.Z)(Wr,"defaultProps",{trigger:"onChange",valuePropName:"value"});function jn(Ee){var nt=Ee.name,qe=(0,l.Z)(Ee,Jt),Tt=r.useContext(M),lt=r.useContext(N),hr=nt!==void 0?Lt(nt):void 0,pr="keep";return qe.isListField||(pr="_".concat((hr||[]).join("_"))),r.createElement(Wr,(0,i.Z)({key:pr,name:hr,isListField:!!lt},qe,{fieldContext:Tt}))}var wn=jn;function Yn(Ee){var nt=Ee.name,qe=Ee.initialValue,Tt=Ee.children,lt=Ee.rules,hr=Ee.validateTrigger,pr=Ee.isListField,Cr=r.useContext(M),$r=r.useContext(N),en=r.useRef({keys:[],id:0}),Nr=en.current,An=r.useMemo(function(){var Ke=Lt(Cr.prefixName)||[];return[].concat((0,h.Z)(Ke),(0,h.Z)(Lt(nt)))},[Cr.prefixName,nt]),_r=r.useMemo(function(){return(0,o.Z)((0,o.Z)({},Cr),{},{prefixName:An})},[Cr,An]),Fn=r.useMemo(function(){return{getKey:function(ct){var ge=An.length,sr=ct[ge];return[Nr.keys[sr],ct.slice(ge+1)]}}},[An]);if(typeof Tt!="function")return(0,k.ZP)(!1,"Form.List only accepts function as children."),null;var Qn=function(ct,ge,sr){var nr=sr.source;return nr==="internal"?!1:ct!==ge};return r.createElement(N.Provider,{value:Fn},r.createElement(M.Provider,{value:_r},r.createElement(wn,{name:[],shouldUpdate:Qn,rules:lt,validateTrigger:hr,initialValue:qe,isList:!0,isListField:pr!=null?pr:!!$r},function(Ke,ct){var ge=Ke.value,sr=ge===void 0?[]:ge,nr=Ke.onChange,kr=Cr.getFieldValue,Hr=function(){var un=kr(An||[]);return un||[]},Zr={add:function(un,yn){var Gr=Hr();yn>=0&&yn<=Gr.length?(Nr.keys=[].concat((0,h.Z)(Nr.keys.slice(0,yn)),[Nr.id],(0,h.Z)(Nr.keys.slice(yn))),nr([].concat((0,h.Z)(Gr.slice(0,yn)),[un],(0,h.Z)(Gr.slice(yn))))):(Nr.keys=[].concat((0,h.Z)(Nr.keys),[Nr.id]),nr([].concat((0,h.Z)(Gr),[un]))),Nr.id+=1},remove:function(un){var yn=Hr(),Gr=new Set(Array.isArray(un)?un:[un]);Gr.size<=0||(Nr.keys=Nr.keys.filter(function(kn,si){return!Gr.has(si)}),nr(yn.filter(function(kn,si){return!Gr.has(si)})))},move:function(un,yn){if(un!==yn){var Gr=Hr();un<0||un>=Gr.length||yn<0||yn>=Gr.length||(Nr.keys=Bt(Nr.keys,un,yn),nr(Bt(Gr,un,yn)))}}},hn=sr||[];return Array.isArray(hn)||(hn=[]),Tt(hn.map(function(Si,un){var yn=Nr.keys[un];return yn===void 0&&(Nr.keys[un]=Nr.id,yn=Nr.keys[un],Nr.id+=1),{name:un,key:yn,isListField:!0}}),Zr,ct)})))}var St=Yn,Vr=e(42978);function ii(Ee){var nt=!1,qe=Ee.length,Tt=[];return Ee.length?new Promise(function(lt,hr){Ee.forEach(function(pr,Cr){pr.catch(function($r){return nt=!0,$r}).then(function($r){qe-=1,Tt[Cr]=$r,!(qe>0)&&(nt&&hr(Tt),lt(Tt))})})}):Promise.resolve([])}var Bi="__@field_split__";function Gn(Ee){return Ee.map(function(nt){return"".concat((0,Nt.Z)(nt),":").concat(nt)}).join(Bi)}var ci=function(){function Ee(){(0,u.Z)(this,Ee),(0,m.Z)(this,"kvs",new Map)}return(0,a.Z)(Ee,[{key:"set",value:function(qe,Tt){this.kvs.set(Gn(qe),Tt)}},{key:"get",value:function(qe){return this.kvs.get(Gn(qe))}},{key:"update",value:function(qe,Tt){var lt=this.get(qe),hr=Tt(lt);hr?this.set(qe,hr):this.delete(qe)}},{key:"delete",value:function(qe){this.kvs.delete(Gn(qe))}},{key:"map",value:function(qe){return(0,h.Z)(this.kvs.entries()).map(function(Tt){var lt=(0,Vr.Z)(Tt,2),hr=lt[0],pr=lt[1],Cr=hr.split(Bi);return qe({key:Cr.map(function($r){var en=$r.match(/^([^:]*):(.*)$/),Nr=(0,Vr.Z)(en,3),An=Nr[1],_r=Nr[2];return An==="number"?Number(_r):_r}),value:pr})})}},{key:"toJSON",value:function(){var qe={};return this.map(function(Tt){var lt=Tt.key,hr=Tt.value;return qe[lt.join(".")]=hr,null}),qe}}]),Ee}(),Oi=ci,$i=["name"],Ai=(0,a.Z)(function Ee(nt){var qe=this;(0,u.Z)(this,Ee),(0,m.Z)(this,"formHooked",!1),(0,m.Z)(this,"forceRootUpdate",void 0),(0,m.Z)(this,"subscribable",!0),(0,m.Z)(this,"store",{}),(0,m.Z)(this,"fieldEntities",[]),(0,m.Z)(this,"initialValues",{}),(0,m.Z)(this,"callbacks",{}),(0,m.Z)(this,"validateMessages",null),(0,m.Z)(this,"preserve",null),(0,m.Z)(this,"lastValidatePromise",null),(0,m.Z)(this,"getForm",function(){return{getFieldValue:qe.getFieldValue,getFieldsValue:qe.getFieldsValue,getFieldError:qe.getFieldError,getFieldWarning:qe.getFieldWarning,getFieldsError:qe.getFieldsError,isFieldsTouched:qe.isFieldsTouched,isFieldTouched:qe.isFieldTouched,isFieldValidating:qe.isFieldValidating,isFieldsValidating:qe.isFieldsValidating,resetFields:qe.resetFields,setFields:qe.setFields,setFieldValue:qe.setFieldValue,setFieldsValue:qe.setFieldsValue,validateFields:qe.validateFields,submit:qe.submit,_init:!0,getInternalHooks:qe.getInternalHooks}}),(0,m.Z)(this,"getInternalHooks",function(Tt){return Tt===R?(qe.formHooked=!0,{dispatch:qe.dispatch,initEntityValue:qe.initEntityValue,registerField:qe.registerField,useSubscribe:qe.useSubscribe,setInitialValues:qe.setInitialValues,destroyForm:qe.destroyForm,setCallbacks:qe.setCallbacks,setValidateMessages:qe.setValidateMessages,getFields:qe.getFields,setPreserve:qe.setPreserve,getInitialValue:qe.getInitialValue,registerWatch:qe.registerWatch}):((0,k.ZP)(!1,"`getInternalHooks` is internal usage. Should not call directly."),null)}),(0,m.Z)(this,"useSubscribe",function(Tt){qe.subscribable=Tt}),(0,m.Z)(this,"prevWithoutPreserves",null),(0,m.Z)(this,"setInitialValues",function(Tt,lt){if(qe.initialValues=Tt||{},lt){var hr,pr=(0,Te.T)(Tt,qe.store);(hr=qe.prevWithoutPreserves)===null||hr===void 0||hr.map(function(Cr){var $r=Cr.key;pr=(0,Te.Z)(pr,$r,(0,qt.Z)(Tt,$r))}),qe.prevWithoutPreserves=null,qe.updateStore(pr)}}),(0,m.Z)(this,"destroyForm",function(){var Tt=new Oi;qe.getFieldEntities(!0).forEach(function(lt){qe.isMergedPreserve(lt.isPreserve())||Tt.set(lt.getNamePath(),!0)}),qe.prevWithoutPreserves=Tt}),(0,m.Z)(this,"getInitialValue",function(Tt){var lt=(0,qt.Z)(qe.initialValues,Tt);return Tt.length?(0,Te.T)(lt):lt}),(0,m.Z)(this,"setCallbacks",function(Tt){qe.callbacks=Tt}),(0,m.Z)(this,"setValidateMessages",function(Tt){qe.validateMessages=Tt}),(0,m.Z)(this,"setPreserve",function(Tt){qe.preserve=Tt}),(0,m.Z)(this,"watchList",[]),(0,m.Z)(this,"registerWatch",function(Tt){return qe.watchList.push(Tt),function(){qe.watchList=qe.watchList.filter(function(lt){return lt!==Tt})}}),(0,m.Z)(this,"notifyWatch",function(){var Tt=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[];if(qe.watchList.length){var lt=qe.getFieldsValue(),hr=qe.getFieldsValue(!0);qe.watchList.forEach(function(pr){pr(lt,hr,Tt)})}}),(0,m.Z)(this,"timeoutId",null),(0,m.Z)(this,"warningUnhooked",function(){}),(0,m.Z)(this,"updateStore",function(Tt){qe.store=Tt}),(0,m.Z)(this,"getFieldEntities",function(){var Tt=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;return Tt?qe.fieldEntities.filter(function(lt){return lt.getNamePath().length}):qe.fieldEntities}),(0,m.Z)(this,"getFieldsMap",function(){var Tt=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,lt=new Oi;return qe.getFieldEntities(Tt).forEach(function(hr){var pr=hr.getNamePath();lt.set(pr,hr)}),lt}),(0,m.Z)(this,"getFieldEntitiesForNamePathList",function(Tt){if(!Tt)return qe.getFieldEntities(!0);var lt=qe.getFieldsMap(!0);return Tt.map(function(hr){var pr=Lt(hr);return lt.get(pr)||{INVALIDATE_NAME_PATH:Lt(hr)}})}),(0,m.Z)(this,"getFieldsValue",function(Tt,lt){qe.warningUnhooked();var hr,pr,Cr;if(Tt===!0||Array.isArray(Tt)?(hr=Tt,pr=lt):Tt&&(0,Nt.Z)(Tt)==="object"&&(Cr=Tt.strict,pr=Tt.filter),hr===!0&&!pr)return qe.store;var $r=qe.getFieldEntitiesForNamePathList(Array.isArray(hr)?hr:null),en=[];return $r.forEach(function(Nr){var An,_r,Fn="INVALIDATE_NAME_PATH"in Nr?Nr.INVALIDATE_NAME_PATH:Nr.getNamePath();if(Cr){var Qn,Ke;if((Qn=(Ke=Nr).isList)!==null&&Qn!==void 0&&Qn.call(Ke))return}else if(!hr&&(An=(_r=Nr).isListField)!==null&&An!==void 0&&An.call(_r))return;if(!pr)en.push(Fn);else{var ct="getMeta"in Nr?Nr.getMeta():null;pr(ct)&&en.push(Fn)}}),Xt(qe.store,en.map(Lt))}),(0,m.Z)(this,"getFieldValue",function(Tt){qe.warningUnhooked();var lt=Lt(Tt);return(0,qt.Z)(qe.store,lt)}),(0,m.Z)(this,"getFieldsError",function(Tt){qe.warningUnhooked();var lt=qe.getFieldEntitiesForNamePathList(Tt);return lt.map(function(hr,pr){return hr&&!("INVALIDATE_NAME_PATH"in hr)?{name:hr.getNamePath(),errors:hr.getErrors(),warnings:hr.getWarnings()}:{name:Lt(Tt[pr]),errors:[],warnings:[]}})}),(0,m.Z)(this,"getFieldError",function(Tt){qe.warningUnhooked();var lt=Lt(Tt),hr=qe.getFieldsError([lt])[0];return hr.errors}),(0,m.Z)(this,"getFieldWarning",function(Tt){qe.warningUnhooked();var lt=Lt(Tt),hr=qe.getFieldsError([lt])[0];return hr.warnings}),(0,m.Z)(this,"isFieldsTouched",function(){qe.warningUnhooked();for(var Tt=arguments.length,lt=new Array(Tt),hr=0;hr<Tt;hr++)lt[hr]=arguments[hr];var pr=lt[0],Cr=lt[1],$r,en=!1;lt.length===0?$r=null:lt.length===1?Array.isArray(pr)?($r=pr.map(Lt),en=!1):($r=null,en=pr):($r=pr.map(Lt),en=Cr);var Nr=qe.getFieldEntities(!0),An=function(ct){return ct.isFieldTouched()};if(!$r)return en?Nr.every(An):Nr.some(An);var _r=new Oi;$r.forEach(function(Ke){_r.set(Ke,[])}),Nr.forEach(function(Ke){var ct=Ke.getNamePath();$r.forEach(function(ge){ge.every(function(sr,nr){return ct[nr]===sr})&&_r.update(ge,function(sr){return[].concat((0,h.Z)(sr),[Ke])})})});var Fn=function(ct){return ct.some(An)},Qn=_r.map(function(Ke){var ct=Ke.value;return ct});return en?Qn.every(Fn):Qn.some(Fn)}),(0,m.Z)(this,"isFieldTouched",function(Tt){return qe.warningUnhooked(),qe.isFieldsTouched([Tt])}),(0,m.Z)(this,"isFieldsValidating",function(Tt){qe.warningUnhooked();var lt=qe.getFieldEntities();if(!Tt)return lt.some(function(pr){return pr.isFieldValidating()});var hr=Tt.map(Lt);return lt.some(function(pr){var Cr=pr.getNamePath();return Er(hr,Cr)&&pr.isFieldValidating()})}),(0,m.Z)(this,"isFieldValidating",function(Tt){return qe.warningUnhooked(),qe.isFieldsValidating([Tt])}),(0,m.Z)(this,"resetWithFieldInitialValue",function(){var Tt=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},lt=new Oi,hr=qe.getFieldEntities(!0);hr.forEach(function($r){var en=$r.props.initialValue,Nr=$r.getNamePath();if(en!==void 0){var An=lt.get(Nr)||new Set;An.add({entity:$r,value:en}),lt.set(Nr,An)}});var pr=function(en){en.forEach(function(Nr){var An=Nr.props.initialValue;if(An!==void 0){var _r=Nr.getNamePath(),Fn=qe.getInitialValue(_r);if(Fn!==void 0)(0,k.ZP)(!1,"Form already set 'initialValues' with path '".concat(_r.join("."),"'. Field can not overwrite it."));else{var Qn=lt.get(_r);if(Qn&&Qn.size>1)(0,k.ZP)(!1,"Multiple Field with path '".concat(_r.join("."),"' set 'initialValue'. Can not decide which one to pick."));else if(Qn){var Ke=qe.getFieldValue(_r);(!Tt.skipExist||Ke===void 0)&&qe.updateStore((0,Te.Z)(qe.store,_r,(0,h.Z)(Qn)[0].value))}}}})},Cr;Tt.entities?Cr=Tt.entities:Tt.namePathList?(Cr=[],Tt.namePathList.forEach(function($r){var en=lt.get($r);if(en){var Nr;(Nr=Cr).push.apply(Nr,(0,h.Z)((0,h.Z)(en).map(function(An){return An.entity})))}})):Cr=hr,pr(Cr)}),(0,m.Z)(this,"resetFields",function(Tt){qe.warningUnhooked();var lt=qe.store;if(!Tt){qe.updateStore((0,Te.T)(qe.initialValues)),qe.resetWithFieldInitialValue(),qe.notifyObservers(lt,null,{type:"reset"}),qe.notifyWatch();return}var hr=Tt.map(Lt);hr.forEach(function(pr){var Cr=qe.getInitialValue(pr);qe.updateStore((0,Te.Z)(qe.store,pr,Cr))}),qe.resetWithFieldInitialValue({namePathList:hr}),qe.notifyObservers(lt,hr,{type:"reset"}),qe.notifyWatch(hr)}),(0,m.Z)(this,"setFields",function(Tt){qe.warningUnhooked();var lt=qe.store,hr=[];Tt.forEach(function(pr){var Cr=pr.name,$r=(0,l.Z)(pr,$i),en=Lt(Cr);hr.push(en),"value"in $r&&qe.updateStore((0,Te.Z)(qe.store,en,$r.value)),qe.notifyObservers(lt,[en],{type:"setField",data:pr})}),qe.notifyWatch(hr)}),(0,m.Z)(this,"getFields",function(){var Tt=qe.getFieldEntities(!0),lt=Tt.map(function(hr){var pr=hr.getNamePath(),Cr=hr.getMeta(),$r=(0,o.Z)((0,o.Z)({},Cr),{},{name:pr,value:qe.getFieldValue(pr)});return Object.defineProperty($r,"originRCField",{value:!0}),$r});return lt}),(0,m.Z)(this,"initEntityValue",function(Tt){var lt=Tt.props.initialValue;if(lt!==void 0){var hr=Tt.getNamePath(),pr=(0,qt.Z)(qe.store,hr);pr===void 0&&qe.updateStore((0,Te.Z)(qe.store,hr,lt))}}),(0,m.Z)(this,"isMergedPreserve",function(Tt){var lt=Tt!==void 0?Tt:qe.preserve;return lt!=null?lt:!0}),(0,m.Z)(this,"registerField",function(Tt){qe.fieldEntities.push(Tt);var lt=Tt.getNamePath();if(qe.notifyWatch([lt]),Tt.props.initialValue!==void 0){var hr=qe.store;qe.resetWithFieldInitialValue({entities:[Tt],skipExist:!0}),qe.notifyObservers(hr,[Tt.getNamePath()],{type:"valueUpdate",source:"internal"})}return function(pr,Cr){var $r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[];if(qe.fieldEntities=qe.fieldEntities.filter(function(An){return An!==Tt}),!qe.isMergedPreserve(Cr)&&(!pr||$r.length>1)){var en=pr?void 0:qe.getInitialValue(lt);if(lt.length&&qe.getFieldValue(lt)!==en&&qe.fieldEntities.every(function(An){return!Pr(An.getNamePath(),lt)})){var Nr=qe.store;qe.updateStore((0,Te.Z)(Nr,lt,en,!0)),qe.notifyObservers(Nr,[lt],{type:"remove"}),qe.triggerDependenciesUpdate(Nr,lt)}}qe.notifyWatch([lt])}}),(0,m.Z)(this,"dispatch",function(Tt){switch(Tt.type){case"updateValue":{var lt=Tt.namePath,hr=Tt.value;qe.updateValue(lt,hr);break}case"validateField":{var pr=Tt.namePath,Cr=Tt.triggerName;qe.validateFields([pr],{triggerName:Cr});break}default:}}),(0,m.Z)(this,"notifyObservers",function(Tt,lt,hr){if(qe.subscribable){var pr=(0,o.Z)((0,o.Z)({},hr),{},{store:qe.getFieldsValue(!0)});qe.getFieldEntities().forEach(function(Cr){var $r=Cr.onStoreChange;$r(Tt,lt,pr)})}else qe.forceRootUpdate()}),(0,m.Z)(this,"triggerDependenciesUpdate",function(Tt,lt){var hr=qe.getDependencyChildrenFields(lt);return hr.length&&qe.validateFields(hr),qe.notifyObservers(Tt,hr,{type:"dependenciesUpdate",relatedFields:[lt].concat((0,h.Z)(hr))}),hr}),(0,m.Z)(this,"updateValue",function(Tt,lt){var hr=Lt(Tt),pr=qe.store;qe.updateStore((0,Te.Z)(qe.store,hr,lt)),qe.notifyObservers(pr,[hr],{type:"valueUpdate",source:"internal"}),qe.notifyWatch([hr]);var Cr=qe.triggerDependenciesUpdate(pr,hr),$r=qe.callbacks.onValuesChange;if($r){var en=Xt(qe.store,[hr]);$r(en,qe.getFieldsValue())}qe.triggerOnFieldsChange([hr].concat((0,h.Z)(Cr)))}),(0,m.Z)(this,"setFieldsValue",function(Tt){qe.warningUnhooked();var lt=qe.store;if(Tt){var hr=(0,Te.T)(qe.store,Tt);qe.updateStore(hr)}qe.notifyObservers(lt,null,{type:"valueUpdate",source:"external"}),qe.notifyWatch()}),(0,m.Z)(this,"setFieldValue",function(Tt,lt){qe.setFields([{name:Tt,value:lt}])}),(0,m.Z)(this,"getDependencyChildrenFields",function(Tt){var lt=new Set,hr=[],pr=new Oi;qe.getFieldEntities().forEach(function($r){var en=$r.props.dependencies;(en||[]).forEach(function(Nr){var An=Lt(Nr);pr.update(An,function(){var _r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:new Set;return _r.add($r),_r})})});var Cr=function $r(en){var Nr=pr.get(en)||new Set;Nr.forEach(function(An){if(!lt.has(An)){lt.add(An);var _r=An.getNamePath();An.isFieldDirty()&&_r.length&&(hr.push(_r),$r(_r))}})};return Cr(Tt),hr}),(0,m.Z)(this,"triggerOnFieldsChange",function(Tt,lt){var hr=qe.callbacks.onFieldsChange;if(hr){var pr=qe.getFields();if(lt){var Cr=new Oi;lt.forEach(function(en){var Nr=en.name,An=en.errors;Cr.set(Nr,An)}),pr.forEach(function(en){en.errors=Cr.get(en.name)||en.errors})}var $r=pr.filter(function(en){var Nr=en.name;return Er(Tt,Nr)});$r.length&&hr($r,pr)}}),(0,m.Z)(this,"validateFields",function(Tt,lt){var hr;qe.warningUnhooked();var pr,Cr;Array.isArray(Tt)||typeof Tt=="string"||typeof lt=="string"?(pr=Tt,Cr=lt):Cr=Tt;var $r=!!pr,en=$r?pr.map(Lt):[],Nr=[],An=String(Date.now()),_r=new Set,Fn=(hr=Cr)===null||hr===void 0?void 0:hr.recursive;qe.getFieldEntities(!0).forEach(function(ge){if($r||en.push(ge.getNamePath()),!(!ge.props.rules||!ge.props.rules.length)){var sr=ge.getNamePath();if(_r.add(sr.join(An)),!$r||Er(en,sr,Fn)){var nr=ge.validateRules((0,o.Z)({validateMessages:(0,o.Z)((0,o.Z)({},bt),qe.validateMessages)},Cr));Nr.push(nr.then(function(){return{name:sr,errors:[],warnings:[]}}).catch(function(kr){var Hr,Zr=[],hn=[];return(Hr=kr.forEach)===null||Hr===void 0||Hr.call(kr,function(Si){var un=Si.rule.warningOnly,yn=Si.errors;un?hn.push.apply(hn,(0,h.Z)(yn)):Zr.push.apply(Zr,(0,h.Z)(yn))}),Zr.length?Promise.reject({name:sr,errors:Zr,warnings:hn}):{name:sr,errors:Zr,warnings:hn}}))}}});var Qn=ii(Nr);qe.lastValidatePromise=Qn,Qn.catch(function(ge){return ge}).then(function(ge){var sr=ge.map(function(nr){var kr=nr.name;return kr});qe.notifyObservers(qe.store,sr,{type:"validateFinish"}),qe.triggerOnFieldsChange(sr,ge)});var Ke=Qn.then(function(){return qe.lastValidatePromise===Qn?Promise.resolve(qe.getFieldsValue(en)):Promise.reject([])}).catch(function(ge){var sr=ge.filter(function(nr){return nr&&nr.errors.length});return Promise.reject({values:qe.getFieldsValue(en),errorFields:sr,outOfDate:qe.lastValidatePromise!==Qn})});Ke.catch(function(ge){return ge});var ct=en.filter(function(ge){return _r.has(ge.join(An))});return qe.triggerOnFieldsChange(ct),Ke}),(0,m.Z)(this,"submit",function(){qe.warningUnhooked(),qe.validateFields().then(function(Tt){var lt=qe.callbacks.onFinish;if(lt)try{lt(Tt)}catch(hr){console.error(hr)}}).catch(function(Tt){var lt=qe.callbacks.onFinishFailed;lt&&lt(Tt)})}),this.forceRootUpdate=nt});function ji(Ee){var nt=r.useRef(),qe=r.useState({}),Tt=(0,Vr.Z)(qe,2),lt=Tt[1];if(!nt.current)if(Ee)nt.current=Ee;else{var hr=function(){lt({})},pr=new Ai(hr);nt.current=pr.getForm()}return[nt.current]}var ha=ji,ea=r.createContext({triggerFormChange:function(){},triggerFormFinish:function(){},registerForm:function(){},unregisterForm:function(){}}),Yi=function(nt){var qe=nt.validateMessages,Tt=nt.onFormChange,lt=nt.onFormFinish,hr=nt.children,pr=r.useContext(ea),Cr=r.useRef({});return r.createElement(ea.Provider,{value:(0,o.Z)((0,o.Z)({},pr),{},{validateMessages:(0,o.Z)((0,o.Z)({},pr.validateMessages),qe),triggerFormChange:function(en,Nr){Tt&&Tt(en,{changedFields:Nr,forms:Cr.current}),pr.triggerFormChange(en,Nr)},triggerFormFinish:function(en,Nr){lt&&lt(en,{values:Nr,forms:Cr.current}),pr.triggerFormFinish(en,Nr)},registerForm:function(en,Nr){en&&(Cr.current=(0,o.Z)((0,o.Z)({},Cr.current),{},(0,m.Z)({},en,Nr))),pr.registerForm(en,Nr)},unregisterForm:function(en){var Nr=(0,o.Z)({},Cr.current);delete Nr[en],Cr.current=Nr,pr.unregisterForm(en)}})},hr)},mi=ea,zi=["name","initialValues","fields","form","preserve","children","component","validateMessages","validateTrigger","onValuesChange","onFieldsChange","onFinish","onFinishFailed"],Ca=function(nt,qe){var Tt=nt.name,lt=nt.initialValues,hr=nt.fields,pr=nt.form,Cr=nt.preserve,$r=nt.children,en=nt.component,Nr=en===void 0?"form":en,An=nt.validateMessages,_r=nt.validateTrigger,Fn=_r===void 0?"onChange":_r,Qn=nt.onValuesChange,Ke=nt.onFieldsChange,ct=nt.onFinish,ge=nt.onFinishFailed,sr=(0,l.Z)(nt,zi),nr=r.useContext(mi),kr=ha(pr),Hr=(0,Vr.Z)(kr,1),Zr=Hr[0],hn=Zr.getInternalHooks(R),Si=hn.useSubscribe,un=hn.setInitialValues,yn=hn.setCallbacks,Gr=hn.setValidateMessages,kn=hn.setPreserve,si=hn.destroyForm;r.useImperativeHandle(qe,function(){return Zr}),r.useEffect(function(){return nr.registerForm(Tt,Zr),function(){nr.unregisterForm(Tt)}},[nr,Zr,Tt]),Gr((0,o.Z)((0,o.Z)({},nr.validateMessages),An)),yn({onValuesChange:Qn,onFieldsChange:function(Is){if(nr.triggerFormChange(Tt,Is),Ke){for(var ps=arguments.length,po=new Array(ps>1?ps-1:0),Ji=1;Ji<ps;Ji++)po[Ji-1]=arguments[Ji];Ke.apply(void 0,[Is].concat(po))}},onFinish:function(Is){nr.triggerFormFinish(Tt,Is),ct&&ct(Is)},onFinishFailed:ge}),kn(Cr);var Ea=r.useRef(null);un(lt,!Ea.current),Ea.current||(Ea.current=!0),r.useEffect(function(){return si},[]);var Js,Ba=typeof $r=="function";if(Ba){var $s=Zr.getFieldsValue(!0);Js=$r($s,Zr)}else Js=$r;Si(!Ba);var Ns=r.useRef();r.useEffect(function(){At(Ns.current||[],hr||[])||Zr.setFields(hr||[]),Ns.current=hr},[hr,Zr]);var as=r.useMemo(function(){return(0,o.Z)((0,o.Z)({},Zr),{},{validateTrigger:Fn})},[Zr,Fn]),oo=r.createElement(N.Provider,{value:null},r.createElement(M.Provider,{value:as},Js));return Nr===!1?oo:r.createElement(Nr,(0,i.Z)({},sr,{onSubmit:function(Is){Is.preventDefault(),Is.stopPropagation(),Zr.submit()},onReset:function(Is){var ps;Is.preventDefault(),Zr.resetFields(),(ps=sr.onReset)===null||ps===void 0||ps.call(sr,Is)}}),oo)},xt=Ca;function xa(Ee){try{return JSON.stringify(Ee)}catch(nt){return Math.random()}}var Zi=function(){};function _i(){for(var Ee=arguments.length,nt=new Array(Ee),qe=0;qe<Ee;qe++)nt[qe]=arguments[qe];var Tt=nt[0],lt=Tt===void 0?[]:Tt,hr=nt[1],pr=hr===void 0?{}:hr,Cr=H(pr)?{form:pr}:pr,$r=Cr.form,en=(0,r.useState)(),Nr=(0,Vr.Z)(en,2),An=Nr[0],_r=Nr[1],Fn=(0,r.useMemo)(function(){return xa(An)},[An]),Qn=(0,r.useRef)(Fn);Qn.current=Fn;var Ke=(0,r.useContext)(M),ct=$r||Ke,ge=ct&&ct._init,sr=Lt(lt),nr=(0,r.useRef)(sr);return nr.current=sr,Zi(sr),(0,r.useEffect)(function(){if(ge){var kr=ct.getFieldsValue,Hr=ct.getInternalHooks,Zr=Hr(R),hn=Zr.registerWatch,Si=hn(function(yn,Gr){var kn=(0,qt.Z)(Cr.preserve?Gr:yn,nr.current),si=xa(kn);Qn.current!==si&&(Qn.current=si,_r(kn))}),un=(0,qt.Z)(Cr.preserve?kr(!0):kr(),nr.current);return An!==un&&_r(un),Si}},[ge]),An}var Da=_i,Hi=r.forwardRef(xt),ei=Hi;ei.FormProvider=Yi,ei.Field=wn,ei.List=St,ei.useForm=ha,ei.useWatch=Da;var $n=ei},77900:function(d,v,e){"use strict";e.r(v),e.d(v,{CSSMotionList:function(){return Ce},Provider:function(){return m},default:function(){return ce}});var r=e(20068),i=e(33885),l=e(42978),c=e(76190),f=e(92310),o=e.n(f),h=e(76846),u=e(8654),a=e(59301),x=e(75931),p=["children"],y=a.createContext({});function m(pe){var Ct=pe.children,Ae=(0,x.Z)(pe,p);return a.createElement(y.Provider,{value:Ae},Ct)}var b=e(67732),S=e(83652),k=e(42403),R=e(158),A=function(pe){(0,k.Z)(Ae,pe);var Ct=(0,R.Z)(Ae);function Ae(){return(0,b.Z)(this,Ae),Ct.apply(this,arguments)}return(0,S.Z)(Ae,[{key:"render",value:function(){return this.props.children}}]),Ae}(a.Component),P=A,M=e(70425),B=e(41799),N=e(6089);function K(pe){var Ct=a.useReducer(function(yt){return yt+1},0),Ae=(0,l.Z)(Ct,2),st=Ae[1],Gt=a.useRef(pe),bt=(0,N.Z)(function(){return Gt.current}),Te=(0,N.Z)(function(yt){Gt.current=typeof yt=="function"?yt(Gt.current):yt,st()});return[bt,Te]}var H="none",W="appear",ae="enter",ne="leave",oe="none",q="prepare",X="start",V="active",se="end",ee="prepared",J=e(47273);function le(pe,Ct){var Ae={};return Ae[pe.toLowerCase()]=Ct.toLowerCase(),Ae["Webkit".concat(pe)]="webkit".concat(Ct),Ae["Moz".concat(pe)]="moz".concat(Ct),Ae["ms".concat(pe)]="MS".concat(Ct),Ae["O".concat(pe)]="o".concat(Ct.toLowerCase()),Ae}function z(pe,Ct){var Ae={animationend:le("Animation","AnimationEnd"),transitionend:le("Transition","TransitionEnd")};return pe&&("AnimationEvent"in Ct||delete Ae.animationend.animation,"TransitionEvent"in Ct||delete Ae.transitionend.transition),Ae}var j=z((0,J.Z)(),typeof window!="undefined"?window:{}),ie={};if((0,J.Z)()){var me=document.createElement("div");ie=me.style}var Se={};function Ie(pe){if(Se[pe])return Se[pe];var Ct=j[pe];if(Ct)for(var Ae=Object.keys(Ct),st=Ae.length,Gt=0;Gt<st;Gt+=1){var bt=Ae[Gt];if(Object.prototype.hasOwnProperty.call(Ct,bt)&&bt in ie)return Se[pe]=Ct[bt],Se[pe]}return""}var He=Ie("animationend"),je=Ie("transitionend"),Dt=!!(He&&je),ht=He||"animationend",It=je||"transitionend";function Zt(pe,Ct){if(!pe)return null;if((0,c.Z)(pe)==="object"){var Ae=Ct.replace(/-\w/g,function(st){return st[1].toUpperCase()});return pe[Ae]}return"".concat(pe,"-").concat(Ct)}var Rt=function(pe){var Ct=(0,a.useRef)();function Ae(Gt){Gt&&(Gt.removeEventListener(It,pe),Gt.removeEventListener(ht,pe))}function st(Gt){Ct.current&&Ct.current!==Gt&&Ae(Ct.current),Gt&&Gt!==Ct.current&&(Gt.addEventListener(It,pe),Gt.addEventListener(ht,pe),Ct.current=Gt)}return a.useEffect(function(){return function(){Ae(Ct.current)}},[]),[st,Ae]},ar=(0,J.Z)()?a.useLayoutEffect:a.useEffect,$e=ar,gt=e(16089),Mt=function(){var pe=a.useRef(null);function Ct(){gt.Z.cancel(pe.current)}function Ae(st){var Gt=arguments.length>1&&arguments[1]!==void 0?arguments[1]:2;Ct();var bt=(0,gt.Z)(function(){Gt<=1?st({isCanceled:function(){return bt!==pe.current}}):Ae(st,Gt-1)});pe.current=bt}return a.useEffect(function(){return function(){Ct()}},[]),[Ae,Ct]},et=[q,X,V,se],ft=[q,ee],ot=!1,Je=!0;function Ne(pe){return pe===V||pe===se}var ye=function(pe,Ct,Ae){var st=(0,B.Z)(oe),Gt=(0,l.Z)(st,2),bt=Gt[0],Te=Gt[1],yt=Mt(),ze=(0,l.Z)(yt,2),xe=ze[0],dt=ze[1];function Pt(){Te(q,!0)}var Be=Ct?ft:et;return $e(function(){if(bt!==oe&&bt!==se){var Or=Be.indexOf(bt),mt=Be[Or+1],qr=Ae(bt);qr===ot?Te(mt,!0):mt&&xe(function(an){function Nt(){an.isCanceled()||Te(mt,!0)}qr===!0?Nt():Promise.resolve(qr).then(Nt)})}},[pe,bt]),a.useEffect(function(){return function(){dt()}},[]),[Pt,bt]};function ke(pe,Ct,Ae,st){var Gt=st.motionEnter,bt=Gt===void 0?!0:Gt,Te=st.motionAppear,yt=Te===void 0?!0:Te,ze=st.motionLeave,xe=ze===void 0?!0:ze,dt=st.motionDeadline,Pt=st.motionLeaveImmediately,Be=st.onAppearPrepare,Or=st.onEnterPrepare,mt=st.onLeavePrepare,qr=st.onAppearStart,an=st.onEnterStart,Nt=st.onLeaveStart,qt=st.onAppearActive,Lt=st.onEnterActive,Xt=st.onLeaveActive,Er=st.onAppearEnd,Pr=st.onEnterEnd,At=st.onLeaveEnd,Kt=st.onVisibleChanged,Bt=(0,B.Z)(),Jt=(0,l.Z)(Bt,2),br=Jt[0],Xr=Jt[1],Wr=K(H),jn=(0,l.Z)(Wr,2),wn=jn[0],Yn=jn[1],St=(0,B.Z)(null),Vr=(0,l.Z)(St,2),ii=Vr[0],Bi=Vr[1],Gn=wn(),ci=(0,a.useRef)(!1),Oi=(0,a.useRef)(null);function $i(){return Ae()}var Ai=(0,a.useRef)(!1);function ji(){Yn(H),Bi(null,!0)}var ha=(0,M.useEvent)(function(Ee){var nt=wn();if(nt!==H){var qe=$i();if(!(Ee&&!Ee.deadline&&Ee.target!==qe)){var Tt=Ai.current,lt;nt===W&&Tt?lt=Er==null?void 0:Er(qe,Ee):nt===ae&&Tt?lt=Pr==null?void 0:Pr(qe,Ee):nt===ne&&Tt&&(lt=At==null?void 0:At(qe,Ee)),Tt&&lt!==!1&&ji()}}}),ea=Rt(ha),Yi=(0,l.Z)(ea,1),mi=Yi[0],zi=function(nt){switch(nt){case W:return(0,r.Z)((0,r.Z)((0,r.Z)({},q,Be),X,qr),V,qt);case ae:return(0,r.Z)((0,r.Z)((0,r.Z)({},q,Or),X,an),V,Lt);case ne:return(0,r.Z)((0,r.Z)((0,r.Z)({},q,mt),X,Nt),V,Xt);default:return{}}},Ca=a.useMemo(function(){return zi(Gn)},[Gn]),xt=ye(Gn,!pe,function(Ee){if(Ee===q){var nt=Ca[q];return nt?nt($i()):ot}if(_i in Ca){var qe;Bi(((qe=Ca[_i])===null||qe===void 0?void 0:qe.call(Ca,$i(),null))||null)}return _i===V&&Gn!==H&&(mi($i()),dt>0&&(clearTimeout(Oi.current),Oi.current=setTimeout(function(){ha({deadline:!0})},dt))),_i===ee&&ji(),Je}),xa=(0,l.Z)(xt,2),Zi=xa[0],_i=xa[1],Da=Ne(_i);Ai.current=Da;var Hi=(0,a.useRef)(null);$e(function(){if(!(ci.current&&Hi.current===Ct)){Xr(Ct);var Ee=ci.current;ci.current=!0;var nt;!Ee&&Ct&&yt&&(nt=W),Ee&&Ct&&bt&&(nt=ae),(Ee&&!Ct&&xe||!Ee&&Pt&&!Ct&&xe)&&(nt=ne);var qe=zi(nt);nt&&(pe||qe[q])?(Yn(nt),Zi()):Yn(H),Hi.current=Ct}},[Ct]),(0,a.useEffect)(function(){(Gn===W&&!yt||Gn===ae&&!bt||Gn===ne&&!xe)&&Yn(H)},[yt,bt,xe]),(0,a.useEffect)(function(){return function(){ci.current=!1,clearTimeout(Oi.current)}},[]);var ei=a.useRef(!1);(0,a.useEffect)(function(){br&&(ei.current=!0),br!==void 0&&Gn===H&&((ei.current||br)&&(Kt==null||Kt(br)),ei.current=!0)},[br,Gn]);var $n=ii;return Ca[q]&&_i===X&&($n=(0,i.Z)({transition:"none"},$n)),[Gn,_i,$n,br!=null?br:Ct]}function Ge(pe){var Ct=pe;(0,c.Z)(pe)==="object"&&(Ct=pe.transitionSupport);function Ae(Gt,bt){return!!(Gt.motionName&&Ct&&bt!==!1)}var st=a.forwardRef(function(Gt,bt){var Te=Gt.visible,yt=Te===void 0?!0:Te,ze=Gt.removeOnLeave,xe=ze===void 0?!0:ze,dt=Gt.forceRender,Pt=Gt.children,Be=Gt.motionName,Or=Gt.leavedClassName,mt=Gt.eventProps,qr=a.useContext(y),an=qr.motion,Nt=Ae(Gt,an),qt=(0,a.useRef)(),Lt=(0,a.useRef)();function Xt(){try{return qt.current instanceof HTMLElement?qt.current:(0,h.ZP)(Lt.current)}catch(Vr){return null}}var Er=ke(Nt,yt,Xt,Gt),Pr=(0,l.Z)(Er,4),At=Pr[0],Kt=Pr[1],Bt=Pr[2],Jt=Pr[3],br=a.useRef(Jt);Jt&&(br.current=!0);var Xr=a.useCallback(function(Vr){qt.current=Vr,(0,u.mH)(bt,Vr)},[bt]),Wr,jn=(0,i.Z)((0,i.Z)({},mt),{},{visible:yt});if(!Pt)Wr=null;else if(At===H)Jt?Wr=Pt((0,i.Z)({},jn),Xr):!xe&&br.current&&Or?Wr=Pt((0,i.Z)((0,i.Z)({},jn),{},{className:Or}),Xr):dt||!xe&&!Or?Wr=Pt((0,i.Z)((0,i.Z)({},jn),{},{style:{display:"none"}}),Xr):Wr=null;else{var wn;Kt===q?wn="prepare":Ne(Kt)?wn="active":Kt===X&&(wn="start");var Yn=Zt(Be,"".concat(At,"-").concat(wn));Wr=Pt((0,i.Z)((0,i.Z)({},jn),{},{className:o()(Zt(Be,At),(0,r.Z)((0,r.Z)({},Yn,Yn&&wn),Be,typeof Be=="string")),style:Bt}),Xr)}if(a.isValidElement(Wr)&&(0,u.Yr)(Wr)){var St=(0,u.C4)(Wr);St||(Wr=a.cloneElement(Wr,{ref:Xr}))}return a.createElement(P,{ref:Lt},Wr)});return st.displayName="CSSMotion",st}var We=Ge(Dt),Xe=e(54476),ut=e(31226),pt="add",or="keep",tr="remove",Me="removed";function tt(pe){var Ct;return pe&&(0,c.Z)(pe)==="object"&&"key"in pe?Ct=pe:Ct={key:pe},(0,i.Z)((0,i.Z)({},Ct),{},{key:String(Ct.key)})}function Yt(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[];return pe.map(tt)}function Ot(){var pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],Ct=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],Ae=[],st=0,Gt=Ct.length,bt=Yt(pe),Te=Yt(Ct);bt.forEach(function(xe){for(var dt=!1,Pt=st;Pt<Gt;Pt+=1){var Be=Te[Pt];if(Be.key===xe.key){st<Pt&&(Ae=Ae.concat(Te.slice(st,Pt).map(function(Or){return(0,i.Z)((0,i.Z)({},Or),{},{status:pt})})),st=Pt),Ae.push((0,i.Z)((0,i.Z)({},Be),{},{status:or})),st+=1,dt=!0;break}}dt||Ae.push((0,i.Z)((0,i.Z)({},xe),{},{status:tr}))}),st<Gt&&(Ae=Ae.concat(Te.slice(st).map(function(xe){return(0,i.Z)((0,i.Z)({},xe),{},{status:pt})})));var yt={};Ae.forEach(function(xe){var dt=xe.key;yt[dt]=(yt[dt]||0)+1});var ze=Object.keys(yt).filter(function(xe){return yt[xe]>1});return ze.forEach(function(xe){Ae=Ae.filter(function(dt){var Pt=dt.key,Be=dt.status;return Pt!==xe||Be!==tr}),Ae.forEach(function(dt){dt.key===xe&&(dt.status=or)})}),Ae}var zt=["component","children","onVisibleChanged","onAllRemoved"],Ht=["status"],lr=["eventProps","visible","children","motionName","motionAppear","motionEnter","motionLeave","motionLeaveImmediately","motionDeadline","removeOnLeave","leavedClassName","onAppearPrepare","onAppearStart","onAppearActive","onAppearEnd","onEnterStart","onEnterActive","onEnterEnd","onLeaveStart","onLeaveActive","onLeaveEnd"];function Wt(pe){var Ct=arguments.length>1&&arguments[1]!==void 0?arguments[1]:We,Ae=function(st){(0,k.Z)(bt,st);var Gt=(0,R.Z)(bt);function bt(){var Te;(0,b.Z)(this,bt);for(var yt=arguments.length,ze=new Array(yt),xe=0;xe<yt;xe++)ze[xe]=arguments[xe];return Te=Gt.call.apply(Gt,[this].concat(ze)),(0,r.Z)((0,ut.Z)(Te),"state",{keyEntities:[]}),(0,r.Z)((0,ut.Z)(Te),"removeKey",function(dt){Te.setState(function(Pt){var Be=Pt.keyEntities.map(function(Or){return Or.key!==dt?Or:(0,i.Z)((0,i.Z)({},Or),{},{status:Me})});return{keyEntities:Be}},function(){var Pt=Te.state.keyEntities,Be=Pt.filter(function(Or){var mt=Or.status;return mt!==Me}).length;Be===0&&Te.props.onAllRemoved&&Te.props.onAllRemoved()})}),Te}return(0,S.Z)(bt,[{key:"render",value:function(){var yt=this,ze=this.state.keyEntities,xe=this.props,dt=xe.component,Pt=xe.children,Be=xe.onVisibleChanged,Or=xe.onAllRemoved,mt=(0,x.Z)(xe,zt),qr=dt||a.Fragment,an={};return lr.forEach(function(Nt){an[Nt]=mt[Nt],delete mt[Nt]}),delete mt.keys,a.createElement(qr,mt,ze.map(function(Nt,qt){var Lt=Nt.status,Xt=(0,x.Z)(Nt,Ht),Er=Lt===pt||Lt===or;return a.createElement(Ct,(0,Xe.Z)({},an,{key:Xt.key,visible:Er,eventProps:Xt,onVisibleChanged:function(At){Be==null||Be(At,{key:Xt.key}),At||yt.removeKey(Xt.key)}}),function(Pr,At){return Pt((0,i.Z)((0,i.Z)({},Pr),{},{index:qt}),At)})}))}}],[{key:"getDerivedStateFromProps",value:function(yt,ze){var xe=yt.keys,dt=ze.keyEntities,Pt=Yt(xe),Be=Ot(dt,Pt);return{keyEntities:Be.filter(function(Or){var mt=dt.find(function(qr){var an=qr.key;return Or.key===an});return!(mt&&mt.status===Me&&Or.status===tr)})}}}]),bt}(a.Component);return(0,r.Z)(Ae,"defaultProps",{component:"div"}),Ae}var Ce=Wt(Dt),ce=We},581:function(d,v,e){"use strict";e.d(v,{qX:function(){return b},JB:function(){return R},lm:function(){return ae}});var r=e(94480),i=e(42978),l=e(75931),c=e(59301),f=e(33885),o=e(4676),h=e(54476),u=e(92310),a=e.n(u),x=e(77900),p=e(20068),y=e(10228),m=c.forwardRef(function(ne,oe){var q=ne.prefixCls,X=ne.style,V=ne.className,se=ne.duration,ee=se===void 0?4.5:se,J=ne.eventKey,le=ne.content,z=ne.closable,j=ne.closeIcon,ie=j===void 0?"x":j,me=ne.props,Se=ne.onClick,Ie=ne.onNoticeClose,He=ne.times,je=c.useState(!1),Dt=(0,i.Z)(je,2),ht=Dt[0],It=Dt[1],Zt=function(){Ie(J)},Rt=function(gt){(gt.key==="Enter"||gt.code==="Enter"||gt.keyCode===y.Z.ENTER)&&Zt()};c.useEffect(function(){if(!ht&&ee>0){var $e=setTimeout(function(){Zt()},ee*1e3);return function(){clearTimeout($e)}}},[ee,ht,He]);var ar="".concat(q,"-notice");return c.createElement("div",(0,h.Z)({},me,{ref:oe,className:a()(ar,V,(0,p.Z)({},"".concat(ar,"-closable"),z)),style:X,onMouseEnter:function(){It(!0)},onMouseLeave:function(){It(!1)},onClick:Se}),c.createElement("div",{className:"".concat(ar,"-content")},le),z&&c.createElement("a",{tabIndex:0,className:"".concat(ar,"-close"),onKeyDown:Rt,onClick:function(gt){gt.preventDefault(),gt.stopPropagation(),Zt()}},ie))}),b=m,S=c.createContext({}),k=function(oe){var q=oe.children,X=oe.classNames;return c.createElement(S.Provider,{value:{classNames:X}},q)},R=k,A=function(oe){var q=oe.configList,X=oe.placement,V=oe.prefixCls,se=oe.className,ee=oe.style,J=oe.motion,le=oe.onAllNoticeRemoved,z=oe.onNoticeClose,j=(0,c.useContext)(S),ie=j.classNames,me=q.map(function(Ie){return{config:Ie,key:Ie.key}}),Se=typeof J=="function"?J(X):J;return c.createElement(x.CSSMotionList,(0,h.Z)({key:X,className:a()(V,"".concat(V,"-").concat(X),ie==null?void 0:ie.list,se),style:ee,keys:me,motionAppear:!0},Se,{onAllRemoved:function(){le(X)}}),function(Ie,He){var je=Ie.config,Dt=Ie.className,ht=Ie.style,It=je,Zt=It.key,Rt=It.times,ar=je,$e=ar.className,gt=ar.style;return c.createElement(b,(0,h.Z)({},je,{ref:He,prefixCls:V,className:a()(Dt,$e,ie==null?void 0:ie.notice),style:(0,f.Z)((0,f.Z)({},ht),gt),times:Rt,key:Zt,eventKey:Zt,onNoticeClose:z}))})},P=A,M=c.forwardRef(function(ne,oe){var q=ne.prefixCls,X=q===void 0?"rc-notification":q,V=ne.container,se=ne.motion,ee=ne.maxCount,J=ne.className,le=ne.style,z=ne.onAllRemoved,j=ne.renderNotifications,ie=c.useState([]),me=(0,i.Z)(ie,2),Se=me[0],Ie=me[1],He=function(gt){var Mt,et=Se.find(function(ft){return ft.key===gt});et==null||(Mt=et.onClose)===null||Mt===void 0||Mt.call(et),Ie(function(ft){return ft.filter(function(ot){return ot.key!==gt})})};c.useImperativeHandle(oe,function(){return{open:function(gt){Ie(function(Mt){var et=(0,r.Z)(Mt),ft=et.findIndex(function(Ne){return Ne.key===gt.key}),ot=(0,f.Z)({},gt);if(ft>=0){var Je;ot.times=(((Je=Mt[ft])===null||Je===void 0?void 0:Je.times)||0)+1,et[ft]=ot}else ot.times=0,et.push(ot);return ee>0&&et.length>ee&&(et=et.slice(-ee)),et})},close:function(gt){He(gt)},destroy:function(){Ie([])}}});var je=c.useState({}),Dt=(0,i.Z)(je,2),ht=Dt[0],It=Dt[1];c.useEffect(function(){var $e={};Se.forEach(function(gt){var Mt=gt.placement,et=Mt===void 0?"topRight":Mt;et&&($e[et]=$e[et]||[],$e[et].push(gt))}),Object.keys(ht).forEach(function(gt){$e[gt]=$e[gt]||[]}),It($e)},[Se]);var Zt=function(gt){It(function(Mt){var et=(0,f.Z)({},Mt),ft=et[gt]||[];return ft.length||delete et[gt],et})},Rt=c.useRef(!1);if(c.useEffect(function(){Object.keys(ht).length>0?Rt.current=!0:Rt.current&&(z==null||z(),Rt.current=!1)},[ht]),!V)return null;var ar=Object.keys(ht);return(0,o.createPortal)(c.createElement(c.Fragment,null,ar.map(function($e){var gt=ht[$e],Mt=c.createElement(P,{key:$e,configList:gt,placement:$e,prefixCls:X,className:J==null?void 0:J($e),style:le==null?void 0:le($e),motion:se,onNoticeClose:He,onAllNoticeRemoved:Zt});return j?j(Mt,{prefixCls:X,key:$e}):Mt})),V)}),B=M,N=["getContainer","motion","prefixCls","maxCount","className","style","onAllRemoved","renderNotifications"],K=function(){return document.body},H=0;function W(){for(var ne={},oe=arguments.length,q=new Array(oe),X=0;X<oe;X++)q[X]=arguments[X];return q.forEach(function(V){V&&Object.keys(V).forEach(function(se){var ee=V[se];ee!==void 0&&(ne[se]=ee)})}),ne}function ae(){var ne=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},oe=ne.getContainer,q=oe===void 0?K:oe,X=ne.motion,V=ne.prefixCls,se=ne.maxCount,ee=ne.className,J=ne.style,le=ne.onAllRemoved,z=ne.renderNotifications,j=(0,l.Z)(ne,N),ie=c.useState(),me=(0,i.Z)(ie,2),Se=me[0],Ie=me[1],He=c.useRef(),je=c.createElement(B,{container:Se,ref:He,prefixCls:V,motion:X,maxCount:se,className:ee,style:J,onAllRemoved:le,renderNotifications:z}),Dt=c.useState([]),ht=(0,i.Z)(Dt,2),It=ht[0],Zt=ht[1],Rt=c.useMemo(function(){return{open:function($e){var gt=W(j,$e);(gt.key===null||gt.key===void 0)&&(gt.key="rc-notification-".concat(H),H+=1),Zt(function(Mt){return[].concat((0,r.Z)(Mt),[{type:"open",config:gt}])})},close:function($e){Zt(function(gt){return[].concat((0,r.Z)(gt),[{type:"close",key:$e}])})},destroy:function(){Zt(function($e){return[].concat((0,r.Z)($e),[{type:"destroy"}])})}}},[]);return c.useEffect(function(){Ie(q())}),c.useEffect(function(){He.current&&It.length&&(It.forEach(function(ar){switch(ar.type){case"open":He.current.open(ar.config);break;case"close":He.current.close(ar.key);break;case"destroy":He.current.destroy();break}}),Zt(function(ar){return ar.filter(function($e){return!It.includes($e)})}))},[It]),[Rt,je]}},22075:function(d,v){"use strict";v.Z={items_per_page:"/ page",jump_to:"Go to",jump_to_confirm:"confirm",page:"Page",prev_page:"Previous Page",next_page:"Next Page",prev_5:"Previous 5 Pages",next_5:"Next 5 Pages",prev_3:"Previous 3 Pages",next_3:"Next 3 Pages",page_size:"Page Size"}},29301:function(d,v,e){"use strict";e.d(v,{Z:function(){return X}});var r=e(54476),i=e(59301),l=e(11592),c=e(48736),f=e(33885),o=e(76190),h=e(76846),u=e(8654),a=i.createContext(null);function x(V){var se=V.children,ee=V.onBatchResize,J=i.useRef(0),le=i.useRef([]),z=i.useContext(a),j=i.useCallback(function(ie,me,Se){J.current+=1;var Ie=J.current;le.current.push({size:ie,element:me,data:Se}),Promise.resolve().then(function(){Ie===J.current&&(ee==null||ee(le.current),le.current=[])}),z==null||z(ie,me,Se)},[ee,z]);return i.createElement(a.Provider,{value:j},se)}var p=e(76374),y=new Map;function m(V){V.forEach(function(se){var ee,J=se.target;(ee=y.get(J))===null||ee===void 0||ee.forEach(function(le){return le(J)})})}var b=new p.Z(m),S=null,k=null;function R(V,se){y.has(V)||(y.set(V,new Set),b.observe(V)),y.get(V).add(se)}function A(V,se){y.has(V)&&(y.get(V).delete(se),y.get(V).size||(b.unobserve(V),y.delete(V)))}var P=e(67732),M=e(83652),B=e(42403),N=e(158),K=function(V){(0,B.Z)(ee,V);var se=(0,N.Z)(ee);function ee(){return(0,P.Z)(this,ee),se.apply(this,arguments)}return(0,M.Z)(ee,[{key:"render",value:function(){return this.props.children}}]),ee}(i.Component);function H(V,se){var ee=V.children,J=V.disabled,le=i.useRef(null),z=i.useRef(null),j=i.useContext(a),ie=typeof ee=="function",me=ie?ee(le):ee,Se=i.useRef({width:-1,height:-1,offsetWidth:-1,offsetHeight:-1}),Ie=!ie&&i.isValidElement(me)&&(0,u.Yr)(me),He=Ie?(0,u.C4)(me):null,je=(0,u.x1)(He,le),Dt=function(){var Rt;return(0,h.ZP)(le.current)||(le.current&&(0,o.Z)(le.current)==="object"?(0,h.ZP)((Rt=le.current)===null||Rt===void 0?void 0:Rt.nativeElement):null)||(0,h.ZP)(z.current)};i.useImperativeHandle(se,function(){return Dt()});var ht=i.useRef(V);ht.current=V;var It=i.useCallback(function(Zt){var Rt=ht.current,ar=Rt.onResize,$e=Rt.data,gt=Zt.getBoundingClientRect(),Mt=gt.width,et=gt.height,ft=Zt.offsetWidth,ot=Zt.offsetHeight,Je=Math.floor(Mt),Ne=Math.floor(et);if(Se.current.width!==Je||Se.current.height!==Ne||Se.current.offsetWidth!==ft||Se.current.offsetHeight!==ot){var ye={width:Je,height:Ne,offsetWidth:ft,offsetHeight:ot};Se.current=ye;var ke=ft===Math.round(Mt)?Mt:ft,Ge=ot===Math.round(et)?et:ot,We=(0,f.Z)((0,f.Z)({},ye),{},{offsetWidth:ke,offsetHeight:Ge});j==null||j(We,Zt,$e),ar&&Promise.resolve().then(function(){ar(We,Zt)})}},[]);return i.useEffect(function(){var Zt=Dt();return Zt&&!J&&R(Zt,It),function(){return A(Zt,It)}},[le.current,J]),i.createElement(K,{ref:z},Ie?i.cloneElement(me,{ref:je}):me)}var W=i.forwardRef(H),ae=W,ne="rc-observer-key";function oe(V,se){var ee=V.children,J=typeof ee=="function"?[ee]:(0,l.Z)(ee);return J.map(function(le,z){var j=(le==null?void 0:le.key)||"".concat(ne,"-").concat(z);return i.createElement(ae,(0,r.Z)({},V,{key:j,ref:z===0?se:void 0}),le)})}var q=i.forwardRef(oe);q.Collection=x;var X=q},55477:function(d,v,e){"use strict";e.d(v,{G:function(){return m},Z:function(){return R}});var r=e(54476),i=e(33885),l=e(75931),c=e(35593),f=e(59301),o={shiftX:64,adjustY:1},h={adjustX:1,shiftY:!0},u=[0,0],a={left:{points:["cr","cl"],overflow:h,offset:[-4,0],targetOffset:u},right:{points:["cl","cr"],overflow:h,offset:[4,0],targetOffset:u},top:{points:["bc","tc"],overflow:o,offset:[0,-4],targetOffset:u},bottom:{points:["tc","bc"],overflow:o,offset:[0,4],targetOffset:u},topLeft:{points:["bl","tl"],overflow:o,offset:[0,-4],targetOffset:u},leftTop:{points:["tr","tl"],overflow:h,offset:[-4,0],targetOffset:u},topRight:{points:["br","tr"],overflow:o,offset:[0,-4],targetOffset:u},rightTop:{points:["tl","tr"],overflow:h,offset:[4,0],targetOffset:u},bottomRight:{points:["tr","br"],overflow:o,offset:[0,4],targetOffset:u},rightBottom:{points:["bl","br"],overflow:h,offset:[4,0],targetOffset:u},bottomLeft:{points:["tl","bl"],overflow:o,offset:[0,4],targetOffset:u},leftBottom:{points:["br","bl"],overflow:h,offset:[-4,0],targetOffset:u}},x=null,p=e(92310),y=e.n(p);function m(A){var P=A.children,M=A.prefixCls,B=A.id,N=A.overlayInnerStyle,K=A.className,H=A.style;return f.createElement("div",{className:y()("".concat(M,"-content"),K),style:H},f.createElement("div",{className:"".concat(M,"-inner"),id:B,role:"tooltip",style:N},typeof P=="function"?P():P))}var b=["overlayClassName","trigger","mouseEnterDelay","mouseLeaveDelay","overlayStyle","prefixCls","children","onVisibleChange","afterVisibleChange","transitionName","animation","motion","placement","align","destroyTooltipOnHide","defaultVisible","getTooltipContainer","overlayInnerStyle","arrowContent","overlay","id","showArrow"],S=function(P,M){var B=P.overlayClassName,N=P.trigger,K=N===void 0?["hover"]:N,H=P.mouseEnterDelay,W=H===void 0?0:H,ae=P.mouseLeaveDelay,ne=ae===void 0?.1:ae,oe=P.overlayStyle,q=P.prefixCls,X=q===void 0?"rc-tooltip":q,V=P.children,se=P.onVisibleChange,ee=P.afterVisibleChange,J=P.transitionName,le=P.animation,z=P.motion,j=P.placement,ie=j===void 0?"right":j,me=P.align,Se=me===void 0?{}:me,Ie=P.destroyTooltipOnHide,He=Ie===void 0?!1:Ie,je=P.defaultVisible,Dt=P.getTooltipContainer,ht=P.overlayInnerStyle,It=P.arrowContent,Zt=P.overlay,Rt=P.id,ar=P.showArrow,$e=ar===void 0?!0:ar,gt=(0,l.Z)(P,b),Mt=(0,f.useRef)(null);(0,f.useImperativeHandle)(M,function(){return Mt.current});var et=(0,i.Z)({},gt);"visible"in P&&(et.popupVisible=P.visible);var ft=function(){return f.createElement(m,{key:"content",prefixCls:X,id:Rt,overlayInnerStyle:ht},Zt)};return f.createElement(c.Z,(0,r.Z)({popupClassName:B,prefixCls:X,popup:ft,action:K,builtinPlacements:a,popupPlacement:ie,ref:Mt,popupAlign:Se,getPopupContainer:Dt,onPopupVisibleChange:se,afterPopupVisibleChange:ee,popupTransitionName:J,popupAnimation:le,popupMotion:z,defaultPopupVisible:je,autoDestroy:He,mouseLeaveDelay:ne,popupStyle:oe,mouseEnterDelay:W,arrow:$e},et),V)},k=(0,f.forwardRef)(S),R=k},11592:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(34678),i=e(59301);function l(c){var f=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},o=[];return i.Children.forEach(c,function(h){h==null&&!f.keepEmpty||(Array.isArray(h)?o=o.concat(l(h)):(0,r.Z)(h)&&h.props?o=o.concat(l(h.props.children,f)):o.push(h))}),o}},47273:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(){return!!(typeof window!="undefined"&&window.document&&window.document.createElement)}},48519:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){if(!i)return!1;if(i.contains)return i.contains(l);for(var c=l;c;){if(c===i)return!0;c=c.parentNode}return!1}},810:function(d,v,e){"use strict";e.d(v,{hq:function(){return R},jL:function(){return b}});var r=e(33885),i=e(47273),l=e(48519),c="data-rc-order",f="data-rc-priority",o="rc-util-key",h=new Map;function u(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},P=A.mark;return P?P.startsWith("data-")?P:"data-".concat(P):o}function a(A){if(A.attachTo)return A.attachTo;var P=document.querySelector("head");return P||document.body}function x(A){return A==="queue"?"prependQueue":A?"prepend":"append"}function p(A){return Array.from((h.get(A)||A).children).filter(function(P){return P.tagName==="STYLE"})}function y(A){var P=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(!(0,i.Z)())return null;var M=P.csp,B=P.prepend,N=P.priority,K=N===void 0?0:N,H=x(B),W=H==="prependQueue",ae=document.createElement("style");ae.setAttribute(c,H),W&&K&&ae.setAttribute(f,"".concat(K)),M!=null&&M.nonce&&(ae.nonce=M==null?void 0:M.nonce),ae.innerHTML=A;var ne=a(P),oe=ne.firstChild;if(B){if(W){var q=(P.styles||p(ne)).filter(function(X){if(!["prepend","prependQueue"].includes(X.getAttribute(c)))return!1;var V=Number(X.getAttribute(f)||0);return K>=V});if(q.length)return ne.insertBefore(ae,q[q.length-1].nextSibling),ae}ne.insertBefore(ae,oe)}else ne.appendChild(ae);return ae}function m(A){var P=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},M=a(P);return(P.styles||p(M)).find(function(B){return B.getAttribute(u(P))===A})}function b(A){var P=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},M=m(A,P);if(M){var B=a(P);B.removeChild(M)}}function S(A,P){var M=h.get(A);if(!M||!(0,l.Z)(document,M)){var B=y("",P),N=B.parentNode;h.set(A,N),A.removeChild(B)}}function k(){h.clear()}function R(A,P){var M=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},B=a(M),N=p(B),K=(0,r.Z)((0,r.Z)({},M),{},{styles:N});S(B,K);var H=m(P,K);if(H){var W,ae;if((W=K.csp)!==null&&W!==void 0&&W.nonce&&H.nonce!==((ae=K.csp)===null||ae===void 0?void 0:ae.nonce)){var ne;H.nonce=(ne=K.csp)===null||ne===void 0?void 0:ne.nonce}return H.innerHTML!==A&&(H.innerHTML=A),H}var oe=y(A,K);return oe.setAttribute(u(K),P),oe}},76846:function(d,v,e){"use strict";e.d(v,{Sh:function(){return c},ZP:function(){return o}});var r=e(76190),i=e(59301),l=e(4676);function c(h){return h instanceof HTMLElement||h instanceof SVGElement}function f(h){return h&&(0,r.Z)(h)==="object"&&c(h.nativeElement)?h.nativeElement:c(h)?h:null}function o(h){var u=f(h);if(u)return u;if(h instanceof i.Component){var a;return(a=l.findDOMNode)===null||a===void 0?void 0:a.call(l,h)}return null}},29194:function(d,v){"use strict";v.Z=function(e){if(!e)return!1;if(e instanceof Element){if(e.offsetParent)return!0;if(e.getBBox){var r=e.getBBox(),i=r.width,l=r.height;if(i||l)return!0}if(e.getBoundingClientRect){var c=e.getBoundingClientRect(),f=c.width,o=c.height;if(f||o)return!0}}return!1}},96452:function(d,v,e){"use strict";e.d(v,{A:function(){return l}});function r(c){var f;return c==null||(f=c.getRootNode)===null||f===void 0?void 0:f.call(c)}function i(c){return r(c)instanceof ShadowRoot}function l(c){return i(c)?r(c):null}},10228:function(d,v){"use strict";var e={MAC_ENTER:3,BACKSPACE:8,TAB:9,NUM_CENTER:12,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:44,INSERT:45,DELETE:46,ZERO:48,ONE:49,TWO:50,THREE:51,FOUR:52,FIVE:53,SIX:54,SEVEN:55,EIGHT:56,NINE:57,QUESTION_MARK:63,A:65,B:66,C:67,D:68,E:69,F:70,G:71,H:72,I:73,J:74,K:75,L:76,M:77,N:78,O:79,P:80,Q:81,R:82,S:83,T:84,U:85,V:86,W:87,X:88,Y:89,Z:90,META:91,WIN_KEY_RIGHT:92,CONTEXT_MENU:93,NUM_ZERO:96,NUM_ONE:97,NUM_TWO:98,NUM_THREE:99,NUM_FOUR:100,NUM_FIVE:101,NUM_SIX:102,NUM_SEVEN:103,NUM_EIGHT:104,NUM_NINE:105,NUM_MULTIPLY:106,NUM_PLUS:107,NUM_MINUS:109,NUM_PERIOD:110,NUM_DIVISION:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLOCK:144,SEMICOLON:186,DASH:189,EQUALS:187,COMMA:188,PERIOD:190,SLASH:191,APOSTROPHE:192,SINGLE_QUOTE:222,OPEN_SQUARE_BRACKET:219,BACKSLASH:220,CLOSE_SQUARE_BRACKET:221,WIN_KEY:224,MAC_FF_META:224,WIN_IME:229,isTextModifyingKeyEvent:function(i){var l=i.keyCode;if(i.altKey&&!i.ctrlKey||i.metaKey||l>=e.F1&&l<=e.F12)return!1;switch(l){case e.ALT:case e.CAPS_LOCK:case e.CONTEXT_MENU:case e.CTRL:case e.DOWN:case e.END:case e.ESC:case e.HOME:case e.INSERT:case e.LEFT:case e.MAC_FF_META:case e.META:case e.NUMLOCK:case e.NUM_CENTER:case e.PAGE_DOWN:case e.PAGE_UP:case e.PAUSE:case e.PRINT_SCREEN:case e.RIGHT:case e.SHIFT:case e.UP:case e.WIN_KEY:case e.WIN_KEY_RIGHT:return!1;default:return!0}},isCharacterKey:function(i){if(i>=e.ZERO&&i<=e.NINE||i>=e.NUM_ZERO&&i<=e.NUM_MULTIPLY||i>=e.A&&i<=e.Z||window.navigator.userAgent.indexOf("WebKit")!==-1&&i===0)return!0;switch(i){case e.SPACE:case e.QUESTION_MARK:case e.NUM_PLUS:case e.NUM_MINUS:case e.NUM_PERIOD:case e.NUM_DIVISION:case e.SEMICOLON:case e.DASH:case e.EQUALS:case e.COMMA:case e.PERIOD:case e.SLASH:case e.APOSTROPHE:case e.SINGLE_QUOTE:case e.OPEN_SQUARE_BRACKET:case e.BACKSLASH:case e.CLOSE_SQUARE_BRACKET:return!0;default:return!1}}};v.Z=e},34678:function(d,v,e){"use strict";e.d(v,{Z:function(){return f}});var r=e(76190),i=Symbol.for("react.element"),l=Symbol.for("react.transitional.element"),c=Symbol.for("react.fragment");function f(o){return o&&(0,r.Z)(o)==="object"&&(o.$$typeof===i||o.$$typeof===l)&&o.type===c}},1585:function(d,v,e){"use strict";var r;e.d(v,{s:function(){return A},v:function(){return K}});var i=e(75044),l=e(3202),c=e(76190),f=e(33885),o=e(4676),h=(0,f.Z)({},r||(r=e.t(o,2))),u=h.version,a=h.render,x=h.unmountComponentAtNode,p;try{var y=Number((u||"").split(".")[0]);y>=18&&(p=h.createRoot)}catch(W){}function m(W){var ae=h.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;ae&&(0,c.Z)(ae)==="object"&&(ae.usingClientEntryPoint=W)}var b="__rc_react_root__";function S(W,ae){m(!0);var ne=ae[b]||p(ae);m(!1),ne.render(W),ae[b]=ne}function k(W,ae){a==null||a(W,ae)}function R(W,ae){}function A(W,ae){if(p){S(W,ae);return}k(W,ae)}function P(W){return M.apply(this,arguments)}function M(){return M=(0,l.Z)((0,i.Z)().mark(function W(ae){return(0,i.Z)().wrap(function(oe){for(;;)switch(oe.prev=oe.next){case 0:return oe.abrupt("return",Promise.resolve().then(function(){var q;(q=ae[b])===null||q===void 0||q.unmount(),delete ae[b]}));case 1:case"end":return oe.stop()}},W)})),M.apply(this,arguments)}function B(W){x(W)}function N(W){}function K(W){return H.apply(this,arguments)}function H(){return H=(0,l.Z)((0,i.Z)().mark(function W(ae){return(0,i.Z)().wrap(function(oe){for(;;)switch(oe.prev=oe.next){case 0:if(p===void 0){oe.next=2;break}return oe.abrupt("return",P(ae));case 2:B(ae);case 3:case"end":return oe.stop()}},W)})),H.apply(this,arguments)}},75152:function(d,v,e){"use strict";e.d(v,{Z:function(){return c},o:function(){return f}});var r=e(810),i;function l(o){var h="rc-scrollbar-measure-".concat(Math.random().toString(36).substring(7)),u=document.createElement("div");u.id=h;var a=u.style;a.position="absolute",a.left="0",a.top="0",a.width="100px",a.height="100px",a.overflow="scroll";var x,p;if(o){var y=getComputedStyle(o);a.scrollbarColor=y.scrollbarColor,a.scrollbarWidth=y.scrollbarWidth;var m=getComputedStyle(o,"::-webkit-scrollbar"),b=parseInt(m.width,10),S=parseInt(m.height,10);try{var k=b?"width: ".concat(m.width,";"):"",R=S?"height: ".concat(m.height,";"):"";(0,r.hq)(`
#`.concat(h,`::-webkit-scrollbar {
`).concat(k,`
`).concat(R,`
}`),h)}catch(M){console.error(M),x=b,p=S}}document.body.appendChild(u);var A=o&&x&&!isNaN(x)?x:u.offsetWidth-u.clientWidth,P=o&&p&&!isNaN(p)?p:u.offsetHeight-u.clientHeight;return document.body.removeChild(u),(0,r.jL)(h),{width:A,height:P}}function c(o){return typeof document=="undefined"?0:((o||i===void 0)&&(i=l()),i.width)}function f(o){return typeof document=="undefined"||!o||!(o instanceof Element)?{width:0,height:0}:l(o)}},6089:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(59301);function i(l){var c=r.useRef();c.current=l;var f=r.useCallback(function(){for(var o,h=arguments.length,u=new Array(h),a=0;a<h;a++)u[a]=arguments[a];return(o=c.current)===null||o===void 0?void 0:o.call.apply(o,[c].concat(u))},[]);return f}},80402:function(d,v,e){"use strict";var r,i=e(42978),l=e(33885),c=e(59301);function f(){var a=(0,l.Z)({},r||(r=e.t(c,2)));return a.useId}var o=0;function h(){}var u=f();v.Z=u?function(x){var p=u();return x||p}:function(x){var p=c.useState("ssr-id"),y=(0,i.Z)(p,2),m=y[0],b=y[1];return c.useEffect(function(){var S=o;o+=1,b("rc_unique_".concat(S))},[]),x||m}},34280:function(d,v,e){"use strict";e.d(v,{o:function(){return f}});var r=e(59301),i=e(47273),l=(0,i.Z)()?r.useLayoutEffect:r.useEffect,c=function(h,u){var a=r.useRef(!0);l(function(){return h(a.current)},u),l(function(){return a.current=!1,function(){a.current=!0}},[])},f=function(h,u){c(function(a){if(!a)return h()},u)};v.Z=c},80547:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(59301);function i(l,c,f){var o=r.useRef({});return(!("value"in o.current)||f(o.current.condition,c))&&(o.current.value=l(),o.current.condition=c),o.current.value}},18929:function(d,v,e){"use strict";e.d(v,{Z:function(){return o}});var r=e(42978),i=e(6089),l=e(34280),c=e(41799);function f(h){return h!==void 0}function o(h,u){var a=u||{},x=a.defaultValue,p=a.value,y=a.onChange,m=a.postState,b=(0,c.Z)(function(){return f(p)?p:f(x)?typeof x=="function"?x():x:typeof h=="function"?h():h}),S=(0,r.Z)(b,2),k=S[0],R=S[1],A=p!==void 0?p:k,P=m?m(A):A,M=(0,i.Z)(y),B=(0,c.Z)([A]),N=(0,r.Z)(B,2),K=N[0],H=N[1];(0,l.o)(function(){var ae=K[0];k!==ae&&M(k,ae)},[K]),(0,l.o)(function(){f(p)||R(p)},[p]);var W=(0,i.Z)(function(ae,ne){R(ae,ne),H([A],ne)});return[P,W]}},41799:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(42978),i=e(59301);function l(c){var f=i.useRef(!1),o=i.useState(c),h=(0,r.Z)(o,2),u=h[0],a=h[1];i.useEffect(function(){return f.current=!1,function(){f.current=!0}},[]);function x(p,y){y&&f.current||a(p)}return[u,x]}},70425:function(d,v,e){"use strict";e.r(v),e.d(v,{get:function(){return c.Z},set:function(){return f.Z},supportNodeRef:function(){return l.t4},supportRef:function(){return l.Yr},useComposeRef:function(){return l.x1},useEvent:function(){return r.Z},useMergedState:function(){return i.Z},warning:function(){return o.ZP}});var r=e(6089),i=e(18929),l=e(8654),c=e(97938),f=e(24434),o=e(48736)},13697:function(d,v,e){"use strict";var r=e(76190),i=e(48736);function l(c,f){var o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,h=new Set;function u(a,x){var p=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,y=h.has(a);if((0,i.ZP)(!y,"Warning: There may be circular references"),y)return!1;if(a===x)return!0;if(o&&p>1)return!1;h.add(a);var m=p+1;if(Array.isArray(a)){if(!Array.isArray(x)||a.length!==x.length)return!1;for(var b=0;b<a.length;b++)if(!u(a[b],x[b],m))return!1;return!0}if(a&&x&&(0,r.Z)(a)==="object"&&(0,r.Z)(x)==="object"){var S=Object.keys(a);return S.length!==Object.keys(x).length?!1:S.every(function(k){return u(a[k],x[k],m)})}return!1}return u(c,f)}v.Z=l},49658:function(d,v){"use strict";v.Z=function(){if(typeof navigator=="undefined"||typeof window=="undefined")return!1;var e=navigator.userAgent||navigator.vendor||window.opera;return/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(e)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i.test(e==null?void 0:e.substr(0,4))}},2738:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){var c=Object.assign({},i);return Array.isArray(l)&&l.forEach(function(f){delete c[f]}),c}},26112:function(d,v,e){"use strict";e.d(v,{Z:function(){return u}});var r=e(33885),i=`accept acceptCharset accessKey action allowFullScreen allowTransparency
alt async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge
charSet checked classID className colSpan cols content contentEditable contextMenu
controls coords crossOrigin data dateTime default defer dir disabled download draggable
encType form formAction formEncType formMethod formNoValidate formTarget frameBorder
headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity
is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media
mediaGroup method min minLength multiple muted name noValidate nonce open
optimum pattern placeholder poster preload radioGroup readOnly rel required
reversed role rowSpan rows sandbox scope scoped scrolling seamless selected
shape size sizes span spellCheck src srcDoc srcLang srcSet start step style
summary tabIndex target title type useMap value width wmode wrap`,l=`onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown
onKeyPress onKeyUp onFocus onBlur onChange onInput onSubmit onClick onContextMenu onDoubleClick
onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown
onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel
onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough
onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata
onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onError`,c="".concat(i," ").concat(l).split(/[\s\n]+/),f="aria-",o="data-";function h(a,x){return a.indexOf(x)===0}function u(a){var x=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,p;x===!1?p={aria:!0,data:!0,attr:!0}:x===!0?p={aria:!0}:p=(0,r.Z)({},x);var y={};return Object.keys(a).forEach(function(m){(p.aria&&(m==="role"||h(m,f))||p.data&&h(m,o)||p.attr&&c.includes(m))&&(y[m]=a[m])}),y}},16089:function(d,v){"use strict";var e=function(h){return+setTimeout(h,16)},r=function(h){return clearTimeout(h)};typeof window!="undefined"&&"requestAnimationFrame"in window&&(e=function(h){return window.requestAnimationFrame(h)},r=function(h){return window.cancelAnimationFrame(h)});var i=0,l=new Map;function c(o){l.delete(o)}var f=function(h){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1;i+=1;var a=i;function x(p){if(p===0)c(a),h();else{var y=e(function(){x(p-1)});l.set(a,y)}}return x(u),a};f.cancel=function(o){var h=l.get(o);return c(o),r(h)},v.Z=f},8654:function(d,v,e){"use strict";e.d(v,{C4:function(){return m},Yr:function(){return x},mH:function(){return h},sQ:function(){return u},t4:function(){return y},x1:function(){return a}});var r=e(76190),i=e(59301),l=e(23265),c=e(80547),f=e(34678),o=Number(i.version.split(".")[0]),h=function(S,k){typeof S=="function"?S(k):(0,r.Z)(S)==="object"&&S&&"current"in S&&(S.current=k)},u=function(){for(var S=arguments.length,k=new Array(S),R=0;R<S;R++)k[R]=arguments[R];var A=k.filter(Boolean);return A.length<=1?A[0]:function(P){k.forEach(function(M){h(M,P)})}},a=function(){for(var S=arguments.length,k=new Array(S),R=0;R<S;R++)k[R]=arguments[R];return(0,c.Z)(function(){return u.apply(void 0,k)},k,function(A,P){return A.length!==P.length||A.every(function(M,B){return M!==P[B]})})},x=function(S){var k,R;if(!S)return!1;if(p(S)&&o>=19)return!0;var A=(0,l.isMemo)(S)?S.type.type:S.type;return!(typeof A=="function"&&!((k=A.prototype)!==null&&k!==void 0&&k.render)&&A.$$typeof!==l.ForwardRef||typeof S=="function"&&!((R=S.prototype)!==null&&R!==void 0&&R.render)&&S.$$typeof!==l.ForwardRef)};function p(b){return(0,i.isValidElement)(b)&&!(0,f.Z)(b)}var y=function(S){return p(S)&&x(S)},m=function(S){if(S&&p(S)){var k=S;return k.props.propertyIsEnumerable("ref")?k.props.ref:k.ref}return null}},97938:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){for(var c=i,f=0;f<l.length;f+=1){if(c==null)return;c=c[l[f]]}return c}},24434:function(d,v,e){"use strict";e.d(v,{T:function(){return p},Z:function(){return h}});var r=e(76190),i=e(33885),l=e(94480),c=e(66712),f=e(97938);function o(y,m,b,S){if(!m.length)return b;var k=(0,c.Z)(m),R=k[0],A=k.slice(1),P;return!y&&typeof R=="number"?P=[]:Array.isArray(y)?P=(0,l.Z)(y):P=(0,i.Z)({},y),S&&b===void 0&&A.length===1?delete P[R][A[0]]:P[R]=o(P[R],A,b,S),P}function h(y,m,b){var S=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;return m.length&&S&&b===void 0&&!(0,f.Z)(y,m.slice(0,-1))?y:o(y,m,b,S)}function u(y){return(0,r.Z)(y)==="object"&&y!==null&&Object.getPrototypeOf(y)===Object.prototype}function a(y){return Array.isArray(y)?[]:{}}var x=typeof Reflect=="undefined"?Object.keys:Reflect.ownKeys;function p(){for(var y=arguments.length,m=new Array(y),b=0;b<y;b++)m[b]=arguments[b];var S=a(m[0]);return m.forEach(function(k){function R(A,P){var M=new Set(P),B=(0,f.Z)(k,A),N=Array.isArray(B);if(N||u(B)){if(!M.has(B)){M.add(B);var K=(0,f.Z)(S,A);N?S=h(S,A,[]):(!K||(0,r.Z)(K)!=="object")&&(S=h(S,A,a(B))),x(B).forEach(function(H){R([].concat((0,l.Z)(A),[H]),M)})}}else S=h(S,A,B)}R([])}),S}},48736:function(d,v,e){"use strict";e.d(v,{ET:function(){return a},Kp:function(){return c}});var r={},i=[],l=function(p){i.push(p)};function c(x,p){if(0)var y}function f(x,p){if(0)var y}function o(){r={}}function h(x,p,y){!p&&!r[y]&&(x(!1,y),r[y]=!0)}function u(x,p){h(c,x,p)}function a(x,p){h(f,x,p)}u.preMessage=l,u.resetWarned=o,u.noteOnce=a,v.ZP=u},83145:function(d,v,e){"use strict";Object.defineProperty(v,"__esModule",{value:!0}),v.CopyToClipboard=void 0;var r=l(e(59301)),i=l(e(25769));function l(P){return P&&P.__esModule?P:{default:P}}function c(P){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?c=function(B){return typeof B}:c=function(B){return B&&typeof Symbol=="function"&&B.constructor===Symbol&&B!==Symbol.prototype?"symbol":typeof B},c(P)}function f(P,M){var B=Object.keys(P);if(Object.getOwnPropertySymbols){var N=Object.getOwnPropertySymbols(P);M&&(N=N.filter(function(K){return Object.getOwnPropertyDescriptor(P,K).enumerable})),B.push.apply(B,N)}return B}function o(P){for(var M=1;M<arguments.length;M++){var B=arguments[M]!=null?arguments[M]:{};M%2?f(B,!0).forEach(function(N){R(P,N,B[N])}):Object.getOwnPropertyDescriptors?Object.defineProperties(P,Object.getOwnPropertyDescriptors(B)):f(B).forEach(function(N){Object.defineProperty(P,N,Object.getOwnPropertyDescriptor(B,N))})}return P}function h(P,M){if(P==null)return{};var B=u(P,M),N,K;if(Object.getOwnPropertySymbols){var H=Object.getOwnPropertySymbols(P);for(K=0;K<H.length;K++)N=H[K],!(M.indexOf(N)>=0)&&Object.prototype.propertyIsEnumerable.call(P,N)&&(B[N]=P[N])}return B}function u(P,M){if(P==null)return{};var B={},N=Object.keys(P),K,H;for(H=0;H<N.length;H++)K=N[H],!(M.indexOf(K)>=0)&&(B[K]=P[K]);return B}function a(P,M){if(!(P instanceof M))throw new TypeError("Cannot call a class as a function")}function x(P,M){for(var B=0;B<M.length;B++){var N=M[B];N.enumerable=N.enumerable||!1,N.configurable=!0,"value"in N&&(N.writable=!0),Object.defineProperty(P,N.key,N)}}function p(P,M,B){return M&&x(P.prototype,M),B&&x(P,B),P}function y(P,M){return M&&(c(M)==="object"||typeof M=="function")?M:b(P)}function m(P){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(B){return B.__proto__||Object.getPrototypeOf(B)},m(P)}function b(P){if(P===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return P}function S(P,M){if(typeof M!="function"&&M!==null)throw new TypeError("Super expression must either be null or a function");P.prototype=Object.create(M&&M.prototype,{constructor:{value:P,writable:!0,configurable:!0}}),M&&k(P,M)}function k(P,M){return k=Object.setPrototypeOf||function(N,K){return N.__proto__=K,N},k(P,M)}function R(P,M,B){return M in P?Object.defineProperty(P,M,{value:B,enumerable:!0,configurable:!0,writable:!0}):P[M]=B,P}var A=function(P){S(M,P);function M(){var B,N;a(this,M);for(var K=arguments.length,H=new Array(K),W=0;W<K;W++)H[W]=arguments[W];return N=y(this,(B=m(M)).call.apply(B,[this].concat(H))),R(b(N),"onClick",function(ae){var ne=N.props,oe=ne.text,q=ne.onCopy,X=ne.children,V=ne.options,se=r.default.Children.only(X),ee=(0,i.default)(oe,V);q&&q(oe,ee),se&&se.props&&typeof se.props.onClick=="function"&&se.props.onClick(ae)}),N}return p(M,[{key:"render",value:function(){var N=this.props,K=N.text,H=N.onCopy,W=N.options,ae=N.children,ne=h(N,["text","onCopy","options","children"]),oe=r.default.Children.only(ae);return r.default.cloneElement(oe,o({},ne,{onClick:this.onClick}))}}]),M}(r.default.PureComponent);v.CopyToClipboard=A,R(A,"defaultProps",{onCopy:void 0,options:void 0})},56102:function(d,v,e){"use strict";var r=e(83145),i=r.CopyToClipboard;i.CopyToClipboard=i,d.exports=i},23675:function(d,v,e){"use strict";var r=e(59301),i=e(84126),l=e(43014);function c(g){for(var T="https://reactjs.org/docs/error-decoder.html?invariant="+g,$=1;$<arguments.length;$++)T+="&args[]="+encodeURIComponent(arguments[$]);return"Minified React error #"+g+"; visit "+T+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!r)throw Error(c(227));var f=new Set,o={};function h(g,T){u(g,T),u(g+"Capture",T)}function u(g,T){for(o[g]=T,g=0;g<T.length;g++)f.add(T[g])}var a=!(typeof window=="undefined"||typeof window.document=="undefined"||typeof window.document.createElement=="undefined"),x=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p=Object.prototype.hasOwnProperty,y={},m={};function b(g){return p.call(m,g)?!0:p.call(y,g)?!1:x.test(g)?m[g]=!0:(y[g]=!0,!1)}function S(g,T,$,ve){if($!==null&&$.type===0)return!1;switch(typeof T){case"function":case"symbol":return!0;case"boolean":return ve?!1:$!==null?!$.acceptsBooleans:(g=g.toLowerCase().slice(0,5),g!=="data-"&&g!=="aria-");default:return!1}}function k(g,T,$,ve){if(T===null||typeof T=="undefined"||S(g,T,$,ve))return!0;if(ve)return!1;if($!==null)switch($.type){case 3:return!T;case 4:return T===!1;case 5:return isNaN(T);case 6:return isNaN(T)||1>T}return!1}function R(g,T,$,ve,De,rt,Ut){this.acceptsBooleans=T===2||T===3||T===4,this.attributeName=ve,this.attributeNamespace=De,this.mustUseProperty=$,this.propertyName=g,this.type=T,this.sanitizeURL=rt,this.removeEmptyString=Ut}var A={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(g){A[g]=new R(g,0,!1,g,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(g){var T=g[0];A[T]=new R(T,1,!1,g[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(g){A[g]=new R(g,2,!1,g.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(g){A[g]=new R(g,2,!1,g,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(g){A[g]=new R(g,3,!1,g.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(g){A[g]=new R(g,3,!0,g,null,!1,!1)}),["capture","download"].forEach(function(g){A[g]=new R(g,4,!1,g,null,!1,!1)}),["cols","rows","size","span"].forEach(function(g){A[g]=new R(g,6,!1,g,null,!1,!1)}),["rowSpan","start"].forEach(function(g){A[g]=new R(g,5,!1,g.toLowerCase(),null,!1,!1)});var P=/[\-:]([a-z])/g;function M(g){return g[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(g){var T=g.replace(P,M);A[T]=new R(T,1,!1,g,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(g){var T=g.replace(P,M);A[T]=new R(T,1,!1,g,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(g){var T=g.replace(P,M);A[T]=new R(T,1,!1,g,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(g){A[g]=new R(g,1,!1,g.toLowerCase(),null,!1,!1)}),A.xlinkHref=new R("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(g){A[g]=new R(g,1,!1,g.toLowerCase(),null,!0,!0)});function B(g,T,$,ve){var De=A.hasOwnProperty(T)?A[T]:null,rt=De!==null?De.type===0:ve?!1:!(!(2<T.length)||T[0]!=="o"&&T[0]!=="O"||T[1]!=="n"&&T[1]!=="N");rt||(k(T,$,De,ve)&&($=null),ve||De===null?b(T)&&($===null?g.removeAttribute(T):g.setAttribute(T,""+$)):De.mustUseProperty?g[De.propertyName]=$===null?De.type===3?!1:"":$:(T=De.attributeName,ve=De.attributeNamespace,$===null?g.removeAttribute(T):(De=De.type,$=De===3||De===4&&$===!0?"":""+$,ve?g.setAttributeNS(ve,T,$):g.setAttribute(T,$))))}var N=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,K=60103,H=60106,W=60107,ae=60108,ne=60114,oe=60109,q=60110,X=60112,V=60113,se=60120,ee=60115,J=60116,le=60121,z=60128,j=60129,ie=60130,me=60131;if(typeof Symbol=="function"&&Symbol.for){var Se=Symbol.for;K=Se("react.element"),H=Se("react.portal"),W=Se("react.fragment"),ae=Se("react.strict_mode"),ne=Se("react.profiler"),oe=Se("react.provider"),q=Se("react.context"),X=Se("react.forward_ref"),V=Se("react.suspense"),se=Se("react.suspense_list"),ee=Se("react.memo"),J=Se("react.lazy"),le=Se("react.block"),Se("react.scope"),z=Se("react.opaque.id"),j=Se("react.debug_trace_mode"),ie=Se("react.offscreen"),me=Se("react.legacy_hidden")}var Ie=typeof Symbol=="function"&&Symbol.iterator;function He(g){return g===null||typeof g!="object"?null:(g=Ie&&g[Ie]||g["@@iterator"],typeof g=="function"?g:null)}var je;function Dt(g){if(je===void 0)try{throw Error()}catch($){var T=$.stack.trim().match(/\n( *(at )?)/);je=T&&T[1]||""}return`
`+je+g}var ht=!1;function It(g,T){if(!g||ht)return"";ht=!0;var $=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(T)if(T=function(){throw Error()},Object.defineProperty(T.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(T,[])}catch(Dr){var ve=Dr}Reflect.construct(g,[],T)}else{try{T.call()}catch(Dr){ve=Dr}g.call(T.prototype)}else{try{throw Error()}catch(Dr){ve=Dr}g()}}catch(Dr){if(Dr&&ve&&typeof Dr.stack=="string"){for(var De=Dr.stack.split(`
`),rt=ve.stack.split(`
`),Ut=De.length-1,fr=rt.length-1;1<=Ut&&0<=fr&&De[Ut]!==rt[fr];)fr--;for(;1<=Ut&&0<=fr;Ut--,fr--)if(De[Ut]!==rt[fr]){if(Ut!==1||fr!==1)do if(Ut--,fr--,0>fr||De[Ut]!==rt[fr])return`
`+De[Ut].replace(" at new "," at ");while(1<=Ut&&0<=fr);break}}}finally{ht=!1,Error.prepareStackTrace=$}return(g=g?g.displayName||g.name:"")?Dt(g):""}function Zt(g){switch(g.tag){case 5:return Dt(g.type);case 16:return Dt("Lazy");case 13:return Dt("Suspense");case 19:return Dt("SuspenseList");case 0:case 2:case 15:return g=It(g.type,!1),g;case 11:return g=It(g.type.render,!1),g;case 22:return g=It(g.type._render,!1),g;case 1:return g=It(g.type,!0),g;default:return""}}function Rt(g){if(g==null)return null;if(typeof g=="function")return g.displayName||g.name||null;if(typeof g=="string")return g;switch(g){case W:return"Fragment";case H:return"Portal";case ne:return"Profiler";case ae:return"StrictMode";case V:return"Suspense";case se:return"SuspenseList"}if(typeof g=="object")switch(g.$$typeof){case q:return(g.displayName||"Context")+".Consumer";case oe:return(g._context.displayName||"Context")+".Provider";case X:var T=g.render;return T=T.displayName||T.name||"",g.displayName||(T!==""?"ForwardRef("+T+")":"ForwardRef");case ee:return Rt(g.type);case le:return Rt(g._render);case J:T=g._payload,g=g._init;try{return Rt(g(T))}catch($){}}return null}function ar(g){switch(typeof g){case"boolean":case"number":case"object":case"string":case"undefined":return g;default:return""}}function $e(g){var T=g.type;return(g=g.nodeName)&&g.toLowerCase()==="input"&&(T==="checkbox"||T==="radio")}function gt(g){var T=$e(g)?"checked":"value",$=Object.getOwnPropertyDescriptor(g.constructor.prototype,T),ve=""+g[T];if(!g.hasOwnProperty(T)&&typeof $!="undefined"&&typeof $.get=="function"&&typeof $.set=="function"){var De=$.get,rt=$.set;return Object.defineProperty(g,T,{configurable:!0,get:function(){return De.call(this)},set:function(Ut){ve=""+Ut,rt.call(this,Ut)}}),Object.defineProperty(g,T,{enumerable:$.enumerable}),{getValue:function(){return ve},setValue:function(Ut){ve=""+Ut},stopTracking:function(){g._valueTracker=null,delete g[T]}}}}function Mt(g){g._valueTracker||(g._valueTracker=gt(g))}function et(g){if(!g)return!1;var T=g._valueTracker;if(!T)return!0;var $=T.getValue(),ve="";return g&&(ve=$e(g)?g.checked?"true":"false":g.value),g=ve,g!==$?(T.setValue(g),!0):!1}function ft(g){if(g=g||(typeof document!="undefined"?document:void 0),typeof g=="undefined")return null;try{return g.activeElement||g.body}catch(T){return g.body}}function ot(g,T){var $=T.checked;return i({},T,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:$!=null?$:g._wrapperState.initialChecked})}function Je(g,T){var $=T.defaultValue==null?"":T.defaultValue,ve=T.checked!=null?T.checked:T.defaultChecked;$=ar(T.value!=null?T.value:$),g._wrapperState={initialChecked:ve,initialValue:$,controlled:T.type==="checkbox"||T.type==="radio"?T.checked!=null:T.value!=null}}function Ne(g,T){T=T.checked,T!=null&&B(g,"checked",T,!1)}function ye(g,T){Ne(g,T);var $=ar(T.value),ve=T.type;if($!=null)ve==="number"?($===0&&g.value===""||g.value!=$)&&(g.value=""+$):g.value!==""+$&&(g.value=""+$);else if(ve==="submit"||ve==="reset"){g.removeAttribute("value");return}T.hasOwnProperty("value")?Ge(g,T.type,$):T.hasOwnProperty("defaultValue")&&Ge(g,T.type,ar(T.defaultValue)),T.checked==null&&T.defaultChecked!=null&&(g.defaultChecked=!!T.defaultChecked)}function ke(g,T,$){if(T.hasOwnProperty("value")||T.hasOwnProperty("defaultValue")){var ve=T.type;if(!(ve!=="submit"&&ve!=="reset"||T.value!==void 0&&T.value!==null))return;T=""+g._wrapperState.initialValue,$||T===g.value||(g.value=T),g.defaultValue=T}$=g.name,$!==""&&(g.name=""),g.defaultChecked=!!g._wrapperState.initialChecked,$!==""&&(g.name=$)}function Ge(g,T,$){(T!=="number"||ft(g.ownerDocument)!==g)&&($==null?g.defaultValue=""+g._wrapperState.initialValue:g.defaultValue!==""+$&&(g.defaultValue=""+$))}function We(g){var T="";return r.Children.forEach(g,function($){$!=null&&(T+=$)}),T}function Xe(g,T){return g=i({children:void 0},T),(T=We(T.children))&&(g.children=T),g}function ut(g,T,$,ve){if(g=g.options,T){T={};for(var De=0;De<$.length;De++)T["$"+$[De]]=!0;for($=0;$<g.length;$++)De=T.hasOwnProperty("$"+g[$].value),g[$].selected!==De&&(g[$].selected=De),De&&ve&&(g[$].defaultSelected=!0)}else{for($=""+ar($),T=null,De=0;De<g.length;De++){if(g[De].value===$){g[De].selected=!0,ve&&(g[De].defaultSelected=!0);return}T!==null||g[De].disabled||(T=g[De])}T!==null&&(T.selected=!0)}}function pt(g,T){if(T.dangerouslySetInnerHTML!=null)throw Error(c(91));return i({},T,{value:void 0,defaultValue:void 0,children:""+g._wrapperState.initialValue})}function or(g,T){var $=T.value;if($==null){if($=T.children,T=T.defaultValue,$!=null){if(T!=null)throw Error(c(92));if(Array.isArray($)){if(!(1>=$.length))throw Error(c(93));$=$[0]}T=$}T==null&&(T=""),$=T}g._wrapperState={initialValue:ar($)}}function tr(g,T){var $=ar(T.value),ve=ar(T.defaultValue);$!=null&&($=""+$,$!==g.value&&(g.value=$),T.defaultValue==null&&g.defaultValue!==$&&(g.defaultValue=$)),ve!=null&&(g.defaultValue=""+ve)}function Me(g){var T=g.textContent;T===g._wrapperState.initialValue&&T!==""&&T!==null&&(g.value=T)}var tt={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function Yt(g){switch(g){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ot(g,T){return g==null||g==="http://www.w3.org/1999/xhtml"?Yt(T):g==="http://www.w3.org/2000/svg"&&T==="foreignObject"?"http://www.w3.org/1999/xhtml":g}var zt,Ht=function(g){return typeof MSApp!="undefined"&&MSApp.execUnsafeLocalFunction?function(T,$,ve,De){MSApp.execUnsafeLocalFunction(function(){return g(T,$,ve,De)})}:g}(function(g,T){if(g.namespaceURI!==tt.svg||"innerHTML"in g)g.innerHTML=T;else{for(zt=zt||document.createElement("div"),zt.innerHTML="<svg>"+T.valueOf().toString()+"</svg>",T=zt.firstChild;g.firstChild;)g.removeChild(g.firstChild);for(;T.firstChild;)g.appendChild(T.firstChild)}});function lr(g,T){if(T){var $=g.firstChild;if($&&$===g.lastChild&&$.nodeType===3){$.nodeValue=T;return}}g.textContent=T}var Wt={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Ce=["Webkit","ms","Moz","O"];Object.keys(Wt).forEach(function(g){Ce.forEach(function(T){T=T+g.charAt(0).toUpperCase()+g.substring(1),Wt[T]=Wt[g]})});function ce(g,T,$){return T==null||typeof T=="boolean"||T===""?"":$||typeof T!="number"||T===0||Wt.hasOwnProperty(g)&&Wt[g]?(""+T).trim():T+"px"}function pe(g,T){g=g.style;for(var $ in T)if(T.hasOwnProperty($)){var ve=$.indexOf("--")===0,De=ce($,T[$],ve);$==="float"&&($="cssFloat"),ve?g.setProperty($,De):g[$]=De}}var Ct=i({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Ae(g,T){if(T){if(Ct[g]&&(T.children!=null||T.dangerouslySetInnerHTML!=null))throw Error(c(137,g));if(T.dangerouslySetInnerHTML!=null){if(T.children!=null)throw Error(c(60));if(!(typeof T.dangerouslySetInnerHTML=="object"&&"__html"in T.dangerouslySetInnerHTML))throw Error(c(61))}if(T.style!=null&&typeof T.style!="object")throw Error(c(62))}}function st(g,T){if(g.indexOf("-")===-1)return typeof T.is=="string";switch(g){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Gt(g){return g=g.target||g.srcElement||window,g.correspondingUseElement&&(g=g.correspondingUseElement),g.nodeType===3?g.parentNode:g}var bt=null,Te=null,yt=null;function ze(g){if(g=Ls(g)){if(typeof bt!="function")throw Error(c(280));var T=g.stateNode;T&&(T=xs(T),bt(g.stateNode,g.type,T))}}function xe(g){Te?yt?yt.push(g):yt=[g]:Te=g}function dt(){if(Te){var g=Te,T=yt;if(yt=Te=null,ze(g),T)for(g=0;g<T.length;g++)ze(T[g])}}function Pt(g,T){return g(T)}function Be(g,T,$,ve,De){return g(T,$,ve,De)}function Or(){}var mt=Pt,qr=!1,an=!1;function Nt(){(Te!==null||yt!==null)&&(Or(),dt())}function qt(g,T,$){if(an)return g(T,$);an=!0;try{return mt(g,T,$)}finally{an=!1,Nt()}}function Lt(g,T){var $=g.stateNode;if($===null)return null;var ve=xs($);if(ve===null)return null;$=ve[T];e:switch(T){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(ve=!ve.disabled)||(g=g.type,ve=!(g==="button"||g==="input"||g==="select"||g==="textarea")),g=!ve;break e;default:g=!1}if(g)return null;if($&&typeof $!="function")throw Error(c(231,T,typeof $));return $}var Xt=!1;if(a)try{var Er={};Object.defineProperty(Er,"passive",{get:function(){Xt=!0}}),window.addEventListener("test",Er,Er),window.removeEventListener("test",Er,Er)}catch(g){Xt=!1}function Pr(g,T,$,ve,De,rt,Ut,fr,Dr){var vn=Array.prototype.slice.call(arguments,3);try{T.apply($,vn)}catch(Pi){this.onError(Pi)}}var At=!1,Kt=null,Bt=!1,Jt=null,br={onError:function(g){At=!0,Kt=g}};function Xr(g,T,$,ve,De,rt,Ut,fr,Dr){At=!1,Kt=null,Pr.apply(br,arguments)}function Wr(g,T,$,ve,De,rt,Ut,fr,Dr){if(Xr.apply(this,arguments),At){if(At){var vn=Kt;At=!1,Kt=null}else throw Error(c(198));Bt||(Bt=!0,Jt=vn)}}function jn(g){var T=g,$=g;if(g.alternate)for(;T.return;)T=T.return;else{g=T;do T=g,T.flags&1026&&($=T.return),g=T.return;while(g)}return T.tag===3?$:null}function wn(g){if(g.tag===13){var T=g.memoizedState;if(T===null&&(g=g.alternate,g!==null&&(T=g.memoizedState)),T!==null)return T.dehydrated}return null}function Yn(g){if(jn(g)!==g)throw Error(c(188))}function St(g){var T=g.alternate;if(!T){if(T=jn(g),T===null)throw Error(c(188));return T!==g?null:g}for(var $=g,ve=T;;){var De=$.return;if(De===null)break;var rt=De.alternate;if(rt===null){if(ve=De.return,ve!==null){$=ve;continue}break}if(De.child===rt.child){for(rt=De.child;rt;){if(rt===$)return Yn(De),g;if(rt===ve)return Yn(De),T;rt=rt.sibling}throw Error(c(188))}if($.return!==ve.return)$=De,ve=rt;else{for(var Ut=!1,fr=De.child;fr;){if(fr===$){Ut=!0,$=De,ve=rt;break}if(fr===ve){Ut=!0,ve=De,$=rt;break}fr=fr.sibling}if(!Ut){for(fr=rt.child;fr;){if(fr===$){Ut=!0,$=rt,ve=De;break}if(fr===ve){Ut=!0,ve=rt,$=De;break}fr=fr.sibling}if(!Ut)throw Error(c(189))}}if($.alternate!==ve)throw Error(c(190))}if($.tag!==3)throw Error(c(188));return $.stateNode.current===$?g:T}function Vr(g){if(g=St(g),!g)return null;for(var T=g;;){if(T.tag===5||T.tag===6)return T;if(T.child)T.child.return=T,T=T.child;else{if(T===g)break;for(;!T.sibling;){if(!T.return||T.return===g)return null;T=T.return}T.sibling.return=T.return,T=T.sibling}}return null}function ii(g,T){for(var $=g.alternate;T!==null;){if(T===g||T===$)return!0;T=T.return}return!1}var Bi,Gn,ci,Oi,$i=!1,Ai=[],ji=null,ha=null,ea=null,Yi=new Map,mi=new Map,zi=[],Ca="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function xt(g,T,$,ve,De){return{blockedOn:g,domEventName:T,eventSystemFlags:$|16,nativeEvent:De,targetContainers:[ve]}}function xa(g,T){switch(g){case"focusin":case"focusout":ji=null;break;case"dragenter":case"dragleave":ha=null;break;case"mouseover":case"mouseout":ea=null;break;case"pointerover":case"pointerout":Yi.delete(T.pointerId);break;case"gotpointercapture":case"lostpointercapture":mi.delete(T.pointerId)}}function Zi(g,T,$,ve,De,rt){return g===null||g.nativeEvent!==rt?(g=xt(T,$,ve,De,rt),T!==null&&(T=Ls(T),T!==null&&Gn(T)),g):(g.eventSystemFlags|=ve,T=g.targetContainers,De!==null&&T.indexOf(De)===-1&&T.push(De),g)}function _i(g,T,$,ve,De){switch(T){case"focusin":return ji=Zi(ji,g,T,$,ve,De),!0;case"dragenter":return ha=Zi(ha,g,T,$,ve,De),!0;case"mouseover":return ea=Zi(ea,g,T,$,ve,De),!0;case"pointerover":var rt=De.pointerId;return Yi.set(rt,Zi(Yi.get(rt)||null,g,T,$,ve,De)),!0;case"gotpointercapture":return rt=De.pointerId,mi.set(rt,Zi(mi.get(rt)||null,g,T,$,ve,De)),!0}return!1}function Da(g){var T=rs(g.target);if(T!==null){var $=jn(T);if($!==null){if(T=$.tag,T===13){if(T=wn($),T!==null){g.blockedOn=T,Oi(g.lanePriority,function(){l.unstable_runWithPriority(g.priority,function(){ci($)})});return}}else if(T===3&&$.stateNode.hydrate){g.blockedOn=$.tag===3?$.stateNode.containerInfo:null;return}}}g.blockedOn=null}function Hi(g){if(g.blockedOn!==null)return!1;for(var T=g.targetContainers;0<T.length;){var $=oo(g.domEventName,g.eventSystemFlags,T[0],g.nativeEvent);if($!==null)return T=Ls($),T!==null&&Gn(T),g.blockedOn=$,!1;T.shift()}return!0}function ei(g,T,$){Hi(g)&&$.delete(T)}function $n(){for($i=!1;0<Ai.length;){var g=Ai[0];if(g.blockedOn!==null){g=Ls(g.blockedOn),g!==null&&Bi(g);break}for(var T=g.targetContainers;0<T.length;){var $=oo(g.domEventName,g.eventSystemFlags,T[0],g.nativeEvent);if($!==null){g.blockedOn=$;break}T.shift()}g.blockedOn===null&&Ai.shift()}ji!==null&&Hi(ji)&&(ji=null),ha!==null&&Hi(ha)&&(ha=null),ea!==null&&Hi(ea)&&(ea=null),Yi.forEach(ei),mi.forEach(ei)}function Ee(g,T){g.blockedOn===T&&(g.blockedOn=null,$i||($i=!0,l.unstable_scheduleCallback(l.unstable_NormalPriority,$n)))}function nt(g){function T(De){return Ee(De,g)}if(0<Ai.length){Ee(Ai[0],g);for(var $=1;$<Ai.length;$++){var ve=Ai[$];ve.blockedOn===g&&(ve.blockedOn=null)}}for(ji!==null&&Ee(ji,g),ha!==null&&Ee(ha,g),ea!==null&&Ee(ea,g),Yi.forEach(T),mi.forEach(T),$=0;$<zi.length;$++)ve=zi[$],ve.blockedOn===g&&(ve.blockedOn=null);for(;0<zi.length&&($=zi[0],$.blockedOn===null);)Da($),$.blockedOn===null&&zi.shift()}function qe(g,T){var $={};return $[g.toLowerCase()]=T.toLowerCase(),$["Webkit"+g]="webkit"+T,$["Moz"+g]="moz"+T,$}var Tt={animationend:qe("Animation","AnimationEnd"),animationiteration:qe("Animation","AnimationIteration"),animationstart:qe("Animation","AnimationStart"),transitionend:qe("Transition","TransitionEnd")},lt={},hr={};a&&(hr=document.createElement("div").style,"AnimationEvent"in window||(delete Tt.animationend.animation,delete Tt.animationiteration.animation,delete Tt.animationstart.animation),"TransitionEvent"in window||delete Tt.transitionend.transition);function pr(g){if(lt[g])return lt[g];if(!Tt[g])return g;var T=Tt[g],$;for($ in T)if(T.hasOwnProperty($)&&$ in hr)return lt[g]=T[$];return g}var Cr=pr("animationend"),$r=pr("animationiteration"),en=pr("animationstart"),Nr=pr("transitionend"),An=new Map,_r=new Map,Fn=["abort","abort",Cr,"animationEnd",$r,"animationIteration",en,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Nr,"transitionEnd","waiting","waiting"];function Qn(g,T){for(var $=0;$<g.length;$+=2){var ve=g[$],De=g[$+1];De="on"+(De[0].toUpperCase()+De.slice(1)),_r.set(ve,T),An.set(ve,De),h(De,[ve])}}var Ke=l.unstable_now;Ke();var ct=8;function ge(g){if(1&g)return ct=15,1;if(2&g)return ct=14,2;if(4&g)return ct=13,4;var T=24&g;return T!==0?(ct=12,T):g&32?(ct=11,32):(T=192&g,T!==0?(ct=10,T):g&256?(ct=9,256):(T=3584&g,T!==0?(ct=8,T):g&4096?(ct=7,4096):(T=4186112&g,T!==0?(ct=6,T):(T=62914560&g,T!==0?(ct=5,T):g&67108864?(ct=4,67108864):g&134217728?(ct=3,134217728):(T=805306368&g,T!==0?(ct=2,T):1073741824&g?(ct=1,1073741824):(ct=8,g))))))}function sr(g){switch(g){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}function nr(g){switch(g){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(c(358,g))}}function kr(g,T){var $=g.pendingLanes;if($===0)return ct=0;var ve=0,De=0,rt=g.expiredLanes,Ut=g.suspendedLanes,fr=g.pingedLanes;if(rt!==0)ve=rt,De=ct=15;else if(rt=$&134217727,rt!==0){var Dr=rt&~Ut;Dr!==0?(ve=ge(Dr),De=ct):(fr&=rt,fr!==0&&(ve=ge(fr),De=ct))}else rt=$&~Ut,rt!==0?(ve=ge(rt),De=ct):fr!==0&&(ve=ge(fr),De=ct);if(ve===0)return 0;if(ve=31-yn(ve),ve=$&((0>ve?0:1<<ve)<<1)-1,T!==0&&T!==ve&&!(T&Ut)){if(ge(T),De<=ct)return T;ct=De}if(T=g.entangledLanes,T!==0)for(g=g.entanglements,T&=ve;0<T;)$=31-yn(T),De=1<<$,ve|=g[$],T&=~De;return ve}function Hr(g){return g=g.pendingLanes&-1073741825,g!==0?g:g&1073741824?1073741824:0}function Zr(g,T){switch(g){case 15:return 1;case 14:return 2;case 12:return g=hn(24&~T),g===0?Zr(10,T):g;case 10:return g=hn(192&~T),g===0?Zr(8,T):g;case 8:return g=hn(3584&~T),g===0&&(g=hn(4186112&~T),g===0&&(g=512)),g;case 2:return T=hn(805306368&~T),T===0&&(T=268435456),T}throw Error(c(358,g))}function hn(g){return g&-g}function Si(g){for(var T=[],$=0;31>$;$++)T.push(g);return T}function un(g,T,$){g.pendingLanes|=T;var ve=T-1;g.suspendedLanes&=ve,g.pingedLanes&=ve,g=g.eventTimes,T=31-yn(T),g[T]=$}var yn=Math.clz32?Math.clz32:si,Gr=Math.log,kn=Math.LN2;function si(g){return g===0?32:31-(Gr(g)/kn|0)|0}var Ea=l.unstable_UserBlockingPriority,Js=l.unstable_runWithPriority,Ba=!0;function $s(g,T,$,ve){qr||Or();var De=as,rt=qr;qr=!0;try{Be(De,g,T,$,ve)}finally{(qr=rt)||Nt()}}function Ns(g,T,$,ve){Js(Ea,as.bind(null,g,T,$,ve))}function as(g,T,$,ve){if(Ba){var De;if((De=(T&4)===0)&&0<Ai.length&&-1<Ca.indexOf(g))g=xt(null,g,T,$,ve),Ai.push(g);else{var rt=oo(g,T,$,ve);if(rt===null)De&&xa(g,ve);else{if(De){if(-1<Ca.indexOf(g)){g=xt(rt,g,T,$,ve),Ai.push(g);return}if(_i(rt,g,T,$,ve))return;xa(g,ve)}Kr(g,T,ve,null,$)}}}}function oo(g,T,$,ve){var De=Gt(ve);if(De=rs(De),De!==null){var rt=jn(De);if(rt===null)De=null;else{var Ut=rt.tag;if(Ut===13){if(De=wn(rt),De!==null)return De;De=null}else if(Ut===3){if(rt.stateNode.hydrate)return rt.tag===3?rt.stateNode.containerInfo:null;De=null}else rt!==De&&(De=null)}}return Kr(g,T,ve,De,$),null}var Aa=null,Is=null,ps=null;function po(){if(ps)return ps;var g,T=Is,$=T.length,ve,De="value"in Aa?Aa.value:Aa.textContent,rt=De.length;for(g=0;g<$&&T[g]===De[g];g++);var Ut=$-g;for(ve=1;ve<=Ut&&T[$-ve]===De[rt-ve];ve++);return ps=De.slice(g,1<ve?1-ve:void 0)}function Ji(g){var T=g.keyCode;return"charCode"in g?(g=g.charCode,g===0&&T===13&&(g=13)):g=T,g===10&&(g=13),32<=g||g===13?g:0}function to(){return!0}function zo(){return!1}function Na(g){function T($,ve,De,rt,Ut){this._reactName=$,this._targetInst=De,this.type=ve,this.nativeEvent=rt,this.target=Ut,this.currentTarget=null;for(var fr in g)g.hasOwnProperty(fr)&&($=g[fr],this[fr]=$?$(rt):rt[fr]);return this.isDefaultPrevented=(rt.defaultPrevented!=null?rt.defaultPrevented:rt.returnValue===!1)?to:zo,this.isPropagationStopped=zo,this}return i(T.prototype,{preventDefault:function(){this.defaultPrevented=!0;var $=this.nativeEvent;$&&($.preventDefault?$.preventDefault():typeof $.returnValue!="unknown"&&($.returnValue=!1),this.isDefaultPrevented=to)},stopPropagation:function(){var $=this.nativeEvent;$&&($.stopPropagation?$.stopPropagation():typeof $.cancelBubble!="unknown"&&($.cancelBubble=!0),this.isPropagationStopped=to)},persist:function(){},isPersistent:to}),T}var zs={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(g){return g.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},di=Na(zs),ro=i({},zs,{view:0,detail:0}),Rn=Na(ro),ss,Ps,Os,Qi=i({},ro,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:qa,button:0,buttons:0,relatedTarget:function(g){return g.relatedTarget===void 0?g.fromElement===g.srcElement?g.toElement:g.fromElement:g.relatedTarget},movementX:function(g){return"movementX"in g?g.movementX:(g!==Os&&(Os&&g.type==="mousemove"?(ss=g.screenX-Os.screenX,Ps=g.screenY-Os.screenY):Ps=ss=0,Os=g),ss)},movementY:function(g){return"movementY"in g?g.movementY:Ps}}),Ka=Na(Qi),Ni=i({},Qi,{dataTransfer:0}),Ds=Na(Ni),xo=i({},ro,{relatedTarget:0}),Zo=Na(xo),Qo=i({},zs,{animationName:0,elapsedTime:0,pseudoElement:0}),mu=Na(Qo),_u=i({},zs,{clipboardData:function(g){return"clipboardData"in g?g.clipboardData:window.clipboardData}}),vo=Na(_u),Wo=i({},zs,{data:0}),Oo=Na(Wo),nu={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Xo={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},hi={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function vi(g){var T=this.nativeEvent;return T.getModifierState?T.getModifierState(g):(g=hi[g])?!!T[g]:!1}function qa(){return vi}var ls=i({},ro,{key:function(g){if(g.key){var T=nu[g.key]||g.key;if(T!=="Unidentified")return T}return g.type==="keypress"?(g=Ji(g),g===13?"Enter":String.fromCharCode(g)):g.type==="keydown"||g.type==="keyup"?Xo[g.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:qa,charCode:function(g){return g.type==="keypress"?Ji(g):0},keyCode:function(g){return g.type==="keydown"||g.type==="keyup"?g.keyCode:0},which:function(g){return g.type==="keypress"?Ji(g):g.type==="keydown"||g.type==="keyup"?g.keyCode:0}}),es=Na(ls),Wa=i({},Qi,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),ms=Na(Wa),Jo=i({},ro,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:qa}),ks=Na(Jo),Mo=i({},zs,{propertyName:0,elapsedTime:0,pseudoElement:0}),Eu=Na(Mo),Pu=i({},Qi,{deltaX:function(g){return"deltaX"in g?g.deltaX:"wheelDeltaX"in g?-g.wheelDeltaX:0},deltaY:function(g){return"deltaY"in g?g.deltaY:"wheelDeltaY"in g?-g.wheelDeltaY:"wheelDelta"in g?-g.wheelDelta:0},deltaZ:0,deltaMode:0}),rl=Na(Pu),dl=[9,13,27,32],Fo=a&&"CompositionEvent"in window,uo=null;a&&"documentMode"in document&&(uo=document.documentMode);var Ho=a&&"TextEvent"in window&&!uo,Hu=a&&(!Fo||uo&&8<uo&&11>=uo),Bo=" ",Go=!1;function Uu(g,T){switch(g){case"keyup":return dl.indexOf(T.keyCode)!==-1;case"keydown":return T.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function iu(g){return g=g.detail,typeof g=="object"&&"data"in g?g.data:null}var vu=!1;function No(g,T){switch(g){case"compositionend":return iu(T);case"keypress":return T.which!==32?null:(Go=!0,Bo);case"textInput":return g=T.data,g===Bo&&Go?null:g;default:return null}}function gu(g,T){if(vu)return g==="compositionend"||!Fo&&Uu(g,T)?(g=po(),ps=Is=Aa=null,vu=!1,g):null;switch(g){case"paste":return null;case"keypress":if(!(T.ctrlKey||T.altKey||T.metaKey)||T.ctrlKey&&T.altKey){if(T.char&&1<T.char.length)return T.char;if(T.which)return String.fromCharCode(T.which)}return null;case"compositionend":return Hu&&T.locale!=="ko"?null:T.data;default:return null}}var Ko={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function rr(g){var T=g&&g.nodeName&&g.nodeName.toLowerCase();return T==="input"?!!Ko[g.type]:T==="textarea"}function gr(g,T,$,ve){xe(ve),T=cn(T,"onChange"),0<T.length&&($=new di("onChange","change",null,$,ve),g.push({event:$,listeners:T}))}var dr=null,vr=null;function Tr(g){Qe(g,0)}function bn(g){var T=ao(g);if(et(T))return g}function zn(g,T){if(g==="change")return T}var Ln=!1;if(a){var Zn;if(a){var ai="oninput"in document;if(!ai){var Jn=document.createElement("div");Jn.setAttribute("oninput","return;"),ai=typeof Jn.oninput=="function"}Zn=ai}else Zn=!1;Ln=Zn&&(!document.documentMode||9<document.documentMode)}function mr(){dr&&(dr.detachEvent("onpropertychange",Fr),vr=dr=null)}function Fr(g){if(g.propertyName==="value"&&bn(vr)){var T=[];if(gr(T,vr,g,Gt(g)),g=Tr,qr)g(T);else{qr=!0;try{Pt(g,T)}finally{qr=!1,Nt()}}}}function Br(g,T,$){g==="focusin"?(mr(),dr=T,vr=$,dr.attachEvent("onpropertychange",Fr)):g==="focusout"&&mr()}function Tn(g){if(g==="selectionchange"||g==="keyup"||g==="keydown")return bn(vr)}function In(g,T){if(g==="click")return bn(T)}function oi(g,T){if(g==="input"||g==="change")return bn(T)}function wi(g,T){return g===T&&(g!==0||1/g===1/T)||g!==g&&T!==T}var Hn=typeof Object.is=="function"?Object.is:wi,ta=Object.prototype.hasOwnProperty;function ra(g,T){if(Hn(g,T))return!0;if(typeof g!="object"||g===null||typeof T!="object"||T===null)return!1;var $=Object.keys(g),ve=Object.keys(T);if($.length!==ve.length)return!1;for(ve=0;ve<$.length;ve++)if(!ta.call(T,$[ve])||!Hn(g[$[ve]],T[$[ve]]))return!1;return!0}function gi(g){for(;g&&g.firstChild;)g=g.firstChild;return g}function Et(g,T){var $=gi(g);g=0;for(var ve;$;){if($.nodeType===3){if(ve=g+$.textContent.length,g<=T&&ve>=T)return{node:$,offset:T-g};g=ve}e:{for(;$;){if($.nextSibling){$=$.nextSibling;break e}$=$.parentNode}$=void 0}$=gi($)}}function Xn(g,T){return g&&T?g===T?!0:g&&g.nodeType===3?!1:T&&T.nodeType===3?Xn(g,T.parentNode):"contains"in g?g.contains(T):g.compareDocumentPosition?!!(g.compareDocumentPosition(T)&16):!1:!1}function Sa(){for(var g=window,T=ft();T instanceof g.HTMLIFrameElement;){try{var $=typeof T.contentWindow.location.href=="string"}catch(ve){$=!1}if($)g=T.contentWindow;else break;T=ft(g.document)}return T}function Ra(g){var T=g&&g.nodeName&&g.nodeName.toLowerCase();return T&&(T==="input"&&(g.type==="text"||g.type==="search"||g.type==="tel"||g.type==="url"||g.type==="password")||T==="textarea"||g.contentEditable==="true")}var Ys=a&&"documentMode"in document&&11>=document.documentMode,sn=null,Do=null,lo=null,Rs=!1;function no(g,T,$){var ve=$.window===$?$.document:$.nodeType===9?$:$.ownerDocument;Rs||sn==null||sn!==ft(ve)||(ve=sn,"selectionStart"in ve&&Ra(ve)?ve={start:ve.selectionStart,end:ve.selectionEnd}:(ve=(ve.ownerDocument&&ve.ownerDocument.defaultView||window).getSelection(),ve={anchorNode:ve.anchorNode,anchorOffset:ve.anchorOffset,focusNode:ve.focusNode,focusOffset:ve.focusOffset}),lo&&ra(lo,ve)||(lo=ve,ve=cn(Do,"onSelect"),0<ve.length&&(T=new di("onSelect","select",null,T,$),g.push({event:T,listeners:ve}),T.target=sn)))}Qn("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Qn("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Qn(Fn,2);for(var io="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),ts=0;ts<io.length;ts++)_r.set(io[ts],0);u("onMouseEnter",["mouseout","mouseover"]),u("onMouseLeave",["mouseout","mouseover"]),u("onPointerEnter",["pointerout","pointerover"]),u("onPointerLeave",["pointerout","pointerover"]),h("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),h("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),h("onBeforeInput",["compositionend","keypress","textInput","paste"]),h("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),h("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),h("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var cs="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),ja=new Set("cancel close invalid load scroll toggle".split(" ").concat(cs));function os(g,T,$){var ve=g.type||"unknown-event";g.currentTarget=$,Wr(ve,T,void 0,g),g.currentTarget=null}function Qe(g,T){T=(T&4)!==0;for(var $=0;$<g.length;$++){var ve=g[$],De=ve.event;ve=ve.listeners;e:{var rt=void 0;if(T)for(var Ut=ve.length-1;0<=Ut;Ut--){var fr=ve[Ut],Dr=fr.instance,vn=fr.currentTarget;if(fr=fr.listener,Dr!==rt&&De.isPropagationStopped())break e;os(De,fr,vn),rt=Dr}else for(Ut=0;Ut<ve.length;Ut++){if(fr=ve[Ut],Dr=fr.instance,vn=fr.currentTarget,fr=fr.listener,Dr!==rt&&De.isPropagationStopped())break e;os(De,fr,vn),rt=Dr}}}if(Bt)throw g=Jt,Bt=!1,Jt=null,g}function Pe(g,T){var $=pa(T),ve=g+"__bubble";$.has(ve)||(Mr(T,g,2,!1),$.add(ve))}var Ft="_reactListening"+Math.random().toString(36).slice(2);function _t(g){g[Ft]||(g[Ft]=!0,f.forEach(function(T){ja.has(T)||Sr(T,!1,g,null),Sr(T,!0,g,null)}))}function Sr(g,T,$,ve){var De=4<arguments.length&&arguments[4]!==void 0?arguments[4]:0,rt=$;if(g==="selectionchange"&&$.nodeType!==9&&(rt=$.ownerDocument),ve!==null&&!T&&ja.has(g)){if(g!=="scroll")return;De|=2,rt=ve}var Ut=pa(rt),fr=g+"__"+(T?"capture":"bubble");Ut.has(fr)||(T&&(De|=4),Mr(rt,g,De,T),Ut.add(fr))}function Mr(g,T,$,ve){var De=_r.get(T);switch(De===void 0?2:De){case 0:De=$s;break;case 1:De=Ns;break;default:De=as}$=De.bind(null,T,$,g),De=void 0,!Xt||T!=="touchstart"&&T!=="touchmove"&&T!=="wheel"||(De=!0),ve?De!==void 0?g.addEventListener(T,$,{capture:!0,passive:De}):g.addEventListener(T,$,!0):De!==void 0?g.addEventListener(T,$,{passive:De}):g.addEventListener(T,$,!1)}function Kr(g,T,$,ve,De){var rt=ve;if(!(T&1)&&!(T&2)&&ve!==null)e:for(;;){if(ve===null)return;var Ut=ve.tag;if(Ut===3||Ut===4){var fr=ve.stateNode.containerInfo;if(fr===De||fr.nodeType===8&&fr.parentNode===De)break;if(Ut===4)for(Ut=ve.return;Ut!==null;){var Dr=Ut.tag;if((Dr===3||Dr===4)&&(Dr=Ut.stateNode.containerInfo,Dr===De||Dr.nodeType===8&&Dr.parentNode===De))return;Ut=Ut.return}for(;fr!==null;){if(Ut=rs(fr),Ut===null)return;if(Dr=Ut.tag,Dr===5||Dr===6){ve=rt=Ut;continue e}fr=fr.parentNode}}ve=ve.return}qt(function(){var vn=rt,Pi=Gt($),Ua=[];e:{var Kn=An.get(g);if(Kn!==void 0){var la=di,$a=g;switch(g){case"keypress":if(Ji($)===0)break e;case"keydown":case"keyup":la=es;break;case"focusin":$a="focus",la=Zo;break;case"focusout":$a="blur",la=Zo;break;case"beforeblur":case"afterblur":la=Zo;break;case"click":if($.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":la=Ka;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":la=Ds;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":la=ks;break;case Cr:case $r:case en:la=mu;break;case Nr:la=Eu;break;case"scroll":la=Rn;break;case"wheel":la=rl;break;case"copy":case"cut":case"paste":la=vo;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":la=ms}var ka=(T&4)!==0,nn=!ka&&g==="scroll",jr=ka?Kn!==null?Kn+"Capture":null:Kn;ka=[];for(var rn=vn,On;rn!==null;){On=rn;var Un=On.stateNode;if(On.tag===5&&Un!==null&&(On=Un,jr!==null&&(Un=Lt(rn,jr),Un!=null&&ka.push(xn(rn,Un,On)))),nn)break;rn=rn.return}0<ka.length&&(Kn=new la(Kn,$a,null,$,Pi),Ua.push({event:Kn,listeners:ka}))}}if(!(T&7)){e:{if(Kn=g==="mouseover"||g==="pointerover",la=g==="mouseout"||g==="pointerout",Kn&&!(T&16)&&($a=$.relatedTarget||$.fromElement)&&(rs($a)||$a[_s]))break e;if((la||Kn)&&(Kn=Pi.window===Pi?Pi:(Kn=Pi.ownerDocument)?Kn.defaultView||Kn.parentWindow:window,la?($a=$.relatedTarget||$.toElement,la=vn,$a=$a?rs($a):null,$a!==null&&(nn=jn($a),$a!==nn||$a.tag!==5&&$a.tag!==6)&&($a=null)):(la=null,$a=vn),la!==$a)){if(ka=Ka,Un="onMouseLeave",jr="onMouseEnter",rn="mouse",(g==="pointerout"||g==="pointerover")&&(ka=ms,Un="onPointerLeave",jr="onPointerEnter",rn="pointer"),nn=la==null?Kn:ao(la),On=$a==null?Kn:ao($a),Kn=new ka(Un,rn+"leave",la,$,Pi),Kn.target=nn,Kn.relatedTarget=On,Un=null,rs(Pi)===vn&&(ka=new ka(jr,rn+"enter",$a,$,Pi),ka.target=On,ka.relatedTarget=nn,Un=ka),nn=Un,la&&$a)t:{for(ka=la,jr=$a,rn=0,On=ka;On;On=Sn(On))rn++;for(On=0,Un=jr;Un;Un=Sn(Un))On++;for(;0<rn-On;)ka=Sn(ka),rn--;for(;0<On-rn;)jr=Sn(jr),On--;for(;rn--;){if(ka===jr||jr!==null&&ka===jr.alternate)break t;ka=Sn(ka),jr=Sn(jr)}ka=null}else ka=null;la!==null&&ri(Ua,Kn,la,ka,!1),$a!==null&&nn!==null&&ri(Ua,nn,$a,ka,!0)}}e:{if(Kn=vn?ao(vn):window,la=Kn.nodeName&&Kn.nodeName.toLowerCase(),la==="select"||la==="input"&&Kn.type==="file")var Ya=zn;else if(rr(Kn))if(Ln)Ya=oi;else{Ya=Tn;var Ui=Br}else(la=Kn.nodeName)&&la.toLowerCase()==="input"&&(Kn.type==="checkbox"||Kn.type==="radio")&&(Ya=In);if(Ya&&(Ya=Ya(g,vn))){gr(Ua,Ya,$,Pi);break e}Ui&&Ui(g,Kn,vn),g==="focusout"&&(Ui=Kn._wrapperState)&&Ui.controlled&&Kn.type==="number"&&Ge(Kn,"number",Kn.value)}switch(Ui=vn?ao(vn):window,g){case"focusin":(rr(Ui)||Ui.contentEditable==="true")&&(sn=Ui,Do=vn,lo=null);break;case"focusout":lo=Do=sn=null;break;case"mousedown":Rs=!0;break;case"contextmenu":case"mouseup":case"dragend":Rs=!1,no(Ua,$,Pi);break;case"selectionchange":if(Ys)break;case"keydown":case"keyup":no(Ua,$,Pi)}var Qa;if(Fo)e:{switch(g){case"compositionstart":var hs="onCompositionStart";break e;case"compositionend":hs="onCompositionEnd";break e;case"compositionupdate":hs="onCompositionUpdate";break e}hs=void 0}else vu?Uu(g,$)&&(hs="onCompositionEnd"):g==="keydown"&&$.keyCode===229&&(hs="onCompositionStart");hs&&(Hu&&$.locale!=="ko"&&(vu||hs!=="onCompositionStart"?hs==="onCompositionEnd"&&vu&&(Qa=po()):(Aa=Pi,Is="value"in Aa?Aa.value:Aa.textContent,vu=!0)),Ui=cn(vn,hs),0<Ui.length&&(hs=new Oo(hs,g,null,$,Pi),Ua.push({event:hs,listeners:Ui}),Qa?hs.data=Qa:(Qa=iu($),Qa!==null&&(hs.data=Qa)))),(Qa=Ho?No(g,$):gu(g,$))&&(vn=cn(vn,"onBeforeInput"),0<vn.length&&(Pi=new Oo("onBeforeInput","beforeinput",null,$,Pi),Ua.push({event:Pi,listeners:vn}),Pi.data=Qa))}Qe(Ua,T)})}function xn(g,T,$){return{instance:g,listener:T,currentTarget:$}}function cn(g,T){for(var $=T+"Capture",ve=[];g!==null;){var De=g,rt=De.stateNode;De.tag===5&&rt!==null&&(De=rt,rt=Lt(g,$),rt!=null&&ve.unshift(xn(g,rt,De)),rt=Lt(g,T),rt!=null&&ve.push(xn(g,rt,De))),g=g.return}return ve}function Sn(g){if(g===null)return null;do g=g.return;while(g&&g.tag!==5);return g||null}function ri(g,T,$,ve,De){for(var rt=T._reactName,Ut=[];$!==null&&$!==ve;){var fr=$,Dr=fr.alternate,vn=fr.stateNode;if(Dr!==null&&Dr===ve)break;fr.tag===5&&vn!==null&&(fr=vn,De?(Dr=Lt($,rt),Dr!=null&&Ut.unshift(xn($,Dr,fr))):De||(Dr=Lt($,rt),Dr!=null&&Ut.push(xn($,Dr,fr)))),$=$.return}Ut.length!==0&&g.push({event:T,listeners:Ut})}function ni(){}var yi=null,Li=null;function na(g,T){switch(g){case"button":case"input":case"select":case"textarea":return!!T.autoFocus}return!1}function Wi(g,T){return g==="textarea"||g==="option"||g==="noscript"||typeof T.children=="string"||typeof T.children=="number"||typeof T.dangerouslySetInnerHTML=="object"&&T.dangerouslySetInnerHTML!==null&&T.dangerouslySetInnerHTML.__html!=null}var Ci=typeof setTimeout=="function"?setTimeout:void 0,Ia=typeof clearTimeout=="function"?clearTimeout:void 0;function Ii(g){g.nodeType===1?g.textContent="":g.nodeType===9&&(g=g.body,g!=null&&(g.textContent=""))}function pi(g){for(;g!=null;g=g.nextSibling){var T=g.nodeType;if(T===1||T===3)break}return g}function ca(g){g=g.previousSibling;for(var T=0;g;){if(g.nodeType===8){var $=g.data;if($==="$"||$==="$!"||$==="$?"){if(T===0)return g;T--}else $==="/$"&&T++}g=g.previousSibling}return null}var Eo=0;function Qs(g){return{$$typeof:z,toString:g,valueOf:g}}var ia=Math.random().toString(36).slice(2),fs="__reactFiber$"+ia,ya="__reactProps$"+ia,_s="__reactContainer$"+ia,La="__reactEvents$"+ia;function rs(g){var T=g[fs];if(T)return T;for(var $=g.parentNode;$;){if(T=$[_s]||$[fs]){if($=T.alternate,T.child!==null||$!==null&&$.child!==null)for(g=ca(g);g!==null;){if($=g[fs])return $;g=ca(g)}return T}g=$,$=g.parentNode}return null}function Ls(g){return g=g[fs]||g[_s],!g||g.tag!==5&&g.tag!==6&&g.tag!==13&&g.tag!==3?null:g}function ao(g){if(g.tag===5||g.tag===6)return g.stateNode;throw Error(c(33))}function xs(g){return g[ya]||null}function pa(g){var T=g[La];return T===void 0&&(T=g[La]=new Set),T}var Ms=[],jo=-1;function qs(g){return{current:g}}function Ha(g){0>jo||(g.current=Ms[jo],Ms[jo]=null,jo--)}function us(g,T){jo++,Ms[jo]=g.current,g.current=T}var co={},Va=qs(co),Vt=qs(!1),kt=co;function Pa(g,T){var $=g.type.contextTypes;if(!$)return co;var ve=g.stateNode;if(ve&&ve.__reactInternalMemoizedUnmaskedChildContext===T)return ve.__reactInternalMemoizedMaskedChildContext;var De={},rt;for(rt in $)De[rt]=T[rt];return ve&&(g=g.stateNode,g.__reactInternalMemoizedUnmaskedChildContext=T,g.__reactInternalMemoizedMaskedChildContext=De),De}function Zs(g){return g=g.childContextTypes,g!=null}function _n(){Ha(Vt),Ha(Va)}function En(g,T,$){if(Va.current!==co)throw Error(c(168));us(Va,T),us(Vt,$)}function Ze(g,T,$){var ve=g.stateNode;if(g=T.childContextTypes,typeof ve.getChildContext!="function")return $;ve=ve.getChildContext();for(var De in ve)if(!(De in g))throw Error(c(108,Rt(T)||"Unknown",De));return i({},$,ve)}function jt(g){return g=(g=g.stateNode)&&g.__reactInternalMemoizedMergedChildContext||co,kt=Va.current,us(Va,g),us(Vt,Vt.current),!0}function wr(g,T,$){var ve=g.stateNode;if(!ve)throw Error(c(169));$?(g=Ze(g,T,kt),ve.__reactInternalMemoizedMergedChildContext=g,Ha(Vt),Ha(Va),us(Va,g)):Ha(Vt),us(Vt,$)}var Rr=null,Jr=null,gn=l.unstable_runWithPriority,Xi=l.unstable_scheduleCallback,ui=l.unstable_cancelCallback,wo=l.unstable_shouldYield,fa=l.unstable_requestPaint,ns=l.unstable_now,Xa=l.unstable_getCurrentPriorityLevel,Es=l.unstable_ImmediatePriority,go=l.unstable_UserBlockingPriority,wu=l.unstable_NormalPriority,yu=l.unstable_LowPriority,Ve=l.unstable_IdlePriority,Z={},Y=fa!==void 0?fa:function(){},te=null,he=null,we=!1,Ye=ns(),wt=1e4>Ye?ns:function(){return ns()-Ye};function $t(){switch(Xa()){case Es:return 99;case go:return 98;case wu:return 97;case yu:return 96;case Ve:return 95;default:throw Error(c(332))}}function cr(g){switch(g){case 99:return Es;case 98:return go;case 97:return wu;case 96:return yu;case 95:return Ve;default:throw Error(c(332))}}function Ir(g,T){return g=cr(g),gn(g,T)}function Yr(g,T,$){return g=cr(g),Xi(g,T,$)}function fn(){if(he!==null){var g=he;he=null,ui(g)}Cn()}function Cn(){if(!we&&te!==null){we=!0;var g=0;try{var T=te;Ir(99,function(){for(;g<T.length;g++){var $=T[g];do $=$(!0);while($!==null)}}),te=null}catch($){throw te!==null&&(te=te.slice(g+1)),Xi(Es,fn),$}finally{we=!1}}}var Wn=N.ReactCurrentBatchConfig;function qn(g,T){if(g&&g.defaultProps){T=i({},T),g=g.defaultProps;for(var $ in g)T[$]===void 0&&(T[$]=g[$]);return T}return T}var Di=qs(null),Fi=null,aa=null,ba=null;function Ts(){ba=aa=Fi=null}function Fs(g){var T=Di.current;Ha(Di),g.type._context._currentValue=T}function js(g,T){for(;g!==null;){var $=g.alternate;if((g.childLanes&T)===T){if($===null||($.childLanes&T)===T)break;$.childLanes|=T}else g.childLanes|=T,$!==null&&($.childLanes|=T);g=g.return}}function vs(g,T){Fi=g,ba=aa=null,g=g.dependencies,g!==null&&g.firstContext!==null&&(g.lanes&T&&(Zu=!0),g.firstContext=null)}function Oa(g,T){if(ba!==g&&T!==!1&&T!==0)if((typeof T!="number"||T===1073741823)&&(ba=g,T=1073741823),T={context:g,observedBits:T,next:null},aa===null){if(Fi===null)throw Error(c(308));aa=T,Fi.dependencies={lanes:0,firstContext:T,responders:null}}else aa=aa.next=T;return g._currentValue}var fo=!1;function ws(g){g.updateQueue={baseState:g.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function yr(g,T){g=g.updateQueue,T.updateQueue===g&&(T.updateQueue={baseState:g.baseState,firstBaseUpdate:g.firstBaseUpdate,lastBaseUpdate:g.lastBaseUpdate,shared:g.shared,effects:g.effects})}function ko(g,T){return{eventTime:g,lane:T,tag:0,payload:null,callback:null,next:null}}function Uo(g,T){if(g=g.updateQueue,g!==null){g=g.shared;var $=g.pending;$===null?T.next=T:(T.next=$.next,$.next=T),g.pending=T}}function Su(g,T){var $=g.updateQueue,ve=g.alternate;if(ve!==null&&(ve=ve.updateQueue,$===ve)){var De=null,rt=null;if($=$.firstBaseUpdate,$!==null){do{var Ut={eventTime:$.eventTime,lane:$.lane,tag:$.tag,payload:$.payload,callback:$.callback,next:null};rt===null?De=rt=Ut:rt=rt.next=Ut,$=$.next}while($!==null);rt===null?De=rt=T:rt=rt.next=T}else De=rt=T;$={baseState:ve.baseState,firstBaseUpdate:De,lastBaseUpdate:rt,shared:ve.shared,effects:ve.effects},g.updateQueue=$;return}g=$.lastBaseUpdate,g===null?$.firstBaseUpdate=T:g.next=T,$.lastBaseUpdate=T}function Ws(g,T,$,ve){var De=g.updateQueue;fo=!1;var rt=De.firstBaseUpdate,Ut=De.lastBaseUpdate,fr=De.shared.pending;if(fr!==null){De.shared.pending=null;var Dr=fr,vn=Dr.next;Dr.next=null,Ut===null?rt=vn:Ut.next=vn,Ut=Dr;var Pi=g.alternate;if(Pi!==null){Pi=Pi.updateQueue;var Ua=Pi.lastBaseUpdate;Ua!==Ut&&(Ua===null?Pi.firstBaseUpdate=vn:Ua.next=vn,Pi.lastBaseUpdate=Dr)}}if(rt!==null){Ua=De.baseState,Ut=0,Pi=vn=Dr=null;do{fr=rt.lane;var Kn=rt.eventTime;if((ve&fr)===fr){Pi!==null&&(Pi=Pi.next={eventTime:Kn,lane:0,tag:rt.tag,payload:rt.payload,callback:rt.callback,next:null});e:{var la=g,$a=rt;switch(fr=T,Kn=$,$a.tag){case 1:if(la=$a.payload,typeof la=="function"){Ua=la.call(Kn,Ua,fr);break e}Ua=la;break e;case 3:la.flags=la.flags&-4097|64;case 0:if(la=$a.payload,fr=typeof la=="function"?la.call(Kn,Ua,fr):la,fr==null)break e;Ua=i({},Ua,fr);break e;case 2:fo=!0}}rt.callback!==null&&(g.flags|=32,fr=De.effects,fr===null?De.effects=[rt]:fr.push(rt))}else Kn={eventTime:Kn,lane:fr,tag:rt.tag,payload:rt.payload,callback:rt.callback,next:null},Pi===null?(vn=Pi=Kn,Dr=Ua):Pi=Pi.next=Kn,Ut|=fr;if(rt=rt.next,rt===null){if(fr=De.shared.pending,fr===null)break;rt=fr.next,fr.next=null,De.lastBaseUpdate=fr,De.shared.pending=null}}while(!0);Pi===null&&(Dr=Ua),De.baseState=Dr,De.firstBaseUpdate=vn,De.lastBaseUpdate=Pi,Io|=Ut,g.lanes=Ut,g.memoizedState=Ua}}function qo(g,T,$){if(g=T.effects,T.effects=null,g!==null)for(T=0;T<g.length;T++){var ve=g[T],De=ve.callback;if(De!==null){if(ve.callback=null,ve=$,typeof De!="function")throw Error(c(191,De));De.call(ve)}}}var yo=new r.Component().refs;function oc(g,T,$,ve){T=g.memoizedState,$=$(ve,T),$=$==null?T:i({},T,$),g.memoizedState=$,g.lanes===0&&(g.updateQueue.baseState=$)}var wl={isMounted:function(g){return(g=g._reactInternals)?jn(g)===g:!1},enqueueSetState:function(g,T,$){g=g._reactInternals;var ve=Nu(),De=Il(g),rt=ko(ve,De);rt.payload=T,$!=null&&(rt.callback=$),Uo(g,rt),tc(g,De,ve)},enqueueReplaceState:function(g,T,$){g=g._reactInternals;var ve=Nu(),De=Il(g),rt=ko(ve,De);rt.tag=1,rt.payload=T,$!=null&&(rt.callback=$),Uo(g,rt),tc(g,De,ve)},enqueueForceUpdate:function(g,T){g=g._reactInternals;var $=Nu(),ve=Il(g),De=ko($,ve);De.tag=2,T!=null&&(De.callback=T),Uo(g,De),tc(g,ve,$)}};function Sl(g,T,$,ve,De,rt,Ut){return g=g.stateNode,typeof g.shouldComponentUpdate=="function"?g.shouldComponentUpdate(ve,rt,Ut):T.prototype&&T.prototype.isPureReactComponent?!ra($,ve)||!ra(De,rt):!0}function nl(g,T,$){var ve=!1,De=co,rt=T.contextType;return typeof rt=="object"&&rt!==null?rt=Oa(rt):(De=Zs(T)?kt:Va.current,ve=T.contextTypes,rt=(ve=ve!=null)?Pa(g,De):co),T=new T($,rt),g.memoizedState=T.state!==null&&T.state!==void 0?T.state:null,T.updater=wl,g.stateNode=T,T._reactInternals=g,ve&&(g=g.stateNode,g.__reactInternalMemoizedUnmaskedChildContext=De,g.__reactInternalMemoizedMaskedChildContext=rt),T}function Hs(g,T,$,ve){g=T.state,typeof T.componentWillReceiveProps=="function"&&T.componentWillReceiveProps($,ve),typeof T.UNSAFE_componentWillReceiveProps=="function"&&T.UNSAFE_componentWillReceiveProps($,ve),T.state!==g&&wl.enqueueReplaceState(T,T.state,null)}function Gu(g,T,$,ve){var De=g.stateNode;De.props=$,De.state=g.memoizedState,De.refs=yo,ws(g);var rt=T.contextType;typeof rt=="object"&&rt!==null?De.context=Oa(rt):(rt=Zs(T)?kt:Va.current,De.context=Pa(g,rt)),Ws(g,$,De,ve),De.state=g.memoizedState,rt=T.getDerivedStateFromProps,typeof rt=="function"&&(oc(g,T,rt,$),De.state=g.memoizedState),typeof T.getDerivedStateFromProps=="function"||typeof De.getSnapshotBeforeUpdate=="function"||typeof De.UNSAFE_componentWillMount!="function"&&typeof De.componentWillMount!="function"||(T=De.state,typeof De.componentWillMount=="function"&&De.componentWillMount(),typeof De.UNSAFE_componentWillMount=="function"&&De.UNSAFE_componentWillMount(),T!==De.state&&wl.enqueueReplaceState(De,De.state,null),Ws(g,$,De,ve),De.state=g.memoizedState),typeof De.componentDidMount=="function"&&(g.flags|=4)}var Ku=Array.isArray;function Ro(g,T,$){if(g=$.ref,g!==null&&typeof g!="function"&&typeof g!="object"){if($._owner){if($=$._owner,$){if($.tag!==1)throw Error(c(309));var ve=$.stateNode}if(!ve)throw Error(c(147,g));var De=""+g;return T!==null&&T.ref!==null&&typeof T.ref=="function"&&T.ref._stringRef===De?T.ref:(T=function(rt){var Ut=ve.refs;Ut===yo&&(Ut=ve.refs={}),rt===null?delete Ut[De]:Ut[De]=rt},T._stringRef=De,T)}if(typeof g!="string")throw Error(c(284));if(!$._owner)throw Error(c(290,g))}return g}function eu(g,T){if(g.type!=="textarea")throw Error(c(31,Object.prototype.toString.call(T)==="[object Object]"?"object with keys {"+Object.keys(T).join(", ")+"}":T))}function zl(g){function T(nn,jr){if(g){var rn=nn.lastEffect;rn!==null?(rn.nextEffect=jr,nn.lastEffect=jr):nn.firstEffect=nn.lastEffect=jr,jr.nextEffect=null,jr.flags=8}}function $(nn,jr){if(!g)return null;for(;jr!==null;)T(nn,jr),jr=jr.sibling;return null}function ve(nn,jr){for(nn=new Map;jr!==null;)jr.key!==null?nn.set(jr.key,jr):nn.set(jr.index,jr),jr=jr.sibling;return nn}function De(nn,jr){return nn=Pl(nn,jr),nn.index=0,nn.sibling=null,nn}function rt(nn,jr,rn){return nn.index=rn,g?(rn=nn.alternate,rn!==null?(rn=rn.index,rn<jr?(nn.flags=2,jr):rn):(nn.flags=2,jr)):jr}function Ut(nn){return g&&nn.alternate===null&&(nn.flags=2),nn}function fr(nn,jr,rn,On){return jr===null||jr.tag!==6?(jr=Cf(rn,nn.mode,On),jr.return=nn,jr):(jr=De(jr,rn),jr.return=nn,jr)}function Dr(nn,jr,rn,On){return jr!==null&&jr.elementType===rn.type?(On=De(jr,rn.props),On.ref=Ro(nn,jr,rn),On.return=nn,On):(On=Uc(rn.type,rn.key,rn.props,null,nn.mode,On),On.ref=Ro(nn,jr,rn),On.return=nn,On)}function vn(nn,jr,rn,On){return jr===null||jr.tag!==4||jr.stateNode.containerInfo!==rn.containerInfo||jr.stateNode.implementation!==rn.implementation?(jr=cf(rn,nn.mode,On),jr.return=nn,jr):(jr=De(jr,rn.children||[]),jr.return=nn,jr)}function Pi(nn,jr,rn,On,Un){return jr===null||jr.tag!==7?(jr=uu(rn,nn.mode,On,Un),jr.return=nn,jr):(jr=De(jr,rn),jr.return=nn,jr)}function Ua(nn,jr,rn){if(typeof jr=="string"||typeof jr=="number")return jr=Cf(""+jr,nn.mode,rn),jr.return=nn,jr;if(typeof jr=="object"&&jr!==null){switch(jr.$$typeof){case K:return rn=Uc(jr.type,jr.key,jr.props,null,nn.mode,rn),rn.ref=Ro(nn,null,jr),rn.return=nn,rn;case H:return jr=cf(jr,nn.mode,rn),jr.return=nn,jr}if(Ku(jr)||He(jr))return jr=uu(jr,nn.mode,rn,null),jr.return=nn,jr;eu(nn,jr)}return null}function Kn(nn,jr,rn,On){var Un=jr!==null?jr.key:null;if(typeof rn=="string"||typeof rn=="number")return Un!==null?null:fr(nn,jr,""+rn,On);if(typeof rn=="object"&&rn!==null){switch(rn.$$typeof){case K:return rn.key===Un?rn.type===W?Pi(nn,jr,rn.props.children,On,Un):Dr(nn,jr,rn,On):null;case H:return rn.key===Un?vn(nn,jr,rn,On):null}if(Ku(rn)||He(rn))return Un!==null?null:Pi(nn,jr,rn,On,null);eu(nn,rn)}return null}function la(nn,jr,rn,On,Un){if(typeof On=="string"||typeof On=="number")return nn=nn.get(rn)||null,fr(jr,nn,""+On,Un);if(typeof On=="object"&&On!==null){switch(On.$$typeof){case K:return nn=nn.get(On.key===null?rn:On.key)||null,On.type===W?Pi(jr,nn,On.props.children,Un,On.key):Dr(jr,nn,On,Un);case H:return nn=nn.get(On.key===null?rn:On.key)||null,vn(jr,nn,On,Un)}if(Ku(On)||He(On))return nn=nn.get(rn)||null,Pi(jr,nn,On,Un,null);eu(jr,On)}return null}function $a(nn,jr,rn,On){for(var Un=null,Ya=null,Ui=jr,Qa=jr=0,hs=null;Ui!==null&&Qa<rn.length;Qa++){Ui.index>Qa?(hs=Ui,Ui=null):hs=Ui.sibling;var Ja=Kn(nn,Ui,rn[Qa],On);if(Ja===null){Ui===null&&(Ui=hs);break}g&&Ui&&Ja.alternate===null&&T(nn,Ui),jr=rt(Ja,jr,Qa),Ya===null?Un=Ja:Ya.sibling=Ja,Ya=Ja,Ui=hs}if(Qa===rn.length)return $(nn,Ui),Un;if(Ui===null){for(;Qa<rn.length;Qa++)Ui=Ua(nn,rn[Qa],On),Ui!==null&&(jr=rt(Ui,jr,Qa),Ya===null?Un=Ui:Ya.sibling=Ui,Ya=Ui);return Un}for(Ui=ve(nn,Ui);Qa<rn.length;Qa++)hs=la(Ui,nn,Qa,rn[Qa],On),hs!==null&&(g&&hs.alternate!==null&&Ui.delete(hs.key===null?Qa:hs.key),jr=rt(hs,jr,Qa),Ya===null?Un=hs:Ya.sibling=hs,Ya=hs);return g&&Ui.forEach(function(Ul){return T(nn,Ul)}),Un}function ka(nn,jr,rn,On){var Un=He(rn);if(typeof Un!="function")throw Error(c(150));if(rn=Un.call(rn),rn==null)throw Error(c(151));for(var Ya=Un=null,Ui=jr,Qa=jr=0,hs=null,Ja=rn.next();Ui!==null&&!Ja.done;Qa++,Ja=rn.next()){Ui.index>Qa?(hs=Ui,Ui=null):hs=Ui.sibling;var Ul=Kn(nn,Ui,Ja.value,On);if(Ul===null){Ui===null&&(Ui=hs);break}g&&Ui&&Ul.alternate===null&&T(nn,Ui),jr=rt(Ul,jr,Qa),Ya===null?Un=Ul:Ya.sibling=Ul,Ya=Ul,Ui=hs}if(Ja.done)return $(nn,Ui),Un;if(Ui===null){for(;!Ja.done;Qa++,Ja=rn.next())Ja=Ua(nn,Ja.value,On),Ja!==null&&(jr=rt(Ja,jr,Qa),Ya===null?Un=Ja:Ya.sibling=Ja,Ya=Ja);return Un}for(Ui=ve(nn,Ui);!Ja.done;Qa++,Ja=rn.next())Ja=la(Ui,nn,Qa,Ja.value,On),Ja!==null&&(g&&Ja.alternate!==null&&Ui.delete(Ja.key===null?Qa:Ja.key),jr=rt(Ja,jr,Qa),Ya===null?Un=Ja:Ya.sibling=Ja,Ya=Ja);return g&&Ui.forEach(function(sd){return T(nn,sd)}),Un}return function(nn,jr,rn,On){var Un=typeof rn=="object"&&rn!==null&&rn.type===W&&rn.key===null;Un&&(rn=rn.props.children);var Ya=typeof rn=="object"&&rn!==null;if(Ya)switch(rn.$$typeof){case K:e:{for(Ya=rn.key,Un=jr;Un!==null;){if(Un.key===Ya){switch(Un.tag){case 7:if(rn.type===W){$(nn,Un.sibling),jr=De(Un,rn.props.children),jr.return=nn,nn=jr;break e}break;default:if(Un.elementType===rn.type){$(nn,Un.sibling),jr=De(Un,rn.props),jr.ref=Ro(nn,Un,rn),jr.return=nn,nn=jr;break e}}$(nn,Un);break}else T(nn,Un);Un=Un.sibling}rn.type===W?(jr=uu(rn.props.children,nn.mode,On,rn.key),jr.return=nn,nn=jr):(On=Uc(rn.type,rn.key,rn.props,null,nn.mode,On),On.ref=Ro(nn,jr,rn),On.return=nn,nn=On)}return Ut(nn);case H:e:{for(Un=rn.key;jr!==null;){if(jr.key===Un)if(jr.tag===4&&jr.stateNode.containerInfo===rn.containerInfo&&jr.stateNode.implementation===rn.implementation){$(nn,jr.sibling),jr=De(jr,rn.children||[]),jr.return=nn,nn=jr;break e}else{$(nn,jr);break}else T(nn,jr);jr=jr.sibling}jr=cf(rn,nn.mode,On),jr.return=nn,nn=jr}return Ut(nn)}if(typeof rn=="string"||typeof rn=="number")return rn=""+rn,jr!==null&&jr.tag===6?($(nn,jr.sibling),jr=De(jr,rn),jr.return=nn,nn=jr):($(nn,jr),jr=Cf(rn,nn.mode,On),jr.return=nn,nn=jr),Ut(nn);if(Ku(rn))return $a(nn,jr,rn,On);if(He(rn))return ka(nn,jr,rn,On);if(Ya&&eu(nn,rn),typeof rn=="undefined"&&!Un)switch(nn.tag){case 1:case 22:case 0:case 11:case 15:throw Error(c(152,Rt(nn.type)||"Component"))}return $(nn,jr)}}var bu=zl(!0),Zl=zl(!1),So={},au=qs(So),hl=qs(So),Wl=qs(So);function tu(g){if(g===So)throw Error(c(174));return g}function Hl(g,T){switch(us(Wl,T),us(hl,g),us(au,So),g=T.nodeType,g){case 9:case 11:T=(T=T.documentElement)?T.namespaceURI:Ot(null,"");break;default:g=g===8?T.parentNode:T,T=g.namespaceURI||null,g=g.tagName,T=Ot(T,g)}Ha(au),us(au,T)}function Gl(){Ha(au),Ha(hl),Ha(Wl)}function li(g){tu(Wl.current);var T=tu(au.current),$=Ot(T,g.type);T!==$&&(us(hl,g),us(au,$))}function uc(g){hl.current===g&&(Ha(au),Ha(hl))}var ho=qs(0);function Hc(g){for(var T=g;T!==null;){if(T.tag===13){var $=T.memoizedState;if($!==null&&($=$.dehydrated,$===null||$.data==="$?"||$.data==="$!"))return T}else if(T.tag===19&&T.memoizedProps.revealOrder!==void 0){if(T.flags&64)return T}else if(T.child!==null){T.child.return=T,T=T.child;continue}if(T===g)break;for(;T.sibling===null;){if(T.return===null||T.return===g)return null;T=T.return}T.sibling.return=T.return,T=T.sibling}return null}var $u=null,pl=null,il=!1;function Ac(g,T){var $=ou(5,null,null,0);$.elementType="DELETED",$.type="DELETED",$.stateNode=T,$.return=g,$.flags=8,g.lastEffect!==null?(g.lastEffect.nextEffect=$,g.lastEffect=$):g.firstEffect=g.lastEffect=$}function Gc(g,T){switch(g.tag){case 5:var $=g.type;return T=T.nodeType!==1||$.toLowerCase()!==T.nodeName.toLowerCase()?null:T,T!==null?(g.stateNode=T,!0):!1;case 6:return T=g.pendingProps===""||T.nodeType!==3?null:T,T!==null?(g.stateNode=T,!0):!1;case 13:return!1;default:return!1}}function Ao(g){if(il){var T=pl;if(T){var $=T;if(!Gc(g,T)){if(T=pi($.nextSibling),!T||!Gc(g,T)){g.flags=g.flags&-1025|2,il=!1,$u=g;return}Ac($u,$)}$u=g,pl=pi(T.firstChild)}else g.flags=g.flags&-1025|2,il=!1,$u=g}}function Kc(g){for(g=g.return;g!==null&&g.tag!==5&&g.tag!==3&&g.tag!==13;)g=g.return;$u=g}function Kl(g){if(g!==$u)return!1;if(!il)return Kc(g),il=!0,!1;var T=g.type;if(g.tag!==5||T!=="head"&&T!=="body"&&!Wi(T,g.memoizedProps))for(T=pl;T;)Ac(g,T),T=pi(T.nextSibling);if(Kc(g),g.tag===13){if(g=g.memoizedState,g=g!==null?g.dehydrated:null,!g)throw Error(c(317));e:{for(g=g.nextSibling,T=0;g;){if(g.nodeType===8){var $=g.data;if($==="/$"){if(T===0){pl=pi(g.nextSibling);break e}T--}else $!=="$"&&$!=="$!"&&$!=="$?"||T++}g=g.nextSibling}pl=null}}else pl=$u?pi(g.stateNode.nextSibling):null;return!0}function lc(){pl=$u=null,il=!1}var Dl=[];function Vc(){for(var g=0;g<Dl.length;g++)Dl[g]._workInProgressVersionPrimary=null;Dl.length=0}var kl=N.ReactCurrentDispatcher,Ou=N.ReactCurrentBatchConfig,Vl=0,mo=null,ru=null,fu=null,Yl=!1,Al=!1;function zu(){throw Error(c(321))}function du(g,T){if(T===null)return!1;for(var $=0;$<T.length&&$<g.length;$++)if(!Hn(g[$],T[$]))return!1;return!0}function pf(g,T,$,ve,De,rt){if(Vl=rt,mo=T,T.memoizedState=null,T.updateQueue=null,T.lanes=0,kl.current=g===null||g.memoizedState===null?To:Dc,g=$(ve,De),Al){rt=0;do{if(Al=!1,!(25>rt))throw Error(c(301));rt+=1,fu=ru=null,T.updateQueue=null,kl.current=Jc,g=$(ve,De)}while(Al)}if(kl.current=cc,T=ru!==null&&ru.next!==null,Vl=0,fu=ru=mo=null,Yl=!1,T)throw Error(c(300));return g}function Du(){var g={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return fu===null?mo.memoizedState=fu=g:fu=fu.next=g,fu}function xu(){if(ru===null){var g=mo.alternate;g=g!==null?g.memoizedState:null}else g=ru.next;var T=fu===null?mo.memoizedState:fu.next;if(T!==null)fu=T,ru=g;else{if(g===null)throw Error(c(310));ru=g,g={memoizedState:ru.memoizedState,baseState:ru.baseState,baseQueue:ru.baseQueue,queue:ru.queue,next:null},fu===null?mo.memoizedState=fu=g:fu=fu.next=g}return fu}function Vu(g,T){return typeof T=="function"?T(g):T}function Tc(g){var T=xu(),$=T.queue;if($===null)throw Error(c(311));$.lastRenderedReducer=g;var ve=ru,De=ve.baseQueue,rt=$.pending;if(rt!==null){if(De!==null){var Ut=De.next;De.next=rt.next,rt.next=Ut}ve.baseQueue=De=rt,$.pending=null}if(De!==null){De=De.next,ve=ve.baseState;var fr=Ut=rt=null,Dr=De;do{var vn=Dr.lane;if((Vl&vn)===vn)fr!==null&&(fr=fr.next={lane:0,action:Dr.action,eagerReducer:Dr.eagerReducer,eagerState:Dr.eagerState,next:null}),ve=Dr.eagerReducer===g?Dr.eagerState:g(ve,Dr.action);else{var Pi={lane:vn,action:Dr.action,eagerReducer:Dr.eagerReducer,eagerState:Dr.eagerState,next:null};fr===null?(Ut=fr=Pi,rt=ve):fr=fr.next=Pi,mo.lanes|=vn,Io|=vn}Dr=Dr.next}while(Dr!==null&&Dr!==De);fr===null?rt=ve:fr.next=Ut,Hn(ve,T.memoizedState)||(Zu=!0),T.memoizedState=ve,T.baseState=rt,T.baseQueue=fr,$.lastRenderedState=ve}return[T.memoizedState,$.dispatch]}function Rl(g){var T=xu(),$=T.queue;if($===null)throw Error(c(311));$.lastRenderedReducer=g;var ve=$.dispatch,De=$.pending,rt=T.memoizedState;if(De!==null){$.pending=null;var Ut=De=De.next;do rt=g(rt,Ut.action),Ut=Ut.next;while(Ut!==De);Hn(rt,T.memoizedState)||(Zu=!0),T.memoizedState=rt,T.baseQueue===null&&(T.baseState=rt),$.lastRenderedState=rt}return[rt,ve]}function Ta(g,T,$){var ve=T._getVersion;ve=ve(T._source);var De=T._workInProgressVersionPrimary;if(De!==null?g=De===ve:(g=g.mutableReadLanes,(g=(Vl&g)===g)&&(T._workInProgressVersionPrimary=ve,Dl.push(T))),g)return $(T._source);throw Dl.push(T),Error(c(350))}function mf(g,T,$,ve){var De=dn;if(De===null)throw Error(c(349));var rt=T._getVersion,Ut=rt(T._source),fr=kl.current,Dr=fr.useState(function(){return Ta(De,T,$)}),vn=Dr[1],Pi=Dr[0];Dr=fu;var Ua=g.memoizedState,Kn=Ua.refs,la=Kn.getSnapshot,$a=Ua.source;Ua=Ua.subscribe;var ka=mo;return g.memoizedState={refs:Kn,source:T,subscribe:ve},fr.useEffect(function(){Kn.getSnapshot=$,Kn.setSnapshot=vn;var nn=rt(T._source);if(!Hn(Ut,nn)){nn=$(T._source),Hn(Pi,nn)||(vn(nn),nn=Il(ka),De.mutableReadLanes|=nn&De.pendingLanes),nn=De.mutableReadLanes,De.entangledLanes|=nn;for(var jr=De.entanglements,rn=nn;0<rn;){var On=31-yn(rn),Un=1<<On;jr[On]|=nn,rn&=~Un}}},[$,T,ve]),fr.useEffect(function(){return ve(T._source,function(){var nn=Kn.getSnapshot,jr=Kn.setSnapshot;try{jr(nn(T._source));var rn=Il(ka);De.mutableReadLanes|=rn&De.pendingLanes}catch(On){jr(function(){throw On})}})},[T,ve]),Hn(la,$)&&Hn($a,T)&&Hn(Ua,ve)||(g={pending:null,dispatch:null,lastRenderedReducer:Vu,lastRenderedState:Pi},g.dispatch=vn=gf.bind(null,mo,g),Dr.queue=g,Dr.baseQueue=null,Pi=Ta(De,T,$),Dr.memoizedState=Dr.baseState=Pi),Pi}function Yc(g,T,$){var ve=xu();return mf(ve,g,T,$)}function ml(g){var T=Du();return typeof g=="function"&&(g=g()),T.memoizedState=T.baseState=g,g=T.queue={pending:null,dispatch:null,lastRenderedReducer:Vu,lastRenderedState:g},g=g.dispatch=gf.bind(null,mo,g),[T.memoizedState,g]}function Qc(g,T,$,ve){return g={tag:g,create:T,destroy:$,deps:ve,next:null},T=mo.updateQueue,T===null?(T={lastEffect:null},mo.updateQueue=T,T.lastEffect=g.next=g):($=T.lastEffect,$===null?T.lastEffect=g.next=g:(ve=$.next,$.next=g,g.next=ve,T.lastEffect=g)),g}function Df(g){var T=Du();return g={current:g},T.memoizedState=g}function Cc(){return xu().memoizedState}function ku(g,T,$,ve){var De=Du();mo.flags|=g,De.memoizedState=Qc(1|T,$,void 0,ve===void 0?null:ve)}function _f(g,T,$,ve){var De=xu();ve=ve===void 0?null:ve;var rt=void 0;if(ru!==null){var Ut=ru.memoizedState;if(rt=Ut.destroy,ve!==null&&du(ve,Ut.deps)){Qc(T,$,rt,ve);return}}mo.flags|=g,De.memoizedState=Qc(1|T,$,rt,ve)}function Ic(g,T){return ku(516,4,g,T)}function Ql(g,T){return _f(516,4,g,T)}function vf(g,T){return _f(4,2,g,T)}function Pc(g,T){if(typeof T=="function")return g=g(),T(g),function(){T(null)};if(T!=null)return g=g(),T.current=g,function(){T.current=null}}function Ru(g,T,$){return $=$!=null?$.concat([g]):null,_f(4,2,Pc.bind(null,T,g),$)}function _l(){}function Oc(g,T){var $=xu();T=T===void 0?null:T;var ve=$.memoizedState;return ve!==null&&T!==null&&du(T,ve[1])?ve[0]:($.memoizedState=[g,T],g)}function vl(g,T){var $=xu();T=T===void 0?null:T;var ve=$.memoizedState;return ve!==null&&T!==null&&du(T,ve[1])?ve[0]:(g=g(),$.memoizedState=[g,T],g)}function Xc(g,T){var $=$t();Ir(98>$?98:$,function(){g(!0)}),Ir(97<$?97:$,function(){var ve=Ou.transition;Ou.transition=1;try{g(!1),T()}finally{Ou.transition=ve}})}function gf(g,T,$){var ve=Nu(),De=Il(g),rt={lane:De,action:$,eagerReducer:null,eagerState:null,next:null},Ut=T.pending;if(Ut===null?rt.next=rt:(rt.next=Ut.next,Ut.next=rt),T.pending=rt,Ut=g.alternate,g===mo||Ut!==null&&Ut===mo)Al=Yl=!0;else{if(g.lanes===0&&(Ut===null||Ut.lanes===0)&&(Ut=T.lastRenderedReducer,Ut!==null))try{var fr=T.lastRenderedState,Dr=Ut(fr,$);if(rt.eagerReducer=Ut,rt.eagerState=Dr,Hn(Dr,fr))return}catch(vn){}finally{}tc(g,De,ve)}}var cc={readContext:Oa,useCallback:zu,useContext:zu,useEffect:zu,useImperativeHandle:zu,useLayoutEffect:zu,useMemo:zu,useReducer:zu,useRef:zu,useState:zu,useDebugValue:zu,useDeferredValue:zu,useTransition:zu,useMutableSource:zu,useOpaqueIdentifier:zu,unstable_isNewReconciler:!1},To={readContext:Oa,useCallback:function(g,T){return Du().memoizedState=[g,T===void 0?null:T],g},useContext:Oa,useEffect:Ic,useImperativeHandle:function(g,T,$){return $=$!=null?$.concat([g]):null,ku(4,2,Pc.bind(null,T,g),$)},useLayoutEffect:function(g,T){return ku(4,2,g,T)},useMemo:function(g,T){var $=Du();return T=T===void 0?null:T,g=g(),$.memoizedState=[g,T],g},useReducer:function(g,T,$){var ve=Du();return T=$!==void 0?$(T):T,ve.memoizedState=ve.baseState=T,g=ve.queue={pending:null,dispatch:null,lastRenderedReducer:g,lastRenderedState:T},g=g.dispatch=gf.bind(null,mo,g),[ve.memoizedState,g]},useRef:Df,useState:ml,useDebugValue:_l,useDeferredValue:function(g){var T=ml(g),$=T[0],ve=T[1];return Ic(function(){var De=Ou.transition;Ou.transition=1;try{ve(g)}finally{Ou.transition=De}},[g]),$},useTransition:function(){var g=ml(!1),T=g[0];return g=Xc.bind(null,g[1]),Df(g),[g,T]},useMutableSource:function(g,T,$){var ve=Du();return ve.memoizedState={refs:{getSnapshot:T,setSnapshot:null},source:g,subscribe:$},mf(ve,g,T,$)},useOpaqueIdentifier:function(){if(il){var g=!1,T=Qs(function(){throw g||(g=!0,$("r:"+(Eo++).toString(36))),Error(c(355))}),$=ml(T)[1];return!(mo.mode&2)&&(mo.flags|=516,Qc(5,function(){$("r:"+(Eo++).toString(36))},void 0,null)),T}return T="r:"+(Eo++).toString(36),ml(T),T},unstable_isNewReconciler:!1},Dc={readContext:Oa,useCallback:Oc,useContext:Oa,useEffect:Ql,useImperativeHandle:Ru,useLayoutEffect:vf,useMemo:vl,useReducer:Tc,useRef:Cc,useState:function(){return Tc(Vu)},useDebugValue:_l,useDeferredValue:function(g){var T=Tc(Vu),$=T[0],ve=T[1];return Ql(function(){var De=Ou.transition;Ou.transition=1;try{ve(g)}finally{Ou.transition=De}},[g]),$},useTransition:function(){var g=Tc(Vu)[0];return[Cc().current,g]},useMutableSource:Yc,useOpaqueIdentifier:function(){return Tc(Vu)[0]},unstable_isNewReconciler:!1},Jc={readContext:Oa,useCallback:Oc,useContext:Oa,useEffect:Ql,useImperativeHandle:Ru,useLayoutEffect:vf,useMemo:vl,useReducer:Rl,useRef:Cc,useState:function(){return Rl(Vu)},useDebugValue:_l,useDeferredValue:function(g){var T=Rl(Vu),$=T[0],ve=T[1];return Ql(function(){var De=Ou.transition;Ou.transition=1;try{ve(g)}finally{Ou.transition=De}},[g]),$},useTransition:function(){var g=Rl(Vu)[0];return[Cc().current,g]},useMutableSource:Yc,useOpaqueIdentifier:function(){return Rl(Vu)[0]},unstable_isNewReconciler:!1},gl=N.ReactCurrentOwner,Zu=!1;function Co(g,T,$,ve){T.child=g===null?Zl(T,null,$,ve):bu(T,g.child,$,ve)}function Ll(g,T,$,ve,De){$=$.render;var rt=T.ref;return vs(T,De),ve=pf(g,T,$,ve,rt,De),g!==null&&!Zu?(T.updateQueue=g.updateQueue,T.flags&=-517,g.lanes&=~De,Mu(g,T,De)):(T.flags|=1,Co(g,T,ve,De),T.child)}function kf(g,T,$,ve,De,rt){if(g===null){var Ut=$.type;return typeof Ut=="function"&&!Af(Ut)&&Ut.defaultProps===void 0&&$.compare===null&&$.defaultProps===void 0?(T.tag=15,T.type=Ut,kc(g,T,Ut,ve,De,rt)):(g=Uc($.type,null,ve,T,T.mode,rt),g.ref=T.ref,g.return=T,T.child=g)}return Ut=g.child,!(De&rt)&&(De=Ut.memoizedProps,$=$.compare,$=$!==null?$:ra,$(De,ve)&&g.ref===T.ref)?Mu(g,T,rt):(T.flags|=1,g=Pl(Ut,ve),g.ref=T.ref,g.return=T,T.child=g)}function kc(g,T,$,ve,De,rt){if(g!==null&&ra(g.memoizedProps,ve)&&g.ref===T.ref)if(Zu=!1,(rt&De)!==0)g.flags&16384&&(Zu=!0);else return T.lanes=g.lanes,Mu(g,T,rt);return bo(g,T,$,ve,rt)}function Yu(g,T,$){var ve=T.pendingProps,De=ve.children,rt=g!==null?g.memoizedState:null;if(ve.mode==="hidden"||ve.mode==="unstable-defer-without-hiding")if(!(T.mode&4))T.memoizedState={baseLanes:0},sa(T,$);else if($&1073741824)T.memoizedState={baseLanes:0},sa(T,rt!==null?rt.baseLanes:$);else return g=rt!==null?rt.baseLanes|$:$,T.lanes=T.childLanes=1073741824,T.memoizedState={baseLanes:g},sa(T,g),null;else rt!==null?(ve=rt.baseLanes|$,T.memoizedState=null):ve=$,sa(T,ve);return Co(g,T,De,$),T.child}function Xs(g,T){var $=T.ref;(g===null&&$!==null||g!==null&&g.ref!==$)&&(T.flags|=128)}function bo(g,T,$,ve,De){var rt=Zs($)?kt:Va.current;return rt=Pa(T,rt),vs(T,De),$=pf(g,T,$,ve,rt,De),g!==null&&!Zu?(T.updateQueue=g.updateQueue,T.flags&=-517,g.lanes&=~De,Mu(g,T,De)):(T.flags|=1,Co(g,T,$,De),T.child)}function Lu(g,T,$,ve,De){if(Zs($)){var rt=!0;jt(T)}else rt=!1;if(vs(T,De),T.stateNode===null)g!==null&&(g.alternate=null,T.alternate=null,T.flags|=2),nl(T,$,ve),Gu(T,$,ve,De),ve=!0;else if(g===null){var Ut=T.stateNode,fr=T.memoizedProps;Ut.props=fr;var Dr=Ut.context,vn=$.contextType;typeof vn=="object"&&vn!==null?vn=Oa(vn):(vn=Zs($)?kt:Va.current,vn=Pa(T,vn));var Pi=$.getDerivedStateFromProps,Ua=typeof Pi=="function"||typeof Ut.getSnapshotBeforeUpdate=="function";Ua||typeof Ut.UNSAFE_componentWillReceiveProps!="function"&&typeof Ut.componentWillReceiveProps!="function"||(fr!==ve||Dr!==vn)&&Hs(T,Ut,ve,vn),fo=!1;var Kn=T.memoizedState;Ut.state=Kn,Ws(T,ve,Ut,De),Dr=T.memoizedState,fr!==ve||Kn!==Dr||Vt.current||fo?(typeof Pi=="function"&&(oc(T,$,Pi,ve),Dr=T.memoizedState),(fr=fo||Sl(T,$,fr,ve,Kn,Dr,vn))?(Ua||typeof Ut.UNSAFE_componentWillMount!="function"&&typeof Ut.componentWillMount!="function"||(typeof Ut.componentWillMount=="function"&&Ut.componentWillMount(),typeof Ut.UNSAFE_componentWillMount=="function"&&Ut.UNSAFE_componentWillMount()),typeof Ut.componentDidMount=="function"&&(T.flags|=4)):(typeof Ut.componentDidMount=="function"&&(T.flags|=4),T.memoizedProps=ve,T.memoizedState=Dr),Ut.props=ve,Ut.state=Dr,Ut.context=vn,ve=fr):(typeof Ut.componentDidMount=="function"&&(T.flags|=4),ve=!1)}else{Ut=T.stateNode,yr(g,T),fr=T.memoizedProps,vn=T.type===T.elementType?fr:qn(T.type,fr),Ut.props=vn,Ua=T.pendingProps,Kn=Ut.context,Dr=$.contextType,typeof Dr=="object"&&Dr!==null?Dr=Oa(Dr):(Dr=Zs($)?kt:Va.current,Dr=Pa(T,Dr));var la=$.getDerivedStateFromProps;(Pi=typeof la=="function"||typeof Ut.getSnapshotBeforeUpdate=="function")||typeof Ut.UNSAFE_componentWillReceiveProps!="function"&&typeof Ut.componentWillReceiveProps!="function"||(fr!==Ua||Kn!==Dr)&&Hs(T,Ut,ve,Dr),fo=!1,Kn=T.memoizedState,Ut.state=Kn,Ws(T,ve,Ut,De);var $a=T.memoizedState;fr!==Ua||Kn!==$a||Vt.current||fo?(typeof la=="function"&&(oc(T,$,la,ve),$a=T.memoizedState),(vn=fo||Sl(T,$,vn,ve,Kn,$a,Dr))?(Pi||typeof Ut.UNSAFE_componentWillUpdate!="function"&&typeof Ut.componentWillUpdate!="function"||(typeof Ut.componentWillUpdate=="function"&&Ut.componentWillUpdate(ve,$a,Dr),typeof Ut.UNSAFE_componentWillUpdate=="function"&&Ut.UNSAFE_componentWillUpdate(ve,$a,Dr)),typeof Ut.componentDidUpdate=="function"&&(T.flags|=4),typeof Ut.getSnapshotBeforeUpdate=="function"&&(T.flags|=256)):(typeof Ut.componentDidUpdate!="function"||fr===g.memoizedProps&&Kn===g.memoizedState||(T.flags|=4),typeof Ut.getSnapshotBeforeUpdate!="function"||fr===g.memoizedProps&&Kn===g.memoizedState||(T.flags|=256),T.memoizedProps=ve,T.memoizedState=$a),Ut.props=ve,Ut.state=$a,Ut.context=Dr,ve=vn):(typeof Ut.componentDidUpdate!="function"||fr===g.memoizedProps&&Kn===g.memoizedState||(T.flags|=4),typeof Ut.getSnapshotBeforeUpdate!="function"||fr===g.memoizedProps&&Kn===g.memoizedState||(T.flags|=256),ve=!1)}return Ue(g,T,$,ve,rt,De)}function Ue(g,T,$,ve,De,rt){Xs(g,T);var Ut=(T.flags&64)!==0;if(!ve&&!Ut)return De&&wr(T,$,!1),Mu(g,T,rt);ve=T.stateNode,gl.current=T;var fr=Ut&&typeof $.getDerivedStateFromError!="function"?null:ve.render();return T.flags|=1,g!==null&&Ut?(T.child=bu(T,g.child,null,rt),T.child=bu(T,null,fr,rt)):Co(g,T,fr,rt),T.memoizedState=ve.state,De&&wr(T,$,!0),T.child}function Qu(g){var T=g.stateNode;T.pendingContext?En(g,T.pendingContext,T.pendingContext!==T.context):T.context&&En(g,T.context,!1),Hl(g,T.containerInfo)}var Au={dehydrated:null,retryLane:0};function fc(g,T,$){var ve=T.pendingProps,De=ho.current,rt=!1,Ut;return(Ut=(T.flags&64)!==0)||(Ut=g!==null&&g.memoizedState===null?!1:(De&2)!==0),Ut?(rt=!0,T.flags&=-65):g!==null&&g.memoizedState===null||ve.fallback===void 0||ve.unstable_avoidThisFallback===!0||(De|=1),us(ho,De&1),g===null?(ve.fallback!==void 0&&Ao(T),g=ve.children,De=ve.fallback,rt?(g=hu(T,g,De,$),T.child.memoizedState={baseLanes:$},T.memoizedState=Au,g):typeof ve.unstable_expectedLoadTime=="number"?(g=hu(T,g,De,$),T.child.memoizedState={baseLanes:$},T.memoizedState=Au,T.lanes=33554432,g):($=Tf({mode:"visible",children:g},T.mode,$,null),$.return=T,T.child=$)):g.memoizedState!==null?rt?(ve=dc(g,T,ve.children,ve.fallback,$),rt=T.child,De=g.child.memoizedState,rt.memoizedState=De===null?{baseLanes:$}:{baseLanes:De.baseLanes|$},rt.childLanes=g.childLanes&~$,T.memoizedState=Au,ve):($=Xu(g,T,ve.children,$),T.memoizedState=null,$):rt?(ve=dc(g,T,ve.children,ve.fallback,$),rt=T.child,De=g.child.memoizedState,rt.memoizedState=De===null?{baseLanes:$}:{baseLanes:De.baseLanes|$},rt.childLanes=g.childLanes&~$,T.memoizedState=Au,ve):($=Xu(g,T,ve.children,$),T.memoizedState=null,$)}function hu(g,T,$,ve){var De=g.mode,rt=g.child;return T={mode:"hidden",children:T},!(De&2)&&rt!==null?(rt.childLanes=0,rt.pendingProps=T):rt=Tf(T,De,0,null),$=uu($,De,ve,null),rt.return=g,$.return=g,rt.sibling=$,g.child=rt,$}function Xu(g,T,$,ve){var De=g.child;return g=De.sibling,$=Pl(De,{mode:"visible",children:$}),!(T.mode&2)&&($.lanes=ve),$.return=T,$.sibling=null,g!==null&&(g.nextEffect=null,g.flags=8,T.firstEffect=T.lastEffect=g),T.child=$}function dc(g,T,$,ve,De){var rt=T.mode,Ut=g.child;g=Ut.sibling;var fr={mode:"hidden",children:$};return!(rt&2)&&T.child!==Ut?($=T.child,$.childLanes=0,$.pendingProps=fr,Ut=$.lastEffect,Ut!==null?(T.firstEffect=$.firstEffect,T.lastEffect=Ut,Ut.nextEffect=null):T.firstEffect=T.lastEffect=null):$=Pl(Ut,fr),g!==null?ve=Pl(g,ve):(ve=uu(ve,rt,De,null),ve.flags|=2),ve.return=T,$.return=T,$.sibling=ve,T.child=$,ve}function hc(g,T){g.lanes|=T;var $=g.alternate;$!==null&&($.lanes|=T),js(g.return,T)}function al(g,T,$,ve,De,rt){var Ut=g.memoizedState;Ut===null?g.memoizedState={isBackwards:T,rendering:null,renderingStartTime:0,last:ve,tail:$,tailMode:De,lastEffect:rt}:(Ut.isBackwards=T,Ut.rendering=null,Ut.renderingStartTime=0,Ut.last=ve,Ut.tail=$,Ut.tailMode=De,Ut.lastEffect=rt)}function sl(g,T,$){var ve=T.pendingProps,De=ve.revealOrder,rt=ve.tail;if(Co(g,T,ve.children,$),ve=ho.current,ve&2)ve=ve&1|2,T.flags|=64;else{if(g!==null&&g.flags&64)e:for(g=T.child;g!==null;){if(g.tag===13)g.memoizedState!==null&&hc(g,$);else if(g.tag===19)hc(g,$);else if(g.child!==null){g.child.return=g,g=g.child;continue}if(g===T)break e;for(;g.sibling===null;){if(g.return===null||g.return===T)break e;g=g.return}g.sibling.return=g.return,g=g.sibling}ve&=1}if(us(ho,ve),!(T.mode&2))T.memoizedState=null;else switch(De){case"forwards":for($=T.child,De=null;$!==null;)g=$.alternate,g!==null&&Hc(g)===null&&(De=$),$=$.sibling;$=De,$===null?(De=T.child,T.child=null):(De=$.sibling,$.sibling=null),al(T,!1,De,$,rt,T.lastEffect);break;case"backwards":for($=null,De=T.child,T.child=null;De!==null;){if(g=De.alternate,g!==null&&Hc(g)===null){T.child=De;break}g=De.sibling,De.sibling=$,$=De,De=g}al(T,!0,$,null,rt,T.lastEffect);break;case"together":al(T,!1,null,null,void 0,T.lastEffect);break;default:T.memoizedState=null}return T.child}function Mu(g,T,$){if(g!==null&&(T.dependencies=g.dependencies),Io|=T.lanes,$&T.childLanes){if(g!==null&&T.child!==g.child)throw Error(c(153));if(T.child!==null){for(g=T.child,$=Pl(g,g.pendingProps),T.child=$,$.return=T;g.sibling!==null;)g=g.sibling,$=$.sibling=Pl(g,g.pendingProps),$.return=T;$.sibling=null}return T.child}return null}var yf,pc,Tu,yl;yf=function(g,T){for(var $=T.child;$!==null;){if($.tag===5||$.tag===6)g.appendChild($.stateNode);else if($.tag!==4&&$.child!==null){$.child.return=$,$=$.child;continue}if($===T)break;for(;$.sibling===null;){if($.return===null||$.return===T)return;$=$.return}$.sibling.return=$.return,$=$.sibling}},pc=function(){},Tu=function(g,T,$,ve){var De=g.memoizedProps;if(De!==ve){g=T.stateNode,tu(au.current);var rt=null;switch($){case"input":De=ot(g,De),ve=ot(g,ve),rt=[];break;case"option":De=Xe(g,De),ve=Xe(g,ve),rt=[];break;case"select":De=i({},De,{value:void 0}),ve=i({},ve,{value:void 0}),rt=[];break;case"textarea":De=pt(g,De),ve=pt(g,ve),rt=[];break;default:typeof De.onClick!="function"&&typeof ve.onClick=="function"&&(g.onclick=ni)}Ae($,ve);var Ut;$=null;for(vn in De)if(!ve.hasOwnProperty(vn)&&De.hasOwnProperty(vn)&&De[vn]!=null)if(vn==="style"){var fr=De[vn];for(Ut in fr)fr.hasOwnProperty(Ut)&&($||($={}),$[Ut]="")}else vn!=="dangerouslySetInnerHTML"&&vn!=="children"&&vn!=="suppressContentEditableWarning"&&vn!=="suppressHydrationWarning"&&vn!=="autoFocus"&&(o.hasOwnProperty(vn)?rt||(rt=[]):(rt=rt||[]).push(vn,null));for(vn in ve){var Dr=ve[vn];if(fr=De!=null?De[vn]:void 0,ve.hasOwnProperty(vn)&&Dr!==fr&&(Dr!=null||fr!=null))if(vn==="style")if(fr){for(Ut in fr)!fr.hasOwnProperty(Ut)||Dr&&Dr.hasOwnProperty(Ut)||($||($={}),$[Ut]="");for(Ut in Dr)Dr.hasOwnProperty(Ut)&&fr[Ut]!==Dr[Ut]&&($||($={}),$[Ut]=Dr[Ut])}else $||(rt||(rt=[]),rt.push(vn,$)),$=Dr;else vn==="dangerouslySetInnerHTML"?(Dr=Dr?Dr.__html:void 0,fr=fr?fr.__html:void 0,Dr!=null&&fr!==Dr&&(rt=rt||[]).push(vn,Dr)):vn==="children"?typeof Dr!="string"&&typeof Dr!="number"||(rt=rt||[]).push(vn,""+Dr):vn!=="suppressContentEditableWarning"&&vn!=="suppressHydrationWarning"&&(o.hasOwnProperty(vn)?(Dr!=null&&vn==="onScroll"&&Pe("scroll",g),rt||fr===Dr||(rt=[])):typeof Dr=="object"&&Dr!==null&&Dr.$$typeof===z?Dr.toString():(rt=rt||[]).push(vn,Dr))}$&&(rt=rt||[]).push("style",$);var vn=rt;(T.updateQueue=vn)&&(T.flags|=4)}},yl=function(g,T,$,ve){$!==ve&&(T.flags|=4)};function Fu(g,T){if(!il)switch(g.tailMode){case"hidden":T=g.tail;for(var $=null;T!==null;)T.alternate!==null&&($=T),T=T.sibling;$===null?g.tail=null:$.sibling=null;break;case"collapsed":$=g.tail;for(var ve=null;$!==null;)$.alternate!==null&&(ve=$),$=$.sibling;ve===null?T||g.tail===null?g.tail=null:g.tail.sibling=null:ve.sibling=null}}function $f(g,T,$){var ve=T.pendingProps;switch(T.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:return Zs(T.type)&&_n(),null;case 3:return Gl(),Ha(Vt),Ha(Va),Vc(),ve=T.stateNode,ve.pendingContext&&(ve.context=ve.pendingContext,ve.pendingContext=null),(g===null||g.child===null)&&(Kl(T)?T.flags|=4:ve.hydrate||(T.flags|=256)),pc(T),null;case 5:uc(T);var De=tu(Wl.current);if($=T.type,g!==null&&T.stateNode!=null)Tu(g,T,$,ve,De),g.ref!==T.ref&&(T.flags|=128);else{if(!ve){if(T.stateNode===null)throw Error(c(166));return null}if(g=tu(au.current),Kl(T)){ve=T.stateNode,$=T.type;var rt=T.memoizedProps;switch(ve[fs]=T,ve[ya]=rt,$){case"dialog":Pe("cancel",ve),Pe("close",ve);break;case"iframe":case"object":case"embed":Pe("load",ve);break;case"video":case"audio":for(g=0;g<cs.length;g++)Pe(cs[g],ve);break;case"source":Pe("error",ve);break;case"img":case"image":case"link":Pe("error",ve),Pe("load",ve);break;case"details":Pe("toggle",ve);break;case"input":Je(ve,rt),Pe("invalid",ve);break;case"select":ve._wrapperState={wasMultiple:!!rt.multiple},Pe("invalid",ve);break;case"textarea":or(ve,rt),Pe("invalid",ve)}Ae($,rt),g=null;for(var Ut in rt)rt.hasOwnProperty(Ut)&&(De=rt[Ut],Ut==="children"?typeof De=="string"?ve.textContent!==De&&(g=["children",De]):typeof De=="number"&&ve.textContent!==""+De&&(g=["children",""+De]):o.hasOwnProperty(Ut)&&De!=null&&Ut==="onScroll"&&Pe("scroll",ve));switch($){case"input":Mt(ve),ke(ve,rt,!0);break;case"textarea":Mt(ve),Me(ve);break;case"select":case"option":break;default:typeof rt.onClick=="function"&&(ve.onclick=ni)}ve=g,T.updateQueue=ve,ve!==null&&(T.flags|=4)}else{switch(Ut=De.nodeType===9?De:De.ownerDocument,g===tt.html&&(g=Yt($)),g===tt.html?$==="script"?(g=Ut.createElement("div"),g.innerHTML="<script><\/script>",g=g.removeChild(g.firstChild)):typeof ve.is=="string"?g=Ut.createElement($,{is:ve.is}):(g=Ut.createElement($),$==="select"&&(Ut=g,ve.multiple?Ut.multiple=!0:ve.size&&(Ut.size=ve.size))):g=Ut.createElementNS(g,$),g[fs]=T,g[ya]=ve,yf(g,T,!1,!1),T.stateNode=g,Ut=st($,ve),$){case"dialog":Pe("cancel",g),Pe("close",g),De=ve;break;case"iframe":case"object":case"embed":Pe("load",g),De=ve;break;case"video":case"audio":for(De=0;De<cs.length;De++)Pe(cs[De],g);De=ve;break;case"source":Pe("error",g),De=ve;break;case"img":case"image":case"link":Pe("error",g),Pe("load",g),De=ve;break;case"details":Pe("toggle",g),De=ve;break;case"input":Je(g,ve),De=ot(g,ve),Pe("invalid",g);break;case"option":De=Xe(g,ve);break;case"select":g._wrapperState={wasMultiple:!!ve.multiple},De=i({},ve,{value:void 0}),Pe("invalid",g);break;case"textarea":or(g,ve),De=pt(g,ve),Pe("invalid",g);break;default:De=ve}Ae($,De);var fr=De;for(rt in fr)if(fr.hasOwnProperty(rt)){var Dr=fr[rt];rt==="style"?pe(g,Dr):rt==="dangerouslySetInnerHTML"?(Dr=Dr?Dr.__html:void 0,Dr!=null&&Ht(g,Dr)):rt==="children"?typeof Dr=="string"?($!=="textarea"||Dr!=="")&&lr(g,Dr):typeof Dr=="number"&&lr(g,""+Dr):rt!=="suppressContentEditableWarning"&&rt!=="suppressHydrationWarning"&&rt!=="autoFocus"&&(o.hasOwnProperty(rt)?Dr!=null&&rt==="onScroll"&&Pe("scroll",g):Dr!=null&&B(g,rt,Dr,Ut))}switch($){case"input":Mt(g),ke(g,ve,!1);break;case"textarea":Mt(g),Me(g);break;case"option":ve.value!=null&&g.setAttribute("value",""+ar(ve.value));break;case"select":g.multiple=!!ve.multiple,rt=ve.value,rt!=null?ut(g,!!ve.multiple,rt,!1):ve.defaultValue!=null&&ut(g,!!ve.multiple,ve.defaultValue,!0);break;default:typeof De.onClick=="function"&&(g.onclick=ni)}na($,ve)&&(T.flags|=4)}T.ref!==null&&(T.flags|=128)}return null;case 6:if(g&&T.stateNode!=null)yl(g,T,g.memoizedProps,ve);else{if(typeof ve!="string"&&T.stateNode===null)throw Error(c(166));$=tu(Wl.current),tu(au.current),Kl(T)?(ve=T.stateNode,$=T.memoizedProps,ve[fs]=T,ve.nodeValue!==$&&(T.flags|=4)):(ve=($.nodeType===9?$:$.ownerDocument).createTextNode(ve),ve[fs]=T,T.stateNode=ve)}return null;case 13:return Ha(ho),ve=T.memoizedState,T.flags&64?(T.lanes=$,T):(ve=ve!==null,$=!1,g===null?T.memoizedProps.fallback!==void 0&&Kl(T):$=g.memoizedState!==null,ve&&!$&&T.mode&2&&(g===null&&T.memoizedProps.unstable_avoidThisFallback!==!0||ho.current&1?Ga===0&&(Ga=3):((Ga===0||Ga===3)&&(Ga=4),dn===null||!(Io&134217727)&&!(Gs&134217727)||Iu(dn,pn))),(ve||$)&&(T.flags|=4),null);case 4:return Gl(),pc(T),g===null&&_t(T.stateNode.containerInfo),null;case 10:return Fs(T),null;case 17:return Zs(T.type)&&_n(),null;case 19:if(Ha(ho),ve=T.memoizedState,ve===null)return null;if(rt=(T.flags&64)!==0,Ut=ve.rendering,Ut===null)if(rt)Fu(ve,!1);else{if(Ga!==0||g!==null&&g.flags&64)for(g=T.child;g!==null;){if(Ut=Hc(g),Ut!==null){for(T.flags|=64,Fu(ve,!1),rt=Ut.updateQueue,rt!==null&&(T.updateQueue=rt,T.flags|=4),ve.lastEffect===null&&(T.firstEffect=null),T.lastEffect=ve.lastEffect,ve=$,$=T.child;$!==null;)rt=$,g=ve,rt.flags&=2,rt.nextEffect=null,rt.firstEffect=null,rt.lastEffect=null,Ut=rt.alternate,Ut===null?(rt.childLanes=0,rt.lanes=g,rt.child=null,rt.memoizedProps=null,rt.memoizedState=null,rt.updateQueue=null,rt.dependencies=null,rt.stateNode=null):(rt.childLanes=Ut.childLanes,rt.lanes=Ut.lanes,rt.child=Ut.child,rt.memoizedProps=Ut.memoizedProps,rt.memoizedState=Ut.memoizedState,rt.updateQueue=Ut.updateQueue,rt.type=Ut.type,g=Ut.dependencies,rt.dependencies=g===null?null:{lanes:g.lanes,firstContext:g.firstContext}),$=$.sibling;return us(ho,ho.current&1|2),T.child}g=g.sibling}ve.tail!==null&&wt()>rf&&(T.flags|=64,rt=!0,Fu(ve,!1),T.lanes=33554432)}else{if(!rt)if(g=Hc(Ut),g!==null){if(T.flags|=64,rt=!0,$=g.updateQueue,$!==null&&(T.updateQueue=$,T.flags|=4),Fu(ve,!0),ve.tail===null&&ve.tailMode==="hidden"&&!Ut.alternate&&!il)return T=T.lastEffect=ve.lastEffect,T!==null&&(T.nextEffect=null),null}else 2*wt()-ve.renderingStartTime>rf&&$!==1073741824&&(T.flags|=64,rt=!0,Fu(ve,!1),T.lanes=33554432);ve.isBackwards?(Ut.sibling=T.child,T.child=Ut):($=ve.last,$!==null?$.sibling=Ut:T.child=Ut,ve.last=Ut)}return ve.tail!==null?($=ve.tail,ve.rendering=$,ve.tail=$.sibling,ve.lastEffect=T.lastEffect,ve.renderingStartTime=wt(),$.sibling=null,T=ho.current,us(ho,rt?T&1|2:T&1),$):null;case 23:case 24:return wa(),g!==null&&g.memoizedState!==null!=(T.memoizedState!==null)&&ve.mode!=="unstable-defer-without-hiding"&&(T.flags|=4),null}throw Error(c(156,T.tag))}function qc(g){switch(g.tag){case 1:Zs(g.type)&&_n();var T=g.flags;return T&4096?(g.flags=T&-4097|64,g):null;case 3:if(Gl(),Ha(Vt),Ha(Va),Vc(),T=g.flags,T&64)throw Error(c(285));return g.flags=T&-4097|64,g;case 5:return uc(g),null;case 13:return Ha(ho),T=g.flags,T&4096?(g.flags=T&-4097|64,g):null;case 19:return Ha(ho),null;case 4:return Gl(),null;case 10:return Fs(g),null;case 23:case 24:return wa(),null;default:return null}}function Vo(g,T){try{var $="",ve=T;do $+=Zt(ve),ve=ve.return;while(ve);var De=$}catch(rt){De=`
Error generating stack: `+rt.message+`
`+rt.stack}return{value:g,source:T,stack:De}}function Ml(g,T){try{console.error(T.value)}catch($){setTimeout(function(){throw $})}}var Rc=typeof WeakMap=="function"?WeakMap:Map;function mc(g,T,$){$=ko(-1,$),$.tag=3,$.payload={element:null};var ve=T.value;return $.callback=function(){Tl||(Tl=!0,Nc=ve),Ml(g,T)},$}function _c(g,T,$){$=ko(-1,$),$.tag=3;var ve=g.type.getDerivedStateFromError;if(typeof ve=="function"){var De=T.value;$.payload=function(){return Ml(g,T),ve(De)}}var rt=g.stateNode;return rt!==null&&typeof rt.componentDidCatch=="function"&&($.callback=function(){typeof ve!="function"&&(su===null?su=new Set([this]):su.add(this),Ml(g,T));var Ut=T.stack;this.componentDidCatch(T.value,{componentStack:Ut!==null?Ut:""})}),$}var vc=typeof WeakSet=="function"?WeakSet:Set;function gc(g){var T=g.ref;if(T!==null)if(typeof T=="function")try{T(null)}catch($){tl(g,$)}else T.current=null}function Rf(g,T){switch(T.tag){case 0:case 11:case 15:case 22:return;case 1:if(T.flags&256&&g!==null){var $=g.memoizedProps,ve=g.memoizedState;g=T.stateNode,T=g.getSnapshotBeforeUpdate(T.elementType===T.type?$:qn(T.type,$),ve),g.__reactInternalSnapshotBeforeUpdate=T}return;case 3:T.flags&256&&Ii(T.stateNode.containerInfo);return;case 5:case 6:case 4:case 17:return}throw Error(c(163))}function Lc(g,T,$){switch($.tag){case 0:case 11:case 15:case 22:if(T=$.updateQueue,T=T!==null?T.lastEffect:null,T!==null){g=T=T.next;do{if((g.tag&3)===3){var ve=g.create;g.destroy=ve()}g=g.next}while(g!==T)}if(T=$.updateQueue,T=T!==null?T.lastEffect:null,T!==null){g=T=T.next;do{var De=g;ve=De.next,De=De.tag,De&4&&De&1&&(af($,g),Lf($,g)),g=ve}while(g!==T)}return;case 1:g=$.stateNode,$.flags&4&&(T===null?g.componentDidMount():(ve=$.elementType===$.type?T.memoizedProps:qn($.type,T.memoizedProps),g.componentDidUpdate(ve,T.memoizedState,g.__reactInternalSnapshotBeforeUpdate))),T=$.updateQueue,T!==null&&qo($,T,g);return;case 3:if(T=$.updateQueue,T!==null){if(g=null,$.child!==null)switch($.child.tag){case 5:g=$.child.stateNode;break;case 1:g=$.child.stateNode}qo($,T,g)}return;case 5:g=$.stateNode,T===null&&$.flags&4&&na($.type,$.memoizedProps)&&g.focus();return;case 6:return;case 4:return;case 12:return;case 13:$.memoizedState===null&&($=$.alternate,$!==null&&($=$.memoizedState,$!==null&&($=$.dehydrated,$!==null&&nt($))));return;case 19:case 17:case 20:case 21:case 23:case 24:return}throw Error(c(163))}function Xl(g,T){for(var $=g;;){if($.tag===5){var ve=$.stateNode;if(T)ve=ve.style,typeof ve.setProperty=="function"?ve.setProperty("display","none","important"):ve.display="none";else{ve=$.stateNode;var De=$.memoizedProps.style;De=De!=null&&De.hasOwnProperty("display")?De.display:null,ve.style.display=ce("display",De)}}else if($.tag===6)$.stateNode.nodeValue=T?"":$.memoizedProps;else if(($.tag!==23&&$.tag!==24||$.memoizedState===null||$===g)&&$.child!==null){$.child.return=$,$=$.child;continue}if($===g)break;for(;$.sibling===null;){if($.return===null||$.return===g)return;$=$.return}$.sibling.return=$.return,$=$.sibling}}function Jl(g,T){if(Jr&&typeof Jr.onCommitFiberUnmount=="function")try{Jr.onCommitFiberUnmount(Rr,T)}catch(rt){}switch(T.tag){case 0:case 11:case 14:case 15:case 22:if(g=T.updateQueue,g!==null&&(g=g.lastEffect,g!==null)){var $=g=g.next;do{var ve=$,De=ve.destroy;if(ve=ve.tag,De!==void 0)if(ve&4)af(T,$);else{ve=T;try{De()}catch(rt){tl(ve,rt)}}$=$.next}while($!==g)}break;case 1:if(gc(T),g=T.stateNode,typeof g.componentWillUnmount=="function")try{g.props=T.memoizedProps,g.state=T.memoizedState,g.componentWillUnmount()}catch(rt){tl(T,rt)}break;case 5:gc(T);break;case 4:Mc(g,T)}}function bf(g){g.alternate=null,g.child=null,g.dependencies=null,g.firstEffect=null,g.lastEffect=null,g.memoizedProps=null,g.memoizedState=null,g.pendingProps=null,g.return=null,g.updateQueue=null}function ef(g){return g.tag===5||g.tag===3||g.tag===4}function ol(g){e:{for(var T=g.return;T!==null;){if(ef(T))break e;T=T.return}throw Error(c(160))}var $=T;switch(T=$.stateNode,$.tag){case 5:var ve=!1;break;case 3:T=T.containerInfo,ve=!0;break;case 4:T=T.containerInfo,ve=!0;break;default:throw Error(c(161))}$.flags&16&&(lr(T,""),$.flags&=-17);e:t:for($=g;;){for(;$.sibling===null;){if($.return===null||ef($.return)){$=null;break e}$=$.return}for($.sibling.return=$.return,$=$.sibling;$.tag!==5&&$.tag!==6&&$.tag!==18;){if($.flags&2||$.child===null||$.tag===4)continue t;$.child.return=$,$=$.child}if(!($.flags&2)){$=$.stateNode;break e}}ve?yc(g,$,T):bc(g,$,T)}function yc(g,T,$){var ve=g.tag,De=ve===5||ve===6;if(De)g=De?g.stateNode:g.stateNode.instance,T?$.nodeType===8?$.parentNode.insertBefore(g,T):$.insertBefore(g,T):($.nodeType===8?(T=$.parentNode,T.insertBefore(g,$)):(T=$,T.appendChild(g)),$=$._reactRootContainer,$!=null||T.onclick!==null||(T.onclick=ni));else if(ve!==4&&(g=g.child,g!==null))for(yc(g,T,$),g=g.sibling;g!==null;)yc(g,T,$),g=g.sibling}function bc(g,T,$){var ve=g.tag,De=ve===5||ve===6;if(De)g=De?g.stateNode:g.stateNode.instance,T?$.insertBefore(g,T):$.appendChild(g);else if(ve!==4&&(g=g.child,g!==null))for(bc(g,T,$),g=g.sibling;g!==null;)bc(g,T,$),g=g.sibling}function Mc(g,T){for(var $=T,ve=!1,De,rt;;){if(!ve){ve=$.return;e:for(;;){if(ve===null)throw Error(c(160));switch(De=ve.stateNode,ve.tag){case 5:rt=!1;break e;case 3:De=De.containerInfo,rt=!0;break e;case 4:De=De.containerInfo,rt=!0;break e}ve=ve.return}ve=!0}if($.tag===5||$.tag===6){e:for(var Ut=g,fr=$,Dr=fr;;)if(Jl(Ut,Dr),Dr.child!==null&&Dr.tag!==4)Dr.child.return=Dr,Dr=Dr.child;else{if(Dr===fr)break e;for(;Dr.sibling===null;){if(Dr.return===null||Dr.return===fr)break e;Dr=Dr.return}Dr.sibling.return=Dr.return,Dr=Dr.sibling}rt?(Ut=De,fr=$.stateNode,Ut.nodeType===8?Ut.parentNode.removeChild(fr):Ut.removeChild(fr)):De.removeChild($.stateNode)}else if($.tag===4){if($.child!==null){De=$.stateNode.containerInfo,rt=!0,$.child.return=$,$=$.child;continue}}else if(Jl(g,$),$.child!==null){$.child.return=$,$=$.child;continue}if($===T)break;for(;$.sibling===null;){if($.return===null||$.return===T)return;$=$.return,$.tag===4&&(ve=!1)}$.sibling.return=$.return,$=$.sibling}}function Fc(g,T){switch(T.tag){case 0:case 11:case 14:case 15:case 22:var $=T.updateQueue;if($=$!==null?$.lastEffect:null,$!==null){var ve=$=$.next;do(ve.tag&3)===3&&(g=ve.destroy,ve.destroy=void 0,g!==void 0&&g()),ve=ve.next;while(ve!==$)}return;case 1:return;case 5:if($=T.stateNode,$!=null){ve=T.memoizedProps;var De=g!==null?g.memoizedProps:ve;g=T.type;var rt=T.updateQueue;if(T.updateQueue=null,rt!==null){for($[ya]=ve,g==="input"&&ve.type==="radio"&&ve.name!=null&&Ne($,ve),st(g,De),T=st(g,ve),De=0;De<rt.length;De+=2){var Ut=rt[De],fr=rt[De+1];Ut==="style"?pe($,fr):Ut==="dangerouslySetInnerHTML"?Ht($,fr):Ut==="children"?lr($,fr):B($,Ut,fr,T)}switch(g){case"input":ye($,ve);break;case"textarea":tr($,ve);break;case"select":g=$._wrapperState.wasMultiple,$._wrapperState.wasMultiple=!!ve.multiple,rt=ve.value,rt!=null?ut($,!!ve.multiple,rt,!1):g!==!!ve.multiple&&(ve.defaultValue!=null?ut($,!!ve.multiple,ve.defaultValue,!0):ut($,!!ve.multiple,ve.multiple?[]:"",!1))}}}return;case 6:if(T.stateNode===null)throw Error(c(162));T.stateNode.nodeValue=T.memoizedProps;return;case 3:$=T.stateNode,$.hydrate&&($.hydrate=!1,nt($.containerInfo));return;case 12:return;case 13:T.memoizedState!==null&&(Bc=wt(),Xl(T.child,!0)),xf(T);return;case 19:xf(T);return;case 17:return;case 23:case 24:Xl(T,T.memoizedState!==null);return}throw Error(c(163))}function xf(g){var T=g.updateQueue;if(T!==null){g.updateQueue=null;var $=g.stateNode;$===null&&($=g.stateNode=new vc),T.forEach(function(ve){var De=ll.bind(null,g,ve);$.has(ve)||($.add(ve),ve.then(De,De))})}}function C(g,T){return g!==null&&(g=g.memoizedState,g===null||g.dehydrated!==null)?(T=T.memoizedState,T!==null&&T.dehydrated===null):!1}var O=Math.ceil,L=N.ReactCurrentDispatcher,_e=N.ReactCurrentOwner,Oe=0,dn=null,Pn=null,pn=0,Mi=0,ds=qs(0),Ga=0,Yo=null,is=0,Io=0,Gs=0,tf=0,ql=null,Bc=0,rf=1/0;function Ju(){rf=wt()+500}var Ti=null,Tl=!1,Nc=null,su=null,_o=!1,gs=null,bl=90,ec=[],xl=[],Fl=null,Cl=0,Ef=null,Bu=-1,Bl=0,nf=0,Nl=null,wf=!1;function Nu(){return Oe&48?wt():Bu!==-1?Bu:Bu=wt()}function Il(g){if(g=g.mode,!(g&2))return 1;if(!(g&4))return $t()===99?1:2;if(Bl===0&&(Bl=is),Wn.transition!==0){nf!==0&&(nf=ql!==null?ql.pendingLanes:0),g=Bl;var T=4186112&~nf;return T&=-T,T===0&&(g=4186112&~g,T=g&-g,T===0&&(T=8192)),T}return g=$t(),Oe&4&&g===98?g=Zr(12,Bl):(g=sr(g),g=Zr(g,Bl)),g}function tc(g,T,$){if(50<Cl)throw Cl=0,Ef=null,Error(c(185));if(g=jc(g,T),g===null)return null;un(g,T,$),g===dn&&(Gs|=T,Ga===4&&Iu(g,pn));var ve=$t();T===1?Oe&8&&!(Oe&48)?Mn(g):(Wu(g,$),Oe===0&&(Ju(),fn())):(!(Oe&4)||ve!==98&&ve!==99||(Fl===null?Fl=new Set([g]):Fl.add(g)),Wu(g,$)),ql=g}function jc(g,T){g.lanes|=T;var $=g.alternate;for($!==null&&($.lanes|=T),$=g,g=g.return;g!==null;)g.childLanes|=T,$=g.alternate,$!==null&&($.childLanes|=T),$=g,g=g.return;return $.tag===3?$.stateNode:null}function Wu(g,T){for(var $=g.callbackNode,ve=g.suspendedLanes,De=g.pingedLanes,rt=g.expirationTimes,Ut=g.pendingLanes;0<Ut;){var fr=31-yn(Ut),Dr=1<<fr,vn=rt[fr];if(vn===-1){if(!(Dr&ve)||Dr&De){vn=T,ge(Dr);var Pi=ct;rt[fr]=10<=Pi?vn+250:6<=Pi?vn+5e3:-1}}else vn<=T&&(g.expiredLanes|=Dr);Ut&=~Dr}if(ve=kr(g,g===dn?pn:0),T=ct,ve===0)$!==null&&($!==Z&&ui($),g.callbackNode=null,g.callbackPriority=0);else{if($!==null){if(g.callbackPriority===T)return;$!==Z&&ui($)}T===15?($=Mn.bind(null,g),te===null?(te=[$],he=Xi(Es,Cn)):te.push($),$=Z):T===14?$=Yr(99,Mn.bind(null,g)):($=nr(T),$=Yr($,Cu.bind(null,g))),g.callbackPriority=T,g.callbackNode=$}}function Cu(g){if(Bu=-1,nf=Bl=0,Oe&48)throw Error(c(327));var T=g.callbackNode;if(rc()&&g.callbackNode!==T)return null;var $=kr(g,g===dn?pn:0);if($===0)return null;var ve=$,De=Oe;Oe|=16;var rt=oa();(dn!==g||pn!==ve)&&(Ju(),va(g,ve));do try{ul();break}catch(fr){Bs(g,fr)}while(!0);if(Ts(),L.current=rt,Oe=De,Pn!==null?ve=0:(dn=null,pn=0,ve=Ga),is&Gs)va(g,0);else if(ve!==0){if(ve===2&&(Oe|=64,g.hydrate&&(g.hydrate=!1,Ii(g.containerInfo)),$=Hr(g),$!==0&&(ve=Us(g,$))),ve===1)throw T=Yo,va(g,0),Iu(g,$),Wu(g,wt()),T;switch(g.finishedWork=g.current.alternate,g.finishedLanes=$,ve){case 0:case 1:throw Error(c(345));case 2:jl(g);break;case 3:if(Iu(g,$),($&62914560)===$&&(ve=Bc+500-wt(),10<ve)){if(kr(g,0)!==0)break;if(De=g.suspendedLanes,(De&$)!==$){Nu(),g.pingedLanes|=g.suspendedLanes&De;break}g.timeoutHandle=Ci(jl.bind(null,g),ve);break}jl(g);break;case 4:if(Iu(g,$),($&4186112)===$)break;for(ve=g.eventTimes,De=-1;0<$;){var Ut=31-yn($);rt=1<<Ut,Ut=ve[Ut],Ut>De&&(De=Ut),$&=~rt}if($=De,$=wt()-$,$=(120>$?120:480>$?480:1080>$?1080:1920>$?1920:3e3>$?3e3:4320>$?4320:1960*O($/1960))-$,10<$){g.timeoutHandle=Ci(jl.bind(null,g),$);break}jl(g);break;case 5:jl(g);break;default:throw Error(c(329))}}return Wu(g,wt()),g.callbackNode===T?Cu.bind(null,g):null}function Iu(g,T){for(T&=~tf,T&=~Gs,g.suspendedLanes|=T,g.pingedLanes&=~T,g=g.expirationTimes;0<T;){var $=31-yn(T),ve=1<<$;g[$]=-1,T&=~ve}}function Mn(g){if(Oe&48)throw Error(c(327));if(rc(),g===dn&&g.expiredLanes&pn){var T=pn,$=Us(g,T);is&Gs&&(T=kr(g,T),$=Us(g,T))}else T=kr(g,0),$=Us(g,T);if(g.tag!==0&&$===2&&(Oe|=64,g.hydrate&&(g.hydrate=!1,Ii(g.containerInfo)),T=Hr(g),T!==0&&($=Us(g,T))),$===1)throw $=Yo,va(g,0),Iu(g,T),Wu(g,wt()),$;return g.finishedWork=g.current.alternate,g.finishedLanes=T,jl(g),Wu(g,wt()),null}function ti(){if(Fl!==null){var g=Fl;Fl=null,g.forEach(function(T){T.expiredLanes|=24&T.pendingLanes,Wu(T,wt())})}fn()}function Gi(g,T){var $=Oe;Oe|=1;try{return g(T)}finally{Oe=$,Oe===0&&(Ju(),fn())}}function Ma(g,T){var $=Oe;Oe&=-2,Oe|=8;try{return g(T)}finally{Oe=$,Oe===0&&(Ju(),fn())}}function sa(g,T){us(ds,Mi),Mi|=T,is|=T}function wa(){Mi=ds.current,Ha(ds)}function va(g,T){g.finishedWork=null,g.finishedLanes=0;var $=g.timeoutHandle;if($!==-1&&(g.timeoutHandle=-1,Ia($)),Pn!==null)for($=Pn.return;$!==null;){var ve=$;switch(ve.tag){case 1:ve=ve.type.childContextTypes,ve!=null&&_n();break;case 3:Gl(),Ha(Vt),Ha(Va),Vc();break;case 5:uc(ve);break;case 4:Gl();break;case 13:Ha(ho);break;case 19:Ha(ho);break;case 10:Fs(ve);break;case 23:case 24:wa()}$=$.return}dn=g,Pn=Pl(g.current,null),pn=Mi=is=T,Ga=0,Yo=null,tf=Gs=Io=0}function Bs(g,T){do{var $=Pn;try{if(Ts(),kl.current=cc,Yl){for(var ve=mo.memoizedState;ve!==null;){var De=ve.queue;De!==null&&(De.pending=null),ve=ve.next}Yl=!1}if(Vl=0,fu=ru=mo=null,Al=!1,_e.current=null,$===null||$.return===null){Ga=1,Yo=T,Pn=null;break}e:{var rt=g,Ut=$.return,fr=$,Dr=T;if(T=pn,fr.flags|=2048,fr.firstEffect=fr.lastEffect=null,Dr!==null&&typeof Dr=="object"&&typeof Dr.then=="function"){var vn=Dr;if(!(fr.mode&2)){var Pi=fr.alternate;Pi?(fr.updateQueue=Pi.updateQueue,fr.memoizedState=Pi.memoizedState,fr.lanes=Pi.lanes):(fr.updateQueue=null,fr.memoizedState=null)}var Ua=(ho.current&1)!==0,Kn=Ut;do{var la;if(la=Kn.tag===13){var $a=Kn.memoizedState;if($a!==null)la=$a.dehydrated!==null;else{var ka=Kn.memoizedProps;la=ka.fallback===void 0?!1:ka.unstable_avoidThisFallback!==!0?!0:!Ua}}if(la){var nn=Kn.updateQueue;if(nn===null){var jr=new Set;jr.add(vn),Kn.updateQueue=jr}else nn.add(vn);if(!(Kn.mode&2)){if(Kn.flags|=64,fr.flags|=16384,fr.flags&=-2981,fr.tag===1)if(fr.alternate===null)fr.tag=17;else{var rn=ko(-1,1);rn.tag=2,Uo(fr,rn)}fr.lanes|=1;break e}Dr=void 0,fr=T;var On=rt.pingCache;if(On===null?(On=rt.pingCache=new Rc,Dr=new Set,On.set(vn,Dr)):(Dr=On.get(vn),Dr===void 0&&(Dr=new Set,On.set(vn,Dr))),!Dr.has(fr)){Dr.add(fr);var Un=Vf.bind(null,rt,vn,fr);vn.then(Un,Un)}Kn.flags|=4096,Kn.lanes=T;break e}Kn=Kn.return}while(Kn!==null);Dr=Error((Rt(fr.type)||"A React component")+` suspended while rendering, but no fallback UI was specified.
Add a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.`)}Ga!==5&&(Ga=2),Dr=Vo(Dr,fr),Kn=Ut;do{switch(Kn.tag){case 3:rt=Dr,Kn.flags|=4096,T&=-T,Kn.lanes|=T;var Ya=mc(Kn,rt,T);Su(Kn,Ya);break e;case 1:rt=Dr;var Ui=Kn.type,Qa=Kn.stateNode;if(!(Kn.flags&64)&&(typeof Ui.getDerivedStateFromError=="function"||Qa!==null&&typeof Qa.componentDidCatch=="function"&&(su===null||!su.has(Qa)))){Kn.flags|=4096,T&=-T,Kn.lanes|=T;var hs=_c(Kn,rt,T);Su(Kn,hs);break e}}Kn=Kn.return}while(Kn!==null)}el($)}catch(Ja){T=Ja,Pn===$&&$!==null&&(Pn=$=$.return);continue}break}while(!0)}function oa(){var g=L.current;return L.current=cc,g===null?cc:g}function Us(g,T){var $=Oe;Oe|=16;var ve=oa();dn===g&&pn===T||va(g,T);do try{qu();break}catch(De){Bs(g,De)}while(!0);if(Ts(),Oe=$,L.current=ve,Pn!==null)throw Error(c(261));return dn=null,pn=0,Ga}function qu(){for(;Pn!==null;)El(Pn)}function ul(){for(;Pn!==null&&!wo();)El(Pn)}function El(g){var T=uf(g.alternate,g,Mi);g.memoizedProps=g.pendingProps,T===null?el(g):Pn=T,_e.current=null}function el(g){var T=g;do{var $=T.alternate;if(g=T.return,T.flags&2048){if($=qc(T),$!==null){$.flags&=2047,Pn=$;return}g!==null&&(g.firstEffect=g.lastEffect=null,g.flags|=2048)}else{if($=$f($,T,Mi),$!==null){Pn=$;return}if($=T,$.tag!==24&&$.tag!==23||$.memoizedState===null||Mi&1073741824||!($.mode&4)){for(var ve=0,De=$.child;De!==null;)ve|=De.lanes|De.childLanes,De=De.sibling;$.childLanes=ve}g!==null&&!(g.flags&2048)&&(g.firstEffect===null&&(g.firstEffect=T.firstEffect),T.lastEffect!==null&&(g.lastEffect!==null&&(g.lastEffect.nextEffect=T.firstEffect),g.lastEffect=T.lastEffect),1<T.flags&&(g.lastEffect!==null?g.lastEffect.nextEffect=T:g.firstEffect=T,g.lastEffect=T))}if(T=T.sibling,T!==null){Pn=T;return}Pn=T=g}while(T!==null);Ga===0&&(Ga=5)}function jl(g){var T=$t();return Ir(99,Kf.bind(null,g,T)),null}function Kf(g,T){do rc();while(gs!==null);if(Oe&48)throw Error(c(327));var $=g.finishedWork;if($===null)return null;if(g.finishedWork=null,g.finishedLanes=0,$===g.current)throw Error(c(177));g.callbackNode=null;var ve=$.lanes|$.childLanes,De=ve,rt=g.pendingLanes&~De;g.pendingLanes=De,g.suspendedLanes=0,g.pingedLanes=0,g.expiredLanes&=De,g.mutableReadLanes&=De,g.entangledLanes&=De,De=g.entanglements;for(var Ut=g.eventTimes,fr=g.expirationTimes;0<rt;){var Dr=31-yn(rt),vn=1<<Dr;De[Dr]=0,Ut[Dr]=-1,fr[Dr]=-1,rt&=~vn}if(Fl!==null&&!(ve&24)&&Fl.has(g)&&Fl.delete(g),g===dn&&(Pn=dn=null,pn=0),1<$.flags?$.lastEffect!==null?($.lastEffect.nextEffect=$,ve=$.firstEffect):ve=$:ve=$.firstEffect,ve!==null){if(De=Oe,Oe|=32,_e.current=null,yi=Ba,Ut=Sa(),Ra(Ut)){if("selectionStart"in Ut)fr={start:Ut.selectionStart,end:Ut.selectionEnd};else e:if(fr=(fr=Ut.ownerDocument)&&fr.defaultView||window,(vn=fr.getSelection&&fr.getSelection())&&vn.rangeCount!==0){fr=vn.anchorNode,rt=vn.anchorOffset,Dr=vn.focusNode,vn=vn.focusOffset;try{fr.nodeType,Dr.nodeType}catch(Ja){fr=null;break e}var Pi=0,Ua=-1,Kn=-1,la=0,$a=0,ka=Ut,nn=null;t:for(;;){for(var jr;ka!==fr||rt!==0&&ka.nodeType!==3||(Ua=Pi+rt),ka!==Dr||vn!==0&&ka.nodeType!==3||(Kn=Pi+vn),ka.nodeType===3&&(Pi+=ka.nodeValue.length),(jr=ka.firstChild)!==null;)nn=ka,ka=jr;for(;;){if(ka===Ut)break t;if(nn===fr&&++la===rt&&(Ua=Pi),nn===Dr&&++$a===vn&&(Kn=Pi),(jr=ka.nextSibling)!==null)break;ka=nn,nn=ka.parentNode}ka=jr}fr=Ua===-1||Kn===-1?null:{start:Ua,end:Kn}}else fr=null;fr=fr||{start:0,end:0}}else fr=null;Li={focusedElem:Ut,selectionRange:fr},Ba=!1,Nl=null,wf=!1,Ti=ve;do try{Sf()}catch(Ja){if(Ti===null)throw Error(c(330));tl(Ti,Ja),Ti=Ti.nextEffect}while(Ti!==null);Nl=null,Ti=ve;do try{for(Ut=g;Ti!==null;){var rn=Ti.flags;if(rn&16&&lr(Ti.stateNode,""),rn&128){var On=Ti.alternate;if(On!==null){var Un=On.ref;Un!==null&&(typeof Un=="function"?Un(null):Un.current=null)}}switch(rn&1038){case 2:ol(Ti),Ti.flags&=-3;break;case 6:ol(Ti),Ti.flags&=-3,Fc(Ti.alternate,Ti);break;case 1024:Ti.flags&=-1025;break;case 1028:Ti.flags&=-1025,Fc(Ti.alternate,Ti);break;case 4:Fc(Ti.alternate,Ti);break;case 8:fr=Ti,Mc(Ut,fr);var Ya=fr.alternate;bf(fr),Ya!==null&&bf(Ya)}Ti=Ti.nextEffect}}catch(Ja){if(Ti===null)throw Error(c(330));tl(Ti,Ja),Ti=Ti.nextEffect}while(Ti!==null);if(Un=Li,On=Sa(),rn=Un.focusedElem,Ut=Un.selectionRange,On!==rn&&rn&&rn.ownerDocument&&Xn(rn.ownerDocument.documentElement,rn)){for(Ut!==null&&Ra(rn)&&(On=Ut.start,Un=Ut.end,Un===void 0&&(Un=On),"selectionStart"in rn?(rn.selectionStart=On,rn.selectionEnd=Math.min(Un,rn.value.length)):(Un=(On=rn.ownerDocument||document)&&On.defaultView||window,Un.getSelection&&(Un=Un.getSelection(),fr=rn.textContent.length,Ya=Math.min(Ut.start,fr),Ut=Ut.end===void 0?Ya:Math.min(Ut.end,fr),!Un.extend&&Ya>Ut&&(fr=Ut,Ut=Ya,Ya=fr),fr=Et(rn,Ya),rt=Et(rn,Ut),fr&&rt&&(Un.rangeCount!==1||Un.anchorNode!==fr.node||Un.anchorOffset!==fr.offset||Un.focusNode!==rt.node||Un.focusOffset!==rt.offset)&&(On=On.createRange(),On.setStart(fr.node,fr.offset),Un.removeAllRanges(),Ya>Ut?(Un.addRange(On),Un.extend(rt.node,rt.offset)):(On.setEnd(rt.node,rt.offset),Un.addRange(On)))))),On=[],Un=rn;Un=Un.parentNode;)Un.nodeType===1&&On.push({element:Un,left:Un.scrollLeft,top:Un.scrollTop});for(typeof rn.focus=="function"&&rn.focus(),rn=0;rn<On.length;rn++)Un=On[rn],Un.element.scrollLeft=Un.left,Un.element.scrollTop=Un.top}Ba=!!yi,Li=yi=null,g.current=$,Ti=ve;do try{for(rn=g;Ti!==null;){var Ui=Ti.flags;if(Ui&36&&Lc(rn,Ti.alternate,Ti),Ui&128){On=void 0;var Qa=Ti.ref;if(Qa!==null){var hs=Ti.stateNode;switch(Ti.tag){case 5:On=hs;break;default:On=hs}typeof Qa=="function"?Qa(On):Qa.current=On}}Ti=Ti.nextEffect}}catch(Ja){if(Ti===null)throw Error(c(330));tl(Ti,Ja),Ti=Ti.nextEffect}while(Ti!==null);Ti=null,Y(),Oe=De}else g.current=$;if(_o)_o=!1,gs=g,bl=T;else for(Ti=ve;Ti!==null;)T=Ti.nextEffect,Ti.nextEffect=null,Ti.flags&8&&(Ui=Ti,Ui.sibling=null,Ui.stateNode=null),Ti=T;if(ve=g.pendingLanes,ve===0&&(su=null),ve===1?g===Ef?Cl++:(Cl=0,Ef=g):Cl=0,$=$.stateNode,Jr&&typeof Jr.onCommitFiberRoot=="function")try{Jr.onCommitFiberRoot(Rr,$,void 0,($.current.flags&64)===64)}catch(Ja){}if(Wu(g,wt()),Tl)throw Tl=!1,g=Nc,Nc=null,g;return Oe&8||fn(),null}function Sf(){for(;Ti!==null;){var g=Ti.alternate;wf||Nl===null||(Ti.flags&8?ii(Ti,Nl)&&(wf=!0):Ti.tag===13&&C(g,Ti)&&ii(Ti,Nl)&&(wf=!0));var T=Ti.flags;T&256&&Rf(g,Ti),!(T&512)||_o||(_o=!0,Yr(97,function(){return rc(),null})),Ti=Ti.nextEffect}}function rc(){if(bl!==90){var g=97<bl?97:bl;return bl=90,Ir(g,sf)}return!1}function Lf(g,T){ec.push(T,g),_o||(_o=!0,Yr(97,function(){return rc(),null}))}function af(g,T){xl.push(T,g),_o||(_o=!0,Yr(97,function(){return rc(),null}))}function sf(){if(gs===null)return!1;var g=gs;if(gs=null,Oe&48)throw Error(c(331));var T=Oe;Oe|=32;var $=xl;xl=[];for(var ve=0;ve<$.length;ve+=2){var De=$[ve],rt=$[ve+1],Ut=De.destroy;if(De.destroy=void 0,typeof Ut=="function")try{Ut()}catch(Dr){if(rt===null)throw Error(c(330));tl(rt,Dr)}}for($=ec,ec=[],ve=0;ve<$.length;ve+=2){De=$[ve],rt=$[ve+1];try{var fr=De.create;De.destroy=fr()}catch(Dr){if(rt===null)throw Error(c(330));tl(rt,Dr)}}for(fr=g.current.firstEffect;fr!==null;)g=fr.nextEffect,fr.nextEffect=null,fr.flags&8&&(fr.sibling=null,fr.stateNode=null),fr=g;return Oe=T,fn(),!0}function of(g,T,$){T=Vo($,T),T=mc(g,T,1),Uo(g,T),T=Nu(),g=jc(g,1),g!==null&&(un(g,1,T),Wu(g,T))}function tl(g,T){if(g.tag===3)of(g,g,T);else for(var $=g.return;$!==null;){if($.tag===3){of($,g,T);break}else if($.tag===1){var ve=$.stateNode;if(typeof $.type.getDerivedStateFromError=="function"||typeof ve.componentDidCatch=="function"&&(su===null||!su.has(ve))){g=Vo(T,g);var De=_c($,g,1);if(Uo($,De),De=Nu(),$=jc($,1),$!==null)un($,1,De),Wu($,De);else if(typeof ve.componentDidCatch=="function"&&(su===null||!su.has(ve)))try{ve.componentDidCatch(T,g)}catch(rt){}break}}$=$.return}}function Vf(g,T,$){var ve=g.pingCache;ve!==null&&ve.delete(T),T=Nu(),g.pingedLanes|=g.suspendedLanes&$,dn===g&&(pn&$)===$&&(Ga===4||Ga===3&&(pn&62914560)===pn&&500>wt()-Bc?va(g,0):tf|=$),Wu(g,T)}function ll(g,T){var $=g.stateNode;$!==null&&$.delete(T),T=0,T===0&&(T=g.mode,T&2?T&4?(Bl===0&&(Bl=is),T=hn(62914560&~Bl),T===0&&(T=4194304)):T=$t()===99?1:2:T=1),$=Nu(),g=jc(g,T),g!==null&&(un(g,T,$),Wu(g,$))}var uf;uf=function(g,T,$){var ve=T.lanes;if(g!==null)if(g.memoizedProps!==T.pendingProps||Vt.current)Zu=!0;else if($&ve)Zu=!!(g.flags&16384);else{switch(Zu=!1,T.tag){case 3:Qu(T),lc();break;case 5:li(T);break;case 1:Zs(T.type)&&jt(T);break;case 4:Hl(T,T.stateNode.containerInfo);break;case 10:ve=T.memoizedProps.value;var De=T.type._context;us(Di,De._currentValue),De._currentValue=ve;break;case 13:if(T.memoizedState!==null)return $&T.child.childLanes?fc(g,T,$):(us(ho,ho.current&1),T=Mu(g,T,$),T!==null?T.sibling:null);us(ho,ho.current&1);break;case 19:if(ve=($&T.childLanes)!==0,g.flags&64){if(ve)return sl(g,T,$);T.flags|=64}if(De=T.memoizedState,De!==null&&(De.rendering=null,De.tail=null,De.lastEffect=null),us(ho,ho.current),ve)break;return null;case 23:case 24:return T.lanes=0,Yu(g,T,$)}return Mu(g,T,$)}else Zu=!1;switch(T.lanes=0,T.tag){case 2:if(ve=T.type,g!==null&&(g.alternate=null,T.alternate=null,T.flags|=2),g=T.pendingProps,De=Pa(T,Va.current),vs(T,$),De=pf(null,T,ve,g,De,$),T.flags|=1,typeof De=="object"&&De!==null&&typeof De.render=="function"&&De.$$typeof===void 0){if(T.tag=1,T.memoizedState=null,T.updateQueue=null,Zs(ve)){var rt=!0;jt(T)}else rt=!1;T.memoizedState=De.state!==null&&De.state!==void 0?De.state:null,ws(T);var Ut=ve.getDerivedStateFromProps;typeof Ut=="function"&&oc(T,ve,Ut,g),De.updater=wl,T.stateNode=De,De._reactInternals=T,Gu(T,ve,g,$),T=Ue(null,T,ve,!0,rt,$)}else T.tag=0,Co(null,T,De,$),T=T.child;return T;case 16:De=T.elementType;e:{switch(g!==null&&(g.alternate=null,T.alternate=null,T.flags|=2),g=T.pendingProps,rt=De._init,De=rt(De._payload),T.type=De,rt=T.tag=lf(De),g=qn(De,g),rt){case 0:T=bo(null,T,De,g,$);break e;case 1:T=Lu(null,T,De,g,$);break e;case 11:T=Ll(null,T,De,g,$);break e;case 14:T=kf(null,T,De,qn(De.type,g),ve,$);break e}throw Error(c(306,De,""))}return T;case 0:return ve=T.type,De=T.pendingProps,De=T.elementType===ve?De:qn(ve,De),bo(g,T,ve,De,$);case 1:return ve=T.type,De=T.pendingProps,De=T.elementType===ve?De:qn(ve,De),Lu(g,T,ve,De,$);case 3:if(Qu(T),ve=T.updateQueue,g===null||ve===null)throw Error(c(282));if(ve=T.pendingProps,De=T.memoizedState,De=De!==null?De.element:null,yr(g,T),Ws(T,ve,null,$),ve=T.memoizedState.element,ve===De)lc(),T=Mu(g,T,$);else{if(De=T.stateNode,(rt=De.hydrate)&&(pl=pi(T.stateNode.containerInfo.firstChild),$u=T,rt=il=!0),rt){if(g=De.mutableSourceEagerHydrationData,g!=null)for(De=0;De<g.length;De+=2)rt=g[De],rt._workInProgressVersionPrimary=g[De+1],Dl.push(rt);for($=Zl(T,null,ve,$),T.child=$;$;)$.flags=$.flags&-3|1024,$=$.sibling}else Co(g,T,ve,$),lc();T=T.child}return T;case 5:return li(T),g===null&&Ao(T),ve=T.type,De=T.pendingProps,rt=g!==null?g.memoizedProps:null,Ut=De.children,Wi(ve,De)?Ut=null:rt!==null&&Wi(ve,rt)&&(T.flags|=16),Xs(g,T),Co(g,T,Ut,$),T.child;case 6:return g===null&&Ao(T),null;case 13:return fc(g,T,$);case 4:return Hl(T,T.stateNode.containerInfo),ve=T.pendingProps,g===null?T.child=bu(T,null,ve,$):Co(g,T,ve,$),T.child;case 11:return ve=T.type,De=T.pendingProps,De=T.elementType===ve?De:qn(ve,De),Ll(g,T,ve,De,$);case 7:return Co(g,T,T.pendingProps,$),T.child;case 8:return Co(g,T,T.pendingProps.children,$),T.child;case 12:return Co(g,T,T.pendingProps.children,$),T.child;case 10:e:{ve=T.type._context,De=T.pendingProps,Ut=T.memoizedProps,rt=De.value;var fr=T.type._context;if(us(Di,fr._currentValue),fr._currentValue=rt,Ut!==null)if(fr=Ut.value,rt=Hn(fr,rt)?0:(typeof ve._calculateChangedBits=="function"?ve._calculateChangedBits(fr,rt):1073741823)|0,rt===0){if(Ut.children===De.children&&!Vt.current){T=Mu(g,T,$);break e}}else for(fr=T.child,fr!==null&&(fr.return=T);fr!==null;){var Dr=fr.dependencies;if(Dr!==null){Ut=fr.child;for(var vn=Dr.firstContext;vn!==null;){if(vn.context===ve&&vn.observedBits&rt){fr.tag===1&&(vn=ko(-1,$&-$),vn.tag=2,Uo(fr,vn)),fr.lanes|=$,vn=fr.alternate,vn!==null&&(vn.lanes|=$),js(fr.return,$),Dr.lanes|=$;break}vn=vn.next}}else Ut=fr.tag===10&&fr.type===T.type?null:fr.child;if(Ut!==null)Ut.return=fr;else for(Ut=fr;Ut!==null;){if(Ut===T){Ut=null;break}if(fr=Ut.sibling,fr!==null){fr.return=Ut.return,Ut=fr;break}Ut=Ut.return}fr=Ut}Co(g,T,De.children,$),T=T.child}return T;case 9:return De=T.type,rt=T.pendingProps,ve=rt.children,vs(T,$),De=Oa(De,rt.unstable_observedBits),ve=ve(De),T.flags|=1,Co(g,T,ve,$),T.child;case 14:return De=T.type,rt=qn(De,T.pendingProps),rt=qn(De.type,rt),kf(g,T,De,rt,ve,$);case 15:return kc(g,T,T.type,T.pendingProps,ve,$);case 17:return ve=T.type,De=T.pendingProps,De=T.elementType===ve?De:qn(ve,De),g!==null&&(g.alternate=null,T.alternate=null,T.flags|=2),T.tag=1,Zs(ve)?(g=!0,jt(T)):g=!1,vs(T,$),nl(T,ve,De),Gu(T,ve,De,$),Ue(null,T,ve,!0,g,$);case 19:return sl(g,T,$);case 23:return Yu(g,T,$);case 24:return Yu(g,T,$)}throw Error(c(156,T.tag))};function Mf(g,T,$,ve){this.tag=g,this.key=$,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=T,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=ve,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function ou(g,T,$,ve){return new Mf(g,T,$,ve)}function Af(g){return g=g.prototype,!(!g||!g.isReactComponent)}function lf(g){if(typeof g=="function")return Af(g)?1:0;if(g!=null){if(g=g.$$typeof,g===X)return 11;if(g===ee)return 14}return 2}function Pl(g,T){var $=g.alternate;return $===null?($=ou(g.tag,T,g.key,g.mode),$.elementType=g.elementType,$.type=g.type,$.stateNode=g.stateNode,$.alternate=g,g.alternate=$):($.pendingProps=T,$.type=g.type,$.flags=0,$.nextEffect=null,$.firstEffect=null,$.lastEffect=null),$.childLanes=g.childLanes,$.lanes=g.lanes,$.child=g.child,$.memoizedProps=g.memoizedProps,$.memoizedState=g.memoizedState,$.updateQueue=g.updateQueue,T=g.dependencies,$.dependencies=T===null?null:{lanes:T.lanes,firstContext:T.firstContext},$.sibling=g.sibling,$.index=g.index,$.ref=g.ref,$}function Uc(g,T,$,ve,De,rt){var Ut=2;if(ve=g,typeof g=="function")Af(g)&&(Ut=1);else if(typeof g=="string")Ut=5;else e:switch(g){case W:return uu($.children,De,rt,T);case j:Ut=8,De|=16;break;case ae:Ut=8,De|=1;break;case ne:return g=ou(12,$,T,De|8),g.elementType=ne,g.type=ne,g.lanes=rt,g;case V:return g=ou(13,$,T,De),g.type=V,g.elementType=V,g.lanes=rt,g;case se:return g=ou(19,$,T,De),g.elementType=se,g.lanes=rt,g;case ie:return Tf($,De,rt,T);case me:return g=ou(24,$,T,De),g.elementType=me,g.lanes=rt,g;default:if(typeof g=="object"&&g!==null)switch(g.$$typeof){case oe:Ut=10;break e;case q:Ut=9;break e;case X:Ut=11;break e;case ee:Ut=14;break e;case J:Ut=16,ve=null;break e;case le:Ut=22;break e}throw Error(c(130,g==null?g:typeof g,""))}return T=ou(Ut,$,T,De),T.elementType=g,T.type=ve,T.lanes=rt,T}function uu(g,T,$,ve){return g=ou(7,g,ve,T),g.lanes=$,g}function Tf(g,T,$,ve){return g=ou(23,g,ve,T),g.elementType=ie,g.lanes=$,g}function Cf(g,T,$){return g=ou(6,g,null,T),g.lanes=$,g}function cf(g,T,$){return T=ou(4,g.children!==null?g.children:[],g.key,T),T.lanes=$,T.stateNode={containerInfo:g.containerInfo,pendingChildren:null,implementation:g.implementation},T}function $c(g,T,$){this.tag=T,this.containerInfo=g,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=$,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Si(0),this.expirationTimes=Si(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Si(0),this.mutableSourceEagerHydrationData=null}function Ff(g,T,$){var ve=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:H,key:ve==null?null:""+ve,children:g,containerInfo:T,implementation:$}}function zc(g,T,$,ve){var De=T.current,rt=Nu(),Ut=Il(De);e:if($){$=$._reactInternals;t:{if(jn($)!==$||$.tag!==1)throw Error(c(170));var fr=$;do{switch(fr.tag){case 3:fr=fr.stateNode.context;break t;case 1:if(Zs(fr.type)){fr=fr.stateNode.__reactInternalMemoizedMergedChildContext;break t}}fr=fr.return}while(fr!==null);throw Error(c(171))}if($.tag===1){var Dr=$.type;if(Zs(Dr)){$=Ze($,Dr,fr);break e}}$=fr}else $=co;return T.context===null?T.context=$:T.pendingContext=$,T=ko(rt,Ut),T.payload={element:g},ve=ve===void 0?null:ve,ve!==null&&(T.callback=ve),Uo(De,T),tc(De,Ut,rt),Ut}function zf(g){if(g=g.current,!g.child)return null;switch(g.child.tag){case 5:return g.child.stateNode;default:return g.child.stateNode}}function Yf(g,T){if(g=g.memoizedState,g!==null&&g.dehydrated!==null){var $=g.retryLane;g.retryLane=$!==0&&$<T?$:T}}function Bf(g,T){Yf(g,T),(g=g.alternate)&&Yf(g,T)}function Qf(){return null}function Zf(g,T,$){var ve=$!=null&&$.hydrationOptions!=null&&$.hydrationOptions.mutableSources||null;if($=new $c(g,T,$!=null&&$.hydrate===!0),T=ou(3,null,null,T===2?7:T===1?3:0),$.current=T,T.stateNode=$,ws(T),g[_s]=$.current,_t(g.nodeType===8?g.parentNode:g),ve)for(g=0;g<ve.length;g++){T=ve[g];var De=T._getVersion;De=De(T._source),$.mutableSourceEagerHydrationData==null?$.mutableSourceEagerHydrationData=[T,De]:$.mutableSourceEagerHydrationData.push(T,De)}this._internalRoot=$}Zf.prototype.render=function(g){zc(g,this._internalRoot,null,null)},Zf.prototype.unmount=function(){var g=this._internalRoot,T=g.containerInfo;zc(null,g,null,function(){T[_s]=null})};function ff(g){return!(!g||g.nodeType!==1&&g.nodeType!==9&&g.nodeType!==11&&(g.nodeType!==8||g.nodeValue!==" react-mount-point-unstable "))}function id(g,T){if(T||(T=g?g.nodeType===9?g.documentElement:g.firstChild:null,T=!(!T||T.nodeType!==1||!T.hasAttribute("data-reactroot"))),!T)for(var $;$=g.lastChild;)g.removeChild($);return new Zf(g,0,T?{hydrate:!0}:void 0)}function Wf(g,T,$,ve,De){var rt=$._reactRootContainer;if(rt){var Ut=rt._internalRoot;if(typeof De=="function"){var fr=De;De=function(){var vn=zf(Ut);fr.call(vn)}}zc(T,Ut,g,De)}else{if(rt=$._reactRootContainer=id($,ve),Ut=rt._internalRoot,typeof De=="function"){var Dr=De;De=function(){var vn=zf(Ut);Dr.call(vn)}}Ma(function(){zc(T,Ut,g,De)})}return zf(Ut)}Bi=function(g){if(g.tag===13){var T=Nu();tc(g,4,T),Bf(g,4)}},Gn=function(g){if(g.tag===13){var T=Nu();tc(g,67108864,T),Bf(g,67108864)}},ci=function(g){if(g.tag===13){var T=Nu(),$=Il(g);tc(g,$,T),Bf(g,$)}},Oi=function(g,T){return T()},bt=function(g,T,$){switch(T){case"input":if(ye(g,$),T=$.name,$.type==="radio"&&T!=null){for($=g;$.parentNode;)$=$.parentNode;for($=$.querySelectorAll("input[name="+JSON.stringify(""+T)+'][type="radio"]'),T=0;T<$.length;T++){var ve=$[T];if(ve!==g&&ve.form===g.form){var De=xs(ve);if(!De)throw Error(c(90));et(ve),ye(ve,De)}}}break;case"textarea":tr(g,$);break;case"select":T=$.value,T!=null&&ut(g,!!$.multiple,T,!1)}},Pt=Gi,Be=function(g,T,$,ve,De){var rt=Oe;Oe|=4;try{return Ir(98,g.bind(null,T,$,ve,De))}finally{Oe=rt,Oe===0&&(Ju(),fn())}},Or=function(){!(Oe&49)&&(ti(),rc())},mt=function(g,T){var $=Oe;Oe|=2;try{return g(T)}finally{Oe=$,Oe===0&&(Ju(),fn())}};function Nf(g,T){var $=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!ff(T))throw Error(c(200));return Ff(g,T,null,$)}var ad={Events:[Ls,ao,xs,xe,dt,rc,{current:!1}]},If={findFiberByHostInstance:rs,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},qf={bundleType:If.bundleType,version:If.version,rendererPackageName:If.rendererPackageName,rendererConfig:If.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:N.ReactCurrentDispatcher,findHostInstanceByFiber:function(g){return g=Vr(g),g===null?null:g.stateNode},findFiberByHostInstance:If.findFiberByHostInstance||Qf,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!="undefined"){var Hf=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Hf.isDisabled&&Hf.supportsFiber)try{Rr=Hf.inject(qf),Jr=Hf}catch(g){}}v.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ad,v.createPortal=Nf,v.findDOMNode=function(g){if(g==null)return null;if(g.nodeType===1)return g;var T=g._reactInternals;if(T===void 0)throw typeof g.render=="function"?Error(c(188)):Error(c(268,Object.keys(g)));return g=Vr(T),g=g===null?null:g.stateNode,g},v.flushSync=function(g,T){var $=Oe;if($&48)return g(T);Oe|=1;try{if(g)return Ir(99,g.bind(null,T))}finally{Oe=$,fn()}},v.hydrate=function(g,T,$){if(!ff(T))throw Error(c(200));return Wf(null,g,T,!0,$)},v.render=function(g,T,$){if(!ff(T))throw Error(c(200));return Wf(null,g,T,!1,$)},v.unmountComponentAtNode=function(g){if(!ff(g))throw Error(c(40));return g._reactRootContainer?(Ma(function(){Wf(null,null,g,!1,function(){g._reactRootContainer=null,g[_s]=null})}),!0):!1},v.unstable_batchedUpdates=Gi,v.unstable_createPortal=function(g,T){return Nf(g,T,2<arguments.length&&arguments[2]!==void 0?arguments[2]:null)},v.unstable_renderSubtreeIntoContainer=function(g,T,$,ve){if(!ff($))throw Error(c(200));if(g==null||g._reactInternals===void 0)throw Error(c(38));return Wf(g,T,$,!1,ve)},v.version="17.0.2"},4676:function(d,v,e){"use strict";function r(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__=="undefined"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(r)}catch(i){console.error(i)}}r(),d.exports=e(23675)},12373:function(d){var v=typeof Element!="undefined",e=typeof Map=="function",r=typeof Set=="function",i=typeof ArrayBuffer=="function"&&!!ArrayBuffer.isView;function l(c,f){if(c===f)return!0;if(c&&f&&typeof c=="object"&&typeof f=="object"){if(c.constructor!==f.constructor)return!1;var o,h,u;if(Array.isArray(c)){if(o=c.length,o!=f.length)return!1;for(h=o;h--!==0;)if(!l(c[h],f[h]))return!1;return!0}var a;if(e&&c instanceof Map&&f instanceof Map){if(c.size!==f.size)return!1;for(a=c.entries();!(h=a.next()).done;)if(!f.has(h.value[0]))return!1;for(a=c.entries();!(h=a.next()).done;)if(!l(h.value[1],f.get(h.value[0])))return!1;return!0}if(r&&c instanceof Set&&f instanceof Set){if(c.size!==f.size)return!1;for(a=c.entries();!(h=a.next()).done;)if(!f.has(h.value[0]))return!1;return!0}if(i&&ArrayBuffer.isView(c)&&ArrayBuffer.isView(f)){if(o=c.length,o!=f.length)return!1;for(h=o;h--!==0;)if(c[h]!==f[h])return!1;return!0}if(c.constructor===RegExp)return c.source===f.source&&c.flags===f.flags;if(c.valueOf!==Object.prototype.valueOf&&typeof c.valueOf=="function"&&typeof f.valueOf=="function")return c.valueOf()===f.valueOf();if(c.toString!==Object.prototype.toString&&typeof c.toString=="function"&&typeof f.toString=="function")return c.toString()===f.toString();if(u=Object.keys(c),o=u.length,o!==Object.keys(f).length)return!1;for(h=o;h--!==0;)if(!Object.prototype.hasOwnProperty.call(f,u[h]))return!1;if(v&&c instanceof Element)return!1;for(h=o;h--!==0;)if(!((u[h]==="_owner"||u[h]==="__v"||u[h]==="__o")&&c.$$typeof)&&!l(c[u[h]],f[u[h]]))return!1;return!0}return c!==c&&f!==f}d.exports=function(f,o){try{return l(f,o)}catch(h){if((h.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw h}}},30508:function(d,v){"use strict";var e=typeof Symbol=="function"&&Symbol.for,r=e?Symbol.for("react.element"):60103,i=e?Symbol.for("react.portal"):60106,l=e?Symbol.for("react.fragment"):60107,c=e?Symbol.for("react.strict_mode"):60108,f=e?Symbol.for("react.profiler"):60114,o=e?Symbol.for("react.provider"):60109,h=e?Symbol.for("react.context"):60110,u=e?Symbol.for("react.async_mode"):60111,a=e?Symbol.for("react.concurrent_mode"):60111,x=e?Symbol.for("react.forward_ref"):60112,p=e?Symbol.for("react.suspense"):60113,y=e?Symbol.for("react.suspense_list"):60120,m=e?Symbol.for("react.memo"):60115,b=e?Symbol.for("react.lazy"):60116,S=e?Symbol.for("react.block"):60121,k=e?Symbol.for("react.fundamental"):60117,R=e?Symbol.for("react.responder"):60118,A=e?Symbol.for("react.scope"):60119;function P(B){if(typeof B=="object"&&B!==null){var N=B.$$typeof;switch(N){case r:switch(B=B.type,B){case u:case a:case l:case f:case c:case p:return B;default:switch(B=B&&B.$$typeof,B){case h:case x:case b:case m:case o:return B;default:return N}}case i:return N}}}function M(B){return P(B)===a}v.AsyncMode=u,v.ConcurrentMode=a,v.ContextConsumer=h,v.ContextProvider=o,v.Element=r,v.ForwardRef=x,v.Fragment=l,v.Lazy=b,v.Memo=m,v.Portal=i,v.Profiler=f,v.StrictMode=c,v.Suspense=p,v.isAsyncMode=function(B){return M(B)||P(B)===u},v.isConcurrentMode=M,v.isContextConsumer=function(B){return P(B)===h},v.isContextProvider=function(B){return P(B)===o},v.isElement=function(B){return typeof B=="object"&&B!==null&&B.$$typeof===r},v.isForwardRef=function(B){return P(B)===x},v.isFragment=function(B){return P(B)===l},v.isLazy=function(B){return P(B)===b},v.isMemo=function(B){return P(B)===m},v.isPortal=function(B){return P(B)===i},v.isProfiler=function(B){return P(B)===f},v.isStrictMode=function(B){return P(B)===c},v.isSuspense=function(B){return P(B)===p},v.isValidElementType=function(B){return typeof B=="string"||typeof B=="function"||B===l||B===a||B===f||B===c||B===p||B===y||typeof B=="object"&&B!==null&&(B.$$typeof===b||B.$$typeof===m||B.$$typeof===o||B.$$typeof===h||B.$$typeof===x||B.$$typeof===k||B.$$typeof===R||B.$$typeof===A||B.$$typeof===S)},v.typeOf=P},99234:function(d,v,e){"use strict";d.exports=e(30508)},88172:function(d,v){"use strict";var e=Symbol.for("react.element"),r=Symbol.for("react.portal"),i=Symbol.for("react.fragment"),l=Symbol.for("react.strict_mode"),c=Symbol.for("react.profiler"),f=Symbol.for("react.provider"),o=Symbol.for("react.context"),h=Symbol.for("react.server_context"),u=Symbol.for("react.forward_ref"),a=Symbol.for("react.suspense"),x=Symbol.for("react.suspense_list"),p=Symbol.for("react.memo"),y=Symbol.for("react.lazy"),m=Symbol.for("react.offscreen"),b;b=Symbol.for("react.module.reference");function S(k){if(typeof k=="object"&&k!==null){var R=k.$$typeof;switch(R){case e:switch(k=k.type,k){case i:case c:case l:case a:case x:return k;default:switch(k=k&&k.$$typeof,k){case h:case o:case u:case y:case p:case f:return k;default:return R}}case r:return R}}}v.ContextConsumer=o,v.ContextProvider=f,v.Element=e,v.ForwardRef=u,v.Fragment=i,v.Lazy=y,v.Memo=p,v.Portal=r,v.Profiler=c,v.StrictMode=l,v.Suspense=a,v.SuspenseList=x,v.isAsyncMode=function(){return!1},v.isConcurrentMode=function(){return!1},v.isContextConsumer=function(k){return S(k)===o},v.isContextProvider=function(k){return S(k)===f},v.isElement=function(k){return typeof k=="object"&&k!==null&&k.$$typeof===e},v.isForwardRef=function(k){return S(k)===u},v.isFragment=function(k){return S(k)===i},v.isLazy=function(k){return S(k)===y},v.isMemo=function(k){return S(k)===p},v.isPortal=function(k){return S(k)===r},v.isProfiler=function(k){return S(k)===c},v.isStrictMode=function(k){return S(k)===l},v.isSuspense=function(k){return S(k)===a},v.isSuspenseList=function(k){return S(k)===x},v.isValidElementType=function(k){return typeof k=="string"||typeof k=="function"||k===i||k===c||k===l||k===a||k===x||k===m||typeof k=="object"&&k!==null&&(k.$$typeof===y||k.$$typeof===p||k.$$typeof===f||k.$$typeof===o||k.$$typeof===u||k.$$typeof===b||k.getModuleId!==void 0)},v.typeOf=S},23265:function(d,v,e){"use strict";d.exports=e(88172)},32451:function(d,v,e){"use strict";e.d(v,{lr:function(){return k},rU:function(){return m}});var r=e(59301),i=e(35338),l=e(19340);function c(){return c=Object.assign||function(A){for(var P=1;P<arguments.length;P++){var M=arguments[P];for(var B in M)Object.prototype.hasOwnProperty.call(M,B)&&(A[B]=M[B])}return A},c.apply(this,arguments)}function f(A,P){if(A==null)return{};var M={},B=Object.keys(A),N,K;for(K=0;K<B.length;K++)N=B[K],!(P.indexOf(N)>=0)&&(M[N]=A[N]);return M}const o=["onClick","reloadDocument","replace","state","target","to"],h=null;function u(A,P){if(!A){typeof console!="undefined"&&console.warn(P);try{throw new Error(P)}catch(M){}}}function a(A){let{basename:P,children:M,window:B}=A,N=useRef();N.current==null&&(N.current=createBrowserHistory({window:B}));let K=N.current,[H,W]=useState({action:K.action,location:K.location});return useLayoutEffect(()=>K.listen(W),[K]),createElement(Router,{basename:P,children:M,location:H.location,navigationType:H.action,navigator:K})}function x(A){let{basename:P,children:M,window:B}=A,N=useRef();N.current==null&&(N.current=createHashHistory({window:B}));let K=N.current,[H,W]=useState({action:K.action,location:K.location});return useLayoutEffect(()=>K.listen(W),[K]),createElement(Router,{basename:P,children:M,location:H.location,navigationType:H.action,navigator:K})}function p(A){let{basename:P,children:M,history:B}=A;const[N,K]=useState({action:B.action,location:B.location});return useLayoutEffect(()=>B.listen(K),[B]),createElement(Router,{basename:P,children:M,location:N.location,navigationType:N.action,navigator:B})}function y(A){return!!(A.metaKey||A.altKey||A.ctrlKey||A.shiftKey)}const m=(0,r.forwardRef)(function(P,M){let{onClick:B,reloadDocument:N,replace:K=!1,state:H,target:W,to:ae}=P,ne=f(P,o),oe=(0,i.oQ)(ae),q=S(ae,{replace:K,state:H,target:W});function X(V){B&&B(V),!V.defaultPrevented&&!N&&q(V)}return(0,r.createElement)("a",c({},ne,{href:oe,onClick:X,ref:M,target:W}))}),b=null;function S(A,P){let{target:M,replace:B,state:N}=P===void 0?{}:P,K=(0,i.s0)(),H=(0,i.TH)(),W=(0,i.WU)(A);return(0,r.useCallback)(ae=>{if(ae.button===0&&(!M||M==="_self")&&!y(ae)){ae.preventDefault();let ne=!!B||(0,l.Ep)(H)===(0,l.Ep)(W);K(A,{replace:ne,state:N})}},[H,K,W,B,N,M,A])}function k(A){let P=(0,r.useRef)(R(A)),M=(0,i.TH)(),B=(0,r.useMemo)(()=>{let H=R(M.search);for(let W of P.current.keys())H.has(W)||P.current.getAll(W).forEach(ae=>{H.append(W,ae)});return H},[M.search]),N=(0,i.s0)(),K=(0,r.useCallback)((H,W)=>{N("?"+R(H),W)},[N]);return[B,K]}function R(A){return A===void 0&&(A=""),new URLSearchParams(typeof A=="string"||Array.isArray(A)||A instanceof URLSearchParams?A:Object.keys(A).reduce((P,M)=>{let B=A[M];return P.concat(Array.isArray(B)?B.map(N=>[M,N]):[[M,B]])},[]))}},35338:function(d,v,e){"use strict";e.d(v,{F0:function(){return et},Fg:function(){return $e},Gn:function(){return x},TH:function(){return ie},UO:function(){return ht},V$:function(){return Zt},WU:function(){return It},bx:function(){return je},fp:function(){return p},j3:function(){return gt},oQ:function(){return z},s0:function(){return Ie}});var r=e(19340),i=e(59301);const l=(0,i.createContext)(null),c=(0,i.createContext)(null),f=(0,i.createContext)({outlet:null,matches:[]});function o(Ne,ye){if(!Ne)throw new Error(ye)}function h(Ne,ye){if(!Ne){typeof console!="undefined"&&console.warn(ye);try{throw new Error(ye)}catch(ke){}}}const u={};function a(Ne,ye,ke){!ye&&!u[Ne]&&(u[Ne]=!0)}function x(Ne,ye){return ye===void 0&&(ye={}),Ne.replace(/:(\w+)/g,(ke,Ge)=>(ye[Ge]==null&&o(!1),ye[Ge])).replace(/\/*\*$/,ke=>ye["*"]==null?"":ye["*"].replace(/^\/*/,"/"))}function p(Ne,ye,ke){ke===void 0&&(ke="/");let Ge=typeof ye=="string"?(0,r.cP)(ye):ye,We=V(Ge.pathname||"/",ke);if(We==null)return null;let Xe=y(Ne);m(Xe);let ut=null;for(let pt=0;ut==null&&pt<Xe.length;++pt)ut=K(Xe[pt],We);return ut}function y(Ne,ye,ke,Ge){return ye===void 0&&(ye=[]),ke===void 0&&(ke=[]),Ge===void 0&&(Ge=""),Ne.forEach((We,Xe)=>{let ut={relativePath:We.path||"",caseSensitive:We.caseSensitive===!0,childrenIndex:Xe,route:We};ut.relativePath.startsWith("/")&&(ut.relativePath.startsWith(Ge)||o(!1),ut.relativePath=ut.relativePath.slice(Ge.length));let pt=se([Ge,ut.relativePath]),or=ke.concat(ut);We.children&&We.children.length>0&&(We.index===!0&&o(!1),y(We.children,ye,or,pt)),!(We.path==null&&!We.index)&&ye.push({path:pt,score:B(pt,We.index),routesMeta:or})}),ye}function m(Ne){Ne.sort((ye,ke)=>ye.score!==ke.score?ke.score-ye.score:N(ye.routesMeta.map(Ge=>Ge.childrenIndex),ke.routesMeta.map(Ge=>Ge.childrenIndex)))}const b=/^:\w+$/,S=3,k=2,R=1,A=10,P=-2,M=Ne=>Ne==="*";function B(Ne,ye){let ke=Ne.split("/"),Ge=ke.length;return ke.some(M)&&(Ge+=P),ye&&(Ge+=k),ke.filter(We=>!M(We)).reduce((We,Xe)=>We+(b.test(Xe)?S:Xe===""?R:A),Ge)}function N(Ne,ye){return Ne.length===ye.length&&Ne.slice(0,-1).every((Ge,We)=>Ge===ye[We])?Ne[Ne.length-1]-ye[ye.length-1]:0}function K(Ne,ye){let{routesMeta:ke}=Ne,Ge={},We="/",Xe=[];for(let ut=0;ut<ke.length;++ut){let pt=ke[ut],or=ut===ke.length-1,tr=We==="/"?ye:ye.slice(We.length)||"/",Me=H({path:pt.relativePath,caseSensitive:pt.caseSensitive,end:or},tr);if(!Me)return null;Object.assign(Ge,Me.params);let tt=pt.route;Xe.push({params:Ge,pathname:se([We,Me.pathname]),pathnameBase:ee(se([We,Me.pathnameBase])),route:tt}),Me.pathnameBase!=="/"&&(We=se([We,Me.pathnameBase]))}return Xe}function H(Ne,ye){typeof Ne=="string"&&(Ne={path:Ne,caseSensitive:!1,end:!0});let[ke,Ge]=W(Ne.path,Ne.caseSensitive,Ne.end),We=ye.match(ke);if(!We)return null;let Xe=We[0],ut=Xe.replace(/(.)\/+$/,"$1"),pt=We.slice(1);return{params:Ge.reduce((tr,Me,tt)=>{if(Me==="*"){let Yt=pt[tt]||"";ut=Xe.slice(0,Xe.length-Yt.length).replace(/(.)\/+$/,"$1")}return tr[Me]=ae(pt[tt]||"",Me),tr},{}),pathname:Xe,pathnameBase:ut,pattern:Ne}}function W(Ne,ye,ke){ye===void 0&&(ye=!1),ke===void 0&&(ke=!0);let Ge=[],We="^"+Ne.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^$?{}|()[\]]/g,"\\$&").replace(/:(\w+)/g,(ut,pt)=>(Ge.push(pt),"([^\\/]+)"));return Ne.endsWith("*")?(Ge.push("*"),We+=Ne==="*"||Ne==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):We+=ke?"\\/*$":"(?:(?=[.~-]|%[0-9A-F]{2})|\\b|\\/|$)",[new RegExp(We,ye?void 0:"i"),Ge]}function ae(Ne,ye){try{return decodeURIComponent(Ne)}catch(ke){return Ne}}function ne(Ne,ye){ye===void 0&&(ye="/");let{pathname:ke,search:Ge="",hash:We=""}=typeof Ne=="string"?(0,r.cP)(Ne):Ne;return{pathname:ke?ke.startsWith("/")?ke:oe(ke,ye):ye,search:J(Ge),hash:le(We)}}function oe(Ne,ye){let ke=ye.replace(/\/+$/,"").split("/");return Ne.split("/").forEach(We=>{We===".."?ke.length>1&&ke.pop():We!=="."&&ke.push(We)}),ke.length>1?ke.join("/"):"/"}function q(Ne,ye,ke){let Ge=typeof Ne=="string"?(0,r.cP)(Ne):Ne,We=Ne===""||Ge.pathname===""?"/":Ge.pathname,Xe;if(We==null)Xe=ke;else{let pt=ye.length-1;if(We.startsWith("..")){let or=We.split("/");for(;or[0]==="..";)or.shift(),pt-=1;Ge.pathname=or.join("/")}Xe=pt>=0?ye[pt]:"/"}let ut=ne(Ge,Xe);return We&&We!=="/"&&We.endsWith("/")&&!ut.pathname.endsWith("/")&&(ut.pathname+="/"),ut}function X(Ne){return Ne===""||Ne.pathname===""?"/":typeof Ne=="string"?(0,r.cP)(Ne).pathname:Ne.pathname}function V(Ne,ye){if(ye==="/")return Ne;if(!Ne.toLowerCase().startsWith(ye.toLowerCase()))return null;let ke=Ne.charAt(ye.length);return ke&&ke!=="/"?null:Ne.slice(ye.length)||"/"}const se=Ne=>Ne.join("/").replace(/\/\/+/g,"/"),ee=Ne=>Ne.replace(/\/+$/,"").replace(/^\/*/,"/"),J=Ne=>!Ne||Ne==="?"?"":Ne.startsWith("?")?Ne:"?"+Ne,le=Ne=>!Ne||Ne==="#"?"":Ne.startsWith("#")?Ne:"#"+Ne;function z(Ne){j()||o(!1);let{basename:ye,navigator:ke}=(0,i.useContext)(l),{hash:Ge,pathname:We,search:Xe}=It(Ne),ut=We;if(ye!=="/"){let pt=X(Ne),or=pt!=null&&pt.endsWith("/");ut=We==="/"?ye+(or?"/":""):se([ye,We])}return ke.createHref({pathname:ut,search:Xe,hash:Ge})}function j(){return(0,i.useContext)(c)!=null}function ie(){return j()||o(!1),(0,i.useContext)(c).location}function me(){return useContext(c).navigationType}function Se(Ne){j()||o(!1);let{pathname:ye}=ie();return useMemo(()=>H(Ne,ye),[ye,Ne])}function Ie(){j()||o(!1);let{basename:Ne,navigator:ye}=(0,i.useContext)(l),{matches:ke}=(0,i.useContext)(f),{pathname:Ge}=ie(),We=JSON.stringify(ke.map(pt=>pt.pathnameBase)),Xe=(0,i.useRef)(!1);return(0,i.useEffect)(()=>{Xe.current=!0}),(0,i.useCallback)(function(pt,or){if(or===void 0&&(or={}),!Xe.current)return;if(typeof pt=="number"){ye.go(pt);return}let tr=q(pt,JSON.parse(We),Ge);Ne!=="/"&&(tr.pathname=se([Ne,tr.pathname])),(or.replace?ye.replace:ye.push)(tr,or.state)},[Ne,ye,We,Ge])}const He=(0,i.createContext)(null);function je(){return(0,i.useContext)(He)}function Dt(Ne){let ye=(0,i.useContext)(f).outlet;return ye&&(0,i.createElement)(He.Provider,{value:Ne},ye)}function ht(){let{matches:Ne}=(0,i.useContext)(f),ye=Ne[Ne.length-1];return ye?ye.params:{}}function It(Ne){let{matches:ye}=(0,i.useContext)(f),{pathname:ke}=ie(),Ge=JSON.stringify(ye.map(We=>We.pathnameBase));return(0,i.useMemo)(()=>q(Ne,JSON.parse(Ge),ke),[Ne,Ge,ke])}function Zt(Ne,ye){j()||o(!1);let{matches:ke}=(0,i.useContext)(f),Ge=ke[ke.length-1],We=Ge?Ge.params:{},Xe=Ge?Ge.pathname:"/",ut=Ge?Ge.pathnameBase:"/",pt=Ge&&Ge.route,or=ie(),tr;if(ye){var Me;let zt=typeof ye=="string"?(0,r.cP)(ye):ye;ut==="/"||(Me=zt.pathname)!=null&&Me.startsWith(ut)||o(!1),tr=zt}else tr=or;let tt=tr.pathname||"/",Yt=ut==="/"?tt:tt.slice(ut.length)||"/",Ot=p(Ne,{pathname:Yt});return Rt(Ot&&Ot.map(zt=>Object.assign({},zt,{params:Object.assign({},We,zt.params),pathname:se([ut,zt.pathname]),pathnameBase:zt.pathnameBase==="/"?ut:se([ut,zt.pathnameBase])})),ke)}function Rt(Ne,ye){return ye===void 0&&(ye=[]),Ne==null?null:Ne.reduceRight((ke,Ge,We)=>(0,i.createElement)(f.Provider,{children:Ge.route.element!==void 0?Ge.route.element:ke,value:{outlet:ke,matches:ye.concat(Ne.slice(0,We+1))}}),null)}function ar(Ne){let{basename:ye,children:ke,initialEntries:Ge,initialIndex:We}=Ne,Xe=useRef();Xe.current==null&&(Xe.current=createMemoryHistory({initialEntries:Ge,initialIndex:We}));let ut=Xe.current,[pt,or]=useState({action:ut.action,location:ut.location});return useLayoutEffect(()=>ut.listen(or),[ut]),createElement(et,{basename:ye,children:ke,location:pt.location,navigationType:pt.action,navigator:ut})}function $e(Ne){let{to:ye,replace:ke,state:Ge}=Ne;j()||o(!1);let We=Ie();return(0,i.useEffect)(()=>{We(ye,{replace:ke,state:Ge})}),null}function gt(Ne){return Dt(Ne.context)}function Mt(Ne){o(!1)}function et(Ne){let{basename:ye="/",children:ke=null,location:Ge,navigationType:We=r.aU.Pop,navigator:Xe,static:ut=!1}=Ne;j()&&o(!1);let pt=ee(ye),or=(0,i.useMemo)(()=>({basename:pt,navigator:Xe,static:ut}),[pt,Xe,ut]);typeof Ge=="string"&&(Ge=(0,r.cP)(Ge));let{pathname:tr="/",search:Me="",hash:tt="",state:Yt=null,key:Ot="default"}=Ge,zt=(0,i.useMemo)(()=>{let Ht=V(tr,pt);return Ht==null?null:{pathname:Ht,search:Me,hash:tt,state:Yt,key:Ot}},[pt,tr,Me,tt,Yt,Ot]);return zt==null?null:(0,i.createElement)(l.Provider,{value:or},(0,i.createElement)(c.Provider,{children:ke,value:{location:zt,navigationType:We}}))}function ft(Ne){let{children:ye,location:ke}=Ne;return Zt(ot(ye),ke)}function ot(Ne){let ye=[];return Children.forEach(Ne,ke=>{if(!isValidElement(ke))return;if(ke.type===Fragment){ye.push.apply(ye,ot(ke.props.children));return}ke.type!==Mt&&o(!1);let Ge={caseSensitive:ke.props.caseSensitive,element:ke.props.element,index:ke.props.index,path:ke.props.path};ke.props.children&&(Ge.children=ot(ke.props.children)),ye.push(Ge)}),ye}function Je(Ne){return Rt(Ne)}},76100:function(d,v,e){"use strict";var r=e(84126),i=60103,l=60106;v.Fragment=60107,v.StrictMode=60108,v.Profiler=60114;var c=60109,f=60110,o=60112;v.Suspense=60113;var h=60115,u=60116;if(typeof Symbol=="function"&&Symbol.for){var a=Symbol.for;i=a("react.element"),l=a("react.portal"),v.Fragment=a("react.fragment"),v.StrictMode=a("react.strict_mode"),v.Profiler=a("react.profiler"),c=a("react.provider"),f=a("react.context"),o=a("react.forward_ref"),v.Suspense=a("react.suspense"),h=a("react.memo"),u=a("react.lazy")}var x=typeof Symbol=="function"&&Symbol.iterator;function p(J){return J===null||typeof J!="object"?null:(J=x&&J[x]||J["@@iterator"],typeof J=="function"?J:null)}function y(J){for(var le="https://reactjs.org/docs/error-decoder.html?invariant="+J,z=1;z<arguments.length;z++)le+="&args[]="+encodeURIComponent(arguments[z]);return"Minified React error #"+J+"; visit "+le+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},b={};function S(J,le,z){this.props=J,this.context=le,this.refs=b,this.updater=z||m}S.prototype.isReactComponent={},S.prototype.setState=function(J,le){if(typeof J!="object"&&typeof J!="function"&&J!=null)throw Error(y(85));this.updater.enqueueSetState(this,J,le,"setState")},S.prototype.forceUpdate=function(J){this.updater.enqueueForceUpdate(this,J,"forceUpdate")};function k(){}k.prototype=S.prototype;function R(J,le,z){this.props=J,this.context=le,this.refs=b,this.updater=z||m}var A=R.prototype=new k;A.constructor=R,r(A,S.prototype),A.isPureReactComponent=!0;var P={current:null},M=Object.prototype.hasOwnProperty,B={key:!0,ref:!0,__self:!0,__source:!0};function N(J,le,z){var j,ie={},me=null,Se=null;if(le!=null)for(j in le.ref!==void 0&&(Se=le.ref),le.key!==void 0&&(me=""+le.key),le)M.call(le,j)&&!B.hasOwnProperty(j)&&(ie[j]=le[j]);var Ie=arguments.length-2;if(Ie===1)ie.children=z;else if(1<Ie){for(var He=Array(Ie),je=0;je<Ie;je++)He[je]=arguments[je+2];ie.children=He}if(J&&J.defaultProps)for(j in Ie=J.defaultProps,Ie)ie[j]===void 0&&(ie[j]=Ie[j]);return{$$typeof:i,type:J,key:me,ref:Se,props:ie,_owner:P.current}}function K(J,le){return{$$typeof:i,type:J.type,key:le,ref:J.ref,props:J.props,_owner:J._owner}}function H(J){return typeof J=="object"&&J!==null&&J.$$typeof===i}function W(J){var le={"=":"=0",":":"=2"};return"$"+J.replace(/[=:]/g,function(z){return le[z]})}var ae=/\/+/g;function ne(J,le){return typeof J=="object"&&J!==null&&J.key!=null?W(""+J.key):le.toString(36)}function oe(J,le,z,j,ie){var me=typeof J;(me==="undefined"||me==="boolean")&&(J=null);var Se=!1;if(J===null)Se=!0;else switch(me){case"string":case"number":Se=!0;break;case"object":switch(J.$$typeof){case i:case l:Se=!0}}if(Se)return Se=J,ie=ie(Se),J=j===""?"."+ne(Se,0):j,Array.isArray(ie)?(z="",J!=null&&(z=J.replace(ae,"$&/")+"/"),oe(ie,le,z,"",function(je){return je})):ie!=null&&(H(ie)&&(ie=K(ie,z+(!ie.key||Se&&Se.key===ie.key?"":(""+ie.key).replace(ae,"$&/")+"/")+J)),le.push(ie)),1;if(Se=0,j=j===""?".":j+":",Array.isArray(J))for(var Ie=0;Ie<J.length;Ie++){me=J[Ie];var He=j+ne(me,Ie);Se+=oe(me,le,z,He,ie)}else if(He=p(J),typeof He=="function")for(J=He.call(J),Ie=0;!(me=J.next()).done;)me=me.value,He=j+ne(me,Ie++),Se+=oe(me,le,z,He,ie);else if(me==="object")throw le=""+J,Error(y(31,le==="[object Object]"?"object with keys {"+Object.keys(J).join(", ")+"}":le));return Se}function q(J,le,z){if(J==null)return J;var j=[],ie=0;return oe(J,j,"","",function(me){return le.call(z,me,ie++)}),j}function X(J){if(J._status===-1){var le=J._result;le=le(),J._status=0,J._result=le,le.then(function(z){J._status===0&&(z=z.default,J._status=1,J._result=z)},function(z){J._status===0&&(J._status=2,J._result=z)})}if(J._status===1)return J._result;throw J._result}var V={current:null};function se(){var J=V.current;if(J===null)throw Error(y(321));return J}var ee={ReactCurrentDispatcher:V,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:P,IsSomeRendererActing:{current:!1},assign:r};v.Children={map:q,forEach:function(J,le,z){q(J,function(){le.apply(this,arguments)},z)},count:function(J){var le=0;return q(J,function(){le++}),le},toArray:function(J){return q(J,function(le){return le})||[]},only:function(J){if(!H(J))throw Error(y(143));return J}},v.Component=S,v.PureComponent=R,v.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ee,v.cloneElement=function(J,le,z){if(J==null)throw Error(y(267,J));var j=r({},J.props),ie=J.key,me=J.ref,Se=J._owner;if(le!=null){if(le.ref!==void 0&&(me=le.ref,Se=P.current),le.key!==void 0&&(ie=""+le.key),J.type&&J.type.defaultProps)var Ie=J.type.defaultProps;for(He in le)M.call(le,He)&&!B.hasOwnProperty(He)&&(j[He]=le[He]===void 0&&Ie!==void 0?Ie[He]:le[He])}var He=arguments.length-2;if(He===1)j.children=z;else if(1<He){Ie=Array(He);for(var je=0;je<He;je++)Ie[je]=arguments[je+2];j.children=Ie}return{$$typeof:i,type:J.type,key:ie,ref:me,props:j,_owner:Se}},v.createContext=function(J,le){return le===void 0&&(le=null),J={$$typeof:f,_calculateChangedBits:le,_currentValue:J,_currentValue2:J,_threadCount:0,Provider:null,Consumer:null},J.Provider={$$typeof:c,_context:J},J.Consumer=J},v.createElement=N,v.createFactory=function(J){var le=N.bind(null,J);return le.type=J,le},v.createRef=function(){return{current:null}},v.forwardRef=function(J){return{$$typeof:o,render:J}},v.isValidElement=H,v.lazy=function(J){return{$$typeof:u,_payload:{_status:-1,_result:J},_init:X}},v.memo=function(J,le){return{$$typeof:h,type:J,compare:le===void 0?null:le}},v.useCallback=function(J,le){return se().useCallback(J,le)},v.useContext=function(J,le){return se().useContext(J,le)},v.useDebugValue=function(){},v.useEffect=function(J,le){return se().useEffect(J,le)},v.useImperativeHandle=function(J,le,z){return se().useImperativeHandle(J,le,z)},v.useLayoutEffect=function(J,le){return se().useLayoutEffect(J,le)},v.useMemo=function(J,le){return se().useMemo(J,le)},v.useReducer=function(J,le,z){return se().useReducer(J,le,z)},v.useRef=function(J){return se().useRef(J)},v.useState=function(J){return se().useState(J)},v.version="17.0.2"},59301:function(d,v,e){"use strict";d.exports=e(76100)},59781:function(d,v,e){"use strict";e.d(v,{DE:function(){return P},MT:function(){return y},UY:function(){return R},md:function(){return B},qC:function(){return M}});var r=e(33885);function i(N){return"Minified Redux error #"+N+"; visit https://redux.js.org/Errors?code="+N+" for the full message or use the non-minified dev environment for full errors. "}var l=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}(),c=function(){return Math.random().toString(36).substring(7).split("").join(".")},f={INIT:"@@redux/INIT"+c(),REPLACE:"@@redux/REPLACE"+c(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+c()}};function o(N){if(typeof N!="object"||N===null)return!1;for(var K=N;Object.getPrototypeOf(K)!==null;)K=Object.getPrototypeOf(K);return Object.getPrototypeOf(N)===K}function h(N){if(N===void 0)return"undefined";if(N===null)return"null";var K=typeof N;switch(K){case"boolean":case"string":case"number":case"symbol":case"function":return K}if(Array.isArray(N))return"array";if(x(N))return"date";if(a(N))return"error";var H=u(N);switch(H){case"Symbol":case"Promise":case"WeakMap":case"WeakSet":case"Map":case"Set":return H}return K.slice(8,-1).toLowerCase().replace(/\s/g,"")}function u(N){return typeof N.constructor=="function"?N.constructor.name:null}function a(N){return N instanceof Error||typeof N.message=="string"&&N.constructor&&typeof N.constructor.stackTraceLimit=="number"}function x(N){return N instanceof Date?!0:typeof N.toDateString=="function"&&typeof N.getDate=="function"&&typeof N.setDate=="function"}function p(N){var K=typeof N;return K}function y(N,K,H){var W;if(typeof K=="function"&&typeof H=="function"||typeof H=="function"&&typeof arguments[3]=="function")throw new Error(i(0));if(typeof K=="function"&&typeof H=="undefined"&&(H=K,K=void 0),typeof H!="undefined"){if(typeof H!="function")throw new Error(i(1));return H(y)(N,K)}if(typeof N!="function")throw new Error(i(2));var ae=N,ne=K,oe=[],q=oe,X=!1;function V(){q===oe&&(q=oe.slice())}function se(){if(X)throw new Error(i(3));return ne}function ee(j){if(typeof j!="function")throw new Error(i(4));if(X)throw new Error(i(5));var ie=!0;return V(),q.push(j),function(){if(ie){if(X)throw new Error(i(6));ie=!1,V();var Se=q.indexOf(j);q.splice(Se,1),oe=null}}}function J(j){if(!o(j))throw new Error(i(7));if(typeof j.type=="undefined")throw new Error(i(8));if(X)throw new Error(i(9));try{X=!0,ne=ae(ne,j)}finally{X=!1}for(var ie=oe=q,me=0;me<ie.length;me++){var Se=ie[me];Se()}return j}function le(j){if(typeof j!="function")throw new Error(i(10));ae=j,J({type:f.REPLACE})}function z(){var j,ie=ee;return j={subscribe:function(Se){if(typeof Se!="object"||Se===null)throw new Error(i(11));function Ie(){Se.next&&Se.next(se())}Ie();var He=ie(Ie);return{unsubscribe:He}}},j[l]=function(){return this},j}return J({type:f.INIT}),W={dispatch:J,subscribe:ee,getState:se,replaceReducer:le},W[l]=z,W}var m=null;function b(N){typeof console!="undefined"&&typeof console.error=="function"&&console.error(N);try{throw new Error(N)}catch(K){}}function S(N,K,H,W){var ae=Object.keys(K),ne=H&&H.type===f.INIT?"preloadedState argument passed to createStore":"previous state received by the reducer";if(ae.length===0)return"Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.";if(!o(N))return"The "+ne+' has unexpected type of "'+p(N)+'". Expected argument to be an object with the following '+('keys: "'+ae.join('", "')+'"');var oe=Object.keys(N).filter(function(q){return!K.hasOwnProperty(q)&&!W[q]});if(oe.forEach(function(q){W[q]=!0}),!(H&&H.type===f.REPLACE)&&oe.length>0)return"Unexpected "+(oe.length>1?"keys":"key")+" "+('"'+oe.join('", "')+'" found in '+ne+". ")+"Expected to find one of the known reducer keys instead: "+('"'+ae.join('", "')+'". Unexpected keys will be ignored.')}function k(N){Object.keys(N).forEach(function(K){var H=N[K],W=H(void 0,{type:f.INIT});if(typeof W=="undefined")throw new Error(i(12));if(typeof H(void 0,{type:f.PROBE_UNKNOWN_ACTION()})=="undefined")throw new Error(i(13))})}function R(N){for(var K=Object.keys(N),H={},W=0;W<K.length;W++){var ae=K[W];typeof N[ae]=="function"&&(H[ae]=N[ae])}var ne=Object.keys(H),oe,q;try{k(H)}catch(X){q=X}return function(V,se){if(V===void 0&&(V={}),q)throw q;if(0)var ee;for(var J=!1,le={},z=0;z<ne.length;z++){var j=ne[z],ie=H[j],me=V[j],Se=ie(me,se);if(typeof Se=="undefined"){var Ie=se&&se.type;throw new Error(i(14))}le[j]=Se,J=J||Se!==me}return J=J||ne.length!==Object.keys(V).length,J?le:V}}function A(N,K){return function(){return K(N.apply(this,arguments))}}function P(N,K){if(typeof N=="function")return A(N,K);if(typeof N!="object"||N===null)throw new Error(i(16));var H={};for(var W in N){var ae=N[W];typeof ae=="function"&&(H[W]=A(ae,K))}return H}function M(){for(var N=arguments.length,K=new Array(N),H=0;H<N;H++)K[H]=arguments[H];return K.length===0?function(W){return W}:K.length===1?K[0]:K.reduce(function(W,ae){return function(){return W(ae.apply(void 0,arguments))}})}function B(){for(var N=arguments.length,K=new Array(N),H=0;H<N;H++)K[H]=arguments[H];return function(W){return function(){var ae=W.apply(void 0,arguments),ne=function(){throw new Error(i(15))},oe={getState:ae.getState,dispatch:function(){return ne.apply(void 0,arguments)}},q=K.map(function(X){return X(oe)});return ne=M.apply(void 0,q)(ae.dispatch),(0,r.Z)((0,r.Z)({},ae),{},{dispatch:ne})}}}},58246:function(d){var v=function(e){"use strict";var r=Object.prototype,i=r.hasOwnProperty,l=Object.defineProperty||function(ee,J,le){ee[J]=le.value},c,f=typeof Symbol=="function"?Symbol:{},o=f.iterator||"@@iterator",h=f.asyncIterator||"@@asyncIterator",u=f.toStringTag||"@@toStringTag";function a(ee,J,le){return Object.defineProperty(ee,J,{value:le,enumerable:!0,configurable:!0,writable:!0}),ee[J]}try{a({},"")}catch(ee){a=function(J,le,z){return J[le]=z}}function x(ee,J,le,z){var j=J&&J.prototype instanceof R?J:R,ie=Object.create(j.prototype),me=new X(z||[]);return l(ie,"_invoke",{value:ae(ee,le,me)}),ie}e.wrap=x;function p(ee,J,le){try{return{type:"normal",arg:ee.call(J,le)}}catch(z){return{type:"throw",arg:z}}}var y="suspendedStart",m="suspendedYield",b="executing",S="completed",k={};function R(){}function A(){}function P(){}var M={};a(M,o,function(){return this});var B=Object.getPrototypeOf,N=B&&B(B(V([])));N&&N!==r&&i.call(N,o)&&(M=N);var K=P.prototype=R.prototype=Object.create(M);A.prototype=P,l(K,"constructor",{value:P,configurable:!0}),l(P,"constructor",{value:A,configurable:!0}),A.displayName=a(P,u,"GeneratorFunction");function H(ee){["next","throw","return"].forEach(function(J){a(ee,J,function(le){return this._invoke(J,le)})})}e.isGeneratorFunction=function(ee){var J=typeof ee=="function"&&ee.constructor;return J?J===A||(J.displayName||J.name)==="GeneratorFunction":!1},e.mark=function(ee){return Object.setPrototypeOf?Object.setPrototypeOf(ee,P):(ee.__proto__=P,a(ee,u,"GeneratorFunction")),ee.prototype=Object.create(K),ee},e.awrap=function(ee){return{__await:ee}};function W(ee,J){function le(ie,me,Se,Ie){var He=p(ee[ie],ee,me);if(He.type==="throw")Ie(He.arg);else{var je=He.arg,Dt=je.value;return Dt&&typeof Dt=="object"&&i.call(Dt,"__await")?J.resolve(Dt.__await).then(function(ht){le("next",ht,Se,Ie)},function(ht){le("throw",ht,Se,Ie)}):J.resolve(Dt).then(function(ht){je.value=ht,Se(je)},function(ht){return le("throw",ht,Se,Ie)})}}var z;function j(ie,me){function Se(){return new J(function(Ie,He){le(ie,me,Ie,He)})}return z=z?z.then(Se,Se):Se()}l(this,"_invoke",{value:j})}H(W.prototype),a(W.prototype,h,function(){return this}),e.AsyncIterator=W,e.async=function(ee,J,le,z,j){j===void 0&&(j=Promise);var ie=new W(x(ee,J,le,z),j);return e.isGeneratorFunction(J)?ie:ie.next().then(function(me){return me.done?me.value:ie.next()})};function ae(ee,J,le){var z=y;return function(ie,me){if(z===b)throw new Error("Generator is already running");if(z===S){if(ie==="throw")throw me;return se()}for(le.method=ie,le.arg=me;;){var Se=le.delegate;if(Se){var Ie=ne(Se,le);if(Ie){if(Ie===k)continue;return Ie}}if(le.method==="next")le.sent=le._sent=le.arg;else if(le.method==="throw"){if(z===y)throw z=S,le.arg;le.dispatchException(le.arg)}else le.method==="return"&&le.abrupt("return",le.arg);z=b;var He=p(ee,J,le);if(He.type==="normal"){if(z=le.done?S:m,He.arg===k)continue;return{value:He.arg,done:le.done}}else He.type==="throw"&&(z=S,le.method="throw",le.arg=He.arg)}}}function ne(ee,J){var le=J.method,z=ee.iterator[le];if(z===c)return J.delegate=null,le==="throw"&&ee.iterator.return&&(J.method="return",J.arg=c,ne(ee,J),J.method==="throw")||le!=="return"&&(J.method="throw",J.arg=new TypeError("The iterator does not provide a '"+le+"' method")),k;var j=p(z,ee.iterator,J.arg);if(j.type==="throw")return J.method="throw",J.arg=j.arg,J.delegate=null,k;var ie=j.arg;if(!ie)return J.method="throw",J.arg=new TypeError("iterator result is not an object"),J.delegate=null,k;if(ie.done)J[ee.resultName]=ie.value,J.next=ee.nextLoc,J.method!=="return"&&(J.method="next",J.arg=c);else return ie;return J.delegate=null,k}H(K),a(K,u,"Generator"),a(K,o,function(){return this}),a(K,"toString",function(){return"[object Generator]"});function oe(ee){var J={tryLoc:ee[0]};1 in ee&&(J.catchLoc=ee[1]),2 in ee&&(J.finallyLoc=ee[2],J.afterLoc=ee[3]),this.tryEntries.push(J)}function q(ee){var J=ee.completion||{};J.type="normal",delete J.arg,ee.completion=J}function X(ee){this.tryEntries=[{tryLoc:"root"}],ee.forEach(oe,this),this.reset(!0)}e.keys=function(ee){var J=Object(ee),le=[];for(var z in J)le.push(z);return le.reverse(),function j(){for(;le.length;){var ie=le.pop();if(ie in J)return j.value=ie,j.done=!1,j}return j.done=!0,j}};function V(ee){if(ee){var J=ee[o];if(J)return J.call(ee);if(typeof ee.next=="function")return ee;if(!isNaN(ee.length)){var le=-1,z=function j(){for(;++le<ee.length;)if(i.call(ee,le))return j.value=ee[le],j.done=!1,j;return j.value=c,j.done=!0,j};return z.next=z}}return{next:se}}e.values=V;function se(){return{value:c,done:!0}}return X.prototype={constructor:X,reset:function(ee){if(this.prev=0,this.next=0,this.sent=this._sent=c,this.done=!1,this.delegate=null,this.method="next",this.arg=c,this.tryEntries.forEach(q),!ee)for(var J in this)J.charAt(0)==="t"&&i.call(this,J)&&!isNaN(+J.slice(1))&&(this[J]=c)},stop:function(){this.done=!0;var ee=this.tryEntries[0],J=ee.completion;if(J.type==="throw")throw J.arg;return this.rval},dispatchException:function(ee){if(this.done)throw ee;var J=this;function le(Ie,He){return ie.type="throw",ie.arg=ee,J.next=Ie,He&&(J.method="next",J.arg=c),!!He}for(var z=this.tryEntries.length-1;z>=0;--z){var j=this.tryEntries[z],ie=j.completion;if(j.tryLoc==="root")return le("end");if(j.tryLoc<=this.prev){var me=i.call(j,"catchLoc"),Se=i.call(j,"finallyLoc");if(me&&Se){if(this.prev<j.catchLoc)return le(j.catchLoc,!0);if(this.prev<j.finallyLoc)return le(j.finallyLoc)}else if(me){if(this.prev<j.catchLoc)return le(j.catchLoc,!0)}else if(Se){if(this.prev<j.finallyLoc)return le(j.finallyLoc)}else throw new Error("try statement without catch or finally")}}},abrupt:function(ee,J){for(var le=this.tryEntries.length-1;le>=0;--le){var z=this.tryEntries[le];if(z.tryLoc<=this.prev&&i.call(z,"finallyLoc")&&this.prev<z.finallyLoc){var j=z;break}}j&&(ee==="break"||ee==="continue")&&j.tryLoc<=J&&J<=j.finallyLoc&&(j=null);var ie=j?j.completion:{};return ie.type=ee,ie.arg=J,j?(this.method="next",this.next=j.finallyLoc,k):this.complete(ie)},complete:function(ee,J){if(ee.type==="throw")throw ee.arg;return ee.type==="break"||ee.type==="continue"?this.next=ee.arg:ee.type==="return"?(this.rval=this.arg=ee.arg,this.method="return",this.next="end"):ee.type==="normal"&&J&&(this.next=J),k},finish:function(ee){for(var J=this.tryEntries.length-1;J>=0;--J){var le=this.tryEntries[J];if(le.finallyLoc===ee)return this.complete(le.completion,le.afterLoc),q(le),k}},catch:function(ee){for(var J=this.tryEntries.length-1;J>=0;--J){var le=this.tryEntries[J];if(le.tryLoc===ee){var z=le.completion;if(z.type==="throw"){var j=z.arg;q(le)}return j}}throw new Error("illegal catch attempt")},delegateYield:function(ee,J,le){return this.delegate={iterator:V(ee),resultName:J,nextLoc:le},this.method==="next"&&(this.arg=c),k}},e}(d.exports);try{regeneratorRuntime=v}catch(e){typeof globalThis=="object"?globalThis.regeneratorRuntime=v:Function("r","regeneratorRuntime = r")(v)}},76374:function(d,v,e){"use strict";var r=function(){if(typeof Map!="undefined")return Map;function X(V,se){var ee=-1;return V.some(function(J,le){return J[0]===se?(ee=le,!0):!1}),ee}return function(){function V(){this.__entries__=[]}return Object.defineProperty(V.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),V.prototype.get=function(se){var ee=X(this.__entries__,se),J=this.__entries__[ee];return J&&J[1]},V.prototype.set=function(se,ee){var J=X(this.__entries__,se);~J?this.__entries__[J][1]=ee:this.__entries__.push([se,ee])},V.prototype.delete=function(se){var ee=this.__entries__,J=X(ee,se);~J&&ee.splice(J,1)},V.prototype.has=function(se){return!!~X(this.__entries__,se)},V.prototype.clear=function(){this.__entries__.splice(0)},V.prototype.forEach=function(se,ee){ee===void 0&&(ee=null);for(var J=0,le=this.__entries__;J<le.length;J++){var z=le[J];se.call(ee,z[1],z[0])}},V}()}(),i=typeof window!="undefined"&&typeof document!="undefined"&&window.document===document,l=function(){return typeof e.g!="undefined"&&e.g.Math===Math?e.g:typeof self!="undefined"&&self.Math===Math?self:typeof window!="undefined"&&window.Math===Math?window:Function("return this")()}(),c=function(){return typeof requestAnimationFrame=="function"?requestAnimationFrame.bind(l):function(X){return setTimeout(function(){return X(Date.now())},1e3/60)}}(),f=2;function o(X,V){var se=!1,ee=!1,J=0;function le(){se&&(se=!1,X()),ee&&j()}function z(){c(le)}function j(){var ie=Date.now();if(se){if(ie-J<f)return;ee=!0}else se=!0,ee=!1,setTimeout(z,V);J=ie}return j}var h=20,u=["top","right","bottom","left","width","height","size","weight"],a=typeof MutationObserver!="undefined",x=function(){function X(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=o(this.refresh.bind(this),h)}return X.prototype.addObserver=function(V){~this.observers_.indexOf(V)||this.observers_.push(V),this.connected_||this.connect_()},X.prototype.removeObserver=function(V){var se=this.observers_,ee=se.indexOf(V);~ee&&se.splice(ee,1),!se.length&&this.connected_&&this.disconnect_()},X.prototype.refresh=function(){var V=this.updateObservers_();V&&this.refresh()},X.prototype.updateObservers_=function(){var V=this.observers_.filter(function(se){return se.gatherActive(),se.hasActive()});return V.forEach(function(se){return se.broadcastActive()}),V.length>0},X.prototype.connect_=function(){!i||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),a?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},X.prototype.disconnect_=function(){!i||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},X.prototype.onTransitionEnd_=function(V){var se=V.propertyName,ee=se===void 0?"":se,J=u.some(function(le){return!!~ee.indexOf(le)});J&&this.refresh()},X.getInstance=function(){return this.instance_||(this.instance_=new X),this.instance_},X.instance_=null,X}(),p=function(X,V){for(var se=0,ee=Object.keys(V);se<ee.length;se++){var J=ee[se];Object.defineProperty(X,J,{value:V[J],enumerable:!1,writable:!1,configurable:!0})}return X},y=function(X){var V=X&&X.ownerDocument&&X.ownerDocument.defaultView;return V||l},m=K(0,0,0,0);function b(X){return parseFloat(X)||0}function S(X){for(var V=[],se=1;se<arguments.length;se++)V[se-1]=arguments[se];return V.reduce(function(ee,J){var le=X["border-"+J+"-width"];return ee+b(le)},0)}function k(X){for(var V=["top","right","bottom","left"],se={},ee=0,J=V;ee<J.length;ee++){var le=J[ee],z=X["padding-"+le];se[le]=b(z)}return se}function R(X){var V=X.getBBox();return K(0,0,V.width,V.height)}function A(X){var V=X.clientWidth,se=X.clientHeight;if(!V&&!se)return m;var ee=y(X).getComputedStyle(X),J=k(ee),le=J.left+J.right,z=J.top+J.bottom,j=b(ee.width),ie=b(ee.height);if(ee.boxSizing==="border-box"&&(Math.round(j+le)!==V&&(j-=S(ee,"left","right")+le),Math.round(ie+z)!==se&&(ie-=S(ee,"top","bottom")+z)),!M(X)){var me=Math.round(j+le)-V,Se=Math.round(ie+z)-se;Math.abs(me)!==1&&(j-=me),Math.abs(Se)!==1&&(ie-=Se)}return K(J.left,J.top,j,ie)}var P=function(){return typeof SVGGraphicsElement!="undefined"?function(X){return X instanceof y(X).SVGGraphicsElement}:function(X){return X instanceof y(X).SVGElement&&typeof X.getBBox=="function"}}();function M(X){return X===y(X).document.documentElement}function B(X){return i?P(X)?R(X):A(X):m}function N(X){var V=X.x,se=X.y,ee=X.width,J=X.height,le=typeof DOMRectReadOnly!="undefined"?DOMRectReadOnly:Object,z=Object.create(le.prototype);return p(z,{x:V,y:se,width:ee,height:J,top:se,right:V+ee,bottom:J+se,left:V}),z}function K(X,V,se,ee){return{x:X,y:V,width:se,height:ee}}var H=function(){function X(V){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=K(0,0,0,0),this.target=V}return X.prototype.isActive=function(){var V=B(this.target);return this.contentRect_=V,V.width!==this.broadcastWidth||V.height!==this.broadcastHeight},X.prototype.broadcastRect=function(){var V=this.contentRect_;return this.broadcastWidth=V.width,this.broadcastHeight=V.height,V},X}(),W=function(){function X(V,se){var ee=N(se);p(this,{target:V,contentRect:ee})}return X}(),ae=function(){function X(V,se,ee){if(this.activeObservations_=[],this.observations_=new r,typeof V!="function")throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=V,this.controller_=se,this.callbackCtx_=ee}return X.prototype.observe=function(V){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element=="undefined"||!(Element instanceof Object))){if(!(V instanceof y(V).Element))throw new TypeError('parameter 1 is not of type "Element".');var se=this.observations_;se.has(V)||(se.set(V,new H(V)),this.controller_.addObserver(this),this.controller_.refresh())}},X.prototype.unobserve=function(V){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element=="undefined"||!(Element instanceof Object))){if(!(V instanceof y(V).Element))throw new TypeError('parameter 1 is not of type "Element".');var se=this.observations_;se.has(V)&&(se.delete(V),se.size||this.controller_.removeObserver(this))}},X.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},X.prototype.gatherActive=function(){var V=this;this.clearActive(),this.observations_.forEach(function(se){se.isActive()&&V.activeObservations_.push(se)})},X.prototype.broadcastActive=function(){if(this.hasActive()){var V=this.callbackCtx_,se=this.activeObservations_.map(function(ee){return new W(ee.target,ee.broadcastRect())});this.callback_.call(V,se,V),this.clearActive()}},X.prototype.clearActive=function(){this.activeObservations_.splice(0)},X.prototype.hasActive=function(){return this.activeObservations_.length>0},X}(),ne=typeof WeakMap!="undefined"?new WeakMap:new r,oe=function(){function X(V){if(!(this instanceof X))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var se=x.getInstance(),ee=new ae(V,se,this);ne.set(this,ee)}return X}();["observe","unobserve","disconnect"].forEach(function(X){oe.prototype[X]=function(){var V;return(V=ne.get(this))[X].apply(V,arguments)}});var q=function(){return typeof l.ResizeObserver!="undefined"?l.ResizeObserver:oe}();v.Z=q},74284:function(d,v){"use strict";var e,r,i,l;if(typeof performance=="object"&&typeof performance.now=="function"){var c=performance;v.unstable_now=function(){return c.now()}}else{var f=Date,o=f.now();v.unstable_now=function(){return f.now()-o}}if(typeof window=="undefined"||typeof MessageChannel!="function"){var h=null,u=null,a=function(){if(h!==null)try{var z=v.unstable_now();h(!0,z),h=null}catch(j){throw setTimeout(a,0),j}};e=function(z){h!==null?setTimeout(e,0,z):(h=z,setTimeout(a,0))},r=function(z,j){u=setTimeout(z,j)},i=function(){clearTimeout(u)},v.unstable_shouldYield=function(){return!1},l=v.unstable_forceFrameRate=function(){}}else{var x=window.setTimeout,p=window.clearTimeout;if(typeof console!="undefined"){var y=window.cancelAnimationFrame;typeof window.requestAnimationFrame!="function"&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),typeof y!="function"&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var m=!1,b=null,S=-1,k=5,R=0;v.unstable_shouldYield=function(){return v.unstable_now()>=R},l=function(){},v.unstable_forceFrameRate=function(z){0>z||125<z?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):k=0<z?Math.floor(1e3/z):5};var A=new MessageChannel,P=A.port2;A.port1.onmessage=function(){if(b!==null){var z=v.unstable_now();R=z+k;try{b(!0,z)?P.postMessage(null):(m=!1,b=null)}catch(j){throw P.postMessage(null),j}}else m=!1},e=function(z){b=z,m||(m=!0,P.postMessage(null))},r=function(z,j){S=x(function(){z(v.unstable_now())},j)},i=function(){p(S),S=-1}}function M(z,j){var ie=z.length;z.push(j);e:for(;;){var me=ie-1>>>1,Se=z[me];if(Se!==void 0&&0<K(Se,j))z[me]=j,z[ie]=Se,ie=me;else break e}}function B(z){return z=z[0],z===void 0?null:z}function N(z){var j=z[0];if(j!==void 0){var ie=z.pop();if(ie!==j){z[0]=ie;e:for(var me=0,Se=z.length;me<Se;){var Ie=2*(me+1)-1,He=z[Ie],je=Ie+1,Dt=z[je];if(He!==void 0&&0>K(He,ie))Dt!==void 0&&0>K(Dt,He)?(z[me]=Dt,z[je]=ie,me=je):(z[me]=He,z[Ie]=ie,me=Ie);else if(Dt!==void 0&&0>K(Dt,ie))z[me]=Dt,z[je]=ie,me=je;else break e}}return j}return null}function K(z,j){var ie=z.sortIndex-j.sortIndex;return ie!==0?ie:z.id-j.id}var H=[],W=[],ae=1,ne=null,oe=3,q=!1,X=!1,V=!1;function se(z){for(var j=B(W);j!==null;){if(j.callback===null)N(W);else if(j.startTime<=z)N(W),j.sortIndex=j.expirationTime,M(H,j);else break;j=B(W)}}function ee(z){if(V=!1,se(z),!X)if(B(H)!==null)X=!0,e(J);else{var j=B(W);j!==null&&r(ee,j.startTime-z)}}function J(z,j){X=!1,V&&(V=!1,i()),q=!0;var ie=oe;try{for(se(j),ne=B(H);ne!==null&&(!(ne.expirationTime>j)||z&&!v.unstable_shouldYield());){var me=ne.callback;if(typeof me=="function"){ne.callback=null,oe=ne.priorityLevel;var Se=me(ne.expirationTime<=j);j=v.unstable_now(),typeof Se=="function"?ne.callback=Se:ne===B(H)&&N(H),se(j)}else N(H);ne=B(H)}if(ne!==null)var Ie=!0;else{var He=B(W);He!==null&&r(ee,He.startTime-j),Ie=!1}return Ie}finally{ne=null,oe=ie,q=!1}}var le=l;v.unstable_IdlePriority=5,v.unstable_ImmediatePriority=1,v.unstable_LowPriority=4,v.unstable_NormalPriority=3,v.unstable_Profiling=null,v.unstable_UserBlockingPriority=2,v.unstable_cancelCallback=function(z){z.callback=null},v.unstable_continueExecution=function(){X||q||(X=!0,e(J))},v.unstable_getCurrentPriorityLevel=function(){return oe},v.unstable_getFirstCallbackNode=function(){return B(H)},v.unstable_next=function(z){switch(oe){case 1:case 2:case 3:var j=3;break;default:j=oe}var ie=oe;oe=j;try{return z()}finally{oe=ie}},v.unstable_pauseExecution=function(){},v.unstable_requestPaint=le,v.unstable_runWithPriority=function(z,j){switch(z){case 1:case 2:case 3:case 4:case 5:break;default:z=3}var ie=oe;oe=z;try{return j()}finally{oe=ie}},v.unstable_scheduleCallback=function(z,j,ie){var me=v.unstable_now();switch(typeof ie=="object"&&ie!==null?(ie=ie.delay,ie=typeof ie=="number"&&0<ie?me+ie:me):ie=me,z){case 1:var Se=-1;break;case 2:Se=250;break;case 5:Se=1073741823;break;case 4:Se=1e4;break;default:Se=5e3}return Se=ie+Se,z={id:ae++,callback:j,priorityLevel:z,startTime:ie,expirationTime:Se,sortIndex:-1},ie>me?(z.sortIndex=ie,M(W,z),B(H)===null&&z===B(W)&&(V?i():V=!0,r(ee,ie-me))):(z.sortIndex=Se,M(H,z),X||q||(X=!0,e(J))),z},v.unstable_wrapCallback=function(z){var j=oe;return function(){var ie=oe;oe=j;try{return z.apply(this,arguments)}finally{oe=ie}}}},43014:function(d,v,e){"use strict";d.exports=e(74284)},18947:function(d){"use strict";function v(e,r){if(e===r)return!0;if(!e||!r)return!1;var i=Object.keys(e),l=Object.keys(r),c=i.length;if(l.length!==c)return!1;for(var f=0;f<c;f++){var o=i[f];if(e[o]!==r[o]||!Object.prototype.hasOwnProperty.call(r,o))return!1}return!0}d.exports=v},19747:function(d){d.exports=function(e,r,i,l){var c=i?i.call(l,e,r):void 0;if(c!==void 0)return!!c;if(e===r)return!0;if(typeof e!="object"||!e||typeof r!="object"||!r)return!1;var f=Object.keys(e),o=Object.keys(r);if(f.length!==o.length)return!1;for(var h=Object.prototype.hasOwnProperty.bind(r),u=0;u<f.length;u++){var a=f[u];if(!h(a))return!1;var x=e[a],p=r[a];if(c=i?i.call(l,x,p,a):void 0,c===!1||c===void 0&&x!==p)return!1}return!0}},98040:function(d){d.exports=function(){var v=document.getSelection();if(!v.rangeCount)return function(){};for(var e=document.activeElement,r=[],i=0;i<v.rangeCount;i++)r.push(v.getRangeAt(i));switch(e.tagName.toUpperCase()){case"INPUT":case"TEXTAREA":e.blur();break;default:e=null;break}return v.removeAllRanges(),function(){v.type==="Caret"&&v.removeAllRanges(),v.rangeCount||r.forEach(function(l){v.addRange(l)}),e&&e.focus()}}},797:function(d,v,e){"use strict";var r=e(54723);d.exports=function(i){if(typeof i!="function"||!hasOwnProperty.call(i,"length"))return!1;try{if(typeof i.length!="number"||typeof i.call!="function"||typeof i.apply!="function")return!1}catch(l){return!1}return!r(i)}},95562:function(d,v,e){"use strict";var r=e(57046),i={object:!0,function:!0,undefined:!0};d.exports=function(l){return r(l)?hasOwnProperty.call(i,typeof l):!1}},69574:function(d,v,e){"use strict";var r=e(797),i=/^\s*class[\s{/}]/,l=Function.prototype.toString;d.exports=function(c){return!(!r(c)||i.test(l.call(c)))}},54723:function(d,v,e){"use strict";var r=e(95562);d.exports=function(i){if(!r(i))return!1;try{return i.constructor?i.constructor.prototype===i:!1}catch(l){return!1}}},57046:function(d){"use strict";var v=void 0;d.exports=function(e){return e!==v&&e!==null}},23188:function(d,v,e){"use strict";var r=e(59301);function i(y,m){return y===m&&(y!==0||1/y===1/m)||y!==y&&m!==m}var l=typeof Object.is=="function"?Object.is:i,c=r.useState,f=r.useEffect,o=r.useLayoutEffect,h=r.useDebugValue;function u(y,m){var b=m(),S=c({inst:{value:b,getSnapshot:m}}),k=S[0].inst,R=S[1];return o(function(){k.value=b,k.getSnapshot=m,a(k)&&R({inst:k})},[y,b,m]),f(function(){return a(k)&&R({inst:k}),y(function(){a(k)&&R({inst:k})})},[y]),h(b),b}function a(y){var m=y.getSnapshot;y=y.value;try{var b=m();return!l(y,b)}catch(S){return!0}}function x(y,m){return m()}var p=typeof window=="undefined"||typeof window.document=="undefined"||typeof window.document.createElement=="undefined"?x:u;v.useSyncExternalStore=r.useSyncExternalStore!==void 0?r.useSyncExternalStore:p},35316:function(d,v,e){"use strict";var r=e(59301),i=e(44718);function l(x,p){return x===p&&(x!==0||1/x===1/p)||x!==x&&p!==p}var c=typeof Object.is=="function"?Object.is:l,f=i.useSyncExternalStore,o=r.useRef,h=r.useEffect,u=r.useMemo,a=r.useDebugValue;v.useSyncExternalStoreWithSelector=function(x,p,y,m,b){var S=o(null);if(S.current===null){var k={hasValue:!1,value:null};S.current=k}else k=S.current;S=u(function(){function A(K){if(!P){if(P=!0,M=K,K=m(K),b!==void 0&&k.hasValue){var H=k.value;if(b(H,K))return B=H}return B=K}if(H=B,c(M,K))return H;var W=m(K);return b!==void 0&&b(H,W)?(M=K,H):(M=K,B=W)}var P=!1,M,B,N=y===void 0?null:y;return[function(){return A(p())},N===null?void 0:function(){return A(N())}]},[p,y,m,b]);var R=f(x,S[0],S[1]);return h(function(){k.hasValue=!0,k.value=R},[R]),a(R),R}},44718:function(d,v,e){"use strict";d.exports=e(23188)},56805:function(d,v,e){"use strict";d.exports=e(35316)},1012:function(d,v,e){"use strict";e.d(v,{Z:function(){return y}});var r=typeof crypto!="undefined"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto!="undefined"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),i=new Uint8Array(16);function l(){if(!r)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return r(i)}var c=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function f(m){return typeof m=="string"&&c.test(m)}for(var o=f,h=[],u=0;u<256;++u)h.push((u+256).toString(16).substr(1));function a(m){var b=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,S=(h[m[b+0]]+h[m[b+1]]+h[m[b+2]]+h[m[b+3]]+"-"+h[m[b+4]]+h[m[b+5]]+"-"+h[m[b+6]]+h[m[b+7]]+"-"+h[m[b+8]]+h[m[b+9]]+"-"+h[m[b+10]]+h[m[b+11]]+h[m[b+12]]+h[m[b+13]]+h[m[b+14]]+h[m[b+15]]).toLowerCase();if(!o(S))throw TypeError("Stringified UUID is invalid");return S}var x=a;function p(m,b,S){m=m||{};var k=m.random||(m.rng||l)();if(k[6]=k[6]&15|64,k[8]=k[8]&63|128,b){S=S||0;for(var R=0;R<16;++R)b[S+R]=k[R];return b}return x(k)}var y=p},56754:function(d){"use strict";var v=function(){};d.exports=v},85239:function(d){"use strict";var v=!1,e=function(){};if(v){var r=function(l,c){var f=arguments.length;c=new Array(f>1?f-1:0);for(var o=1;o<f;o++)c[o-1]=arguments[o];var h=0,u="Warning: "+l.replace(/%s/g,function(){return c[h++]});typeof console!="undefined"&&console.error(u);try{throw new Error(u)}catch(a){}};e=function(i,l,c){var f=arguments.length;c=new Array(f>2?f-2:0);for(var o=2;o<f;o++)c[o-2]=arguments[o];if(l===void 0)throw new Error("`warning(condition, format, ...args)` requires a warning message argument");i||r.apply(null,[l].concat(c))}}d.exports=e},4977:function(d){"use strict";d.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMwAAACaCAYAAADl9acYAAAAAXNSR0IArs4c6QAAIABJREFUeF7tXQd4U1Ubfs/NaJtO9kzLahFQEJkiUBBFUFFkCCjiAAVFERT5FREQQQXBBcpysWRP2RtkKRsEOphNodCZdDfjnv85CU2TZt2bhABNDw9PmtzvrO+c957xLQIP0pkz1yrQIEmwwcDzHhTj91klEo7jpcG5zetWUJdmRjmPvTM9GI9JgSGvadOoLE9KJJ5kPp2YXLtZdO1kT8ooz2vigCNelvPYezPEG7z0CDAn4pJqPvJA5A3vdcl/S3LEy3Iee29OeIOX5YDx3nh4VFI5YDxin6DM5YARxKb7g6gcMHd+nMoBc+d57LKGhCQ1ZURBCoVL2nKCO8sBZWW50x1TOWDuLP8FlV4OGEFs8glROWB8wmbPKikHjGf882bucsB4k5t3qKxywNwhxrpRbJkGTOx0ehlA3d9e5VEtzA3ulGe55zmg1QOfrCVo34BgQGvr5rLDRl4RRZG+5NjBESBc4FHw1LlrCAuPsCo0JjKi7J5hYqfTXADBq4byCJLf82Nf3kA3OfD9LgKdgeCzZ4CUTJ1VKQFyKQgpmeMSjiKvQC+oplspN/wOMDcBVFv0Bo+KwYJ4VE50H3Jg7j6CWzkEX74A3MrSgTfeKZpSaBCHcAVn/JunBHlFPDR5BkG9LMjPt7mZLOtbskQADea9wqOW9coqiGHlRPcHBxYcJriQQvB9P+v2cqCwWFxgoOJk6JeTNX4HmJMAHv6xP4/6VXw/+OxNx/bM/pIohdUE9VW/VxwjOHiJYO5A6xolpGSpYW3jIW4w/A8wM+h+UHSY2pvHgzV9NXymeor0wPc7Cf7XzWJ/4Nsm+Ly2LzZx+OwZ3yuVbzhNsPEMwcI3rM8wMikHiURi5gNbbQoKrc84zpjkj2eYzQC6f96DomUd305ctrp8tp5gSk/f1utzlFhUOHYthy9f8D1gdpwnWHiEYOVQ6zNM6QM/AY+CImHnF9YtfwTMCgB9P+5G0SHa9xP3bk2gT9cBU3r6Hjp95nBYNcz3gDlwkRhX843vlfS59PmFHfjFzgC/2pJ1nEEnEIpIAG+834Wia2Ox7PJ8wt0twLz7J8Gsl3zf316zCVYPsz5oe85F1yUcu0YwcQPBjlElZyjL8wsrQeyBn+XxK8DETqefgyACFCPe6kjxfDPfT6C7BpilBLMG+L6/A34h+P1VikCZ60nuTYpzN4AxqznjCqPOMZ1RSp9f2OVLYZH1lbOrNvjVlswIGEAKYOyrj1K82NL3E+huAWbEMnbFSn1+Qzd4AcE3fajPZV6X04D3lnHGM4xOawKFJwLLYiD5H2AoCkHwJQMLA42v090CzJjVBBN7UCh8rN3AgDrqCYq6lX3L6RQ1MGQRhwWvA7UrALbnFzCJjOhG+d2WjFCkUYKZPZpSDIv1PWDGrycY34NCahI0+yxN/Ivg3c4UlUN8VqWxok/XEfRrSdG0tm/rzcoHBv7KYc5AILqqLWDcOb/45RmGEFyhFL8/0Yga33y+Tl9uJhjxOEVIoG9rnrqVKSJSRFb0fb3tG1A81sC39TLRSu85HL57Eaii0Bm3oqEKqZXSJaUURUxTU0Tyuy0ZAc5SYCUbxE+6+x4w3+0kGNiWooqP3/Qz9xB0bUTRsLqI2eEFUlbvA9WBJxv5ltdMit9jFocpLwB1InQIkBEQTmLUHStOBoMBOr24K2+/AwwPHOKArS2iKCY9VzKIg34jyMgTv6f1wpwqL8JLHKgUTLHwjZIxZTKg0V2Bzg2tLzvYBYA75xe/25J1mkEnGAzYyXE40KQmMK23uLeLN8b1j0ME7epTxFTzRmnCy/jzXyCqIny+NVryDzFeKfd+xLcrDOMMO8MMfgx45iFrOZA7AstiTvvVoZ91usM3tClHcLpeZWDmAN8DZtlRgkY1KJr5+BC87hQQLAeebCwcZN6gXH6MgG2P+rfyDmD+WLoV8xZugkIRiNh2TTHghcfRoF4tFBZpkXgpGQ81rmdu9puLOLzwMPBYPR1Cgzw/v7CC/WpLxjrc/jtaT2LApRrhwC+DfA+Y9aeI0dKzbT3vTCChk3r7eaBABzzfTGgO79CtPUmM9b7U2jv9bf3kOyjSlihLcoSg93MdkZ2Th227j2Hoq8/inTeeNzZ+xFIOsTHAsw/pAeL5+cUvAdPuG1pVRnArQgEsGex7wGw7RxAgBTo19M4EEjqtD1wEkrPYm15oDu/QbfkPSM0hHsu8du0/gSnfLkFGVrbThjFLynULJ6FOZHUw2RNbyd/qUJLFHZV+ywr9aksWO4Ou0BK8KueRz/bVq++CUuD+RGbhB3R/0LeAOZEEnFIRvPGYb+vdGw+cvU7w3uOe1dv+mfeRk5svCMUfvz8AA3o9jgkbCJQVgPe7lGTz5MDvj4f+VXs/JH1ip1PmAkHy17u8z42bjl4lxjf9C809m0CCZo4FUVwKsDPOJLz0ZTp6Fdh6jtnWe1bvuCm/4q/tRwQ1/b03e2LIwGfw1RaCkADg425AOvPkYCHZd0cG43dbsk4zaDFgWHiHcG85wjBQoEhnMhAzf5r/Jihkf9/+fjXDtDXqGA108+Eqcy0DYAfwMU95NnEFzVgLovibwK8HCab19qze61s24Pf5K7A5KwB5vHM1CblMij9m/Q87rtc1jsek54CMPIBayGD0BgP0ImUw/gwYFiqjllhHGAcvAkuPcijU8cgv0KGgSGv8LNJqweu1MOh14A3ss+S78W+Dzuo3RsPoTy0YgIjQALFz0C36tBzg570EE3p4NnHFVn5TA0zaSPDzy57Vu2bIS6jF67BDHYBHgnVI0kow+6ZjLyZNm9RD+35jkZINfNO7ZIVhEn+e16NQ6157/OqWjJ1h9n1IXoydTi8AeGD+KzxqinCEsfkswfBJC2HQacXOG7v0B+e9CGXVUK+U5aoQdm5iE3eqh296R/XoDEBu0e3/hcz3FzF+Z292trI91Zgav7N2tKrDrrfFTdgTI4dAl61BipZDDXYINRCMvBrusNvBikAMHT8LTM3/pwElK4xMAuQV6uBuKK4yA5hEVfY8SvmmHCETGyjDtzqbQLHf0KMgaCnWEcaW/whGT1mAHHZP6oW09bueaFy3khdKcl0EO+y+v4xgphs2MWxbs+K46bLCDIoi6+9iVLKY4PbTp8UB5t8h/UB53qimz1aJA9lyLExz7H1vyMCnUa15L/x9EfhtkIk/nh74y9ShPz5JnUGA26qFZIdcTofWqR5xxd5Uip1O9wDoJNYRxs4LBB9PXYxUdaHrGSqAYuWUp9GmSQ0BlN4h8cTq8qVfOGgKStpBeAoJb4DEYPrPsU89b/5e/LvEYPubLCIQX06NEtWpfwa/yA4h0FEgqVCK71OCUeTARdLLfbpg9PAXsfGsBBtOA0uHmKpyV0PZsqFl5lo5QaXWgRqNw4pTHiEYGa2M+KX0yMROpxsA9BDrCGNvAsG4GcuQdMt45eJx+nXsk3iyNbOY9k161wOry8/GqZCr1t4GBA/O3T0Nm7gSDl/89IBRHiU0nRk3CgU3knEmT4pZN51rrjI5TN2oGmCOMP44BKx7B8jINemP8ZRCK2Y5LNXAMrMlS0hSpwKw9TRGME+XHf5ekybEfPCInU7/BDBArCOMw5cIPvt+JRJUGqHj7JRu2rsd0P+JGBuanELTTVpwwO3/cnjFxNcTwMz95hquxud5pd+skIEfR6NJA+F2y6o1S3Fj4xpj/X9lBmK7OsDuChMUKMf+v36AXC4Fc4QxYwew/X0gM8/k5VKvN0BvcF9gfc8CJuGWuh4twgoQnJSBzK+nDP+3eLTsBahJSNL8DdD29kaUAFsDSU4vpVJp3FTETqdzAbwl1hHGySSCCTPX41RimlcmzthBrTCsV1Obss5cJ2hWXQupTIoiHUW+1nRYZkcn5kRbTzlIOQq5hBmimfRu2RwoeU4gl5rAFiI3Odpmb/NRK0zXu+zgKzZtWZWK/VvTxWZzSP/EK5HoEivcxsFQWIBzk8caVxmWmMT+g6thNlfMg/p1xYfv9DXSMEcYEzYAu247wnBXQ9myE/fslixRpf6FUgw2N5bgDChmk6Lw33MMqkqlg8JeVKmn8hRjHI0QIdgbiJynGWhiZ9AZoPhgaEeK50Q4wmDCvwmzt+HwGe8EcH67V1N8MshWV4UBpnlNLQID3Lcn5nkKrZ6iUEex4azEqC08di0BW1XDgsTP+2NHsrH6F+/0m9Xetns1PN9b3IWHPi8XyetXIOPoEeg1WbhYKMGK9CCoiiSoWq0SnuvWzqhLVuyoz+wI411mmi3epZI9Lt2zgElIUht9INtpdDJPMUsSGf59NCFFxc8TknI6AoZ9LqbCmj+V4X33zMAEAOMHtaXoJ0KLVpUJjJuzD3v+vSh+xtnJ0ffxaMwY0dHuCtO8pg6BAcK3LI4axCTai/4hRsBM3kww5DGK6o5vYx32S52pw9QxbEi8k6o2DMeoj2q5VVhqNnB29JsI0TP5M6Dj5Gg7dwmkpVZOsyOMtyg4joDyBhRq3d+Osbru3S2ZSp0LCmf+9ZM5CUY3qBWx3LREUy5RpbkKQOl0FAimvrksPAME08Q6wmD74DGz/8H2A/+5NdClM8U2r4VFE7rZBcwjtXQIkHsOGLbSLP7XBJhvdxD0fJiinhs+pVk5n41IBM/UFryQSHggvpxRooovpsgdFwjoD8MQri3ZIso/XYzm9a2FwDfUAFPxX/AaRYSCeCR/KW7fvQuYJE0RQF3vSQh2UQn3bsOaYXEJSZrPADrJBfP5BceCVx+4LO0r1hGG3gC8//Np/LXrmJjxdUhbv1YE9vzU22eAmbOPBRmieNCNFzvP8/jhaxVSL3vn4M9zBJN/bgSZgJsyplZ0KQ24oSZgq8vmE4V4+9hrkNIS8O5uPhbNOz+CprWpWRhd7Ahj9svMYM871rT38pbM/q2XvelHoeU4bpxBgt+Jjr8MAqfi80NXZEW/H1UEuOMIY/zCRPyxZr9XABMSJMP5pbelahYlsjNMi1p6402Pp8lyhWEhIBpVp2hdV1yp6nwgPAhYvzQF/+zOEpfZCfXgz6LRIMrxKsq0B5YcKsL6UxRFvBygelBdLjhZGMCx/RfTKWMCUGZzbAClvJEmtiGH97oEGLdhzBHGjL4UDyvLOmBUmn9AaamAay7GimAXgdErzG1RlX36k9el+PlgsPFtK9YRxtwtNzBl7havTZoLywYhuJRbSCNgauvBlAg9TQYDjyVHOeOWbOVxoEoo0Mn2JttpNZvOcmhfn0KTXoTr8TlITSnCrRSt8TMvV7gj79KVPDskCo+1tb/rZkLScavzcTlTARBrZUu+MB1coHNHZ8rQXEzvH4T+8yWY9DzQrj6QptFDzzRlPUj37JbM5pZMeCfZK5CNgsPt3PlbEny3LwSlHWEIqWLzcTWGfbFaCKkgml0zeyNaaa3QdqcAs+msSa2k+4OCmmYm2nyWQ98W9idabo4eqSla3EopMn6m3mRgKkJ6KlM6dV5Plz418ES3CjZE7Ar9w2X5UGXbv3bmC1NBAiqBEOf34zFhKlzLq40PuxK0i8qFutBzRdd7FjDx1zSDCKELxA2tmZoyyztqqc9tUdDlDAm+2hUCdxxhHIwrwOAJy5EvIkSCsz78Nq4rnmhpfU/BANOytgEydwQmpSpjQro/b68we+JNArzej4jjKouz0q+luDwGAzWCxnI1Kr0qPfpEZTzXv6pVwUzf6+MVBTiX6vi+hxoKQfUF4AJswWZZGF+UCUN2IsYMaINnbcVd4jp0m/qePcNcvJlTldcaUm5vVN3qnKNM1zUcJm4LhTuOMP65qMWYGWtxJcU76jGT3nwUrz1j7ZnCCBilAbLS96RucIFJtv88ZpLD/HMZSEgFXmkrrqANp2yjEYsroYRar6f44I3zxh9qNwnH8FHWNxBLj2ix6F85SKltmGV9lBrAF6RConCuh8fotCn7MSC2Fob3ELkPddDBexYwrL2JSZqtFPQpdwfHUT7mf+zjTWFwxxHG8St6zPhtCw6cZXcSnqdhLzTF2FethZcMMK2UBki9DBgmbz18mYAJbMUk5shiYBsxORzT5ucZ8PHbcUaC4OpBGDe55AbiShqP9/40gHLOt058UZbxXMPJnQuUKK+DLi8DEs0R/PJBLIIVwjULHPXgnt2SsQbHq7JeIJSYFIi8mNgeeeT6cFRQAItFOsL4L5li0do9WLrLriK06FZ2e7QO5v3PwugcgDcBo9MbsPT2CnMxFcYwdiNFuMhlKjcs/J23AMMEoONHJhj5JA2T44tvS2TTo5cX4kKqY5X9YuYacq9CEhzlMngmr8uGQasFLUpDPcUV/DCiKwrcNBwrrvueBsyKFVTSvG32aQraRPRMdJKBWaa+vSrcqNAo1hEGsyD8Y/1R/LzmjFea1EBZAbtn9rIqywiYSB5Siecey3U6A5YeN23JmCCPORIcK8IWhV0ps1Wpj8hzjyPmsDPN5P+ZNCWInMOXPz9g/PtgohZfbpEZ3SE5TxSGXBUkIa61vPnCDLCzFEuGrOMY1q02Xunq2VS6p7dkrKOJ17N7UAPP1PG9moatCoOBJ9go0hEGe+P+vC4e3yw84JX2VAoLxMmFL9sApnUkD4kXAKPV6bHsuNQIGDb5p28nmCwixmZSJnA5jeCZh1x3NzfpKi7M/xlFGRmo0qoNqnfohPAG1mcH1dUCfDP+sqkwjuCreY2Mf478swiJGa6V3Az518EFVgHhXMu0DYUZ4G8Dhuqy0Sg0EfM+8myHf88DhjEzIUmzAaA9XA+ZcIqR60KRp+XgjiOM3Sdu4s0vtyAkSIrgQCmCg6QIYZ+BMuPf7Dfzs9vP2bPi34ICZTh2szJ6NM41HuyrV7f2G8tWmNZRPCSc5yuMJWCYGcjHawm+7Sv8DPPfdSBfS9C5oWveHhg+GFqNyfRBEhgIeWgY2kz7AZysRDh5KT4fP0y5vZ0lwBdzGoO9FwbOK4S6KMDpCkP1eaD6fCNghCSDNhe8zmTsVznrMD59XIGa7Wx194SUVUxzT2/JihuZmJJThWoNZ0HgNY/EH28MRUY+B7GOMFibcrJzkJuXB3Z1zXHc7U9ivNlh0mX2aXpm/7ekLA57E6R44zHm5slWAs0A0ybKpDDoaWLhHJafMK0wLIm1ujx0iYD56WgrQO3ryuplSN6xzajkqM83+RCr1aUrol95A5zUJIT971QO5n2bZPybXYRNntsYvx4guLJrL1qkbsD2moOQHP6wlUskRkt5PfiCm5AEC/exa9DmgNcVoVL2KQy59RsqhAQg6tPvwAU5U1F0zvH7AjCsC4mqnE6UGpitvsfSJ0IIHb8lmNzIlkCsIwxPJzDLf10NrDtJMNyBjzDvAkaH5SdkbgOGOf5oVAN4sKawnl+YOwspf+81EzPIh9VvgCbvfoDAKlVx9JAai+ZcNz4PVBBE9W+M07uPo9/laeBgknSeC22ObbVeQ06QCRzselivuQhZBNveCX+JGAoyEZEThyE3fkIYNa00yh69UPdF6y2wsJ6ZqO6LLZl5pUlW9wHFMkrh6mTokgdf7QzG5UwpxDrCcFmwAAImPPztIMHorva3RkbA1GEhGoRPDkfVMj/EVoARaabM2vliCxj9QQtJ1GDAtU3rcGPXDmjVWWDfWWJbtHp9BiCwRScU6KQICJRg4VEp4g8ex4tXvrFSpGT0JxXNsKraIEgVFaHLuQ5ZSE1wAeLsEioRFZ5PnAVlTok5hiQwCG1+mAupwr1V5r4CDGNkgkrzEij93Znqi5CB/XafAhduySDWEYaQsl3RFGiB6Tsce4NkgGlbx+WtqatqjM9ZlOAVJ0tWmPeWEvzYX3gYcOY9cuKzsLE1EVK5oagQJ7/4DDlXS67gZTVqI6dlXxwNaIXrJ06j75UZkFhoHbNyK7Zqh2E3usHAlCupDgFhtSAJEmdsxsqJqZSHevmJaHPoC6vm1nvpNdTu7t6R+L4DjAk06t7M+tKuDb+QkQTw00EFTl2XQawjDIHFOyVj6h+frSeY4uC2it1MRVXgIeUIpBLTWcjdxMJArDgpN2/JPlpF8PlzwoPDjl9v0vZ1N2k1apz+ehJyVaZzS3HimUMKIoWUWrusqtDqUTR46308/bUKekghU1QBkbq+PbPXPkNuEog8DAOS5+ABzVEzSWj9GDSf+JVbXbovAcNs+oODFYSjsp8oqCm2gcj06z9BOHJNbjTZ7RDt/oQQWa2ZXEw0ZWY1yYzYGdCYuj5L7AJNwgBlvHRgj3mjnfvtx0YlS/Zcp9dj6wU5nmpiysccdLMYm5UECr3HruHwQ3/P+KPLzcWZ6VOQfdG5xWbVzl0R9fJgEI7DjO0Eu85rQSTuH1lbV45HbmYSzl1OR+2im4g0ZEJpyETdAC26zpnv1tDdt4AptulPNJ1rplMKUY6uFh8PxL5LARDrCMMtLtvJJAYw3qqTlcOCw7JYLUoBwWHZWWvBIYJxz3jeAiZxv7R0AZJ3bIetdT1B7T4voebTPc0VMbe2G08Wur26sII+6JyD5x4JQU6+FkfOp+DA2es4fO4GsvO1qFk5BE3qVEaTupWNn9G1K0AmILT1fQ8YxhhKqfTi9ewBoPQjSiFAxAasOh2AbfGBRr0qMY4wPJ86phLuFmBm7ibo2oSioYAL+uPXgKvpBIMe9VavgctnE5C7fyuyz58Bc2oRVKMWaj7XBxVbWGuELjxMsOxIAYjUtaqMo9Z90CkHz7WwXkoNPMXZy2k4ePYGDvx3HVdSTHIjBqCVn7verJQJwBQzjKnzJyRlPcZJuJ6UxwsAHEoP/joXgA3nAiHWEYa3ps7dAgyTeTwSRdHcuecDYzdXHCN4oBrwaH3v9Fqr55GWmY2ICNe3XWtOEvyy17MVZmRsLnq2dH4bdv5qBt6Ytg3d29TDOAFvhjIFmNLDGp+c1UxCycs8xTu3jcrMJDvi5VhxOghiHWF4Z+rcvRXGGBy2EvCYABB8sZHggycpqoa6f+lgya/MXC20RUUIDXV9gGJueb/d5tkZ5r0OOejd2nldm/+5gkkLDuOzQe3QrY1r2+0yDZjiwbp4PUNJeelKSqlZSX3/ZRkWHVNArCMMbwFm/AaC8c9Qt65rPWkDCw7Lggw9YVLhcprWnCCoH5qKGmHUaC4tl8sgl0kgl7FPqWhdt6upuQiWc1AoXN96MSd849ez62/31YPeeSwHL7Z1DpixvxzA7hNJWP9lL1RmjgtcJL8ADOOBSkWDCqiGaQoYlYn+TZJh/hEF3HGE4YqpQp7/sC0PrzRPhYxPg9yQjmCkoTA/HUV5aZDq0wBZBQQ0my6kKFE028/BGODpOYHBYfPy8qDT6aDT6Y2flolpUxeDhznscAWkfxKzEFNDAbncteIk8xIzYinxSBj1VrtcvPSo4y0Zs0Z96qPVqFpBgcXjnhXEx/saMCZfZNmTQCjTmZCAEC0oUglPU3iOnDEYtCcb16nCrDaN6ZxKU1HK0xOEIOrMDSlmHnDPEYZLzhoKAW0aivLSQXRpCKRp4HTpKMxNAy1KN36XE+cRAHjKIb/pckhk7h967bXz70STao47wWHZ9bZebwJOMYDY38Zrb4vEtKwZeAKMq5IJSDKZFOuPpqFr8yqCNBjYDd3AXwwgnPu+2Qa3zccrjzleNY7G3cR7P+7G8+2jMWaAMH8r9zVg4pKynudA1jmawExnjKf8fwRkAwF+j46MuJSoyupEKdkdnyoh0/e65wjDUX1c3MdA3hUEEO+YL6fU+BwRNUQa07tAM7v5OpNM8LoXg8PqDXrotHrojUDSQafXgXmrKZ3i0uV4vKkwiT2TJ/WcqYWBBLp8PzkieK1NIV5r71iO8/2qE1i2O8542GeHfiHpvgbMRVX2RzzlpwnpKCGEOa76i5dynxCeTriaTvpP2RnqliMMhwC9MBaBBaeFNEcQTU7FvpDWeU0QrVCiCynA7jjHip9Cy3FFxxz/mVYi0//sPD2u5wWgXUOBSmkAXvtVj7R819s3R215ta0Orz/m2FVVnwkbkJyWa7xOZtfKQtJ9DZiEpKzXAfKbkI6W0JAiQrDyZjZ5adyWUM4dRxiO6qOqRVCkLRPXHCfUt2gjhLXw7jmGBYdl18Uf+Tg47K4LBCz0uZh6P1oJnL/p/qH/5dYGvNnBfv5rN7PRb9JGVAoLwoavrC1enQ3gfQ2YC1ey6kil3CV2lhE7S7MKuMIxf4UGuuMIw1FdhszjCLk6XmxTHNLrqRT5TVdAJnNfPaR04cbgsPsIJjzrmbqL2E4evgxsPy+uXubM7+Vfmbss9661X2lDMdhuABRgyc4LmLnmJGKbKfHlW8KNyu5rwLBBS0zSbKBuWGOyWCoj1rrnCMPRZNEX5SLk3ACmVih2PjmkV9WYiso1RHrec1I7i1HJ5Ct3Kjiso6rPXgeY9P6bPsKB2uSRWKSlZbjNy3FjhuOTD5kIzja9891OnEhMxVs9muHVbsL5e98DJu5ydkNOxh934enfhmPsUDl0ZRgCZUS0IwyHWzJmqPPfcATorrk9yKUzZld5DTKlKUCQNxLr98jlJhV/X6ZrmcBXmwnmDBReb2R0CxQWmiOaiG5uj+5dsOyPH23yMd2ybmNWg6nJfDv8cbRpLDzO6H0PGMaN2zYyi8Q6/Ru+Ogw6A8FfIh1hOBs5evE7KLJ3ih5cRxluSR5FWLNxXiuPFeRJ6D53G5KWC3y4gmDhG8IAw7Ssa9Vlpsrup8jaNXHh+A6bAnYcu4bPfjto/H3z1D4IZ5JcgalMAIb1NVGlHkwpmQ1QwRf3H6wPRU6Re44wHPHXcGMTQm7+LJD9rsnU+soIaO2ux1z75Yu163fdStcUuYXA6wsIVg4VBpjMLDUeaOrgAOK6OjNFcvwhVCiluzbh90PYdvQqqlcMxuovSjSkhRRbZgDDOnsxOaczpYaFlEKQp4Sxm0KQlidxyxGGI+Zqs+IRfuUDIbwXTJMWsxghIc79CAsu7C6Ndg0lAAAdVklEQVStMEws88Jsgg3DhQEmSXUdLdt55hLJuIKs/g2x7UvcdrJtWPcxq40q/h2bKfGViAM/K69MAYZ16NKlzHCDlHwBwr0FUKdr7efbQpCs8a4jjMKCfITHDQRH3d97l578qmqTUblWczGYcErLzjDT+/hej63HLA5r32YOCl135dyFeHTuahtsynVOa4qvPv8II4aVyLJOXUzFsG9NW+bXuz+EISK9lJc5wBSz69KNzEheLxlFQVnEIrvmUlN3B+NiuncdYWi1OsjjP0KQznvxIDVVh0Bem1kreCcZg8N2pwhzX4juVkN6zebwx+u8oHr/OXoCPXrZBpsSW/GAvj3wy6yvzdl+WnsKi3aYnKFPHtIBnZu79qBpWWeZBUxxJ69coYE6ae4zlOqfIyBPM59uxc++36/AuZvedYTBJNz6+OkIL3AVn1b40N8K6oawRu8Jz+CCcvImgiEdKKoLF7p7pe4B8zl8148XVO+uPQcwYNAwj+tt0iga/+4t0Z4a8MUms9HY0vE9ECnUHc7tlpR5wFhyfA+l0lqq7L4A/QlAhTmHgnA8We51Rxh5FxejcvZSjwe7uIAk/cOo0nqK18qbsYPghebUGO7Dl+n1Pzh89iwvqN71G7fhzbc/9Lh5LALCzr+PQVMkR2w0Na4u566m49J1tVElRqyDEb8CTDH3LyblPMhTw67fjwZVPXTV+44wspP2oVq6IBU3QRPiprYWwtvOE0QrhGj2PoKO0dSoR+fL9O5SDm/H8oLq/XP5Gowc7R2tic9/XIlNyU2wY5RH1gJGVvklYFjHL6k0Ty85EbhxV6KceNsRRuatS6h1fYTX5mK+IQR5TZcbDb+8kVhw2MY1KFrV8UZpwsv4ZC3BCw8LC0o7/7fF+HRCydnDWS1FOSmQh1S363aX5XtlxGTEBfbCxveAIMFCB/s1+i1gGDsGL9Cvvpgm6eVtRxgZGZmomTQYHNUKn01OKHlIcEG5AfWE+eB2WefKY0DVMCDWO0G5XNZXTMDOTu3qUzxuinDhNH0/cx6+nGYrpS+diflxLkhPgFRRGfIQ+wzq9OxA5DUei5VDgYruObw0V+vXgOn8LR3L85jibUcY6iw1KiV9CLnhpqt5Ieg5DxkOV16PRyKFyTBcFbrxDPNZJj44rKtyXT1nvsYaVqeC4k1OmfoDfpjl2ncYb9CiMOOS0edyUOVoEGM4cuvUuGkrBHdbgIVvALWs4++6arLNc78GTOx0yq6efvS2I4zs7ByEJY1HkNYUactZ4kkg9FwE9JIKMEgijH8bjN/Z36bftCQcudLaeKC6q9KEPd8dB2Tliw8OK6x0x1Q/7SWoGkrRt4XrksZN/Brzfl3skpB59S9IN13hy0KrQxZkK+ANCQ1Do7ePYO5AoIF1DFqX5Zcm8G/AfENfB8Fv3naEkZubi6CkbxCou2yc9CZARJgBwcCRVlgZV3KC0aSmAhwnQYBcYowHI5FIwIN9MjPfkt/shcUQPdq3Mxy5DLDwfQNFBod1t77ifMyxuVxCBdX7wZgJWLzUdXh3Zh7NtmSgPCQBIQgIt+8/qtmw3fj5zep4yDoGregu+TVgOk2nTNl8pbcdYeTnFyA9U2MMDhQYIIFcwoGTSGCgnHHLECTnIJVIMG2H1BjywtcCRBYc9shlgrdEBocVPbtKZVjyDwGLLyqk3mHvjsGa9ZtdV0k4FGZdBa/NM/JbUcX+wSy692z8PDoWAjwpOa3TvwEzjXajHLa0b0DxSXfvnA9cj3AJxfe7TG5bq4aKyeU5bWIqsOkswcguvu3zyuPE6IBDSL2DBr+Hrdv3uOxshVqNkZqwH7q8NCNtYKUG4CS2V2G1OozE7ClvoZOHFx3+DZjptD0F/m4RRTHpOd9OHja4c/cRdHuQGh3r+TKxScuMuXz9kmDRmM/dgKB6+wwYgv0HjrhkS6+Bb2PlbzNQpDbZILEtGdualU4VH3gaX0/92ii89HZSVpY7NQllzvOLfYG7W7d7Nqe3a/NGA1hR7WfQZhKKU0yAN62396wkhTKFyUPa1qVo6KXDvNB62YH/2x0EXzzv/cnjrA07zhPsT4SgepkeGdMnc5V++nE6Phz/PTITmEIlhSykOmQK24M/W3mmzV2Lpxp7f5z9BjCPT6P1DRwuetMRhqsBtnzOnFHEVAMeVvp24hbpmata4lHcFzH9LKZl8TJXn4Cgep98+kWcPmtSknSWVi/7BZNmrsc/G2eC1xVAqqgEeYjtVRjhpPji1wN49qE7x+uYyAi7C4E3XvA+XWFU6Vo1ABsP2MzJwvDlMnjTEYarAbZ8zrYoVUKBR+vduUF01J67YUR2OhmYs49g9suu+9uhy/OIT2DyFedpz/bVWLXtFL77/F3o8zMhCQxHQJh9nZ/RU5diYJc7p95QZgCTnKHLppTaHK3Zm3bwYhkqKIDFg72/VLsabLZFYbYhnRu6nkCuyhL7/G4AJuEWwKT9QsyUWz3WDdeSkl1268zR3ThwLgtDBzyFIo0KnDwYgRH2VfYrP/jCzKTdX3pPZ8ll60wE990Kk5yhi6OU2kSaZx5OBy2UIkDqPUcYAnloJDtwkSC7AHj6Dm4THK4wIoPDiumXI1pVJjBqBcGqYa5fEA+16IxbqaabL2cp+dJJ3MqRoGXL1si7cRKcNAiBFe2vIopqDZemn133kqsyvf38fgTMJkops4WxSUOWSFGoI9joRUcYQhl+SgUkZZK7EtBp3DpgsjhzdqHdckiXlQcMWcReTq4Bw+z5mV2/sxQcrMCVuH+NoQof7DwESf/+aTz4B1WyH8tDHl7zhDpxlwA9A4+7alXAfQcYVYb2V1C8YY8N7y6XQl1AsGoojyD3vZK6zWHm9siDmK9u13u3Mgrtb71GbZCbm+e0mbVq1cDJIyavMK99OAvrfp0IfVEOFJWj7earUKUG9mxZ45WuOzqv2Cv8vgNMcqZuCuXpWHudGb1GipvZxKuOMLwyIn5eSGSDR8AiQDtLDzZ+ALu3rTKSzPrzAMa//xK0OSlQVLHZfd8uhuDQ/p1QKDyPiFCmAaNK17KD3g/2mP/ZXxJcyeAw/xUeNT3UZPXzOe7V7tes2wx6vcFpme3btcaa5SbX2gfP56Dnk62NipiKqo7tB1at+BMPPdjE47a6kr1YVnD/rTAZ+r6U8ivscWnyVgnibnL4sT+P+l6yN/F4NMoLQLXIh2zizpRmy9PduuCP+ab3YE4h8OCjzyMzfrvDMwyjm/rVZPR8vofHHC7TgLmRpetoMFC7Ximm75TgVDJn1G96srHrw6jHnC4vQBAHqipd+zvu/2JP/Dhjsrm8zv0n4sSWHx3KYRjh0DcH44NRnt8sl2nApGTROnqD7oq9kZq1T4IjV0Q7/xc06OVE7nPg6DS2bXL+AqvW4hVEdvnEXEna2bW4uGY4pEGO99ZPPv4YZs3y3DNpmQYM42hyujaBAjbXJxvOcFhxggHGI+UD92dGeU67HDg6/SGAd36GqfHoMNTuULJaFGZexem5T4CTOL7ufCCmAf7dv0EQ11MyrWN6WmYq84C5lqEdyVF8J4hTlkQc+URZUSbMG4PowsVlSEhSO3zlBtm5+alR0UOPD+KaZ5fa0aQryM+3oi/d/ocfaYOCQudxQCeOHYUPRrxpLocZk8U0i8Wt1HSHLQ+Qy3Hj0jFjzE1Xya8Bw4IuJWfoFgJ42RWjip8TQlbVqijtbwz3dw8kfwJM23YdkaXWOOX6tMljMWzIQCuawW9/hJVrNznNt37Fr+jc8VGXI+rXgCnmjipT353w/Es80IIALDAIM56QMFBQSpmkLAUEJzmeX1qrSuBfLrnqQwJ/AkyXJ7sh+bo5ALZdLs+cPgmvDuxj9ezPFesxbETJucZexrfeeAnTv3QdQqTMAyY5TdeZEspcjdjXjfDm5Ka4REDerF1F5tos0Ev1+hNger7QGxfiLzrl3PyfpqJfb+sr4vSMTDR4qCOYy15HSVmrJs4ddx3Dp8wDRpWhvQQKYfGjvTGJCS4rK8nvPDhvt9WfADPwlUE4etx5ROpFv/6A55950mYkn+zxMv45etLpCB/esw5NGjm3Vy77gEnX+lyQIua2xFOM+hNghg8fjp17Djhl2aolc9C1i21A1x9//h3jJn3jNO+EsaPwocWFgT3isg+Y8hXGatzv51uyTz75GGvWb3E66Teu+h0dLYIlFRNfuapCs7bOgzG1a9MCW9ezKI+OU5kHTPkZxnrw72fAfP3VFPy+yK42k7mTOzf+idYt7cfB7PBkH6cmzsz/29ULhxAe5thlT5kHjOV0SUzKfp6CLwkMAnIjJjLcyo3bRZV6Kk8xxpyPIjsmqiQgYkKS5jpAzfauBFzP6Miw9Z5urdzN709bsjmzZ+K7mb84ZdWBnavR9MFGdmm+/XE+Jn7pXOy2cP536NnD8UrkX4BRaSZQSieauUnIphhl+LNWoFJpFlFKSy7yCYmLUYabRyBBpdkISp8pzkMImRitDP/c3QnvaT5/AsyyJQswYcq3Tll29O+NaBht/45HyLZs0Et9MOvbSQ7r8DfArKOUPm/BjSkxkRFWl++JKvUuSvF4CSCwO1oZ0aX4e0KSmmn2fWoBmPXRynAf2ymW9MCfALNt8zqMGD3BKWDOHt2BKKVj36+du/XD8VNnHZZRu2YNnD+xqxwwjAOJKvU1SlHiDYGgT4wywspZb8I19QUQlBhPULokJqqCecVJUKl7g8JkocS0zQiSopURUZ6uFO7m9yfA/HtoL14Z8r5TViWe2Y9qVR2HUftp7kJ84iLGjLNVqsysMKcTk2s3i67t0KXIheTsSlJK0yilJRqVFPVjoiIuW59z1Ew5q8T9EsE3McoI85km4Zq6HgjMvn4IIVRPSJVGtcMy3J30nuTzJ8AkXjiJZ3uXRD+2xzdV/BGEhzsO1JlyMxWNHnncqRDzmymfYuhg+9pS3gKMq/kqZE54pBp85sy1CjRIEmww2BfnKoKC23NEsrzk/IKc/PycRjzTzrudQoLCAi3BwH6mlH6eV5Bjjo3HEUIUitALoDBfpfDU0C+/IM+5gEAIB9ygCVGEXXeUrawpX2bcvIx2jzuPHJ167SQCA5yHZevR9w3s+9uxy9mnn+qMZQtYyFPb5Awwaek3BcUBkEg4jhQY8po2jcpyY8gtprAnuV3kTVCpPwKFOcgkIdgbrYzobJntokrTgKfUKjY4B/RvEBlRAjTT1m4Ppehk0fIxMcoI51KxO9Q3f1phaFEmHmhuNWQ2XNWknHMYpq+YePGytXhnpPkYalNGSEgwkuIOQyq11V721grjjeng0QrjqgGJKs0SSqmF/ynyfUxk+CjLfAlJWR0BYmWFKZVyHevVDPvbmk7zHUBHFv9GCPkzWhkuWOPZVVvFPPcnwFQI5lE1qrlD9jA1/bSkUy7Zl52TiwYPdkBhUZFD2u0blqBta9u6/AcwSZrzFNR8PcxR8mqDqHCm2m9O8Uma/gTUKjY4R0h0A2W4lcbfxWuaQTyhC8yAAbkQHRne2OVI3QECfwIME7pWr9sC+QUFdjkZFhqK5MR/BHH5taEfOtUa+GT0u/hk9Ds2ZfkFYG7coIo8gyabUpiDHUqItGl9ZYjV/WJikmYUBbW66A+RhgfXrEmsLJsuqXIfMlD9mZIVBoZgSXhYaTpBI+chkb8BpknLJ6BKvmGXa1WrVMbFs/sFcXT7rv3o8/Iwh7SO1GT8AjCJydmPUp4/ZMGdwmhleCghRG+11VKpp4HiI4vfNDGRETbG4JRSaaJKk8Ni9ZhBw3HtomuHHRY0Wl4kEgsYL1bt9aJcWVyyCnv1HYBz5+x78K9Zswb27NwqqF16gwGxnZ9Eerr9y01mffnv4QNQKIIElceIfKl0y+q7Y2eY+CTNOwS05NqDkKMxyvDWpTmRqNIsppRanEXIhRgHW60ElYb5I21VXAYFGd4wMtxzTwqCh8dE6G+AGfzW2zhwwPLdV8KwunXqYOtm4VpKX0+bjt//cKxs+cu8n9Gh/WOCR6TMACZRlT2PUr7E0Jtw82KUYUNLcyL+mno3ISi5hiFkV4wy/Al7HEtQZc8F5d8q2ZZx86OVYebvgrnsIaG/Aeaj/43Fhr/smxs3bBiDDWtXCubohbg49OzVzyH9kMGv46MPzXc7LsstO4BJ0hyloC3Nkxt4JzoyYnZpDiRcU8eBwOxTlFK6uGFUhVfscSoxSf02BcwrCgE5Fh0Zbl5xXHLXSwRiAXM/ayuztn88/mv8PM/qrsbMyRbNH8KeLVYSAJdcZnKd/87H26Vr3uxB7NtmrR1d5s8w7LxxUZWdQ0Etzhvk0eja4TaSq4Qko4cFs5iYI9y0Bsqw/9kFTLKmLeWp+cxCQAobKMNszkUuR8xDAn8DzLTv5mDy1B/tcq1d25bYus4+mByxedacBRg7cardxxzH4VrcYSt1/zIPmMuqzKZ6ylnatRpCpPlhNWvWtLr5unmTBmdrNbmWnCOUjIqOCv/eHjdv3LihyNUrspmzjOLnUsI3q6esaL498xALgrL7G2B+W7gcI8fYVw5/PPYxrFvO3DcIT2npGWj4cGfo9Vb3P+YCmMSfSf6LU5kHTPy17FcJ4f8o2Y6R89GR4Taepy+pNNEGShOsAYN+0VERDi2WEpM05yioWf5CKfdaw6gws3xG+LC5T+lvgNmwaQcGDravgNm9a2csX2hfpcUZh/u/+i42b9ttl2T40Ffx1eclm4wyD5jEJM131FoqvyRaGW7tuMqo7pIVSynZa8k1Cr5jw8iKVlJ+y+elb9UIyPfRpbQH3IeCsJz+BphDR46jW0+7x0qj4RczABObNm7ZhZdef89uNmaMxozS/GaFSVSp91KKWAtufBQTGTG9NHcuXtf05w3WUn4CNIiOjHAYhTQhST0agFmHjBDsi1ZGlOiYiR05N+j9DTDxiZfRqoOVzZ+Za/369MD8WfbPI85Yq9Pp0fDhTmDumEondo5hZssRtzWgy/QKw1T5L6o0WZbq+pTiiYZRETYWQolJ2R9Q8DMsGRakDFcoCbGvhwEg/pq6CyEwO7MigKaBMrwCU/l3Y+67lcXfAMNC9tVp1M4ur159uQ9mznBsLemMwWMnTMOsueaduxXp0j9m4ZluJpvCMg2YxCR1fQqY9cDYRA4MC6usDCc2r5KEJDVbKdiKUZzUMZERFZwxWaXSVCwE0i1tbFytSm6hwkkmR4Cxp9rPirnfr5WZM75KymYwGGw99Qr1XmmPnefjEtG2k6UxbgmV5TmmbAMmWd2H8jBLsgjBtWhlhN1wuglJmiWAlTbz+Rg7lwOlmZ2oUl+lFGaLS8Khb3TtCLNFprcBUro8fwMM6z/zYpmaZutc/L23X8eUCZaaTeK437l7Pxw/aWu+3Oyhxvh7h2lIyzZgktRTKGCOY0kI1kUrI+xaICUkqZl715LzB8WumKgIu1J+y2FIVKnXUgqzTT8BvoyOjHBsbCFuDF1SiwWMywLvIoEQXTLWvB49+yAhwcpsydjqYUOHYNT79g/vQrq1bPkqTPj8CxtSdo759/DfCA1lLrcdp/te0p+g0myCRWhx5jGmYVQFu5f4CSpNHCg1S/kJIYuileGDXDE6/lrWBOY5xkxHyOYYZbjZq4yr/J4+90fAvPbGWzh8xFaNf8S772D4OzYaT4JZnJubi/Ydu9gNqTF39kx0irX1qGlZuM8Bc+PGZa86k8jVVzwGwOwRQQLD4CCpxq5LkFxDxXOgCC5mAOEwO5jLdHnlUqAP72KA5FcLxqWHSDPNajiCR8tNwlx9xav2sjo6w9ymTeCobjTR3bpjQlaDvLbddjnrptAV5oPRH2PTZlsPmLVrVv1q7+bf57rJSmO2Zu36TM3LLzArmAVWqo+qD/dD96c6Y1T3CiASx/F1JNpku9t9T9rjLO8d01a+Uw0uL/fucCCoSqPvCYGN9JJS8n5B2nn7ejMCmxpUpUl7TsL9HRHdBVWbD0CYspXRNZA+Lz394IQq91SI4HLACBxUfydTVGs8FpROseUDHZafGufRCtNxOh1nyM+YKFVUMqs86fLSaW7y0U1n5j/teahlLw5eOWC8yMyyXJSiWqMhoLBRGiOUvpaXFueRalLsdPongAGMfwUZl6G4sARtcw4e/XrXNhv7qbvN43sCMGcSUyy1Asw8aRpdw+gcw9FzMcwrLktMnnLaEg4oqjV8DpSzsRSjPAYUpF9Y5gmvOs2gbXke069tm8A9l7enaYNQWXCAhKMNK4ZFdl6yxqHfO0/qdDfvPQEYdxtfns93HIj9xpBm0BVUpgYteH0ReL0W1FAEWXDl/w5+VvEhIS1JSbli98VYnLdGjbr7furWZVGYXDawYlAAgmTSMY8vXn1XXGk56k+ZBYw3ViV7TLvXVipXk1DIRHZGwyYxex47nf4LwJ6xXuK+0cR5CDERjdjzWs8IXsvdvJRTGDDt7HXt9QLtmIJbF34QUcQdJS2zgLmjXPPHwmu2UCj0+SxYr1XiCN8l91a8fT19kXwqBv9Xg975fuHZaw9reZN6YLWqlfYe2rGoRO4motxiwIvI4pS0HDDe4qSflDPrqS5aA6UyAtAR23dz3u52gyffH3vj9HYWrcE0Nyl0lCOjC255dnXtrXaWA8ZbnPSTcna/3PsyBa0LILPLkjWVvN3tyk2emp+fljTEVC5N43j0zU2Ps/KM6u06xZRXDhgx3Cqnxe6Xe12gYKFJSF6XJaudK3qJ5xdRVG3ETNvZJcI5nqPPFt6ME629IL5a4TnKNGAopfLkbIRIDAgBj2BQnUJPiUIqQRD7JNSgAIgCBIGUkkCOIIAHH0gIFwBKAkH5QEogJwRyUCKn4OWEcDJCIQeBnFLIACoFAfOgLQX7TnH7O5UCHAdQCQjhQKkEIKbvAGf8m4DAFAqEEGIcCnLbbMH4m3FDAtDbtj70dtADCmb7w/6B8gB4gBiMfxNiAGW/se8sogLRg0IPYvyvA2D6DqIn7DuFlhJoKeV1BJwWhGophZZQaEG4QhBaSClfxIEr/HbR1mZrli2unp/8X6tcHW92bhJdv/6cLRvW/AIiyweHPIMEubXDkEsI0QqfhibK4KqNXqEA86hxOF9X1B1Zl5mDlHsq3dOASU2lIQYZKuv0usrgSCUJIRUBvgLlSQVKEMGBhPOgEaB8OEDCKBBGYAyJEUKBEAI2ocuTOxw4dfoMzp0/j/j4RJw5+x/i4uJZGBKbotq0boWFf9jGwKSAjgDMwUkuBXIIkA3QbBBOw4GoeVANoVATjmYBXJaB0syWrR79SSaX33rhuef7zpr2P/u+ad3pjBfz3BXAUEq5lCzUNhj0dQmhUQBRArQWBalBCGoAtBqlqAZAuM9QLzKlvCjgzaHDceCgydslc+Eqk8nNoSiYIRn7r9PpUCEiAn/vMxvAepN1BYTgFkBuUYoUApoCEBYcWEUpuSaRSK/UqIBkQghbZX2W7jhgKKWylCx9WwOPdoTQhylIE0IRbemzzGe9La+oTHGA+aWjBIkE9Byl5JSEw6EaFaRHCCFs+3lH0h0FTHK6bjIFhoNtm8pTOQd8wgGiJsBPtSvLrAIPe6vqOw8YguGg5YDx1oCVl+OCA4SoCb1PAcO6Zt6SAe0IpQ9TigcBRANwHhSxfGaUc8A1B1g4s0RC8B8l5JQE9/mWzFF/iw/9hOjrGkCiYKDmQz9AaxKCqpSSagAtP/S7njRllIIUEELZgT+VgqZwIDeMh34JUUlAr1FaRg/9noxm8bUy1esq6+1cK5vORiS8/FrZEy7fmbzOrpUBqgGImhCoCUqulaU8zSBSWbpEh/SqVYmVz+0700rxpd7RM4z45ng3hz3BJSREoadQSDkSZKBQgPIKUAeCS8IHMiElE16aBZeAnICTWQouCYHUJMQ0Ci9vCy6JlIJKOJOAkqNMcGkrwCTMFJdYCCwtBZilBZbsO5NWwiQPoaUFlsQouGQSS8oTkzCzRHAJGIWVtLTgEryOAtpiwSUTWjJhJqi14JKnKCKEFoKgEITLlxDk63laICXIh4Hme0Nw6d3RvzOl/R8AdGoXzom1qQAAAABJRU5ErkJggg=="},56022:function(d){"use strict";d.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI4AAAByCAYAAACFrelqAAAAAXNSR0IArs4c6QAAIABJREFUeF7tvQmcHcV1L3xOVffd5s5oNCONRiBAYkcCsxjMbiyz2YAh3mQngRicxMRx4sRL7Jef88L87MQvfskLX+zkJWT9kufkfYHPYbGNjY0tY2OwjQADlsCITQi0DbPembt1V533Ti19+/bc0cxIg6zI3B9o7u2uOlVd519nq1PVCK99DroR+PuvT/T1L2m+rivANwxPNEZ++ZLD/+Fg6yQebB36eevP0EYKTi2Mryrn4Iy8pLNJwNkAsEYgFiamG8PPvVx5y4ffedxLB9u4vAacA8yRW2/dXuxZUzylXAjOEBLPDaQ4BYEGiUjWarGKNFEoBdaaUfTs9vF3feidJzx0gLs4r+ZeA868hmmfC+Gd9+4eWLaytK6Uh3MB8PxA0vFA2K1JU0yotSKo1mKYnG6Ol4phKReKXDPSuG3n5Efff+Wa/73PLb/KFV8DziIO8NDGjcHZ5dcfc9iy4IwA4Vwp8Awh6EgAKihFSmskTQSKCIgAKrUIR8Ybj0oZNHp7wtOAKK+UFi8NV//mukuPGFrEri06qdeAs4hD+vDWqa8NLAnOUBoYIDomAFIEWhNo/k78HWCi1sRXxhrfbTThO6tWFN8FAOu4vNaEu0dqG7+1def7/vbGM6NF7Nqik3oNOIs4pP96357jThjM39rXHa5gFRQ7ycKAUQyY6QheGY/uHa00/+GYw8qXhCG8XxOgAZYmGK1Ez217pnbVR25YM76I3XpVSL0GnEUe1i9ufGnV0Su6b+3vDldrrY2kGZ+K9CuT0dd3jTX+4viVS1fkC+q/CYBVsdbEgFGaYLoWV57eXrnyoxuOfWaRu/SqkPu5As7QrZtzsOW2eGhoSL8qo+mI/vU9uwbWDub/LSfhhN3jzTtHKvEXlvb0jC1fQp/JSbhaKUUMKKWsrVNrKv3CnqlrP/i2Nd95Nfu1mLQPeeDccsumkAb73gSAUpGabDTzj350wxE1HsS//o8XT5aBPiKieOuHrlncmX7z7c/3FqDQu/uxwRcvevvkhlIOhwBoCWmgWANo0kbSxLEW24en//D9bz3qbxeTsa82rUMeOG4A+TlptsH8n3c+dwLEMvrNdx713GINOANWDfS+bnlf9y8eOVi8DjQLGGscK83WM0CsQewcnv636y5f9dHFavdA0TkkgfM/v7TtaFLFPR/aMDB1oAYy3c6fffmny8q6dCZOVzd1rej+2NKu4Pre7jzbyKBIg1bAxjCOjDd/tGVb7T1DN6yp/yz6uT9tHnLA+cv/eKlfBvGpH7x69bf3ZWDefSvJ2zag2pe6nep88Rsvf667FPwKIcS95XzAPjmrqsnpxo6Xdlbe+uENxw0vVlsHks4hB5xb7nzpyg9cffjdiDiratrbAH/hjmdPKaj82K+/c9WirA8xcISAy3eNV395cGnX7y5fmn9bvaGqL2yvXPPbG4554kAyezHbOuSA8/kvbu358LXHTe7PIDH4brxm1VcXSuOv7nrxrA9dfWTb2tLf3Pnib1Qa1Xt+b8OJz7PdU1o9+P9Um/qbN77tyDsWSv9gKn/IAWcxBvfzt794TAhKffDta16YL72//o9nBkQQrLrx6tWPzLfOf+ZyrwFnkbj3d3e98OaX69P3D21Y11wkkgc1mUMKOH915/ZjP3TNET+TyOvNX3ph5UfeuXrnQc3tRezcIQWcW+7adsHDO4d/uFgLhP+08fnC9FjY9VvvWDWyiGN+SJA6pIDzN3dsW9vMyckPX7E4HhER4d/ete2KSAU/mB08hAD75sH9Z0bQIQWcP/2Xx7p6upcO3vj2I59dPKYQ/t2XX7qoTmrbb1+9+nlP95Yv7yhpUCcLBXjjLxzxw8Vr7z8HpUMKOAdqyD9/687lQUEdo2PY+vOqxl4DzoFC2yHWziEJnL++dfvh/bBq14ZFXDo4xPi+349zSALn83eP9OR17cIbr1p49He/R/TnhMAhCRzm3T/evXN5rOmMD1x12D0/J7w8oI+5qMC5ZROVljanj9lwXvmgWLzjjL+fl0juAUUNACwacO54YOLyQg7+GAD6x2vNy9974fKnD/TD7K29z9+9tWf0R8dODQ1hW9rov9yzqyss5I/vycNpQorXL1sSaIm0Q2l4ua6CnbWp+JVqrTEyWY9Gr7tsRXVfV90PprFYjL7sN3D+/NbtxeOO6vmjnIBfBkQdSoRmrLY8PTx85YevOK6xGJ1cDBp///XtfaDF+Rji2EBPeZkUcJYAOgMFHCcQujmlUwioD/YGjKwcIk8qEpx8RYRNQmgSwUSs6BUE2KMJdoLWOwnEjqkm7a41YY9qiNGGKI1tOA9Nauqh/Nkv4Nz6wERfdw7/RQCdyWm0g30S+ssSlEKsx/jtyen45rNP7Nr0sxrAf9q4Z7C/lFsbSHEGan2WkOJE0HqFJsJACs7ibMvZ4Z23A70BAukC93lmRrtNLudaiMIgykltYS9jQxPUtdYVTbgHQO9RWuzQRDtQw65qBLsbddpdEWJs14tjkz73+Wc1PvvT7j4D51+/Mr506YD4/4WgtYhAK/sC6O2SJqeWPzymzKBaBHcNDzc/tf7Mnlf2p6Nz1f2H+4e7uyk8vpSD08JAnAWgT5MIhxNAXgiheK8tkbC6mWUJw4IEaK3MbgMZCJBCVgd6JRJQkYuJDuAxwDF4YyKUIK+FQMZdCo8COelP8LoE/8fLGETAAJsmwEmtYA8A7NZAO1k9agW7GzHtaTZzu8arzbGJZvfUh6/Ag0Zyez7sE3D4hIU3dE1+UQi4KA0aBovfrchDypvQeMOZ0jg8WlU3XHhS18NzAWA+92/ZROHS5uRRXYJODXLiTND0eiHoaIHYzbzh7Uwp9logpwy6tJjhAeD9T1FMgIjVVf05REFFJtAGnFSldH3/3QKqXYSZS2mxxWrPzqpWWdcx1oyEIJQmVDFBxEntihqxxq2V5sRVG86zOzMOls8+AecrD45/MJcXN3HS/oqlEvq7AyNpeDx4bzRPOLPRzP2144TN0Wn1q29cV/7WQh5+aGhIHHXRbw4sL5dODkR8BhKcFUg4ERGXAaBA4k22rY+f7LPljZq+JHseMo+PVF/eIxEFmszyynRkVJIQAMW8BBYb/uM0Vuu3B4W7wrsY0mVbStFKKQtY3ulAECsw//NvrpbtVdTU/3jVub2fWsi4vdplFwycf7ln18DAstL3kaCrv0fCiqWBAQqPhpUwRgkAb4HlwTPf3VZYTdAYm6Z3rz9l73YPi/ZNz1SvbzT0uc1Yvw4AD0eAHAEp1iPpoeWmZ9giafGSHsEOUqF9gKnZ3x1gICFMJI7bOMfgAWwfrrRG8rLGDAVXziCXAetBwqrR7q1qF4WzMYPrNhr62qvP792nBPxXA0QLBs5dP5r8eF7Ax7tLQq9aHibGIg+WOYUBLIB4sxlz1APH/OTBU7R796S69G17sXl+si1+W1+X/oeYKDbgIzCqxGxgUwRNRWDEOf/l+7yxv4OI4WtG3finTAEnETrto6r7eqQOBQQJGLMASGHCq6dEsqQQzH2NYjsOHiiJtJuDk5nuGhlEAMOjk3TxL61/dW3F+YJsQcBhw+5rD1UeKObEUWtWhlbiW3xY9eQY6CWMVV0t9WWkgwZsNNUdF6zr/mCnTrL9ctkR0bekoGN5tLwX4/lnJnNKLbS20loQMZhYefGMtkBz0s/sabIttmmrVCf4en+3qEqJpYyiSer5+twH//yKVY1XObFtcz4gmQmQzmyz7RAqTfe89ayeGw6GWNKCgPPP3xs98rBS+OBRK0MsBNIMDm8w84xkaeBtHWMkp0Fj7B0LJNKEY3W4+q2nd804beqJFxvvWVrEv9CEjL/kY+qZAWxNa38KhLeEvei3Bij/ZytZKehtr9Z3c83YZmQ2yfFmqr6ynJASlqRVTWIAWwZCHFuARgyY2B1hkuL5gga1wxbT2eojgahF8SevOXfpP89XMrxa5Rb0jF/67uT5aw4Lbu/vkTG7nPbMF8sYM7MdiJKzYBxYWBJwIXuoED8KQqNB96w/rXxD+sH+aSMVLjqx+d1A0irroTkJ4RqxZOxFI+UYiN79N2Cxd72UspeszWX64JhELCs0x2S48wja07RShDUba7jEpGEVzGoninz/200YEytMyaSs1swOsmk/VX42yZOl66rUJ5p02YbzlvxMcqs9vxYEnI2PT//CmhXhLUDamjBOT8WGiTY45sHkvSpvoxij2UscYyyL6q5djddvuLRvwndm84vN93cX4LNkxIo1rr39aHjsbCYXhXH3XVAuo8Ja4HHenQeUp+kkkqfppZRVjxZsfI8HiCVRI+pgRM1zOs81yHMDrb0hInx8657yNT/L+M5cz9TW46dfat6cD+k9jJqWlLGMs/+31BPPcMN0lkQskRywPJCAKBiviSuuOdt6WPc8Rl3HDTQfkAKWtySNlTAePEbSOAD6No37mlJLTvCYOh7caZso7fEk4QI//11DXmqxJCqECPWIoNbgOI8tONegzQUEP6j7XI5ARBr/6qo3dH9mnthd9GJzjUHS4Fcep6XrlkcPE1LBnCDlXO5EXTng8PFlidRJjOXWMWapWE8wXcNr33ZO+RvcyJPbm79VysMfEOs7r1IcEH0nfJzDA9RL+0Q9eZsmZbAnIDQSxIHcNeAlpIGnq2MCyondQdBTEjA+rRPgYMYl3xeOzFRdC6fCYYnpmN7zjnN67l947f2vMW/gPPJc/eqlJfF3WrMMsYahZ2DaezKSxts0xvaxEsOrMmOoGkMHg4lIXPX2s0o/2vgo9a4ejB4UgpbYsi0LwDK+ZXRbVKUAkFZRTvIZr87ZQaa+648FWMt1T4KFqXoetEwgkADdRQEjkxpqkZV9UrQsj/0f/v2joAl2jdbUxb98Ye/Y/lFaeO15A2fL9sYn8gF8hPi0BWMIt6snxkJi46S8FbfskESVDfNsOH1ybLJ25ob1A1Nbtjc+2ZXDj4A9Ds8Y2emPOVfGwNV7S87YzoDIiyqvmuxfayslKsxd8/33XldL+lhw8adcEhAIhNFJBbWmJcICR5ho4EHxYdfzy1ec2f2BA92beQPnJy/WP1II8BMxnwnkRX7K3U6Ak7Jl/LGsdgnCqgp3fohoRPC5K88q3/zdR2j5kYdHDyBgFy8xedslvY5g7aJ2KeNjPLNKES+JnD3mjWVv+xggpVRX2g7itgIB0F2SBqxjBjjeCCeQEnldK+HVfOMxWebua700HYEkak343WvO6f7/DiR45g2cBzZPn97fK7+mlHWmWgy2XouZsX7JIVFP7V6WdaFJRjHc9tB0+XeH1mO85cXap0v54NedieRiQxZebV6VWwtjfiXtu5FKvCBnXyVuuavjjVDfT0vcgdmFA72UcXEmKBcFBIFtYHxSQ9VInNZwBQGDZxZWecPK316oXZStPwcdIqpOTqlLN1zUm+z7erVBNG/gcEcefqZ2fSGHn2aPKHKz1UgGHzVOudt+icHESOw6ltQadjRi/WdXndXzbxz9/N7m2pGr+sV9AJRPVId74uRsYC852lyQluvfCgz6AKEHXMpNd6rKutguEuTiT7a+Je75xXzucdKGB4hVVd2pKl+OywRyYSori5/Z8LEgpiNIIJxuavp/r35D96cXVHc/Ci8IONzO956sH1+S9DERwKVA1GWCxYrNAhvyT1xyQMEeUqzhpUjp+1Us7hmuDt93w/rWsWVPvdS8ORfQe23t1vKFWePy9kl61dkvQRh71xm53otLSRHLXAsGXnpIR4ETQ9u5666aKe9jOuW8gDBnh4b/HZloBw5fZ7Kc7SjSS+b7wYj5VjVyjs9GBthBBPc1YvWNaEo9kI6HpWnd9wQdUS431uYEDcRaVEZruUcvXovb5tvebOUWDBxPiN3zbmycJaVeBwBHEFEXCxYB1N9Tkm8aqdBnRqtwh3qxuLPT/qb7H5s8YdVgfiPn6xjzxTHap+X56LNnrDdi/bKC9668xPGSwC95eLCkvajEeHdttceHrOfHMqSnLI0a8kKObZx60/5SCWELqnwgZldZs0Z8shGcudhDktNXNdEWAvx6ow7fHt7y1JYbZzl9nde1fvKyuqIk6UNS6FMBMFR8bjtwbhTEtSZ9Y2SC/uDi00ov7yuA9hk4szX42HP1q3u6xD/tHsdrzjkhnDXGcO8TUyuWd4cXBBIYeCcHAo5DoOUEkDPetz1b2qmQlmHsxXsSYPRrWE51egBZD6zleqftopbX5YKLPiJNnHeDUMgJCw9Gp2AbJzbA8f1JhJgmCCRCyJb0q/BhVscahgXCH0+O1+//xcuW75irmU0/pWW93c0/L4TislhbtNhntxrBL70oDRNj0/p9b1xX+tFcNDvdX3TgPLS1+q7+7uCWXWPqHeedVLxvvp0aIhLnPFxdUS6KY7vyeFI+Jz6AoA9rSQlri6Rd7iQOkywjtC8/GN6n1tOMOvKBvpRNw5Q5xMCD0dslOD3MAtYZ6ONTCuqRRbKJQKXucbl8gMbTWowPx7iaMUEjUhAZLotHrn3z0qvmQ/tHm6cGB5bl7hCIR/mlOJ6B3GcfT2s5MWaxtzpSF1dfsi6/ZT7002UW52lTFB95tvqLS0rBXw5PqHedc2Jx40I75Ms/tb1xaxDABdbLsaAxMSGfWZi4+O0t+FVwz/n0irl33X0NT9uoICLI5xDKBdESdc6oHp1SUI10K3HQBRW9BOIlj0KBVdYsw5nVTCk/nJ/L5BhFvJCqUu9/cBIP6cfXXdx/xVzjuGkThf2HN+8KAnGq8R4TR0XbpDE3yxg46YS7ZpOefXG0eNlCd2YsOnAee672K8WCvPmVitpw3gnFBaWJpgfnye2N26QU57euWS56F7217AHAHp7x4lweTJt9lLjoqXUvx0jDf7/Vgay04dielzS+bQYOr1fZsXeVU/WYGUGIxt6Zz4clHyejRZE2UqXlUbYQlnhcmh677pL+t85Fd8tLzet68vin/A4sn/dtAcQnuNva6YXmJMamOQ6kb77o5PLn5mrj1ZU4z9V+tZQT/328Su895/jCNxfSmXTZp15q3CYEJMBJor+Gda1tKuk6nK5gJRJBHLlELpfQ1RZNtlkV5h8vkYy0KcpkgP2aFc+ssSkFtcgFJ1NRaO/IezyV8tKoLG/op/vG/TJgYaniIu9eIbaWPtwVLx0sSB9/3yX9b5ljHPGZnc1vhlKstTnfFiw+cJo4HGlpzaAy/eCxxKmRVxpnX7WApYtFlzg/fr7+G7mA/nh8Cn/pvJMK+7xvmyVOGND55hTyZNRaMRgz9zMqwP/2IOGHs/Ekq+ZYJZjkK7f4ypl7PqK8pIwgnKrJ0mWJU2s4ief7kgoTpMuzqmOVZRK+FNsq3LZVF/7griRK7SWfQ15ikKfCCYji8V+5pG+vwLl7K/Wc1N3kbdchTxqjejkxzdl0Lo5mfnvpw2NjMhdt8p1sxPTxi08r/6/5TvRFB84jz9Q/XMjhH05U6Lpz1xW+Nt+OZMtt3hbdFobqfC9pEvAkasZKnbawfQpIaQljxbRtwdo5LS/D7i4gyIcIZo9dSgWlVVWV0yochYRGFrwERuIwvYiN0k5etw8FOCO9pZKyiPTpJPjE9Zf2X763cdy4mQZX9zcf4Wf074tIHAHnHLDtxxOjkGeVigbDrMpYzdcbBJM1+NYFa4vXzZdfiw6cHz9X/1gYwH+p1OB955xQuHu+HcmW+8m2xm2hhPPt2HeWNJ0Yk0SCvSmSAoyZZbNJqdS6qqXrWiaAsWmWOC13vBUjasV60nEoA9TUA/l0V0/W/rVgLeakWd6YrmsYmeSUOHvPlyGAJ66/bNlegfPNTbRkzeHRE5ooSBLqnHHsc6f+79troJizWZUmnOAB5RaPFVBcmab/evYJxXmlpS4+cJ5v/JdQ0McmqnDDeScVvrK/wEkURAoAbIKWCzLR5QyWZMeDW5/KSpmEGQYSrbRUw6ckYtSu/jwwjXHslhzSaqYNCJ4ZLlKZBQ7XC6Xdn8WR6VIBgde7bPsAwxMKhieaLmUkZSQD7hU4Q0Mkzrpy+k/WDIbXckTALwbbKL79zcAMpY1N2d0oLs3XL8G0Mhtwok6fOP+E4pwqa9GB88izjT8MJP7W5LT+tQvWFe7aH+BI6YzjlJRgHnOYZUmxswdjEsmcTcFJ5WZ7ihushOkJk61oSMmSRISkHajRaWXEecuItU/ls+nTQsx7dMbTEgD5PEI5Z4GSD1tRZsPgFLoYOK+MN1qrI94+wb0D56s/mrpeBvC5/rJUDBAPFvN6Iw4ThAilvAWNzdG221yzmwr4vg13QHW0mj//klNw9954t+jA2fR07TNhADdONcWvn39i/s59Bc7jTlWlIvzJdhT+0us9oMTOaNdBbb/8ni5jILMLbLfPmG0sKeOpTfWljF9rHFuKfo3cz16+5veTsU8WBhwLQugqCBOF9qv5LeVnJQHHbSpVBSVTTsCesRiGxxst4PqOIW65/rLll3Qaxy9volIoqj9CxL5cADCwxO48MYa5ey7ez++lr5E2YF975CdGa+dt4kiIKMI/PvekwhcOLHC21v8kEPT+SoNuvHBt6fb9Ao5zx7M2JqN9SYlVlTMJ0o2kF0VT19MzxDDdAW50KjbbXazOSEyMNik0OqWhyl5VhjYXZ/XQ5YESptSPsSUsQQaPisGkZlSqGip1DRI0lAoBLOuRJqtweMIBx3tUzs5BgU9df+nyN3caxzs2Vc8uSvoyEJonWNplwcovkWWJwouwPqBpDGdvsKfSe63achmWzjFoxvrBC9aW3nlAgfPDn9b/PAzg2lpNf/D8k0tf2mfgvMDGMRnjOC0JvCfFaZ28TsRqi7MbfNA2C7K0yunUl5GKNrtCjSjPqET22VghjnDk2Lnjfvb6v8cOhi5vJyPxvFSpMVhiaCiAguSswgC6C8L03RvATIuBs2c89b4zn6CEuPWGy1dc1FHi/GDqslxe/C9NHJGxHuaysgCUNkbD+USsIlv7+lu53z43yYxvKg2YryuN2y5cVzz3QAPnC4Gk9zRi+tB5J5Zu21fgPOaBk+aHjwKniPokLgMgk9bJ60YAoQGTVRXM/paicR6FkQQCRiuxCRZagZNZy3LM4AAgu+Ne4ngwMreOGwwMCIxU0WTKsQqarttktK6C9ZoKoZhxaEE63WPPBL9aumGlVBKQ4mMVxLPXXzZwYadx/NKD02d05eHrvBTl7/M4sKoMOTeapWHReVI+BOGXalJ/uUn/qmuePLGCF9e/rnTOAQXOD35avyWQ8AvVpv6dN64t7VM64+fv3pq/6KQj/z2U9AaPGx+oy9ouXlLY6+7fVCEvkVgd8P8sqThnmGcnD+wrk7EJhCVSzSd4peiNVrRLHW0PC7Dre+xKljgIlZqGXaOxWe9iicI2ThjaQKA3V3zwrVMKz/B4BMPj9bbdp1bN4QvXX76CI+hZYQq3btxT7uktP4yaurNMZjUVhlZ9JYavA4+XMsYMMnZPyhszhyzAQxefWrrmgALnwaca/xhKfWW9CR+5YF3x3+YhcfDWTaM93RQMgtSrAsyvQNDl5b3B9aGk1QYOPnUiNXSJcedVGV/waaVtEsn/YAb6IB/nDbPXgyZdwquotKry7fJfljjTzjg2qRoJRhUcM5g3BjGDzzj67ggljzuOHLMEmqpGRl2t7MtDOe8sLrfMzl03wJlwR+B499gY23Ls8GXFP1F8+FKTXoZY77z83J4xv3/87oerNwuE97pHnzHc3UWErjwfcuXTezPZky5oaL0xUwZjRV+47PSuzx5Q4Hz/ydoXAwmX1hrw8Ted0jkewDOlt7dnpab4qEDAICLyGXwC+ZgdbVSO6u8W1wdSJMBJM9KkV2RUWAKuDqBJr3OlB8Pv4PJBsRbEvOqyf8cqNlndbF91HbG2l4bjDiuY+IzvDgOI17Ump626sqpDQldRQjFnQwicNlGpKahUI+hfkoeuHMIrEw3jVbXbWpzvIydWDXZ93oQNtBasdVFTlYTY1VT0oqqTDgvBnQiQSB1zwJwDN39d2mWT65MxcpsGzHKMyxP348vnNtQbzfVXndW71zciL7o7/uBTjX8Xgi6qN+mTF51so5DmlItHp5YFII4iwNVBQEsBQbIUd4vR5hQLIcxiLmoENdAT3JCTsMZHOROmGo6lIrMdjlNLmQhWBc2ICqfkfmp2t9Riu1YYmYpdHMdmCKa37xyzsmCWGThAuGcsgmYMkM8xWAIbeAvsmpC1fSKYqsem8XIxgK58YDwyZuqe8SYMj9cyx7UQhFJODC7v+gseJzM+IDkNAIWQRFrx4ZY8cocrguuIyJxdmHzs+XESEaZ6ilwbCsqsndsYj48eW0DxaRgmWvGJt55R+t97kzZ8b9GB873N1duDAM+tN/WnapG+C0gfE6BcEwRBtwbFhqrhCoehePp0+mit1fIe+f5A4tFu4iTF0raIB1VWxSR1UqDyecwtQi3w+KCiXa5oqUYvRsanI6jWLfrSoGHJd8xg0dg4RuVpu2VYSDSLm1NGqjTNd065KJdC4x7nAuvppD+vTNZhz2g9c0iUkTiTR6xY8uftZruv6cbPpt72KII3AoqjiShHRBVEfFQp+E6jMXHvsYf33To+rR4gwpM10TKzIKop4JPSFOlRALGpHkVfvOasnp/OBZpXBTjff7LxFQR6fVPT7XGsHzYJLplRQtA5wmC5QP0SS5hsRxFJ9ZdzvxZIOjqRHs6G8cy1otj5Sl6DeFIZM9LmT6bXlVpCqC3ol+qINWQtoTEjcRjqGW4TwZrBolNVaOygaZYqNevkcJyG3e9iwEntLeItoKNJtZiqxjA2VYcGSyP7YCYyya0FUlZWrej501nCU21DhyhMdE8LG/RDokpD0Qs5Xdo60Ne4c3JKfezC1y3OOYyLJXHwG49MrwwCcVwY0J8B4apYw1d1rO5nyQognWwxIUsKQvGWqQaeLoD+PpC6dRopg4hxFoNa1ht8IBC68eQHAAAeN0lEQVSQSJxksK1YtadUZbje0uHtqmiG1PIppakb7bEik6OSAGd0KoJGI/F4U+mrBEevLBnjeKKqYLzShHIxNCoq51JJs8Bssste1zBdbcJUQ0HEui0DSLtxzT5DIMOpVYPdn+PJ1IYSo9olZ96Y8W3/uGtasfgDIqX7u8PfqdTUZ7+9tvgfQ9h+SPh8JMyMyb0vlXwdzhO+4InGakHqZELqI5BRToqPEemVmuCrGuA+5M6zC8Mfxa4wrSiE8DsjFWo0Y5ruLgR/KUIykS+tlM1sQKmWleVvSKGPya5me0GTDQr6PiVpEa6gM4n8PDZ/s2tO6fhM1i03EmcyggYfkOM+Vl1Z5XH0yi4TM3ECMTGSE6+PyOw7n641YaqmDQCT1fK0KrU9s//6RC7eUSrD6SMO6/4sklQgO4HEJdbwECs3zu6PH08SkpaWxEcbTfp2rakfULHaEkyWt65fbyPO+/LZJ4ljEssfaRwdhOpkRNHtDVxGthDBJxBoBRHcHSu1UbLLkZLwuQA+hAhHjU2pxnQtygPS1v4lxb83pptPcdSk+rvDDwpUx/rhTBu82YiGt0u8AEnWn7zNkqDKLwNYaZJ289skQ6L6bMWxqSY0WDIkhrktwBLv6JVlGznms3ScVm7EVv1MN1jFcZzI5+a4eklH24WI9ahaSol/89nLq1cu/QwEoHSkUEiZUcTzYDsBdRfF7zUV/aAaxfcHIJG0qDWo+WR+rPzTfQHQgoFz92PVVTkSp4GMe4Gk3Qxu3VE+v56kEL8PSMs1wd1A8C0eTz8UeUnnCoHv4ok2Xon1VK3BJ1djLpDf6+8r3o7ayFDWQaqvHPxmKOlYY/27sfFBwAQHyT3HkKwJkjJ0s1KmzZt3qGkDp2+TtwBXmlBrRIkpn6yKG4lTNhKs2lAwVY+gVlegYr/7yquczF/zc6a95FNIEhVsTswIq0euXPpp9jRT+DcvAp0VMu5YOtZSXI4ndndJfjJW9GS1ru4kjYLcPUSqRs3oicvP6Hl2IWcLzhs4d94/3F3qKrxeCLnSTBjej2/TOt0ssL2VQnyKgJYR6a8JDO5RqEwbAWB3IPD3NVGBmTYxFdUr0/VCHCvQOsZSsXhrf1/pAWDvVIPq7RK/JQUe187g9qHy7qTpj88FtqLASoQU8/m2daVbK8OdYj+teq2tNgycRiOy+7TS3OM5IwUoZbay2jadUW371uq9VV1pieOO+0oWNVuLoqaeqyoDUTvisGU3gaY4MWU8hNpMG6OrWgOULqP4uBb5KdL0cjXS/6jtEpz7SBsf0mqk0tCb3nF2z7zeeDwP4BDe++PGcQL1KSBmWGEzQE8gbgKgPiDxNQD1NV4uYgmTC8WvEulTNZ9ITwCVqWZzfLKa0zrmuHo00Fd+rljM3WJONNGg+rvEb6PE49MISKukmVLH59a0LfWYYt5BSvJufAzD79b0qimFUm+j8LwerzSgUbfvoc/SsljwFf1x/K2TLVonYDp11aZoPJAsUFqSrAWwQGD9qMMH/gCQ5rZHOgLKjlQhFJ9GxInpuvpTMUschPkUxfrpydO7frIBsV2PZji9V+DcvZXyuWr9DTIQbLNwcNpURw7HsF5ntc8ij88aMvznW9xBWqIV3COQvsKGMQeqCjlxrVJ6pQJcRhoKlemGGh2blOWuwvCK/u4dfIhpM9a3k8IxHqQlpfB3PXCynklL0rjEhczbPFITNpEQLaOXH8StTKfsnJZ1y/e8DWPXs8YmGlBvcnZeStykJZoTd8mBBh5LzgNMG8MZmemEUHsk3LTvAClRNFYfufz3QdmFTDI2jjI8YG6wOkp44jSBVmaBPPnoALAgxZ+ARhWR+pQ7UM3QMJrD8dRYHbyYp2h8crLyw2suWF6ZIRnchVmBc/vGsd4l/cXzFGnzQgwprFGmtEL/PUuUSElN+EdA0I1C3IOo7jIv5SaQhVBsAIKQ13I0UXelGi2TCMNdBTlllIgAjBT9UGvxFFCsekvhR1Dg8VlLsC2u45hnHsJltrV5W05CZK8ZBmSkjBccLWx4p5+9qgbUG1biWExkemUWMltXfSpqCwDZxPW2nGIryTJuoldtArG55siBT7LHOhsTZ15vCQulAQPEQhDgZ3m6x5o+RVpMpvnYiaeKYtWU9MMr15V3dWq3I3DueawykJfibI5vt0u/wNnCM6WmQb9AmZPiBs6Y1ABPNSN1rwUOylyIGyS2JgKfRotu44C3G4j09lpM3xEk9ZIu8VEh6AQ7+VoSwDAuMTSs5MjeZ7vRGsOZJPeUlPB009IphQzXoh2e8cka1BuR6bDjsgOQA5Lfb5saYZYyCXDSfUmhtoWVdtvJe3z8F1E0jzx84BMoqCnZtTJttMydvYHJO+8oxVKB+Ec8gbWGP1OknklLJAVBm/kkXZYGyYAazepjbz196QvZdmYAh0GTE+INvOhoCjuV5N1As8DME0ypRF2ZXAWTh4lBIS+uBdChJhyPFP47qykhAhkG+t0sEX0E1QSTzSufCJE5YiLMzJ/4DqUg7i2HHzfAaWOGA8NMh8R7ykkGf/ZB0/ZRy2tpnXHshUibyeKIjFUYOC2J49WIoWmsbacy23cnzORp2nvLxHD8OUIt0LjFdoHNI1at+KgMRGTG2I+1UVPS8sF/UvfS1wTAUUD0B+x2KA3/LhG+5esZGqjYzWrnaar3DS0ef+vpxTbwtAHnm5tGl4TF0nnag8bh24YoOsQPMoY8kgpzobwWkRe4UTU0/KtW1BSgc2GIbzdp5oyYGUtU/gU/gt+u91VAMd6dE58Ugk70vPHP0Wml2ysOn9SVmtSex4mE6OhyZ9VWCj2Mi8lKFRrNqOU5eQlo4oAtFFtwOqfaikL3aam2tLflokntW4uNpyYbhXx+olzMjZa7CuMyEPdrgqcU25b8yYz73qQO30NB55LGX0MWxBoeIlB/Q5ye5HmaptdGu6Vvmg31yFvO7Nrp20qAw5vWJ8KpC2Ug8vamS3I2hrACRiRfZcPLxAect2SvJagPi/ngl9wbxUSk6S7SuAe0LuRCvKrttS+dnhaBp8RDQPScCIK3S4TVCLhECOwBoDIvzPHLpHjapK0M/t5Sdy2GzVBxnewaz9oUQY8bP2yVSQZO04GwpRx5Kb9t2aOTC54SZe1enVe/xOGMKBeGk6VCOFIuFUYLhWDaTDFtX8THMy1WdD8p9SI7G3a8ZWIYdxpK5pO5HoJSMfDhkueaC4SjAuNP8jleEFsanqdZOp6G4bcGVdf5719+Kk4bMPrC9z4x9TopgsOM/qTAPJW3ZBgk0j01X0v/9vWVipECzBUC8V7iNSezWRB/0IzhSUG6FObEW9AYHv7A+3Q3rQhiTa8VbY8JN+UFvB0F5YxiZK/JHFkGJYHUKwT2aoJeAChyegaSIM7eb1M3aQPYf/cmSrppvw0lVT61vmlIVirT0Gg2WlmCpqmUZPHeWct1a+OB31VpJSEh8rtLw2CqkAtHusrF4a5SfiIAiO3bGpN33RgaPv5EJLTS+juRxj1sPTSdycBl3FGFSZvMI39NCSzGMf0P0lSwKEQZCD0EAozqYb5ansbo+Z7uvJFynhjq8fUnFX8IbFxwodsfHevtC4qcpplxFxwJb0mZM2RiJLDAMp+0aEMohAFtsKmRHFPSLzRjvA9Rd+cCuNguEe/tRAfDEU5d+W4O6ZrW8Yyt5nggJZoTGfggG07OLBNBHwrsI4IeQJFDUkKx3eTjNV6qWHQ6kLq/2YdO7U7wZSuT01Bv2rcb2rUwD5q00c6WvksVTdzp1oKsFNjI5XMsUXYXC7mxXE6YdD/2HDImW9sIeeC4OR7FhPfqmCaZFRzpSPiQXsZKRWA0Yg+C/r0wwDEgfgMf9iqlvyoQHzQ0zJxsRfdn8NTz2AmMRk395LIzunYYFm/cPHUagezPIpfvpdGb/t42pdwPTbqUD8U7knuEk01FdyLqnkDINyU5450q+2vmdCzcJIA6Jmj7QW6Hn8lnIinMqwlLAsQSDQwk6tP2Db/2xVpoweTx41VS1hThNtI5PlOTFaOq+GNSFD0Q7Rl0qd/JDRRCRGEYjJcK4e6urtKeQk5UpBA60nrGKckoBJFulzQGVMLmLrXuGYldizXcC2QXhufiCb9YN5fD9yFSlzsSCnUM9zSBtnp+e82S5v9sdJuKqpecUvwBcpCvWK+fa1+XvL8fXc6H4mqTGGUeHFUtgjskqHwg5QVuT/9cjXDcZycIOAb5TGVX2pjPJtzj7Bm2sVs2tWOqLSzMgFs/BQlCAiwTQJ/W2K+J+njzgemigZElYuykNKhSF6amGDiNtlVrjz7LWat+RCArhXxud7mU21Us5McCaV45za5bIlWS/rtnSQ9GNrkrK5sT6SNwMmrSdwhpztiOjdrjBgTqN1YCIsYx3RNr2Gtq6GxMYpw0a4WHkc/ik4E8iSLOk+lQnLvmrvM2kk5lVGyXFcJQdwcyvMKbqkqD0ITf5AeUSOf4l+/uVVvZmSYEoX2FM89EIfh9vSa91EstGzX3qVVmWdqknnLASwpBtp5JTU3qsbwhY3uJPBD1xorX1Ewku5e3PfFdo90yKYWVSgXq9boNIyfrTcT5MNVcGAx3lQo7isX8cC7EqgEuq2m/NpbqB/cNbRYAP6JLgLXwsE9icmdN/z0neBGYJY9/fmcl8iiNNGN9v+CdfSx5OvCGr/H9fCiuBILDLcZBEOLXGw31om+DeTobbyHFfy7PvBYatuH3nq4frSIyRPf3I4VeEsjwMp9eyVubFNGPifSeQASvz+pyDzA7iHy0rMaAU0sFLiOlk91pySy1XGlZjHbEW5fYFTHX3Lj7KetW9RJfzNAwRrqJ9SPnsxJ0xQT9StOAJlymNXQDER9kSZOVSWg0GmwKRGEYjhTycke5q7SjUJATaCz6dmmtTBox37E5yjYKYVlumjRGYBtuWm6hzwblbs0IUdt9Y0zLaYgdCuihZCdqBwZyrpcgeZGUeKzNYUARqfjrmnCfTxwlFGN4/1P1EzToZX7dKUG6c+e8AebXNbLrG219FdQbSvlmnlXGs7J8fZkAnpIoT29/IXerJqdp+rOmTXqGoDVAOO4O10qMQCvKXZDJZ6Q6i0EkU7wlh3wLaDSJj7CkkWehbN7N4PUEg5j3lROFbGwrwuXT07VymBM7ugq5V6Sgpk93TQPaNoGcUG48J04Cdp40mM0JSbMsORNEt2XWJv0wopOYnFOlLljKa1AcLOeH1bzdwbyl7YUm6ceTZ/VuuLvA3jsK8XpAOEWAIKU1H337NQVqlw+ppEMrft0xbeP49SwmadbIMJhGPvBage4POqDbSIEYMAgYqp1NqTiOzf2YZxmJpYUAL+Lohk8aQMJprWiTFHgya4qWnk4FX9LoE0ASxYla6wkgK/odAOfScEk5L5i8KEpLupbd0PJXWi34b7aUL+snQrbG3iR0W9lM2nVLkaWfzNbwSfydnYCZY8EetiJ8uqnireEMHrkeIp4ghDzLqkktmqTukRxf61g+gBhjnA0PpsdKVvGex8bXlILcwN4GYb73MBB9EvF8szfK77pF0E0NjwaCVieLSjN1lm3CG4wo1gmEqiYa9ZJrvn1YlHItgbAo5PZKpE0Pu5ILbJ9tqlhHP2loeKmTmYqhPDwAulCTIN4ZHJP+BsW8s2HfPrquJnHjTyeX5aCwBiAydhD/YyRIbFUNf2fxFTn7nbeVZr8HQUiIESLJfpR4jnFSWlObBe7TRBy4y8SJfOwh9ZctQYH6dYSCj6TekY42p9WRSWp3kezAZ0mkBrwNm508mMxk915bm9gyaiyV+eqIehVkSDjvzv/117zEMnLE9WuGFHEHc9u2rVhK2ussJhObzrPc02ebN9bqx0BimO/FcYTeqQmFXBogXqy18Q1EBPQNQWpiLp6maaRxgVTfhZs3U24Eo5O5MUZr1r/zCE4b1/ydgRJQaPxBXy8X4jJCfRafW58MLu9NRhqRKOLIbSSzg2uXKUIhTfo+/5Yg2WTPCSHW8rqhAnqZTUzWzZbPM2MdneaMKW/40Co/Fw020NvLGzOtLUQxF41sX7h8ts/O/JtX6MM4DQZc7c/diS63zWvPWtPDRs071DBvlFRdAYpLrTIUGKn4WwHJySxP07xOP0saF+YcBwyfNg/wwDP1Y6khyh6h+ybATBLAcon6DA5neRom3YJBDjCSLJmlDFmvovxMJwFlCXA862OlaQ8C2ZBth4/d0teyCpK1WWctzOc5PI20u9aSDK1p3yrXTrWTLeL7YW2Z9KeTXrKyybvj/pu3sLI0Zu+HCwJoESkdP0I6SOxDCPgkN7yElJbIeU+R3ihATs2L3xl3vBE1ovVry1tc5JjKRdk8OpU40Pa4OV4bSV3J/va3QkEDbL1ztMMPWcBRUUV5FLDNA2e2RTVDh7APiFabnRMIk4A4aSWU3SJsynCuM7KzYKWEICeR+BoJ8vcSDegaRlfHJ9gb99/V9c9g6qZoZMGXbs/sxjXxIxd3yaRuGvpCEG8BTvJffB3XbswbntkkSPcjlSzT9tzZzrj22vps1+2amtQjGgLDNnb4AqHfLIitYcQoxu8Ggqrz4Wm6SeY7UuPls0/qGUlE5ve31I4CEDOOy2A9xzYME/DfY6emss8RCDEAAa01CXHeHrDn1HRp0i8QWk3os8M6JbUGAgcB+H8T7WtopJFk8DJuTXpQzXc7ec3+c983vx/d3ErZWFw2duX89ZSbnXiFM+75bTzebknRSIKNDHprsthVO/9OEQf+rNxJl2ur0wppGBpZeunx53uBa4efCxGmIw2PC2U38skcnsdLQgzyei16IBSBWSvzvJyNp+k2YqDGRWsL/L7z5FwD2LiRgnBl45hAtqWrzkfaJ2VipVcIIY8PnHw1LjmvpAldRsSXNVLF5Cv7j8v/yrmlfZO/rOBIQOxz0VKKYnzFhDUy+xWzv9MdzeZsdyq7l7zuWZ95oXX21kffyHzKdBI02b2bThAna858nxRNxBKelMZOhNM1cooKmwDRDwUEs5oAnQaAhUH95R3Pr3fvG2sz0jZt2lGivr4joqhlFIZEFM3zncmB0Cu0kEczWIjjMa4HKKBLKZqQQuxSStl9Vnw+jXmriZkPJrGNOOym5LEgsQvJGs+axBhqmyvJmYczHsqvzvvdi6lZ3jaTI07AmEnDZDTyTE15dsk1ryKtBO1Y3/QxleLg66ZP3zBSJ03Dt5d+mFSWQZJl6bMt3TqioZH63jYWqQwGjx4uG2s9QhqeCQM8CQj7mTU5QQ814xl+0F6FRKNa3bX+9KXjvtAM6/7+p6g7CBuDs1HBJqAJxLMH1gQM3Xdo8Bo9DWIgjvQ7O/0sQMIuLk4Cn0Xn5nv6EcTORgvAfBfyBE3A6tQ8PxFUGexzb8zp0OOsLuw0TeeSqemQge9Ups5ewy6uD3wOAJ/2+Wo+x2ymN5DezSteUrMJYOzPR0FQ5Pk3K0/dc+p6fuS8ddgW9+noFm7cTOU8NAaBcwG9QHN5gW1jlrpnzrpRelDk5GF+X1gyiRB5pwTHc37aFpHM+P8KUSDSCZxUndgFBLFAMlln5sM5qY4Zfku6CSy6mZi+578zs3wiGi80tuUQpe5laWRTNH1Qk9eizLOx0evB6KVhqn8GZ7zbJAVgS0Oa3SJp+oaOo8H0k711HdJEmYYp42ema8f8nmUstJaxFBDyjqYY4idEDZThb/aTVmB5AFWtj1z4upnvNZ81nnDrA9uLhw8uGwiaIJoCMef2b6S/Z9skKVcg0qBJfOaYTc6mm5JSBRGA1A3cisKe1TgjpB0CBJr/E3YTntMd/C4YiXKaVZyZsFKyl8JHNZpS9rdC/uv7w/f9Gpv/zmX8dDf3mIbkrrXXNS27VFhP0/9OBI5rK91Odixmo2FxwG+ZsW37Z7CPbA5oSCdn2bzH1D3TXz867tl925KPqlKc8T2TBinVzWEyIjmuKH6K33bE9ZivnXjKK8xaFYbXr8OpDvDaew7Oxo0bg+4Vb1geocjrvH0A0QD039sI1gHCvBxA0MstRwNj43BKKWgMFZ/QGqvtSvA+qvZPGAJFESDvG0NBqz1APBMRZF3FMci8yzxkmq4NUDFKGRCfIwzoricj2eoD3+dy5hYbV0zD/+bvLl22Ew1T1qYUtPpgL8ygIc0JXKl+cBupvrXRSD+Hp0cBdaTh72f7kRkL80wdxoIA+b02K0jQjmpDPx7kWkGmNE9ZNdQjipfExeF163C2CM28krdw07PUo6nW0wl56WsaggGJuLRtD7NNwJJCcbROjDSVHukkIc24aFEWeXEYr6ymt36g4MPL5WwrXHN1a477+2p4pMkeDDTm6AOpEFCs5NzfgPSDk6TrZqdl5hM3oulv3NYzPjS09zN05hX6Ztq8C6LRO7VUkjSGq3vVI8cX0H8vhMEyAFySTWiMzawIAGVUC0N4uV43h3Ny7rqVYu67RNkLUixrHXVun0oGRrGZFXjzjb0FiCFg0ZH85pL2Gt9LNoSZb7ac6YfbJ2YXhs2dNrvA083+NR3J0AjcG+05H4a3MCsVC3KZBO1pmK0NjAFLNpOc3P4cvscq5qR/INezGamhppyp66RkZizMGJmR8GNhR0LzRhXgcAlvGhU7omb8EgYUJ3wMdVzbNjzh3e25ZuO8geMJscse53u6A4miLgALGsj/pVzQLyTyNpaOHz5MoBlFL3OdTgW4vgxmBiHneohW6sdcJV+9++k+tH9vBVDnan02GnPVS9+fvR+cGYn9XBYFvRIrBk28s9bkUx+qU+vXDbAD0pEvndpfMHDMxCPCxx/fXVKlrlKTVz/cR0LQi0p0JaueHVZI6/VoV5DLHEvm6gsVLpM5LGRd9qTjaS/MrdK3NeGumRV95/ZnllpaK7IZj87mBoRJ19M0TPumvKOWqusXhfkSSwrTbmjCCCbDINs/Q4NTDPjjyJlL7iETGo6eoeHbS4g5GqkV6RkLlh3GwmgDFj9IE9RkCa4r247OPzvXyRSLBhxPiAH08MM7i+Nd5WIuQNGF4RI2cLMWldFtPE4IGGo1Fum4XhVoRJO3lEuaKBb5gZA3SHf4mDyxtrc6LGQe2rL7S2N/6y9GH/aHBgrB8TSIlBqRQPVYk26CarzxuG4+h3He0sb2YZE+mzdvzlVyawYKQpTSJDks4I1h/o6kaxTFrZXbVOF8LtcvREuCmYeMzIwjAzo+v8X/9dc5IswCIZz54AxgBq2n4ZvyNJLfjlZ2KLJtpcszYe5PlsYM2pn+ziifajv7rLP2Zx/GoqbtLneUFCMps05VryEaZuUb1TOP6ZtYCBQWDTjc6MbNe8qDSwr56UmZg7ww76Hg640GYN65801FKso1bUCPu7rEdjdXFaJYyi3hHYodg46ZwFRSxjy4C1Rm3bU0ak1H3NCkkZwdrXTQM32vU51su9n2Os2g2fqUfY7sSlL62fZ2zz0n583wyS+FLh1NN3QziLQKJYra/z22gr8nXXPL2iPD1drlpw62Aq1zoGhxgfP88wWodrVUTTMMZDkIS5EIRNl6X0Uiqumme2lBq3e1aSHypVxiWLOrOKOQKz7bvez1Gb+LALUM0b3V8e7qbP3wvU/T6ESPy3Wisa/PkeZplkaepXJISkQ6DnIq5pPUp9zrjctth/DMRMbO+JXaFccdN6/Fz0UFzq2bN+fKudwMmsWXAuw+IS/i6Xygm0GgZTOKFFEokQ9TMuK+uxDIPObaj5R3z1ZDwCKBWXfwUox/83Uuwt/nErNcNu3++zqe9lz1DfMdDTYU0vUWQoPp8HPsK41OY5FXpOsFUtVhpQZyURzHmkb5DScA0NevaXRk5vtq+DrfT9/r43qjTzbWr18/57FxiwqcoaGhVqbxXjixdu1aXL783QjwQpA/NsCclFifDGVPkd988NpnbyMwNYWoykTFWOtid6yeezHW5f7UW9i8Nt4ZYGMlv6F04Z/7/vmfm0NDQ3sNuC4qcBbeRVuDAbd27buDVat6ZG61PZI8HBbIZ4j188G37pO9xr/9vWi5pk6/Z6PB9Zj2bDSYHpcZGRbI5fxffy39rD6VgOtwuexv35an4Z8jfX1vNEy5RkPHcUwTExO6UqnQ8PCw6d/y5cuRv/Nf36f072w5X4f/+nu+nqfB1zds2NApzy557IMCOB0Ah0NDQ7j2pptw7OGHxdJiEdcBwDanBo9qNvdpJu0rsA9kvVqtZp7tK5UK3fSmN/Gs571+B93zHqzAmY1XFlBr15p+p2fZQpnb3d2NPHMXWi9dfjFo8OzesmUL3XTTTQclQGZlxP4M3EFY1wCKjx7xSYsMtNn6OTQ0RHPd57rZMul6e6PB9zJt7xdQD6bx/j/szX4NsLZ+ggAAAABJRU5ErkJggg=="},26551:function(d){"use strict";d.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAClCAYAAAAZMrIaAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnQmQXMd533/d/d7Mzh5YAIv7IIEFQBKiSYokhJuUIEuypNBO7JRUVhhLcnwoseRULNvlxE4iyImdVMVHWZId27FlSZbihI5VLtsl27Ql8ARBCrxAgYdwHyRuYLH3zHvdHfWb2d3Zxe7Om5k3swdeVwEzO6+Pr7/u/+vjuwRpuvk4YK3kscck7wJOex2YbBYbZPFVhry+Tl6EZMVmlPIw2ke6z/xxjH8eIbaMY5gNLuC1vYkp7EJqjREhwhRQmbP0XL3A4s5V5PPDaDNER8cgK/9mGLHXzBWmi7lCaEpnlRw4+NetrF7dxqAp0N2V59jZOxF+DkEOa7JYexK4iBL3IWSe0BYQOo/xzuMNXcZmlqOVxpMhXligt7Ofoacsy+/qoJDR5PAZzEusGmbjtn6OPttOTvgUrEcGHx0MEA4bbMdGMFl8L0cY5pCZo9B1EnNuE0Ze45K5ws6dQ1X2rmnZU4A0jdUNaMhawauPtZHNtKILJnpD5wvvQMg2tJBghjHmBNezp+kqbAAxjBVDFMJBbt81gBDNfZO7lQsEhx5tIde+CWkXIfw2RHAdkTnCum9cnG2rSwqQBszbxKvcu1fy8PvbgQUYY3n57HnuXbMbadtBiGjie+oct7zjdc68uJzgygDd7+lHCJ04LUlXeORIltyVpeT7+giyt+J57dB2lI33XEy6qVrqSwFSC9caWebwIxlYuhgvqyIgvGPNboxqR1mL0f1YdY4N249w+qlV5L1+vvZ3/eydO3v6aVn38t+30d7RDWYtnrrO1eHD3Lunp5HsrlR3CpBKHGrkc7fluPRqK7/354P82AfuA92JEa1I9+YPL7Jh98EICIP0cfsutyLYRpIza+o+sa8F0b4ZY9r5yt8+PZMvgBQgzZ4VZ15aDYOLCewirLtBCgM27XqUU9/uZsjd9gS93LlnALg5wDAd/+1eycn33UZIjo07XpqJF0QKkEYC5PWnOsiqLgSL0Syme/s+Tu6/C+tZCHvoVNdYvK1vJga+kd1OtG63mujMTqS5QvcDLydad4zKUoDEYFKsLO5G6fjzC5DBInp7L7Fo4WaCcDlWXENxFSuvsX7bpabfHMUifpZneutgK3n9AKE9zKbtZ5tJbQqQWrl95BtZzuY0K1o7yeoNGNGFJwSaXrLiNc6rIe4/nkd8ePbfJNXKg2aWO3JgDULcxsZt32pmsylA4nLbrRBnn1nEIMvw1VKs7sQ3L9Anh8n5S/GDS/zxoz0zeaCM25U5m8+9lDZ9MN9M+lOATMftRx5R3Le6C5uztBlLIdwK4hp6+DKBOs8du/uaOVg3fVtHDixAhffQvfvJZvEiBchETkdCufeux5NLom2TIMSY42zYcSySAjdb+tysmTAX2jmzP0cg3kOL/01WbRlsBskpQPbt81jpL0OpFQgh2Lj9eY7v3xodqvEusmHL9WYMRNpGTA4c2/8QucwBVm25HLNEXdnmHkDcWeDkS53o3g7ws0ijCGR1/cgKQd5aPDZi3SqhQnTQA/Iy1qaAqHZKKUIyLYPkO66waVNjzwgn9r+fvDnEHbvfqpbMWvJXN7FqaSHJMoeeXIQSq/CsF1UrlSQI4/Uh5/uEciEiXIRQOSyHMCzGhsNoNQBBkpTeXHX5Tg1GGqx76ajzbNzVGD2q6OX43PsI7TNs2t7bDCbHm1zNoKRSG68/tQphl0agMKGPzEjQ09PvVLtNGGIyK1B0YRkqrRC9SNuUPWylbs2f59aCKmBCjcmcZfO2K/Ohb3MDIG8dXELf0GoMHsgMvipgdQ++HiRU4+UModeGssvBunNFC2HwXTLedQZDQ4ZZa3cwpydTxnoUxGIsHSDzkcHUhsLriD1hov169YmV5PxbWL/j2UTrnaay2Q+Qgwd92gbuwPM9sC2grpMJzmHCMV0lm8ti8hmCjMIzW7DqOsqcRwxeRKjG7ombNVJzoR2TXYsxbRg7hJLnEt9qHdt/F9JTrN/6UrPYMfsBcvLgSvJDyxBeC5g8fsFZwoHOZJBqBbACrRegvAuIwVegrQUGhpvFwLSdcg60uRV7fbSKhGE/mx/4bqL8OfXc91MwbzRT3WT2A+S7j29G+C3F1aNwhrDFozW8jvEfxBCgzDnyXCSTdxqwaZppDhh/I/gQ5AscOn+YDyekanPkiaVI+Q5OB4+yJ+Gt25zdYh0+nMG7uhnP70CHyyILOU+BZ56kL8yS0+mZYqYBMbH90F+Nte1YhunLHWFLQgI9d/5o9Reybsdrzezy7F1BnACv29lLqG1obkWqq4TmO+TsBcJ8c22pmzkic72tYW8ZnlgcnUMGw1OJWAS6c+gaP8OKe5q+S5h9ALl4uJ2+6+uxYg2hvoSQEuG2V+ElfHNurs+feU9/mOkClmHMIK3qDGt3Xq27zyef2QxiBeu276u7riormD0Accb7XLwP5BKUuo42xxG6gDYryXgt5HUP2eBClf1LszebA4G3GCGXRwAh9ya316kS4uaFf/ndWPUi67eeb3Z3ZhYgTjL6xtMraZHL+dKjL/PwB915403W31s01D/ywlLMwCqkyBHaq7SEjZHQNpvr87m9coAkITA88dzbwbSwfvuBmWDbzADEOSs49dytaLMBi4+wZ3n+7Ks33HgcfXpZtII4gEjvCnLo0kwwKW2zCg5olmBzSzDBEC2dp7n17mtVlB6f1VkSFsJ3MTD0BHfu6a+5njoKNhcgkeOwxyRHc7ehWI2nj7O2cGpKiesrB5aTCVYg/RxB/go5kwKkjsFuSlGdXYJ1pgLBEHlOc/cDtQHEHcy3bAk5sS/L+j0zJteqDSDWqqqckhXttdeCvQ3BGYZaT/C2t4UVbSuOH1hOUAKIMJdR+aaoODdlIs3XRpICiDM50N4Am7YenklW1QYQJ91etyXejdLJJ1YSyjsQSkH4Xbp3n4ntxePwvhV43vJoBUkBMpPzJH7bSQDE2Z/L8G76Ox7nnuZf7ZZ3tjaAHD/wXrq3/8O0XDvx3ApODlxmbcs2rDnPxp0nKq4YEyt0dRTyKUDiT8+Zz1kvQM6/3Eb/4IOEhde5450nZrpD1QPEOfM68QO/yvrt/2nSlcB1cGjoLjALMZln6rLIc9JTJZZhZCtGXKI13WLN9ISp2H69ADn21JZIVWXDtoMV22pChuoBcuzZ2xD25/H5DdZuPzJKY3TOeHYjik0YcxmRP1T34aocIB4X8QrzwsagCeM6c03UAxC3pX5bxxUe67PN1LeajlnVA+TogZ9Gcj+Ib9O97Y+iyh04eExxPLcdPzzOLQmZQ44ARMrWKJZFXID4WhEs8GdulsyzlgcHoJV4N0m1AsRdyFixBS+3v66r4YRZXx1A3OqB/bTz7VFUHMz+GgP9Fl9uprvzScSdhUTpe/3RVYic0+KsDiA6swap7kiUlpu5MuHskYcej8WCWgASuWiVuwjtETbtct5jZk2KD5CDB1vpMr+ENc4Go5TsGYx1e8WjbNx5NPFejZrZpgBJnLfVVNhIgLhwD2237iYILrBp94xe6U7GkngAcQ67PD6JZd0NlQjxAuu2/mHsq9tqBqYcIDZzAb8/nuJbuoJUw+XKeRsJELd6tGZv5ZZ3fKcyIc3PURkgx57dgrA/Cs7eeIokeI18+MeJexocBxBzAT9MAdL8OeLc5TVmi3XmwN3owiXWPRhPpjYDfZ8cIIcPt5Prvxd4EOwt8eiywyCeRHpPxxYiVqo4BUglDjXneSMAcvyp21FqLWb4qbpvOxvIhTGAOPWRU88vw4R3YXgAybKa27VcRcrHyXqv8cb1N2u+sksBUvMQJFowaYC8sX81WXE32t9fl5ws0U5OXtnUWyxnA6xyO7D63VHo4HjpCFY/TvfClxO50XLhx4acLyzZik23WPGGoAG5kgSIu+xZErxzpuw7quVO5TNIUeX4RzFsm7Jyy5XvufH8Krduf7VaAqbNnwIkUXbWXFlSALEHfcSWgBP7FrJ+ZoNzxuVFZYCM1HR8/4dAvueGio09hhr+XEP2kSlA4o5jY/MlARBnGSgvP4AJXmbTg3PGbCE+QJy0/MSzPwPcPTYa9hRi+LcaAg7XyBvfXA2ZJekWq7Hzv2Lt9QLE2QGdeHpX5C+re+dzFdubRRniA8QR7ZxHt3ufBZHFWk2g/2tDvWy7wxw6BchMT5h6AXL8yXuwagnXMk+wZcuc8hJeHUDcQB3b/xGEfBeIf6R72583dOxSgDSUvbErrwcgi9YNE5x+AJt9drbfWE3Gj+oB8toz68iIf0849B+5fU9jLfxSgMSeww3NWCtApH8l8kyzYeflqm2BGtqh+JVXD5DiWeTn6d7+G/GbqTFnCpAaGZdwsVoA4vwoS7UKo99i084XE6aoadVVDxBH2snndrJu6/6GU5kCpOEsjtVALQCRdhVG9PPi6W8m5p83FrHJZqoNIOdfXsaKexrvoyoFSLKjXWttVQNEbEbQhVJ/NxPO3mrtZjJnEFeL85vbDA/b5QDxvfPYwXguZFJt3iTnSA3KiuJtQC9D4cs1u/1Jtgc111bbClJzc1UWrBUgYa4dFTgfsWlKggPWGKQ5U7EqZ8k53PoOhOwnDPrq8otVsbHmZJifAGkO79JWJnLAtt4FYiUmPIvWAylAGj1Fal1BGk1XWv+NHHDbWsQmtD4e+TGr17PiLOFxuoLMkoGY02QUsm1k1VYC+0YUwDMJ16OzhCFzByDVqLvPEubOWjJcfEcr14DtQLrIwfUmmUVKZ0t0Jop0a2U7wgwwqB9LD+n18na68rVe8zaSprlct/WXg/9erHkbQqiGd8XyLN3bvjRXpeiOP+kK0vBZMlsaaNuONT8ISawYVfXpEOu9P4zsQOZgSgEyBwetapJNyxaE+FBUzuLiy5/CmKNI/xpW66rri16tUoLdhDXXQBSFxkp0Yu0HRttx/tOiJI5yVf1uVQE9v/q5BRy92s/evTMaj3J+AsRmOvG8pTUN/FSFAnqRg43XHkiUaAeITCfIXwCRwTKE4Bto+WbdzUhzKyELUOo7WOtAB4ouMA8XAWLPlUJkrCkB5k3wfieuRm/mS1+4sxDYQX7qZ2fUgfX8BEgjJOlavIk32NQQxHVP4mii5h4CHiiuHOr/YWwyLnZE2IlQBYwYC8U9DiDmTYT8Syx7EDjJulu9riD4Hbq3V4w1qb7yuZ8C2ac/+qn/kwgfaqwkBUhcxs1VgJjcLyFYDJxFy6/H7e6U+YQQEN6JFafcBB6XbyJArP06QaGfbO594Pw5R6kP9Ofp3nVqqja8L3/uPdaKD2EJ/Uz4m8MP/9zxuumusYJZDpBZZHI7FwEiPUHo/TpCSIR4kVA8WeM8GSumzGoKLMP3XsaY8eeDyQAiHSCi/deDwO5SRcOE9ve5bcfYivzIIyozfG5zaOQHBWwYa9AWQPyDNoUX+fFPn22IB89pmJICJO6MmYsAcfIOqf5LsYvi22jxTNzuTppPmBawd6HFUaS8UXF0WoC4LZbaArw3cn5uCfH4Irduf35cW1/87W5PeR+1lpUR1dZeE776i2DAe4lPfKLpN2GzGyC1ejXxc+0URLLKijrsjx1+oa5ZmGDhpAFCsBmcG1J/ckfllQBSPId8H9L7JxTjXBpC83/ZtOOxcb3+6ucWeJrPYEU+1IP/jZ/4pfFbuQRZVKmq+QmQSr2+WZ4nDZAIAPY6WoSTsjAOQFxB421A2h8hCiUVoeZv6N7x1+V1qq/87o9Ird8Kfvzfzkh89BFaUoDMZ7AkBRARCIxYh++dJXQryBQpLkAikMg1SPFhoKWIEfE43Vv/bOSMkfmTz99RUJ1n+OhHB2ZyiFKAzCT3G912UgCxeiXYZUj/0KjMYzLalV0M9l8WJzxvYvXXGT2kT1LAyaoC8xGEaC89fZ5TQ1+MjPG+8pW2mQZHdAZq9BjVVX+tzqvranQeFU4CIBYfae/Bht8Fv3da7kibQ9ifKgLEXsOar04LkCijtxDLRxB2UWkleR05+D8b5oywyuFNAVIlw+ZU9iQAgu7GWA/pfTdW34X5OJIFkWBShF8DcbpiOaXa0PYjIIoRBaQ4xXDw+cTjzVQk5MYMKUBqYNqcKZIMQDYgxJtYGS+Ip7LbwW4t8khcQgV/hhb9FXlmvSzCfBjE2tIW7Twbtn+mYrkGZ0gB0mAGz2j19QJEsoLQXkZOcmslzDKkuDPSuTLy9bF+hkuQ4p8iRFvpNxdY6RCYS1g5vWKk1T5CvhOBC9oa0r39kzPKv/QMMtPsb3D7dQHELsCa28G8hPDH31w5gaG0H48UIF0y9i+xqriVMvlFINfgqW2liV5bJ10U5fXbnLP0GU1zaAWpIohn6K9GqttnlLNxGreyBzX4QpysNeWpDyBvw9gBpJxEZ0ovRYmPjNJkxH6scNGOiwARamH03ZN3YNkYSc6rTdYaNuz4N9UWSzp/9YQnTcF09c33KLfW9iCHixOrEalmgBQ6sN5mhHkJvMKNpNkFKLeClJJhH1a+Mh4gYhhpzuMrQ6jXI1UHxsaxYtyEEE7NJN1iVZwT8z1O+mwFiLXrEKE3pUqJh/+9kHhjb3dj/hbrHZkUINPJQSabAMJ7P9belwKkIjqAFCBxuDR1nlpWkCAQ+L5FSnmDtm55S1J/ctSuXZuvg3c2BUh9w1V96dcfXYXIFYN4wsXYyoKNMJiqnvrKJWbjCmLNKqRow4riijBVkvpfjUrAQ/k1BFdSgFQe8mRz1AqQvgHBosWz+3zlONXbC63Zxtlc17KCoN+OEG9h5fTmxUo7wV7RrNnKP8IwmAIk2elfubZXn1iJEsuqXkEq13xz5KgWIM6MVotNePYFjDc9cJX9Z2BviSTmVn1hVEdr9BardEhPzyANnGspQOpjbrUAcWolkX6eOlaxYWl/AGFvB5tHqz8YzZ8CpCLrksuQAqQ+XlYNELsGz14nnGBrPhkVkgcR5u24c5RRX5kVAPmDP+hk0aL+JAP2zO59egqQ5gHEae3aMIP04tlfSLMVwfaiqokaC+Y6gytI5CrIl0M8/DOJOXmYOwApFC7RSmODhtY3HWdf6WpWEGfzIeQiEK/G6ogwdyHZgxXHMeJvZsMKor78hZ904cn1x3/2T2L1IUamOQQQcYnWfAqQGIM6mqU6gNyOkAMgivKMislsRPFBhDxMyDdnGiDel7+ww2I+hgGZUb8fPPzJlyp2IUaGuQMQ4VSnU4DEGNOxLNUABHMfwh7Hqp5YbTj3P/DPQR5EMxbQtdlbrC/+5lol/O9Huu2e89nlktUIvqUJn+FE77l63JfOboCceG4Fhfzy6Jq3GoAYbxkysz7WQNeTKR+8QjYo3v/PxhQXIMp6aHs/BfMimcl0rybpnKULzzyM5imQYwqXzQKIC0f+tc+vViH3CCt226JzvNFkLSekJ58I8/nX+clPX611eOYGQIxsxa9iBWmWJF1zAG+osjFQraNTb7nYADEKQ1dF4WA5PSPmtZp/ADnmAK5ZACmnZd9eT53q+jFge/SzEH+tP/apsXNRHXxMAVIH85gvAPFllkLgI1R1YBfhbVj/JDjvh6U0EwBxTe/dK711i3/ZIC+aj3/qD+sZ1vKyKUDq4eR8AYjTv1K2A6PeqI4dOgsqP67MTAHEmZ986fO7QiUv8GOfnNyxXXWdKy5GNZRpXpHD+1bgectJt1i18TzuFovowJ0DGW9iSVoR5ocA52ThIoH8K2QTdLHcuUOIYqiFydIf/dZiNvT2smfv5I7tauDi/ARIqHyELToka2TK+wO05hunbFgv7XEBEtmehwuq8FyyCznqrR0Mz2Pl0xG5jVxB3KXN+q3n62VLNeVnN0COH1hOEKyIwgoLczm95q1maIG4AHEeEbVeAepwvBb0gyjx9tG8VryIKXmObxRALIKjz7zzBj++8QiuOVcKkJpZNwcKxgWIc74gzCKsqBjYptjryOTW+dZd4JT20eLrIIpO5RoFkJPPrsfwEN3bPt9MzqcAaSa3m91WbIA4Z22sQIR96Li6WKEE2Qnm+jjV+EYB5PizHwL7Ljr5D3Rtn97DY4J8nt0AeeXAcjKlLVaQv0LOXEqw7/O/qmoAYs0dCHddq+pT9GsEQM4+20XefhaBj7bfZNOOR5o1eClAmsXpmWinGoA4R3DaGUCJF1EVHLxN15ekAXLkSBbvys9hKWpGOH9Znv1t1m6f3iQ4IX7PboAcfXkZundldEiX+SvIdAWpatyrAYgMJUa+HeE8IHpnqmqnPHOSAMmI/0ze/jSCdePoEXYAwf9iXVkIt5oJnr7gLAfI08vQpgQQriCH0i1WNROhGoBE9eqlCJZj1XeqaWZc3qQAEjm/tsGo98aJBEXPxUGU/Ba3bDnRqNiFKUBqnglzoGDVAHHeqEKJLxZQMNcj9z/VploBki8IWtoWgv0BrHWmv/GS23IhXsGET5HhKGt3joWljlfDtLnmJ0CMtwDrFz1uzPUUBH20hNN7GJmqj7UAxG21QnsnUg0h9DFslSCpFSAjfRhxHGedyrp6DKv3RFF6JyZjCyj5TYzax4Yt1xs1zPMTIM3S5m3UqIzb08u3UAPxrPwm0lMLQFwdyii0vQOk2+Ycjx36wJVNCiAjrkePPHUnSv3rcVstZ+Zrze+xcVdtL44qxm3uACQMrsZ+k6YAKU6BWgHiygoh0OFalFxKaF+KfbOVNEAcLcf3bwX5E1GfrLkKmf/eyFWjHD8pQKp4m8xIVjMDK8i4joYZtNQoexdS9kB4EeNPbSTWCIA4eo4982mEcB77f5fu7YeaNRazGyBHXliKGVhVvOYNriJj7sXTFaQ4f5yHybauXyv60BWvoMW+mieW1e0IsyJy7CBUAOF58vbCDQf5egCi8fDUD2Jx8dh76d7+i6P0HnnmPhTvp3vHr9fchxoKznKAPLEUI5yv2BzSVgEQ2YH1l9TAj9lXRNBXl5Kmafl3pXACvRj15Wmj1MbpvTYKKRciwxDnKkiodYRmCMUQiKJtiDFt0RZNcgEp+vCNJe+eO5UW1YY0ikBn8FQLhfBaBDJ35hGyBWHvQ5DD2jfYsOO3Rkk6sa8F076bDe/4xzhkJpVnfgIkKe7Mh3p0dg9Svr84ce0zWPXtxLrlPMDroBWfHNq2YGWWMDAo1V4M5CkHUbYEGnEsAqd0Qj9ZwBDg2wLaXMa3g4TKhWxzJrP3F+mTX6N76xPjaD12sLNZZ4+RducQQPyryMGG31okNnlmS0XFg/ovAJ1FP7rmBZT3HCHjw6olRW8tWyy3tZLqwcgRnUuW83Sf/lXEh8fHNDx8OMOdd04S0Ccp4m+sZ+4ARHONbBBTHbtxDJuTNcu21Wj9CRDZIv3urS5Oo12EKydoSzLZFozbIhGiRN84e/WJzTj5hrELEaJ7LJ6h6P9eAND/0WzDqKk4MLsB8sbBJTC0OjqDpACpbxb7rcsI7I9icea1szMZcYxW9UVWbZk1DgJTgMzOqdJAqnJ3YO33YV08ctuOwEu4MTenhPNw6E490+pIiWib14u1x9G8wG2NVz6stq9zByCKa4h0i1XtACeW/9DZ5dy9pvIWV2eXYOUSTDBEntPc/cC1xGiYgYrmDkDSLdYMTI+xJuXTr/4L1dHyXHB39/SeT1KANHGcnCXZQGFNdAZJV5AmMr6sqZdPrJJ9Qw8Ibe4T2EFac98I13S+ysqlk4dJSAHSxHEqB4gJesjQVJcvTezp7G3qrWsZdfbSTgbz7xdSXAw7Wv+Ce7tPTUlwowHyyCOK3d1ZeocVfovEhJbBnCYICmzZkvjV9ezeYr32bBeytIIY2UMmnwJkhqCknnnth/WyzsfZsGp6R9CNAIhzGPfG0+20tLRj8pmpwak0mWCA42Efe/Yk4jyuOQCxhzOcG/JGUc81CHKGNhmyZkceISZ3vpYCZIbgMEmzRy8tYOPSyt5EkgbImf05hvNdqIyKzQxrLIty11lcv51IYwAygviM10pWZsgHNxq8lPe2YANyC4a4VOgft0yOACTjtVCw19MVJPYUmbmMSQLkxL6F2ExnzZ0Rfp4vf+Pi7IkPsnev5Md/pJNguB1ZARRT9loNo7t62LQpTwqQmufGjBVMCiBO70rkF9bdDweSOtyVJreCvPz3bbR2LkLp+EvhVL23WUum0M9wqCJt3nQFqXueNK2CJADidK5arjrV+mTmp2i9zvp740XOmsCoZAg49OQi2qVzQ5lsUqqNgsniiUzNWyzltxLapTDhbBeGY333HdnRf85pQfH30p/R90A4l2WMU+9zf4/WUZZ55Gt5/VHhsvZGuVTKLCZ7FhW5kZbRslpQLgQP3d9lqZz+kXrKn3selJeZku5SoRF5uy6ndbTQWNtWuHnQgbYFfP8yyg4QuDLlBDlZe1k9Ul1i3bYTo+Q5n8zo5JyPuzPJ8+ferCU8dP0AcVexhbA9WWSM1KY6KYRdeDKP5mqNZ5AWbMsvgmgQjY3p+U1Xq+U1rP7fnClc5ZaOVYh8/XOznIlaXWNT9S5L6yPiyIEFKL2ocYOpOgntMkzoIc0pfHOutray27Hyh2srm5ZqGgdsZHT1VUSYvP+zluxALUqQtQNk374WbulYljjSx41GCSCYLMZeIBvEC/AycUSzeORbfhkr2jD2MgLnOVCAEaCcBZxw3pvd1+J3Z68j4/uEGlEY97FUUh43pQyetCWFvvHU3nDh7eIaV6DFjjwv1T1lflvqk+uodqqEpVTW6EjZG/pR+kGV0TJZX6VwXHD/QiS9IIanBpirIDqyOsXJTQjhRa5F0X+FtWNxD5NAqC9C/LYelt/txAqxZSS1A+TkEysxamqhTRKdogwg0IfQr+Hp2qSlOvtDSLkLax1zavccmEi/5nklxgFOBih7fXqAlPFBRC+vrd+zBWmLbEik/SLG1hyddloOaydQbB3glkI/Ynrpe20AOXGiBfvW8sYP8wSAYM7ih7UxzWTXIuSnIpqteB1j+hKlX4yEs7NlPB0R/5R7XhhyAAANNElEQVRWpfGrY+nlOYEKXfZadqvZZKuBm4Ajv0tRWolKq8DoapJo74qVOXpuuKOcTMRlwNFRDUCKA9OCEQ8iRQbEUQgb78Vd5wbZeP0aYnLJe20AaejBvHxgb1hBLjPUe46Otvjbn/LqbO5XoqAvVryFMW/iHCK4bVbkAwqBcBNZCFQ0C0Q0IeTIFqwEAJe3OFuK27Kk08QJGEw2KWM06gCkozd5kVfOHtwlVdoGSvd39MxG260IWFEeW/Z9rKHJLu/1FMAfLWXyyPjbmSKdrEGIt0fmweg/RtB4M2t3y2X8nskO8bUB5I39q/Ft0oY2k4z6RIDYKwwPX6Z9QmTVkZJ9niAbKlRG4mUVQagigWVgFMqTSO+HEPYOLINY6xwe9yNoqo1zjKk9e7LYSAXIFsHlHC5IA2Fk2Y57pqQhtDYCXXLJvaS+H2hB66dQjHfckFw7N9YUZAe47f4r5UZe1QHEuV7RmQVIFxG1GWkSgASin1ZdwMsoCloRGfw7V5meQujpX+nKuxd4IDoIavN6ZJst5eRq283o3nxpYwRAVhqkNSBMyUGEwf2m3G9VJCnvwthbMfYM0vxpFSXrz6r1IJseHL1FiwcQu1dy9N1dKNVaPwXV1DAJQKopPjGvUt0gHiptOd7A2DxKNszxcT2kzruy1hTBEjmJCG30GUwJnnUgvg/r4oCY32k6L8ok75UBYh9RnFm1nFBMEIU2g+yEAWLVSjzxoYhyY48BQ0gxp01CmzEKDW0jWn2ks113984GaTRWLcPa+7DWoIJfbfxt6YQeOlWn4dx552JoeoAUtXJXkpkJcDiiEwYIailKfKS0ghzHCaasuYZSSe6hGzqfborKLUsQbI7MIAb1r5CRrYno+FXFPDVM9/YL0wPk1KFF6L7kdaxiE5owQIRciyxJ1IsryHAdACnyLrrpisBcdg0qofyGJxJAjtx+lTo/Wi42M8YyRpdTE4SH7laqXHAXCfRMdEEVJfd8fLnZ+1Iw1rmb3QC2H8znauBQMkWGFp6bGiDOtPH+lasT06isieSEASK9OxC8LzpACo7igrQgeopXtkUnNcVr3tJ3N/FNJNcoPh+94q2pM7O30MgVsLv2HQVS6TpY2dK1b+nK2OV14IuukKObrdJVcYLds2xCsALsGWjyIb28G/2md2qAXDzcTn9PV4Ldrr4qpxmqxXKUyGAKAyDHOxSLHCQrSeh8xOadU2WJnxFoLRFSIowc+y4Ewt5bcqEfYDmLIMS6t1Sa6ubAiBwlkq+4a18HLPcpS9fEpd+iq+IKybKl6MCaAwj9rUrZG/dcDU8NEGeslG2Ulm7MLmm/HcI1kWNkTxZQ/lWcd3FtFRkh0aY6SZ2wPxipMhjbh+BS5EQZk2hMu5g9u7mzFVcsd5PlRO5uhTJFx9bRp3Nmd0/EIMufInTtEXfr5bJWE2wIyis898JShoaac63rDGOGCj5exkNZD4OH8Tw8k42WWvd3Ua+tsuOyKZki1iLtrhLjz+Nc2Ag5gDWxFdfq5XdaPgYHnJ9e52gb3PX7V5E2QIsw+nQS72Ym40+mKlCi4K19SxjOOJf0yScn3LMygyd8DD7GevhT3CLrwiqk56O1H22xhK1e8i1xWqIfwNq2KIaFtm+hhMYmrI+VPKdurhqlXIC1G6JOS/kEVo7X3jZaI7wCYSFAmAKKxr7cJl1B3NXu6acWEtKR6AHdOs1frwV0FllUdoqVwsJClOwgNBmM0+sxl/GquZZ1Zw8nPbersMLtjS9Eqwd2eDTgSyxC0kwN5YAUWQy3lXwFX0DzDTxv+hXDGIMweawYRoTFOCSJpolnEKel653rIkhQz0q7iEKitSpQlHfSqY9osRKjne6X78KoIryrJcW66dkhlFM/2QGsiTIaehH2MlZoRHo4T3Qu1VdZDiG7wWYi7Qbh/VUUmaqa5MBiCoN4ym2bk9mKidbrY4f0KwcW0OMtTMwAqhBKWtoWRcYz9SZBKybswlinFueAEqBETxSlaKok6QKzDUq28k5BES5E0lmnpEiV+kH19iEtPzkHhBMKylXYaGxDhPw7hKxdg9dtw3ThKp6sZLpWeURG5SBJuVgpb1Ll2jCmozIVMXOEYSeKBRFIjFRF1XSnTu0NRZ9uVXBJ2EVYuRlh1zoF9lLtfWjjtDQ1Ug6mB/OYPG9sNncQX140kIrSMMh/rAscI/QaBhH5yk7upu3fiCTdaejaTPLGT17WA7U4kkMklYxpB7MQY5ycQxFFKHL2HCxGsgwrWxF2gnMGW8Ay4JATCQaLMSmKKTI2Kl3LizLJ9Mhvo8ZILm+ZSveoRLrylX5SXS8RXGYSXKo5Em5G9I0INd0Bt/jQjlzCuL8nGnJNvKApk/SPvVhKLxjr4n2UNAaiqsaEpyP1ujajsSjVM5rftSvcjlggZIkmkaHoJ2YkXUDJxzGyfpmUuy62wz0IWfuZxG3RunPnnLWhIGkXK+UzwrmL1KYDoZJz4aKth8cCNK0ILYq3HnIdwiYHxGRndVrbVBwQbpssDiEn3FbVyjF3wxkGfdGVcD3JZntGgoUK3nxubUXXoPU05sqGRiGyOYRpQTmHTAkk4QSGzi7FLkOwBWw2UiBx7zb3thq19it7U0Zv2Qk6UUXJ7+Rp3AJR0m1yOYVbjaJXdPH7aJpYV7m+VFll0Qo0Us5drJXXUWYFOJJn4ioXmVyUyrjz6Gi+EiHlq92IGolTCRklIYo260IvFz/d6hoZRpWk3SMqJ9oJ88osD8cEfDfmH302IkmfIEEvmgIX69PWIOW5ZLZTkf3xMLYwVDcwHPt80cfanaNm3YIjB9Y0VVPSgcVXmUgOYnw/Egwmltzkn2bCJ9ZOWtGMccDdVmkCsqZAYJxzh/pWi/KORFur3WfGWxSe2b+YwCZ3mK6Wc06KbkoCQ+V7uC2UA818VQyslj83c/7oRspJ0YOiJF1lA3Sh/tupqXcMQ2zcNe4Gze3hJUefXdXUVSTOoLuVRvkqAkvoqcis1gkYnS6WU0pM09znQHSgdvILqdHabZhDdKijv4N8SDaTjDwjDqfc6nEtd25iEJ7iLYVzFpy9vBzpzY2J51YdB6AINDlJOKyQLUUNXukEi+7M4zR6M5UtJuMwL81THQeiiV+a/FY55w4atzWyQ8XvvtQMaZOIrKI6yibPXQTHZbZscbKycWlsAh086NM+vHTmrAeT6OmEOvIFUfRmohx4BMKpxoeSrBAEqggmSurxvnP94/52qimlfw0gac5U6Xb2tmDxVFHTduQzmvjK4BlDwdjo06iiVq7RBh0aMl6z779rZ6tzIucNXWb9nkk9QI5/wzZKD6t28me2pNMGkA5Y7p8DjXPHHxS/B1KQcf7NAhF5f6fkqj/KFxSfjXg1d59OGdN5fB9ziO7q4gYlzahMWfIn0UcKAkb1lNxEjnSWoi/FT+s+C2B9i+9bCgXImOJn9Jub5L7b3pTsNozFZix2yJJxn+7vhNQ1ZnYEp2/deTB58fzV6by+T74Fsdbj3PMLGXKyhoS9bM9mhqW03RwccEF1GOiZatUoZ8L0e3S37WrTC8gU2hLV7L05hiHt5WzjgGEItaqX9euncag91Rlkus64m67Lb7Qx0D99lNHZxpCUnpQDI46qJ8a/jMmZ6m957EGfk31tRJGbZsodUMzepdluTg6Y0NDSMshpPcjOnXWZVFcPkHKWuy1YZ5hDOQP7IJtuw27O+Tgreu3ZgL7+YVqzg3HOFnFprg8g5a24G7Czz7RgdAvWtqBb/fSAH3cY0nxVc8BtnYw3zKLcMIcvDrNn8vAFVdc7oUByAJlIiQsJ/bGPZeg52UKnzmIWZGoPDV1vN9Pyc5oD7spZOVUTL4/flmf51fxU8TyS7mfjADIZpXafx6FCloWtGbSfIYMfeWhPU8qBEQ5EYMgFeLpAtrNAz/ECGz9QGK813Tx2NRcgk4LGKk6e9AkvZMgJn0D46CF/zqi9NG+s5ldLDggubmC+NcC7HtBbCLi7q1ApJFqzmTDzAJmqx5ES5VGfwlmf1oUeWe3RM+iTsV4KnmZPkxrbGwFBwQFBhGR6QloWBlx4JWTLJ5JTU6+RvDjFZi9ApqPenW8+85DibMFjwHhk2xSFHg8/p6LAOipUDTcCi8Pd+ZzHTf6M0oSeJhzWFDxNRoYMXte06pCN/SHiw41TTW8Sb+cmQOIwx4HooYcUXX2KbIekd1hFQBq+4kAkozBtTntZFWR0Dor0rG7iVIzTZ8iGBp0x6MDQ4jkPIYaCrxnMaRZc1Vzp0Nx/v45CE9wE6eaeFOUDHJnp/rmEbsnRTknLJQciwbU+SSbnwCQYGJIsUoLBvGSBEgwo5zy7pMw4LBguKTZGCo75knJjzvmnS4bPLrALQ87xgcV9N8aScxO7ZUzBsFVbnOsDnTWYHkur+wwtYc7Q2WE4d9ayuMMQ5i2DywwXLxre9fj3XCzsvSkmfLWYTmbgqm31Zs3vbObL411+9rOCzzhmRP8V02c/C5/5zHhDoXF27zcr82am3/8fxD0Rb8RXUXUAAAAASUVORK5CYII="},58478:function(d){"use strict";d.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAO4AAACqCAYAAACqJ3NYAAAQAElEQVR4Aey9CaBlV1Um/H37nHvfVHNSmUiABIMMCgiIKNItoDigaDv1j2M72yIituDUrdF2QmgHQBxQEJBBUBAEFAiEeQyBAAmZK0klldRc9V69+d5z/u9b+5x773v1qjLVSypY++5vr7W+tfZw9jn7jC+VhFPp1AzcVzNQ13zJtZef+1dXXf7Ul3zpcz/34is+88P31VDub/2eWrj3tz12PxzvRXWd3rRjx1lv3nHtN/3TTdf9zOtuuPalr73p2vf8/fVX3dytiuuqVL4vFeXL0MdV98PNu0+GfGrh3ifT/uXZ6SX1JeVlM7dt/+ieXf/lA7fv/Jn33bbzJe/ff9t/POG2nTs6RXVzKopLEtPfAtUv9peWv6WuqnNR12N1v68Jqf/pVx/1uM9IOZXvxAycWrh3YpJOhaycgUvrunNbPbP9punpJ119aP9PX3F4/59fMTv971sOP+qa5UXuAvlBXUH/tgafs7Sw9K1Vr/dAoO5ooaLX64GomwazZJHmFxYWf78hT4k7MQOnFu6xJ+mUZ9UM7K0XHnpgafEN5y4tXrE4z1v7BT6SivIVWn7PXVpc/LZ+v3d+XddlVVWQrrUqj9qoCS1WYnO3iwdMTaGTCuQUDvte/auPevxJd5v8prou3rSznrhE25THe/KUpxbuybMvTvqRbOf4NYf61a9rOX4hkXmBVrrNrcQor94AU90ixWJ91GmnYapTYtfcLBb7vSa0hm6fjywtz/9RQ5wU4l27dz/kXfv2/P3mQwev2Ti5/4bFQweufdf+Pf/8jt27v/mii+qTYs2cFIM4KfbWqUHcqRm4YGLiprPHxr+vV/W/pyw716e06hCqAS1qbOx0cd7GDXjI5s2YKEtcdegQbp2dbfpgSJJg3f+bX37k428O4l4s3rV//6Z/33vrV15y8OCD33XttWNt1+/dv/eXu93ycyXxk+gvX5Dq/lns9R5c1Pi+8W75nif/8qE3Xrx795lt/H0lV836fTWMU/3e32bggqlNb18Yn/waMv1R0SnmQaBkwsaxMZwxNYkt4+MoUsJts3O4/vDhkavsyJamdGB+ZvmFI8y6q5fcdtuDP3T44GumEndMdCZ0e96/buqM0274wIH9r//QoYOv7KT0p6mqNpTaoA4SAjrBdITUr5iq/g+UY52LL5mePh33YUr3Yd+nur7/zkCM/GHkzIUbNv1mvbz8beNj3d5YV4d5InoVMLvcw60zMzi0uID2XRS1GKKiCmpRo8KLfumxj90r817JHz948JsmNkx+TAvzR1Ndbyv0LF7WOr/0q3P01P2sVFc/UdQ1vUgDGmNH26PFjGwTpUaqOl+lV+Gv0vM8Zd4n+dTCvU+m/cur00ds3f7hirx+ua6wqMUws7SEAwtzWsC6b9ZirePw9rtk23nbE9MtYyhfnq31Lz8xc/ApnW75Tr01O7vU1XOwIGNxJtjOvPUWFN/qQ1lqe7TAn/GZuZl3XDZ75B8+dXj/cz89Pf2VuBfTqYV7L072l29XrBf71SU9rcvrpg8vX3XogFW/stIm13qOldBll1rE1vxcXNX1H/3IhRdO215vXDY7e84Yy3/St6jJUrfzpRbuSiRke7Vk5jXuYT3FyC5Iotf/jqq3/OOdovvnujB/4fLZ2bd9av/+83AvpFML916Y5P8MXcwvLb2vYoH9i4vVrfNz5ecPHezN9nqLSZ9+anoGhldcJl63v7v/VWbvDXSq6rdK1ts7WmtdrTDLuP3V1bYbYNwKtz5L822Mr8bmXC+k2rDfcEyhO42yrjp60fbMyYnxSy8/fPjr1nu7Ti3c9Z7hL+P233Hzrie/7dZbnxSbuFx9aHZpaX56abGftECWqvrANUemn9ev+i8oy/KwKF2nCHoh9+rf/pXzvmE+6q1DUdd1cd38zFOvmp35vSuPTL+wTPyRovLiTCiRtEgFjaYjlAHZTANfqRjzHfkCq3ydsKl4wv5S8cHpDJX6/TMmup1/vmxmZjvWMZ1auOs4uV+OTWtR8O233vqsd9566+/02T9c9HpXejufdNZZew4tLXy8Aoqa6S/KunzkCx7x6L/69gc8+EXVfO/RZPEWFkWVwM9ec/Otb3ad9cB1C4e/Ysfi4geI4n0li//TTeULypqbfNX04hrKNPL8qgWoxTj0ydYJpqOrcWC1L2zXL5o2FB9clqnGuRuL4jexjimtY9unmv4ymoGLLrmkfOfttz7r33ff+hQdNLN7lpZe+N3nnff573zQgw62m7n7yMIre3X9xF9/xKN/+Vce+cgDLf+MCy646bvPffD3scb3VlX/Ny56ylPav8BoQ06IvGF+/kFjHPtAqqtvLOpaV0RBnXYKoEOiUwitTI1u2xj12U5AXsiKW+1r7YQ1Y0o9z4+XxTN0kitOyIat0UhagztFnZqBFTPwrltuf+LXfsVXPI76vnlkuf74dz7gAW//ifPP13eeFWH42QsvfN1vPfJrPreSHVrf+8Dz3/bfz7/w3UPmxGpTnfJFRY0HeJGWI1fLuJWVPSpLXSEHMat87VW2jRmtZ19rd9yGMMq1vlTXD7p1fv7sE7uFw9ZOioX7j/uv3fRv+3Y97K3+U7N6+Fcsw2Ge0u6LGbhkz54N79q163vKDr99Fvj8d5xz3it+8Lzz1u3Z9J5s4666ntRi+dZCR3TpK6ZgaXR0dV0tO/Ib5g1fjUM2saE3MYP6utIGvypmlGvbGU9Fd7woNtyTbTpeXW3m8dzr63vX/lvOfff+vX9zOrbsKOryyrHEq3lwyy3vPrD3nf+xe/c3H7v3U571noF/v+W2H1/q9f7fp66++h1PP/PM3zlZF2w7D53FxfO0gKY6flGkhdWJKyGbW9m0Soq333Cscax6jvECPl6MfY6zbNtJqe52u3rkx7qkdV+4Hz50aOt7Dx78pvft3/8DF+/f/y3vvv32M7wlF+/Z8/3jxcTnNYCf1ZlyW0lQ0OuL+vRU1d/RHSvfdcnh/X/+N5de2nH8Kdw7M/Aft932yItv2/1/avTf9/Szz/759XoePdFbU9b1gq6gta+OHRbDhSq9TF6oLVeg1K1xJ2A+6fm3aOJHpOo5pnRdx4bt+BxTeqEGt3b9ApjBzMx+rFPSulmfln2b9cFDB/6yX/d3dlFf0u2Ub+oUfM/4WOeGDx8+9O/dbud17FdbS3XfjUkgWlnqDCdfJ1V87iMufMiLUOs9u+JO5fWbgYvqOl18222PKAt80xKqv/6Oc8+9hWS9fj2e2JbnDx7cq+NnpkNqEUKLUdI6oeOKQy4h2+Ij1jHiQl8hoTbaWK6o79iu60UbiktQ7MqYbkof3rRp0/1r4X740O4LJibGPlyCv1DWmPIbPvZ6KKoaenkwxX7/21JVdTuxYBPKmISh7DS86xXAL3300P5nnlq8WNf0pD17XpaK4qu++Yyz//I7zj5777p2tg6Nn3POOXNaUO9vj537Uo6xWEav9yfrsJmDJtNAO0HKZw8e3DJRjL9bi/Mxfi3e0a1Gvt2gblGoM1eGuRbHi9HiZSeVr71sYfaKS4/MvP/T04f+4BOH91x4gob7ZdjMXduki3fv/vr33nrrL5bkC556xhlvumu1T7roFyVyIYGQXImWa6UuFoOYllstjxdzbJ8/df12p9P5ENYxpRPdNrvlCwvgK0pdNVt0tJEd2ZalpJHthI58pbiOZOaoK3AK2C7lK1BvrJd6D0/9/lMK8jcnO1Ofv/zIkb+4tq434VS62zNw8e4bztTB+5SqKF71lDPOOHK3GzpJKpL8pIbys4Jegqu89/Pn1eV3aBx/LLmu+YQu3M/PHnpch/zJUkOOv+kkYalnj7jaWnYSY7EGL91c6FqgvgLbVhuDGMebc4x5t81+b1yL+ZeW5+fe6yu8ujuV78oM1DXfv3v3C1M9+QxdZf/wW88667460O/KqO9ULMnXKvAJwssE/+Nz10p+Vnid8CzhfcLx8rSc+4Tj5S/J+Q7hUuE9wouFZwhPUP/vlVz3nO5pD1fNzzzl6rkjr716fu6jY7qlTXVdll6EQkdv40LXAo2rZyM7ksErpmx1yUGMdcExLWfdsWGrnhYuEuonTI6Pv+iebsN/pvrvvvz2qfcf2PP0fr//D08966xX3tvb/vbbbz//nfv3f9+/7d79396595aHrkf/WjxXCs8RHi88VHis8CPCG9Xftws+Ztb6Hu0F+V/l999fe9FLXZErWW8R/ova+i7ha4VvFZ4vvEtYlO9eyXd74e6o6y03Lc6/cSx1Li7gP+KuvkEvnh7e0XNCh4wrZkgtXi+2jhbiCjmISfm5V4txEGM9oHZW1wtbvPx68eU3hD+0Y37+wTiV7tQMjJ2J/6sXfYe+5ZxzfJDeqTp3K0hX9f84vHPbO/fsOcv1/U/FXHxw/6v0VeGqboF/Hh8r39ItJ7743gP73y3fuY5ZfwAkl4UXAPhq4feEfxF8Avvvko+T73PCNdK/QfgO4W+Ftwpe7F8v+f3y39EVWWHrm+/WwvW/ftfpLb9ZHwv+u547UyxQejGtQiwyNIs4NVIxwUseVaeJsd84yj9Sx36hJPwXM9+NU+m4M/DJ6enTPnj7nt/a86EPPf+pp5/lZ8Hjxt9d50V1nT50cP8vf2T68JUT1eTOqbLY8eHpgx+aKtJ7S+B/dPQ1oexXCFRVp4P66fK9/0Oze9ftzwPX2haS1wu/I3gh/pTkm4T5Nlb6kvDvws8J3yu8QPiUcFJ8IkvtQO+KfNLi7FM7wNMKVSp1RS1JPcMmLcwUMjjxHV0VjbBHYgacYuwb2CMxpeqO+tqYFVIxBYCy4GMkTuVjzEBd11xcXPyx1OObf/AHf7B/jLB7TF9yySXlM2ZnXt1N6c9S1X+YjpHJLjFe9Ksnd+r6CV31MKZ9Poqu9rkW74Vj/bE3fuzgwe/xvySh8SaFnsrHmYG7NUGdVH6nnmXZ8aRr8WRJvQmmFu8QpfxGZ1VMKb6tY5ntNKib7dxOq2eZBn1kmyhBTHU6G3EqrTkD/7Fz57YP7d37d/3TT3/pk8/d7lvANeNOBLnlcV/zAn2++5H8CJP0YrKB9v+Y7o78ktGLtqvFaz0gfUzHQ1lX/2WiU7xV7y6u/ML83Cc+OzPzTSdiTF+ubdythTuWygd3tDMC2iEdTX7WE0K3vQLMvOus4Efj70JM24ba6xbahArr9hcquB8nXbmK8W73cUVR/OlTyN56bcoVhw9vu2Jm5hHdsvzNjm4kx7RPAtpPXqjWvVizLNBytq3b19VxVNa1Tt5I7Pe/dqJTvvuKuZkfwKm05gzoqF+TPy6pOd7dURGLVIsnpHZSSNs6g/pKOljM5sI/sjiPF+P4wEi865sLKb7RxyQLVl887oD/Ezp92/rRfXv/pkvu+MbTTrtiPabg+vn5B94wP//G8bHuzd0iXa5FOzWm/dNlgTHBspus68ore0z7KhCc+QzHmR/KhNTrdyeK8q98UsCpdNQM3K2FO5bwya52Do9SngAAEABJREFUQl6c1FlyNZI4YzU/attvjHKr9WP5R/jEpU7q+FsaTqXhDIw/7DHn6pb1Ld9wxhnXDdkTp/mrghbp+3Rr+9+LuprqAGVXJ/MxLdwxyW5BPdwKOk665mRbmh/TSbvbxITtK/RIzLhix+TvgKdt7HS+9cSN+sunpXR3NqWD4r0FuVh6coVSO6IzIq23WOlLaG37166vGLclRMyqttv6bV2ifvU4eTVOpcEMfHz/nh+siuXveuIZZ7xrQJ5gZWxx/n+UCV8RC1CLrtugY6mF2NUVtqNF2yk4fNa1T+jIPyZ05Q+YE0bbcEyH8IvHR53goX9ZNJfuzlaQvFlz+mcJjN9qmdlcrva1tr2tvpZci1ujztsS0vPuzjZ8udaJ/51GH1javv2v1nMbJ8rOU3VF1Hf0Im6Lx7TwxrRYs0z5OTa4rI8zy4iR3o1Y1V0zRrFNzHixfv8xOu7HKd2Dsf+u6v6FoMNE5dHZf2VyNHvPGb3+wPVq5ueFH9RJZFby/pHXeZSX1DvGt23Z8uqdi4v/tp4vo7wZXXBp3ItuTRTDhdv4u36ubfSxFboWacMPY1y/gNvvsDh1N4Wj091euFowC8IvL2P5a9Xsbwv/0OB3JP1cYn6H9GPlZTn8FynHe9vpt8XPV9yfNPifkv7rlUeo778RlmSfys0MjO8fO19ntb++N/61irGieHe+ilKLlLHIxtJQWh9rFqQXoO1WWh/CC3dYb0UMOV2k9LZm806JkRlII/rdUrvsflYL6P8KP9Hg9yTfI1ymBv1nY/7j7tV/w3mrfM9SzPdK/n/CjcJo9lX8nSL8t6AvVtyvNfhryU8KpxasJmc0f3L37q8vOPb0r9++/QOj/HrpBfDWRN5a6pbWKFZJcy2O5ztOzEIif2GS3Lle23B/bvceL9zjbbwW2O3CjyjmscLPCv9b+HHhq8T7b0TRyIeL+/aqqvy8+kvSv0H8dwrHu2Ir7FRuZyCV5dfpxdCrW3u9pfaN/173O9WPT9DtY9GC7CsF301JHJV1Q3AUZ8J3Xa5j6busfxX5LerDJ32pp/LqGVjXhdt2ph3g/1rjFZJ/ILxGONT6LGX7tvs/iqL4c+kvFT5l/hTu3AxcemDf/2Sv929fs3Xrinm9c7XvfpT2k/8pVj8SPVKt+M9OHyLOuv8LHN9ViR5k/9c2T5F1lTCa98j4YQAPlTQepDb+m/AR2afyMWbgXlm4x+j7FH0CZuBNV1zRrSs88vFnnukXdiegxbvWhBZYJVwlXC7scm1J/zevvov6UdkvFL5P+EbxH5T0Qv9+yd8Qflh4uHj/gf+NkjuEUy8bNSl3lE8t3DuaoZPc/5Czzvoe3njj8062YWoBzgj/KPy68BbBt9F+NDoi/V+EPxZeLwz+jwcn2zaczOM5tXBP5r1zB2O79MCBBxbk0x7/+Mf7+fAOok+5v5xm4NTCvR/vTS3abQv1fn8uux9vxamh3+EMrBFwauGuMSn3B+ry/fvPBernPfG0C/1vJN0fhnxqjCdwBk4t3BM4mfdmU6zrDWOp+P17s89TfZ08M3Bq4Z48++JOj+TSXbsmUfBnH7F5s/8Fwztd71Tgl88MnFq498N9OTk19ai65qfvh0M/NeQTNAOnFm4zkfcnUde9cx+9bdsb7k9jPjXWEzsD96uFe3ldT31k3963f2SvIPmxAwfe/oE9e558Yqfk5G7tkvqSEij++8k9ylOjW+8ZuF8t3Ombb+6yxnfpbep3WeoFzXfpKD5nvSfpZGr/KfimflmXp15KnUw75T4Yy/1q4Xp+qCLBpZT/hPmqffs21Kn/P/4TbvqpTR6ZgTSi3w/UzYMxeunWVYWiSC/5xMEDN3zygLBKmjfs+9ThQ+v2z7gMBnUvKEeWl/va9nv12+29sFmnuriLM3A/W7iHQRLURkqETExnFEznp8Tzq37/fLnOT7bJ82vZRvBVfa/+S/kax7rkx59zzlyR0lH/ze3fXHpp56KLLkrr0umpRk+6Gbjf7ehYtFqyFFJKqKrqpcIP173+T5RFp19VvZdVy9UP93u9n9OCnnNcxkk393d7QBXq5/jflnrlTddc8LfXX/WTf3PjVa+bOnPrZ5723F/41CV7b//ri3fv/JH37Nl54ZuuqLt3u5N7ueIlu3ad/qHbbts+Cv9vU6DvXvfyUO4X3d3/Fq4utcoxudTC1cr96Ndt2/b67aed9saUWBfER75u+7bXVwvdf5Y//vje8SSjzv220AH8pp1XP+CVN131/V+aPnD23rH0parGtSzw93XV/6F+v39uv9d7TI3q51JRvjaxuHrbmbdf/569u975rt03/69/u+XGr3/Vjh1b7uz2X3HFFd1rZ2a2W97ZOvckbnx8/Lqy09lTdoVGoupf9RE909+Tdr9c697/Fi7q2BdJ65DSE7n1Y/v2PWD68OGzvTb7db3NdprsnaVAJsXpLbTU+19+/dVXn/7Gm699+utuvv5P37Drxs8uori+YPnm5bp64rai9KNBqqpKF6WRbau1dKs+6qpir9c7t9+vvgNILy66nY+dPlXuePvuWz7+lttu+pM333LTd/7LLdee295eX3777VNXHD68bcfszEXXHznyd90HPOCryoTfHX/QA5584/zsb95y5MijR3o54ar2pUaufVtpe7RfNX7UYk54Rye4wfuqufvhwiXIZrq0k4tO56UT3c4NffKq/vJy2SnHXjLe6dzQKYrPoa42OpRMyAu4qXeSindr8bzllhu//s237rjoLbtu/EhnY/cGluW7gep5/eXeo6t+NVZXfcz2epgq9SHM26Fj3eLY8EKu0O/3UPX6W/S8/0R9Snt+UaZ/q4vudY/+nz915Tt33/LP5dTkpYcW5565vz/zsods2PDTF27Zctn5Uxt/4SEbtrwP1dyreqy+1lfgY/dzzzyEfrEtWaqExnnPGj1O7Q/t3Xu25/s4ISe16/61cJuXytSUJu3olBJQ9/6q6i39ZF0t/1xRlv261/vrur/0k/1+/xcTOU/F6WyuUpVOsvw39aWdd96+86vfsWvHL79j985/X6iXbtKC+pi26nc0/idpoW7UYkMdB7QLA+jXFfYuLmCsKI6xRdQ16xgueXwl0wLGplSOndeZ+MrZ5eXv+9yhfQ+7cXnx7780s/iF1+68/l2v3HHtb/zdTdc96eU33bT1wVPbb3vw1Ka/K1i/+ObZ2XX5bk4Nl2ScYLXfQDKAdUrj491XTZX0v0a6Tj2sb7M6Rta3gxPa+mFoZwognEjqEbf66OO2bX/d4pH5f9JCrhOrj9jWFemfdQAst3G5hq37EHXN/7jtpke+Z/ctP/eePbve9OB9Z+1IRfociuLP+r3+t1VV/zRJLdS8QD3SWgstj92lYRbwDeWDJjfKm+2VZd3M0Eq2tbo64Z07PomZ3jKun53WiaCGOoUWc9KJ4qx+VX87ivSHRVF8pIveTa+4+fpP/fVN17zki9OHd109M/O1ih0OpG30HkrtSiS1QY2cklmXsk45VTo6+upsndpf72Y9P+vdx4lrX1dcD9g7OaCWCxSbrzhy5KzxDRvO8A4HueWKPUfO6pHbQTAREjowVeLeTlqol+zff+4H9+76oQ/sv/3vP3BwzzXdTvdzWhB/rUX6A1ooDxDiOXXF8HyPqHF7uJTDi3f1faNvl3fNz8KLkA4MDDVvsSlLBh0FCrW3oexgz9JCXrCZhmhnDFJVod/T7XXV91X/a+uqfs4Mql/f31t488tuvPa6l9x43ev/7IYrn/2ia674uot27Bgf1LubSlLvsa80WGUYycXdbO8Oq6U7jDipA+4Pw18xgYR/iFIHE/RQ+/IKuLnTKa/1M25Zdv+ymsTN2udf1GVpY47MdXAvpI/pBc/HD9z+XR/bf/uff+rIwUs7WL4hFeXrdGvwk/3e8ldooZZeEB5Kra3Q1SuvydpMg5q6Ama91jWVEcdMWG+0JT3vfvWmbY1lMWxkNLoOusZEUeLciQ04sLSIJS1M1xhAMcqj5kC34ja2pgK9qupoGy6oesvPIouXFUXx8Q3Vwq3/b8e17/7ja6/43T+4+opvv+jqS0/XdrVDcPU7hqJJgtreREhSwLqmYl1bX9/G73cL13tT+xdG0h6u+9VfLS8v/1R/uffzZdnp67nwr/t6xq2We88hsOA4kkjrtKUf2bt346cP7v2myw7v/d3Ljxz6QKda2lmk8u2J6blLS4uP1fOkDvQefODDSYOqNBj50en30NHtaqe3hK4WYUoFKo01Vq3icrgPZS0pX4VN6MC2sNuLz7e641qQ5gCziKQaA+km3V+S/xZdpduoVkagDOVQXYzqtjXVWvBLOKSxqhlTvrVGVVfUCXRbb3np6QB/OyW+q+T4LX9ww9Wfuuiqz//1RVd94Ucuuu6Kr/gBfV7CcVKSz5uYNFjqxJU0AKli1ycXah9oXvCtTxfr2mpa19ZPcOO6Uwb9046ljszEhH5VfeSxW7e+dvOWLa/XQVOzqj78mM3b/nGuKN6UUlqixuBY4gRuag3uWJj9+Wvmj7xjy3h5Q6csLlH7v720vPRftVAnq34fVVzR3HssQ7isdSRuObQbj/7oG/CNb/4/+OZ//BV8y6ufg299zXPxbW94Pp72L7+NJ3zin3DGwdsU39ZVZ9pm1NmWI3IdJXBoeQnnjk/hgVNTYloWrgEn1/JJ45yxCfSlaGRoo1rpOJOj9mr9Aj1PTxZFPgHJqRzVBvVE1NrmWicgzcFYf3np8RrEz2naX9vr9a95WAdX/NZVX3zTr1/5uec994pLv+7ZX/rkabmBXHqcmh5VAQYS65fUX50KTcj6dbGuLZ/Ao3ldxzloXBMOuPDeBVCw2HLl7OzZhw4d0ndbQoTsvWdvIP3Mqygi4nHi0qtuvv6XxhL/aop4xsaiPH2DrpRdnUQKwb3oGEbuMzQ41fI95IoP4nFarGd95q2Y2H0NcGQfsDiTMbMHU7uvw3mffTue/KbfwJM+8o8Y0xWZaii34tJwaxmU0Abi2tnDmF5eRlx5a5HKjZAGkMS0ruwLVQ93NbmdjWWJvXomvm1xXm3lFtx31hyRtVwOPV7lugOCFjSXl5e+oqyrHzhvcvJPv+2Mcz7xnAc+7LqbDx16SK4DtZtA/zTWkNaFrfXpqzvAPUk6qRSXHT74/3rLy49C4i9fdujAr92T9u6ruum+6vju9NuvN9Xar0jaoXQDOsOXZXqpzvI3dsryaj1DlgXLl1XV+I2JvFw7aSMV6HioDk5A+pnLPv7Nj9m29UXoV+CRI/DtblcLd4MO7m3dMZw2No7N3W48TxZarD7qNAT01fcN0/twaHBbK2Kt7AHrMnb2F/8DT3vXi2Px+mqNGD+xKg3MQ0tLmNA4tmoMqh7Rdrr/s3W1ndNJwPZdgeYP54xP4LyJyVj4o3Xd7qi9Ws9+YnOng6/atBnfddY5+KHzHohnnHkWHj61QWPllmKq+5qdO3dOQIkaNMkYN8Vv7PoAABAASURBVClJaD8jLY5Nf9dlhw59/7Hw2f37f+DS3bsHJwA1ddz8mc98JpHpmajrs/WM+2SN86nHrXCSOtNJOq6jhvW56emHdlL6/dahfQumhKru/W1V9X9a3z1/oVOUfdt11ZO9/MvaQ/Oj8a1+d+VPf+bjD3/SGWe+7uzOWKeeX8CWf/tzbH/Zz4D6tW0mQle+Aps6XZzencCZY5O4qr+En7j5C3ja6RfiEU/9Dbzy/CdrISuwrbSW1KLfsOsKfNMlf6vW01oROtRF68hTGfng8iJ863y2PvVMlZ3sl4fqqldX0u5c9g3kZi24R27agn16kXXlzHQ+d6yqnrtW49GTX6MBXe2Tc8bH8XVbT8N3n/0APPPsc/C1W7fhzIlxlJqcSrGu5z7qqvqGtH3r70GJpLazFiwRsq6rbd3E13dT8eZukd7cTUJI2Q03Nj7+ps74+HG/x37mwIHvumzfvh+9bN/BH+WDH/zDrOuNRE7SH3zp/v2/+tlDh15w6fS+h2X25C/XPiJOwnHX1fKDUuKzk3epZl1Zd8XUG9n6w1+9eetrZ2dm9IybvOfDLln8k+KX2/jiHm7Tcy770PYzpyb/9cnbTjuj0pV+80dfj4m3vQi/8uivwyeXjyDpwMtdMAuVSeq/zR7AL970BdzS0zW33IDbOhP4qUc+E8984s9jFhrV4hFgaVa3y0IrF6Uby/PYetX78cgvfQC12lKTgxymC0G54X3dqnG7b2nFbNHJ47TOGA7qalzLzpmawayNlvYnEWfp6nyOrrITqdQt+DSWta0UvyKLUA7K2+h+Lty4Cf/l9O14uq6oTzptOx48NYWJooTbzUsa6rethUh9ta2J+5WbF2e/W56aOlm5PZJQjpha7wtq3eJXusOp9fycpV72BddHLX+qfRqI8DWLbrfzh0Wn85qym15Tdjqv0gnjzAT1oWiVDy2L9CJ9lXhh6qWvEXW/yOl+MUoNshTaTCmGDwqi2PSF3UfO3Dw15e+2Wshp03UzM2ck8nRAewfIBe5c8t/ursaLLr98anJ8wxv+62mnP3RKB+Pk5y7B5D/8Ot7yhG/Dhx/5JPzIni/irXMHkNSTxwVJKF2xNI//fcuVWDbZmURDAzqc33Xag/G93/BszB28Fbj9CmC3cJtg3RjYV+Kr3vF/MaXFqIrKbswtSPUECMoynLPmhXJEz7Qzeu4ttRi26db9fL1c2qRFPKHb6Q26GhdaGZslNxYdnK7ba19dJwvNspr3N14v/uUqt+eWPfZ2eXTVxpl6JPiqzVvx5NPPwNdvOx0XbtiILerH7VYKdE2fRlCrQRuCx+W2xFgE9CIvlQmvSMCU4G40jxiAYqjIUZ9tim85uY+baw1I/UB3ZbBsg90GPC5t5/LSMnTMvOLzhw8fuPzwoQNXzM4e+OyBA09qY0826W0/2cZ0jPEU2lUx1Y0koDN2WZYv725MN5fjY9f2l5ZLPev+ZVWknaksv4Aq3xJRNY7R6Ar6kj17Nnzrc55z47c+5xcbPOfGb5O9adPkjnPHJ5/21bp1LG+6Eptf8mOot52FG37o93Hx4Qq/+LF/w3P3fQl/cviWpr0afg30/NuuwkKtK21nHEgEVs32e7aei99/zE9A96PA/iWEVHu9pSn00gNQHVEF8cX1N+Fhn/xXVFps8JGmXmhEgZGtM4FIOh5RKXb/8oKaXcROfQaa7y/HrWwsXNWa0nN5Upu+vf7SzGEc0XPw7Qvz8Ntnt6T1pxYAktig2AdOTuFRWqxfq9vgh2/ejDPGxtBJSTHuzUBOio/6UJlf6SNUF2i3QEqTq361fapMXUUrggIES6PVJZt2zRLIMeIKrJkGJMna2+k6raQMkiCJzNUgMFVV/a06brairrbWZImTNOnIOElHtsawNLErWH3uQdXTM+5i72f7vf6ztYj7sl+xtLj0s/3l5eeRXGgr0LulNVbJD+6/9byP79v3qvGU/qauqvPqqm5QnXfT7Mx5+xbnt/9X3QYmnZk3v/n30T/tTBx6wRvwE/0S2/7sh/B1B68HNwMvm96Bn91zNT6jK+1v7rkOV8/7bzQ1xd0OdCuASLqbDxlFjdd89bdhvrMd0w99Gi7/uZfjkj/8OP7phZ/G637nvXjTH38K733uG3D1t/8Szrn5ZqgVeDG5aq0idCnKspyHGm022KYrbU8nuWXhsL7D3rYwhyU98+7SIrXdU0Ojd5tupdSC3KaFef7URjxy8xY8bOMWxLNzUYJqXFPRtG4hAoZ1we1JHOuKK9dRuaNpmlThVtw+1R4VNYAU1kT2AQQEDqYVq9KXpqdPu3LuyCVfmpv7YN2v/L/urBJSxcRl1dJi1Y0x2deirc0VlI+oEovl3BSzOElLTddJOrJVwypkeyqT9hxJkNTkCyg++PCtm149sXHjP2oh1wQ++FVbt75aB98bFbskRCwpBmunbj2mr0f40bIov1pX7M8b3U7n8sP95f07F2bxCL0VPVvPfeoQ+3/1Ddj7p5/F0rYHYcvLfwoH6wU870d+AtWk2t9OvIf78AO3XIp/OaRbYGg0E13AsxxQTIxDUgf3hXqJ84ILLsAnX/JxXPyCV+Oaxz8DB7aciS16znyArm5nbzsTE4/7Zuz/sYtw5bP/BA/asBnnTm3CNvn9/OhtU0sjG8WB3vJelL4qaroa3zBmqAEkMV4UOE1tP2hyIx6yYRPOmZjEpk4XRfJVFYArGFJCoE3uzWhstWV/rTh4e20ItN2ErBa1iPEyoVtQUQIBkkIj0eghrRv2Yc00u7jYrXr9r0e//zAW6evLsrikO9Z9R1UtfV1XJ1KdqH4a5EXa1/uYikcXnfJz6u71up3/tpQIZZzMyYfTyTy+lWOjTEEZhosa/S03HDlyZrWwcIa8oorNtgtSy0imApWz4oBjIIHLVW/5N/q1sLz8G7fMzfzJ9QtHuLHTweO3bkOthZar1qBe9pz+0p9Bce2luPiX/hR7piaBVAOFIjYQ2N4BNmnBbhDGRdpnyOW4sZTwk9u348/PPgtfURaY6Yxhq6Rf6FygTyVna0Fv1fPipJ4/u4rVyxfdX9Y6mBImyw5OH5vSIt6Ch2zcJrlZC3kSY0WhHjQGDQHaWjSJkrsW5rCp7EpzbmPUXqJeIHVUfwJnT2zAWeNT2KKF2i0ShqmNF2PVQBQinN3DqJSuucoRKpXFRNaiCDlaDN25HV91te9AUoBwPGkfkYoCR6VJQF4V7M8cOnRjSmmuLIrZxO6NJFGzuo11vZ9s/ORiqjlTkTtT1CRKnLwpnbxDO3pk3hEU3UK3tN5pL1tGfVOv17um3+uVLPCy5bq+STvkcr2TiNf+jle14+QlFImdbrfzjrHUfWfZKd95uN97XVlj22O2bNHBXQzr6kjb/NrfQnnpv2Hu//ttfNNXfT/ejK/B+clHipxUqK8yE5raCdVrbXOpxqMnN+DvHvhAPGvTRujwQUcL01fXbd1xdOgrWw21okZWZse6qczmGI0ZE2UXZ0xMCRs391DoPi/pGRV6vsWgHV91xwqNRz0mFrqydrBJb7e36HPVBp00xlKBJJ/7NdCkga6F2FBriEHU0DccaOYcYmRrRTkM9TbpZEJiqkONBoJli9YeldaxZpqcm1R9BKCUhDZbL/qA9g7UXUuHHIsS8HzjJE7ehnswvHuvaqmuKEBTShIkEamuO1rAY7okxpzrLNrR1TFsRUQmLYSocHTRRTcfuPq0UOmTw47ZGdR6Htyut60X6LOG2htWUjOLT/lhHP6jD2D6+35N7zEqPIEb8b70OPxs8SCMR18AFOerqxqG5Zayg9867Vz8xfYH4GwtIr8A6qYivvOWrrPmgb0mOViQcBpZVCRRaGEylTAg2dcA+mrmwHKFsXIM42UXnaJEIjFIoSpoQKyl3JF/rTp3jysSMVkCHmILUWG3suUtC6yRJuciHoiNU0kB2AxIEmiu0kkWlCzZ6G7Tekf8yZrTyTqwtcblCY0dJycbSOggdImBpMwWjpeJO9rQRFaTE5Pv2bO8uNhD7VtPPFpXWzY7E5I+dI35Cx6D+Yc+AcNrGjAu/++kB+E/uo/FD5RnYaMWB3SVHUsJPzp1Ft582oX49rENWui1APhKu11XWW+TGhrJHNFXqu7bzCCiJUwGTBg2CJK68hL7FxelI4C1UltFPgrHyiNhmqHRqFW1msDM5nI0+lg6weyS8B1CN1FMCzR6lklWArRfqXKNPAdFUCcycOPWrZtQ1x1FdvbX9SYoFXWaYp0mxHHz2Nhm7Sqtf3YVtzG5puYOJ/HNctI23C9yqVHSEyopAUP7FZ5fAiGhZNs8gkQW0pmaowlrJ01E/7rDB69YqKtyTLesD9SLmW3dLqIBF9qzasYa1kqVSN+Snocu/qg8H+8ffzT+depReNfGR+KXxs/ApAbWhxat0NGVdvvYOGKcqhe5bdwyiNGiVq3VDm3PKooxulz6pEI1sU/Ptx7XEX3TRfixdlKwsvpBjpKhDNjS2C0bAYjLPjRJY4majalA+2vF+eRlYdBFE3JcUctLYKKkF17ME8lVEiApANp3WCtRZNWvzujW9XX9qvrmpaWl757qll/saS6KDl9XdNIf9Pu97eXUxLVVv/e4VPDHirL80HC2e2rh5MzH2uZ7fbQ7D9fbrp2b+/pjdewp1H4Kt3eIB25ZpgKlbkP1dhDUL9slbOcYxo61D8dIG7rdWgu2kxKf1wGLibLEV2yY1MlXR5CyFwFqwmqg1q5t4CalotbKVdbVtMYSqrgCP4gdbFbvXjh63pYPmNSVePtYVyxddYhoWKalhDO1PZaQdO/EaJKlWFKyoTUqabmk6rjPffrkY32x6mFJjwIKWDs320d51WzeZOlZMSMow1Bh4VgD6isDOWlCsl+l2lV4biYURDRWpdxOQ9pQVW/apBavzpl+2ohzgM+/rZ0UntZsTY5JgCRSwQMsim/WW+WPdrqdi/sVntHRC8d+v/pVPQ79aVGUB/q96lvKsvyidttbxf1QUj1lnMwp3deDu3GxfviNC0svrcZ7123ojv3MscdTwvszJlVBntiU/DKn+iudQX+q3+v/fKcs+pr4v9bZ8yfrXv858s87TuFR13ItHFxcnDrSX04dRXXV5gV6S9xNBaKuO4UKHS0qrSF4HYSVoA7R1x637mdhL96QtRaQDr6+OjRXqJLfFG/RQQOoJWWMJtstGl4tjGheutlUs1JUKt59yYhMtyswrBqHlxbhb7cpxk4c0TfccK0q1BK8KlzPuqWacQZcauxZAjZdOMaxRqxKzQXapPjsV6m+o47VUHJ0G9rK3E5j2VC8rSJRz+UESUiFlIEUCwJY8yDWrbLjC6blffv3f74gpjtMh6b6/S8UKWlz6+sSq1vKxN7G6U2XJ3IupWp/p66/JF3tUhcENX6S5nRfjOtSPW/csLDw9FuWl9/Gevnz2pW/2O/3t1bDY/OoYZViKPj4oKdVZ3JSWoUPXLhp0yuLDRtOrg8GAAAQAElEQVReXaRC53p8QN8gX9WpqtenxKWId5zrHgNT2mlndif6p49PXHFad+zgGWN61FFFNyahWjqS1J/KMM1blwOhh1FD3aBUUaaETiI6RcKUsE2LdZtedI3pZABCudYmY2USlRtfSWeLUYfZkG5FlutYbZAXei6hqD3zOnolGQCqqsbs8hLWTGpLWZGIYbiwHZY3siWCbPtoW6IUQ8JZ8Q6L3al5c1VjdS2HjmLgd1NuIJy13jcQpY5UanSaXpexWCm/EYb00TyJyYgLvxyJCcrAZojHSMoRHGmEiiBxUqd0b47u2v37N928sPTzZ/eqy0sW7+71qmfqCln6qnHHA+l5OuEJjVhNrDKQ8t8md4DTfZClOttLYzhN20YSsUuijoi18tgYUJC9yQLPv3DD5OdJ5rBGAFbqKK21wKpkXusVHRVepP67YMuCI73XrqRIX4msjkL0qLlSj2UQVDSBXAbRFKPVZ3vLmO0vy1Nr3ESS05s11+/pc1GN0STXwBz1DHhXVCuDICkDn3TPe4hVRW5LpYONVX6b8loE2PYxStpDYKJDbYOgmHY4JEESBRJWJ30Nkg8CkRNz1GGIA7TLZRfS1dm5t8C7qADQFah94xZL6auzjtW16NVh6257fOveyc0L9UO0YF88sXHT9ST/arnXe3ilzy3RMQn/IHncwZSaLwLUr8nQokdR8C+7nfKmanHh2t5yryy66WW2O+h+XkfoxoiH0/FaH4MWbmdDOfYuRf7XYx2I8kXWrg45LIbMsL+h9+5rHFQd9gBtvnkDgOZt9Xjt2aOXUnCyoQOROkxJggCmlxcRCkaTPaP2ndXvbr3V7Y+006iNgG4U9HyueBHaBJBEEpSlY800KVbhKmtuGx/PF2zVWioK3xShYqfQnBYEMbtvvKQYpJK98fHgar20IDvPuHlubsX/i3jH4uJTdi4tvf6mxcVHqPH7LB/vaD4hg9q1vPx/U9H/ohr7X3ohcLoXLGWsBdHHzdQkUxEMSSTdelbL/Vf1lpZ1q109Ty8Y+nqoy/Zy79eY0gKBJhrHTYUCu6h0kGh3tpEDdaAMrnNDpg2+M3Kklm8hNbIVtcIdxQraBtWzhmhVaGKGhDgvXxPUFFTw863JzBBJSrzYkezppDnf6+GOUtOLGz5O6CBqGKM+hoY0hxhScx6Ww9BaWzgMstbXs9NSn1jUUK07lpozqvoQxFoHcX5IAFBV2zdu2fIlHXdP6/eWnjnR7X6uv7SMsbH0mm6n+L9Vr5f9/eqxZeKPdlFfgrqG3kZDXT2/KMvfw0hSv6mu+Swde5fdtNh7046lpceMuO81da1tPqGdV+BXVr3+eF17Vxy7aU2I5unYfnsc0wZZTz7lApdcsGnT35eTk3rGTTpPVtnesOEfU+KS4x1r6TbWQlekYupe6nxioS4+UdXlJ8aKzmUppUW1kb0qnRUXTVnazhhatQ6/zN2Z8vhzgmO0taJWzOuwf/e6f3Fex14TJeGdTI2ajBIkcUTPun7r7HjQpQIt1oR9xprOE0p6c6oK6FVJN0y5aQ0XxwOKHDda5isukZgOLy8t/azm4PIilZ9Y7vWe3Sk70DH54n6v/xq9bc7+VFynxfr+pcWlX09QPcHT3+v1Hnjr4uLbL6lr3fJBKXcm3v9XiR8okT61c7n31puXlh4v572W073Vkzvy8TFErakxIIlIjglljcLT5bpJ0d6JEs5gSht2TU+fjvn5ba5Wpnpj2NPTskkqSoVLu48JnQR6i73eSxeWll46vbj00r1zi/9vbqn63zrbX6LjaHBvWauFFlKPyu4P6g1NcmyjShDZtZLFiqSYHLSCtdHWcoRtH1ghB0UNL0YvXDRtDOqokrYRMX8ilXXLvBRhXixoksIa7WjhOi07qqPpC21qnLmtXLau1TIVBYoi3UakHqpCJxzt6TpFi1SZMWpjwNpnT7HGym2vuD75FgcOXJJSubdMaXeanPygOH0JwGfBdFWR0lIxeeCSTuJhPdveUtXdj6Xklt0PgKoaR109fCPULXKiRJJJ1Oj3e52qV32PThAf37m4/B83zi8/Re51z2m9e3AH3lCqUIbmBOZSbDhVAq0P4cExk+NAKDOg2x90y+LlHB/fqdvk6zSJOqmO/SVsT0x8QZO+Meo4mliRdAfAd+2++SFv37XrgdJrTXxnrCheN97tvm6sQSrLF9UpPWWpX48JugqoiVpQW8pSRnJD2A3t0NaT+28teSMrWLllQ9puMVI/fLJrbUPW29ZrjFBwcvVpXUn9CaiNcv8kNbOMcFJ6g6V+hUW9rCKUVCirJ0ScC9thKd6yEYCc2YcmaSxRszEVaH+tOOj52sKgC4XIDS2OfqcsL9GJ5odZzlxYps4RMmmcACUda/g4SQAoLkFMI0MPm1grxRVXHfl4s79IOv1aEUSrRLPck/RzAbUL9z6mc7TaBeksHkD4EKmIklECjJ/nWlfvUsfjt5YFL9651Pvgrvnlb8Q6Jo96HZs/ftNs3K2EnjEbak3BmCaXAAkUKfmW51X6jvucfrX8K2UqqrrX+4f+8vJzJH8tJTbPuIqvMbFrdvbxN8/Ofq1wzmUzB189WXauLov+9V+an/79xLqq9NzX09vYSug3qHt9EBB0fq01Qj131X3oNo46VO1BTvJZyUwubY9ezaBWmgxVxork+i0aBx0curV6xDLJaIOUtGnouXmfbpNHGLh/grOU36E+kC3DFje9tKRZr9WWtwfRhyzZkRGlG/GA7TCkW7RtIGrZQk6Kz36VGpPCoxk75zWfnzt0EG/etfNj53Qmn3re2IbXn8Wz8vgcILglI420a1uuYCwNc4b1tWAfBzXSIITSfN+rw2Xg9QAd4cemmCPFQF4KKTYAg+SZoqyjoM2t+v1U9/v/BQV/TiF3I9+5Kh7rnYu8m1GxcS48AY1EHDkynAWAMHW8wXiiQUXqDO5YymDMMN9/3tTU3y2PTb4qkTVZha3Fq2fctBSxBPpV/yt1Wf10WRafqlD/HlH/cF3Vhc6S5Vyv9z39Gux2i3/tdsq3dgRLo9Mt3rpadrrdfyHSnn5NLAs9ncyV4VS7QC6tun/LDPE5Q8PHiqQxBmfZOBQ60OpwZnOgK7Ye6WteV885nXBy1EhJVB5HUhuqEiUpS6SueJhZXo5g+2ppllChnC3FoSWCpK3o2fE+6DOQk+IprVYUmUd4+8IC3r9nN9648yZ8fP8+7JvXGUMxbSbp6x3ILLUvATUiEyTDZy4BCGlOIAhxNVYlbZe22V6gd+65tWK0ljSYw4dVgyhK1FU/SZdfgy+Y6uTB6oLrWtKRAVBz9Ti0qQ9KXRMilcOvBXzUmFTthOV0wlo6ZkNJG0LBAVlSagbFGwiJ4yS9WFQMhCZe+4AANNfxTFvOz59mG0xh60Od/yNaEv4pDkp1rTs3H0jVOdqxSUzkqqqK2qnHS9CvV6LX2KOy1/8gyANx5KoFj22pDywIS/0afa3iWnzkgRJWFHS5mrcdcOGAURBsOxM9qsscZF9tR8IGvOZIByHUBpBUalIkG1sHpRf7YtUfVI0RqFCGjmlla4JyDrIi14rMEatWL56PHq6cnsbbdt2C9+y+DTfOHYnqhQcwGq6aNk0n6zKsS8Q4W04utHxIBdR1H90yvWCm1/v4TCWErD6+bXzsVZqnfl1X20/r9S6r6/qbqn7vGVumJj/W08ltshx/xWS3+3/6Vf90+6uq/5huUTxr0+TkO4Fq0A+gTvw6HjmVKEASlJlBkIJtAsogCd3tYT2T52Q924+J98b47DUqrbdofbaPNRhfcTUf2R2B1CNspQkqXl5MjN+sq+K1vapfpFT8ZTExdnO3mPi8dpbeKahKW1GyV/ehm8Mn1X51KVebP3VgT+eGucN/kVJ6SboTqOtq8E95xnCahno1MK+VO9vrh7Rdi8vukUgOyOxyGe4obAmjMYyDXmST5VNuST/Xzvj7bOMdFQmMX8yz5qCQMxEwZEpSL6p0qRE/mtkaDlILrXk8WWtAexcW8bF9+/Dvt+3C5w8f0jz0o48Yh8bsdpMWx2g75qg+3FVIOdvxtVzYgxhIy+j36/P1rP7ExeX+E7NcfmKv33+E6tWpKA4eWlr6cemfKVLxkQXwpztlifle74+Wekt/X6R0yP7EdE2/qt4931/6FdIjBUBlQ8pnMEyiQLIBQAAyQf8oHeuf0np3kTfIvdTarEY2Gycx5Oy6A1DRRpJMitWkg1X9D3Vv+bm6zP1qPONW9av7veq5elH1m4n5GdexVLzR18LVTt1U6wAzREPNwf/LyU/t34Nb5magx13oRuqYCD9yqrNYWaoj8726ghfw9HIv5PLIVW1lhWNZaqhxub1GlTBvWM3y0NIiqpVBcubsCJLaTCLPRQqdtC1esqfKM3qxhbucVF+tLWjbbjhyBB/Yu0e3wnuxW8/aoqO/RFiFuhEYSLpyYSQ5Jsl2TEjplsaAI6I925TfsN8wt0KGn+6rxwOTX0xFmimA6bGyvDKBQK+3gyx2FWD263yrKgcTiquTFEVgFMNbZcB9jfqyzYZvJdY1eYzr2oEb94aNSuugSjmUpQCWxxtMXHEBuFouCZLo1/X7z5qYesUZY2Ov1M6vU12/75yJiVf0F5dfo7PokqIAuBTaqxxy8pVw9FhPam/P8tItk53uJ6eOA/vLojycWzm6ZEvp+deq+1jSFV63czikj/8zWsi+pTZv/wBBRDGgWoU60QzalR58Q9TakIOLC0GtXVAHPKHNGwLmgOBgH3FEt5A+2aBJg5EMlMbRCvV7WCeMy/Wy6eP79uK6IzN6S91HoUbVolsdIBEaA2QbhC5qGE3eNRSRNGchFckGA671SSb5jBwDHBUjPxvg3FuQqqTWcyYZipmsASRjfFAi8i9JGpRn9RUXTaKkIaHorOUymVo3rG/rg2ETmhdZWTI0wAejy9YHTRCOmUrFE6SgGAbog2Tqlunp0/bNzW0jiERuOFzX2zaOjW0BQCUQQMg6b65tKFVaAIOrruxUJJ1/63csLVd/roV2TPSq6s90W3UT2oZCyVujZtSqS2Hglx45xyzpVvqQFvC+xUUt5CU9G/d146jV4Xi6iGAV4lRCLdbRRxiyLGsXQh0vl5Z0xZOBkTC0idSsyHBJEsqaJ0AaEoBECAz7UPvOiJANpYGCIGQuavz+v/5ddvAAvjB9CIeaK3VSw1QQydwekaW4JFBIBBIExUgMMkmQBhrZ6raN1h6Vo/rKGFC2CveFW6wLah9K5gqUoZEE/DXIlnVJkiAFNKDINhdZkRstzFj3frIcDbdvPeBtWI92B23mDnyQeXNa2brNAdTPG43jJc+z/D70GVI1dLCWRfHyycnJm4uxsWu1mIpUln/Z7/d39ovii3qO3eh4hasH9e3TugydsLGkW8NaVwwJWIpGUQEXbtr0892Sb+hyiE6jt7Ik36jtepSqq13XzG17XLboDqw4wFJgRCpOnMqwKukLWgQHmk2tvgAAEABJREFUF5ewZ34eB/RsuKBPUh6TqihTcKbiXcs6pEOJmgBIJ/braktpcBqE0VZAx9pUavyWhr0ZDA8V6YPOJ4BZjcHbkJtqSo11Rm+fr585gisOH8KuuXksa6BuKxpw/QBlGhiRUCKSOrCHZIwdI4mk4iG0stVtG609Kkf1VTHaB6THTnQ656YaFROAI4AF9JjLouE64kw6gECi4iJLcRv2hd0UtuXSWDPR6qPSMdm7PuV6tx8bl7xTNIeWmkHNDEEKunYkT27j48hH8rU2l3QdwVJIKaFf9V+z3Ov9Sm+p92tlSlXV6722X/Wet7zc/y359R2XuT9oCVMr01L9janunBbNsg5IknBa1jPpv99+C3q6re1Lb6G3zrDeSuuQ39XUlKqqfq32pTnX3iYrDrAUam0r1DfEKRo5SWtiPbL5fh/7tAhvm5vDXsm5/jIq1VNUlLmv9piXJceC6sz18uecaFNcSNUImW1SMoGwNGJfSAkJao4AUn4k+Nuub5kJaHFW2K9POb4NvnH2SLwLgBwkoQyVqkFEOyISgQSApNBKIvOWAiBb45dsM6Wkpk6WbOojZOagegybtDQw4EZjUuF62idV74yx0/tX6+T8tKWq/92T/f7ne/pslsrytUzFH/Sq/vaxfv9qbe9jyeJHi7L8gGc4ETBIIoFon3ELfTmQ6Qy5MoAVEkquK7FuOa1by6MNe3H4QJL0pECShmO0/zS9oqXYPg4oX0yWpZBklEwXnzk+/jfbJ8b+ThtTI9UXb++O/+3y8uKrC2JJIYp0zu17ARmzeus7pr3bUUBfY3GEsVhVfaZ0TScVVw9QNHoju0V5pWKOuJrHpMFDb7SQdauN5gDkxPBqDOJUZjLmhAiXdSBUL1Z9W8behXns1GLZPT8H/3e0vkJDSTUG5X7F2B60OVAU4izbfqplyqZOMGx1QlotWBKaPyR6doCDenbdrbZ3zs3igHTPkec7RR3Fat6omq5jmQExhi1EewQaDpEoiyQSyxojSRRA5yisChxAijIdEFKapE1pkaMQlyWUpKFMxUEdbz+scX5G++3DOsn/hD776N1U7w+runpFJ6VD9pfANbXeKvf6S89NGozrtoj9C1Tvvf76zQvV8kbtQpCEf3m3Ub05UxwEYr1TOtEd6MzGy2+/fWrXrnpS+oQubLGJiFIbJGkdkC5QgDjLuubW3YuLj9q9tPRo1fUfsWA0KQwUEVIKbTXPtHPAVpJAY+dnXFKMDhLT1iQBFCDGtKr9ssifbihbdOROkW4Zq6pfSOw/uxK0E59tzPQXn33T/Mz/uvzIwRd+8sDet+jqOOPG89FHQAsi61YbzQHRqjiYU5w4lQ0rTQslXIMxiGu8EFer2qxeZu1emMONR6ZxmxaSb1m9kIzp5vlyUGugICfZ6hJGkm4Q+olIrQwdtkDaB71kqvTsXYGA5o8ZshiAUg2FCmII+RF6EpkI2dG6JAOkJXIMiM1l+YRPzRx+20cP7PvjjxzY+0O6cyi9rVFXfpIgDdcR0OitpLjw0wykIjSKl5bgH5DI5SO3l58q9FlIH+sPjI2NfdqeBFxJckcB+Uv5mY6kut6DOn02RX2ilUv93qZPTe9/Z3fzxK5rjhx482X7b8P1MwfhOzDHkND1grCkjoOQINYzpRPd+Od375580Pbtnx47o7rhYFXfUPWr73Af7WZYjmLUp9j/1inKy3UWvOwgcJZ9LXRGjKnIdV1CE9c39/J+b3nnYq/nfxCsKFn8pe2qKL5Q15Wecd0CtROgBavdpFll4kKn6ByeKov5ibKcLYs0o+dWbO508T1nn/cgpHTxYg8XTy/2Lr55fu7iK2cPX7xjfuHi/cu9d/QqvFK34P9bt1hnowYIJykysg5ffBHJdChtISLnhlhhDLlGWy18LfSb311zR3C9XgrdpLe45ppB5HA1mZWmlE0FJIGURsRckARpQNIgEgHHJfEBZJuSARUkkX2SIGSCgEAMdClJ8+E4AsEnKQRhnoAO9HpTb3npmQr9tSKl131p+tCGK44cwtU6Oe2cn8VBfZP2H4UoFK7bQvFIIm2TtVoUiOBaX0hCvgwoFULc2VmqnkTUiSAZbtMvnseku35Auuf31rmZM6re8rfWdVyMoNtq7NIYr5g+ANdXV3BqpXVtYIj1KjzeE9r29kpvLHT1q6vqTL0kOssbO9g4bZly9BcTY0NQjme5/bqq7NCZ7JrpA/zU3l3Pf9veG74yglX0BM834R806Qyo/TFUmtCqmtQtD+uqDhuyFa9uqBoQiEI1NhXjOL0z9YdLmLtg3+Li86YXl3/sqzdt+W9PP+u86snbz8IBXcEumz6Iy2cO4TotkNs1plm9AV7SC5taz74G9HwLtYhjpLrlNQCsiCNORKLarLQwFivPCuAr1fHapZxxoKseDc1K0iApnpoTmgNUZiQg64oj2UQAKXQMfYB0ghRAHauS0hMBkkhYCVEgxTV+KNWay0rzmsT7yFmQvl/74GY9HlylRXzFzGFcqxPUbbptP6I7D8cS+unKlgzpSe2IUX+QxUYCUJvKAPRaWSVAOFGyiKMB0oicEsqoOSYOg+QTpReqpmvAWXG7exfnMNdbjnjbbqmVjllPpPVonLEpaErEdECJgnMrW11XL9w8exi3L87isM60h5YW2Ov3f5FV9zNvvvmGpzsurrijFU0K7QaslnINcmrqOSZpZrXzO6wnHruxO/5dZ01Nvfhgr/+v183OpF06OGa0QH0L6ipGcqGWRiUHW6ZFI99RmaPM6l1u2xiNubN603Ajci2OjCYzK0rKEqgob4OlpgABEEmKIQEygYBA2E6ULoVkxMkMmcKGYggCSIIoZBCDH4HgwPhFvdBsyweElYhIo9KU4X0xqxdwu5cWcO3cDK44chhe0Ldq0cw0L+/cv+ta5v7cHDUuxt3PueeeW1nTlb2qDx3ScodTrbVbqV6tr0GVXozW2vxKjppk1E2SC1Uf0CjhtAZmvHAVR/lIRiRJ1ce6Jm/runRAtRrQRkgFSVAKySytC877lubQ1zWXNuyV4luUXm95ip3y7161Y4e/ycpDAVATA4CyobRKtjHewFqXJO+AfTop+O9lb1yc+42yKN87lviMuqrPR1VvcFxSY2pGk04BsoSaKyTCJtola00GIgg5UTHW1K1FgBGw1oIlwoW1fFiR2ghvzwqHmmh9K3gbciRJkjqIBaLZNiIR4mp1TySVCUBynKVsSmZQFoRWZj3igeATG1lbQu0MpeMYUSopvkXLab5EaSwUI7/sXAdIYhIkg6OmnYh9qU9o1+vF3Rd1Rb76yBHs0ptvL3BPY9HWUT29gDpjrqp3VFX/6Uv9/vd2N236kr8alJ30hqJOL+xV9RnzdbVDHxgeXyD9j6JTfdS3MOpJrVCHhjZI7RwrV6M7uQly3UZdN5HWo2Xte5DM0EyS0ldIyGcwPrMs6qxGtEkTpZ1ky1xVV+eVrJ5WiLBNEmz1VracpDfIB1GlCT2iq+eupXlcr+eRm4X9S0va6T3tl6rsy7dJH/N8gohnJdWFxujbNUt3QhLhcz+spRPJUnHyAIxIIBSKRaRaMVZIBVgR3A8cJ46WcCJ0tDaNSIdTK603CIqqVWdCbWTFVcUpsyUGSkPITqopobFDFxki6ecmSOm6zHgbk3RlkGyAkImAQVKS8C+1eiNtZx4grRnWBUg3RyABtkBSukZBIOZT80VSfC1kCQKihBpOHiPJsMlWevuB+WoZuxfncc3sNL6oK/IN80egN+HjPdRuvtCiPVvz73+FZaKqq7O8p+qqOq2uq806GIp+Vel9Rd1VzJT4M0i3b0Djo7s/JpLcBRhxsX2uC4iRA+uX3Nf6tR4ttxuQJbVJGAD6TuhbkbwDEImIgxmZ0/oDU/0w6JBzNYqnlJVAMH09Lx1aXsZOPZfeoOdT3/p68VZVPZxYRSadGJKOh/gclBL8l0zzvT6mtZhn+738NrWJcT9JdSypOpa2pcIrlXCSJWfWoeE3mgePnKg2ooI4RWfSDaifcFkPdugN00VQtSJoS80EETpdmaLCUjFwiZSpSi5j+0k6OuBtoDwZDM5lEueDsdUpO4M5hpAkHCcVJEFAYAMgBUckMwQSEaDs4ADEQgRirsxr+mDp/ZIl8zOz5odA+NoYag4pPgWyz+0afe3rw/kYOPPamcMTN2oRH9Qzc0/PzrkdKFHtQaALyRAh0aSFqqeTwRwWJRtqTXGdThQf3bcLN+h5vPa4FKVWkTQOqeuW03q0TB08HvxacH+jvG3DnGUcgtoh1s357KizYhf68p00tSShPEBfR+bh3pIW6yx8pvWzkD7VuHpzsCCkCddrpfW+Jtr2ET1DLWnHJhl+u0xJqHBMqNal+ACUgH1wEq9NlWYlRipdW+AJsNY2IN3LDq4oTtHISZpjoxHpQbYyjFwERdWOQEBtoEnRrmg2NgaKSHOyKdLblixVNwkkYVtCrCKkKIMUHwDERozj9fUMJGGdAKif9dwGxaMBoTDpluKRpUpxQPhgy8g2gfBJwP5WWjfcD0UmFyEZcfYZorItxZdYCdCF4GPhdl2Nr9Pz8U266/Ii7usE77YCinEbLczN9ZdwuLeI5bqvo0sBTfaMxnw3tvuY0UnhNl0oPrl/N96351Ydqo5ygL2W64O0Hs16yAEtjCwRExlnSkBnWW9cHZwnCkq14AyzPpihBSBANpluHyuLKtrSVPpkdkQvBW7VhO3Qc44Xq74DwumoDVIlZcSOUUArZ7VYD+jW2Vdb3+oUchS6bSyQYN11FD6oBxHKUBgsvdA1lNBjpBqz+ajTnHi0F20GGJHaSs2JyuCinmNps2Vbaa5BUD5kIlDVgggno11RYakYumQoy1aWQkSoNkBZWwmBoohEhGSUUMoaralQtoYUJZDUABtdKlqequ+RsPWFZLCJUBxD951OiQK+G6JiTFq6rVaabmFudUzrs2zr5RjCtvkWHp/1Od1NxSLWMXOT3lpP6xjy3CSojqF94TfIi3p0c7z3r7cndBcK9rFn1ZCpEFpVbeBWnRiu0TN3EpNZKeuU3ccJb9oT5+tPlgCbg3poEz1Nzv6lWRzQM+jKjdR0aALRJD1zIBXpt/71tltf/ukDe7Bzfh47fBscfxLYh58nCcI5uZDqgyT6UtFybH2W0HORFm6Sv0hASkRBCK1MiiJEh1QBM61UNexT/5fsvh03zc5qW2q7MEjaXuujrJeduaNRA8pH80czbKmB0hJY2T+OTt4Wb0OSi4omVRKxXRRnPiDekiSSodgUAGQKFLJuXpZsRiwpiaSfWKKRRPvT93lsLscCJRNunZvHAb1ksl9ByoSKqBd92xRazpK5AEkMYkA4ezytlBskIwbhJmQix9SY0xtpn/j9XGy5oOMxYfjoJrXJbKSE9qs/w0k7OitMGf5ftCYr6U7u1KNbulOMx3qnAu96EJF/CIlIZoAlvUyY0a2IF2+96qj15o5y1nu93vU1uVkAABAASURBVAPmFxcfeuX0IXxw7y4c0aS3A3eLwx2Cpi/GDooYIvQ2JqRmtptSXqjyFqpVWMpZ6IBKkhRnJEIeQuYKualTYrIs8LmDB+AF7D+8n9GzFe4w8RgRx+JHwz07skdObHdm1WtzQBLeFkI/AslSSOLlgYRAAGx+0oK0NDKfgPBHPULtGAyOAKKKFEI/GQTQ1ZxuTF1sKLrosFAdCnCEToDLuH0u/yeJChdPWCKSdDA4iZD2JRlETpSeiPBJXSFTDhFNtPVAKKtQmQQffod15fXF4DrdTnsB46jUzLviR6+4R4WJmNdVHYqLtrF+Ka1H03lampZtSPXEWe3rs8/CcR74PUWGqjTZtaxS0wH4Vubq6cOw4Ta9AQRsBlobTnJQLKW3kBp5c6eDiaJAqUaMQns/SU9EXtDWVdfBVDFEo0mcv2EK46lAT3vzFl09PrFvHz5zYD/26NNEpVti32mgaQORVCnkPStWt7Jyvo5uO2kMrkNLbRcVIgFDzy3wNhP+AanxJTmtJ/FJXAvaJlQyg9J1JVI4XKeQkuRJAEokTKYyUCbKAiQayCY018CsXgreMjuPvuaRyEnNqBUKWBsUL6iEk9UhGk3C7SQFSB2009qiYZIqzPnxZ0HvOtAmtkojNdEaYmNksTqkow5XcznyxJYe74ltEWdHexo/ArJGZU8P/KKAVVvXmpqbwUUkc8Egp8xMLy3qzW9fTchW4+TRkmT4JQAVJAeSoA4YYoOummVceVPYPuhKXR3yItYwCJBRjEhzAoiO6l6wcSofiLILzaavulcdnsZn9h/AjUfmkM/AGCY3N7BWGA0rrtEGIihipZ0tz064swkNA6uTNyGpUIaGKFBhhLnCmhzWDakIAIgoGdScSOR4KeYTETZJ+JeizHUKxY9rwY5rfjyfpCKEJHiOLaWqvmpJsb2sFeHFO6cPqqTi3R7VngDbwgoJgP5RcrUvOPH2C5CfzCQ5lCQRPwKwnqj9VSEnkzoGwrAu6ATlE3JQKsSo9B6QUNa5Gg+a2uCmoPO5mPXL6cQ3fRvyBh3dsnm/Mvd0eCMd0W72QMoRb6HkbDmpTTZD391gXmdptxcQvUIqOmzL1b7WbnxjOriSdpoP4Ljyhp7gAy5pS7SvVMIXppUSCPvM8XFs0tXbbzMpxm0ZfW3Hbj2PX3n4MK6dmcHhpWWNW52LV4mcpPm2l7akWygqxGgRLhcRqHde1nMA1afzgBko2e+SKozYHikkkQBXA8mBnsD4tZKAbEEKpRE5qYoswHcUBFXfJRBzKLsjZrSNBIgRCHkzkjSZwbft+fnx9vkFTGuu7MugIlVH20VguB/Ehg0MuaNi5AMUKdxJn/eb76B8jHpX+IVqXqxqQPuqjybZNKJ1RUs/c2ICj9l6mqs1Qesn0no0PZhQNe6dkrRxlpD0QW2ZbWuI5DpW/EyrI9OqokOMFI7SDImhvG6DpCyAHEqrtggCAmkpTdIaSZACgE5BjOlS2REKcaOQCSrGUgJkWGD8AJskka+6Cd42o+BQd+ysvhHfrJdY100f0W30IpYHt2NUI9oeZSnISVxWhmVQLiIQ0TFyyvMF2AungWKjBZEUoaGGTIohaUYASCIZsAQcmwiICp0gkgwyS/ulQVspQF5KGmJGtt11RkEqZhVIcWoh4qIV4MDCsp598z9eRwAKgRNpC2FbIyldAEJCiaRLMH6ATZJwIofSqi2CchGkIG1Tp0CZKE1QliP+esqfDCHb862bAyx7V8jOlxFA1XFgcRGX650HSbC9cGN9UjrxzfpWWQOHgaasQ3ojO3o5ofNTuzYHZ6caOVU6q7V6K7PHpRnCi2ujrnJULEUltz4iad4coEMB0iwJKkZllgOdKAB4X9FS0YUV+T04yqbaiz7CDzGGPOKpuE1lB2eMd8UTwzj5xSRAnKCd2dPV9qA+QXkR716Y1+1+T/NAKAyeExXKalDlihyUDxnF2qF2LAy6Moe1PWbzMI+c5JZFAdAwYC0pcKiLB2A7eZtAjVlRIpRlQZAdpXWjjgM6zkEan73tthIASaQGpHRkhA9AG5vEUzYlEyGeUDhml/vw1bfvtjWmNi6kbEWt2o/IddVWEhigYgxkn9pKoDgIktYB+SAbmCqLeO+BSApWturHqVKDOqA7gSUNaFa3851kj+edrYKevg9/fP8eXN98EsqO9Smb7k9g42frVtlHs7dHGwtPzojUdsO3G0EB8nrjs4ST6jbzFT5TQ6hRHbRnTUxiXC+Wog1Rq2VUbPjwqYGQo5z00TiFwDGV+vcOWPYoFWMOIVUoaGgDo/qDpqbQ0ZFnTiJ8lklEUlWjAEEa+XOU/xnTPbo1nPV/9dJuNIijUlCUpwlSG21MrQXozJYYKE2seJJw/0ktSA2dvjLCPEGuhGMBwvEpfJAuSIeSbyWXfUXRArLfKOQjCesBQC0YRAJCtwxfxOX2EgHXLQhYN1rddyZ+3PBLI1WBU0gClgYaPUsZAEb5UR1yt7Z1w3aLCd11YZAInVY9tcGM66F1Qsecj90NpbcEri4086y2oeS2rpw+iCLlGFHrkteldTfq7Qi40NArnY32LM7j9sU5xGw02ysX/FzhnWNd61JncmvQGUyhI3GytDgSHjipFwCaMjed1pBJ1VPDrxWTOcAxBlfFy1RtyI9GUrKWbYlGUhyk55iuduwDpybDdps+AJP2ojJINgAyx5BJi6cCMKPn9QOLy5jRVcaLQtTKHHPggsHnMlRQv6w1pcMatRWUQhIkkWqPDtKhMUgC4OAnnQblq5GQU5LfzS7p2/dCr4r9k+RSqDwYIHOUTSRCaKV0EaRtQ3boloBUxVpnLOJsUxz1DQLxeOHHjQTqB2TJRkcjbXvMllgVw5EYhC8hS0oaSRGkNRGRa5TipvWJzycQU2Paho5ClG3G2GrFhNEWNeA/uWzN9ZJpvRp2u95AP9xPLy/h5vkj+ujd04ucQjvHS1Bb6CDBtyFevD6AvXDtza/lawznslYk9GxR4ZP7duO2+TlQP8ciguQP6TCqkK1ypU/cIMZO2RbBSW+lObgNKSFGfK0tF1bFnDE+him9qXYzlM9IkgnIB4scDNslxSFQBA+dqGrNUYV53YrFAs6TgdUprrKryePYVJ+U3+NQVyAZ/SYQUhsdkCXdJbK0U5u+oGf0Od0VeEyuk5FjQldcGgCxf4MHcjtqOUkvCNkZlE3xhuuGFCdKMbZgdaAfXFzC4F+gjDM/lCgoh9BANYZ8PIhbETPqi2AFWIqXBtVTtnYU/NnwsLa9PTarJmKxquME1pgrxFThJb+COuGG5/MEN3q2JhsBX0Vv1QLbv6wXDZqjKd1ieCet1eG4bkPsO6Srz7QOFM97cYzZVFO44vBBnfFqzTnj+YRsJcQJkG3U0gc+6ooDkPIZsJS9KoYA5BaoeIbUHXQjZcMA2hjqlpGktpn6HODPQ/ITSMQgJslPEp7wJD5JV4ZlgngZCZCGOPa0duHb0Vpti2myBmptLc78MaDu1K5K9yERz7HSlaP/Vib5Wr2vtmZ1tZlZ6qGnB1mSisUICFGNPapjBe82W5A5jqTqGZAUYJ0qifZxIskyCCAZquNHin1awJ4FihMFkndyHyFiqcqqIl02mH/ilPW+wSWOSqePdbGoOdiv+fCj3iEdn96mgkeF+rCNk7c+C3aP9p44xnNy4lpTS3o1VetkBP9LErsWZrGk77bePm9oxzOmGOTp8lNk/NtGaNKUFu+knjPG9HwwLtnQjXArjSox3+/FLYlZNzuUVOtAcGwkkG0omcui4dhIHC2hREAZ0R6QpYiBDWQOCOkz9LZuF0kBATDrgA4wQTzN2ZYMnYB3xIp4AkXEWibdtpUo9COc1j7A7FkLbpdk9EH3Sbhs0OpZ+o8gDuu2/bAWyLJ2pKrB9ZPqJNcIqVjJQkgKSIBGBpBEgmApKCMRglnKI5/KBKgkUpTiCWlAcgVIyrJKMjiSiE9PhE5mFfxuwHdoMmG4sFSYVYQUERKAVAx0GYR/4jkCQItz1bzKLzry6dqnXR2XVV1jSrI9lkdCIs5z8oCJKdy2vPC918zN/NlVe/duDMcJLtJdaO9OhV43P/+YnYvzmw7r9hgxQYyy0MyRhFNMj9TChji/rbNqOM6wrpC4HYl4E2rJwryRv+VS7Ciwyh71raXf1fi12hhyUPKzbqnnV0+uD8aBJFAQgeAJHZgASUmKp6Q5SwZPZr1IRFfP0ZNFV28+O3D7UBrOjQxnulgFcUlUAvPPbVqzFDymZV1RDupzxgGhp5OtumvGgkayGR+R5EyqR0onwk+2umTTdmEpJDiGsCQlA4BEbhPZ39qWbj8REZNA1U1IzJrWTixe/5vUlO+uA2vW8hvjZZ2sEIlRDue3hi8qHpNfQoYzihzhMmng/o67UV8ZdOB2NM5f5tT4pVdMH/jGCD2BRTpRbdV1zavnpn9Fc/uepV5v0ps9CmiqoJS5WrclMpR9dZ0qS9y2sIBerc1X9nOEBOY1iZauo1DlbLk0JppnCftPJniBPWBiXFtMeIJTaABJEBA44BMgnUhEpHRUDBSfYZ8xpjuTzZ0xbO2MY6roQFXiFg1OnhjLEVBexxD6EXCflN9yUbd9/hPN/YsLWPIf2suhrBgOQNVzrNsIKZtA+Bm6S+iOgrKQ0YwjySKgEkhqIAHSiaTSIACSSFLCtq5HAZmwbZAEgUACJCkfcFh3BjN6/mx991RCaU4v35Z83OlYpHoq1VOHhb71lzpxlnDa1Oliq+b/tO44to9N4KzxCZw/tRFPOv0snKurrWOootbJEP3qoWOd8fdcPXv4ty+p69yAfPc0p3vagOt/aXr6tOsX596iN5b/r7fc20Bt8AAx6XSYFqsWbGiE6ND8QDeWiO1jY7F45/TmclkPeIf1hrUkdEZuwkJQZT4iypSwWRMIEKQAQTJs6y3EyQMyyqFEY1veFV8b63otWk4y9w991x3HRPNMr81Dks8gGTqp/gVziQDJAZ/W0BOoH2BpEEBXB9RmHUBnj22AD6Ku5kT0UZmqGSCiPkm9AOvpBd+83tjmBUsS7pccSjLriUDuk6DOzAlAko+WYOhxNRRnPgPad4Soxr9Kh+2MZD0AWM/1U9bFJyDaKtRYQcB+kiHndeLJf5UGkET8WpktwLLlJMM210LcaL2+ThxVvH0v9BWjjDucDeWYrrgdH644c2wS5+jLxgO1WM/fsAkP3bgFF0xtgi9AcJtte9Jt93q9iYTidx+4MPeuG44cORMnIKV72sa1s7OP7XTSx+p+9T21PvkkAhr3EEDoUOppzcktTQtYuhRdC1xCt37E2ePjWK7rwAZ9DC/dEHKNHOVK2T4nvuUm7TxEhEPtOVb/9rUxIUUMJIDQgSyP5wOOG9P2n9TgeZOTTSxjnAlZypVtKSTFio8SSIC0jBU6IR+RiAaEqsIxhRT/Eci54xtwrg6oTTrIkhZYO7kE4HoKa/6gfxb+A5DluMIrEvDEAAAQAElEQVQSCYZiQlJla0M6wk+y0cW1uiVlA/LViD4A6ZDOUKJtxwGwTnlpXZztgIgsKS+QwgdISLdk1gFJIgFayEAiAku6sh1aWkZfx5/rUP6QUiwdJ1V1AcuwpdgXALCmXBUDpaqBXGghCser7/68Nqqq+pa64Kevm57+Bte5J/Ac3O36181N/zetr0t0S/BQXU6Hg9cRE7dnanl0gxb7tW798+LzRsuNVlr3Qp1Sg759LkcddrbQwvZfTT1my2nBOGy0j7DlWav/8KlQVr91A2Dt+uK9HQpWXhXjuvYb0gmsiAFk1/r01cGWbkcHF2VTEkjSCoEBhO0dmwAdjAy70ICMJGkUBCwT0UjFEYqHbMM2QQVM6fHh3MkpfOXGLThnYoNu8Qo4zejAvvHIEV1l57DsBav+UwBqwxolKQZZEiDZ6JZQf1mqm4ZHSNdOjoX9GZReIMF8q1vaLhxLyIemTYJ0PYgbldapmJan4qAYSFJyCL808q3zshaxmsJg/wPSBQoAsk8SwCBmta+1vf8BxQniatmIpH0uKUo+6VKUMWhbxqDtNk6c10hV9c8ruuV7rpuf/h9y3e2c7m7N645MP78sOv/U7/c3eUx50MyDZ5JsdLQScMyCFm9fi69GTvKKJ1RDO4hxKwKlUm0YnUTdriT4NtDPtBfo1uTJ28/WAakahOoKQCOZJW0z62ilOaG11T7Z+lopP0ehPgAoDPSP0gGQFCyNNWJonhFz7uSEtguxfQSRoq4lxGc5yllPhOKGIB3HiJcqHwMkQRoImQBJKGnOtH1n6PnrkZu2wc+B/u7tzzpJPIUU9VyXaqsWrGNVH4DCkMD8k2HNdoZLMeKTojJUR9G5fSBLwnfxiZANKDxkkqIsnerXPkq3HII0JwCqR0SP5kD9ELa5BCXx0/p8Na/HLDJB5hDZDfpHgGQD6bBuKVBo7dE2xOnRN5auDl+oegP1A2QdRPCwNBqekgBaX7/fmypY/P2O2Znfrmvdl+Oup3RXq7ijG2Zn/qAoihf2e8sdjQmMH1S2qEf0lnMUlKhbGglFlKmM54eNurU7bWwcZ45PYVIvqsaLQs8Nm/GIzVvxaF1ZH791O554+hn4xu1n4mGbt2gh57YIqBWDjbR+LKyOOfYYCTTtOYaN3nKr7bVi2ljohFNou8aR6MUBeMIz2LTLzBFhO06qOMrOSNrjriMh3nENr4g0QB5HaxOQB4pnIOqqSDC3ElSkXBEnNSQVRxlJaH0UF3Yjk6XIGJ+kP9m0un2F6mbpsSEvTtUxT/ko3X7DOsW5vqWRbCuGhhZRshzhciwQ41ORQCQFz+s9if/xdCjJFAuBgmWLPCYCIzxHdPMrYyotWx3/+e8HgCbWMavrtb5RuTKm6vf1Soi/u2Nx7iVqs8RdTOmuxL+proudy/MvTin9Zl1VmioPRiC0EYQIqFwJrvK19kiUJ5uyLWsgbqeTbUONpgaOofwUvwJEZlqZrVy23GqZvbm8K742NtfMZcu1MrNNCb2oGou/rU72C5YZjANtqBOkOW09IR91sFMSYPvTAUwASWAL1aH4FJLw4k9ypoENcYTMQCJCkpQkEjIIoJCVJFNIykNpkgSS4hMhmSBVMvsyZ57ixcmZBGXZEBixZCshuwXhn+MDANS6APEGpXs0AElETCMJ/Ro9EZA68PuWeUZX3xrMP8pvrZXWW7Tcatn6LeXbrJeh28fGfccLkhj8uKrt1h5GQOGgf2xipetA9x8P/eLOpYW/u6Kuu7gLKd3ZWJ0V0hMW5/6i6te/okXrbtcB9Lboiqzp1pZqG9ehD9zrbSb1ePbEhErGgUUSpIFsg/FznEGd2S0TIF7Q3VRSvO2AdJJRdyUP2E/VMq+QbEsJzjygkuKHkDvbUgjAdRMhCRQERGcdlDSwgnefKXxAgkAg1yESGSCkC1BKki2CVzCDhzyEzKiTpCSKi7sVIgGwnUBJo7UhhnlM0iKG0CzW8LO9PzPKlAf3CBt0J+j//vrw8vKa7WiNYFkvyHoClO5Mn6h0Ha+qH9+0vPAPd2XxJrV/p/LN87N/nMBn+3RDEuQI0OirpWNWc61tn2HbCB3wS4Z+DTFCcGpbVpStbTmK1m9pvpWjesu10j7DttHqlqOwr4V565ajMNfCvHXLEWzqdOJlVZIviQ8pnYAOuNVXFHkVQ7I5QC0ROtnqgFRxQ56g7AzrBdSugpL4QtJc9C09S8DSPsshoDE17Sh26IfiM0g2MbYJkvKpJ0sQhUAAYjLEk0ShOwOSIDMSIR3iKUkk8cP+sm0uEY0PioPiIdugpNHqkrAtSFKY6/Xi384mbQmjclRXLCl/K60btg3pp3fHdEIA/BmKJCAs9StM95bhBT3b78kn6HYdSiQVImAE5mxbCl7wdVU/a9PC3F9edNFFSdXuMN+poJ2L87/OlJ5faYBsm/TiErwVwUkfyFAUOMrJbGN1AtWwTWREeBNbKSje3jV2+BQWsuFkQmG+zcgyCOQ2HRPBGPrMyYw6ksfr3zFGG9M2FbJtR20cNyaCFeR4IWJlnj0xjqQd1bbtyU8x6uHzr6saSfFG6CqoOA44Isk2OJAIjo2dfZBlxhL5YAcUZ1DSgGJka1AJlpBNOIUtxRbNEi4DKcpsW0+AGESblEYAsa2WI+CInusQIeWwTJLKagHBB4dG99xJL4jGz4iRKck4HpJikryGGPEQTyzo2PVi874wFIZI2j+0skpqOtSKHRltTKGK/psDL9RZnRD2Ly7Gou3rKpsUWggegw++Xl2rbxE1Bm217agZRGp8Xls1+dM//Wu/9nvB30Hhvo4bcvPc4v+XwN+HLukkYwCyQRIqlAkCIAkCIAkCmjCCFKSTo5KQAyoVY5Whk5JCpQ1RlsNZnLykpexGrlv/AEj1JUgBAYEgBWAgV/SPlT4y2ytiGm4sFTh9bAyJELgCZLbJoSSHetueZeE+7ZNMkspalDm2INRuRiFHQQx8ZI5p68iEkW1KH/rNGeQIh0YHQFL9ZJBNXUBcC8K/lW1AY4FiOAKIy7bHShKkbYzEEP4lIiRJkFzpDzshAfIJgOTKuL4Wkl9cQYlCAkEK0slRScgBlU17DJ0knHxxsZzVVRasUGhgSXcSSX6jkDTqOEMAJEEAJEEAJEFAbROkIJ0kvMaQ+Bs3zs7+gqjj5nQ87w1HDj667OCv9Pq6UA9IMRB1oEoubRujPtsEFYFcakDRSchapK4ugHyO4aDNiAHwYH2DPL0zhiWfKGQrcGWM2mno4N0fxI1Kgg7JZfhkhryD/psY13Z7dAtE9IPw5XZUgipyjJTwuW1GLMOLKB0T26YYP7uePtaNN82J9lMxGSk0qD6lIWTmiJSbDk7NgBQHxbTSukEVyiQR7cu2NEQhARjohHQGSElQPwQiDmh084ZtSyHibQOOJZCleKpWsiS0IIFEDCGfXEObkE6xaEDoQIPbTGIIRGmZVJE1YWmfASX7jGRdijJIKg4BqbKlAyDgJz3M63a2XXzmoCDXz9KTffQxKhZeqLsXF3BY38Qdn8eSELraTmqsAPM2SLctIb9qRx9DScUByGX4AEjW/V7qdss/uWVu7ok4TnKfa7p3HDy4ZWJs8o39Xm8L2XTTSAn3gShkEEojEiJkIiAXbIekVEJFwH6oEBM2lE7XFcn/Tev+pUVADmVJWpX0xNda1H0sVH29CMgTQSgN2pHl3EIuV5YJRIw0ZQgyGw4IG0oilQEXjoGSdKmACmXIDEQhQlk+glAKJxDCRCiyoSQ9CWfqlpnandaTYpI4Qoykd4jP1omAURCSRGGfkCXClhm+JCUj84kAyfCRzDoaW9IHV5IkAMtCkkK0bV510gBAIqK/FNyoTvkoH0akdYijOIBko1M64P4IhrRukEObANwPyZCJUH1FEbINQi7pFM+QSYRBNjYUIyQAKSRBUrosQgcRsdCr4m/jRcOUiywplVARsH9Rt4H+/1AdWl7Swq/VL+Iqm6+0lJ3g/gtddT2HmU/iCZJQAZUrpInGZVW+yCoIrbmpopPevGt6+nQcI6U1+brm+NTkn9VV9bCk1qmmV0tzLe6KL8dCLba1GRttK/uIc8YnsKgr7oIe8DMH+PX+QS3mfcJ0bwlzOmvO6FbFZ88cM2zHbbVY7cs2jtt/rptjcjyPGmOOyeXqmMyuLEdjNulb9YaygKY22k2EdjIa3X0NddI2m1isklQdBEgifpZCCguwTJAUR3OWDZJkIkASSSCzTCNcGuGSeCN/r0VTJ8vg4fqyJUm6hLZSEoGEJEkk+xpYb8GkOuLTCgAy4QVBMurmVgBFw7pBUjoESQJug7Q+iiFPMo6pZb0JZbSU46xHXSBYKO1bWvC9ZozBvrwwCfebCBge31BSsUCBFG1QZVJ/o9J6i9U+21W/OreYGPtbvbhKWCOtSd68NPfdqvxjtc40ruNbvFpDH5XeeQHxuu5paI6oQ1KVHGu/WeuthOJJKg5Cjm99rRwrEvzftPp/0DTX62GPbk/2a/K8eFUViT4EgEKGX7/39WJgtA8CuW26xZV93Jn+PW41rTYQabRtt2g7x7httwjF2mPbyPYwxr7MRbQa3z4+HuP3DgiIs5RQWxQA24a5JCYR4iiNIRMQuhnrSYFJjG+tExAxosRQABKBzGdJsUaSbH2OD1v1KaQRkFR9I89/9lG10fDyed8M4hg+l0maaCQVBJACFAtBksgcbSN0AuFzrA4bcYT/RRWVaNuxribhGIMMpqln3W0g/HJlngjb8T52lnT35v3iveR9a52kYqFPk5WQr7LuMxFI8hXyJiL2YehA8Ek+ZST5LaFnYLdXy09tRC1YsrF9jLRcKx0vt67u+J5bF2Z/1PpqpNXEobreOl50XqLnWo2hhjsnCRnSh5JofoR8AElJhvRgSOkYcm190jwwiJHd+lopL8b1Iqdf1ziwvIhKCzP5gEhETBIRfSXVLUHd8lQgGRxJ6RAkwQHnWFKcAeB4/SsKAS18hYPk0e0gIiCXfJCkpDgRymHLQkBEIkAyA8B4QWztdmWjqQfpRKEYx2bJ4BIsAcskv+eA5MBOmhvStmIIOMYgxQUwaNd8i4JQbAsqxjoHXBF1s02NIWzJBCDFjyCJ1PZvHQCBDNsNSKp9KhaCpTHUC9UgxUl6fKR0QzaFwnogRf0Bp8HYRzrePoS/ICQN86OAxgH5KJkBpeX2IqV2SKpHwMeIx1LKLkYBqj4EorCeJIVBXMOpCiKtcRzZR1KRjHbIoSTNA1XVY6fTffHuI/VR/0WRNhsr0tLS0vOrqjqPwVINh7KmZLh4lA8NQ6DRVkrzQyZrwdWIW+Db5ufh2xNPipG0IUkBVGvJOoCYSEnbOolJg7xYkSiLUKFsXSJisp7Lllsts5cRv9rX2rQirJaiIps3bIzKrBPbxjropASSUAnzPhtbhxLFWKf0LClGBqF4QNVAAEkHRpIkiSQmEZCqOYJs6wy79dk/BGGdAKif59vSKKTlzgAAEABJREFUsQTEECQxtIEkW7nhgTxmSQqykmRSQJKUUDyQAHksOdAphoBKgyM8Gp1o61shALfZInziKCRQvhoJQOtPCkhEts0HqEjCcQSkY6D3dNtc1XVwhBNR6qQ0XhQoxCajabNQreBkZwl5CbIBViW1a4YuRmDbMDUqs66Zrfqno1z8XftHkUaN3QsLF7Dgc6CzD0kNAmDzJs+LI4mztJBXfpUEzK3wiWtjRn2OcXskVRcggJZbqPq4ZX4OuxcW4wrqhaljGkxUTEJSdHAECsqm+QYpS/clGgOAK8aW5FjRv9zmXG9UUvVIlcQ93n6SUB6MY7R/9+mXcQlQDGFbWxZ63tZc1zrZ+CVHbetRL3ioLtSOwUan5itDIUgQb8iwbphJntPgAbdHUlKjIRAxSbb8SVIuJBWJaKTj5G84Ko5AlFHXmn2QJQdJJIHM0vrxQFLbgDuo40XbjAOKVZ/JUnUTAZJR33oCQWZ4u0n5IEjq1Qqq0eMfgO+MknyJUBuG+pFREBoXxREFEoomhlg7Jfl9rFkMoH7NtT7L0WNEz7hgWfz47YtHvnq01TRqlGV6QVVVG8yxhoZCq3HQsemAtMbgHUMtbDa+JNnawSmKlKa2VEY7orQY4MiAB+2XUL7K9nRLXBBIBAp53V6WCC5BUvyQIwq1XyIN22zGQ8VBiZR2rP4V6/7JtWPUqlpQdv02xrJtW7xjVDu2zfKo7XeM+rEv+lJzFGeb4jfoRdVE4S2AtwJqXhJg/CCdMFcAIRMAAuIhSXiuzFkSkE0keVoQkI2YnyTNbQ19FGN/lq2PQPA636slwm0nAPYTQAL1g9DKVq+Dsz8pOAER28q49VREEigk+SmElJIlVQfyImSSVsA6kQgkQEyW1g2KSeqPACQUQxAQGNutUpztjESEnSLCOuXw2AH7Ku2XqpItScWMscT27jg26NvoeCpRiEuAYhN8/MUdjzpWFrt2TqqT9z81JkG2S0eT0moE4xgosbGpMdT9/niH3d8UPcip1fbPzZ1Xgz/CGhoQQQpg6El6BpDMGeLIlX7S9soYx4tGrm8/QUpCsBQO6S0xZBdCAvJkJKpOoxPBFboqxEQpKBkEfDBoJrS9OuOqrSQugQjYli6BpKIFOeJv4kUdFUPVbeu4vYgxZ8ggHaG2JAdx1u03pJOKIQZtkwSpOhAshdP1bdf1C2IQlwjp0HYjZLZdxzaDdzzVjpHUToJ+kqQYQhZhnrTUFhBQBGRKSpdC2sfMSVfGaB3rqhlcSCjWUCCBzEtPBNx2kk7SERjotomBnQjpGGxDkt8gGbz1DIRNEsqhxxgI6Y6leEtAmjjA/hxL5DYk5R3oOoZIcQHFSyprLJkjGTqUKh1VVF0fY6UOuA06yXrhJgKFCs+/BLzdqqYax85J/SYFDaB2PdawpcuF0KVYkkTr9wlUId+7b7F+GJqUGomqKH5ab+ym2BCWozBN1aYUQ0IWAlAacgyO4pwtKYYyDAlZWAHf/hdyFhqsJ2Q48ARRsF1A06OzimNIooAgmSSh1EOlt3+VLDUkO5eQbbCRiESVLRAelwyNyMlyFGYZEWjKLImcjiepGlSYISELK+C/qNrUKaHNQVJQIVgaJOFtJCXNQxKIkipJIgkDHYDjDZIjOlDYJhDx0knrcCtwfIJsWfYnSYYNkJQfWYps/UPZ+ogUfgykqkqn+jZH6ZYZJEfaBLxPoz6gOIZPJTyWFiTDJhAyeHMCSaQGJFUfjY3QScrOHGndWGUDIAC5Qf1qLV5dy6SJU1kQsWgJqC2KESjjONn/xJBDDIetJRktQSUiUWULiNU4uky9n0eTkuWll17aKQv+aK1bVQebtAyoUNYgHQnkDQLaGCglAspopXUjYqwAGNSTrYxRTBRJdQmSSGgBTRDCLswRSPIrI6HVCZKycu5r8WoDw2/Wca3bMjgVyhhFsqEmBjHWW8injDbGMuzWLzng5FBG9GtesC2BQdsilLECMrZ2x1D6rGyPgpNkUktZEkm3TNZJgjSAJJkA2QJsA9QvePsoW0gGcqL8lJokDUoqFKFLsZ3sl54EZflESDFPEoloQMhEgjjBV6YEoPWThA/0sOUPHwCSSDAUC0ErwzZDJ1L4gQSBgEyYIygJwZIwbyRIB4KnJEnpEAipgm0BgBgkAImQbqSQLkWB2geuY9sg9NPco0neR0ahoCQoN55jC23eoL9EqEUgAUNJRHJbVtsY6y38bUj8s26v6ykHuz4e/OhHPpnggykmKksZyJaTTCLlgsQASYRythUz6gtdXJIyjGGOJQZyU9nVDiYcl4Fsa8IKQrygkRZqJ4HZJ504OsXtjRxyI6AQtylqYAcvwjJZro4x1wKE43jMGILytTEhRYzKJEMUJJAlETqRJRDbtKXTAfXzNpLSiNh2kmAS7CODS5LK0mUPeOmErBYMP8WQRCGZiMzJVg49STFIygZIhjRnkERBDHiS8hsQn2UsWmrk9kFcAEjIoKV9hnwkQRoJTJIgkmSi9BHYHgKwLjdIxQcgHTEOmeFXi+IIy4AcRP7l+lknFUPkuvLbl5Dt0AkkAgrLAMKe0KfKZFL2ncn95oLoKlSFkFIGUpzbEzXoZ+ATmQRlCGeUS/NPVzg8ThR18cy6rhUrl9kGtuhw2SRV1rIoSB3JLUMyWJeGDdJarhe2C8GsIRXjZYHT9E2zkOEBeaBJvaSEmNTEJIsarEAgRZtYM1EsI1qKsnW/OcoSIAknl0bowQ3HaM6w3wh9JKblgtetFEGrIBspK2tSIg/bJu2xDViDEmmtxgbdLo/r7sOWkbeasDspLhFQFoiwQwNIyhZqgPolIzjbkC+DpD0CG842QperkdlHIOwkWRC5jmSSloCBj9ZVFGogqf/wyc6SIAUQSdJctmSbCwDJklApSIYNBE+xiVApqA2p0ikfJA1KCoQ4gjSQdSDbMS4i2Yfsy30Q7S8RSPYR4iCdK1HLJuRjHJMTeknVUUQhxtte6BjFMZLvAlsXqUZkuDSkqgVrdSMB0rYkgKxJiqv0yrtbdp8JJY8VRcFvzgc3NBQOQFUjELYeL7OUTfGphRqkONvDGMrLHF8DaTQGssPLKNt6/rdq/e/T+pZxKnVicjwhrpsI3UYSaibaUhNrZnWlegmUlyqtUXpSxZDi7swYXc+g413fUo237Zi337DO0RjHNrA/cCf7d+xWncDczyh8cKgJ2N+CpGwg4pAlzAkk4V/4rDfINjRHUL2MgpDOAbINxZhD8KR0QBzCLqSTDD3ajN6GNmW3fMgmlmxjMKwrjjQ/5GTCSITiDPvZcNQ4rFO+JFjKhuQKIPvMqbGVbdlnqA6hOESb7dyGJIJPaKTbcFsB9SvZ1ZXXL6vGWcY/lavQNTMVmxqsefypVlL7tFTcmjE6/hSiywSeqotskfbXc+dVVX2h6uTs2tZaOaqPcqP8qL46xr4Wra+V5kf0js5afnOXEptJkwTgjaY2KHnkso+VS8UUx4thU7OVNkf1UXuUH9Ud02KUb/VW3pWYNlayqyuu/6XLvM3QFgHQNmWbVuF5SIB02WDYBOLgo2RSMUDYlA+KhGIl3V4DkuJquD2DgHRGLKUbKa421Mt7ygeQzBIAoaQiSRPtEkkKSSgjyZ2IRmdI8761zhIRQ+hHSGeGnCTNZujATVmDU9aRY8XbTopPciYCyXrAuhAxlgYRcbBuUF4MkDjU1YRi2fgkCdjv44wk2mROb49ac4UcS+5NVBveSlFH5dbXSgeM6nX9gINLSw9PZT99dSelLjW0pIFQgZZJtkwNktLQSGYpxyAGrW8o5QbJiHUckXUCmZMtN0iCDUdpjpUZV1frnhxLQ6F2HROOnSj8jAg4lmTuS5JA6Gxku20kwYajtOinsduYUW4Qo3rmjxUjN0hGnwkAgdDZyCRGbpAM3m0RWSeALZ2uFhoHvkI+0jaCkxrS9QpCukGYL1SYT4RsNj6A+plLQOYsGxAJaVCPIMUMkGRj4CdHfVkvuDpmZTyZ4ySQkH0kQetiSCIZYkhCGRqRMORTkg6BaOZmKPN3VCheIJDUAAFIoO0viUgiDAlYtiCJBIJJkpKUJZkC1oHoP2yCzHGlpF9UOY4Aurp97rIA9ZMJa5PiCiYkxVJkK2WCZPAtNyrVq/wQCAIRR2nqsygKfFXSi9iH6mQmSl5lCm1udTZeNo5W2uTAR5uyKCCAJnEgWw3ht8XQsg0lCuOpiI0mKa9AkXeQ+7WeJARGDajEIJmz0cqsI2JajsiJwbZ6KxlKLjESMdTZsARCs0QkyuZAC0WFGUNq5Fanor34NnV9/wAkeTUNmg+AZNjBYegLmwifQkImMCQbmQAkAsm2djhJJIG2AZUGkYAAxWQAOQ5QOAgIHCDRNhSTpWNSeG0TCfIJvv1j8BQn+Cpum9C2URoEygeB0hFw/dwm4L6S2ATpAgdg4wNIImn7kiUAxzje0rCexDIAJGQoPHSSIVP4qRKyGVKu0BMgCXFEkZgvNGEBYzp2p3QB2VB04/98UGjREjlRMdYsKcWQiMwRXxAqOIA1RESlbdP98sNTKjrn6545yKSRURoBlQaRORwlCTQxWMPHY/ra9hxBIOJaLktqIlL87xzC7wJ3Li3X/WiPKqkqRm4Td2mMbOpS7Ry7PuQ1eNy2CUTc6nYoloBKHFUfSlNFCd82u14iIqYgstSRU2hfBa8WKBQEkmRSXTYyRYwtInTxokDKxghvOwCQ4oWIH0jk+o0tIduc4kH9JEVGHVkhG5uUXwdvChCF7NTEtLootWcfJKEYNJKSzLbrQLxAMvgE2dILAkl+kiukuaLh8pgSLEWFzLrqiLCeYoxqi5DfyD7RGoN09ZEIuF1SNiEd8iU941KSikDIBIROQJJIirfeSgYLlTjKd7wYv4sqUnlBKsizoURSJUByBaBEUiWChxLJ0MksRYXdSjLzJE2t8JkgGRwb2XKtJKkzVxn/xrLGB8qRVHaYpB07+6pLEuQQjiZpEbwVkqGTWbZcK8nMkzQVsVbIoU0yeJJ2hW6FZOjkStn6WkkO/S3XSjL7NvnzEBE7NoEQjaQgaaClCO9kg2JkwnoiQBIJgvQknbRujB68QPYBJAO2E21nZJ3ZB0Z8GsSqrYYrMNSTuQDEqg4kCSQCJEOu0IHgCMJ1QzoOkA1IDSQpiQjOcck2CJKwLtHokETDUXpGonk2PEImVQrAtgCO8LIJfXWhWIgXIBBIkoXYZBDwrXQ3pbjoQIkkyCFEhd1K8ti+O4pJiQ9I1COVgJMRYyywUd94N5dj8LfeSd2CeJw4RtJcnJTb4THfHYylhAk90CTdVnrbfJCQ1EEjNDLaVWFfEkfNgKUhU5YYArYdExwhGyApQDqRYCmAiFgiJG03ICANSCoNAsixFAOQRAIkM7IPSAQS2KDRm9gEgOTAR0A2ZFtSOnXrm5AUIyvb1onQSSKB8XNMAhBSvHKjmxMUlQhxGFwVHc+2jiRJmGtRABWGpEsAAAy7SURBVMh1CHOkJIEkqSwpHUYK3fvMoLj1Aup6S9K2+KImAXgg0ZmKFTqw0gdk23FA1oGhBCAXog0pylkHspQjOAAhVShDNAZSinK2AdiXgLgSS6yZ84sBYFBPiutJYIWUERyAkCqUIRoDKUUZKzhgpa0A5ZUcgOAARF0ZylkHspQjOKCxJYGsA1kqQBkbO6UOCAZs5wOGismc7YJJNgQqDpIGpRuQRMNJh+D+hdSA4khCrURcSGTbMbRufyAhEQ0IUQM9864HJAAEkBRgSMBcImBdQpJIMnwAEtKTIDsJZKsDUgVG7GpfIqDzm3ySCgy7lSCkIkF1BdISOhFQFpBjsyQgmyglSYaeJEnrSbb9WZIEaT5L0hKQVzzgF1YTqUAiwpaQJAhAoQgJZCljwFkHELYKmRhAijJECyy9zQuEflQFAOEA84+ys5bLsMWF5AgnXRVVQgIEkCURP8oGMOQaPXgifhQHYBjDlTqyPakrUFeTglVpUm/vxvVcmOsDWaoOBMoGMOQaPXgifhQHYBjDlTpa+67GjMRTutsBEP0MbGYbaKRsCERcGfxvcBHQgUCxQLIujZYq/EfoPkjMk5TfQESkgc3gKTYZuoonIDgfcEkchSwRPMMPJAJJb0QGsuVDUp+JAL/ZLfTihObcpyE97KYvkuqBcB8ZkA5xksySJJIhNgFIlmEDErLNZRBEG0tKBxDxlu6TQCFdLvHWa9UgEoEEhM6mTAoiAIkRH6QTnl+XifKLSWISoLIFxbKxs0xqaFx3jIVYqSoh2CfQuhCSmadsADmWIIDQpRDNj+KgVGMhsar3yW5djYSkwSxp3aDsFp6ElrNsIb96VKnY0ZjMEBBvUFLQ60YCWR+Utg2KkaQASGdgo26ZDb999l+wbNGt9IQXLRB+MsflCW+47FFp22hi7lT/a23HKKf2KABqnyAFGI6xNBofII9hzrBuWG8BEFBctieKFP/BvQ8GQ80jEQEySRIkQyZJWSt0OgZi5bM/SbckII2KRaAgQtpnFIoniYKIOJLyE2SWCZAN+YkEgpQUpIXtNjIgXx5nIX/mCEtS0YL15HES4g2qTkYich8RB/lzXfMJsoVCCF0xhH4EUkiikEzmhVGZCCRxhUAydNuk9ewjCVI2JIUEqMz6sMSaiSS6ujTqnkl1AJkgIBCkAMPHSMOFbc62YV1YdYwmYF/qo9oVgwVU7a5ADQJ3UOdExRzdz5iuuhu0gP32tYxJODrGvRNYpzHyDtp1v3cmxnHHR1JPU7rTsCQZB5iEWOnxCQzN7Z9ssXl/UhrgOgmShHSBgOsmySQlWQLhIyhpAC1fAGIbu5aU5fYoSRKpkdmGLMB15ZJk2CSlo9ElOUSSr5CdgIixpPUVYNS1L0lL8lEoWl1t2CYJ+5KMJF05bJJQhkokAsmaiCQoyzIHScIp/GFRJQTi7iaqdkeLt6OTEtXI0aAicAdYFVPXN6Wi5rWeAAKIDZHkCFputTxezPF8bTvHizme7/5Wv92WdtytbHnLlmuludUY0873P6Lngyoj5f2lAyIJJMNOgCRQEJIULAUdGqRsycJSIG0DJBVnQLpBJBBkhnqCx5aBRs+SVOwxIFrjGPrbfhMRbRQgHKNSUnHAgM8xtgECwSdJkiAZtkTIHJsaPfuSnAZpG0iwpErBXNaCF9NYCIkTlGo9XvifwunX/k9farUNxJjUPkfQcqvlWjF+fq6A6xKL4mq1WGtb1BRgOQoo2ZYIXyvNtWi5Vra8Zcutlva1uCu+Nrata9lyrTTXouVWy9ZveVd8bazrtWi5Vrb8qGx9rbyzvjbOkz+pq26hvekdnBqZbaBQYOaApE4oWKbg6eoozBFQjpjWdt3gHCuv60iFZZLDOsmwSYLMun2GTPkgmLcUYFCxQIxDNslGz1KmxiSdyLwIj0kCSUULjy8R4pJgCbVL6QypUjqQQKgaVAZsG61NQHwGTnCq1Z7RLlT/ay6G7miRly3gsUHJchSiVvha+1gxqNOVeqWDy7VBM4R/iNLaEC23Wg4jCDT1WsnGtmy51dK+FnfF18a2dS1brpXmWrTcatn6Le+Kr411vRYt18qWH5Wtr5V31tfGAT6AJ7R487M7daAi5tmfixJr3S7L1t5OLQD5zVOxBCmg0SVtORZKlrZJRmw+4BFR9oVNND7LVT5FJh25w1hCTaGAJKB6kF6HlcKmOMqGpKBgQknSbVg3kiJEuUQrExh17M+gGAMjEuuaarUeV1RdVX1FrXRVDSnbPrmbsXhcBhq7leZatNxq2fotGx+xMFbgc5ojHiH4acGeQeNoExGcCuUwJM0hEm0RKqPIEpDMsMJcqGRDIpKsAUdpOYcW/igI0VGMSHOIRLE5EwMJWA24YC5UMjuQk6wBR2k5h5YDXBKioxiR5jBM4Y4ix8gjS7oUZVojVEaBNskSJ0sKrREqKWCQKI1mCJXU5zDCt0tJdgLyAUxIEklHtjkCSIoOW7fRusuGXEiEwNCzbZ3BJREZkA3FULJF5nKbOhEolrRPPBoQqgMkAARCFtIUhtwuQVI6BjIRA5ukdMInJ4KhJ3HKsmSrTA3sXwmse/Ji9EI1+nqvkBdqjUp6TXevInIUGikCUKI1QmUUWQKSGVaYC5VsSESSNeAYGq8geVuyV4N6dyIyrTO3HIOJS2YHvjaGaGPIlhuRIklGjErJoc/tpcZnR/xXIlAU25gaJE+K/kmNA8TRYzQnn/2CLMUAA2muQd7WoW90+0nVMFyTbcxw+0mTxIr+tRAn9Abd7ZD2MeZKmiRgSaqkdEtAHOSjJCUhWBJyIwFIBJRDhi6jABC+kAydijJavpAduhpK1kMCbiNJV0bLW2cbI4NUmwIpaR5QSTi5DsMalubvTdTqzPBtrlE3V9JKfOwPj7uFx0q4hCjQPykk0c5D5mAPRAtipJCSEDj0eftzPZNE9AdL/8Ej3g2lJEDF20T3JGVSgMKGgFJmETyaZM7I9TDwtTaUrI/GiIq4locs+w1ztqFku4VMRbnEQEKp9ed6GPhaG0rWHWcpM3JrW0K1LI0cY80sPC/yQokhKS3HSFG2bbScddFRz9IwZ7QxLbfaHsZYQ/TnmNayNMyViegISTt9FCRh21cty6QKQz37UsSgiQNIogBlJ7jtJL0Qcpx5ygJslzqpW7ZQ1eATMZDUiSUJpOuqtZDywzZVZsgTeiszi+BwH6R2YVp6oXqJWB8dCmUkARollGy3kNmwGEgotf5cDwNfa0PJuuMsZUZubUuolmUCqwS8FUqSAMlrdHb5KOGfbAyTGcpMja+V5kRH5iqfSarIcImIsOb6aJJto+UYUVCJQWo5x1BsK63LjEzVoLTWJ1UMGthjnWE7Bk2ipNFyVAQbTiIyG+7OxjBqQbUy0CSKofS2HaliEGg5yiKgEoPU2qtjxvQ5LCnKiyZiVCTVtJ3MBwgSGNqtzuAIxqIlILuWRUlIZgzqqRECIDnit04MfkTo7l9qE+c2ocTwMTRIx0mZPD4PLDUjtN1iyDG8dGADiqF0x4xK66Ijc1WMSarIcImIsOZ20CTbRsNdLvozQsyvpSrhFVYozWjRcqtl67e8K7421vVatFwrW96y5VZL+1rcFV8b29a1bLlWmmvRcqtl67c8ns9+43gxx/O5rrE6ptAi8sf9JDkEYJ1kI2Vrf5pLkE7IIkKXlgSFIvxSkv0hFSNJEmRGaiSZfYkY+AjCbRnWjwZO+uQxe5Cj0nqLu+JrY9u6li3XSnMtWm61bP2W9gl/R983S0lCm98i5QbhVL6fzEBJ6ooJLZoMAlpCCJtA+ChJsSTFCwRICpYQ10qKI1L4LCEd4iRhEJSkyiEgKwOn0nrPwO3q4B+FyIOFS3JezJ8Jp/L9ZAa0z5o3zETSEvKiG30+td9XZvOJQKLiVoEUp7oScBsEGkmzA1102LRyCvfFDLyM5HTbcWqVRr5S8irhVL6fzMDKxQho5/7/7Jkx0gFBEIV75oZ/8J+ATCojcgUOoJxGJhLJZAJFQrBK8fUuy7JUCbCr3uo3Pd0zU9OeejW7Fpid83lsMc0Hyz5EnkmRZbxlPeOmq2oMzCmoD3KLeY8OP/IW1wUHIKsJAxGxhWDeWsSnsVkW017HDJMxXfVioBeuTlsvPXpzA3/WTd8V3eQVVpQBF2NEjo6Av6CiBausVxgYM3kEChYLEQHK9tO2RXcJZGJADHyPgQ1bN9HkDl+wO+H6KBP93+U2fRcxTiYGfoKBun2JDlqclhVdKlyfyIIh/u6IJicTA2Lg/Qz4I+vg0TYPhXta4LfMk1NfTgyIgc8wMGObBofnHl9qT4XLQr/H/mflAsjEgBh4PwOrJEn+0N762VZHAAAA//+wxFoxAAAABklEQVQDAFOSiR6BA7ndAAAAAElFTkSuQmCC"},3828:function(){},43968:function(d){function v(e,r){this.v=e,this.k=r}d.exports=v,d.exports.__esModule=!0,d.exports.default=d.exports},20943:function(d,v,e){var r=e(35859);function i(){var l,c,f=typeof Symbol=="function"?Symbol:{},o=f.iterator||"@@iterator",h=f.toStringTag||"@@toStringTag";function u(k,R,A,P){var M=R&&R.prototype instanceof x?R:x,B=Object.create(M.prototype);return r(B,"_invoke",function(N,K,H){var W,ae,ne,oe=0,q=H||[],X=!1,V={p:0,n:0,v:l,a:se,f:se.bind(l,4),d:function(J,le){return W=J,ae=0,ne=l,V.n=le,a}};function se(ee,J){for(ae=ee,ne=J,c=0;!X&&oe&&!le&&c<q.length;c++){var le,z=q[c],j=V.p,ie=z[2];ee>3?(le=ie===J)&&(ne=z[(ae=z[4])?5:(ae=3,3)],z[4]=z[5]=l):z[0]<=j&&((le=ee<2&&j<z[1])?(ae=0,V.v=J,V.n=z[1]):j<ie&&(le=ee<3||z[0]>J||J>ie)&&(z[4]=ee,z[5]=J,V.n=ie,ae=0))}if(le||ee>1)return a;throw X=!0,J}return function(ee,J,le){if(oe>1)throw TypeError("Generator is already running");for(X&&J===1&&se(J,le),ae=J,ne=le;(c=ae<2?l:ne)||!X;){W||(ae?ae<3?(ae>1&&(V.n=-1),se(ae,ne)):V.n=ne:V.v=ne);try{if(oe=2,W){if(ae||(ee="next"),c=W[ee]){if(!(c=c.call(W,ne)))throw TypeError("iterator result is not an object");if(!c.done)return c;ne=c.value,ae<2&&(ae=0)}else ae===1&&(c=W.return)&&c.call(W),ae<2&&(ne=TypeError("The iterator does not provide a '"+ee+"' method"),ae=1);W=l}else if((c=(X=V.n<0)?ne:N.call(K,V))!==a)break}catch(z){W=l,ae=1,ne=z}finally{oe=1}}return{value:c,done:X}}}(k,A,P),!0),B}var a={};function x(){}function p(){}function y(){}c=Object.getPrototypeOf;var m=[][o]?c(c([][o]())):(r(c={},o,function(){return this}),c),b=y.prototype=x.prototype=Object.create(m);function S(k){return Object.setPrototypeOf?Object.setPrototypeOf(k,y):(k.__proto__=y,r(k,h,"GeneratorFunction")),k.prototype=Object.create(b),k}return p.prototype=y,r(b,"constructor",y),r(y,"constructor",p),p.displayName="GeneratorFunction",r(y,h,"GeneratorFunction"),r(b),r(b,h,"Generator"),r(b,o,function(){return this}),r(b,"toString",function(){return"[object Generator]"}),(d.exports=i=function(){return{w:u,m:S}},d.exports.__esModule=!0,d.exports.default=d.exports)()}d.exports=i,d.exports.__esModule=!0,d.exports.default=d.exports},36490:function(d,v,e){var r=e(66142);function i(l,c,f,o,h){var u=r(l,c,f,o,h);return u.next().then(function(a){return a.done?a.value:u.next()})}d.exports=i,d.exports.__esModule=!0,d.exports.default=d.exports},66142:function(d,v,e){var r=e(20943),i=e(70715);function l(c,f,o,h,u){return new i(r().w(c,f,o,h),u||Promise)}d.exports=l,d.exports.__esModule=!0,d.exports.default=d.exports},70715:function(d,v,e){var r=e(43968),i=e(35859);function l(c,f){function o(u,a,x,p){try{var y=c[u](a),m=y.value;return m instanceof r?f.resolve(m.v).then(function(b){o("next",b,x,p)},function(b){o("throw",b,x,p)}):f.resolve(m).then(function(b){y.value=b,x(y)},function(b){return o("throw",b,x,p)})}catch(b){p(b)}}var h;this.next||(i(l.prototype),i(l.prototype,typeof Symbol=="function"&&Symbol.asyncIterator||"@asyncIterator",function(){return this})),i(this,"_invoke",function(u,a,x){function p(){return new f(function(y,m){o(u,x,y,m)})}return h=h?h.then(p,p):p()},!0)}d.exports=l,d.exports.__esModule=!0,d.exports.default=d.exports},35859:function(d){function v(e,r,i,l){var c=Object.defineProperty;try{c({},"",{})}catch(f){c=0}d.exports=v=function(o,h,u,a){function x(p,y){v(o,p,function(m){return this._invoke(p,y,m)})}h?c?c(o,h,{value:u,enumerable:!a,configurable:!a,writable:!a}):o[h]=u:(x("next",0),x("throw",1),x("return",2))},d.exports.__esModule=!0,d.exports.default=d.exports,v(e,r,i,l)}d.exports=v,d.exports.__esModule=!0,d.exports.default=d.exports},27419:function(d){function v(e){var r=Object(e),i=[];for(var l in r)i.unshift(l);return function c(){for(;i.length;)if((l=i.pop())in r)return c.value=l,c.done=!1,c;return c.done=!0,c}}d.exports=v,d.exports.__esModule=!0,d.exports.default=d.exports},68037:function(d,v,e){var r=e(43968),i=e(20943),l=e(36490),c=e(66142),f=e(70715),o=e(27419),h=e(88562);function u(){"use strict";var a=i(),x=a.m(u),p=(Object.getPrototypeOf?Object.getPrototypeOf(x):x.__proto__).constructor;function y(S){var k=typeof S=="function"&&S.constructor;return!!k&&(k===p||(k.displayName||k.name)==="GeneratorFunction")}var m={throw:1,return:2,break:3,continue:3};function b(S){var k,R;return function(A){k||(k={stop:function(){return R(A.a,2)},catch:function(){return A.v},abrupt:function(M,B){return R(A.a,m[M],B)},delegateYield:function(M,B,N){return k.resultName=B,R(A.d,h(M),N)},finish:function(M){return R(A.f,M)}},R=function(M,B,N){A.p=k.prev,A.n=k.next;try{return M(B,N)}finally{k.next=A.n}}),k.resultName&&(k[k.resultName]=A.v,k.resultName=void 0),k.sent=A.v,k.next=A.n;try{return S.call(this,k)}finally{A.p=k.prev,A.n=k.next}}}return(d.exports=u=function(){return{wrap:function(R,A,P,M){return a.w(b(R),A,P,M&&M.reverse())},isGeneratorFunction:y,mark:a.m,awrap:function(R,A){return new r(R,A)},AsyncIterator:f,async:function(R,A,P,M,B){return(y(A)?c:l)(b(R),A,P,M,B)},keys:o,values:h}},d.exports.__esModule=!0,d.exports.default=d.exports)()}d.exports=u,d.exports.__esModule=!0,d.exports.default=d.exports},88562:function(d,v,e){var r=e(33906).default;function i(l){if(l!=null){var c=l[typeof Symbol=="function"&&Symbol.iterator||"@@iterator"],f=0;if(c)return c.call(l);if(typeof l.next=="function")return l;if(!isNaN(l.length))return{next:function(){return l&&f>=l.length&&(l=void 0),{value:l&&l[f++],done:!l}}}}throw new TypeError(r(l)+" is not iterable")}d.exports=i,d.exports.__esModule=!0,d.exports.default=d.exports},33906:function(d){function v(e){"@babel/helpers - typeof";return d.exports=v=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(r){return typeof r}:function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},d.exports.__esModule=!0,d.exports.default=d.exports,v(e)}d.exports=v,d.exports.__esModule=!0,d.exports.default=d.exports},329:function(d,v,e){var r=e(68037)();d.exports=r;try{regeneratorRuntime=r}catch(i){typeof globalThis=="object"?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}},92310:function(d,v){var e,r;(function(){"use strict";var i={}.hasOwnProperty;function l(){for(var o="",h=0;h<arguments.length;h++){var u=arguments[h];u&&(o=f(o,c(u)))}return o}function c(o){if(typeof o=="string"||typeof o=="number")return o;if(typeof o!="object")return"";if(Array.isArray(o))return l.apply(null,o);if(o.toString!==Object.prototype.toString&&!o.toString.toString().includes("[native code]"))return o.toString();var h="";for(var u in o)i.call(o,u)&&o[u]&&(h=f(h,u));return h}function f(o,h){return h?o?o+" "+h:o+h:o}d.exports?(l.default=l,d.exports=l):(e=[],r=function(){return l}.apply(v,e),r!==void 0&&(d.exports=r))})()},63335:function(d,v,e){"use strict";var r=e(55327),i=e(40593),l=TypeError;d.exports=function(c){if(r(c))return c;throw new l(i(c)+" is not a function")}},6086:function(d,v,e){"use strict";var r=e(39812),i=e(40593),l=TypeError;d.exports=function(c){if(r(c))return c;throw new l(i(c)+" is not a constructor")}},42683:function(d,v,e){"use strict";var r=e(2786).has;d.exports=function(i){return r(i),i}},557:function(d,v,e){"use strict";var r=e(55327),i=String,l=TypeError;d.exports=function(c){if(typeof c=="object"||r(c))return c;throw new l("Can't set "+i(c)+" as a prototype")}},17442:function(d,v,e){"use strict";var r=e(19691).has;d.exports=function(i){return r(i),i}},79606:function(d){"use strict";var v=TypeError;d.exports=function(e){if(typeof e=="string")return e;throw new v("Argument is not a string")}},63619:function(d,v,e){"use strict";var r=e(42530).has;d.exports=function(i){return r(i),i}},18888:function(d,v,e){"use strict";var r=e(91385).has;d.exports=function(i){return r(i),i}},5978:function(d,v,e){"use strict";var r=e(89945),i=e(94237),l=e(80666),c=e(80449),f=e(63335),o=e(4112),h=e(53776),u=e(59893),a=u("asyncDispose"),x=u("dispose"),p=i([].push),y=function(b,S){if(S==="async-dispose"){var k=h(b,a);return k!==void 0?k:(k=h(b,x),function(){r(k,this)})}return h(b,x)},m=function(b,S,k){return arguments.length<3&&!o(b)&&(k=f(y(c(b),S))),k===void 0?function(){}:l(k,b)};d.exports=function(b,S,k,R){var A;if(arguments.length<4){if(o(S)&&k==="sync-dispose")return;A=m(S,k)}else A=m(void 0,k,R);p(b.stack,A)}},81181:function(d,v,e){"use strict";var r=e(59893),i=e(20132),l=e(37691).f,c=r("unscopables"),f=Array.prototype;f[c]===void 0&&l(f,c,{configurable:!0,value:i(null)}),d.exports=function(o){f[c][o]=!0}},52216:function(d,v,e){"use strict";var r=e(13764).charAt;d.exports=function(i,l,c){return l+(c?r(i,l).length:1)}},56472:function(d,v,e){"use strict";var r=e(16332),i=TypeError;d.exports=function(l,c){if(r(c,l))return l;throw new i("Incorrect invocation")}},1674:function(d,v,e){"use strict";var r=e(31946),i=String,l=TypeError;d.exports=function(c){if(c===void 0||r(c))return c;throw new l(i(c)+" is not an object or undefined")}},80449:function(d,v,e){"use strict";var r=e(31946),i=String,l=TypeError;d.exports=function(c){if(r(c))return c;throw new l(i(c)+" is not an object")}},27270:function(d,v,e){"use strict";var r=e(97607),i=TypeError;d.exports=function(l){if(r(l)==="Uint8Array")return l;throw new i("Argument is not an Uint8Array")}},3737:function(d){"use strict";d.exports=typeof ArrayBuffer!="undefined"&&typeof DataView!="undefined"},78244:function(d,v,e){"use strict";var r=e(37758),i=e(29076),l=TypeError;d.exports=r(ArrayBuffer.prototype,"byteLength","get")||function(c){if(i(c)!=="ArrayBuffer")throw new l("ArrayBuffer expected");return c.byteLength}},93683:function(d,v,e){"use strict";var r=e(94237),i=e(78244),l=r(ArrayBuffer.prototype.slice);d.exports=function(c){if(i(c)!==0)return!1;try{return l(c,0,0),!1}catch(f){return!0}}},51424:function(d,v,e){"use strict";var r=e(3338);d.exports=r(function(){if(typeof ArrayBuffer=="function"){var i=new ArrayBuffer(8);Object.isExtensible(i)&&Object.defineProperty(i,"a",{value:8})}})},39760:function(d,v,e){"use strict";var r=e(92916),i=e(94237),l=e(37758),c=e(24225),f=e(93683),o=e(78244),h=e(39311),u=e(80426),a=r.structuredClone,x=r.ArrayBuffer,p=r.DataView,y=r.TypeError,m=Math.min,b=x.prototype,S=p.prototype,k=i(b.slice),R=l(b,"resizable","get"),A=l(b,"maxByteLength","get"),P=i(S.getInt8),M=i(S.setInt8);d.exports=(u||h)&&function(B,N,K){var H=o(B),W=N===void 0?H:c(N),ae=!R||!R(B),ne;if(f(B))throw new y("ArrayBuffer is detached");if(u&&(B=a(B,{transfer:[B]}),H===W&&(K||ae)))return B;if(H>=W&&(!K||ae))ne=k(B,0,W);else{var oe=K&&!ae&&A?{maxByteLength:A(B)}:void 0;ne=new x(W,oe);for(var q=new p(B),X=new p(ne),V=m(W,H),se=0;se<V;se++)M(X,se,P(q,se))}return u||h(B),ne}},58261:function(d,v,e){"use strict";var r=e(3737),i=e(35454),l=e(92916),c=e(55327),f=e(31946),o=e(32621),h=e(97607),u=e(40593),a=e(68151),x=e(2291),p=e(64110),y=e(16332),m=e(53456),b=e(58218),S=e(59893),k=e(6145),R=e(94844),A=R.enforce,P=R.get,M=l.Int8Array,B=M&&M.prototype,N=l.Uint8ClampedArray,K=N&&N.prototype,H=M&&m(M),W=B&&m(B),ae=Object.prototype,ne=l.TypeError,oe=S("toStringTag"),q=k("TYPED_ARRAY_TAG"),X="TypedArrayConstructor",V=r&&!!b&&h(l.opera)!=="Opera",se=!1,ee,J,le,z={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},j={BigInt64Array:8,BigUint64Array:8},ie=function(It){if(!f(It))return!1;var Zt=h(It);return Zt==="DataView"||o(z,Zt)||o(j,Zt)},me=function(ht){var It=m(ht);if(f(It)){var Zt=P(It);return Zt&&o(Zt,X)?Zt[X]:me(It)}},Se=function(ht){if(!f(ht))return!1;var It=h(ht);return o(z,It)||o(j,It)},Ie=function(ht){if(Se(ht))return ht;throw new ne("Target is not a typed array")},He=function(ht){if(c(ht)&&(!b||y(H,ht)))return ht;throw new ne(u(ht)+" is not a typed array constructor")},je=function(ht,It,Zt,Rt){if(i){if(Zt)for(var ar in z){var $e=l[ar];if($e&&o($e.prototype,ht))try{delete $e.prototype[ht]}catch(gt){try{$e.prototype[ht]=It}catch(Mt){}}}(!W[ht]||Zt)&&x(W,ht,Zt?It:V&&B[ht]||It,Rt)}},Dt=function(ht,It,Zt){var Rt,ar;if(i){if(b){if(Zt){for(Rt in z)if(ar=l[Rt],ar&&o(ar,ht))try{delete ar[ht]}catch($e){}}if(!H[ht]||Zt)try{return x(H,ht,Zt?It:V&&H[ht]||It)}catch($e){}else return}for(Rt in z)ar=l[Rt],ar&&(!ar[ht]||Zt)&&x(ar,ht,It)}};for(ee in z)J=l[ee],le=J&&J.prototype,le?A(le)[X]=J:V=!1;for(ee in j)J=l[ee],le=J&&J.prototype,le&&(A(le)[X]=J);if((!V||!c(H)||H===Function.prototype)&&(H=function(){throw new ne("Incorrect invocation")},V))for(ee in z)l[ee]&&b(l[ee],H);if((!V||!W||W===ae)&&(W=H.prototype,V))for(ee in z)l[ee]&&b(l[ee].prototype,W);if(V&&m(K)!==W&&b(K,W),i&&!o(W,oe)){se=!0,p(W,oe,{configurable:!0,get:function(){return f(this)?this[q]:void 0}});for(ee in z)l[ee]&&a(l[ee],q,ee)}d.exports={NATIVE_ARRAY_BUFFER_VIEWS:V,TYPED_ARRAY_TAG:se&&q,aTypedArray:Ie,aTypedArrayConstructor:He,exportTypedArrayMethod:je,exportTypedArrayStaticMethod:Dt,getTypedArrayConstructor:me,isView:ie,isTypedArray:Se,TypedArray:H,TypedArrayPrototype:W}},91669:function(d,v,e){"use strict";var r=e(92916),i=e(94237),l=e(35454),c=e(3737),f=e(8090),o=e(68151),h=e(64110),u=e(66477),a=e(3338),x=e(56472),p=e(56902),y=e(61578),m=e(24225),b=e(14894),S=e(61618),k=e(53456),R=e(58218),A=e(80689).f,P=e(75202),M=e(71698),B=e(94573),N=e(94844),K=f.PROPER,H=f.CONFIGURABLE,W="ArrayBuffer",ae="DataView",ne="prototype",oe="Wrong length",q="Wrong index",X=N.getterFor(W),V=N.getterFor(ae),se=N.set,ee=r[W],J=ee,le=J&&J[ne],z=r[ae],j=z&&z[ne],ie=Object.prototype,me=r.Array,Se=r.RangeError,Ie=i(P),He=i([].reverse),je=S.pack,Dt=S.unpack,ht=function(Ge){return[Ge&255]},It=function(Ge){return[Ge&255,Ge>>8&255]},Zt=function(Ge){return[Ge&255,Ge>>8&255,Ge>>16&255,Ge>>24&255]},Rt=function(Ge){return Ge[3]<<24|Ge[2]<<16|Ge[1]<<8|Ge[0]},ar=function(Ge){return je(b(Ge),23,4)},$e=function(Ge){return je(Ge,52,8)},gt=function(Ge,We,Xe){h(Ge[ne],We,{configurable:!0,get:function(){return Xe(this)[We]}})},Mt=function(Ge,We,Xe,ut){var pt=V(Ge),or=m(Xe),tr=!!ut;if(or+We>pt.byteLength)throw new Se(q);var Me=pt.bytes,tt=or+pt.byteOffset,Yt=M(Me,tt,tt+We);return tr?Yt:He(Yt)},et=function(Ge,We,Xe,ut,pt,or){var tr=V(Ge),Me=m(Xe),tt=ut(+pt),Yt=!!or;if(Me+We>tr.byteLength)throw new Se(q);for(var Ot=tr.bytes,zt=Me+tr.byteOffset,Ht=0;Ht<We;Ht++)Ot[zt+Ht]=tt[Yt?Ht:We-Ht-1]};if(!c)J=function(We){x(this,le);var Xe=m(We);se(this,{type:W,bytes:Ie(me(Xe),0),byteLength:Xe}),l||(this.byteLength=Xe,this.detached=!1)},le=J[ne],z=function(We,Xe,ut){x(this,j),x(We,le);var pt=X(We),or=pt.byteLength,tr=p(Xe);if(tr<0||tr>or)throw new Se("Wrong offset");if(ut=ut===void 0?or-tr:y(ut),tr+ut>or)throw new Se(oe);se(this,{type:ae,buffer:We,byteLength:ut,byteOffset:tr,bytes:pt.bytes}),l||(this.buffer=We,this.byteLength=ut,this.byteOffset=tr)},j=z[ne],l&&(gt(J,"byteLength",X),gt(z,"buffer",V),gt(z,"byteLength",V),gt(z,"byteOffset",V)),u(j,{getInt8:function(We){return Mt(this,1,We)[0]<<24>>24},getUint8:function(We){return Mt(this,1,We)[0]},getInt16:function(We){var Xe=Mt(this,2,We,arguments.length>1?arguments[1]:!1);return(Xe[1]<<8|Xe[0])<<16>>16},getUint16:function(We){var Xe=Mt(this,2,We,arguments.length>1?arguments[1]:!1);return Xe[1]<<8|Xe[0]},getInt32:function(We){return Rt(Mt(this,4,We,arguments.length>1?arguments[1]:!1))},getUint32:function(We){return Rt(Mt(this,4,We,arguments.length>1?arguments[1]:!1))>>>0},getFloat32:function(We){return Dt(Mt(this,4,We,arguments.length>1?arguments[1]:!1),23)},getFloat64:function(We){return Dt(Mt(this,8,We,arguments.length>1?arguments[1]:!1),52)},setInt8:function(We,Xe){et(this,1,We,ht,Xe)},setUint8:function(We,Xe){et(this,1,We,ht,Xe)},setInt16:function(We,Xe){et(this,2,We,It,Xe,arguments.length>2?arguments[2]:!1)},setUint16:function(We,Xe){et(this,2,We,It,Xe,arguments.length>2?arguments[2]:!1)},setInt32:function(We,Xe){et(this,4,We,Zt,Xe,arguments.length>2?arguments[2]:!1)},setUint32:function(We,Xe){et(this,4,We,Zt,Xe,arguments.length>2?arguments[2]:!1)},setFloat32:function(We,Xe){et(this,4,We,ar,Xe,arguments.length>2?arguments[2]:!1)},setFloat64:function(We,Xe){et(this,8,We,$e,Xe,arguments.length>2?arguments[2]:!1)}});else{var ft=K&&ee.name!==W;if(!a(function(){ee(1)})||!a(function(){new ee(-1)})||a(function(){return new ee,new ee(1.5),new ee(NaN),ee.length!==1||ft&&!H})){J=function(We){return x(this,le),new ee(m(We))},J[ne]=le;for(var ot=A(ee),Je=0,Ne;ot.length>Je;)(Ne=ot[Je++])in J||o(J,Ne,ee[Ne]);le.constructor=J}else ft&&H&&o(ee,"name",W);R&&k(j)!==ie&&R(j,ie);var ye=new z(new J(2)),ke=i(j.setInt8);ye.setInt8(0,2147483648),ye.setInt8(1,2147483649),(ye.getInt8(0)||!ye.getInt8(1))&&u(j,{setInt8:function(We,Xe){ke(this,We,Xe<<24>>24)},setUint8:function(We,Xe){ke(this,We,Xe<<24>>24)}},{unsafe:!0})}B(J,W),B(z,ae),d.exports={ArrayBuffer:J,DataView:z}},92670:function(d,v,e){"use strict";var r=e(94029),i=e(51981),l=e(82762),c=e(84233),f=Math.min;d.exports=[].copyWithin||function(h,u){var a=r(this),x=l(a),p=i(h,x),y=i(u,x),m=arguments.length>2?arguments[2]:void 0,b=f((m===void 0?x:i(m,x))-y,x-p),S=1;for(y<p&&p<y+b&&(S=-1,y+=b-1,p+=b-1);b-- >0;)y in a?a[p]=a[y]:c(a,p),p+=S,y+=S;return a}},75202:function(d,v,e){"use strict";var r=e(94029),i=e(51981),l=e(82762);d.exports=function(f){for(var o=r(this),h=l(o),u=arguments.length,a=i(u>1?arguments[1]:void 0,h),x=u>2?arguments[2]:void 0,p=x===void 0?h:i(x,h);p>a;)o[a++]=f;return o}},59594:function(d,v,e){"use strict";var r=e(90560).forEach,i=e(45601),l=i("forEach");d.exports=l?[].forEach:function(f){return r(this,f,arguments.length>1?arguments[1]:void 0)}},32278:function(d,v,e){"use strict";var r=e(80666),i=e(94237),l=e(94029),c=e(39812),f=e(69034),o=e(85428),h=e(10731),u=e(26006),a=e(53776),x=e(65911),p=e(55174),y=e(59893),m=e(57975),b=e(55266).toArray,S=y("asyncIterator"),k=i(p("Array","values")),R=i(k([]).next),A=function(){return new P(this)},P=function(M){this.iterator=k(M)};P.prototype.next=function(){return R(this.iterator)},d.exports=function(B){var N=this,K=arguments.length,H=K>1?arguments[1]:void 0,W=K>2?arguments[2]:void 0;return new(x("Promise"))(function(ae){var ne=l(B);H!==void 0&&(H=r(H,W));var oe=a(ne,S),q=oe?void 0:u(ne)||A,X=c(N)?new N:[],V=oe?f(ne,oe):new m(h(o(ne,q)));ae(b(V,H,X))})}},69478:function(d,v,e){"use strict";var r=e(82762);d.exports=function(i,l,c){for(var f=0,o=arguments.length>2?c:r(l),h=new i(o);o>f;)h[f]=l[f++];return h}},60255:function(d,v,e){"use strict";var r=e(80666),i=e(89945),l=e(94029),c=e(46319),f=e(345),o=e(39812),h=e(82762),u=e(69392),a=e(85428),x=e(26006),p=Array;d.exports=function(m){var b=l(m),S=o(this),k=arguments.length,R=k>1?arguments[1]:void 0,A=R!==void 0;A&&(R=r(R,k>2?arguments[2]:void 0));var P=x(b),M=0,B,N,K,H,W,ae;if(P&&!(this===p&&f(P)))for(H=a(b,P),W=H.next,N=S?new this:[];!(K=i(W,H)).done;M++)ae=A?c(H,R,[K.value,M],!0):K.value,u(N,M,ae);else for(B=h(b),N=S?new this(B):p(B);B>M;M++)ae=A?R(b[M],M):b[M],u(N,M,ae);return N.length=M,N}},33940:function(d,v,e){"use strict";var r=e(80666),i=e(94237),l=e(1835),c=e(94029),f=e(82762),o=e(2786),h=o.Map,u=o.get,a=o.has,x=o.set,p=i([].push);d.exports=function(m){for(var b=c(this),S=l(b),k=r(m,arguments.length>1?arguments[1]:void 0),R=new h,A=f(S),P=0,M,B;A>P;P++)B=S[P],M=k(B,P,b),a(R,M)?p(u(R,M),B):x(R,M,[B]);return R}},36444:function(d,v,e){"use strict";var r=e(80666),i=e(94237),l=e(1835),c=e(94029),f=e(17818),o=e(82762),h=e(20132),u=e(69478),a=Array,x=i([].push);d.exports=function(p,y,m,b){for(var S=c(p),k=l(S),R=r(y,m),A=h(null),P=o(k),M=0,B,N,K;P>M;M++)K=k[M],N=f(R(K,M,S)),N in A?x(A[N],K):A[N]=[K];if(b&&(B=b(S),B!==a))for(N in A)A[N]=u(B,A[N]);return A}},22999:function(d,v,e){"use strict";var r=e(80524),i=e(51981),l=e(82762),c=function(f){return function(o,h,u){var a=r(o),x=l(a),p=i(u,x),y;if(f&&h!==h){for(;x>p;)if(y=a[p++],y!==y)return!0}else for(;x>p;p++)if((f||p in a)&&a[p]===h)return f||p||0;return!f&&-1}};d.exports={includes:c(!0),indexOf:c(!1)}},53279:function(d,v,e){"use strict";var r=e(80666),i=e(1835),l=e(94029),c=e(82762),f=function(o){var h=o===1;return function(u,a,x){for(var p=l(u),y=i(p),m=c(y),b=r(a,x),S,k;m-- >0;)if(S=y[m],k=b(S,m,p),k)switch(o){case 0:return S;case 1:return m}return h?-1:void 0}};d.exports={findLast:f(0),findLastIndex:f(1)}},90560:function(d,v,e){"use strict";var r=e(80666),i=e(94237),l=e(1835),c=e(94029),f=e(82762),o=e(81427),h=i([].push),u=function(a){var x=a===1,p=a===2,y=a===3,m=a===4,b=a===6,S=a===7,k=a===5||b;return function(R,A,P,M){for(var B=c(R),N=l(B),K=f(N),H=r(A,P),W=0,ae=M||o,ne=x?ae(R,K):p||S?ae(R,0):void 0,oe,q;K>W;W++)if((k||W in N)&&(oe=N[W],q=H(oe,W,B),a))if(x)ne[W]=q;else if(q)switch(a){case 3:return!0;case 5:return oe;case 6:return W;case 2:h(ne,oe)}else switch(a){case 4:return!1;case 7:h(ne,oe)}return b?-1:y||m?m:ne}};d.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)}},55009:function(d,v,e){"use strict";var r=e(13743),i=e(80524),l=e(56902),c=e(82762),f=e(45601),o=Math.min,h=[].lastIndexOf,u=!!h&&1/[1].lastIndexOf(1,-0)<0,a=f("lastIndexOf"),x=u||!a;d.exports=x?function(y){if(u)return r(h,this,arguments)||0;var m=i(this),b=c(m),S=b-1;for(arguments.length>1&&(S=o(S,l(arguments[1]))),S<0&&(S=b+S);S>=0;S--)if(S in m&&m[S]===y)return S||0;return-1}:h},17480:function(d,v,e){"use strict";var r=e(3338),i=e(59893),l=e(46573),c=i("species");d.exports=function(f){return l>=51||!r(function(){var o=[],h=o.constructor={};return h[c]=function(){return{foo:1}},o[f](Boolean).foo!==1})}},45601:function(d,v,e){"use strict";var r=e(3338);d.exports=function(i,l){var c=[][i];return!!c&&r(function(){c.call(null,l||function(){return 1},1)})}},16370:function(d,v,e){"use strict";var r=e(63335),i=e(94029),l=e(1835),c=e(82762),f=TypeError,o=function(h){return function(u,a,x,p){var y=i(u),m=l(y),b=c(y);r(a);var S=h?b-1:0,k=h?-1:1;if(x<2)for(;;){if(S in m){p=m[S],S+=k;break}if(S+=k,h?S<0:b<=S)throw new f("Reduce of empty array with no initial value")}for(;h?S>=0:b>S;S+=k)S in m&&(p=a(p,m[S],S,y));return p}};d.exports={left:o(!1),right:o(!0)}},39428:function(d,v,e){"use strict";var r=e(35454),i=e(18589),l=TypeError,c=Object.getOwnPropertyDescriptor,f=r&&!function(){if(this!==void 0)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(o){return o instanceof TypeError}}();d.exports=f?function(o,h){if(i(o)&&!c(o,"length").writable)throw new l("Cannot set read only .length");return o.length=h}:function(o,h){return o.length=h}},71698:function(d,v,e){"use strict";var r=e(51981),i=e(82762),l=e(69392),c=Array,f=Math.max;d.exports=function(o,h,u){for(var a=i(o),x=r(h,a),p=r(u===void 0?a:u,a),y=c(f(p-x,0)),m=0;x<p;x++,m++)l(y,m,o[x]);return y.length=m,y}},30867:function(d,v,e){"use strict";var r=e(94237);d.exports=r([].slice)},63668:function(d,v,e){"use strict";var r=e(71698),i=Math.floor,l=function(o,h){var u=o.length,a=i(u/2);return u<8?c(o,h):f(o,l(r(o,0,a),h),l(r(o,a),h),h)},c=function(o,h){for(var u=o.length,a=1,x,p;a<u;){for(p=a,x=o[a];p&&h(o[p-1],x)>0;)o[p]=o[--p];p!==a++&&(o[p]=x)}return o},f=function(o,h,u,a){for(var x=h.length,p=u.length,y=0,m=0;y<x||m<p;)o[y+m]=y<x&&m<p?a(h[y],u[m])<=0?h[y++]:u[m++]:y<x?h[y++]:u[m++];return o};d.exports=l},34487:function(d,v,e){"use strict";var r=e(18589),i=e(39812),l=e(31946),c=e(59893),f=c("species"),o=Array;d.exports=function(h){var u;return r(h)&&(u=h.constructor,i(u)&&(u===o||r(u.prototype))?u=void 0:l(u)&&(u=u[f],u===null&&(u=void 0))),u===void 0?o:u}},81427:function(d,v,e){"use strict";var r=e(34487);d.exports=function(i,l){return new(r(i))(l===0?0:l)}},85903:function(d,v,e){"use strict";var r=e(82762);d.exports=function(i,l){for(var c=r(i),f=new l(c),o=0;o<c;o++)f[o]=i[c-o-1];return f}},65621:function(d,v,e){"use strict";var r=e(94237),i=e(63335),l=e(4112),c=e(82762),f=e(94029),o=e(2786),h=e(95037),u=o.Map,a=o.has,x=o.set,p=r([].push);d.exports=function(m){var b=f(this),S=c(b),k=[],R=new u,A=l(m)?function(N){return N}:i(m),P,M,B;for(P=0;P<S;P++)M=b[P],B=A(M),a(R,B)||x(R,B,M);return h(R,function(N){p(k,N)}),k}},82041:function(d,v,e){"use strict";var r=e(82762),i=e(56902),l=RangeError;d.exports=function(c,f,o,h){var u=r(c),a=i(o),x=a<0?u+a:a;if(x>=u||x<0)throw new l("Incorrect index");for(var p=new f(u),y=0;y<u;y++)p[y]=y===x?h:c[y];return p}},57975:function(d,v,e){"use strict";var r=e(89945),i=e(80449),l=e(20132),c=e(53776),f=e(66477),o=e(94844),h=e(65911),u=e(14052),a=e(25587),x=h("Promise"),p="AsyncFromSyncIterator",y=o.set,m=o.getterFor(p),b=function(k,R,A){var P=k.done;x.resolve(k.value).then(function(M){R(a(M,P))},A)},S=function(R){R.type=p,y(this,R)};S.prototype=f(l(u),{next:function(){var R=m(this);return new x(function(A,P){var M=i(r(R.next,R.iterator));b(M,A,P)})},return:function(){var k=m(this).iterator;return new x(function(R,A){var P=c(k,"return");if(P===void 0)return R(a(void 0,!0));var M=i(r(P,k));b(M,R,A)})}}),d.exports=S},28255:function(d,v,e){"use strict";var r=e(89945),i=e(65911),l=e(53776);d.exports=function(c,f,o,h){try{var u=l(c,"return");if(u)return i("Promise").resolve(r(u,c)).then(function(){f(o)},function(a){h(a)})}catch(a){return h(a)}f(o)}},31342:function(d,v,e){"use strict";var r=e(89945),i=e(80734),l=e(80449),c=e(20132),f=e(68151),o=e(66477),h=e(59893),u=e(94844),a=e(65911),x=e(53776),p=e(14052),y=e(25587),m=e(67996),b=a("Promise"),S=h("toStringTag"),k="AsyncIteratorHelper",R="WrapForValidAsyncIterator",A=u.set,P=function(N){var K=!N,H=u.getterFor(N?R:k),W=function(ae){var ne=i(function(){return H(ae)}),oe=ne.error,q=ne.value;return oe||K&&q.done?{exit:!0,value:oe?b.reject(q):b.resolve(y(void 0,!0))}:{exit:!1,value:q}};return o(c(p),{next:function(){var ne=W(this),oe=ne.value;if(ne.exit)return oe;var q=i(function(){return l(oe.nextHandler(b))}),X=q.error,V=q.value;return X&&(oe.done=!0),X?b.reject(V):b.resolve(V)},return:function(){var ae=W(this),ne=ae.value;if(ae.exit)return ne;ne.done=!0;var oe=ne.iterator,q,X,V=i(function(){if(ne.inner)try{m(ne.inner.iterator,"normal")}catch(se){return m(oe,"throw",se)}return x(oe,"return")});return q=X=V.value,V.error?b.reject(X):q===void 0?b.resolve(y(void 0,!0)):(V=i(function(){return r(q,oe)}),X=V.value,V.error?b.reject(X):N?b.resolve(X):b.resolve(X).then(function(se){return l(se),y(void 0,!0)}))}})},M=P(!0),B=P(!1);f(B,S,"Async Iterator Helper"),d.exports=function(N,K){var H=function(ae,ne){ne?(ne.iterator=ae.iterator,ne.next=ae.next):ne=ae,ne.type=K?R:k,ne.nextHandler=N,ne.counter=0,ne.done=!1,A(this,ne)};return H.prototype=K?M:B,H}},34535:function(d,v,e){"use strict";var r=e(89945),i=e(41586),l=function(c,f){return[f,c]};d.exports=function(){return r(i,this,l)}},55266:function(d,v,e){"use strict";var r=e(89945),i=e(63335),l=e(80449),c=e(31946),f=e(66434),o=e(65911),h=e(10731),u=e(28255),a=function(x){var p=x===0,y=x===1,m=x===2,b=x===3;return function(S,k,R){l(S);var A=k!==void 0;(A||!p)&&i(k);var P=h(S),M=o("Promise"),B=P.iterator,N=P.next,K=0;return new M(function(H,W){var ae=function(oe){u(B,W,oe,W)},ne=function(){try{if(A)try{f(K)}catch(oe){ae(oe)}M.resolve(l(r(N,B))).then(function(oe){try{if(l(oe).done)p?(R.length=K,H(R)):H(b?!1:m||void 0);else{var q=oe.value;try{if(A){var X=k(q,K),V=function(se){if(y)ne();else if(m)se?ne():u(B,H,!1,W);else if(p)try{R[K++]=se,ne()}catch(ee){ae(ee)}else se?u(B,H,b||q,W):ne()};c(X)?M.resolve(X).then(V,ae):V(X)}else R[K++]=q,ne()}catch(se){ae(se)}}}catch(se){W(se)}},W)}catch(oe){W(oe)}};ne()})}};d.exports={toArray:a(0),forEach:a(1),every:a(2),some:a(3),find:a(4)}},41586:function(d,v,e){"use strict";var r=e(89945),i=e(63335),l=e(80449),c=e(31946),f=e(10731),o=e(31342),h=e(25587),u=e(28255),a=o(function(x){var p=this,y=p.iterator,m=p.mapper;return new x(function(b,S){var k=function(A){p.done=!0,S(A)},R=function(A){u(y,k,A,k)};x.resolve(l(r(p.next,y))).then(function(A){try{if(l(A).done)p.done=!0,b(h(void 0,!0));else{var P=A.value;try{var M=m(P,p.counter++),B=function(N){b(h(N,!1))};c(M)?x.resolve(M).then(B,R):B(M)}catch(N){R(N)}}}catch(N){k(N)}},k)})});d.exports=function(p){return l(this),i(p),new a(f(this),{mapper:p})}},14052:function(d,v,e){"use strict";var r=e(92916),i=e(77398),l=e(55327),c=e(20132),f=e(53456),o=e(2291),h=e(59893),u=e(16697),a="USE_FUNCTION_CONSTRUCTOR",x=h("asyncIterator"),p=r.AsyncIterator,y=i.AsyncIteratorPrototype,m,b;if(y)m=y;else if(l(p))m=p.prototype;else if(i[a]||r[a])try{b=f(f(f(Function("return async function*(){}()")()))),f(b)===Object.prototype&&(m=b)}catch(S){}m?u&&(m=c(m)):m={},l(m[x])||o(m,x,function(){return this}),d.exports=m},80025:function(d,v,e){"use strict";var r=e(89945),i=e(31342);d.exports=i(function(){return r(this.next,this.iterator)},!0)},66244:function(d){"use strict";var v="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",e=v+"+/",r=v+"-_",i=function(l){for(var c={},f=0;f<64;f++)c[l.charAt(f)]=f;return c};d.exports={i2c:e,c2i:i(e),i2cUrl:r,c2iUrl:i(r)}},46319:function(d,v,e){"use strict";var r=e(80449),i=e(67996);d.exports=function(l,c,f,o){try{return o?c(r(f)[0],f[1]):c(f)}catch(h){i(l,"throw",h)}}},35221:function(d,v,e){"use strict";var r=e(59893),i=r("iterator"),l=!1;try{var c=0,f={next:function(){return{done:!!c++}},return:function(){l=!0}};f[i]=function(){return this},Array.from(f,function(){throw 2})}catch(o){}d.exports=function(o,h){try{if(!h&&!l)return!1}catch(x){return!1}var u=!1;try{var a={};a[i]=function(){return{next:function(){return{done:u=!0}}}},o(a)}catch(x){}return u}},29076:function(d,v,e){"use strict";var r=e(94237),i=r({}.toString),l=r("".slice);d.exports=function(c){return l(i(c),8,-1)}},97607:function(d,v,e){"use strict";var r=e(68527),i=e(55327),l=e(29076),c=e(59893),f=c("toStringTag"),o=Object,h=l(function(){return arguments}())==="Arguments",u=function(a,x){try{return a[x]}catch(p){}};d.exports=r?l:function(a){var x,p,y;return a===void 0?"Undefined":a===null?"Null":typeof(p=u(x=o(a),f))=="string"?p:h?l(x):(y=l(x))==="Object"&&i(x.callee)?"Arguments":y}},72846:function(d,v,e){"use strict";var r=e(80666),i=e(89945),l=e(63335),c=e(6086),f=e(4112),o=e(62003),h=[].push;d.exports=function(a){var x=arguments.length,p=x>1?arguments[1]:void 0,y,m,b,S;return c(this),y=p!==void 0,y&&l(p),f(a)?new this:(m=[],y?(b=0,S=r(p,x>2?arguments[2]:void 0),o(a,function(k){i(h,m,S(k,b++))})):o(a,h,{that:m}),new this(m))}},48800:function(d,v,e){"use strict";var r=e(30867);d.exports=function(){return new this(r(arguments))}},40942:function(d,v,e){"use strict";var r=e(20132),i=e(64110),l=e(66477),c=e(80666),f=e(56472),o=e(4112),h=e(62003),u=e(24019),a=e(25587),x=e(51996),p=e(35454),y=e(2074).fastKey,m=e(94844),b=m.set,S=m.getterFor;d.exports={getConstructor:function(k,R,A,P){var M=k(function(W,ae){f(W,B),b(W,{type:R,index:r(null),first:void 0,last:void 0,size:0}),p||(W.size=0),o(ae)||h(ae,W[P],{that:W,AS_ENTRIES:A})}),B=M.prototype,N=S(R),K=function(W,ae,ne){var oe=N(W),q=H(W,ae),X,V;return q?q.value=ne:(oe.last=q={index:V=y(ae,!0),key:ae,value:ne,previous:X=oe.last,next:void 0,removed:!1},oe.first||(oe.first=q),X&&(X.next=q),p?oe.size++:W.size++,V!=="F"&&(oe.index[V]=q)),W},H=function(W,ae){var ne=N(W),oe=y(ae),q;if(oe!=="F")return ne.index[oe];for(q=ne.first;q;q=q.next)if(q.key===ae)return q};return l(B,{clear:function(){for(var ae=this,ne=N(ae),oe=ne.index,q=ne.first;q;)q.removed=!0,q.previous&&(q.previous=q.previous.next=void 0),delete oe[q.index],q=q.next;ne.first=ne.last=void 0,p?ne.size=0:ae.size=0},delete:function(W){var ae=this,ne=N(ae),oe=H(ae,W);if(oe){var q=oe.next,X=oe.previous;delete ne.index[oe.index],oe.removed=!0,X&&(X.next=q),q&&(q.previous=X),ne.first===oe&&(ne.first=q),ne.last===oe&&(ne.last=X),p?ne.size--:ae.size--}return!!oe},forEach:function(ae){for(var ne=N(this),oe=c(ae,arguments.length>1?arguments[1]:void 0),q;q=q?q.next:ne.first;)for(oe(q.value,q.key,this);q&&q.removed;)q=q.previous},has:function(ae){return!!H(this,ae)}}),l(B,A?{get:function(ae){var ne=H(this,ae);return ne&&ne.value},set:function(ae,ne){return K(this,ae===0?0:ae,ne)}}:{add:function(ae){return K(this,ae=ae===0?0:ae,ae)}}),p&&i(B,"size",{configurable:!0,get:function(){return N(this).size}}),M},setStrong:function(k,R,A){var P=R+" Iterator",M=S(R),B=S(P);u(k,R,function(N,K){b(this,{type:P,target:N,state:M(N),kind:K,last:void 0})},function(){for(var N=B(this),K=N.kind,H=N.last;H&&H.removed;)H=H.previous;return!N.target||!(N.last=H=H?H.next:N.state.first)?(N.target=void 0,a(void 0,!0)):a(K==="keys"?H.key:K==="values"?H.value:[H.key,H.value],!1)},A?"entries":"values",!A,!0),x(R)}}},39656:function(d,v,e){"use strict";var r=e(94237),i=e(66477),l=e(2074).getWeakData,c=e(56472),f=e(80449),o=e(4112),h=e(31946),u=e(62003),a=e(90560),x=e(32621),p=e(94844),y=p.set,m=p.getterFor,b=a.find,S=a.findIndex,k=r([].splice),R=0,A=function(B){return B.frozen||(B.frozen=new P)},P=function(){this.entries=[]},M=function(B,N){return b(B.entries,function(K){return K[0]===N})};P.prototype={get:function(B){var N=M(this,B);if(N)return N[1]},has:function(B){return!!M(this,B)},set:function(B,N){var K=M(this,B);K?K[1]=N:this.entries.push([B,N])},delete:function(B){var N=S(this.entries,function(K){return K[0]===B});return~N&&k(this.entries,N,1),!!~N}},d.exports={getConstructor:function(B,N,K,H){var W=B(function(q,X){c(q,ae),y(q,{type:N,id:R++,frozen:void 0}),o(X)||u(X,q[H],{that:q,AS_ENTRIES:K})}),ae=W.prototype,ne=m(N),oe=function(q,X,V){var se=ne(q),ee=l(f(X),!0);return ee===!0?A(se).set(X,V):ee[se.id]=V,q};return i(ae,{delete:function(q){var X=ne(this);if(!h(q))return!1;var V=l(q);return V===!0?A(X).delete(q):V&&x(V,X.id)&&delete V[X.id]},has:function(X){var V=ne(this);if(!h(X))return!1;var se=l(X);return se===!0?A(V).has(X):se&&x(se,V.id)}}),i(ae,K?{get:function(X){var V=ne(this);if(h(X)){var se=l(X);return se===!0?A(V).get(X):se?se[V.id]:void 0}},set:function(X,V){return oe(this,X,V)}}:{add:function(X){return oe(this,X,!0)}}),W}}},48059:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(94237),c=e(20865),f=e(2291),o=e(2074),h=e(62003),u=e(56472),a=e(55327),x=e(4112),p=e(31946),y=e(3338),m=e(35221),b=e(94573),S=e(25576);d.exports=function(k,R,A){var P=k.indexOf("Map")!==-1,M=k.indexOf("Weak")!==-1,B=P?"set":"add",N=i[k],K=N&&N.prototype,H=N,W={},ae=function(ee){var J=l(K[ee]);f(K,ee,ee==="add"?function(z){return J(this,z===0?0:z),this}:ee==="delete"?function(le){return M&&!p(le)?!1:J(this,le===0?0:le)}:ee==="get"?function(z){return M&&!p(z)?void 0:J(this,z===0?0:z)}:ee==="has"?function(z){return M&&!p(z)?!1:J(this,z===0?0:z)}:function(z,j){return J(this,z===0?0:z,j),this})},ne=c(k,!a(N)||!(M||K.forEach&&!y(function(){new N().entries().next()})));if(ne)H=A.getConstructor(R,k,P,B),o.enable();else if(c(k,!0)){var oe=new H,q=oe[B](M?{}:-0,1)!==oe,X=y(function(){oe.has(1)}),V=m(function(ee){new N(ee)}),se=!M&&y(function(){for(var ee=new N,J=5;J--;)ee[B](J,J);return!ee.has(-0)});V||(H=R(function(ee,J){u(ee,K);var le=S(new N,ee,H);return x(J)||h(J,le[B],{that:le,AS_ENTRIES:P}),le}),H.prototype=K,K.constructor=H),(X||se)&&(ae("delete"),ae("has"),P&&ae("get")),(se||q)&&ae(B),M&&K.clear&&delete K.clear}return W[k]=H,r({global:!0,constructor:!0,forced:H!==N},W),b(H,k),M||A.setStrong(H,k,P),H}},32754:function(d,v,e){"use strict";e(34941),e(55410);var r=e(65911),i=e(20132),l=e(31946),c=Object,f=TypeError,o=r("Map"),h=r("WeakMap"),u=function(){this.object=null,this.symbol=null,this.primitives=null,this.objectsByIndex=i(null)};u.prototype.get=function(x,p){return this[x]||(this[x]=p())},u.prototype.next=function(x,p,y){var m=y?this.objectsByIndex[x]||(this.objectsByIndex[x]=new h):this.primitives||(this.primitives=new o),b=m.get(p);return b||m.set(p,b=new u),b};var a=new u;d.exports=function(){var x=a,p=arguments.length,y,m;for(y=0;y<p;y++)l(m=arguments[y])&&(x=x.next(y,m,!0));if(this===c&&x===a)throw new f("Composite keys must contain a non-primitive component");for(y=0;y<p;y++)l(m=arguments[y])||(x=x.next(y,m,!1));return x}},24538:function(d,v,e){"use strict";var r=e(32621),i=e(48662),l=e(71256),c=e(37691);d.exports=function(f,o,h){for(var u=i(o),a=c.f,x=l.f,p=0;p<u.length;p++){var y=u[p];!r(f,y)&&!(h&&r(h,y))&&a(f,y,x(o,y))}}},86266:function(d,v,e){"use strict";var r=e(59893),i=r("match");d.exports=function(l){var c=/./;try{"/./"[l](c)}catch(f){try{return c[i]=!1,"/./"[l](c)}catch(o){}}return!1}},4870:function(d,v,e){"use strict";var r=e(3338);d.exports=!r(function(){function i(){}return i.prototype.constructor=null,Object.getPrototypeOf(new i)!==i.prototype})},95994:function(d,v,e){"use strict";var r=e(94237),i=e(95955),l=e(69905),c=/"/g,f=r("".replace);d.exports=function(o,h,u,a){var x=l(i(o)),p="<"+h;return u!==""&&(p+=" "+u+'="'+f(l(a),c,"&quot;")+'"'),p+">"+x+"</"+h+">"}},25587:function(d){"use strict";d.exports=function(v,e){return{value:v,done:e}}},68151:function(d,v,e){"use strict";var r=e(35454),i=e(37691),l=e(35012);d.exports=r?function(c,f,o){return i.f(c,f,l(1,o))}:function(c,f,o){return c[f]=o,c}},35012:function(d){"use strict";d.exports=function(v,e){return{enumerable:!(v&1),configurable:!(v&2),writable:!(v&4),value:e}}},69392:function(d,v,e){"use strict";var r=e(17818),i=e(37691),l=e(35012);d.exports=function(c,f,o){var h=r(f);h in c?i.f(c,h,l(0,o)):c[h]=o}},32494:function(d,v,e){"use strict";var r=e(94237),i=e(3338),l=e(85571).start,c=RangeError,f=isFinite,o=Math.abs,h=Date.prototype,u=h.toISOString,a=r(h.getTime),x=r(h.getUTCDate),p=r(h.getUTCFullYear),y=r(h.getUTCHours),m=r(h.getUTCMilliseconds),b=r(h.getUTCMinutes),S=r(h.getUTCMonth),k=r(h.getUTCSeconds);d.exports=i(function(){return u.call(new Date(-50000000000001))!=="0385-07-25T07:06:39.999Z"})||!i(function(){u.call(new Date(NaN))})?function(){if(!f(a(this)))throw new c("Invalid time value");var A=this,P=p(A),M=m(A),B=P<0?"-":P>9999?"+":"";return B+l(o(P),B?6:4,0)+"-"+l(S(A)+1,2,0)+"-"+l(x(A),2,0)+"T"+l(y(A),2,0)+":"+l(b(A),2,0)+":"+l(k(A),2,0)+"."+l(M,3,0)+"Z"}:u},77119:function(d,v,e){"use strict";var r=e(80449),i=e(44759),l=TypeError;d.exports=function(c){if(r(this),c==="string"||c==="default")c="string";else if(c!=="number")throw new l("Incorrect hint");return i(this,c)}},64110:function(d,v,e){"use strict";var r=e(86528),i=e(37691);d.exports=function(l,c,f){return f.get&&r(f.get,c,{getter:!0}),f.set&&r(f.set,c,{setter:!0}),i.f(l,c,f)}},2291:function(d,v,e){"use strict";var r=e(55327),i=e(37691),l=e(86528),c=e(29539);d.exports=function(f,o,h,u){u||(u={});var a=u.enumerable,x=u.name!==void 0?u.name:o;if(r(h)&&l(h,x,u),u.global)a?f[o]=h:c(o,h);else{try{u.unsafe?f[o]&&(a=!0):delete f[o]}catch(p){}a?f[o]=h:i.f(f,o,{value:h,enumerable:!1,configurable:!u.nonConfigurable,writable:!u.nonWritable})}return f}},66477:function(d,v,e){"use strict";var r=e(2291);d.exports=function(i,l,c){for(var f in l)r(i,f,l[f],c);return i}},29539:function(d,v,e){"use strict";var r=e(92916),i=Object.defineProperty;d.exports=function(l,c){try{i(r,l,{value:c,configurable:!0,writable:!0})}catch(f){r[l]=c}return c}},84233:function(d,v,e){"use strict";var r=e(40593),i=TypeError;d.exports=function(l,c){if(!delete l[c])throw new i("Cannot delete property "+r(c)+" of "+r(l))}},35454:function(d,v,e){"use strict";var r=e(3338);d.exports=!r(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})},39311:function(d,v,e){"use strict";var r=e(92916),i=e(11270),l=e(80426),c=r.structuredClone,f=r.ArrayBuffer,o=r.MessageChannel,h=!1,u,a,x,p;if(l)h=function(y){c(y,{transfer:[y]})};else if(f)try{o||(u=i("worker_threads"),u&&(o=u.MessageChannel)),o&&(a=new o,x=new f(2),p=function(y){a.port1.postMessage(null,[y])},x.byteLength===2&&(p(x),x.byteLength===0&&(h=p)))}catch(y){}d.exports=h},81766:function(d){"use strict";var v=typeof document=="object"&&document.all,e=typeof v=="undefined"&&v!==void 0;d.exports={all:v,IS_HTMLDDA:e}},86060:function(d,v,e){"use strict";var r=e(92916),i=e(31946),l=r.document,c=i(l)&&i(l.createElement);d.exports=function(f){return c?l.createElement(f):{}}},66434:function(d){"use strict";var v=TypeError,e=9007199254740991;d.exports=function(r){if(r>e)throw v("Maximum allowed index exceeded");return r}},52109:function(d){"use strict";d.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},66749:function(d){"use strict";d.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},9518:function(d,v,e){"use strict";var r=e(86060),i=r("span").classList,l=i&&i.constructor&&i.constructor.prototype;d.exports=l===Object.prototype?void 0:l},78177:function(d,v,e){"use strict";var r=e(66011),i=r.match(/firefox\/(\d+)/i);d.exports=!!i&&+i[1]},66994:function(d,v,e){"use strict";var r=e(91821),i=e(90946);d.exports=!r&&!i&&typeof window=="object"&&typeof document=="object"},90843:function(d){"use strict";d.exports=typeof Bun=="function"&&Bun&&typeof Bun.version=="string"},91821:function(d){"use strict";d.exports=typeof Deno=="object"&&Deno&&typeof Deno.version=="object"},17687:function(d,v,e){"use strict";var r=e(66011);d.exports=/MSIE|Trident/.test(r)},1908:function(d,v,e){"use strict";var r=e(66011);d.exports=/ipad|iphone|ipod/i.test(r)&&typeof Pebble!="undefined"},70695:function(d,v,e){"use strict";var r=e(66011);d.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},90946:function(d,v,e){"use strict";var r=e(92916),i=e(29076);d.exports=i(r.process)==="process"},44914:function(d,v,e){"use strict";var r=e(66011);d.exports=/web0s(?!.*chrome)/i.test(r)},66011:function(d){"use strict";d.exports=typeof navigator!="undefined"&&String(navigator.userAgent)||""},46573:function(d,v,e){"use strict";var r=e(92916),i=e(66011),l=r.process,c=r.Deno,f=l&&l.versions||c&&c.version,o=f&&f.v8,h,u;o&&(h=o.split("."),u=h[0]>0&&h[0]<4?1:+(h[0]+h[1])),!u&&i&&(h=i.match(/Edge\/(\d+)/),(!h||h[1]>=74)&&(h=i.match(/Chrome\/(\d+)/),h&&(u=+h[1]))),d.exports=u},19684:function(d,v,e){"use strict";var r=e(66011),i=r.match(/AppleWebKit\/(\d+)\./);d.exports=!!i&&+i[1]},46678:function(d){"use strict";d.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},80739:function(d,v,e){"use strict";var r=e(94237),i=Error,l=r("".replace),c=function(h){return String(new i(h).stack)}("zxcasd"),f=/\n\s*at [^:]*:[^\n]*/,o=f.test(c);d.exports=function(h,u){if(o&&typeof h=="string"&&!i.prepareStackTrace)for(;u--;)h=l(h,f,"");return h}},61888:function(d,v,e){"use strict";var r=e(68151),i=e(80739),l=e(25406),c=Error.captureStackTrace;d.exports=function(f,o,h,u){l&&(c?c(f,o):r(f,"stack",i(h,u)))}},25406:function(d,v,e){"use strict";var r=e(3338),i=e(35012);d.exports=!r(function(){var l=new Error("a");return"stack"in l?(Object.defineProperty(l,"stack",i(1,7)),l.stack!==7):!0})},13367:function(d,v,e){"use strict";var r=e(35454),i=e(3338),l=e(80449),c=e(7825),f=Error.prototype.toString,o=i(function(){if(r){var h=Object.create(Object.defineProperty({},"name",{get:function(){return this===h}}));if(f.call(h)!=="true")return!0}return f.call({message:1,name:2})!=="2: 1"||f.call({})!=="Error"});d.exports=o?function(){var u=l(this),a=c(u.name,"Error"),x=c(u.message);return a?x?a+": "+x:a:x}:f},94488:function(d,v,e){"use strict";var r=e(92916),i=e(71256).f,l=e(68151),c=e(2291),f=e(29539),o=e(24538),h=e(20865);d.exports=function(u,a){var x=u.target,p=u.global,y=u.stat,m,b,S,k,R,A;if(p?b=r:y?b=r[x]||f(x,{}):b=(r[x]||{}).prototype,b)for(S in a){if(R=a[S],u.dontCallGetSet?(A=i(b,S),k=A&&A.value):k=b[S],m=h(p?S:x+(y?".":"#")+S,u.forced),!m&&k!==void 0){if(typeof R==typeof k)continue;o(R,k)}(u.sham||k&&k.sham)&&l(R,"sham",!0),c(b,S,R,u)}}},3338:function(d){"use strict";d.exports=function(v){try{return!!v()}catch(e){return!0}}},8662:function(d,v,e){"use strict";e(44001);var r=e(34114),i=e(2291),l=e(88736),c=e(3338),f=e(59893),o=e(68151),h=f("species"),u=RegExp.prototype;d.exports=function(a,x,p,y){var m=f(a),b=!c(function(){var A={};return A[m]=function(){return 7},""[a](A)!==7}),S=b&&!c(function(){var A=!1,P=/a/;return a==="split"&&(P={},P.constructor={},P.constructor[h]=function(){return P},P.flags="",P[m]=/./[m]),P.exec=function(){return A=!0,null},P[m](""),!A});if(!b||!S||p){var k=r(/./[m]),R=x(m,""[a],function(A,P,M,B,N){var K=r(A),H=P.exec;return H===l||H===u.exec?b&&!N?{done:!0,value:k(P,M,B)}:{done:!0,value:K(M,P,B)}:{done:!1}});i(String.prototype,a,R[0]),i(u,m,R[1])}y&&o(u[m],"sham",!0)}},3372:function(d,v,e){"use strict";var r=e(18589),i=e(82762),l=e(66434),c=e(80666),f=function(o,h,u,a,x,p,y,m){for(var b=x,S=0,k=y?c(y,m):!1,R,A;S<a;)S in u&&(R=k?k(u[S],S,h):u[S],p>0&&r(R)?(A=i(R),b=f(o,h,R,A,b,p-1)-1):(l(b+1),o[b]=R),b++),S++;return b};d.exports=f},13247:function(d,v,e){"use strict";var r=e(3338);d.exports=!r(function(){return Object.isExtensible(Object.preventExtensions({}))})},13743:function(d,v,e){"use strict";var r=e(40486),i=Function.prototype,l=i.apply,c=i.call;d.exports=typeof Reflect=="object"&&Reflect.apply||(r?c.bind(l):function(){return c.apply(l,arguments)})},80666:function(d,v,e){"use strict";var r=e(34114),i=e(63335),l=e(40486),c=r(r.bind);d.exports=function(f,o){return i(f),o===void 0?f:l?c(f,o):function(){return f.apply(o,arguments)}}},40486:function(d,v,e){"use strict";var r=e(3338);d.exports=!r(function(){var i=function(){}.bind();return typeof i!="function"||i.hasOwnProperty("prototype")})},4645:function(d,v,e){"use strict";var r=e(94237),i=e(63335),l=e(31946),c=e(32621),f=e(30867),o=e(40486),h=Function,u=r([].concat),a=r([].join),x={},p=function(y,m,b){if(!c(x,m)){for(var S=[],k=0;k<m;k++)S[k]="a["+k+"]";x[m]=h("C,a","return new C("+a(S,",")+")")}return x[m](y,b)};d.exports=o?h.bind:function(m){var b=i(this),S=b.prototype,k=f(arguments,1),R=function(){var P=u(k,f(arguments));return this instanceof R?p(b,P.length,P):b.apply(m,P)};return l(S)&&(R.prototype=S),R}},89945:function(d,v,e){"use strict";var r=e(40486),i=Function.prototype.call;d.exports=r?i.bind(i):function(){return i.apply(i,arguments)}},47739:function(d,v,e){"use strict";var r=e(94237),i=e(63335);d.exports=function(){return r(i(this))}},8090:function(d,v,e){"use strict";var r=e(35454),i=e(32621),l=Function.prototype,c=r&&Object.getOwnPropertyDescriptor,f=i(l,"name"),o=f&&function(){}.name==="something",h=f&&(!r||r&&c(l,"name").configurable);d.exports={EXISTS:f,PROPER:o,CONFIGURABLE:h}},37758:function(d,v,e){"use strict";var r=e(94237),i=e(63335);d.exports=function(l,c,f){try{return r(i(Object.getOwnPropertyDescriptor(l,c)[f]))}catch(o){}}},34114:function(d,v,e){"use strict";var r=e(29076),i=e(94237);d.exports=function(l){if(r(l)==="Function")return i(l)}},94237:function(d,v,e){"use strict";var r=e(40486),i=Function.prototype,l=i.call,c=r&&i.bind.bind(l,l);d.exports=r?c:function(f){return function(){return l.apply(f,arguments)}}},81750:function(d){"use strict";var v=TypeError;d.exports=function(e){var r=e&&e.alphabet;if(r===void 0||r==="base64"||r==="base64url")return r||"base64";throw new v("Incorrect `alphabet` option")}},38116:function(d,v,e){"use strict";var r=e(89945),i=e(55327),l=e(80449),c=e(10731),f=e(26006),o=e(53776),h=e(59893),u=e(57975),a=h("asyncIterator");d.exports=function(x){var p=l(x),y=!0,m=o(p,a),b;return i(m)||(m=f(p),y=!1),m!==void 0?b=r(m,p):(b=p,y=!0),l(b),c(y?b:new u(c(b)))}},69034:function(d,v,e){"use strict";var r=e(89945),i=e(57975),l=e(80449),c=e(85428),f=e(10731),o=e(53776),h=e(59893),u=h("asyncIterator");d.exports=function(a,x){var p=arguments.length<2?o(a,u):x;return p?l(r(p,a)):new i(f(c(a)))}},55174:function(d,v,e){"use strict";var r=e(92916);d.exports=function(i,l){var c=r[i],f=c&&c.prototype;return f&&f[l]}},65911:function(d,v,e){"use strict";var r=e(92916),i=e(55327),l=function(c){return i(c)?c:void 0};d.exports=function(c,f){return arguments.length<2?l(r[c]):r[c]&&r[c][f]}},10731:function(d){"use strict";d.exports=function(v){return{iterator:v,next:v.next,done:!1}}},7157:function(d,v,e){"use strict";var r=e(89945),i=e(80449),l=e(10731),c=e(26006);d.exports=function(f,o){(!o||typeof f!="string")&&i(f);var h=c(f);return l(i(h!==void 0?r(h,f):f))}},26006:function(d,v,e){"use strict";var r=e(97607),i=e(53776),l=e(4112),c=e(48074),f=e(59893),o=f("iterator");d.exports=function(h){if(!l(h))return i(h,o)||i(h,"@@iterator")||c[r(h)]}},85428:function(d,v,e){"use strict";var r=e(89945),i=e(63335),l=e(80449),c=e(40593),f=e(26006),o=TypeError;d.exports=function(h,u){var a=arguments.length<2?f(h):u;if(i(a))return l(r(a,h));throw new o(c(h)+" is not iterable")}},65451:function(d,v,e){"use strict";var r=e(94237),i=e(18589),l=e(55327),c=e(29076),f=e(69905),o=r([].push);d.exports=function(h){if(l(h))return h;if(i(h)){for(var u=h.length,a=[],x=0;x<u;x++){var p=h[x];typeof p=="string"?o(a,p):(typeof p=="number"||c(p)==="Number"||c(p)==="String")&&o(a,f(p))}var y=a.length,m=!0;return function(b,S){if(m)return m=!1,S;if(i(this))return S;for(var k=0;k<y;k++)if(a[k]===b)return S}}}},53776:function(d,v,e){"use strict";var r=e(63335),i=e(4112);d.exports=function(l,c){var f=l[c];return i(f)?void 0:r(f)}},88203:function(d,v,e){"use strict";var r=e(63335),i=e(80449),l=e(89945),c=e(56902),f=e(10731),o="Invalid size",h=RangeError,u=TypeError,a=Math.max,x=function(p,y,m,b){this.set=p,this.size=y,this.has=m,this.keys=b};x.prototype={getIterator:function(){return f(i(l(this.keys,this.set)))},includes:function(p){return l(this.has,this.set,p)}},d.exports=function(p){i(p);var y=+p.size;if(y!==y)throw new u(o);var m=c(y);if(m<0)throw new h(o);return new x(p,a(m,0),r(p.has),r(p.keys))}},23011:function(d,v,e){"use strict";var r=e(94237),i=e(94029),l=Math.floor,c=r("".charAt),f=r("".replace),o=r("".slice),h=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,u=/\$([$&'`]|\d{1,2})/g;d.exports=function(a,x,p,y,m,b){var S=p+a.length,k=y.length,R=u;return m!==void 0&&(m=i(m),R=h),f(b,R,function(A,P){var M;switch(c(P,0)){case"$":return"$";case"&":return a;case"`":return o(x,0,p);case"'":return o(x,S);case"<":M=m[o(P,1,-1)];break;default:var B=+P;if(B===0)return A;if(B>k){var N=l(B/10);return N===0?A:N<=k?y[N-1]===void 0?c(P,1):y[N-1]+c(P,1):A}M=y[B-1]}return M===void 0?"":M})}},92916:function(d,v,e){"use strict";var r=function(i){return i&&i.Math===Math&&i};d.exports=r(typeof globalThis=="object"&&globalThis)||r(typeof window=="object"&&window)||r(typeof self=="object"&&self)||r(typeof e.g=="object"&&e.g)||r(typeof this=="object"&&this)||function(){return this}()||Function("return this")()},32621:function(d,v,e){"use strict";var r=e(94237),i=e(94029),l=r({}.hasOwnProperty);d.exports=Object.hasOwn||function(f,o){return l(i(f),o)}},54406:function(d){"use strict";d.exports={}},61810:function(d){"use strict";d.exports=function(v,e){try{arguments.length===1?console.error(v):console.error(v,e)}catch(r){}}},75171:function(d,v,e){"use strict";var r=e(65911);d.exports=r("document","documentElement")},46796:function(d,v,e){"use strict";var r=e(35454),i=e(3338),l=e(86060);d.exports=!r&&!i(function(){return Object.defineProperty(l("div"),"a",{get:function(){return 7}}).a!==7})},61618:function(d){"use strict";var v=Array,e=Math.abs,r=Math.pow,i=Math.floor,l=Math.log,c=Math.LN2,f=function(h,u,a){var x=v(a),p=a*8-u-1,y=(1<<p)-1,m=y>>1,b=u===23?r(2,-24)-r(2,-77):0,S=h<0||h===0&&1/h<0?1:0,k=0,R,A,P;for(h=e(h),h!==h||h===1/0?(A=h!==h?1:0,R=y):(R=i(l(h)/c),P=r(2,-R),h*P<1&&(R--,P*=2),R+m>=1?h+=b/P:h+=b*r(2,1-m),h*P>=2&&(R++,P/=2),R+m>=y?(A=0,R=y):R+m>=1?(A=(h*P-1)*r(2,u),R+=m):(A=h*r(2,m-1)*r(2,u),R=0));u>=8;)x[k++]=A&255,A/=256,u-=8;for(R=R<<u|A,p+=u;p>0;)x[k++]=R&255,R/=256,p-=8;return x[--k]|=S*128,x},o=function(h,u){var a=h.length,x=a*8-u-1,p=(1<<x)-1,y=p>>1,m=x-7,b=a-1,S=h[b--],k=S&127,R;for(S>>=7;m>0;)k=k*256+h[b--],m-=8;for(R=k&(1<<-m)-1,k>>=-m,m+=u;m>0;)R=R*256+h[b--],m-=8;if(k===0)k=1-y;else{if(k===p)return R?NaN:S?-1/0:1/0;R+=r(2,u),k-=y}return(S?-1:1)*R*r(2,k-u)};d.exports={pack:f,unpack:o}},1835:function(d,v,e){"use strict";var r=e(94237),i=e(3338),l=e(29076),c=Object,f=r("".split);d.exports=i(function(){return!c("z").propertyIsEnumerable(0)})?function(o){return l(o)==="String"?f(o,""):c(o)}:c},25576:function(d,v,e){"use strict";var r=e(55327),i=e(31946),l=e(58218);d.exports=function(c,f,o){var h,u;return l&&r(h=f.constructor)&&h!==o&&i(u=h.prototype)&&u!==o.prototype&&l(c,u),c}},15212:function(d,v,e){"use strict";var r=e(94237),i=e(55327),l=e(77398),c=r(Function.toString);i(l.inspectSource)||(l.inspectSource=function(f){return c(f)}),d.exports=l.inspectSource},73068:function(d,v,e){"use strict";var r=e(31946),i=e(68151);d.exports=function(l,c){r(c)&&"cause"in c&&i(l,"cause",c.cause)}},2074:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(54406),c=e(31946),f=e(32621),o=e(37691).f,h=e(80689),u=e(53393),a=e(12477),x=e(6145),p=e(13247),y=!1,m=x("meta"),b=0,S=function(B){o(B,m,{value:{objectID:"O"+b++,weakData:{}}})},k=function(B,N){if(!c(B))return typeof B=="symbol"?B:(typeof B=="string"?"S":"P")+B;if(!f(B,m)){if(!a(B))return"F";if(!N)return"E";S(B)}return B[m].objectID},R=function(B,N){if(!f(B,m)){if(!a(B))return!0;if(!N)return!1;S(B)}return B[m].weakData},A=function(B){return p&&y&&a(B)&&!f(B,m)&&S(B),B},P=function(){M.enable=function(){},y=!0;var B=h.f,N=i([].splice),K={};K[m]=1,B(K).length&&(h.f=function(H){for(var W=B(H),ae=0,ne=W.length;ae<ne;ae++)if(W[ae]===m){N(W,ae,1);break}return W},r({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:u.f}))},M=d.exports={enable:P,fastKey:k,getWeakData:R,onFreeze:A};l[m]=!0},94844:function(d,v,e){"use strict";var r=e(40115),i=e(92916),l=e(31946),c=e(68151),f=e(32621),o=e(77398),h=e(11898),u=e(54406),a="Object already initialized",x=i.TypeError,p=i.WeakMap,y,m,b,S=function(P){return b(P)?m(P):y(P,{})},k=function(P){return function(M){var B;if(!l(M)||(B=m(M)).type!==P)throw new x("Incompatible receiver, "+P+" required");return B}};if(r||o.state){var R=o.state||(o.state=new p);R.get=R.get,R.has=R.has,R.set=R.set,y=function(P,M){if(R.has(P))throw new x(a);return M.facade=P,R.set(P,M),M},m=function(P){return R.get(P)||{}},b=function(P){return R.has(P)}}else{var A=h("state");u[A]=!0,y=function(P,M){if(f(P,A))throw new x(a);return M.facade=P,c(P,A,M),M},m=function(P){return f(P,A)?P[A]:{}},b=function(P){return f(P,A)}}d.exports={set:y,get:m,has:b,enforce:S,getterFor:k}},345:function(d,v,e){"use strict";var r=e(59893),i=e(48074),l=r("iterator"),c=Array.prototype;d.exports=function(f){return f!==void 0&&(i.Array===f||c[l]===f)}},18589:function(d,v,e){"use strict";var r=e(29076);d.exports=Array.isArray||function(l){return r(l)==="Array"}},75406:function(d,v,e){"use strict";var r=e(97607);d.exports=function(i){var l=r(i);return l==="BigInt64Array"||l==="BigUint64Array"}},55327:function(d,v,e){"use strict";var r=e(81766),i=r.all;d.exports=r.IS_HTMLDDA?function(l){return typeof l=="function"||l===i}:function(l){return typeof l=="function"}},39812:function(d,v,e){"use strict";var r=e(94237),i=e(3338),l=e(55327),c=e(97607),f=e(65911),o=e(15212),h=function(){},u=[],a=f("Reflect","construct"),x=/^\s*(?:class|function)\b/,p=r(x.exec),y=!x.test(h),m=function(k){if(!l(k))return!1;try{return a(h,u,k),!0}catch(R){return!1}},b=function(k){if(!l(k))return!1;switch(c(k)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return y||!!p(x,o(k))}catch(R){return!0}};b.sham=!0,d.exports=!a||i(function(){var S;return m(m.call)||!m(Object)||!m(function(){S=!0})||S})?b:m},60516:function(d,v,e){"use strict";var r=e(32621);d.exports=function(i){return i!==void 0&&(r(i,"value")||r(i,"writable"))}},20865:function(d,v,e){"use strict";var r=e(3338),i=e(55327),l=/#|\.prototype\./,c=function(a,x){var p=o[f(a)];return p===u?!0:p===h?!1:i(x)?r(x):!!x},f=c.normalize=function(a){return String(a).replace(l,".").toLowerCase()},o=c.data={},h=c.NATIVE="N",u=c.POLYFILL="P";d.exports=c},62896:function(d,v,e){"use strict";var r=e(31946),i=Math.floor;d.exports=Number.isInteger||function(c){return!r(c)&&isFinite(c)&&i(c)===c}},30360:function(d,v,e){"use strict";var r=e(97607),i=e(32621),l=e(4112),c=e(59893),f=e(48074),o=c("iterator"),h=Object;d.exports=function(u){if(l(u))return!1;var a=h(u);return a[o]!==void 0||"@@iterator"in a||i(f,r(a))}},4112:function(d){"use strict";d.exports=function(v){return v==null}},31946:function(d,v,e){"use strict";var r=e(55327),i=e(81766),l=i.all;d.exports=i.IS_HTMLDDA?function(c){return typeof c=="object"?c!==null:r(c)||c===l}:function(c){return typeof c=="object"?c!==null:r(c)}},16697:function(d){"use strict";d.exports=!1},83502:function(d,v,e){"use strict";var r=e(31946),i=e(94844).get;d.exports=function(c){if(!r(c))return!1;var f=i(c);return!!f&&f.type==="RawJSON"}},44639:function(d,v,e){"use strict";var r=e(31946),i=e(29076),l=e(59893),c=l("match");d.exports=function(f){var o;return r(f)&&((o=f[c])!==void 0?!!o:i(f)==="RegExp")}},18446:function(d,v,e){"use strict";var r=e(65911),i=e(55327),l=e(16332),c=e(14417),f=Object;d.exports=c?function(o){return typeof o=="symbol"}:function(o){var h=r("Symbol");return i(h)&&l(h.prototype,f(o))}},43545:function(d,v,e){"use strict";var r=e(89945);d.exports=function(i,l,c){for(var f=c?i:i.iterator,o=i.next,h,u;!(h=r(o,f)).done;)if(u=l(h.value),u!==void 0)return u}},62003:function(d,v,e){"use strict";var r=e(80666),i=e(89945),l=e(80449),c=e(40593),f=e(345),o=e(82762),h=e(16332),u=e(85428),a=e(26006),x=e(67996),p=TypeError,y=function(b,S){this.stopped=b,this.result=S},m=y.prototype;d.exports=function(b,S,k){var R=k&&k.that,A=!!(k&&k.AS_ENTRIES),P=!!(k&&k.IS_RECORD),M=!!(k&&k.IS_ITERATOR),B=!!(k&&k.INTERRUPTED),N=r(S,R),K,H,W,ae,ne,oe,q,X=function(se){return K&&x(K,"normal",se),new y(!0,se)},V=function(se){return A?(l(se),B?N(se[0],se[1],X):N(se[0],se[1])):B?N(se,X):N(se)};if(P)K=b.iterator;else if(M)K=b;else{if(H=a(b),!H)throw new p(c(b)+" is not iterable");if(f(H)){for(W=0,ae=o(b);ae>W;W++)if(ne=V(b[W]),ne&&h(m,ne))return ne;return new y(!1)}K=u(b,H)}for(oe=P?b.next:K.next;!(q=i(oe,K)).done;){try{ne=V(q.value)}catch(se){x(K,"throw",se)}if(typeof ne=="object"&&ne&&h(m,ne))return ne}return new y(!1)}},67996:function(d,v,e){"use strict";var r=e(89945),i=e(80449),l=e(53776);d.exports=function(c,f,o){var h,u;i(c);try{if(h=l(c,"return"),!h){if(f==="throw")throw o;return o}h=r(h,c)}catch(a){u=!0,h=a}if(f==="throw")throw o;if(u)throw h;return i(h),o}},83126:function(d,v,e){"use strict";var r=e(46571).IteratorPrototype,i=e(20132),l=e(35012),c=e(94573),f=e(48074),o=function(){return this};d.exports=function(h,u,a,x){var p=u+" Iterator";return h.prototype=i(r,{next:l(+!x,a)}),c(h,p,!1,!0),f[p]=o,h}},20547:function(d,v,e){"use strict";var r=e(89945),i=e(20132),l=e(68151),c=e(66477),f=e(59893),o=e(94844),h=e(53776),u=e(46571).IteratorPrototype,a=e(25587),x=e(67996),p=f("toStringTag"),y="IteratorHelper",m="WrapForValidIterator",b=o.set,S=function(A){var P=o.getterFor(A?m:y);return c(i(u),{next:function(){var B=P(this);if(A)return B.nextHandler();try{var N=B.done?void 0:B.nextHandler();return a(N,B.done)}catch(K){throw B.done=!0,K}},return:function(){var M=P(this),B=M.iterator;if(M.done=!0,A){var N=h(B,"return");return N?r(N,B):a(void 0,!0)}if(M.inner)try{x(M.inner.iterator,"normal")}catch(K){return x(B,"throw",K)}return x(B,"normal"),a(void 0,!0)}})},k=S(!0),R=S(!1);l(R,p,"Iterator Helper"),d.exports=function(A,P){var M=function(N,K){K?(K.iterator=N.iterator,K.next=N.next):K=N,K.type=P?m:y,K.nextHandler=A,K.counter=0,K.done=!1,b(this,K)};return M.prototype=P?k:R,M}},24019:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(16697),c=e(8090),f=e(55327),o=e(83126),h=e(53456),u=e(58218),a=e(94573),x=e(68151),p=e(2291),y=e(59893),m=e(48074),b=e(46571),S=c.PROPER,k=c.CONFIGURABLE,R=b.IteratorPrototype,A=b.BUGGY_SAFARI_ITERATORS,P=y("iterator"),M="keys",B="values",N="entries",K=function(){return this};d.exports=function(H,W,ae,ne,oe,q,X){o(ae,W,ne);var V=function(Ie){if(Ie===oe&&z)return z;if(!A&&Ie&&Ie in J)return J[Ie];switch(Ie){case M:return function(){return new ae(this,Ie)};case B:return function(){return new ae(this,Ie)};case N:return function(){return new ae(this,Ie)}}return function(){return new ae(this)}},se=W+" Iterator",ee=!1,J=H.prototype,le=J[P]||J["@@iterator"]||oe&&J[oe],z=!A&&le||V(oe),j=W==="Array"&&J.entries||le,ie,me,Se;if(j&&(ie=h(j.call(new H)),ie!==Object.prototype&&ie.next&&(!l&&h(ie)!==R&&(u?u(ie,R):f(ie[P])||p(ie,P,K)),a(ie,se,!0,!0),l&&(m[se]=K))),S&&oe===B&&le&&le.name!==B&&(!l&&k?x(J,"name",B):(ee=!0,z=function(){return i(le,this)})),oe)if(me={values:V(B),keys:q?z:V(M),entries:V(N)},X)for(Se in me)(A||ee||!(Se in J))&&p(J,Se,me[Se]);else r({target:W,proto:!0,forced:A||ee},me);return(!l||X)&&J[P]!==z&&p(J,P,z,{name:oe}),m[W]=z,me}},24771:function(d,v,e){"use strict";var r=e(89945),i=e(2155),l=function(c,f){return[f,c]};d.exports=function(){return r(i,this,l)}},2155:function(d,v,e){"use strict";var r=e(89945),i=e(63335),l=e(80449),c=e(10731),f=e(20547),o=e(46319),h=f(function(){var u=this.iterator,a=l(r(this.next,u)),x=this.done=!!a.done;if(!x)return o(u,this.mapper,[a.value,this.counter++],!0)});d.exports=function(a){return l(this),i(a),new h(c(this),{mapper:a})}},46571:function(d,v,e){"use strict";var r=e(3338),i=e(55327),l=e(31946),c=e(20132),f=e(53456),o=e(2291),h=e(59893),u=e(16697),a=h("iterator"),x=!1,p,y,m;[].keys&&(m=[].keys(),"next"in m?(y=f(f(m)),y!==Object.prototype&&(p=y)):x=!0);var b=!l(p)||r(function(){var S={};return p[a].call(S)!==S});b?p={}:u&&(p=c(p)),i(p[a])||o(p,a,function(){return this}),d.exports={IteratorPrototype:p,BUGGY_SAFARI_ITERATORS:x}},48074:function(d){"use strict";d.exports={}},82762:function(d,v,e){"use strict";var r=e(61578);d.exports=function(i){return r(i.length)}},86528:function(d,v,e){"use strict";var r=e(94237),i=e(3338),l=e(55327),c=e(32621),f=e(35454),o=e(8090).CONFIGURABLE,h=e(15212),u=e(94844),a=u.enforce,x=u.get,p=String,y=Object.defineProperty,m=r("".slice),b=r("".replace),S=r([].join),k=f&&!i(function(){return y(function(){},"length",{value:8}).length!==8}),R=String(String).split("String"),A=d.exports=function(P,M,B){m(p(M),0,7)==="Symbol("&&(M="["+b(p(M),/^Symbol\(([^)]*)\)/,"$1")+"]"),B&&B.getter&&(M="get "+M),B&&B.setter&&(M="set "+M),(!c(P,"name")||o&&P.name!==M)&&(f?y(P,"name",{value:M,configurable:!0}):P.name=M),k&&B&&c(B,"arity")&&P.length!==B.arity&&y(P,"length",{value:B.arity});try{B&&c(B,"constructor")&&B.constructor?f&&y(P,"prototype",{writable:!1}):P.prototype&&(P.prototype=void 0)}catch(K){}var N=a(P);return c(N,"source")||(N.source=S(R,typeof M=="string"?M:"")),P};Function.prototype.toString=A(function(){return l(this)&&x(this).source||h(this)},"toString")},2786:function(d,v,e){"use strict";var r=e(94237),i=Map.prototype;d.exports={Map,set:r(i.set),get:r(i.get),has:r(i.has),remove:r(i.delete),proto:i}},95037:function(d,v,e){"use strict";var r=e(94237),i=e(43545),l=e(2786),c=l.Map,f=l.proto,o=r(f.forEach),h=r(f.entries),u=h(new c).next;d.exports=function(a,x,p){return p?i({iterator:h(a),next:u},function(y){return x(y[1],y[0])}):o(a,x)}},14615:function(d,v,e){"use strict";var r=e(89945),i=e(63335),l=e(55327),c=e(80449),f=TypeError;d.exports=function(h,u){var a=c(this),x=i(a.get),p=i(a.has),y=i(a.set),m=arguments.length>2?arguments[2]:void 0,b;if(!l(u)&&!l(m))throw new f("At least one callback required");return r(p,a,h)?(b=r(x,a,h),l(u)&&(b=u(b),r(y,a,h,b))):l(m)&&(b=m(),r(y,a,h,b)),b}},10014:function(d){"use strict";var v=Math.expm1,e=Math.exp;d.exports=!v||v(10)>22025.465794806718||v(10)<22025.465794806718||v(-2e-17)!==-2e-17?function(i){var l=+i;return l===0?l:l>-1e-6&&l<1e-6?l+l*l/2:e(l)-1}:v},35175:function(d,v,e){"use strict";var r=e(77056),i=.0009765625,l=65504,c=6103515625e-14;d.exports=Math.f16round||function(o){return r(o,i,l,c)}},77056:function(d,v,e){"use strict";var r=e(37666),i=Math.abs,l=2220446049250313e-31,c=1/l,f=function(o){return o+c-c};d.exports=function(o,h,u,a){var x=+o,p=i(x),y=r(x);if(p<a)return y*f(p/a/h)*a*h;var m=(1+h/l)*p,b=m-(m-p);return b>u||b!==b?y*(1/0):y*b}},14894:function(d,v,e){"use strict";var r=e(77056),i=11920928955078125e-23,l=34028234663852886e22,c=11754943508222875e-54;d.exports=Math.fround||function(o){return r(o,i,l,c)}},53309:function(d){"use strict";var v=Math.log,e=Math.LOG10E;d.exports=Math.log10||function(i){return v(i)*e}},25726:function(d){"use strict";var v=Math.log;d.exports=Math.log1p||function(r){var i=+r;return i>-1e-8&&i<1e-8?i-i*i/2:v(1+i)}},24619:function(d){"use strict";d.exports=Math.scale||function(e,r,i,l,c){var f=+e,o=+r,h=+i,u=+l,a=+c;return f!==f||o!==o||h!==h||u!==u||a!==a?NaN:f===1/0||f===-1/0?f:(f-o)*(a-u)/(h-o)+u}},37666:function(d){"use strict";d.exports=Math.sign||function(e){var r=+e;return r===0||r!==r?r:r<0?-1:1}},3312:function(d){"use strict";var v=Math.ceil,e=Math.floor;d.exports=Math.trunc||function(i){var l=+i;return(l>0?e:v)(l)}},72933:function(d,v,e){"use strict";var r=e(92916),i=e(80666),l=e(71256).f,c=e(28887).set,f=e(66790),o=e(70695),h=e(1908),u=e(44914),a=e(90946),x=r.MutationObserver||r.WebKitMutationObserver,p=r.document,y=r.process,m=r.Promise,b=l(r,"queueMicrotask"),S=b&&b.value,k,R,A,P,M;if(!S){var B=new f,N=function(){var K,H;for(a&&(K=y.domain)&&K.exit();H=B.get();)try{H()}catch(W){throw B.head&&k(),W}K&&K.enter()};!o&&!a&&!u&&x&&p?(R=!0,A=p.createTextNode(""),new x(N).observe(A,{characterData:!0}),k=function(){A.data=R=!R}):!h&&m&&m.resolve?(P=m.resolve(void 0),P.constructor=m,M=i(P.then,P),k=function(){M(N)}):a?k=function(){y.nextTick(N)}:(c=i(c,r),k=function(){c(N)}),S=function(K){B.head||k(),B.add(K)}}d.exports=S},82778:function(d,v,e){"use strict";var r=e(3338);d.exports=!r(function(){var i="9007199254740993",l=JSON.rawJSON(i);return!JSON.isRawJSON(l)||JSON.stringify(l)!==i})},73446:function(d,v,e){"use strict";var r=e(63335),i=TypeError,l=function(c){var f,o;this.promise=new c(function(h,u){if(f!==void 0||o!==void 0)throw new i("Bad Promise constructor");f=h,o=u}),this.resolve=r(f),this.reject=r(o)};d.exports.f=function(c){return new l(c)}},7825:function(d,v,e){"use strict";var r=e(69905);d.exports=function(i,l){return i===void 0?arguments.length<2?"":l:r(i)}},2279:function(d){"use strict";var v=RangeError;d.exports=function(e){if(e===e)return e;throw new v("NaN is not allowed")}},41696:function(d,v,e){"use strict";var r=e(44639),i=TypeError;d.exports=function(l){if(r(l))throw new i("The method doesn't accept regular expressions");return l}},1222:function(d,v,e){"use strict";var r=e(92916),i=r.isFinite;d.exports=Number.isFinite||function(c){return typeof c=="number"&&i(c)}},31280:function(d,v,e){"use strict";var r=e(92916),i=e(3338),l=e(94237),c=e(69905),f=e(52971).trim,o=e(19268),h=l("".charAt),u=r.parseFloat,a=r.Symbol,x=a&&a.iterator,p=1/u(o+"-0")!==-1/0||x&&!i(function(){u(Object(x))});d.exports=p?function(m){var b=f(c(m)),S=u(b);return S===0&&h(b,0)==="-"?-0:S}:u},52446:function(d,v,e){"use strict";var r=e(92916),i=e(3338),l=e(94237),c=e(69905),f=e(52971).trim,o=e(19268),h=r.parseInt,u=r.Symbol,a=u&&u.iterator,x=/^[+-]?0x/i,p=l(x.exec),y=h(o+"08")!==8||h(o+"0x16")!==22||a&&!i(function(){h(Object(a))});d.exports=y?function(b,S){var k=f(c(b));return h(k,S>>>0||(p(x,k)?16:10))}:h},17243:function(d,v,e){"use strict";var r=e(94844),i=e(83126),l=e(25587),c=e(4112),f=e(31946),o=e(64110),h=e(35454),u="Incorrect Iterator.range arguments",a="NumericRangeIterator",x=r.set,p=r.getterFor(a),y=RangeError,m=TypeError,b=i(function(R,A,P,M,B,N){if(typeof R!=M||A!==1/0&&A!==-1/0&&typeof A!=M)throw new m(u);if(R===1/0||R===-1/0)throw new y(u);var K=A>R,H=!1,W;if(P===void 0)W=void 0;else if(f(P))W=P.step,H=!!P.inclusive;else if(typeof P==M)W=P;else throw new m(u);if(c(W)&&(W=K?N:-N),typeof W!=M)throw new m(u);if(W===1/0||W===-1/0||W===B&&R!==A)throw new y(u);var ae=R!==R||A!==A||W!==W||A>R!=W>B;x(this,{type:a,start:R,end:A,step:W,inclusive:H,hitsEnd:ae,currentCount:B,zero:B}),h||(this.start=R,this.end=A,this.step=W,this.inclusive=H)},a,function(){var R=p(this);if(R.hitsEnd)return l(void 0,!0);var A=R.start,P=R.end,M=R.step,B=A+M*R.currentCount++;B===P&&(R.hitsEnd=!0);var N=R.inclusive,K;return P>A?K=N?B>P:B>=P:K=N?P>B:P>=B,K?(R.hitsEnd=!0,l(void 0,!0)):l(B,!1)}),S=function(k){o(b.prototype,k,{get:function(){return p(this)[k]},set:function(){},configurable:!0,enumerable:!1})};h&&(S("start"),S("end"),S("inclusive"),S("step")),d.exports=b},80530:function(d,v,e){"use strict";var r=e(35454),i=e(94237),l=e(89945),c=e(3338),f=e(7733),o=e(92635),h=e(27597),u=e(94029),a=e(1835),x=Object.assign,p=Object.defineProperty,y=i([].concat);d.exports=!x||c(function(){if(r&&x({b:1},x(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b!==1)return!0;var m={},b={},S=Symbol("assign detection"),k="abcdefghijklmnopqrst";return m[S]=7,k.split("").forEach(function(R){b[R]=R}),x({},m)[S]!==7||f(x({},b)).join("")!==k})?function(b,S){for(var k=u(b),R=arguments.length,A=1,P=o.f,M=h.f;R>A;)for(var B=a(arguments[A++]),N=P?y(f(B),P(B)):f(B),K=N.length,H=0,W;K>H;)W=N[H++],(!r||l(M,B,W))&&(k[W]=B[W]);return k}:x},20132:function(d,v,e){"use strict";var r=e(80449),i=e(55666),l=e(46678),c=e(54406),f=e(75171),o=e(86060),h=e(11898),u=">",a="<",x="prototype",p="script",y=h("IE_PROTO"),m=function(){},b=function(P){return a+p+u+P+a+"/"+p+u},S=function(P){P.write(b("")),P.close();var M=P.parentWindow.Object;return P=null,M},k=function(){var P=o("iframe"),M="java"+p+":",B;return P.style.display="none",f.appendChild(P),P.src=String(M),B=P.contentWindow.document,B.open(),B.write(b("document.F=Object")),B.close(),B.F},R,A=function(){try{R=new ActiveXObject("htmlfile")}catch(M){}A=typeof document!="undefined"?document.domain&&R?S(R):k():S(R);for(var P=l.length;P--;)delete A[x][l[P]];return A()};c[y]=!0,d.exports=Object.create||function(M,B){var N;return M!==null?(m[x]=r(M),N=new m,m[x]=null,N[y]=M):N=A(),B===void 0?N:i.f(N,B)}},55666:function(d,v,e){"use strict";var r=e(35454),i=e(93199),l=e(37691),c=e(80449),f=e(80524),o=e(7733);v.f=r&&!i?Object.defineProperties:function(u,a){c(u);for(var x=f(a),p=o(a),y=p.length,m=0,b;y>m;)l.f(u,b=p[m++],x[b]);return u}},37691:function(d,v,e){"use strict";var r=e(35454),i=e(46796),l=e(93199),c=e(80449),f=e(17818),o=TypeError,h=Object.defineProperty,u=Object.getOwnPropertyDescriptor,a="enumerable",x="configurable",p="writable";v.f=r?l?function(m,b,S){if(c(m),b=f(b),c(S),typeof m=="function"&&b==="prototype"&&"value"in S&&p in S&&!S[p]){var k=u(m,b);k&&k[p]&&(m[b]=S.value,S={configurable:x in S?S[x]:k[x],enumerable:a in S?S[a]:k[a],writable:!1})}return h(m,b,S)}:h:function(m,b,S){if(c(m),b=f(b),c(S),i)try{return h(m,b,S)}catch(k){}if("get"in S||"set"in S)throw new o("Accessors not supported");return"value"in S&&(m[b]=S.value),m}},71256:function(d,v,e){"use strict";var r=e(35454),i=e(89945),l=e(27597),c=e(35012),f=e(80524),o=e(17818),h=e(32621),u=e(46796),a=Object.getOwnPropertyDescriptor;v.f=r?a:function(p,y){if(p=f(p),y=o(y),u)try{return a(p,y)}catch(m){}if(h(p,y))return c(!i(l.f,p,y),p[y])}},53393:function(d,v,e){"use strict";var r=e(29076),i=e(80524),l=e(80689).f,c=e(71698),f=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],o=function(h){try{return l(h)}catch(u){return c(f)}};d.exports.f=function(u){return f&&r(u)==="Window"?o(u):l(i(u))}},80689:function(d,v,e){"use strict";var r=e(97486),i=e(46678),l=i.concat("length","prototype");v.f=Object.getOwnPropertyNames||function(f){return r(f,l)}},92635:function(d,v){"use strict";v.f=Object.getOwnPropertySymbols},53456:function(d,v,e){"use strict";var r=e(32621),i=e(55327),l=e(94029),c=e(11898),f=e(4870),o=c("IE_PROTO"),h=Object,u=h.prototype;d.exports=f?h.getPrototypeOf:function(a){var x=l(a);if(r(x,o))return x[o];var p=x.constructor;return i(p)&&x instanceof p?p.prototype:x instanceof h?u:null}},12477:function(d,v,e){"use strict";var r=e(3338),i=e(31946),l=e(29076),c=e(51424),f=Object.isExtensible,o=r(function(){f(1)});d.exports=o||c?function(u){return!i(u)||c&&l(u)==="ArrayBuffer"?!1:f?f(u):!0}:f},16332:function(d,v,e){"use strict";var r=e(94237);d.exports=r({}.isPrototypeOf)},20574:function(d,v,e){"use strict";var r=e(94844),i=e(83126),l=e(25587),c=e(32621),f=e(7733),o=e(94029),h="Object Iterator",u=r.set,a=r.getterFor(h);d.exports=i(function(p,y){var m=o(p);u(this,{type:h,mode:y,object:m,keys:f(m),index:0})},"Object",function(){for(var p=a(this),y=p.keys;;){if(y===null||p.index>=y.length)return p.object=p.keys=null,l(void 0,!0);var m=y[p.index++],b=p.object;if(c(b,m)){switch(p.mode){case"keys":return l(m,!1);case"values":return l(b[m],!1)}return l([m,b[m]],!1)}}})},97486:function(d,v,e){"use strict";var r=e(94237),i=e(32621),l=e(80524),c=e(22999).indexOf,f=e(54406),o=r([].push);d.exports=function(h,u){var a=l(h),x=0,p=[],y;for(y in a)!i(f,y)&&i(a,y)&&o(p,y);for(;u.length>x;)i(a,y=u[x++])&&(~c(p,y)||o(p,y));return p}},7733:function(d,v,e){"use strict";var r=e(97486),i=e(46678);d.exports=Object.keys||function(c){return r(c,i)}},27597:function(d,v){"use strict";var e={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,i=r&&!e.call({1:2},1);v.f=i?function(c){var f=r(this,c);return!!f&&f.enumerable}:e},25837:function(d,v,e){"use strict";var r=e(16697),i=e(92916),l=e(3338),c=e(19684);d.exports=r||!l(function(){if(!(c&&c<535)){var f=Math.random();__defineSetter__.call(null,f,function(){}),delete i[f]}})},58218:function(d,v,e){"use strict";var r=e(37758),i=e(80449),l=e(557);d.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var c=!1,f={},o;try{o=r(Object.prototype,"__proto__","set"),o(f,[]),c=f instanceof Array}catch(h){}return function(u,a){return i(u),l(a),c?o(u,a):u.__proto__=a,u}}():void 0)},88698:function(d,v,e){"use strict";var r=e(35454),i=e(3338),l=e(94237),c=e(53456),f=e(7733),o=e(80524),h=e(27597).f,u=l(h),a=l([].push),x=r&&i(function(){var y=Object.create(null);return y[2]=2,!u(y,2)}),p=function(y){return function(m){for(var b=o(m),S=f(b),k=x&&c(b)===null,R=S.length,A=0,P=[],M;R>A;)M=S[A++],(!r||(k?M in b:u(b,M)))&&a(P,y?[M,b[M]]:b[M]);return P}};d.exports={entries:p(!0),values:p(!1)}},28488:function(d,v,e){"use strict";var r=e(68527),i=e(97607);d.exports=r?{}.toString:function(){return"[object "+i(this)+"]"}},44759:function(d,v,e){"use strict";var r=e(89945),i=e(55327),l=e(31946),c=TypeError;d.exports=function(f,o){var h,u;if(o==="string"&&i(h=f.toString)&&!l(u=r(h,f))||i(h=f.valueOf)&&!l(u=r(h,f))||o!=="string"&&i(h=f.toString)&&!l(u=r(h,f)))return u;throw new c("Can't convert object to primitive value")}},48662:function(d,v,e){"use strict";var r=e(65911),i=e(94237),l=e(80689),c=e(92635),f=e(80449),o=i([].concat);d.exports=r("Reflect","ownKeys")||function(u){var a=l.f(f(u)),x=c.f;return x?o(a,x(u)):a}},70913:function(d,v,e){"use strict";var r=e(94237),i=e(32621),l=SyntaxError,c=parseInt,f=String.fromCharCode,o=r("".charAt),h=r("".slice),u=r(/./.exec),a={'\\"':'"',"\\\\":"\\","\\/":"/","\\b":"\b","\\f":"\f","\\n":`
`,"\\r":"\r","\\t":" "},x=/^[\da-f]{4}$/i,p=/^[\u0000-\u001F]$/;d.exports=function(y,m){for(var b=!0,S="";m<y.length;){var k=o(y,m);if(k==="\\"){var R=h(y,m,m+2);if(i(a,R))S+=a[R],m+=2;else if(R==="\\u"){m+=2;var A=h(y,m,m+4);if(!u(x,A))throw new l("Bad Unicode escape at: "+m);S+=f(c(A,16)),m+=4}else throw new l('Unknown escape sequence: "'+R+'"')}else if(k==='"'){b=!1,m++;break}else{if(u(p,k))throw new l("Bad control character in string literal at: "+m);S+=k,m++}}if(b)throw new l("Unterminated string at: "+m);return{value:S,end:m}}},9699:function(d,v,e){"use strict";var r=e(92916);d.exports=r},80734:function(d){"use strict";d.exports=function(v){try{return{error:!1,value:v()}}catch(e){return{error:!0,value:e}}}},82830:function(d,v,e){"use strict";var r=e(92916),i=e(2451),l=e(55327),c=e(20865),f=e(15212),o=e(59893),h=e(66994),u=e(91821),a=e(16697),x=e(46573),p=i&&i.prototype,y=o("species"),m=!1,b=l(r.PromiseRejectionEvent),S=c("Promise",function(){var k=f(i),R=k!==String(i);if(!R&&x===66||a&&!(p.catch&&p.finally))return!0;if(!x||x<51||!/native code/.test(k)){var A=new i(function(B){B(1)}),P=function(B){B(function(){},function(){})},M=A.constructor={};if(M[y]=P,m=A.then(function(){})instanceof P,!m)return!0}return!R&&(h||u)&&!b});d.exports={CONSTRUCTOR:S,REJECTION_EVENT:b,SUBCLASSING:m}},2451:function(d,v,e){"use strict";var r=e(92916);d.exports=r.Promise},15597:function(d,v,e){"use strict";var r=e(80449),i=e(31946),l=e(73446);d.exports=function(c,f){if(r(c),i(f)&&f.constructor===c)return f;var o=l.f(c),h=o.resolve;return h(f),o.promise}},22093:function(d,v,e){"use strict";var r=e(2451),i=e(35221),l=e(82830).CONSTRUCTOR;d.exports=l||!i(function(c){r.all(c).then(void 0,function(){})})},44166:function(d,v,e){"use strict";var r=e(37691).f;d.exports=function(i,l,c){c in i||r(i,c,{configurable:!0,get:function(){return l[c]},set:function(f){l[c]=f}})}},66790:function(d){"use strict";var v=function(){this.head=null,this.tail=null};v.prototype={add:function(e){var r={item:e,next:null},i=this.tail;i?i.next=r:this.head=r,this.tail=r},get:function(){var e=this.head;if(e){var r=this.head=e.next;return r===null&&(this.tail=null),e.item}}},d.exports=v},82584:function(d,v,e){"use strict";e(34941),e(55410);var r=e(65911),i=e(94237),l=e(77898),c=r("Map"),f=r("WeakMap"),o=i([].push),h=l("metadata"),u=h.store||(h.store=new f),a=function(S,k,R){var A=u.get(S);if(!A){if(!R)return;u.set(S,A=new c)}var P=A.get(k);if(!P){if(!R)return;A.set(k,P=new c)}return P},x=function(S,k,R){var A=a(k,R,!1);return A===void 0?!1:A.has(S)},p=function(S,k,R){var A=a(k,R,!1);return A===void 0?void 0:A.get(S)},y=function(S,k,R,A){a(R,A,!0).set(S,k)},m=function(S,k){var R=a(S,k,!1),A=[];return R&&R.forEach(function(P,M){o(A,M)}),A},b=function(S){return S===void 0||typeof S=="symbol"?S:String(S)};d.exports={store:u,getMap:a,has:x,get:p,set:y,keys:m,toKey:b}},94338:function(d,v,e){"use strict";var r=e(89945),i=e(80449),l=e(55327),c=e(29076),f=e(88736),o=TypeError;d.exports=function(h,u){var a=h.exec;if(l(a)){var x=r(a,h,u);return x!==null&&i(x),x}if(c(h)==="RegExp")return r(f,h,u);throw new o("RegExp#exec called on incompatible receiver")}},88736:function(d,v,e){"use strict";var r=e(89945),i=e(94237),l=e(69905),c=e(82163),f=e(19286),o=e(77898),h=e(20132),u=e(94844).get,a=e(6041),x=e(51224),p=o("native-string-replace",String.prototype.replace),y=RegExp.prototype.exec,m=y,b=i("".charAt),S=i("".indexOf),k=i("".replace),R=i("".slice),A=function(){var N=/a/,K=/b*/g;return r(y,N,"a"),r(y,K,"a"),N.lastIndex!==0||K.lastIndex!==0}(),P=f.BROKEN_CARET,M=/()??/.exec("")[1]!==void 0,B=A||M||P||a||x;B&&(m=function(K){var H=this,W=u(H),ae=l(K),ne=W.raw,oe,q,X,V,se,ee,J;if(ne)return ne.lastIndex=H.lastIndex,oe=r(m,ne,ae),H.lastIndex=ne.lastIndex,oe;var le=W.groups,z=P&&H.sticky,j=r(c,H),ie=H.source,me=0,Se=ae;if(z&&(j=k(j,"y",""),S(j,"g")===-1&&(j+="g"),Se=R(ae,H.lastIndex),H.lastIndex>0&&(!H.multiline||H.multiline&&b(ae,H.lastIndex-1)!==`
`)&&(ie="(?: "+ie+")",Se=" "+Se,me++),q=new RegExp("^(?:"+ie+")",j)),M&&(q=new RegExp("^"+ie+"$(?!\\s)",j)),A&&(X=H.lastIndex),V=r(y,z?q:H,Se),z?V?(V.input=R(V.input,me),V[0]=R(V[0],me),V.index=H.lastIndex,H.lastIndex+=V[0].length):H.lastIndex=0:A&&V&&(H.lastIndex=H.global?V.index+V[0].length:X),M&&V&&V.length>1&&r(p,V[0],q,function(){for(se=1;se<arguments.length-2;se++)arguments[se]===void 0&&(V[se]=void 0)}),V&&le)for(V.groups=ee=h(null),se=0;se<le.length;se++)J=le[se],ee[J[0]]=V[J[1]];return V}),d.exports=m},82163:function(d,v,e){"use strict";var r=e(80449);d.exports=function(){var i=r(this),l="";return i.hasIndices&&(l+="d"),i.global&&(l+="g"),i.ignoreCase&&(l+="i"),i.multiline&&(l+="m"),i.dotAll&&(l+="s"),i.unicode&&(l+="u"),i.unicodeSets&&(l+="v"),i.sticky&&(l+="y"),l}},81644:function(d,v,e){"use strict";var r=e(89945),i=e(32621),l=e(16332),c=e(82163),f=RegExp.prototype;d.exports=function(o){var h=o.flags;return h===void 0&&!("flags"in f)&&!i(o,"flags")&&l(f,o)?r(c,o):h}},19286:function(d,v,e){"use strict";var r=e(3338),i=e(92916),l=i.RegExp,c=r(function(){var h=l("a","y");return h.lastIndex=2,h.exec("abcd")!==null}),f=c||r(function(){return!l("a","y").sticky}),o=c||r(function(){var h=l("^r","gy");return h.lastIndex=2,h.exec("str")!==null});d.exports={BROKEN_CARET:o,MISSED_STICKY:f,UNSUPPORTED_Y:c}},6041:function(d,v,e){"use strict";var r=e(3338),i=e(92916),l=i.RegExp;d.exports=r(function(){var c=l(".","s");return!(c.dotAll&&c.test(`
`)&&c.flags==="s")})},51224:function(d,v,e){"use strict";var r=e(3338),i=e(92916),l=i.RegExp;d.exports=r(function(){var c=l("(?<a>b)","g");return c.exec("b").groups.a!=="b"||"b".replace(c,"$<a>c")!=="bc"})},95955:function(d,v,e){"use strict";var r=e(4112),i=TypeError;d.exports=function(l){if(r(l))throw new i("Can't call method on "+l);return l}},88134:function(d){"use strict";d.exports=function(v,e){return v===e||v!==v&&e!==e}},5370:function(d){"use strict";d.exports=Object.is||function(e,r){return e===r?e!==0||1/e===1/r:e!==e&&r!==r}},93222:function(d,v,e){"use strict";var r=e(92916),i=e(13743),l=e(55327),c=e(90843),f=e(66011),o=e(30867),h=e(57106),u=r.Function,a=/MSIE .\./.test(f)||c&&function(){var x=r.Bun.version.split(".");return x.length<3||x[0]==="0"&&(x[1]<3||x[1]==="3"&&x[2]==="0")}();d.exports=function(x,p){var y=p?2:1;return a?function(m,b){var S=h(arguments.length,1)>y,k=l(m)?m:u(m),R=S?o(arguments,y):[],A=S?function(){i(k,this,R)}:k;return p?x(A,b):x(A)}:x}},61838:function(d,v,e){"use strict";var r=e(19691),i=e(57002),l=r.Set,c=r.add;d.exports=function(f){var o=new l;return i(f,function(h){c(o,h)}),o}},10038:function(d,v,e){"use strict";var r=e(17442),i=e(19691),l=e(61838),c=e(108),f=e(88203),o=e(57002),h=e(43545),u=i.has,a=i.remove;d.exports=function(p){var y=r(this),m=f(p),b=l(y);return c(y)<=m.size?o(y,function(S){m.includes(S)&&a(b,S)}):h(m.getIterator(),function(S){u(y,S)&&a(b,S)}),b}},19691:function(d,v,e){"use strict";var r=e(94237),i=Set.prototype;d.exports={Set,add:r(i.add),has:r(i.has),remove:r(i.delete),proto:i}},16049:function(d,v,e){"use strict";var r=e(17442),i=e(19691),l=e(108),c=e(88203),f=e(57002),o=e(43545),h=i.Set,u=i.add,a=i.has;d.exports=function(p){var y=r(this),m=c(p),b=new h;return l(y)>m.size?o(m.getIterator(),function(S){a(y,S)&&u(b,S)}):f(y,function(S){m.includes(S)&&u(b,S)}),b}},17616:function(d,v,e){"use strict";var r=e(17442),i=e(19691).has,l=e(108),c=e(88203),f=e(57002),o=e(43545),h=e(67996);d.exports=function(a){var x=r(this),p=c(a);if(l(x)<=p.size)return f(x,function(m){if(p.includes(m))return!1},!0)!==!1;var y=p.getIterator();return o(y,function(m){if(i(x,m))return h(y,"normal",!1)})!==!1}},84833:function(d,v,e){"use strict";var r=e(17442),i=e(108),l=e(57002),c=e(88203);d.exports=function(o){var h=r(this),u=c(o);return i(h)>u.size?!1:l(h,function(a){if(!u.includes(a))return!1},!0)!==!1}},51135:function(d,v,e){"use strict";var r=e(17442),i=e(19691).has,l=e(108),c=e(88203),f=e(43545),o=e(67996);d.exports=function(u){var a=r(this),x=c(u);if(l(a)<x.size)return!1;var p=x.getIterator();return f(p,function(y){if(!i(a,y))return o(p,"normal",!1)})!==!1}},57002:function(d,v,e){"use strict";var r=e(94237),i=e(43545),l=e(19691),c=l.Set,f=l.proto,o=r(f.forEach),h=r(f.keys),u=h(new c).next;d.exports=function(a,x,p){return p?i({iterator:h(a),next:u},x):o(a,x)}},22627:function(d,v,e){"use strict";var r=e(65911),i=function(l){return{size:l,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}};d.exports=function(l){var c=r("Set");try{new c()[l](i(0));try{return new c()[l](i(-1)),!1}catch(f){return!0}}catch(f){return!1}}},108:function(d,v,e){"use strict";var r=e(37758),i=e(19691);d.exports=r(i.proto,"size","get")||function(l){return l.size}},51996:function(d,v,e){"use strict";var r=e(65911),i=e(64110),l=e(59893),c=e(35454),f=l("species");d.exports=function(o){var h=r(o);c&&h&&!h[f]&&i(h,f,{configurable:!0,get:function(){return this}})}},36312:function(d,v,e){"use strict";var r=e(17442),i=e(19691),l=e(61838),c=e(88203),f=e(43545),o=i.add,h=i.has,u=i.remove;d.exports=function(x){var p=r(this),y=c(x).getIterator(),m=l(p);return f(y,function(b){h(p,b)?u(m,b):o(m,b)}),m}},94573:function(d,v,e){"use strict";var r=e(37691).f,i=e(32621),l=e(59893),c=l("toStringTag");d.exports=function(f,o,h){f&&!h&&(f=f.prototype),f&&!i(f,c)&&r(f,c,{configurable:!0,value:o})}},24667:function(d,v,e){"use strict";var r=e(17442),i=e(19691).add,l=e(61838),c=e(88203),f=e(43545);d.exports=function(h){var u=r(this),a=c(h).getIterator(),x=l(u);return f(a,function(p){i(x,p)}),x}},11898:function(d,v,e){"use strict";var r=e(77898),i=e(6145),l=r("keys");d.exports=function(c){return l[c]||(l[c]=i(c))}},77398:function(d,v,e){"use strict";var r=e(92916),i=e(29539),l="__core-js_shared__",c=r[l]||i(l,{});d.exports=c},77898:function(d,v,e){"use strict";var r=e(16697),i=e(77398);(d.exports=function(l,c){return i[l]||(i[l]=c!==void 0?c:{})})("versions",[]).push({version:"3.34.0",mode:r?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.34.0/LICENSE",source:"https://github.com/zloirock/core-js"})},60473:function(d,v,e){"use strict";var r=e(80449),i=e(6086),l=e(4112),c=e(59893),f=c("species");d.exports=function(o,h){var u=r(o).constructor,a;return u===void 0||l(a=r(u)[f])?h:i(a)}},67410:function(d,v,e){"use strict";var r=e(94237),i=e(80524),l=e(69905),c=e(82762),f=TypeError,o=r([].push),h=r([].join);d.exports=function(a){var x=i(a),p=c(x);if(!p)return"";for(var y=arguments.length,m=[],b=0;;){var S=x[b++];if(S===void 0)throw new f("Incorrect template");if(o(m,l(S)),b===p)return h(m,"");b<y&&o(m,l(arguments[b]))}}},17691:function(d,v,e){"use strict";var r=e(3338);d.exports=function(i){return r(function(){var l=""[i]('"');return l!==l.toLowerCase()||l.split('"').length>3})}},13764:function(d,v,e){"use strict";var r=e(94237),i=e(56902),l=e(69905),c=e(95955),f=r("".charAt),o=r("".charCodeAt),h=r("".slice),u=function(a){return function(x,p){var y=l(c(x)),m=i(p),b=y.length,S,k;return m<0||m>=b?a?"":void 0:(S=o(y,m),S<55296||S>56319||m+1===b||(k=o(y,m+1))<56320||k>57343?a?f(y,m):S:a?h(y,m,m+2):(S-55296<<10)+(k-56320)+65536)}};d.exports={codeAt:u(!1),charAt:u(!0)}},98352:function(d,v,e){"use strict";var r=e(66011);d.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(r)},85571:function(d,v,e){"use strict";var r=e(94237),i=e(61578),l=e(69905),c=e(71049),f=e(95955),o=r(c),h=r("".slice),u=Math.ceil,a=function(x){return function(p,y,m){var b=l(f(p)),S=i(y),k=b.length,R=m===void 0?" ":l(m),A,P;return S<=k||R===""?b:(A=S-k,P=o(R,u(A/R.length)),P.length>A&&(P=h(P,0,A)),x?b+P:P+b)}};d.exports={start:a(!1),end:a(!0)}},79204:function(d,v,e){"use strict";var r=e(65911),i=e(94237),l=String.fromCharCode,c=r("String","fromCodePoint"),f=i("".charAt),o=i("".charCodeAt),h=i("".indexOf),u=i("".slice),a=48,x=57,p=97,y=102,m=65,b=70,S=function(A,P){var M=o(A,P);return M>=a&&M<=x},k=function(A,P,M){if(M>=A.length)return-1;for(var B=0;P<M;P++){var N=R(o(A,P));if(N===-1)return-1;B=B*16+N}return B},R=function(A){return A>=a&&A<=x?A-a:A>=p&&A<=y?A-p+10:A>=m&&A<=b?A-m+10:-1};d.exports=function(A){for(var P="",M=0,B=0,N;(B=h(A,"\\",B))>-1;){if(P+=u(A,M,B),++B===A.length)return;var K=f(A,B++);switch(K){case"b":P+="\b";break;case"t":P+=" ";break;case"n":P+=`
`;break;case"v":P+="\v";break;case"f":P+="\f";break;case"r":P+="\r";break;case"\r":B<A.length&&f(A,B)===`
`&&++B;case`
`:case"\u2028":case"\u2029":break;case"0":if(S(A,B))return;P+="\0";break;case"x":if(N=k(A,B,B+2),N===-1)return;B+=2,P+=l(N);break;case"u":if(B<A.length&&f(A,B)==="{"){var H=h(A,"}",++B);if(H===-1)return;N=k(A,B,H),B=H+1}else N=k(A,B,B+4),B+=4;if(N===-1||N>1114111)return;P+=c(N);break;default:if(S(K,0))return;P+=K}M=B}return P+u(A,M)}},93245:function(d,v,e){"use strict";var r=e(94237),i=2147483647,l=36,c=1,f=26,o=38,h=700,u=72,a=128,x="-",p=/[^\0-\u007E]/,y=/[.\u3002\uFF0E\uFF61]/g,m="Overflow: input needs wider integers to process",b=l-c,S=RangeError,k=r(y.exec),R=Math.floor,A=String.fromCharCode,P=r("".charCodeAt),M=r([].join),B=r([].push),N=r("".replace),K=r("".split),H=r("".toLowerCase),W=function(q){for(var X=[],V=0,se=q.length;V<se;){var ee=P(q,V++);if(ee>=55296&&ee<=56319&&V<se){var J=P(q,V++);(J&64512)===56320?B(X,((ee&1023)<<10)+(J&1023)+65536):(B(X,ee),V--)}else B(X,ee)}return X},ae=function(q){return q+22+75*(q<26)},ne=function(q,X,V){var se=0;for(q=V?R(q/h):q>>1,q+=R(q/X);q>b*f>>1;)q=R(q/b),se+=l;return R(se+(b+1)*q/(q+o))},oe=function(q){var X=[];q=W(q);var V=q.length,se=a,ee=0,J=u,le,z;for(le=0;le<q.length;le++)z=q[le],z<128&&B(X,A(z));var j=X.length,ie=j;for(j&&B(X,x);ie<V;){var me=i;for(le=0;le<q.length;le++)z=q[le],z>=se&&z<me&&(me=z);var Se=ie+1;if(me-se>R((i-ee)/Se))throw new S(m);for(ee+=(me-se)*Se,se=me,le=0;le<q.length;le++){if(z=q[le],z<se&&++ee>i)throw new S(m);if(z===se){for(var Ie=ee,He=l;;){var je=He<=J?c:He>=J+f?f:He-J;if(Ie<je)break;var Dt=Ie-je,ht=l-je;B(X,A(ae(je+Dt%ht))),Ie=R(Dt/ht),He+=l}B(X,A(ae(Ie))),J=ne(ee,Se,ie===j),ee=0,ie++}}ee++,se++}return M(X,"")};d.exports=function(q){var X=[],V=K(N(H(q),y,"."),"."),se,ee;for(se=0;se<V.length;se++)ee=V[se],B(X,k(p,ee)?"xn--"+oe(ee):ee);return M(X,".")}},71049:function(d,v,e){"use strict";var r=e(56902),i=e(69905),l=e(95955),c=RangeError;d.exports=function(o){var h=i(l(this)),u="",a=r(o);if(a<0||a===1/0)throw new c("Wrong number of repetitions");for(;a>0;(a>>>=1)&&(h+=h))a&1&&(u+=h);return u}},9591:function(d,v,e){"use strict";var r=e(52971).end,i=e(18105);d.exports=i("trimEnd")?function(){return r(this)}:"".trimEnd},18105:function(d,v,e){"use strict";var r=e(8090).PROPER,i=e(3338),l=e(19268),c="\u200B\x85\u180E";d.exports=function(f){return i(function(){return!!l[f]()||c[f]()!==c||r&&l[f].name!==f})}},27374:function(d,v,e){"use strict";var r=e(52971).start,i=e(18105);d.exports=i("trimStart")?function(){return r(this)}:"".trimStart},52971:function(d,v,e){"use strict";var r=e(94237),i=e(95955),l=e(69905),c=e(19268),f=r("".replace),o=RegExp("^["+c+"]+"),h=RegExp("(^|[^"+c+"])["+c+"]+$"),u=function(a){return function(x){var p=l(i(x));return a&1&&(p=f(p,o,"")),a&2&&(p=f(p,h,"$1")),p}};d.exports={start:u(1),end:u(2),trim:u(3)}},80426:function(d,v,e){"use strict";var r=e(92916),i=e(3338),l=e(46573),c=e(66994),f=e(91821),o=e(90946),h=r.structuredClone;d.exports=!!h&&!i(function(){if(f&&l>92||o&&l>94||c&&l>97)return!1;var u=new ArrayBuffer(8),a=h(u,{transfer:[u]});return u.byteLength!==0||a.byteLength!==8})},42820:function(d,v,e){"use strict";var r=e(46573),i=e(3338),l=e(92916),c=l.String;d.exports=!!Object.getOwnPropertySymbols&&!i(function(){var f=Symbol("symbol detection");return!c(f)||!(Object(f)instanceof Symbol)||!Symbol.sham&&r&&r<41})},14311:function(d,v,e){"use strict";var r=e(89945),i=e(65911),l=e(59893),c=e(2291);d.exports=function(){var f=i("Symbol"),o=f&&f.prototype,h=o&&o.valueOf,u=l("toPrimitive");o&&!o[u]&&c(o,u,function(a){return r(h,this)},{arity:1})}},69077:function(d,v,e){"use strict";var r=e(65911),i=e(94237),l=r("Symbol"),c=l.keyFor,f=i(l.prototype.valueOf);d.exports=l.isRegisteredSymbol||function(h){try{return c(f(h))!==void 0}catch(u){return!1}}},40443:function(d,v,e){"use strict";for(var r=e(77898),i=e(65911),l=e(94237),c=e(18446),f=e(59893),o=i("Symbol"),h=o.isWellKnownSymbol,u=i("Object","getOwnPropertyNames"),a=l(o.prototype.valueOf),x=r("wks"),p=0,y=u(o),m=y.length;p<m;p++)try{var b=y[p];c(o[b])&&f(b)}catch(S){}d.exports=function(k){if(h&&h(k))return!0;try{for(var R=a(k),A=0,P=u(x),M=P.length;A<M;A++)if(x[P[A]]==R)return!0}catch(B){}return!1}},60798:function(d,v,e){"use strict";var r=e(42820);d.exports=r&&!!Symbol.for&&!!Symbol.keyFor},28887:function(d,v,e){"use strict";var r=e(92916),i=e(13743),l=e(80666),c=e(55327),f=e(32621),o=e(3338),h=e(75171),u=e(30867),a=e(86060),x=e(57106),p=e(70695),y=e(90946),m=r.setImmediate,b=r.clearImmediate,S=r.process,k=r.Dispatch,R=r.Function,A=r.MessageChannel,P=r.String,M=0,B={},N="onreadystatechange",K,H,W,ae;o(function(){K=r.location});var ne=function(V){if(f(B,V)){var se=B[V];delete B[V],se()}},oe=function(V){return function(){ne(V)}},q=function(V){ne(V.data)},X=function(V){r.postMessage(P(V),K.protocol+"//"+K.host)};(!m||!b)&&(m=function(se){x(arguments.length,1);var ee=c(se)?se:R(se),J=u(arguments,1);return B[++M]=function(){i(ee,void 0,J)},H(M),M},b=function(se){delete B[se]},y?H=function(V){S.nextTick(oe(V))}:k&&k.now?H=function(V){k.now(oe(V))}:A&&!p?(W=new A,ae=W.port2,W.port1.onmessage=q,H=l(ae.postMessage,ae)):r.addEventListener&&c(r.postMessage)&&!r.importScripts&&K&&K.protocol!=="file:"&&!o(X)?(H=X,r.addEventListener("message",q,!1)):N in a("script")?H=function(V){h.appendChild(a("script"))[N]=function(){h.removeChild(this),ne(V)}}:H=function(V){setTimeout(oe(V),0)}),d.exports={set:m,clear:b}},49228:function(d,v,e){"use strict";var r=e(94237);d.exports=r(1 .valueOf)},51981:function(d,v,e){"use strict";var r=e(56902),i=Math.max,l=Math.min;d.exports=function(c,f){var o=r(c);return o<0?i(o+f,0):l(o,f)}},93303:function(d,v,e){"use strict";var r=e(97954),i=TypeError;d.exports=function(l){var c=r(l,"number");if(typeof c=="number")throw new i("Can't convert number to bigint");return BigInt(c)}},24225:function(d,v,e){"use strict";var r=e(56902),i=e(61578),l=RangeError;d.exports=function(c){if(c===void 0)return 0;var f=r(c),o=i(f);if(f!==o)throw new l("Wrong length or index");return o}},80524:function(d,v,e){"use strict";var r=e(1835),i=e(95955);d.exports=function(l){return r(i(l))}},56902:function(d,v,e){"use strict";var r=e(3312);d.exports=function(i){var l=+i;return l!==l||l===0?0:r(l)}},61578:function(d,v,e){"use strict";var r=e(56902),i=Math.min;d.exports=function(l){return l>0?i(r(l),9007199254740991):0}},94029:function(d,v,e){"use strict";var r=e(95955),i=Object;d.exports=function(l){return i(r(l))}},64135:function(d,v,e){"use strict";var r=e(51358),i=RangeError;d.exports=function(l,c){var f=r(l);if(f%c)throw new i("Wrong offset");return f}},51358:function(d,v,e){"use strict";var r=e(56902),i=RangeError;d.exports=function(l){var c=r(l);if(c<0)throw new i("The argument can't be less than 0");return c}},97954:function(d,v,e){"use strict";var r=e(89945),i=e(31946),l=e(18446),c=e(53776),f=e(44759),o=e(59893),h=TypeError,u=o("toPrimitive");d.exports=function(a,x){if(!i(a)||l(a))return a;var p=c(a,u),y;if(p){if(x===void 0&&(x="default"),y=r(p,a,x),!i(y)||l(y))return y;throw new h("Can't convert object to primitive value")}return x===void 0&&(x="number"),f(a,x)}},17818:function(d,v,e){"use strict";var r=e(97954),i=e(18446);d.exports=function(l){var c=r(l,"string");return i(c)?c:c+""}},77999:function(d,v,e){"use strict";var r=e(65911),i=e(55327),l=e(30360),c=e(31946),f=r("Set"),o=function(h){return c(h)&&typeof h.size=="number"&&i(h.has)&&i(h.keys)};d.exports=function(h){return o(h)?h:l(h)?new f(h):h}},68527:function(d,v,e){"use strict";var r=e(59893),i=r("toStringTag"),l={};l[i]="z",d.exports=String(l)==="[object z]"},69905:function(d,v,e){"use strict";var r=e(97607),i=String;d.exports=function(l){if(r(l)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return i(l)}},86350:function(d){"use strict";var v=Math.round;d.exports=function(e){var r=v(e);return r<0?0:r>255?255:r&255}},11270:function(d,v,e){"use strict";var r=e(90946);d.exports=function(i){try{if(r)return Function('return require("'+i+'")')()}catch(l){}}},40593:function(d){"use strict";var v=String;d.exports=function(e){try{return v(e)}catch(r){return"Object"}}},69733:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(89945),c=e(35454),f=e(59627),o=e(58261),h=e(91669),u=e(56472),a=e(35012),x=e(68151),p=e(62896),y=e(61578),m=e(24225),b=e(64135),S=e(86350),k=e(17818),R=e(32621),A=e(97607),P=e(31946),M=e(18446),B=e(20132),N=e(16332),K=e(58218),H=e(80689).f,W=e(50706),ae=e(90560).forEach,ne=e(51996),oe=e(64110),q=e(37691),X=e(71256),V=e(94844),se=e(25576),ee=V.get,J=V.set,le=V.enforce,z=q.f,j=X.f,ie=i.RangeError,me=h.ArrayBuffer,Se=me.prototype,Ie=h.DataView,He=o.NATIVE_ARRAY_BUFFER_VIEWS,je=o.TYPED_ARRAY_TAG,Dt=o.TypedArray,ht=o.TypedArrayPrototype,It=o.aTypedArrayConstructor,Zt=o.isTypedArray,Rt="BYTES_PER_ELEMENT",ar="Wrong length",$e=function(Je,Ne){It(Je);for(var ye=0,ke=Ne.length,Ge=new Je(ke);ke>ye;)Ge[ye]=Ne[ye++];return Ge},gt=function(Je,Ne){oe(Je,Ne,{configurable:!0,get:function(){return ee(this)[Ne]}})},Mt=function(Je){var Ne;return N(Se,Je)||(Ne=A(Je))==="ArrayBuffer"||Ne==="SharedArrayBuffer"},et=function(Je,Ne){return Zt(Je)&&!M(Ne)&&Ne in Je&&p(+Ne)&&Ne>=0},ft=function(Ne,ye){return ye=k(ye),et(Ne,ye)?a(2,Ne[ye]):j(Ne,ye)},ot=function(Ne,ye,ke){return ye=k(ye),et(Ne,ye)&&P(ke)&&R(ke,"value")&&!R(ke,"get")&&!R(ke,"set")&&!ke.configurable&&(!R(ke,"writable")||ke.writable)&&(!R(ke,"enumerable")||ke.enumerable)?(Ne[ye]=ke.value,Ne):z(Ne,ye,ke)};c?(He||(X.f=ft,q.f=ot,gt(ht,"buffer"),gt(ht,"byteOffset"),gt(ht,"byteLength"),gt(ht,"length")),r({target:"Object",stat:!0,forced:!He},{getOwnPropertyDescriptor:ft,defineProperty:ot}),d.exports=function(Je,Ne,ye){var ke=Je.match(/\d+/)[0]/8,Ge=Je+(ye?"Clamped":"")+"Array",We="get"+Je,Xe="set"+Je,ut=i[Ge],pt=ut,or=pt&&pt.prototype,tr={},Me=function(zt,Ht){var lr=ee(zt);return lr.view[We](Ht*ke+lr.byteOffset,!0)},tt=function(zt,Ht,lr){var Wt=ee(zt);Wt.view[Xe](Ht*ke+Wt.byteOffset,ye?S(lr):lr,!0)},Yt=function(zt,Ht){z(zt,Ht,{get:function(){return Me(this,Ht)},set:function(lr){return tt(this,Ht,lr)},enumerable:!0})};He?f&&(pt=Ne(function(zt,Ht,lr,Wt){return u(zt,or),se(function(){return P(Ht)?Mt(Ht)?Wt!==void 0?new ut(Ht,b(lr,ke),Wt):lr!==void 0?new ut(Ht,b(lr,ke)):new ut(Ht):Zt(Ht)?$e(pt,Ht):l(W,pt,Ht):new ut(m(Ht))}(),zt,pt)}),K&&K(pt,Dt),ae(H(ut),function(zt){zt in pt||x(pt,zt,ut[zt])}),pt.prototype=or):(pt=Ne(function(zt,Ht,lr,Wt){u(zt,or);var Ce=0,ce=0,pe,Ct,Ae;if(!P(Ht))Ae=m(Ht),Ct=Ae*ke,pe=new me(Ct);else if(Mt(Ht)){pe=Ht,ce=b(lr,ke);var st=Ht.byteLength;if(Wt===void 0){if(st%ke)throw new ie(ar);if(Ct=st-ce,Ct<0)throw new ie(ar)}else if(Ct=y(Wt)*ke,Ct+ce>st)throw new ie(ar);Ae=Ct/ke}else return Zt(Ht)?$e(pt,Ht):l(W,pt,Ht);for(J(zt,{buffer:pe,byteOffset:ce,byteLength:Ct,length:Ae,view:new Ie(pe)});Ce<Ae;)Yt(zt,Ce++)}),K&&K(pt,Dt),or=pt.prototype=B(ht)),or.constructor!==pt&&x(or,"constructor",pt),le(or).TypedArrayConstructor=pt,je&&x(or,je,Ge);var Ot=pt!==ut;tr[Ge]=pt,r({global:!0,constructor:!0,forced:Ot,sham:!He},tr),Rt in pt||x(pt,Rt,ke),Rt in or||x(or,Rt,ke),ne(Ge)}):d.exports=function(){}},59627:function(d,v,e){"use strict";var r=e(92916),i=e(3338),l=e(35221),c=e(58261).NATIVE_ARRAY_BUFFER_VIEWS,f=r.ArrayBuffer,o=r.Int8Array;d.exports=!c||!i(function(){o(1)})||!i(function(){new o(-1)})||!l(function(h){new o,new o(null),new o(1.5),new o(h)},!0)||i(function(){return new o(new f(2),1,void 0).length!==1})},27607:function(d,v,e){"use strict";var r=e(69478),i=e(31384);d.exports=function(l,c){return r(i(l),c)}},50706:function(d,v,e){"use strict";var r=e(80666),i=e(89945),l=e(6086),c=e(94029),f=e(82762),o=e(85428),h=e(26006),u=e(345),a=e(75406),x=e(58261).aTypedArrayConstructor,p=e(93303);d.exports=function(m){var b=l(this),S=c(m),k=arguments.length,R=k>1?arguments[1]:void 0,A=R!==void 0,P=h(S),M,B,N,K,H,W,ae,ne;if(P&&!u(P))for(ae=o(S,P),ne=ae.next,S=[];!(W=i(ne,ae)).done;)S.push(W.value);for(A&&k>2&&(R=r(R,arguments[2])),B=f(S),N=new(x(b))(B),K=a(N),M=0;B>M;M++)H=A?R(S[M],M):S[M],N[M]=K?p(H):+H;return N}},31384:function(d,v,e){"use strict";var r=e(58261),i=e(60473),l=r.aTypedArrayConstructor,c=r.getTypedArrayConstructor;d.exports=function(f){return l(i(f,c(f)))}},6145:function(d,v,e){"use strict";var r=e(94237),i=0,l=Math.random(),c=r(1 .toString);d.exports=function(f){return"Symbol("+(f===void 0?"":f)+")_"+c(++i+l,36)}},3299:function(d,v,e){"use strict";var r=e(3338),i=e(59893),l=e(35454),c=e(16697),f=i("iterator");d.exports=!r(function(){var o=new URL("b?a=1&b=2&c=3","http://a"),h=o.searchParams,u=new URLSearchParams("a=1&a=2&b=3"),a="";return o.pathname="c%20d",h.forEach(function(x,p){h.delete("b"),a+=p+x}),u.delete("a",2),u.delete("b",void 0),c&&(!o.toJSON||!u.has("a",1)||u.has("a",2)||!u.has("a",void 0)||u.has("b"))||!h.size&&(c||!l)||!h.sort||o.href!=="http://a/c%20d?a=1&c=3"||h.get("c")!=="3"||String(new URLSearchParams("?a=1"))!=="a=1"||!h[f]||new URL("https://a@b").username!=="a"||new URLSearchParams(new URLSearchParams("a=b")).get("a")!=="b"||new URL("http://\u0442\u0435\u0441\u0442").host!=="xn--e1aybc"||new URL("http://a#\u0431").hash!=="#%D0%B1"||a!=="a1c3"||new URL("http://x",void 0).host!=="x"})},14417:function(d,v,e){"use strict";var r=e(42820);d.exports=r&&!Symbol.sham&&typeof Symbol.iterator=="symbol"},93199:function(d,v,e){"use strict";var r=e(35454),i=e(3338);d.exports=r&&i(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})},57106:function(d){"use strict";var v=TypeError;d.exports=function(e,r){if(e<r)throw new v("Not enough arguments");return e}},40115:function(d,v,e){"use strict";var r=e(92916),i=e(55327),l=r.WeakMap;d.exports=i(l)&&/native code/.test(String(l))},42530:function(d,v,e){"use strict";var r=e(94237),i=WeakMap.prototype;d.exports={WeakMap,set:r(i.set),get:r(i.get),has:r(i.has),remove:r(i.delete)}},91385:function(d,v,e){"use strict";var r=e(94237),i=WeakSet.prototype;d.exports={WeakSet,add:r(i.add),has:r(i.has),remove:r(i.delete)}},94674:function(d,v,e){"use strict";var r=e(9699),i=e(32621),l=e(38282),c=e(37691).f;d.exports=function(f){var o=r.Symbol||(r.Symbol={});i(o,f)||c(o,f,{value:l.f(f)})}},38282:function(d,v,e){"use strict";var r=e(59893);v.f=r},59893:function(d,v,e){"use strict";var r=e(92916),i=e(77898),l=e(32621),c=e(6145),f=e(42820),o=e(14417),h=r.Symbol,u=i("wks"),a=o?h.for||h:h&&h.withoutSetter||c;d.exports=function(x){return l(u,x)||(u[x]=f&&l(h,x)?h[x]:a("Symbol."+x)),u[x]}},19268:function(d){"use strict";d.exports=`
\v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`},78540:function(d,v,e){"use strict";var r=e(65911),i=e(32621),l=e(68151),c=e(16332),f=e(58218),o=e(24538),h=e(44166),u=e(25576),a=e(7825),x=e(73068),p=e(61888),y=e(35454),m=e(16697);d.exports=function(b,S,k,R){var A="stackTraceLimit",P=R?2:1,M=b.split("."),B=M[M.length-1],N=r.apply(null,M);if(N){var K=N.prototype;if(!m&&i(K,"cause")&&delete K.cause,!k)return N;var H=r("Error"),W=S(function(ae,ne){var oe=a(R?ne:ae,void 0),q=R?new N(ae):new N;return oe!==void 0&&l(q,"message",oe),p(q,W,q.stack,2),this&&c(K,this)&&u(q,this,W),arguments.length>P&&x(q,arguments[P]),q});if(W.prototype=K,B!=="Error"?f?f(W,H):o(W,H,{name:!0}):y&&A in N&&(h(W,N,A),h(W,N,"prepareStackTrace")),o(W,N),!m)try{K.name!==B&&l(K,"name",B),K.constructor=W}catch(ae){}return W}}},93074:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(13743),c=e(3338),f=e(78540),o="AggregateError",h=i(o),u=!c(function(){return h([1]).errors[0]!==1})&&c(function(){return h([1],o,{cause:7}).cause!==7});r({global:!0,constructor:!0,arity:2,forced:u},{AggregateError:f(o,function(a){return function(p,y){return l(a,this,arguments)}},u,!0)})},6555:function(d,v,e){"use strict";var r=e(94488),i=e(16332),l=e(53456),c=e(58218),f=e(24538),o=e(20132),h=e(68151),u=e(35012),a=e(73068),x=e(61888),p=e(62003),y=e(7825),m=e(59893),b=m("toStringTag"),S=Error,k=[].push,R=function(M,B){var N=i(A,this),K;c?K=c(new S,N?l(this):A):(K=N?this:o(A),h(K,b,"Error")),B!==void 0&&h(K,"message",y(B)),x(K,R,K.stack,1),arguments.length>2&&a(K,arguments[2]);var H=[];return p(M,k,{that:H}),h(K,"errors",H),K};c?c(R,S):f(R,S,{name:!0});var A=R.prototype=o(S.prototype,{constructor:u(1,R),message:u(1,""),name:u(1,"AggregateError")});r({global:!0,constructor:!0,arity:2},{AggregateError:R})},86357:function(d,v,e){"use strict";e(6555)},89170:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(91669),c=e(51996),f="ArrayBuffer",o=l[f],h=i[f];r({global:!0,constructor:!0,forced:h!==o},{ArrayBuffer:o}),c(f)},71012:function(d,v,e){"use strict";var r=e(94488),i=e(58261),l=i.NATIVE_ARRAY_BUFFER_VIEWS;r({target:"ArrayBuffer",stat:!0,forced:!l},{isView:i.isView})},84203:function(d,v,e){"use strict";var r=e(94488),i=e(34114),l=e(3338),c=e(91669),f=e(80449),o=e(51981),h=e(61578),u=e(60473),a=c.ArrayBuffer,x=c.DataView,p=x.prototype,y=i(a.prototype.slice),m=i(p.getUint8),b=i(p.setUint8),S=l(function(){return!new a(2).slice(1,void 0).byteLength});r({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:S},{slice:function(R,A){if(y&&A===void 0)return y(f(this),R);for(var P=f(this).byteLength,M=o(R,P),B=o(A===void 0?P:A,P),N=new(u(this,a))(h(B-M)),K=new x(this),H=new x(N),W=0;M<B;)b(H,W++,m(K,M++));return N}})},96331:function(d,v,e){"use strict";var r=e(94488),i=e(94029),l=e(82762),c=e(56902),f=e(81181);r({target:"Array",proto:!0},{at:function(h){var u=i(this),a=l(u),x=c(h),p=x>=0?x:a+x;return p<0||p>=a?void 0:u[p]}}),f("at")},2924:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(18589),c=e(31946),f=e(94029),o=e(82762),h=e(66434),u=e(69392),a=e(81427),x=e(17480),p=e(59893),y=e(46573),m=p("isConcatSpreadable"),b=y>=51||!i(function(){var R=[];return R[m]=!1,R.concat()[0]!==R}),S=function(R){if(!c(R))return!1;var A=R[m];return A!==void 0?!!A:l(R)},k=!b||!x("concat");r({target:"Array",proto:!0,arity:1,forced:k},{concat:function(A){var P=f(this),M=a(P,0),B=0,N,K,H,W,ae;for(N=-1,H=arguments.length;N<H;N++)if(ae=N===-1?P:arguments[N],S(ae))for(W=o(ae),h(B+W),K=0;K<W;K++,B++)K in ae&&u(M,B,ae[K]);else h(B+1),u(M,B++,ae);return M.length=B,M}})},26425:function(d,v,e){"use strict";var r=e(94488),i=e(92670),l=e(81181);r({target:"Array",proto:!0},{copyWithin:i}),l("copyWithin")},32125:function(d,v,e){"use strict";var r=e(94488),i=e(90560).every,l=e(45601),c=l("every");r({target:"Array",proto:!0,forced:!c},{every:function(o){return i(this,o,arguments.length>1?arguments[1]:void 0)}})},16137:function(d,v,e){"use strict";var r=e(94488),i=e(75202),l=e(81181);r({target:"Array",proto:!0},{fill:i}),l("fill")},48435:function(d,v,e){"use strict";var r=e(94488),i=e(90560).filter,l=e(17480),c=l("filter");r({target:"Array",proto:!0,forced:!c},{filter:function(o){return i(this,o,arguments.length>1?arguments[1]:void 0)}})},70365:function(d,v,e){"use strict";var r=e(94488),i=e(90560).findIndex,l=e(81181),c="findIndex",f=!0;c in[]&&Array(1)[c](function(){f=!1}),r({target:"Array",proto:!0,forced:f},{findIndex:function(h){return i(this,h,arguments.length>1?arguments[1]:void 0)}}),l(c)},17482:function(d,v,e){"use strict";var r=e(94488),i=e(53279).findLastIndex,l=e(81181);r({target:"Array",proto:!0},{findLastIndex:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}}),l("findLastIndex")},33717:function(d,v,e){"use strict";var r=e(94488),i=e(53279).findLast,l=e(81181);r({target:"Array",proto:!0},{findLast:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}}),l("findLast")},11553:function(d,v,e){"use strict";var r=e(94488),i=e(90560).find,l=e(81181),c="find",f=!0;c in[]&&Array(1)[c](function(){f=!1}),r({target:"Array",proto:!0,forced:f},{find:function(h){return i(this,h,arguments.length>1?arguments[1]:void 0)}}),l(c)},65033:function(d,v,e){"use strict";var r=e(94488),i=e(3372),l=e(63335),c=e(94029),f=e(82762),o=e(81427);r({target:"Array",proto:!0},{flatMap:function(u){var a=c(this),x=f(a),p;return l(u),p=o(a,0),p.length=i(p,a,a,x,0,1,u,arguments.length>1?arguments[1]:void 0),p}})},23708:function(d,v,e){"use strict";var r=e(94488),i=e(3372),l=e(94029),c=e(82762),f=e(56902),o=e(81427);r({target:"Array",proto:!0},{flat:function(){var u=arguments.length?arguments[0]:void 0,a=l(this),x=c(a),p=o(a,0);return p.length=i(p,a,a,x,0,u===void 0?1:f(u)),p}})},52732:function(d,v,e){"use strict";var r=e(94488),i=e(59594);r({target:"Array",proto:!0,forced:[].forEach!==i},{forEach:i})},99382:function(d,v,e){"use strict";var r=e(94488),i=e(60255),l=e(35221),c=!l(function(f){Array.from(f)});r({target:"Array",stat:!0,forced:c},{from:i})},88437:function(d,v,e){"use strict";var r=e(94488),i=e(22999).includes,l=e(3338),c=e(81181),f=l(function(){return!Array(1).includes()});r({target:"Array",proto:!0,forced:f},{includes:function(h){return i(this,h,arguments.length>1?arguments[1]:void 0)}}),c("includes")},68440:function(d,v,e){"use strict";var r=e(94488),i=e(34114),l=e(22999).indexOf,c=e(45601),f=i([].indexOf),o=!!f&&1/f([1],1,-0)<0,h=o||!c("indexOf");r({target:"Array",proto:!0,forced:h},{indexOf:function(a){var x=arguments.length>1?arguments[1]:void 0;return o?f(this,a,x)||0:l(this,a,x)}})},13412:function(d,v,e){"use strict";var r=e(94488),i=e(18589);r({target:"Array",stat:!0},{isArray:i})},11005:function(d,v,e){"use strict";var r=e(80524),i=e(81181),l=e(48074),c=e(94844),f=e(37691).f,o=e(24019),h=e(25587),u=e(16697),a=e(35454),x="Array Iterator",p=c.set,y=c.getterFor(x);d.exports=o(Array,"Array",function(b,S){p(this,{type:x,target:r(b),index:0,kind:S})},function(){var b=y(this),S=b.target,k=b.index++;if(!S||k>=S.length)return b.target=void 0,h(void 0,!0);switch(b.kind){case"keys":return h(k,!1);case"values":return h(S[k],!1)}return h([k,S[k]],!1)},"values");var m=l.Arguments=l.Array;if(i("keys"),i("values"),i("entries"),!u&&a&&m.name!=="values")try{f(m,"name",{value:"values"})}catch(b){}},70348:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(1835),c=e(80524),f=e(45601),o=i([].join),h=l!==Object,u=h||!f("join",",");r({target:"Array",proto:!0,forced:u},{join:function(x){return o(c(this),x===void 0?",":x)}})},19801:function(d,v,e){"use strict";var r=e(94488),i=e(55009);r({target:"Array",proto:!0,forced:i!==[].lastIndexOf},{lastIndexOf:i})},91550:function(d,v,e){"use strict";var r=e(94488),i=e(90560).map,l=e(17480),c=l("map");r({target:"Array",proto:!0,forced:!c},{map:function(o){return i(this,o,arguments.length>1?arguments[1]:void 0)}})},85223:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(39812),c=e(69392),f=Array,o=i(function(){function h(){}return!(f.of.call(h)instanceof h)});r({target:"Array",stat:!0,forced:o},{of:function(){for(var u=0,a=arguments.length,x=new(l(this)?this:f)(a);a>u;)c(x,u,arguments[u++]);return x.length=a,x}})},7154:function(d,v,e){"use strict";var r=e(94488),i=e(94029),l=e(82762),c=e(39428),f=e(66434),o=e(3338),h=o(function(){return[].push.call({length:4294967296},1)!==4294967297}),u=function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(x){return x instanceof TypeError}},a=h||!u();r({target:"Array",proto:!0,arity:1,forced:a},{push:function(p){var y=i(this),m=l(y),b=arguments.length;f(m+b);for(var S=0;S<b;S++)y[m]=arguments[S],m++;return c(y,m),m}})},96009:function(d,v,e){"use strict";var r=e(94488),i=e(16370).right,l=e(45601),c=e(46573),f=e(90946),o=!f&&c>79&&c<83,h=o||!l("reduceRight");r({target:"Array",proto:!0,forced:h},{reduceRight:function(a){return i(this,a,arguments.length,arguments.length>1?arguments[1]:void 0)}})},67788:function(d,v,e){"use strict";var r=e(94488),i=e(16370).left,l=e(45601),c=e(46573),f=e(90946),o=!f&&c>79&&c<83,h=o||!l("reduce");r({target:"Array",proto:!0,forced:h},{reduce:function(a){var x=arguments.length;return i(this,a,x,x>1?arguments[1]:void 0)}})},9402:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(18589),c=i([].reverse),f=[1,2];r({target:"Array",proto:!0,forced:String(f)===String(f.reverse())},{reverse:function(){return l(this)&&(this.length=this.length),c(this)}})},62489:function(d,v,e){"use strict";var r=e(94488),i=e(18589),l=e(39812),c=e(31946),f=e(51981),o=e(82762),h=e(80524),u=e(69392),a=e(59893),x=e(17480),p=e(30867),y=x("slice"),m=a("species"),b=Array,S=Math.max;r({target:"Array",proto:!0,forced:!y},{slice:function(R,A){var P=h(this),M=o(P),B=f(R,M),N=f(A===void 0?M:A,M),K,H,W;if(i(P)&&(K=P.constructor,l(K)&&(K===b||i(K.prototype))?K=void 0:c(K)&&(K=K[m],K===null&&(K=void 0)),K===b||K===void 0))return p(P,B,N);for(H=new(K===void 0?b:K)(S(N-B,0)),W=0;B<N;B++,W++)B in P&&u(H,W,P[B]);return H.length=W,H}})},80881:function(d,v,e){"use strict";var r=e(94488),i=e(90560).some,l=e(45601),c=l("some");r({target:"Array",proto:!0,forced:!c},{some:function(o){return i(this,o,arguments.length>1?arguments[1]:void 0)}})},62837:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(63335),c=e(94029),f=e(82762),o=e(84233),h=e(69905),u=e(3338),a=e(63668),x=e(45601),p=e(78177),y=e(17687),m=e(46573),b=e(19684),S=[],k=i(S.sort),R=i(S.push),A=u(function(){S.sort(void 0)}),P=u(function(){S.sort(null)}),M=x("sort"),B=!u(function(){if(m)return m<70;if(!(p&&p>3)){if(y)return!0;if(b)return b<603;var H="",W,ae,ne,oe;for(W=65;W<76;W++){switch(ae=String.fromCharCode(W),W){case 66:case 69:case 70:case 72:ne=3;break;case 68:case 71:ne=4;break;default:ne=2}for(oe=0;oe<47;oe++)S.push({k:ae+oe,v:ne})}for(S.sort(function(q,X){return X.v-q.v}),oe=0;oe<S.length;oe++)ae=S[oe].k.charAt(0),H.charAt(H.length-1)!==ae&&(H+=ae);return H!=="DGBEFHACIJK"}}),N=A||!P||!M||!B,K=function(H){return function(W,ae){return ae===void 0?-1:W===void 0?1:H!==void 0?+H(W,ae)||0:h(W)>h(ae)?1:-1}};r({target:"Array",proto:!0,forced:N},{sort:function(W){W!==void 0&&l(W);var ae=c(this);if(B)return W===void 0?k(ae):k(ae,W);var ne=[],oe=f(ae),q,X;for(X=0;X<oe;X++)X in ae&&R(ne,ae[X]);for(a(ne,K(W)),q=f(ne),X=0;X<q;)ae[X]=ne[X++];for(;X<oe;)o(ae,X++);return ae}})},4705:function(d,v,e){"use strict";var r=e(51996);r("Array")},13941:function(d,v,e){"use strict";var r=e(94488),i=e(94029),l=e(51981),c=e(56902),f=e(82762),o=e(39428),h=e(66434),u=e(81427),a=e(69392),x=e(84233),p=e(17480),y=p("splice"),m=Math.max,b=Math.min;r({target:"Array",proto:!0,forced:!y},{splice:function(k,R){var A=i(this),P=f(A),M=l(k,P),B=arguments.length,N,K,H,W,ae,ne;for(B===0?N=K=0:B===1?(N=0,K=P-M):(N=B-2,K=b(m(c(R),0),P-M)),h(P+N-K),H=u(A,K),W=0;W<K;W++)ae=M+W,ae in A&&a(H,W,A[ae]);if(H.length=K,N<K){for(W=M;W<P-K;W++)ae=W+K,ne=W+N,ae in A?A[ne]=A[ae]:x(A,ne);for(W=P;W>P-K+N;W--)x(A,W-1)}else if(N>K)for(W=P-K;W>M;W--)ae=W+K-1,ne=W+N-1,ae in A?A[ne]=A[ae]:x(A,ne);for(W=0;W<N;W++)A[W+M]=arguments[W+2];return o(A,P-K+N),H}})},1148:function(d,v,e){"use strict";var r=e(94488),i=e(85903),l=e(80524),c=e(81181),f=Array;r({target:"Array",proto:!0},{toReversed:function(){return i(l(this),f)}}),c("toReversed")},82445:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(63335),c=e(80524),f=e(69478),o=e(55174),h=e(81181),u=Array,a=i(o("Array","sort"));r({target:"Array",proto:!0},{toSorted:function(p){p!==void 0&&l(p);var y=c(this),m=f(u,y);return a(m,p)}}),h("toSorted")},27267:function(d,v,e){"use strict";var r=e(94488),i=e(81181),l=e(66434),c=e(82762),f=e(51981),o=e(80524),h=e(56902),u=Array,a=Math.max,x=Math.min;r({target:"Array",proto:!0},{toSpliced:function(y,m){var b=o(this),S=c(b),k=f(y,S),R=arguments.length,A=0,P,M,B,N;for(R===0?P=M=0:R===1?(P=0,M=S-k):(P=R-2,M=x(a(h(m),0),S-k)),B=l(S+P-M),N=u(B);A<k;A++)N[A]=b[A];for(;A<k+P;A++)N[A]=arguments[A-k+2];for(;A<B;A++)N[A]=b[A+M-P];return N}}),i("toSpliced")},90308:function(d,v,e){"use strict";var r=e(81181);r("flatMap")},96353:function(d,v,e){"use strict";var r=e(81181);r("flat")},84818:function(d,v,e){"use strict";var r=e(94488),i=e(94029),l=e(82762),c=e(39428),f=e(84233),o=e(66434),h=[].unshift(0)!==1,u=function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(x){return x instanceof TypeError}},a=h||!u();r({target:"Array",proto:!0,arity:1,forced:a},{unshift:function(p){var y=i(this),m=l(y),b=arguments.length;if(b){o(m+b);for(var S=m;S--;){var k=S+b;S in y?y[k]=y[S]:f(y,k)}for(var R=0;R<b;R++)y[R]=arguments[R]}return c(y,m+b)}})},80585:function(d,v,e){"use strict";var r=e(94488),i=e(82041),l=e(80524),c=Array;r({target:"Array",proto:!0},{with:function(f,o){return i(l(this),c,f,o)}})},40194:function(d,v,e){"use strict";var r=e(94488),i=e(91669),l=e(3737);r({global:!0,constructor:!0,forced:!l},{DataView:i.DataView})},22112:function(d,v,e){"use strict";e(40194)},81440:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(3338),c=l(function(){return new Date(16e11).getYear()!==120}),f=i(Date.prototype.getFullYear);r({target:"Date",proto:!0,forced:c},{getYear:function(){return f(this)-1900}})},25430:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=Date,c=i(l.prototype.getTime);r({target:"Date",stat:!0},{now:function(){return c(new l)}})},70105:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(56902),c=Date.prototype,f=i(c.getTime),o=i(c.setFullYear);r({target:"Date",proto:!0},{setYear:function(u){f(this);var a=l(u),x=a>=0&&a<=99?a+1900:a;return o(this,x)}})},71390:function(d,v,e){"use strict";var r=e(94488);r({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString})},96844:function(d,v,e){"use strict";var r=e(94488),i=e(32494);r({target:"Date",proto:!0,forced:Date.prototype.toISOString!==i},{toISOString:i})},83578:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(94029),c=e(97954),f=i(function(){return new Date(NaN).toJSON()!==null||Date.prototype.toJSON.call({toISOString:function(){return 1}})!==1});r({target:"Date",proto:!0,arity:1,forced:f},{toJSON:function(h){var u=l(this),a=c(u,"number");return typeof a=="number"&&!isFinite(a)?null:u.toISOString()}})},69762:function(d,v,e){"use strict";var r=e(32621),i=e(2291),l=e(77119),c=e(59893),f=c("toPrimitive"),o=Date.prototype;r(o,f)||i(o,f,l)},76880:function(d,v,e){"use strict";var r=e(94237),i=e(2291),l=Date.prototype,c="Invalid Date",f="toString",o=r(l[f]),h=r(l.getTime);String(new Date(NaN))!==c&&i(l,f,function(){var a=h(this);return a===a?o(this):c})},31808:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(13743),c=e(78540),f="WebAssembly",o=i[f],h=new Error("e",{cause:7}).cause!==7,u=function(x,p){var y={};y[x]=c(x,p,h),r({global:!0,constructor:!0,arity:1,forced:h},y)},a=function(x,p){if(o&&o[x]){var y={};y[x]=c(f+"."+x,p,h),r({target:f,stat:!0,constructor:!0,arity:1,forced:h},y)}};u("Error",function(x){return function(y){return l(x,this,arguments)}}),u("EvalError",function(x){return function(y){return l(x,this,arguments)}}),u("RangeError",function(x){return function(y){return l(x,this,arguments)}}),u("ReferenceError",function(x){return function(y){return l(x,this,arguments)}}),u("SyntaxError",function(x){return function(y){return l(x,this,arguments)}}),u("TypeError",function(x){return function(y){return l(x,this,arguments)}}),u("URIError",function(x){return function(y){return l(x,this,arguments)}}),a("CompileError",function(x){return function(y){return l(x,this,arguments)}}),a("LinkError",function(x){return function(y){return l(x,this,arguments)}}),a("RuntimeError",function(x){return function(y){return l(x,this,arguments)}})},99953:function(d,v,e){"use strict";var r=e(2291),i=e(13367),l=Error.prototype;l.toString!==i&&r(l,"toString",i)},65009:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(69905),c=i("".charAt),f=i("".charCodeAt),o=i(/./.exec),h=i(1 .toString),u=i("".toUpperCase),a=/[\w*+\-./@]/,x=function(p,y){for(var m=h(p,16);m.length<y;)m="0"+m;return m};r({global:!0},{escape:function(y){for(var m=l(y),b="",S=m.length,k=0,R,A;k<S;)R=c(m,k++),o(a,R)?b+=R:(A=f(R,0),A<256?b+="%"+x(A,2):b+="%u"+u(x(A,4)));return b}})},28796:function(d,v,e){"use strict";var r=e(94488),i=e(4645);r({target:"Function",proto:!0,forced:Function.bind!==i},{bind:i})},56450:function(d,v,e){"use strict";var r=e(55327),i=e(31946),l=e(37691),c=e(53456),f=e(59893),o=e(86528),h=f("hasInstance"),u=Function.prototype;h in u||l.f(u,h,{value:o(function(a){if(!r(this)||!i(a))return!1;var x=this.prototype;if(!i(x))return a instanceof this;for(;a=c(a);)if(x===a)return!0;return!1},h)})},78342:function(d,v,e){"use strict";var r=e(35454),i=e(8090).EXISTS,l=e(94237),c=e(64110),f=Function.prototype,o=l(f.toString),h=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,u=l(h.exec),a="name";r&&!i&&c(f,a,{configurable:!0,get:function(){try{return u(h,o(this))[1]}catch(x){return""}}})},13161:function(d,v,e){"use strict";var r=e(94488),i=e(92916);r({global:!0,forced:i.globalThis!==i},{globalThis:i})},54226:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(13743),c=e(89945),f=e(94237),o=e(3338),h=e(55327),u=e(18446),a=e(30867),x=e(65451),p=e(42820),y=String,m=i("JSON","stringify"),b=f(/./.exec),S=f("".charAt),k=f("".charCodeAt),R=f("".replace),A=f(1 .toString),P=/[\uD800-\uDFFF]/g,M=/^[\uD800-\uDBFF]$/,B=/^[\uDC00-\uDFFF]$/,N=!p||o(function(){var ae=i("Symbol")("stringify detection");return m([ae])!=="[null]"||m({a:ae})!=="{}"||m(Object(ae))!=="{}"}),K=o(function(){return m("\uDF06\uD834")!=='"\\udf06\\ud834"'||m("\uDEAD")!=='"\\udead"'}),H=function(ae,ne){var oe=a(arguments),q=x(ne);if(!(!h(q)&&(ae===void 0||u(ae))))return oe[1]=function(X,V){if(h(q)&&(V=c(q,this,y(X),V)),!u(V))return V},l(m,null,oe)},W=function(ae,ne,oe){var q=S(oe,ne-1),X=S(oe,ne+1);return b(M,ae)&&!b(B,X)||b(B,ae)&&!b(M,q)?"\\u"+A(k(ae,0),16):ae};m&&r({target:"JSON",stat:!0,arity:3,forced:N||K},{stringify:function(ne,oe,q){var X=a(arguments),V=l(N?H:m,null,X);return K&&typeof V=="string"?R(V,P,W):V}})},70201:function(d,v,e){"use strict";var r=e(92916),i=e(94573);i(r.JSON,"JSON",!0)},44781:function(d,v,e){"use strict";var r=e(48059),i=e(40942);r("Map",function(l){return function(){return l(this,arguments.length?arguments[0]:void 0)}},i)},85671:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(63335),c=e(95955),f=e(62003),o=e(2786),h=e(16697),u=o.Map,a=o.has,x=o.get,p=o.set,y=i([].push);r({target:"Map",stat:!0,forced:h},{groupBy:function(b,S){c(b),l(S);var k=new u,R=0;return f(b,function(A){var P=S(A,R++);a(k,P)?y(x(k,P),A):p(k,P,[A])}),k}})},34941:function(d,v,e){"use strict";e(44781)},35152:function(d,v,e){"use strict";var r=e(94488),i=e(25726),l=Math.acosh,c=Math.log,f=Math.sqrt,o=Math.LN2,h=!l||Math.floor(l(Number.MAX_VALUE))!==710||l(1/0)!==1/0;r({target:"Math",stat:!0,forced:h},{acosh:function(a){var x=+a;return x<1?NaN:x>9490626562425156e-8?c(x)+o:i(x-1+f(x-1)*f(x+1))}})},85660:function(d,v,e){"use strict";var r=e(94488),i=Math.asinh,l=Math.log,c=Math.sqrt;function f(h){var u=+h;return!isFinite(u)||u===0?u:u<0?-f(-u):l(u+c(u*u+1))}var o=!(i&&1/i(0)>0);r({target:"Math",stat:!0,forced:o},{asinh:f})},80031:function(d,v,e){"use strict";var r=e(94488),i=Math.atanh,l=Math.log,c=!(i&&1/i(-0)<0);r({target:"Math",stat:!0,forced:c},{atanh:function(o){var h=+o;return h===0?h:l((1+h)/(1-h))/2}})},34434:function(d,v,e){"use strict";var r=e(94488),i=e(37666),l=Math.abs,c=Math.pow;r({target:"Math",stat:!0},{cbrt:function(o){var h=+o;return i(h)*c(l(h),.3333333333333333)}})},83579:function(d,v,e){"use strict";var r=e(94488),i=Math.floor,l=Math.log,c=Math.LOG2E;r({target:"Math",stat:!0},{clz32:function(o){var h=o>>>0;return h?31-i(l(h+.5)*c):32}})},74307:function(d,v,e){"use strict";var r=e(94488),i=e(10014),l=Math.cosh,c=Math.abs,f=Math.E,o=!l||l(710)===1/0;r({target:"Math",stat:!0,forced:o},{cosh:function(u){var a=i(c(u)-1)+1;return(a+1/(a*f*f))*(f/2)}})},97423:function(d,v,e){"use strict";var r=e(94488),i=e(10014);r({target:"Math",stat:!0,forced:i!==Math.expm1},{expm1:i})},93321:function(d,v,e){"use strict";var r=e(94488),i=e(14894);r({target:"Math",stat:!0},{fround:i})},82277:function(d,v,e){"use strict";var r=e(94488),i=Math.hypot,l=Math.abs,c=Math.sqrt,f=!!i&&i(1/0,NaN)!==1/0;r({target:"Math",stat:!0,arity:2,forced:f},{hypot:function(h,u){for(var a=0,x=0,p=arguments.length,y=0,m,b;x<p;)m=l(arguments[x++]),y<m?(b=y/m,a=a*b*b+1,y=m):m>0?(b=m/y,a+=b*b):a+=m;return y===1/0?1/0:y*c(a)}})},61425:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=Math.imul,c=i(function(){return l(4294967295,5)!==-5||l.length!==2});r({target:"Math",stat:!0,forced:c},{imul:function(o,h){var u=65535,a=+o,x=+h,p=u&a,y=u&x;return 0|p*y+((u&a>>>16)*y+p*(u&x>>>16)<<16>>>0)}})},61873:function(d,v,e){"use strict";var r=e(94488),i=e(53309);r({target:"Math",stat:!0},{log10:i})},9307:function(d,v,e){"use strict";var r=e(94488),i=e(25726);r({target:"Math",stat:!0},{log1p:i})},8821:function(d,v,e){"use strict";var r=e(94488),i=Math.log,l=Math.LN2;r({target:"Math",stat:!0},{log2:function(f){return i(f)/l}})},64385:function(d,v,e){"use strict";var r=e(94488),i=e(37666);r({target:"Math",stat:!0},{sign:i})},64099:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(10014),c=Math.abs,f=Math.exp,o=Math.E,h=i(function(){return Math.sinh(-2e-17)!==-2e-17});r({target:"Math",stat:!0,forced:h},{sinh:function(a){var x=+a;return c(x)<1?(l(x)-l(-x))/2:(f(x-1)-f(-x-1))*(o/2)}})},62455:function(d,v,e){"use strict";var r=e(94488),i=e(10014),l=Math.exp;r({target:"Math",stat:!0},{tanh:function(f){var o=+f,h=i(o),u=i(-o);return h===1/0?1:u===1/0?-1:(h-u)/(l(o)+l(-o))}})},79965:function(d,v,e){"use strict";var r=e(94573);r(Math,"Math",!0)},59118:function(d,v,e){"use strict";var r=e(94488),i=e(3312);r({target:"Math",stat:!0},{trunc:i})},275:function(d,v,e){"use strict";var r=e(94488),i=e(16697),l=e(35454),c=e(92916),f=e(9699),o=e(94237),h=e(20865),u=e(32621),a=e(25576),x=e(16332),p=e(18446),y=e(97954),m=e(3338),b=e(80689).f,S=e(71256).f,k=e(37691).f,R=e(49228),A=e(52971).trim,P="Number",M=c[P],B=f[P],N=M.prototype,K=c.TypeError,H=o("".slice),W=o("".charCodeAt),ae=function(se){var ee=y(se,"number");return typeof ee=="bigint"?ee:ne(ee)},ne=function(se){var ee=y(se,"number"),J,le,z,j,ie,me,Se,Ie;if(p(ee))throw new K("Cannot convert a Symbol value to a number");if(typeof ee=="string"&&ee.length>2){if(ee=A(ee),J=W(ee,0),J===43||J===45){if(le=W(ee,2),le===88||le===120)return NaN}else if(J===48){switch(W(ee,1)){case 66:case 98:z=2,j=49;break;case 79:case 111:z=8,j=55;break;default:return+ee}for(ie=H(ee,2),me=ie.length,Se=0;Se<me;Se++)if(Ie=W(ie,Se),Ie<48||Ie>j)return NaN;return parseInt(ie,z)}}return+ee},oe=h(P,!M(" 0o1")||!M("0b1")||M("+0x1")),q=function(se){return x(N,se)&&m(function(){R(se)})},X=function(ee){var J=arguments.length<1?0:M(ae(ee));return q(this)?a(Object(J),this,X):J};X.prototype=N,oe&&!i&&(N.constructor=X),r({global:!0,constructor:!0,wrap:!0,forced:oe},{Number:X});var V=function(se,ee){for(var J=l?b(ee):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),le=0,z;J.length>le;le++)u(ee,z=J[le])&&!u(se,z)&&k(se,z,S(ee,z))};i&&B&&V(f[P],B),(oe||i)&&V(f[P],M)},31919:function(d,v,e){"use strict";var r=e(94488);r({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},51284:function(d,v,e){"use strict";var r=e(94488),i=e(1222);r({target:"Number",stat:!0},{isFinite:i})},10177:function(d,v,e){"use strict";var r=e(94488),i=e(62896);r({target:"Number",stat:!0},{isInteger:i})},85690:function(d,v,e){"use strict";var r=e(94488);r({target:"Number",stat:!0},{isNaN:function(l){return l!==l}})},92114:function(d,v,e){"use strict";var r=e(94488),i=e(62896),l=Math.abs;r({target:"Number",stat:!0},{isSafeInteger:function(f){return i(f)&&l(f)<=9007199254740991}})},1017:function(d,v,e){"use strict";var r=e(94488);r({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991})},14480:function(d,v,e){"use strict";var r=e(94488);r({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991})},40516:function(d,v,e){"use strict";var r=e(94488),i=e(31280);r({target:"Number",stat:!0,forced:Number.parseFloat!==i},{parseFloat:i})},76345:function(d,v,e){"use strict";var r=e(94488),i=e(52446);r({target:"Number",stat:!0,forced:Number.parseInt!==i},{parseInt:i})},7282:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(56902),c=e(49228),f=e(71049),o=e(53309),h=e(3338),u=RangeError,a=String,x=isFinite,p=Math.abs,y=Math.floor,m=Math.pow,b=Math.round,S=i(1 .toExponential),k=i(f),R=i("".slice),A=S(-69e-12,4)==="-6.9000e-11"&&S(1.255,2)==="1.25e+0"&&S(12345,3)==="1.235e+4"&&S(25,0)==="3e+1",P=function(){return h(function(){S(1,1/0)})&&h(function(){S(1,-1/0)})},M=function(){return!h(function(){S(1/0,1/0),S(NaN,1/0)})},B=!A||!P()||!M();r({target:"Number",proto:!0,forced:B},{toExponential:function(K){var H=c(this);if(K===void 0)return S(H);var W=l(K);if(!x(H))return String(H);if(W<0||W>20)throw new u("Incorrect fraction digits");if(A)return S(H,W);var ae="",ne="",oe=0,q="",X="";if(H<0&&(ae="-",H=-H),H===0)oe=0,ne=k("0",W+1);else{var V=o(H);oe=y(V);var se=0,ee=m(10,oe-W);se=b(H/ee),2*H>=(2*se+1)*ee&&(se+=1),se>=m(10,W+1)&&(se/=10,oe+=1),ne=a(se)}return W!==0&&(ne=R(ne,0,1)+"."+R(ne,1)),oe===0?(q="+",X="0"):(q=oe>0?"+":"-",X=a(p(oe))),ne+="e"+q+X,ae+ne}})},58055:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(56902),c=e(49228),f=e(71049),o=e(3338),h=RangeError,u=String,a=Math.floor,x=i(f),p=i("".slice),y=i(1 .toFixed),m=function(P,M,B){return M===0?B:M%2===1?m(P,M-1,B*P):m(P*P,M/2,B)},b=function(P){for(var M=0,B=P;B>=4096;)M+=12,B/=4096;for(;B>=2;)M+=1,B/=2;return M},S=function(P,M,B){for(var N=-1,K=B;++N<6;)K+=M*P[N],P[N]=K%1e7,K=a(K/1e7)},k=function(P,M){for(var B=6,N=0;--B>=0;)N+=P[B],P[B]=a(N/M),N=N%M*1e7},R=function(P){for(var M=6,B="";--M>=0;)if(B!==""||M===0||P[M]!==0){var N=u(P[M]);B=B===""?N:B+x("0",7-N.length)+N}return B},A=o(function(){return y(8e-5,3)!=="0.000"||y(.9,0)!=="1"||y(1.255,2)!=="1.25"||y(0xde0b6b3a7640080,0)!=="1000000000000000128"})||!o(function(){y({})});r({target:"Number",proto:!0,forced:A},{toFixed:function(M){var B=c(this),N=l(M),K=[0,0,0,0,0,0],H="",W="0",ae,ne,oe,q;if(N<0||N>20)throw new h("Incorrect fraction digits");if(B!==B)return"NaN";if(B<=-1e21||B>=1e21)return u(B);if(B<0&&(H="-",B=-B),B>1e-21)if(ae=b(B*m(2,69,1))-69,ne=ae<0?B*m(2,-ae,1):B/m(2,ae,1),ne*=4503599627370496,ae=52-ae,ae>0){for(S(K,0,ne),oe=N;oe>=7;)S(K,1e7,0),oe-=7;for(S(K,m(10,oe,1),0),oe=ae-1;oe>=23;)k(K,8388608),oe-=23;k(K,1<<oe),S(K,1,1),k(K,2),W=R(K)}else S(K,0,ne),S(K,1<<-ae,0),W=R(K)+x("0",N);return N>0?(q=W.length,W=H+(q<=N?"0."+x("0",N-q)+W:p(W,0,q-N)+"."+p(W,q-N))):W=H+W,W}})},93547:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(3338),c=e(49228),f=i(1 .toPrecision),o=l(function(){return f(1,void 0)!=="1"})||!l(function(){f({})});r({target:"Number",proto:!0,forced:o},{toPrecision:function(u){return u===void 0?f(c(this)):f(c(this),u)}})},31237:function(d,v,e){"use strict";var r=e(94488),i=e(80530);r({target:"Object",stat:!0,arity:2,forced:Object.assign!==i},{assign:i})},17954:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(20132);r({target:"Object",stat:!0,sham:!i},{create:l})},58580:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(25837),c=e(63335),f=e(94029),o=e(37691);i&&r({target:"Object",proto:!0,forced:l},{__defineGetter__:function(u,a){o.f(f(this),u,{get:c(a),enumerable:!0,configurable:!0})}})},47146:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(55666).f;r({target:"Object",stat:!0,forced:Object.defineProperties!==l,sham:!i},{defineProperties:l})},40416:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(37691).f;r({target:"Object",stat:!0,forced:Object.defineProperty!==l,sham:!i},{defineProperty:l})},7615:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(25837),c=e(63335),f=e(94029),o=e(37691);i&&r({target:"Object",proto:!0,forced:l},{__defineSetter__:function(u,a){o.f(f(this),u,{set:c(a),enumerable:!0,configurable:!0})}})},72820:function(d,v,e){"use strict";var r=e(94488),i=e(88698).entries;r({target:"Object",stat:!0},{entries:function(c){return i(c)}})},86070:function(d,v,e){"use strict";var r=e(94488),i=e(13247),l=e(3338),c=e(31946),f=e(2074).onFreeze,o=Object.freeze,h=l(function(){o(1)});r({target:"Object",stat:!0,forced:h,sham:!i},{freeze:function(a){return o&&c(a)?o(f(a)):a}})},23569:function(d,v,e){"use strict";var r=e(94488),i=e(62003),l=e(69392);r({target:"Object",stat:!0},{fromEntries:function(f){var o={};return i(f,function(h,u){l(o,h,u)},{AS_ENTRIES:!0}),o}})},55639:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(80524),c=e(71256).f,f=e(35454),o=!f||i(function(){c(1)});r({target:"Object",stat:!0,forced:o,sham:!f},{getOwnPropertyDescriptor:function(u,a){return c(l(u),a)}})},63046:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(48662),c=e(80524),f=e(71256),o=e(69392);r({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(u){for(var a=c(u),x=f.f,p=l(a),y={},m=0,b,S;p.length>m;)S=x(a,b=p[m++]),S!==void 0&&o(y,b,S);return y}})},464:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(53393).f,c=i(function(){return!Object.getOwnPropertyNames(1)});r({target:"Object",stat:!0,forced:c},{getOwnPropertyNames:l})},67936:function(d,v,e){"use strict";var r=e(94488),i=e(42820),l=e(3338),c=e(92635),f=e(94029),o=!i||l(function(){c.f(1)});r({target:"Object",stat:!0,forced:o},{getOwnPropertySymbols:function(u){var a=c.f;return a?a(f(u)):[]}})},51082:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(94029),c=e(53456),f=e(4870),o=i(function(){c(1)});r({target:"Object",stat:!0,forced:o,sham:!f},{getPrototypeOf:function(u){return c(l(u))}})},83850:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(94237),c=e(63335),f=e(95955),o=e(17818),h=e(62003),u=i("Object","create"),a=l([].push);r({target:"Object",stat:!0},{groupBy:function(p,y){f(p),c(y);var m=u(null),b=0;return h(p,function(S){var k=o(y(S,b++));k in m?a(m[k],S):m[k]=[S]}),m}})},41990:function(d,v,e){"use strict";var r=e(94488),i=e(32621);r({target:"Object",stat:!0},{hasOwn:i})},55888:function(d,v,e){"use strict";var r=e(94488),i=e(12477);r({target:"Object",stat:!0,forced:Object.isExtensible!==i},{isExtensible:i})},53827:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(31946),c=e(29076),f=e(51424),o=Object.isFrozen,h=f||i(function(){o(1)});r({target:"Object",stat:!0,forced:h},{isFrozen:function(a){return!l(a)||f&&c(a)==="ArrayBuffer"?!0:o?o(a):!1}})},78143:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(31946),c=e(29076),f=e(51424),o=Object.isSealed,h=f||i(function(){o(1)});r({target:"Object",stat:!0,forced:h},{isSealed:function(a){return!l(a)||f&&c(a)==="ArrayBuffer"?!0:o?o(a):!1}})},15787:function(d,v,e){"use strict";var r=e(94488),i=e(5370);r({target:"Object",stat:!0},{is:i})},66419:function(d,v,e){"use strict";var r=e(94488),i=e(94029),l=e(7733),c=e(3338),f=c(function(){l(1)});r({target:"Object",stat:!0,forced:f},{keys:function(h){return l(i(h))}})},75765:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(25837),c=e(94029),f=e(17818),o=e(53456),h=e(71256).f;i&&r({target:"Object",proto:!0,forced:l},{__lookupGetter__:function(a){var x=c(this),p=f(a),y;do if(y=h(x,p))return y.get;while(x=o(x))}})},14645:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(25837),c=e(94029),f=e(17818),o=e(53456),h=e(71256).f;i&&r({target:"Object",proto:!0,forced:l},{__lookupSetter__:function(a){var x=c(this),p=f(a),y;do if(y=h(x,p))return y.set;while(x=o(x))}})},71122:function(d,v,e){"use strict";var r=e(94488),i=e(31946),l=e(2074).onFreeze,c=e(13247),f=e(3338),o=Object.preventExtensions,h=f(function(){o(1)});r({target:"Object",stat:!0,forced:h,sham:!c},{preventExtensions:function(a){return o&&i(a)?o(l(a)):a}})},42084:function(d,v,e){"use strict";var r=e(35454),i=e(64110),l=e(31946),c=e(94029),f=e(95955),o=Object.getPrototypeOf,h=Object.setPrototypeOf,u=Object.prototype,a="__proto__";if(r&&o&&h&&!(a in u))try{i(u,a,{configurable:!0,get:function(){return o(c(this))},set:function(p){var y=f(this);!l(p)&&p!==null||!l(y)||h(y,p)}})}catch(x){}},25070:function(d,v,e){"use strict";var r=e(94488),i=e(31946),l=e(2074).onFreeze,c=e(13247),f=e(3338),o=Object.seal,h=f(function(){o(1)});r({target:"Object",stat:!0,forced:h,sham:!c},{seal:function(a){return o&&i(a)?o(l(a)):a}})},77140:function(d,v,e){"use strict";var r=e(94488),i=e(58218);r({target:"Object",stat:!0},{setPrototypeOf:i})},15954:function(d,v,e){"use strict";var r=e(68527),i=e(2291),l=e(28488);r||i(Object.prototype,"toString",l,{unsafe:!0})},4266:function(d,v,e){"use strict";var r=e(94488),i=e(88698).values;r({target:"Object",stat:!0},{values:function(c){return i(c)}})},49988:function(d,v,e){"use strict";var r=e(94488),i=e(31280);r({global:!0,forced:parseFloat!==i},{parseFloat:i})},38823:function(d,v,e){"use strict";var r=e(94488),i=e(52446);r({global:!0,forced:parseInt!==i},{parseInt:i})},4045:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(73446),f=e(80734),o=e(62003),h=e(22093);r({target:"Promise",stat:!0,forced:h},{allSettled:function(a){var x=this,p=c.f(x),y=p.resolve,m=p.reject,b=f(function(){var S=l(x.resolve),k=[],R=0,A=1;o(a,function(P){var M=R++,B=!1;A++,i(S,x,P).then(function(N){B||(B=!0,k[M]={status:"fulfilled",value:N},--A||y(k))},function(N){B||(B=!0,k[M]={status:"rejected",reason:N},--A||y(k))})}),--A||y(k)});return b.error&&m(b.value),p.promise}})},12785:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(73446),f=e(80734),o=e(62003),h=e(22093);r({target:"Promise",stat:!0,forced:h},{all:function(a){var x=this,p=c.f(x),y=p.resolve,m=p.reject,b=f(function(){var S=l(x.resolve),k=[],R=0,A=1;o(a,function(P){var M=R++,B=!1;A++,i(S,x,P).then(function(N){B||(B=!0,k[M]=N,--A||y(k))},m)}),--A||y(k)});return b.error&&m(b.value),p.promise}})},50747:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(65911),f=e(73446),o=e(80734),h=e(62003),u=e(22093),a="No one promise resolved";r({target:"Promise",stat:!0,forced:u},{any:function(p){var y=this,m=c("AggregateError"),b=f.f(y),S=b.resolve,k=b.reject,R=o(function(){var A=l(y.resolve),P=[],M=0,B=1,N=!1;h(p,function(K){var H=M++,W=!1;B++,i(A,y,K).then(function(ae){W||N||(N=!0,S(ae))},function(ae){W||N||(W=!0,P[H]=ae,--B||k(new m(P,a)))})}),--B||k(new m(P,a))});return R.error&&k(R.value),b.promise}})},41902:function(d,v,e){"use strict";var r=e(94488),i=e(16697),l=e(82830).CONSTRUCTOR,c=e(2451),f=e(65911),o=e(55327),h=e(2291),u=c&&c.prototype;if(r({target:"Promise",proto:!0,forced:l,real:!0},{catch:function(x){return this.then(void 0,x)}}),!i&&o(c)){var a=f("Promise").prototype.catch;u.catch!==a&&h(u,"catch",a,{unsafe:!0})}},90366:function(d,v,e){"use strict";var r=e(94488),i=e(16697),l=e(90946),c=e(92916),f=e(89945),o=e(2291),h=e(58218),u=e(94573),a=e(51996),x=e(63335),p=e(55327),y=e(31946),m=e(56472),b=e(60473),S=e(28887).set,k=e(72933),R=e(61810),A=e(80734),P=e(66790),M=e(94844),B=e(2451),N=e(82830),K=e(73446),H="Promise",W=N.CONSTRUCTOR,ae=N.REJECTION_EVENT,ne=N.SUBCLASSING,oe=M.getterFor(H),q=M.set,X=B&&B.prototype,V=B,se=X,ee=c.TypeError,J=c.document,le=c.process,z=K.f,j=z,ie=!!(J&&J.createEvent&&c.dispatchEvent),me="unhandledrejection",Se="rejectionhandled",Ie=0,He=1,je=2,Dt=1,ht=2,It,Zt,Rt,ar,$e=function(Ge){var We;return y(Ge)&&p(We=Ge.then)?We:!1},gt=function(Ge,We){var Xe=We.value,ut=We.state===He,pt=ut?Ge.ok:Ge.fail,or=Ge.resolve,tr=Ge.reject,Me=Ge.domain,tt,Yt,Ot;try{pt?(ut||(We.rejection===ht&&Je(We),We.rejection=Dt),pt===!0?tt=Xe:(Me&&Me.enter(),tt=pt(Xe),Me&&(Me.exit(),Ot=!0)),tt===Ge.promise?tr(new ee("Promise-chain cycle")):(Yt=$e(tt))?f(Yt,tt,or,tr):or(tt)):tr(Xe)}catch(zt){Me&&!Ot&&Me.exit(),tr(zt)}},Mt=function(Ge,We){Ge.notified||(Ge.notified=!0,k(function(){for(var Xe=Ge.reactions,ut;ut=Xe.get();)gt(ut,Ge);Ge.notified=!1,We&&!Ge.rejection&&ft(Ge)}))},et=function(Ge,We,Xe){var ut,pt;ie?(ut=J.createEvent("Event"),ut.promise=We,ut.reason=Xe,ut.initEvent(Ge,!1,!0),c.dispatchEvent(ut)):ut={promise:We,reason:Xe},!ae&&(pt=c["on"+Ge])?pt(ut):Ge===me&&R("Unhandled promise rejection",Xe)},ft=function(Ge){f(S,c,function(){var We=Ge.facade,Xe=Ge.value,ut=ot(Ge),pt;if(ut&&(pt=A(function(){l?le.emit("unhandledRejection",Xe,We):et(me,We,Xe)}),Ge.rejection=l||ot(Ge)?ht:Dt,pt.error))throw pt.value})},ot=function(Ge){return Ge.rejection!==Dt&&!Ge.parent},Je=function(Ge){f(S,c,function(){var We=Ge.facade;l?le.emit("rejectionHandled",We):et(Se,We,Ge.value)})},Ne=function(Ge,We,Xe){return function(ut){Ge(We,ut,Xe)}},ye=function(Ge,We,Xe){Ge.done||(Ge.done=!0,Xe&&(Ge=Xe),Ge.value=We,Ge.state=je,Mt(Ge,!0))},ke=function(Ge,We,Xe){if(!Ge.done){Ge.done=!0,Xe&&(Ge=Xe);try{if(Ge.facade===We)throw new ee("Promise can't be resolved itself");var ut=$e(We);ut?k(function(){var pt={done:!1};try{f(ut,We,Ne(ke,pt,Ge),Ne(ye,pt,Ge))}catch(or){ye(pt,or,Ge)}}):(Ge.value=We,Ge.state=He,Mt(Ge,!1))}catch(pt){ye({done:!1},pt,Ge)}}};if(W&&(V=function(We){m(this,se),x(We),f(It,this);var Xe=oe(this);try{We(Ne(ke,Xe),Ne(ye,Xe))}catch(ut){ye(Xe,ut)}},se=V.prototype,It=function(We){q(this,{type:H,done:!1,notified:!1,parent:!1,reactions:new P,rejection:!1,state:Ie,value:void 0})},It.prototype=o(se,"then",function(We,Xe){var ut=oe(this),pt=z(b(this,V));return ut.parent=!0,pt.ok=p(We)?We:!0,pt.fail=p(Xe)&&Xe,pt.domain=l?le.domain:void 0,ut.state===Ie?ut.reactions.add(pt):k(function(){gt(pt,ut)}),pt.promise}),Zt=function(){var Ge=new It,We=oe(Ge);this.promise=Ge,this.resolve=Ne(ke,We),this.reject=Ne(ye,We)},K.f=z=function(Ge){return Ge===V||Ge===Rt?new Zt(Ge):j(Ge)},!i&&p(B)&&X!==Object.prototype)){ar=X.then,ne||o(X,"then",function(We,Xe){var ut=this;return new V(function(pt,or){f(ar,ut,pt,or)}).then(We,Xe)},{unsafe:!0});try{delete X.constructor}catch(Ge){}h&&h(X,se)}r({global:!0,constructor:!0,wrap:!0,forced:W},{Promise:V}),u(V,H,!1,!0),a(H)},43595:function(d,v,e){"use strict";var r=e(94488),i=e(16697),l=e(2451),c=e(3338),f=e(65911),o=e(55327),h=e(60473),u=e(15597),a=e(2291),x=l&&l.prototype,p=!!l&&c(function(){x.finally.call({then:function(){}},function(){})});if(r({target:"Promise",proto:!0,real:!0,forced:p},{finally:function(m){var b=h(this,f("Promise")),S=o(m);return this.then(S?function(k){return u(b,m()).then(function(){return k})}:m,S?function(k){return u(b,m()).then(function(){throw k})}:m)}}),!i&&o(l)){var y=f("Promise").prototype.finally;x.finally!==y&&a(x,"finally",y,{unsafe:!0})}},24627:function(d,v,e){"use strict";e(90366),e(12785),e(41902),e(20733),e(95693),e(81930)},20733:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(73446),f=e(80734),o=e(62003),h=e(22093);r({target:"Promise",stat:!0,forced:h},{race:function(a){var x=this,p=c.f(x),y=p.reject,m=f(function(){var b=l(x.resolve);o(a,function(S){i(b,x,S).then(p.resolve,y)})});return m.error&&y(m.value),p.promise}})},95693:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(73446),c=e(82830).CONSTRUCTOR;r({target:"Promise",stat:!0,forced:c},{reject:function(o){var h=l.f(this);return i(h.reject,void 0,o),h.promise}})},81930:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(16697),c=e(2451),f=e(82830).CONSTRUCTOR,o=e(15597),h=i("Promise"),u=l&&!f;r({target:"Promise",stat:!0,forced:l||f},{resolve:function(x){return o(u&&this===h?c:this,x)}})},92324:function(d,v,e){"use strict";var r=e(94488),i=e(73446);r({target:"Promise",stat:!0},{withResolvers:function(){var c=i.f(this);return{promise:c.promise,resolve:c.resolve,reject:c.reject}}})},23551:function(d,v,e){"use strict";var r=e(94488),i=e(13743),l=e(63335),c=e(80449),f=e(3338),o=!f(function(){Reflect.apply(function(){})});r({target:"Reflect",stat:!0,forced:o},{apply:function(u,a,x){return i(l(u),a,c(x))}})},74521:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(13743),c=e(4645),f=e(6086),o=e(80449),h=e(31946),u=e(20132),a=e(3338),x=i("Reflect","construct"),p=Object.prototype,y=[].push,m=a(function(){function k(){}return!(x(function(){},[],k)instanceof k)}),b=!a(function(){x(function(){})}),S=m||b;r({target:"Reflect",stat:!0,forced:S,sham:S},{construct:function(R,A){f(R),o(A);var P=arguments.length<3?R:f(arguments[2]);if(b&&!m)return x(R,A,P);if(R===P){switch(A.length){case 0:return new R;case 1:return new R(A[0]);case 2:return new R(A[0],A[1]);case 3:return new R(A[0],A[1],A[2]);case 4:return new R(A[0],A[1],A[2],A[3])}var M=[null];return l(y,M,A),new(l(c,R,M))}var B=P.prototype,N=u(h(B)?B:p),K=l(R,N,A);return h(K)?K:N}})},57891:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(80449),c=e(17818),f=e(37691),o=e(3338),h=o(function(){Reflect.defineProperty(f.f({},1,{value:1}),1,{value:2})});r({target:"Reflect",stat:!0,forced:h,sham:!i},{defineProperty:function(a,x,p){l(a);var y=c(x);l(p);try{return f.f(a,y,p),!0}catch(m){return!1}}})},84138:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(71256).f;r({target:"Reflect",stat:!0},{deleteProperty:function(f,o){var h=l(i(f),o);return h&&!h.configurable?!1:delete f[o]}})},37135:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(80449),c=e(71256);r({target:"Reflect",stat:!0,sham:!i},{getOwnPropertyDescriptor:function(o,h){return c.f(l(o),h)}})},6474:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(53456),c=e(4870);r({target:"Reflect",stat:!0,sham:!c},{getPrototypeOf:function(o){return l(i(o))}})},51832:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(31946),c=e(80449),f=e(60516),o=e(71256),h=e(53456);function u(a,x){var p=arguments.length<3?a:arguments[2],y,m;if(c(a)===p)return a[x];if(y=o.f(a,x),y)return f(y)?y.value:y.get===void 0?void 0:i(y.get,p);if(l(m=h(a)))return u(m,x,p)}r({target:"Reflect",stat:!0},{get:u})},40135:function(d,v,e){"use strict";var r=e(94488);r({target:"Reflect",stat:!0},{has:function(l,c){return c in l}})},7982:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(12477);r({target:"Reflect",stat:!0},{isExtensible:function(f){return i(f),l(f)}})},14893:function(d,v,e){"use strict";var r=e(94488),i=e(48662);r({target:"Reflect",stat:!0},{ownKeys:i})},49233:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(80449),c=e(13247);r({target:"Reflect",stat:!0,sham:!c},{preventExtensions:function(o){l(o);try{var h=i("Object","preventExtensions");return h&&h(o),!0}catch(u){return!1}}})},42844:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(557),c=e(58218);c&&r({target:"Reflect",stat:!0},{setPrototypeOf:function(o,h){i(o),l(h);try{return c(o,h),!0}catch(u){return!1}}})},92130:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(80449),c=e(31946),f=e(60516),o=e(3338),h=e(37691),u=e(71256),a=e(53456),x=e(35012);function p(m,b,S){var k=arguments.length<4?m:arguments[3],R=u.f(l(m),b),A,P,M;if(!R){if(c(P=a(m)))return p(P,b,S,k);R=x(0)}if(f(R)){if(R.writable===!1||!c(k))return!1;if(A=u.f(k,b)){if(A.get||A.set||A.writable===!1)return!1;A.value=S,h.f(k,b,A)}else h.f(k,b,x(0,S))}else{if(M=R.set,M===void 0)return!1;i(M,k,S)}return!0}var y=o(function(){var m=function(){},b=h.f(new m,"a",{configurable:!0});return Reflect.set(m.prototype,"a",1,b)!==!1});r({target:"Reflect",stat:!0,forced:y},{set:p})},6536:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(94573);r({global:!0},{Reflect:{}}),l(i.Reflect,"Reflect",!0)},27228:function(d,v,e){"use strict";var r=e(35454),i=e(92916),l=e(94237),c=e(20865),f=e(25576),o=e(68151),h=e(20132),u=e(80689).f,a=e(16332),x=e(44639),p=e(69905),y=e(81644),m=e(19286),b=e(44166),S=e(2291),k=e(3338),R=e(32621),A=e(94844).enforce,P=e(51996),M=e(59893),B=e(6041),N=e(51224),K=M("match"),H=i.RegExp,W=H.prototype,ae=i.SyntaxError,ne=l(W.exec),oe=l("".charAt),q=l("".replace),X=l("".indexOf),V=l("".slice),se=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,ee=/a/g,J=/a/g,le=new H(ee)!==ee,z=m.MISSED_STICKY,j=m.UNSUPPORTED_Y,ie=r&&(!le||z||B||N||k(function(){return J[K]=!1,H(ee)!==ee||H(J)===J||String(H(ee,"i"))!=="/a/i"})),me=function(Dt){for(var ht=Dt.length,It=0,Zt="",Rt=!1,ar;It<=ht;It++){if(ar=oe(Dt,It),ar==="\\"){Zt+=ar+oe(Dt,++It);continue}!Rt&&ar==="."?Zt+="[\\s\\S]":(ar==="["?Rt=!0:ar==="]"&&(Rt=!1),Zt+=ar)}return Zt},Se=function(Dt){for(var ht=Dt.length,It=0,Zt="",Rt=[],ar=h(null),$e=!1,gt=!1,Mt=0,et="",ft;It<=ht;It++){if(ft=oe(Dt,It),ft==="\\")ft+=oe(Dt,++It);else if(ft==="]")$e=!1;else if(!$e)switch(!0){case ft==="[":$e=!0;break;case ft==="(":ne(se,V(Dt,It+1))&&(It+=2,gt=!0),Zt+=ft,Mt++;continue;case(ft===">"&&gt):if(et===""||R(ar,et))throw new ae("Invalid capture group name");ar[et]=!0,Rt[Rt.length]=[et,Mt],gt=!1,et="";continue}gt?et+=ft:Zt+=ft}return[Zt,Rt]};if(c("RegExp",ie)){for(var Ie=function(ht,It){var Zt=a(W,this),Rt=x(ht),ar=It===void 0,$e=[],gt=ht,Mt,et,ft,ot,Je,Ne;if(!Zt&&Rt&&ar&&ht.constructor===Ie)return ht;if((Rt||a(W,ht))&&(ht=ht.source,ar&&(It=y(gt))),ht=ht===void 0?"":p(ht),It=It===void 0?"":p(It),gt=ht,B&&"dotAll"in ee&&(et=!!It&&X(It,"s")>-1,et&&(It=q(It,/s/g,""))),Mt=It,z&&"sticky"in ee&&(ft=!!It&&X(It,"y")>-1,ft&&j&&(It=q(It,/y/g,""))),N&&(ot=Se(ht),ht=ot[0],$e=ot[1]),Je=f(H(ht,It),Zt?this:W,Ie),(et||ft||$e.length)&&(Ne=A(Je),et&&(Ne.dotAll=!0,Ne.raw=Ie(me(ht),Mt)),ft&&(Ne.sticky=!0),$e.length&&(Ne.groups=$e)),ht!==gt)try{o(Je,"source",gt===""?"(?:)":gt)}catch(ye){}return Je},He=u(H),je=0;He.length>je;)b(Ie,H,He[je++]);W.constructor=Ie,Ie.prototype=W,S(i,"RegExp",Ie,{constructor:!0})}P("RegExp")},62921:function(d,v,e){"use strict";var r=e(35454),i=e(6041),l=e(29076),c=e(64110),f=e(94844).get,o=RegExp.prototype,h=TypeError;r&&i&&c(o,"dotAll",{configurable:!0,get:function(){if(this!==o){if(l(this)==="RegExp")return!!f(this).dotAll;throw new h("Incompatible receiver, RegExp required")}}})},44001:function(d,v,e){"use strict";var r=e(94488),i=e(88736);r({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},92262:function(d,v,e){"use strict";var r=e(92916),i=e(35454),l=e(64110),c=e(82163),f=e(3338),o=r.RegExp,h=o.prototype,u=i&&f(function(){var a=!0;try{o(".","d")}catch(R){a=!1}var x={},p="",y=a?"dgimsy":"gimsy",m=function(R,A){Object.defineProperty(x,R,{get:function(){return p+=A,!0}})},b={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};a&&(b.hasIndices="d");for(var S in b)m(S,b[S]);var k=Object.getOwnPropertyDescriptor(h,"flags").get.call(x);return k!==y||p!==y});u&&l(h,"flags",{configurable:!0,get:c})},54744:function(d,v,e){"use strict";var r=e(35454),i=e(19286).MISSED_STICKY,l=e(29076),c=e(64110),f=e(94844).get,o=RegExp.prototype,h=TypeError;r&&i&&c(o,"sticky",{configurable:!0,get:function(){if(this!==o){if(l(this)==="RegExp")return!!f(this).sticky;throw new h("Incompatible receiver, RegExp required")}}})},38214:function(d,v,e){"use strict";e(44001);var r=e(94488),i=e(89945),l=e(55327),c=e(80449),f=e(69905),o=function(){var u=!1,a=/[ac]/;return a.exec=function(){return u=!0,/./.exec.apply(this,arguments)},a.test("abc")===!0&&u}(),h=/./.test;r({target:"RegExp",proto:!0,forced:!o},{test:function(u){var a=c(this),x=f(u),p=a.exec;if(!l(p))return i(h,a,x);var y=i(p,a,x);return y===null?!1:(c(y),!0)}})},12756:function(d,v,e){"use strict";var r=e(8090).PROPER,i=e(2291),l=e(80449),c=e(69905),f=e(3338),o=e(81644),h="toString",u=RegExp.prototype,a=u[h],x=f(function(){return a.call({source:"a",flags:"b"})!=="/a/b"}),p=r&&a.name!==h;(x||p)&&i(RegExp.prototype,h,function(){var m=l(this),b=c(m.source),S=c(o(m));return"/"+b+"/"+S},{unsafe:!0})},69772:function(d,v,e){"use strict";var r=e(48059),i=e(40942);r("Set",function(l){return function(){return l(this,arguments.length?arguments[0]:void 0)}},i)},93379:function(d,v,e){"use strict";e(69772)},34932:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("anchor")},{anchor:function(f){return i(this,"a","name",f)}})},62007:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(95955),c=e(56902),f=e(69905),o=e(3338),h=i("".charAt),u=o(function(){return"\u{20BB7}".at(-2)!=="\uD842"});r({target:"String",proto:!0,forced:u},{at:function(x){var p=f(l(this)),y=p.length,m=c(x),b=m>=0?m:y+m;return b<0||b>=y?void 0:h(p,b)}})},81046:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("big")},{big:function(){return i(this,"big","","")}})},85744:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("blink")},{blink:function(){return i(this,"blink","","")}})},13494:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("bold")},{bold:function(){return i(this,"b","","")}})},90572:function(d,v,e){"use strict";var r=e(94488),i=e(13764).codeAt;r({target:"String",proto:!0},{codePointAt:function(c){return i(this,c)}})},37343:function(d,v,e){"use strict";var r=e(94488),i=e(34114),l=e(71256).f,c=e(61578),f=e(69905),o=e(41696),h=e(95955),u=e(86266),a=e(16697),x=i("".endsWith),p=i("".slice),y=Math.min,m=u("endsWith"),b=!a&&!m&&!!function(){var S=l(String.prototype,"endsWith");return S&&!S.writable}();r({target:"String",proto:!0,forced:!b&&!m},{endsWith:function(k){var R=f(h(this));o(k);var A=arguments.length>1?arguments[1]:void 0,P=R.length,M=A===void 0?P:y(c(A),P),B=f(k);return x?x(R,B,M):p(R,M-B.length,M)===B}})},56338:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("fixed")},{fixed:function(){return i(this,"tt","","")}})},66755:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("fontcolor")},{fontcolor:function(f){return i(this,"font","color",f)}})},68709:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("fontsize")},{fontsize:function(f){return i(this,"font","size",f)}})},45945:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(51981),c=RangeError,f=String.fromCharCode,o=String.fromCodePoint,h=i([].join),u=!!o&&o.length!==1;r({target:"String",stat:!0,arity:1,forced:u},{fromCodePoint:function(x){for(var p=[],y=arguments.length,m=0,b;y>m;){if(b=+arguments[m++],l(b,1114111)!==b)throw new c(b+" is not a valid code point");p[m]=b<65536?f(b):f(((b-=65536)>>10)+55296,b%1024+56320)}return h(p,"")}})},75551:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(41696),c=e(95955),f=e(69905),o=e(86266),h=i("".indexOf);r({target:"String",proto:!0,forced:!o("includes")},{includes:function(a){return!!~h(f(c(this)),f(l(a)),arguments.length>1?arguments[1]:void 0)}})},32493:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(95955),c=e(69905),f=i("".charCodeAt);r({target:"String",proto:!0},{isWellFormed:function(){for(var h=c(l(this)),u=h.length,a=0;a<u;a++){var x=f(h,a);if((x&63488)===55296&&(x>=56320||++a>=u||(f(h,a)&64512)!==56320))return!1}return!0}})},4939:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("italics")},{italics:function(){return i(this,"i","","")}})},20852:function(d,v,e){"use strict";var r=e(13764).charAt,i=e(69905),l=e(94844),c=e(24019),f=e(25587),o="String Iterator",h=l.set,u=l.getterFor(o);c(String,"String",function(a){h(this,{type:o,string:i(a),index:0})},function(){var x=u(this),p=x.string,y=x.index,m;return y>=p.length?f(void 0,!0):(m=r(p,y),x.index+=m.length,f(m,!1))})},81927:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("link")},{link:function(f){return i(this,"a","href",f)}})},18827:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(34114),c=e(83126),f=e(25587),o=e(95955),h=e(61578),u=e(69905),a=e(80449),x=e(4112),p=e(29076),y=e(44639),m=e(81644),b=e(53776),S=e(2291),k=e(3338),R=e(59893),A=e(60473),P=e(52216),M=e(94338),B=e(94844),N=e(16697),K=R("matchAll"),H="RegExp String",W=H+" Iterator",ae=B.set,ne=B.getterFor(W),oe=RegExp.prototype,q=TypeError,X=l("".indexOf),V=l("".matchAll),se=!!V&&!k(function(){V("a",/./)}),ee=c(function(z,j,ie,me){ae(this,{type:W,regexp:z,string:j,global:ie,unicode:me,done:!1})},H,function(){var z=ne(this);if(z.done)return f(void 0,!0);var j=z.regexp,ie=z.string,me=M(j,ie);return me===null?(z.done=!0,f(void 0,!0)):z.global?(u(me[0])===""&&(j.lastIndex=P(ie,h(j.lastIndex),z.unicode)),f(me,!1)):(z.done=!0,f(me,!1))}),J=function(le){var z=a(this),j=u(le),ie=A(z,RegExp),me=u(m(z)),Se,Ie,He;return Se=new ie(ie===RegExp?z.source:z,me),Ie=!!~X(me,"g"),He=!!~X(me,"u"),Se.lastIndex=h(z.lastIndex),new ee(Se,j,Ie,He)};r({target:"String",proto:!0,forced:se},{matchAll:function(z){var j=o(this),ie,me,Se,Ie;if(x(z)){if(se)return V(j,z)}else{if(y(z)&&(ie=u(o(m(z))),!~X(ie,"g")))throw new q("`.matchAll` does not allow non-global regexes");if(se)return V(j,z);if(Se=b(z,K),Se===void 0&&N&&p(z)==="RegExp"&&(Se=J),Se)return i(Se,z,j)}return me=u(j),Ie=new RegExp(z,"g"),N?i(J,Ie,me):Ie[K](me)}}),N||K in oe||S(oe,K,J)},46302:function(d,v,e){"use strict";var r=e(89945),i=e(8662),l=e(80449),c=e(4112),f=e(61578),o=e(69905),h=e(95955),u=e(53776),a=e(52216),x=e(94338);i("match",function(p,y,m){return[function(S){var k=h(this),R=c(S)?void 0:u(S,p);return R?r(R,S,k):new RegExp(S)[p](o(k))},function(b){var S=l(this),k=o(b),R=m(y,S,k);if(R.done)return R.value;if(!S.global)return x(S,k);var A=S.unicode;S.lastIndex=0;for(var P=[],M=0,B;(B=x(S,k))!==null;){var N=o(B[0]);P[M]=N,N===""&&(S.lastIndex=a(k,f(S.lastIndex),A)),M++}return M===0?null:P}]})},76718:function(d,v,e){"use strict";var r=e(94488),i=e(85571).end,l=e(98352);r({target:"String",proto:!0,forced:l},{padEnd:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}})},79172:function(d,v,e){"use strict";var r=e(94488),i=e(85571).start,l=e(98352);r({target:"String",proto:!0,forced:l},{padStart:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}})},32192:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(80524),c=e(94029),f=e(69905),o=e(82762),h=i([].push),u=i([].join);r({target:"String",stat:!0},{raw:function(x){var p=l(c(x).raw),y=o(p);if(!y)return"";for(var m=arguments.length,b=[],S=0;;){if(h(b,f(p[S++])),S===y)return u(b,"");S<m&&h(b,f(arguments[S]))}}})},42828:function(d,v,e){"use strict";var r=e(94488),i=e(71049);r({target:"String",proto:!0},{repeat:i})},55629:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(94237),c=e(95955),f=e(55327),o=e(4112),h=e(44639),u=e(69905),a=e(53776),x=e(81644),p=e(23011),y=e(59893),m=e(16697),b=y("replace"),S=TypeError,k=l("".indexOf),R=l("".replace),A=l("".slice),P=Math.max,M=function(B,N,K){return K>B.length?-1:N===""?K:k(B,N,K)};r({target:"String",proto:!0},{replaceAll:function(N,K){var H=c(this),W,ae,ne,oe,q,X,V,se,ee,J=0,le=0,z="";if(!o(N)){if(W=h(N),W&&(ae=u(c(x(N))),!~k(ae,"g")))throw new S("`.replaceAll` does not allow non-global regexes");if(ne=a(N,b),ne)return i(ne,N,H,K);if(m&&W)return R(u(H),N,K)}for(oe=u(H),q=u(N),X=f(K),X||(K=u(K)),V=q.length,se=P(1,V),J=M(oe,q,0);J!==-1;)ee=X?u(K(q,J,oe)):p(q,oe,J,[],void 0,K),z+=A(oe,le,J)+ee,le=J+V,J=M(oe,q,J+se);return le<oe.length&&(z+=A(oe,le)),z}})},5658:function(d,v,e){"use strict";var r=e(13743),i=e(89945),l=e(94237),c=e(8662),f=e(3338),o=e(80449),h=e(55327),u=e(4112),a=e(56902),x=e(61578),p=e(69905),y=e(95955),m=e(52216),b=e(53776),S=e(23011),k=e(94338),R=e(59893),A=R("replace"),P=Math.max,M=Math.min,B=l([].concat),N=l([].push),K=l("".indexOf),H=l("".slice),W=function(q){return q===void 0?q:String(q)},ae=function(){return"a".replace(/./,"$0")==="$0"}(),ne=function(){return/./[A]?/./[A]("a","$0")==="":!1}(),oe=!f(function(){var q=/./;return q.exec=function(){var X=[];return X.groups={a:"7"},X},"".replace(q,"$<a>")!=="7"});c("replace",function(q,X,V){var se=ne?"$":"$0";return[function(J,le){var z=y(this),j=u(J)?void 0:b(J,A);return j?i(j,J,z,le):i(X,p(z),J,le)},function(ee,J){var le=o(this),z=p(ee);if(typeof J=="string"&&K(J,se)===-1&&K(J,"$<")===-1){var j=V(X,le,z,J);if(j.done)return j.value}var ie=h(J);ie||(J=p(J));var me=le.global,Se;me&&(Se=le.unicode,le.lastIndex=0);for(var Ie=[],He;He=k(le,z),!(He===null||(N(Ie,He),!me));){var je=p(He[0]);je===""&&(le.lastIndex=m(z,x(le.lastIndex),Se))}for(var Dt="",ht=0,It=0;It<Ie.length;It++){He=Ie[It];for(var Zt=p(He[0]),Rt=P(M(a(He.index),z.length),0),ar=[],$e,gt=1;gt<He.length;gt++)N(ar,W(He[gt]));var Mt=He.groups;if(ie){var et=B([Zt],ar,Rt,z);Mt!==void 0&&N(et,Mt),$e=p(r(J,void 0,et))}else $e=S(Zt,z,Rt,ar,Mt,J);Rt>=ht&&(Dt+=H(z,ht,Rt)+$e,ht=Rt+Zt.length)}return Dt+H(z,ht)}]},!oe||!ae||ne)},62925:function(d,v,e){"use strict";var r=e(89945),i=e(8662),l=e(80449),c=e(4112),f=e(95955),o=e(5370),h=e(69905),u=e(53776),a=e(94338);i("search",function(x,p,y){return[function(b){var S=f(this),k=c(b)?void 0:u(b,x);return k?r(k,b,S):new RegExp(b)[x](h(S))},function(m){var b=l(this),S=h(m),k=y(p,b,S);if(k.done)return k.value;var R=b.lastIndex;o(R,0)||(b.lastIndex=0);var A=a(b,S);return o(b.lastIndex,R)||(b.lastIndex=R),A===null?-1:A.index}]})},60462:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("small")},{small:function(){return i(this,"small","","")}})},9595:function(d,v,e){"use strict";var r=e(13743),i=e(89945),l=e(94237),c=e(8662),f=e(80449),o=e(4112),h=e(44639),u=e(95955),a=e(60473),x=e(52216),p=e(61578),y=e(69905),m=e(53776),b=e(71698),S=e(94338),k=e(88736),R=e(19286),A=e(3338),P=R.UNSUPPORTED_Y,M=4294967295,B=Math.min,N=[].push,K=l(/./.exec),H=l(N),W=l("".slice),ae=!A(function(){var ne=/(?:)/,oe=ne.exec;ne.exec=function(){return oe.apply(this,arguments)};var q="ab".split(ne);return q.length!==2||q[0]!=="a"||q[1]!=="b"});c("split",function(ne,oe,q){var X;return"abbc".split(/(b)*/)[1]==="c"||"test".split(/(?:)/,-1).length!==4||"ab".split(/(?:ab)*/).length!==2||".".split(/(.?)(.?)/).length!==4||".".split(/()()/).length>1||"".split(/.?/).length?X=function(V,se){var ee=y(u(this)),J=se===void 0?M:se>>>0;if(J===0)return[];if(V===void 0)return[ee];if(!h(V))return i(oe,ee,V,J);for(var le=[],z=(V.ignoreCase?"i":"")+(V.multiline?"m":"")+(V.unicode?"u":"")+(V.sticky?"y":""),j=0,ie=new RegExp(V.source,z+"g"),me,Se,Ie;(me=i(k,ie,ee))&&(Se=ie.lastIndex,!(Se>j&&(H(le,W(ee,j,me.index)),me.length>1&&me.index<ee.length&&r(N,le,b(me,1)),Ie=me[0].length,j=Se,le.length>=J)));)ie.lastIndex===me.index&&ie.lastIndex++;return j===ee.length?(Ie||!K(ie,""))&&H(le,""):H(le,W(ee,j)),le.length>J?b(le,0,J):le}:"0".split(void 0,0).length?X=function(V,se){return V===void 0&&se===0?[]:i(oe,this,V,se)}:X=oe,[function(se,ee){var J=u(this),le=o(se)?void 0:m(se,ne);return le?i(le,se,J,ee):i(X,y(J),se,ee)},function(V,se){var ee=f(this),J=y(V),le=q(X,ee,J,se,X!==oe);if(le.done)return le.value;var z=a(ee,RegExp),j=ee.unicode,ie=(ee.ignoreCase?"i":"")+(ee.multiline?"m":"")+(ee.unicode?"u":"")+(P?"g":"y"),me=new z(P?"^(?:"+ee.source+")":ee,ie),Se=se===void 0?M:se>>>0;if(Se===0)return[];if(J.length===0)return S(me,J)===null?[J]:[];for(var Ie=0,He=0,je=[];He<J.length;){me.lastIndex=P?0:He;var Dt=S(me,P?W(J,He):J),ht;if(Dt===null||(ht=B(p(me.lastIndex+(P?He:0)),J.length))===Ie)He=x(J,He,j);else{if(H(je,W(J,Ie,He)),je.length===Se)return je;for(var It=1;It<=Dt.length-1;It++)if(H(je,Dt[It]),je.length===Se)return je;He=Ie=ht}}return H(je,W(J,Ie)),je}]},!ae,P)},58127:function(d,v,e){"use strict";var r=e(94488),i=e(34114),l=e(71256).f,c=e(61578),f=e(69905),o=e(41696),h=e(95955),u=e(86266),a=e(16697),x=i("".startsWith),p=i("".slice),y=Math.min,m=u("startsWith"),b=!a&&!m&&!!function(){var S=l(String.prototype,"startsWith");return S&&!S.writable}();r({target:"String",proto:!0,forced:!b&&!m},{startsWith:function(k){var R=f(h(this));o(k);var A=c(y(arguments.length>1?arguments[1]:void 0,R.length)),P=f(k);return x?x(R,P,A):p(R,A,A+P.length)===P}})},72571:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("strike")},{strike:function(){return i(this,"strike","","")}})},71200:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("sub")},{sub:function(){return i(this,"sub","","")}})},70917:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(95955),c=e(56902),f=e(69905),o=i("".slice),h=Math.max,u=Math.min,a=!"".substr||"ab".substr(-1)!=="b";r({target:"String",proto:!0,forced:a},{substr:function(p,y){var m=f(l(this)),b=m.length,S=c(p),k,R;return S===1/0&&(S=0),S<0&&(S=h(b+S,0)),k=y===void 0?b:c(y),k<=0||k===1/0?"":(R=u(S+k,b),S>=R?"":o(m,S,R))}})},85767:function(d,v,e){"use strict";var r=e(94488),i=e(95994),l=e(17691);r({target:"String",proto:!0,forced:l("sup")},{sup:function(){return i(this,"sup","","")}})},53427:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(94237),c=e(95955),f=e(69905),o=e(3338),h=Array,u=l("".charAt),a=l("".charCodeAt),x=l([].join),p="".toWellFormed,y="\uFFFD",m=p&&o(function(){return i(p,1)!=="1"});r({target:"String",proto:!0,forced:m},{toWellFormed:function(){var S=f(c(this));if(m)return i(p,S);for(var k=S.length,R=h(k),A=0;A<k;A++){var P=a(S,A);(P&63488)!==55296?R[A]=u(S,A):P>=56320||A+1>=k||(a(S,A+1)&64512)!==56320?R[A]=y:(R[A]=u(S,A),R[++A]=u(S,A))}return x(R,"")}})},49257:function(d,v,e){"use strict";e(20189);var r=e(94488),i=e(9591);r({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==i},{trimEnd:i})},93980:function(d,v,e){"use strict";var r=e(94488),i=e(27374);r({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==i},{trimLeft:i})},20189:function(d,v,e){"use strict";var r=e(94488),i=e(9591);r({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==i},{trimRight:i})},72910:function(d,v,e){"use strict";e(93980);var r=e(94488),i=e(27374);r({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==i},{trimStart:i})},70878:function(d,v,e){"use strict";var r=e(94488),i=e(52971).trim,l=e(18105);r({target:"String",proto:!0,forced:l("trim")},{trim:function(){return i(this)}})},64003:function(d,v,e){"use strict";var r=e(94674);r("asyncIterator")},39161:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(89945),c=e(94237),f=e(16697),o=e(35454),h=e(42820),u=e(3338),a=e(32621),x=e(16332),p=e(80449),y=e(80524),m=e(17818),b=e(69905),S=e(35012),k=e(20132),R=e(7733),A=e(80689),P=e(53393),M=e(92635),B=e(71256),N=e(37691),K=e(55666),H=e(27597),W=e(2291),ae=e(64110),ne=e(77898),oe=e(11898),q=e(54406),X=e(6145),V=e(59893),se=e(38282),ee=e(94674),J=e(14311),le=e(94573),z=e(94844),j=e(90560).forEach,ie=oe("hidden"),me="Symbol",Se="prototype",Ie=z.set,He=z.getterFor(me),je=Object[Se],Dt=i.Symbol,ht=Dt&&Dt[Se],It=i.RangeError,Zt=i.TypeError,Rt=i.QObject,ar=B.f,$e=N.f,gt=P.f,Mt=H.f,et=c([].push),ft=ne("symbols"),ot=ne("op-symbols"),Je=ne("wks"),Ne=!Rt||!Rt[Se]||!Rt[Se].findChild,ye=function(tt,Yt,Ot){var zt=ar(je,Yt);zt&&delete je[Yt],$e(tt,Yt,Ot),zt&&tt!==je&&$e(je,Yt,zt)},ke=o&&u(function(){return k($e({},"a",{get:function(){return $e(this,"a",{value:7}).a}})).a!==7})?ye:$e,Ge=function(tt,Yt){var Ot=ft[tt]=k(ht);return Ie(Ot,{type:me,tag:tt,description:Yt}),o||(Ot.description=Yt),Ot},We=function(Yt,Ot,zt){Yt===je&&We(ot,Ot,zt),p(Yt);var Ht=m(Ot);return p(zt),a(ft,Ht)?(zt.enumerable?(a(Yt,ie)&&Yt[ie][Ht]&&(Yt[ie][Ht]=!1),zt=k(zt,{enumerable:S(0,!1)})):(a(Yt,ie)||$e(Yt,ie,S(1,{})),Yt[ie][Ht]=!0),ke(Yt,Ht,zt)):$e(Yt,Ht,zt)},Xe=function(Yt,Ot){p(Yt);var zt=y(Ot),Ht=R(zt).concat(Me(zt));return j(Ht,function(lr){(!o||l(pt,zt,lr))&&We(Yt,lr,zt[lr])}),Yt},ut=function(Yt,Ot){return Ot===void 0?k(Yt):Xe(k(Yt),Ot)},pt=function(Yt){var Ot=m(Yt),zt=l(Mt,this,Ot);return this===je&&a(ft,Ot)&&!a(ot,Ot)?!1:zt||!a(this,Ot)||!a(ft,Ot)||a(this,ie)&&this[ie][Ot]?zt:!0},or=function(Yt,Ot){var zt=y(Yt),Ht=m(Ot);if(!(zt===je&&a(ft,Ht)&&!a(ot,Ht))){var lr=ar(zt,Ht);return lr&&a(ft,Ht)&&!(a(zt,ie)&&zt[ie][Ht])&&(lr.enumerable=!0),lr}},tr=function(Yt){var Ot=gt(y(Yt)),zt=[];return j(Ot,function(Ht){!a(ft,Ht)&&!a(q,Ht)&&et(zt,Ht)}),zt},Me=function(tt){var Yt=tt===je,Ot=gt(Yt?ot:y(tt)),zt=[];return j(Ot,function(Ht){a(ft,Ht)&&(!Yt||a(je,Ht))&&et(zt,ft[Ht])}),zt};h||(Dt=function(){if(x(ht,this))throw new Zt("Symbol is not a constructor");var Yt=!arguments.length||arguments[0]===void 0?void 0:b(arguments[0]),Ot=X(Yt),zt=function(Ht){var lr=this===void 0?i:this;lr===je&&l(zt,ot,Ht),a(lr,ie)&&a(lr[ie],Ot)&&(lr[ie][Ot]=!1);var Wt=S(1,Ht);try{ke(lr,Ot,Wt)}catch(Ce){if(!(Ce instanceof It))throw Ce;ye(lr,Ot,Wt)}};return o&&Ne&&ke(je,Ot,{configurable:!0,set:zt}),Ge(Ot,Yt)},ht=Dt[Se],W(ht,"toString",function(){return He(this).tag}),W(Dt,"withoutSetter",function(tt){return Ge(X(tt),tt)}),H.f=pt,N.f=We,K.f=Xe,B.f=or,A.f=P.f=tr,M.f=Me,se.f=function(tt){return Ge(V(tt),tt)},o&&(ae(ht,"description",{configurable:!0,get:function(){return He(this).description}}),f||W(je,"propertyIsEnumerable",pt,{unsafe:!0}))),r({global:!0,constructor:!0,wrap:!0,forced:!h,sham:!h},{Symbol:Dt}),j(R(Je),function(tt){ee(tt)}),r({target:me,stat:!0,forced:!h},{useSetter:function(){Ne=!0},useSimple:function(){Ne=!1}}),r({target:"Object",stat:!0,forced:!h,sham:!o},{create:ut,defineProperty:We,defineProperties:Xe,getOwnPropertyDescriptor:or}),r({target:"Object",stat:!0,forced:!h},{getOwnPropertyNames:tr}),J(),le(Dt,me),q[ie]=!0},44852:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(92916),c=e(94237),f=e(32621),o=e(55327),h=e(16332),u=e(69905),a=e(64110),x=e(24538),p=l.Symbol,y=p&&p.prototype;if(i&&o(p)&&(!("description"in y)||p().description!==void 0)){var m={},b=function(){var N=arguments.length<1||arguments[0]===void 0?void 0:u(arguments[0]),K=h(y,this)?new p(N):N===void 0?p():p(N);return N===""&&(m[K]=!0),K};x(b,p),b.prototype=y,y.constructor=b;var S=String(p("description detection"))==="Symbol(description detection)",k=c(y.valueOf),R=c(y.toString),A=/^Symbol\((.*)\)[^)]+$/,P=c("".replace),M=c("".slice);a(y,"description",{configurable:!0,get:function(){var N=k(this);if(f(m,N))return"";var K=R(N),H=S?M(K,7,-1):P(K,A,"$1");return H===""?void 0:H}}),r({global:!0,constructor:!0,forced:!0},{Symbol:b})}},54524:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(32621),c=e(69905),f=e(77898),o=e(60798),h=f("string-to-symbol-registry"),u=f("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!o},{for:function(a){var x=c(a);if(l(h,x))return h[x];var p=i("Symbol")(x);return h[x]=p,u[p]=x,p}})},17898:function(d,v,e){"use strict";var r=e(94674);r("hasInstance")},40902:function(d,v,e){"use strict";var r=e(94674);r("isConcatSpreadable")},2259:function(d,v,e){"use strict";var r=e(94674);r("iterator")},68557:function(d,v,e){"use strict";e(39161),e(54524),e(32340),e(54226),e(67936)},32340:function(d,v,e){"use strict";var r=e(94488),i=e(32621),l=e(18446),c=e(40593),f=e(77898),o=e(60798),h=f("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!o},{keyFor:function(a){if(!l(a))throw new TypeError(c(a)+" is not a symbol");if(i(h,a))return h[a]}})},69811:function(d,v,e){"use strict";var r=e(94674);r("matchAll")},14589:function(d,v,e){"use strict";var r=e(94674);r("match")},18114:function(d,v,e){"use strict";var r=e(94674);r("replace")},23844:function(d,v,e){"use strict";var r=e(94674);r("search")},39581:function(d,v,e){"use strict";var r=e(94674);r("species")},40632:function(d,v,e){"use strict";var r=e(94674);r("split")},22690:function(d,v,e){"use strict";var r=e(94674),i=e(14311);r("toPrimitive"),i()},7786:function(d,v,e){"use strict";var r=e(65911),i=e(94674),l=e(94573);i("toStringTag"),l(r("Symbol"),"Symbol")},99062:function(d,v,e){"use strict";var r=e(94674);r("unscopables")},35246:function(d,v,e){"use strict";var r=e(58261),i=e(82762),l=e(56902),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("at",function(h){var u=c(this),a=i(u),x=l(h),p=x>=0?x:a+x;return p<0||p>=a?void 0:u[p]})},83470:function(d,v,e){"use strict";var r=e(94237),i=e(58261),l=e(92670),c=r(l),f=i.aTypedArray,o=i.exportTypedArrayMethod;o("copyWithin",function(u,a){return c(f(this),u,a,arguments.length>2?arguments[2]:void 0)})},79641:function(d,v,e){"use strict";var r=e(58261),i=e(90560).every,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("every",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},72397:function(d,v,e){"use strict";var r=e(58261),i=e(75202),l=e(93303),c=e(97607),f=e(89945),o=e(94237),h=e(3338),u=r.aTypedArray,a=r.exportTypedArrayMethod,x=o("".slice),p=h(function(){var y=0;return new Int8Array(2).fill({valueOf:function(){return y++}}),y!==1});a("fill",function(m){var b=arguments.length;u(this);var S=x(c(this),0,3)==="Big"?l(m):+m;return f(i,this,S,b>1?arguments[1]:void 0,b>2?arguments[2]:void 0)},p)},24860:function(d,v,e){"use strict";var r=e(58261),i=e(90560).filter,l=e(27607),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("filter",function(h){var u=i(c(this),h,arguments.length>1?arguments[1]:void 0);return l(this,u)})},56233:function(d,v,e){"use strict";var r=e(58261),i=e(90560).findIndex,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("findIndex",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},64344:function(d,v,e){"use strict";var r=e(58261),i=e(53279).findLastIndex,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("findLastIndex",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},59419:function(d,v,e){"use strict";var r=e(58261),i=e(53279).findLast,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("findLast",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},19320:function(d,v,e){"use strict";var r=e(58261),i=e(90560).find,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("find",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},84432:function(d,v,e){"use strict";var r=e(69733);r("Float32",function(i){return function(c,f,o){return i(this,c,f,o)}})},59022:function(d,v,e){"use strict";var r=e(69733);r("Float64",function(i){return function(c,f,o){return i(this,c,f,o)}})},5316:function(d,v,e){"use strict";var r=e(58261),i=e(90560).forEach,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("forEach",function(o){i(l(this),o,arguments.length>1?arguments[1]:void 0)})},93744:function(d,v,e){"use strict";var r=e(59627),i=e(58261).exportTypedArrayStaticMethod,l=e(50706);i("from",l,r)},19299:function(d,v,e){"use strict";var r=e(58261),i=e(22999).includes,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("includes",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},15286:function(d,v,e){"use strict";var r=e(58261),i=e(22999).indexOf,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("indexOf",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},51054:function(d,v,e){"use strict";var r=e(69733);r("Int16",function(i){return function(c,f,o){return i(this,c,f,o)}})},60330:function(d,v,e){"use strict";var r=e(69733);r("Int32",function(i){return function(c,f,o){return i(this,c,f,o)}})},19363:function(d,v,e){"use strict";var r=e(69733);r("Int8",function(i){return function(c,f,o){return i(this,c,f,o)}})},91927:function(d,v,e){"use strict";var r=e(92916),i=e(3338),l=e(94237),c=e(58261),f=e(11005),o=e(59893),h=o("iterator"),u=r.Uint8Array,a=l(f.values),x=l(f.keys),p=l(f.entries),y=c.aTypedArray,m=c.exportTypedArrayMethod,b=u&&u.prototype,S=!i(function(){b[h].call([1])}),k=!!b&&b.values&&b[h]===b.values&&b.values.name==="values",R=function(){return a(y(this))};m("entries",function(){return p(y(this))},S),m("keys",function(){return x(y(this))},S),m("values",R,S||!k,{name:"values"}),m(h,R,S||!k,{name:"values"})},27730:function(d,v,e){"use strict";var r=e(58261),i=e(94237),l=r.aTypedArray,c=r.exportTypedArrayMethod,f=i([].join);c("join",function(h){return f(l(this),h)})},58707:function(d,v,e){"use strict";var r=e(58261),i=e(13743),l=e(55009),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("lastIndexOf",function(h){var u=arguments.length;return i(l,c(this),u>1?[h,arguments[1]]:[h])})},41356:function(d,v,e){"use strict";var r=e(58261),i=e(90560).map,l=e(31384),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("map",function(h){return i(c(this),h,arguments.length>1?arguments[1]:void 0,function(u,a){return new(l(u))(a)})})},51606:function(d,v,e){"use strict";var r=e(58261),i=e(59627),l=r.aTypedArrayConstructor,c=r.exportTypedArrayStaticMethod;c("of",function(){for(var o=0,h=arguments.length,u=new(l(this))(h);h>o;)u[o]=arguments[o++];return u},i)},38458:function(d,v,e){"use strict";var r=e(58261),i=e(16370).right,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("reduceRight",function(o){var h=arguments.length;return i(l(this),o,h,h>1?arguments[1]:void 0)})},8966:function(d,v,e){"use strict";var r=e(58261),i=e(16370).left,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("reduce",function(o){var h=arguments.length;return i(l(this),o,h,h>1?arguments[1]:void 0)})},71957:function(d,v,e){"use strict";var r=e(58261),i=r.aTypedArray,l=r.exportTypedArrayMethod,c=Math.floor;l("reverse",function(){for(var o=this,h=i(o).length,u=c(h/2),a=0,x;a<u;)x=o[a],o[a++]=o[--h],o[h]=x;return o})},89466:function(d,v,e){"use strict";var r=e(92916),i=e(89945),l=e(58261),c=e(82762),f=e(64135),o=e(94029),h=e(3338),u=r.RangeError,a=r.Int8Array,x=a&&a.prototype,p=x&&x.set,y=l.aTypedArray,m=l.exportTypedArrayMethod,b=!h(function(){var k=new Uint8ClampedArray(2);return i(p,k,{length:1,0:3},1),k[1]!==3}),S=b&&l.NATIVE_ARRAY_BUFFER_VIEWS&&h(function(){var k=new a(2);return k.set(1),k.set("2",1),k[0]!==0||k[1]!==2});m("set",function(R){y(this);var A=f(arguments.length>1?arguments[1]:void 0,1),P=o(R);if(b)return i(p,this,P,A);var M=this.length,B=c(P),N=0;if(B+A>M)throw new u("Wrong length");for(;N<B;)this[A+N]=P[N++]},!b||S)},69653:function(d,v,e){"use strict";var r=e(58261),i=e(31384),l=e(3338),c=e(30867),f=r.aTypedArray,o=r.exportTypedArrayMethod,h=l(function(){new Int8Array(1).slice()});o("slice",function(a,x){for(var p=c(f(this),a,x),y=i(this),m=0,b=p.length,S=new y(b);b>m;)S[m]=p[m++];return S},h)},96519:function(d,v,e){"use strict";var r=e(58261),i=e(90560).some,l=r.aTypedArray,c=r.exportTypedArrayMethod;c("some",function(o){return i(l(this),o,arguments.length>1?arguments[1]:void 0)})},95576:function(d,v,e){"use strict";var r=e(92916),i=e(34114),l=e(3338),c=e(63335),f=e(63668),o=e(58261),h=e(78177),u=e(17687),a=e(46573),x=e(19684),p=o.aTypedArray,y=o.exportTypedArrayMethod,m=r.Uint16Array,b=m&&i(m.prototype.sort),S=!!b&&!(l(function(){b(new m(2),null)})&&l(function(){b(new m(2),{})})),k=!!b&&!l(function(){if(a)return a<74;if(h)return h<67;if(u)return!0;if(x)return x<602;var A=new m(516),P=Array(516),M,B;for(M=0;M<516;M++)B=M%4,A[M]=515-M,P[M]=M-2*B+3;for(b(A,function(N,K){return(N/4|0)-(K/4|0)}),M=0;M<516;M++)if(A[M]!==P[M])return!0}),R=function(A){return function(P,M){return A!==void 0?+A(P,M)||0:M!==M?-1:P!==P?1:P===0&&M===0?1/P>0&&1/M<0?1:-1:P>M}};y("sort",function(P){return P!==void 0&&c(P),k?b(this,P):f(p(this),R(P))},!k||S)},63079:function(d,v,e){"use strict";var r=e(58261),i=e(61578),l=e(51981),c=e(31384),f=r.aTypedArray,o=r.exportTypedArrayMethod;o("subarray",function(u,a){var x=f(this),p=x.length,y=l(u,p),m=c(x);return new m(x.buffer,x.byteOffset+y*x.BYTES_PER_ELEMENT,i((a===void 0?p:l(a,p))-y))})},8995:function(d,v,e){"use strict";var r=e(92916),i=e(13743),l=e(58261),c=e(3338),f=e(30867),o=r.Int8Array,h=l.aTypedArray,u=l.exportTypedArrayMethod,a=[].toLocaleString,x=!!o&&c(function(){a.call(new o(1))}),p=c(function(){return[1,2].toLocaleString()!==new o([1,2]).toLocaleString()})||!c(function(){o.prototype.toLocaleString.call([1,2])});u("toLocaleString",function(){return i(a,x?f(h(this)):h(this),f(arguments))},p)},23080:function(d,v,e){"use strict";var r=e(85903),i=e(58261),l=i.aTypedArray,c=i.exportTypedArrayMethod,f=i.getTypedArrayConstructor;c("toReversed",function(){return r(l(this),f(this))})},74701:function(d,v,e){"use strict";var r=e(58261),i=e(94237),l=e(63335),c=e(69478),f=r.aTypedArray,o=r.getTypedArrayConstructor,h=r.exportTypedArrayMethod,u=i(r.TypedArrayPrototype.sort);h("toSorted",function(x){x!==void 0&&l(x);var p=f(this),y=c(o(p),p);return u(y,x)})},91809:function(d,v,e){"use strict";var r=e(58261).exportTypedArrayMethod,i=e(3338),l=e(92916),c=e(94237),f=l.Uint8Array,o=f&&f.prototype||{},h=[].toString,u=c([].join);i(function(){h.call({})})&&(h=function(){return u(this)});var a=o.toString!==h;r("toString",h,a)},64336:function(d,v,e){"use strict";var r=e(69733);r("Uint16",function(i){return function(c,f,o){return i(this,c,f,o)}})},63914:function(d,v,e){"use strict";var r=e(69733);r("Uint32",function(i){return function(c,f,o){return i(this,c,f,o)}})},55234:function(d,v,e){"use strict";var r=e(69733);r("Uint8",function(i){return function(c,f,o){return i(this,c,f,o)}})},88104:function(d,v,e){"use strict";var r=e(69733);r("Uint8",function(i){return function(c,f,o){return i(this,c,f,o)}},!0)},77517:function(d,v,e){"use strict";var r=e(82041),i=e(58261),l=e(75406),c=e(56902),f=e(93303),o=i.aTypedArray,h=i.getTypedArrayConstructor,u=i.exportTypedArrayMethod,a=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(x){return x===8}}();u("with",function(x,p){var y=o(this),m=c(x),b=l(y)?f(p):+p;return r(y,h(y),m,b)},!a)},30149:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(69905),c=String.fromCharCode,f=i("".charAt),o=i(/./.exec),h=i("".slice),u=/^[\da-f]{2}$/i,a=/^[\da-f]{4}$/i;r({global:!0},{unescape:function(p){for(var y=l(p),m="",b=y.length,S=0,k,R;S<b;){if(k=f(y,S++),k==="%"){if(f(y,S)==="u"){if(R=h(y,S+1,S+5),o(a,R)){m+=c(parseInt(R,16)),S+=5;continue}}else if(R=h(y,S,S+2),o(u,R)){m+=c(parseInt(R,16)),S+=2;continue}}m+=k}return m}})},58453:function(d,v,e){"use strict";var r=e(13247),i=e(92916),l=e(94237),c=e(66477),f=e(2074),o=e(48059),h=e(39656),u=e(31946),a=e(94844).enforce,x=e(3338),p=e(40115),y=Object,m=Array.isArray,b=y.isExtensible,S=y.isFrozen,k=y.isSealed,R=y.freeze,A=y.seal,P={},M={},B=!i.ActiveXObject&&"ActiveXObject"in i,N,K=function(V){return function(){return V(this,arguments.length?arguments[0]:void 0)}},H=o("WeakMap",K,h),W=H.prototype,ae=l(W.set),ne=function(){return r&&x(function(){var V=R([]);return ae(new H,V,1),!S(V)})};if(p)if(B){N=h.getConstructor(K,"WeakMap",!0),f.enable();var oe=l(W.delete),q=l(W.has),X=l(W.get);c(W,{delete:function(V){if(u(V)&&!b(V)){var se=a(this);return se.frozen||(se.frozen=new N),oe(this,V)||se.frozen.delete(V)}return oe(this,V)},has:function(se){if(u(se)&&!b(se)){var ee=a(this);return ee.frozen||(ee.frozen=new N),q(this,se)||ee.frozen.has(se)}return q(this,se)},get:function(se){if(u(se)&&!b(se)){var ee=a(this);return ee.frozen||(ee.frozen=new N),q(this,se)?X(this,se):ee.frozen.get(se)}return X(this,se)},set:function(se,ee){if(u(se)&&!b(se)){var J=a(this);J.frozen||(J.frozen=new N),q(this,se)?ae(this,se,ee):J.frozen.set(se,ee)}else ae(this,se,ee);return this}})}else ne()&&c(W,{set:function(se,ee){var J;return m(se)&&(S(se)?J=P:k(se)&&(J=M)),ae(this,se,ee),J===P&&R(se),J===M&&A(se),this}})},55410:function(d,v,e){"use strict";e(58453)},65092:function(d,v,e){"use strict";var r=e(48059),i=e(39656);r("WeakSet",function(l){return function(){return l(this,arguments.length?arguments[0]:void 0)}},i)},46161:function(d,v,e){"use strict";e(65092)},88900:function(d,v,e){"use strict";var r=e(35454),i=e(64110),l=e(93683),c=ArrayBuffer.prototype;r&&!("detached"in c)&&i(c,"detached",{configurable:!0,get:function(){return l(this)}})},81138:function(d,v,e){"use strict";var r=e(94488),i=e(39760);i&&r({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return i(this,arguments.length?arguments[0]:void 0,!1)}})},54815:function(d,v,e){"use strict";var r=e(94488),i=e(39760);i&&r({target:"ArrayBuffer",proto:!0},{transfer:function(){return i(this,arguments.length?arguments[0]:void 0,!0)}})},2722:function(d,v,e){"use strict";var r=e(94488),i=e(90560).filterReject,l=e(81181);r({target:"Array",proto:!0,forced:!0},{filterOut:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}}),l("filterOut")},55885:function(d,v,e){"use strict";var r=e(94488),i=e(90560).filterReject,l=e(81181);r({target:"Array",proto:!0,forced:!0},{filterReject:function(f){return i(this,f,arguments.length>1?arguments[1]:void 0)}}),l("filterReject")},91130:function(d,v,e){"use strict";var r=e(94488),i=e(32278);r({target:"Array",stat:!0},{fromAsync:i})},64963:function(d,v,e){"use strict";var r=e(94488),i=e(45601),l=e(81181),c=e(33940),f=e(16697);r({target:"Array",proto:!0,name:"groupToMap",forced:f||!i("groupByToMap")},{groupByToMap:c}),l("groupByToMap")},8604:function(d,v,e){"use strict";var r=e(94488),i=e(36444),l=e(45601),c=e(81181);r({target:"Array",proto:!0,forced:!l("groupBy")},{groupBy:function(o){var h=arguments.length>1?arguments[1]:void 0;return i(this,o,h)}}),c("groupBy")},25178:function(d,v,e){"use strict";var r=e(94488),i=e(81181),l=e(33940),c=e(16697);r({target:"Array",proto:!0,forced:c},{groupToMap:l}),i("groupToMap")},39034:function(d,v,e){"use strict";var r=e(94488),i=e(36444),l=e(81181);r({target:"Array",proto:!0},{group:function(f){var o=arguments.length>1?arguments[1]:void 0;return i(this,f,o)}}),l("group")},1905:function(d,v,e){"use strict";var r=e(94488),i=e(18589),l=Object.isFrozen,c=function(f,o){if(!l||!i(f)||!l(f))return!1;for(var h=0,u=f.length,a;h<u;)if(a=f[h++],!(typeof a=="string"||o&&a===void 0))return!1;return u!==0};r({target:"Array",stat:!0,sham:!0,forced:!0},{isTemplateObject:function(o){if(!c(o,!0))return!1;var h=o.raw;return h.length===o.length&&c(h,!1)}})},94306:function(d,v,e){"use strict";var r=e(35454),i=e(81181),l=e(94029),c=e(82762),f=e(64110);r&&(f(Array.prototype,"lastIndex",{configurable:!0,get:function(){var h=l(this),u=c(h);return u===0?0:u-1}}),i("lastIndex"))},11762:function(d,v,e){"use strict";var r=e(35454),i=e(81181),l=e(94029),c=e(82762),f=e(64110);r&&(f(Array.prototype,"lastItem",{configurable:!0,get:function(){var h=l(this),u=c(h);return u===0?void 0:h[u-1]},set:function(h){var u=l(this),a=c(u);return u[a===0?0:a-1]=h}}),i("lastItem"))},93164:function(d,v,e){"use strict";var r=e(94488),i=e(81181),l=e(65621);r({target:"Array",proto:!0,forced:!0},{uniqueBy:l}),i("uniqueBy")},37252:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(65911),c=e(63335),f=e(56472),o=e(2291),h=e(66477),u=e(64110),a=e(59893),x=e(94844),p=e(5978),y=l("Promise"),m=l("SuppressedError"),b=ReferenceError,S=a("asyncDispose"),k=a("toStringTag"),R="AsyncDisposableStack",A=x.set,P=x.getterFor(R),M="async-dispose",B="disposed",N="pending",K=function(ae){var ne=P(ae);if(ne.state===B)throw new b(R+" already disposed");return ne},H=function(){A(f(this,W),{type:R,state:N,stack:[]}),i||(this.disposed=!1)},W=H.prototype;h(W,{disposeAsync:function(){var ne=this;return new y(function(oe,q){var X=P(ne);if(X.state===B)return oe(void 0);X.state=B,i||(ne.disposed=!0);var V=X.stack,se=V.length,ee=!1,J,le=function(j){ee?J=new m(j,J):(ee=!0,J=j),z()},z=function(){if(se){var j=V[--se];V[se]=null;try{y.resolve(j()).then(z,le)}catch(ie){le(ie)}}else X.stack=null,ee?q(J):oe(void 0)};z()})},use:function(ne){return p(K(this),ne,M),ne},adopt:function(ne,oe){var q=K(this);return c(oe),p(q,void 0,M,function(){return oe(ne)}),ne},defer:function(ne){var oe=K(this);c(ne),p(oe,void 0,M,ne)},move:function(){var ne=K(this),oe=new H;return P(oe).stack=ne.stack,ne.stack=[],ne.state=B,i||(this.disposed=!0),oe}}),i&&u(W,"disposed",{configurable:!0,get:function(){return P(this).state===B}}),o(W,S,W.disposeAsync,{name:"disposeAsync"}),o(W,k,R,{nonWritable:!0}),r({global:!0,constructor:!0},{AsyncDisposableStack:H})},48966:function(d,v,e){"use strict";var r=e(94488),i=e(34535);r({target:"AsyncIterator",name:"indexed",proto:!0,real:!0,forced:!0},{asIndexedPairs:i})},13015:function(d,v,e){"use strict";var r=e(89945),i=e(2291),l=e(65911),c=e(53776),f=e(32621),o=e(59893),h=e(14052),u=o("asyncDispose"),a=l("Promise");f(h,u)||i(h,u,function(){var x=this;return new a(function(p,y){var m=c(x,"return");m?a.resolve(r(m,x)).then(function(){p(void 0)},y):p(void 0)})})},81673:function(d,v,e){"use strict";var r=e(94488),i=e(56472),l=e(53456),c=e(68151),f=e(32621),o=e(59893),h=e(14052),u=e(16697),a=o("toStringTag"),x=TypeError,p=function(){if(i(this,h),l(this)===h)throw new x("Abstract class AsyncIterator not directly constructable")};p.prototype=h,f(h,a)||c(h,a,"AsyncIterator"),(u||!f(h,"constructor")||h.constructor===Object)&&c(h,"constructor",p),r({global:!0,constructor:!0,forced:u},{AsyncIterator:p})},78527:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(80449),c=e(10731),f=e(2279),o=e(51358),h=e(31342),u=e(25587),a=e(16697),x=h(function(p){var y=this;return new p(function(m,b){var S=function(R){y.done=!0,b(R)},k=function(){try{p.resolve(l(i(y.next,y.iterator))).then(function(R){try{l(R).done?(y.done=!0,m(u(void 0,!0))):y.remaining?(y.remaining--,k()):m(u(R.value,!1))}catch(A){S(A)}},S)}catch(R){S(R)}};k()})});r({target:"AsyncIterator",proto:!0,real:!0,forced:a},{drop:function(y){l(this);var m=o(f(+y));return new x(c(this),{remaining:m})}})},20511:function(d,v,e){"use strict";var r=e(94488),i=e(55266).every;r({target:"AsyncIterator",proto:!0,real:!0},{every:function(c){return i(this,c)}})},78366:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(80449),f=e(31946),o=e(10731),h=e(31342),u=e(25587),a=e(28255),x=e(16697),p=h(function(y){var m=this,b=m.iterator,S=m.predicate;return new y(function(k,R){var A=function(B){m.done=!0,R(B)},P=function(B){a(b,A,B,A)},M=function(){try{y.resolve(c(i(m.next,b))).then(function(B){try{if(c(B).done)m.done=!0,k(u(void 0,!0));else{var N=B.value;try{var K=S(N,m.counter++),H=function(W){W?k(u(N,!1)):M()};f(K)?y.resolve(K).then(H,P):H(K)}catch(W){P(W)}}}catch(W){A(W)}},A)}catch(B){A(B)}};M()})});r({target:"AsyncIterator",proto:!0,real:!0,forced:x},{filter:function(m){return c(this),l(m),new p(o(this),{predicate:m})}})},27427:function(d,v,e){"use strict";var r=e(94488),i=e(55266).find;r({target:"AsyncIterator",proto:!0,real:!0},{find:function(c){return i(this,c)}})},43890:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(80449),f=e(31946),o=e(10731),h=e(31342),u=e(25587),a=e(38116),x=e(28255),p=e(16697),y=h(function(m){var b=this,S=b.iterator,k=b.mapper;return new m(function(R,A){var P=function(K){b.done=!0,A(K)},M=function(K){x(S,P,K,P)},B=function(){try{m.resolve(c(i(b.next,S))).then(function(K){try{if(c(K).done)b.done=!0,R(u(void 0,!0));else{var H=K.value;try{var W=k(H,b.counter++),ae=function(ne){try{b.inner=a(ne),N()}catch(oe){M(oe)}};f(W)?m.resolve(W).then(ae,M):ae(W)}catch(ne){M(ne)}}}catch(ne){P(ne)}},P)}catch(K){P(K)}},N=function(){var K=b.inner;if(K)try{m.resolve(c(i(K.next,K.iterator))).then(function(H){try{c(H).done?(b.inner=null,B()):R(u(H.value,!1))}catch(W){M(W)}},M)}catch(H){M(H)}else B()};N()})});r({target:"AsyncIterator",proto:!0,real:!0,forced:p},{flatMap:function(b){return c(this),l(b),new y(o(this),{mapper:b,inner:null})}})},55844:function(d,v,e){"use strict";var r=e(94488),i=e(55266).forEach;r({target:"AsyncIterator",proto:!0,real:!0},{forEach:function(c){return i(this,c)}})},71361:function(d,v,e){"use strict";var r=e(94488),i=e(94029),l=e(16332),c=e(38116),f=e(14052),o=e(80025),h=e(16697);r({target:"AsyncIterator",stat:!0,forced:h},{from:function(a){var x=c(typeof a=="string"?i(a):a);return l(f,x.iterator)?x.iterator:new o(x)}})},44550:function(d,v,e){"use strict";var r=e(94488),i=e(34535);r({target:"AsyncIterator",proto:!0,real:!0,forced:!0},{indexed:i})},413:function(d,v,e){"use strict";var r=e(94488),i=e(41586),l=e(16697);r({target:"AsyncIterator",proto:!0,real:!0,forced:l},{map:i})},77464:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(80449),f=e(31946),o=e(65911),h=e(10731),u=e(28255),a=o("Promise"),x=TypeError;r({target:"AsyncIterator",proto:!0,real:!0},{reduce:function(y){c(this),l(y);var m=h(this),b=m.iterator,S=m.next,k=arguments.length<2,R=k?void 0:arguments[1],A=0;return new a(function(P,M){var B=function(K){u(b,M,K,M)},N=function(){try{a.resolve(c(i(S,b))).then(function(K){try{if(c(K).done)k?M(new x("Reduce of empty iterator with no initial value")):P(R);else{var H=K.value;if(k)k=!1,R=H,N();else try{var W=y(R,H,A),ae=function(ne){R=ne,N()};f(W)?a.resolve(W).then(ae,B):ae(W)}catch(ne){B(ne)}}A++}catch(ne){M(ne)}},M)}catch(K){M(K)}};N()})}})},77703:function(d,v,e){"use strict";var r=e(94488),i=e(55266).some;r({target:"AsyncIterator",proto:!0,real:!0},{some:function(c){return i(this,c)}})},93854:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(80449),c=e(10731),f=e(2279),o=e(51358),h=e(31342),u=e(25587),a=e(16697),x=h(function(p){var y=this,m=y.iterator,b;if(!y.remaining--){var S=u(void 0,!0);return y.done=!0,b=m.return,b!==void 0?p.resolve(i(b,m,void 0)).then(function(){return S}):S}return p.resolve(i(y.next,m)).then(function(k){return l(k).done?(y.done=!0,u(void 0,!0)):u(k.value,!1)}).then(null,function(k){throw y.done=!0,k})});r({target:"AsyncIterator",proto:!0,real:!0,forced:a},{take:function(y){l(this);var m=o(f(+y));return new x(c(this),{remaining:m})}})},962:function(d,v,e){"use strict";var r=e(94488),i=e(55266).toArray;r({target:"AsyncIterator",proto:!0,real:!0},{toArray:function(){return i(this,void 0,[])}})},44169:function(d,v,e){"use strict";var r=e(94488),i=e(17243);typeof BigInt=="function"&&r({target:"BigInt",stat:!0,forced:!0},{range:function(c,f,o){return new i(c,f,o,"bigint",BigInt(0),BigInt(1))}})},56272:function(d,v,e){"use strict";var r=e(94488),i=e(13743),l=e(32754),c=e(65911),f=e(20132),o=Object,h=function(){var u=c("Object","freeze");return u?u(f(null)):f(null)};r({global:!0,forced:!0},{compositeKey:function(){return i(l,o,arguments).get("object",h)}})},43466:function(d,v,e){"use strict";var r=e(94488),i=e(32754),l=e(65911),c=e(13743);r({global:!0,forced:!0},{compositeSymbol:function(){return arguments.length===1&&typeof arguments[0]=="string"?l("Symbol").for(arguments[0]):c(i,null,arguments).get("symbol",l("Symbol"))}})},48156:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(61618).unpack,c=i(DataView.prototype.getUint16);r({target:"DataView",proto:!0},{getFloat16:function(o){var h=c(this,o,arguments.length>1?arguments[1]:!1);return l([h&255,h>>8&255],10)}})},93236:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=i(DataView.prototype.getUint8);r({target:"DataView",proto:!0,forced:!0},{getUint8Clamped:function(f){return l(this,f)}})},42212:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(97607),c=e(24225),f=e(61618).pack,o=e(35175),h=TypeError,u=i(DataView.prototype.setUint16);r({target:"DataView",proto:!0},{setFloat16:function(x,p){if(l(this)!=="DataView")throw new h("Incorrect receiver");var y=c(x),m=f(o(p),10,2);return u(this,y,m[1]<<8|m[0],arguments.length>2?arguments[2]:!1)}})},63923:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(97607),c=e(24225),f=e(86350),o=TypeError,h=i(DataView.prototype.setUint8);r({target:"DataView",proto:!0,forced:!0},{setUint8Clamped:function(a,x){if(l(this)!=="DataView")throw new o("Incorrect receiver");var p=c(a);return h(this,p,f(x))}})},2278:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(65911),c=e(63335),f=e(56472),o=e(2291),h=e(66477),u=e(64110),a=e(59893),x=e(94844),p=e(5978),y=l("SuppressedError"),m=ReferenceError,b=a("dispose"),S=a("toStringTag"),k="DisposableStack",R=x.set,A=x.getterFor(k),P="sync-dispose",M="disposed",B="pending",N=function(W){var ae=A(W);if(ae.state===M)throw new m(k+" already disposed");return ae},K=function(){R(f(this,H),{type:k,state:B,stack:[]}),i||(this.disposed=!1)},H=K.prototype;h(H,{dispose:function(){var ae=A(this);if(ae.state!==M){ae.state=M,i||(this.disposed=!0);for(var ne=ae.stack,oe=ne.length,q=!1,X;oe;){var V=ne[--oe];ne[oe]=null;try{V()}catch(se){q?X=new y(se,X):(q=!0,X=se)}}if(ae.stack=null,q)throw X}},use:function(ae){return p(N(this),ae,P),ae},adopt:function(ae,ne){var oe=N(this);return c(ne),p(oe,void 0,P,function(){ne(ae)}),ae},defer:function(ae){var ne=N(this);c(ae),p(ne,void 0,P,ae)},move:function(){var ae=N(this),ne=new K;return A(ne).stack=ae.stack,ae.stack=[],ae.state=M,i||(this.disposed=!0),ne}}),i&&u(H,"disposed",{configurable:!0,get:function(){return A(this).state===M}}),o(H,b,H.dispose,{name:"dispose"}),o(H,S,k,{nonWritable:!0}),r({global:!0,constructor:!0},{DisposableStack:K})},36955:function(d,v,e){"use strict";var r=e(94488),i=e(47739);r({target:"Function",proto:!0,forced:!0},{demethodize:i})},77326:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(55327),c=e(15212),f=e(32621),o=e(35454),h=Object.getOwnPropertyDescriptor,u=/^\s*class\b/,a=i(u.exec),x=function(p){try{if(!o||!a(u,c(p)))return!1}catch(m){}var y=h(p,"prototype");return!!y&&f(y,"writable")&&!y.writable};r({target:"Function",stat:!0,sham:!0,forced:!0},{isCallable:function(y){return l(y)&&!x(y)}})},53571:function(d,v,e){"use strict";var r=e(94488),i=e(39812);r({target:"Function",stat:!0,forced:!0},{isConstructor:i})},28670:function(d,v,e){"use strict";var r=e(59893),i=e(37691).f,l=r("metadata"),c=Function.prototype;c[l]===void 0&&i(c,l,{value:null})},31050:function(d,v,e){"use strict";var r=e(94488),i=e(47739);r({target:"Function",proto:!0,forced:!0,name:"demethodize"},{unThis:i})},96364:function(d,v,e){"use strict";var r=e(94488),i=e(24771);r({target:"Iterator",name:"indexed",proto:!0,real:!0,forced:!0},{asIndexedPairs:i})},25321:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(56472),c=e(80449),f=e(55327),o=e(53456),h=e(64110),u=e(69392),a=e(3338),x=e(32621),p=e(59893),y=e(46571).IteratorPrototype,m=e(35454),b=e(16697),S="constructor",k="Iterator",R=p("toStringTag"),A=TypeError,P=i[k],M=b||!f(P)||P.prototype!==y||!a(function(){P({})}),B=function(){if(l(this,y),o(this)===y)throw new A("Abstract class Iterator not directly constructable")},N=function(K,H){m?h(y,K,{configurable:!0,get:function(){return H},set:function(W){if(c(this),this===y)throw new A("You can't redefine this property");x(this,K)?this[K]=W:u(this,K,W)}}):y[K]=H};x(y,R)||N(R,k),(M||!x(y,S)||y[S]===Object)&&N(S,B),B.prototype=y,r({global:!0,constructor:!0,forced:M},{Iterator:B})},46304:function(d,v,e){"use strict";var r=e(89945),i=e(2291),l=e(53776),c=e(32621),f=e(59893),o=e(46571).IteratorPrototype,h=f("dispose");c(o,h)||i(o,h,function(){var u=l(this,"return");u&&r(u,this)})},55163:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(80449),c=e(10731),f=e(2279),o=e(51358),h=e(20547),u=e(16697),a=h(function(){for(var x=this.iterator,p=this.next,y,m;this.remaining;)if(this.remaining--,y=l(i(p,x)),m=this.done=!!y.done,m)return;if(y=l(i(p,x)),m=this.done=!!y.done,!m)return y.value});r({target:"Iterator",proto:!0,real:!0,forced:u},{drop:function(p){l(this);var y=o(f(+p));return new a(c(this),{remaining:y})}})},78722:function(d,v,e){"use strict";var r=e(94488),i=e(62003),l=e(63335),c=e(80449),f=e(10731);r({target:"Iterator",proto:!0,real:!0},{every:function(h){c(this),l(h);var u=f(this),a=0;return!i(u,function(x,p){if(!h(x,a++))return p()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},35977:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(80449),f=e(10731),o=e(20547),h=e(46319),u=e(16697),a=o(function(){for(var x=this.iterator,p=this.predicate,y=this.next,m,b,S;;){if(m=c(i(y,x)),b=this.done=!!m.done,b)return;if(S=m.value,h(x,p,[S,this.counter++],!0))return S}});r({target:"Iterator",proto:!0,real:!0,forced:u},{filter:function(p){return c(this),l(p),new a(f(this),{predicate:p})}})},81848:function(d,v,e){"use strict";var r=e(94488),i=e(62003),l=e(63335),c=e(80449),f=e(10731);r({target:"Iterator",proto:!0,real:!0},{find:function(h){c(this),l(h);var u=f(this),a=0;return i(u,function(x,p){if(h(x,a++))return p(x)},{IS_RECORD:!0,INTERRUPTED:!0}).result}})},52867:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(63335),c=e(80449),f=e(10731),o=e(7157),h=e(20547),u=e(67996),a=e(16697),x=h(function(){for(var p=this.iterator,y=this.mapper,m,b;;){if(b=this.inner)try{if(m=c(i(b.next,b.iterator)),!m.done)return m.value;this.inner=null}catch(S){u(p,"throw",S)}if(m=c(i(this.next,p)),this.done=!!m.done)return;try{this.inner=o(y(m.value,this.counter++),!1)}catch(S){u(p,"throw",S)}}});r({target:"Iterator",proto:!0,real:!0,forced:a},{flatMap:function(y){return c(this),l(y),new x(f(this),{mapper:y,inner:null})}})},72211:function(d,v,e){"use strict";var r=e(94488),i=e(62003),l=e(63335),c=e(80449),f=e(10731);r({target:"Iterator",proto:!0,real:!0},{forEach:function(h){c(this),l(h);var u=f(this),a=0;i(u,function(x){h(x,a++)},{IS_RECORD:!0})}})},84862:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(94029),c=e(16332),f=e(46571).IteratorPrototype,o=e(20547),h=e(7157),u=e(16697),a=o(function(){return i(this.next,this.iterator)},!0);r({target:"Iterator",stat:!0,forced:u},{from:function(p){var y=h(typeof p=="string"?l(p):p,!0);return c(f,y.iterator)?y.iterator:new a(y)}})},92381:function(d,v,e){"use strict";var r=e(94488),i=e(24771);r({target:"Iterator",proto:!0,real:!0,forced:!0},{indexed:i})},19517:function(d,v,e){"use strict";var r=e(94488),i=e(2155),l=e(16697);r({target:"Iterator",proto:!0,real:!0,forced:l},{map:i})},69667:function(d,v,e){"use strict";var r=e(94488),i=e(17243),l=TypeError;r({target:"Iterator",stat:!0,forced:!0},{range:function(f,o,h){if(typeof f=="number")return new i(f,o,h,"number",0,1);if(typeof f=="bigint")return new i(f,o,h,"bigint",BigInt(0),BigInt(1));throw new l("Incorrect Iterator.range arguments")}})},80820:function(d,v,e){"use strict";var r=e(94488),i=e(62003),l=e(63335),c=e(80449),f=e(10731),o=TypeError;r({target:"Iterator",proto:!0,real:!0},{reduce:function(u){c(this),l(u);var a=f(this),x=arguments.length<2,p=x?void 0:arguments[1],y=0;if(i(a,function(m){x?(x=!1,p=m):p=u(p,m,y),y++},{IS_RECORD:!0}),x)throw new o("Reduce of empty iterator with no initial value");return p}})},87873:function(d,v,e){"use strict";var r=e(94488),i=e(62003),l=e(63335),c=e(80449),f=e(10731);r({target:"Iterator",proto:!0,real:!0},{some:function(h){c(this),l(h);var u=f(this),a=0;return i(u,function(x,p){if(h(x,a++))return p()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},54609:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(80449),c=e(10731),f=e(2279),o=e(51358),h=e(20547),u=e(67996),a=e(16697),x=h(function(){var p=this.iterator;if(!this.remaining--)return this.done=!0,u(p,"normal",void 0);var y=l(i(this.next,p)),m=this.done=!!y.done;if(!m)return y.value});r({target:"Iterator",proto:!0,real:!0,forced:a},{take:function(y){l(this);var m=o(f(+y));return new x(c(this),{remaining:m})}})},28566:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(62003),c=e(10731),f=[].push;r({target:"Iterator",proto:!0,real:!0},{toArray:function(){var h=[];return l(c(i(this)),f,{that:h,IS_RECORD:!0}),h}})},51697:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(57975),c=e(80025),f=e(10731),o=e(16697);r({target:"Iterator",proto:!0,real:!0,forced:o},{toAsync:function(){return new c(f(new l(f(i(this)))))}})},61872:function(d,v,e){"use strict";var r=e(94488),i=e(82778),l=e(83502);r({target:"JSON",stat:!0,forced:!i},{isRawJSON:l})},76077:function(d,v,e){"use strict";var r=e(94488),i=e(35454),l=e(92916),c=e(65911),f=e(94237),o=e(89945),h=e(55327),u=e(31946),a=e(18589),x=e(32621),p=e(69905),y=e(82762),m=e(69392),b=e(3338),S=e(70913),k=e(42820),R=l.JSON,A=l.Number,P=l.SyntaxError,M=R&&R.parse,B=c("Object","keys"),N=Object.getOwnPropertyDescriptor,K=f("".charAt),H=f("".slice),W=f(/./.exec),ae=f([].push),ne=/^\d$/,oe=/^[1-9]$/,q=/^(?:-|\d)$/,X=/^[\t\n\r ]$/,V=0,se=1,ee=function(Se,Ie){Se=p(Se);var He=new j(Se,0,""),je=He.parse(),Dt=je.value,ht=He.skip(X,je.end);if(ht<Se.length)throw new P('Unexpected extra character: "'+K(Se,ht)+'" after the parsed data at: '+ht);return h(Ie)?J({"":Dt},"",Ie,je):Dt},J=function(Se,Ie,He,je){var Dt=Se[Ie],ht=je&&Dt===je.value,It=ht&&typeof je.source=="string"?{source:je.source}:{},Zt,Rt,ar,$e,gt;if(u(Dt)){var Mt=a(Dt),et=ht?je.nodes:Mt?[]:{};if(Mt)for(Zt=et.length,ar=y(Dt),$e=0;$e<ar;$e++)le(Dt,$e,J(Dt,""+$e,He,$e<Zt?et[$e]:void 0));else for(Rt=B(Dt),ar=y(Rt),$e=0;$e<ar;$e++)gt=Rt[$e],le(Dt,gt,J(Dt,gt,He,x(et,gt)?et[gt]:void 0))}return o(He,Se,Ie,Dt,It)},le=function(Se,Ie,He){if(i){var je=N(Se,Ie);if(je&&!je.configurable)return}He===void 0?delete Se[Ie]:m(Se,Ie,He)},z=function(Se,Ie,He,je){this.value=Se,this.end=Ie,this.source=He,this.nodes=je},j=function(Se,Ie){this.source=Se,this.index=Ie};j.prototype={fork:function(Se){return new j(this.source,Se)},parse:function(){var Se=this.source,Ie=this.skip(X,this.index),He=this.fork(Ie),je=K(Se,Ie);if(W(q,je))return He.number();switch(je){case"{":return He.object();case"[":return He.array();case'"':return He.string();case"t":return He.keyword(!0);case"f":return He.keyword(!1);case"n":return He.keyword(null)}throw new P('Unexpected character: "'+je+'" at: '+Ie)},node:function(Se,Ie,He,je,Dt){return new z(Ie,je,Se?null:H(this.source,He,je),Dt)},object:function(){for(var Se=this.source,Ie=this.index+1,He=!1,je={},Dt={};Ie<Se.length;){if(Ie=this.until(['"',"}"],Ie),K(Se,Ie)==="}"&&!He){Ie++;break}var ht=this.fork(Ie).string(),It=ht.value;Ie=ht.end,Ie=this.until([":"],Ie)+1,Ie=this.skip(X,Ie),ht=this.fork(Ie).parse(),m(Dt,It,ht),m(je,It,ht.value),Ie=this.until([",","}"],ht.end);var Zt=K(Se,Ie);if(Zt===",")He=!0,Ie++;else if(Zt==="}"){Ie++;break}}return this.node(se,je,this.index,Ie,Dt)},array:function(){for(var Se=this.source,Ie=this.index+1,He=!1,je=[],Dt=[];Ie<Se.length;){if(Ie=this.skip(X,Ie),K(Se,Ie)==="]"&&!He){Ie++;break}var ht=this.fork(Ie).parse();if(ae(Dt,ht),ae(je,ht.value),Ie=this.until([",","]"],ht.end),K(Se,Ie)===",")He=!0,Ie++;else if(K(Se,Ie)==="]"){Ie++;break}}return this.node(se,je,this.index,Ie,Dt)},string:function(){var Se=this.index,Ie=S(this.source,this.index+1);return this.node(V,Ie.value,Se,Ie.end)},number:function(){var Se=this.source,Ie=this.index,He=Ie;if(K(Se,He)==="-"&&He++,K(Se,He)==="0")He++;else if(W(oe,K(Se,He)))He=this.skip(ne,++He);else throw new P("Failed to parse number at: "+He);if(K(Se,He)==="."&&(He=this.skip(ne,++He)),K(Se,He)==="e"||K(Se,He)==="E"){He++,(K(Se,He)==="+"||K(Se,He)==="-")&&He++;var je=He;if(He=this.skip(ne,He),je===He)throw new P("Failed to parse number's exponent value at: "+He)}return this.node(V,A(H(Se,Ie,He)),Ie,He)},keyword:function(Se){var Ie=""+Se,He=this.index,je=He+Ie.length;if(H(this.source,He,je)!==Ie)throw new P("Failed to parse value at: "+He);return this.node(V,Se,He,je)},skip:function(Se,Ie){for(var He=this.source;Ie<He.length&&W(Se,K(He,Ie));Ie++);return Ie},until:function(Se,Ie){Ie=this.skip(X,Ie);for(var He=K(this.source,Ie),je=0;je<Se.length;je++)if(Se[je]===He)return Ie;throw new P('Unexpected character: "'+He+'" at: '+Ie)}};var ie=b(function(){var Se="9007199254740993",Ie;return M(Se,function(He,je,Dt){Ie=Dt.source}),Ie!==Se}),me=k&&!b(function(){return 1/M("-0 ")!==-1/0});r({target:"JSON",stat:!0,forced:ie},{parse:function(Ie,He){return me&&!h(He)?M(Ie):ee(Ie,He)}})},9196:function(d,v,e){"use strict";var r=e(94488),i=e(13247),l=e(82778),c=e(65911),f=e(89945),o=e(94237),h=e(55327),u=e(83502),a=e(69905),x=e(69392),p=e(70913),y=e(65451),m=e(6145),b=e(94844).set,S=String,k=SyntaxError,R=c("JSON","parse"),A=c("JSON","stringify"),P=c("Object","create"),M=c("Object","freeze"),B=o("".charAt),N=o("".slice),K=o(/./.exec),H=o([].push),W=m(),ae=W.length,ne="Unacceptable as raw JSON",oe=/^[\t\n\r ]$/;r({target:"JSON",stat:!0,forced:!l},{rawJSON:function(X){var V=a(X);if(V===""||K(oe,B(V,0))||K(oe,B(V,V.length-1)))throw new k(ne);var se=R(V);if(typeof se=="object"&&se!==null)throw new k(ne);var ee=P(null);return b(ee,{type:"RawJSON"}),x(ee,"rawJSON",V),i?M(ee):ee}}),A&&r({target:"JSON",stat:!0,arity:3,forced:!l},{stringify:function(X,V,se){var ee=y(V),J=[],le=A(X,function(He,je){var Dt=h(ee)?f(ee,this,S(He),je):je;return u(Dt)?W+(H(J,Dt.rawJSON)-1):Dt},se);if(typeof le!="string")return le;for(var z="",j=le.length,ie=0;ie<j;ie++){var me=B(le,ie);if(me==='"'){var Se=p(le,++ie).end-1,Ie=N(le,ie,Se);z+=N(Ie,0,ae)===W?J[N(Ie,ae)]:'"'+Ie+'"',ie=Se}else z+=me}return z}})},5369:function(d,v,e){"use strict";var r=e(94488),i=e(42683),l=e(2786).remove;r({target:"Map",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var f=i(this),o=!0,h,u=0,a=arguments.length;u<a;u++)h=l(f,arguments[u]),o=o&&h;return!!o}})},26259:function(d,v,e){"use strict";var r=e(94488),i=e(42683),l=e(2786),c=l.get,f=l.has,o=l.set;r({target:"Map",proto:!0,real:!0,forced:!0},{emplace:function(u,a){var x=i(this),p,y;return f(x,u)?(p=c(x,u),"update"in a&&(p=a.update(p,u,x),o(x,u,p)),p):(y=a.insert(u,x),o(x,u,y),y)}})},47736:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(95037);r({target:"Map",proto:!0,real:!0,forced:!0},{every:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0);return c(h,function(a,x){if(!u(a,x,h))return!1},!0)!==!1}})},28220:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(2786),f=e(95037),o=c.Map,h=c.set;r({target:"Map",proto:!0,real:!0,forced:!0},{filter:function(a){var x=l(this),p=i(a,arguments.length>1?arguments[1]:void 0),y=new o;return f(x,function(m,b){p(m,b,x)&&h(y,b,m)}),y}})},49350:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(95037);r({target:"Map",proto:!0,real:!0,forced:!0},{findKey:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0),a=c(h,function(x,p){if(u(x,p,h))return{key:p}},!0);return a&&a.key}})},62060:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(95037);r({target:"Map",proto:!0,real:!0,forced:!0},{find:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0),a=c(h,function(x,p){if(u(x,p,h))return{value:x}},!0);return a&&a.value}})},20126:function(d,v,e){"use strict";var r=e(94488),i=e(72846);r({target:"Map",stat:!0,forced:!0},{from:i})},18090:function(d,v,e){"use strict";var r=e(94488),i=e(88134),l=e(42683),c=e(95037);r({target:"Map",proto:!0,real:!0,forced:!0},{includes:function(o){return c(l(this),function(h){if(i(h,o))return!0},!0)===!0}})},14309:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(62003),c=e(55327),f=e(63335),o=e(2786).Map;r({target:"Map",stat:!0,forced:!0},{keyBy:function(u,a){var x=c(this)?this:o,p=new x;f(a);var y=f(p.set);return l(u,function(m){i(y,p,a(m),m)}),p}})},17822:function(d,v,e){"use strict";var r=e(94488),i=e(42683),l=e(95037);r({target:"Map",proto:!0,real:!0,forced:!0},{keyOf:function(f){var o=l(i(this),function(h,u){if(h===f)return{key:u}},!0);return o&&o.key}})},83543:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(2786),f=e(95037),o=c.Map,h=c.set;r({target:"Map",proto:!0,real:!0,forced:!0},{mapKeys:function(a){var x=l(this),p=i(a,arguments.length>1?arguments[1]:void 0),y=new o;return f(x,function(m,b){h(y,p(m,b,x),m)}),y}})},13853:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(2786),f=e(95037),o=c.Map,h=c.set;r({target:"Map",proto:!0,real:!0,forced:!0},{mapValues:function(a){var x=l(this),p=i(a,arguments.length>1?arguments[1]:void 0),y=new o;return f(x,function(m,b){h(y,b,p(m,b,x))}),y}})},25188:function(d,v,e){"use strict";var r=e(94488),i=e(42683),l=e(62003),c=e(2786).set;r({target:"Map",proto:!0,real:!0,arity:1,forced:!0},{merge:function(o){for(var h=i(this),u=arguments.length,a=0;a<u;)l(arguments[a++],function(x,p){c(h,x,p)},{AS_ENTRIES:!0});return h}})},10215:function(d,v,e){"use strict";var r=e(94488),i=e(48800);r({target:"Map",stat:!0,forced:!0},{of:i})},3432:function(d,v,e){"use strict";var r=e(94488),i=e(63335),l=e(42683),c=e(95037),f=TypeError;r({target:"Map",proto:!0,real:!0,forced:!0},{reduce:function(h){var u=l(this),a=arguments.length<2,x=a?void 0:arguments[1];if(i(h),c(u,function(p,y){a?(a=!1,x=p):x=h(x,p,y,u)}),a)throw new f("Reduce of empty map with no initial value");return x}})},90486:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(42683),c=e(95037);r({target:"Map",proto:!0,real:!0,forced:!0},{some:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0);return c(h,function(a,x){if(u(a,x,h))return!0},!0)===!0}})},8774:function(d,v,e){"use strict";var r=e(94488),i=e(14615);r({target:"Map",proto:!0,real:!0,name:"upsert",forced:!0},{updateOrInsert:i})},6736:function(d,v,e){"use strict";var r=e(94488),i=e(63335),l=e(42683),c=e(2786),f=TypeError,o=c.get,h=c.has,u=c.set;r({target:"Map",proto:!0,real:!0,forced:!0},{update:function(x,p){var y=l(this),m=arguments.length;i(p);var b=h(y,x);if(!b&&m<3)throw new f("Updating absent value");var S=b?o(y,x):i(m>2?arguments[2]:void 0)(x,y);return u(y,x,p(S,x,y)),y}})},94065:function(d,v,e){"use strict";var r=e(94488),i=e(14615);r({target:"Map",proto:!0,real:!0,forced:!0},{upsert:i})},93036:function(d,v,e){"use strict";var r=e(94488),i=Math.min,l=Math.max;r({target:"Math",stat:!0,forced:!0},{clamp:function(f,o,h){return i(h,l(o,f))}})},75708:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,nonConfigurable:!0,nonWritable:!0},{DEG_PER_RAD:Math.PI/180})},84624:function(d,v,e){"use strict";var r=e(94488),i=180/Math.PI;r({target:"Math",stat:!0,forced:!0},{degrees:function(c){return c*i}})},43710:function(d,v,e){"use strict";var r=e(94488),i=e(35175);r({target:"Math",stat:!0},{f16round:i})},66233:function(d,v,e){"use strict";var r=e(94488),i=e(24619),l=e(14894);r({target:"Math",stat:!0,forced:!0},{fscale:function(f,o,h,u,a){return l(i(f,o,h,u,a))}})},92762:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,forced:!0},{iaddh:function(l,c,f,o){var h=l>>>0,u=c>>>0,a=f>>>0;return u+(o>>>0)+((h&a|(h|a)&~(h+a>>>0))>>>31)|0}})},24467:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,forced:!0},{imulh:function(l,c){var f=65535,o=+l,h=+c,u=o&f,a=h&f,x=o>>16,p=h>>16,y=(x*a>>>0)+(u*a>>>16);return x*p+(y>>16)+((u*p>>>0)+(y&f)>>16)}})},68465:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,forced:!0},{isubh:function(l,c,f,o){var h=l>>>0,u=c>>>0,a=f>>>0;return u-(o>>>0)-((~h&a|~(h^a)&h-a>>>0)>>>31)|0}})},77004:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,nonConfigurable:!0,nonWritable:!0},{RAD_PER_DEG:180/Math.PI})},83925:function(d,v,e){"use strict";var r=e(94488),i=Math.PI/180;r({target:"Math",stat:!0,forced:!0},{radians:function(c){return c*i}})},51117:function(d,v,e){"use strict";var r=e(94488),i=e(24619);r({target:"Math",stat:!0,forced:!0},{scale:i})},87236:function(d,v,e){"use strict";var r=e(94488),i=e(80449),l=e(1222),c=e(83126),f=e(25587),o=e(94844),h="Seeded Random",u=h+" Generator",a='Math.seededPRNG() argument should have a "seed" field with a finite value.',x=o.set,p=o.getterFor(u),y=TypeError,m=c(function(S){x(this,{type:u,seed:S%2147483647})},h,function(){var S=p(this),k=S.seed=(S.seed*1103515245+12345)%2147483647;return f((k&1073741823)/1073741823,!1)});r({target:"Math",stat:!0,forced:!0},{seededPRNG:function(S){var k=i(S).seed;if(!l(k))throw new y(a);return new m(k)}})},83733:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,forced:!0},{signbit:function(l){var c=+l;return c===c&&c===0?1/c===-1/0:c<0}})},92044:function(d,v,e){"use strict";var r=e(94488);r({target:"Math",stat:!0,forced:!0},{umulh:function(l,c){var f=65535,o=+l,h=+c,u=o&f,a=h&f,x=o>>>16,p=h>>>16,y=(x*a>>>0)+(u*a>>>16);return x*p+(y>>>16)+((u*p>>>0)+(y&f)>>>16)}})},29190:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(56902),c="Invalid number representation",f="Invalid radix",o=RangeError,h=SyntaxError,u=TypeError,a=parseInt,x=Math.pow,p=/^[\d.a-z]+$/,y=i("".charAt),m=i(p.exec),b=i(1 .toString),S=i("".slice),k=i("".split);r({target:"Number",stat:!0,forced:!0},{fromString:function(A,P){var M=1;if(typeof A!="string")throw new u(c);if(!A.length)throw new h(c);if(y(A,0)==="-"&&(M=-1,A=S(A,1),!A.length))throw new h(c);var B=P===void 0?10:l(P);if(B<2||B>36)throw new o(f);if(!m(p,A))throw new h(c);var N=k(A,"."),K=a(N[0],B);if(N.length>1&&(K+=a(N[1],B)/x(B,N[1].length)),B===10&&b(K,B)!==A)throw new h(c);return M*K}})},10775:function(d,v,e){"use strict";var r=e(94488),i=e(17243);r({target:"Number",stat:!0,forced:!0},{range:function(c,f,o){return new i(c,f,o,"number",0,1)}})},19593:function(d,v,e){"use strict";var r=e(94488),i=e(20574);r({target:"Object",stat:!0,forced:!0},{iterateEntries:function(c){return new i(c,"entries")}})},26502:function(d,v,e){"use strict";var r=e(94488),i=e(20574);r({target:"Object",stat:!0,forced:!0},{iterateKeys:function(c){return new i(c,"keys")}})},10174:function(d,v,e){"use strict";var r=e(94488),i=e(20574);r({target:"Object",stat:!0,forced:!0},{iterateValues:function(c){return new i(c,"values")}})},76867:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(35454),c=e(51996),f=e(63335),o=e(80449),h=e(56472),u=e(55327),a=e(4112),x=e(31946),p=e(53776),y=e(2291),m=e(66477),b=e(64110),S=e(61810),k=e(59893),R=e(94844),A=k("observable"),P="Observable",M="Subscription",B="SubscriptionObserver",N=R.getterFor,K=R.set,H=N(P),W=N(M),ae=N(B),ne=function(se){this.observer=o(se),this.cleanup=void 0,this.subscriptionObserver=void 0};ne.prototype={type:M,clean:function(){var se=this.cleanup;if(se){this.cleanup=void 0;try{se()}catch(ee){S(ee)}}},close:function(){if(!l){var se=this.facade,ee=this.subscriptionObserver;se.closed=!0,ee&&(ee.closed=!0)}this.observer=void 0},isClosed:function(){return this.observer===void 0}};var oe=function(se,ee){var J=K(this,new ne(se)),le;l||(this.closed=!1);try{(le=p(se,"start"))&&i(le,se,this)}catch(me){S(me)}if(!J.isClosed()){var z=J.subscriptionObserver=new q(J);try{var j=ee(z),ie=j;a(j)||(J.cleanup=u(j.unsubscribe)?function(){ie.unsubscribe()}:f(j))}catch(me){z.error(me);return}J.isClosed()&&J.clean()}};oe.prototype=m({},{unsubscribe:function(){var ee=W(this);ee.isClosed()||(ee.close(),ee.clean())}}),l&&b(oe.prototype,"closed",{configurable:!0,get:function(){return W(this).isClosed()}});var q=function(se){K(this,{type:B,subscriptionState:se}),l||(this.closed=!1)};q.prototype=m({},{next:function(ee){var J=ae(this).subscriptionState;if(!J.isClosed()){var le=J.observer;try{var z=p(le,"next");z&&i(z,le,ee)}catch(j){S(j)}}},error:function(ee){var J=ae(this).subscriptionState;if(!J.isClosed()){var le=J.observer;J.close();try{var z=p(le,"error");z?i(z,le,ee):S(ee)}catch(j){S(j)}J.clean()}},complete:function(){var ee=ae(this).subscriptionState;if(!ee.isClosed()){var J=ee.observer;ee.close();try{var le=p(J,"complete");le&&i(le,J)}catch(z){S(z)}ee.clean()}}}),l&&b(q.prototype,"closed",{configurable:!0,get:function(){return ae(this).subscriptionState.isClosed()}});var X=function(ee){h(this,V),K(this,{type:P,subscriber:f(ee)})},V=X.prototype;m(V,{subscribe:function(ee){var J=arguments.length;return new oe(u(ee)?{next:ee,error:J>1?arguments[1]:void 0,complete:J>2?arguments[2]:void 0}:x(ee)?ee:{},H(this).subscriber)}}),y(V,A,function(){return this}),r({global:!0,constructor:!0,forced:!0},{Observable:X}),c(P)},14548:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(89945),c=e(80449),f=e(39812),o=e(85428),h=e(53776),u=e(62003),a=e(59893),x=a("observable");r({target:"Observable",stat:!0,forced:!0},{from:function(y){var m=f(this)?this:i("Observable"),b=h(c(y),x);if(b){var S=c(l(b,y));return S.constructor===m?S:new m(function(R){return S.subscribe(R)})}var k=o(y);return new m(function(R){u(k,function(A,P){if(R.next(A),R.closed)return P()},{IS_ITERATOR:!0,INTERRUPTED:!0}),R.complete()})}})},96378:function(d,v,e){"use strict";e(76867),e(14548),e(6053)},6053:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(39812),c=i("Array");r({target:"Observable",stat:!0,forced:!0},{of:function(){for(var o=l(this)?this:i("Observable"),h=arguments.length,u=c(h),a=0;a<h;)u[a]=arguments[a++];return new o(function(x){for(var p=0;p<h;p++)if(x.next(u[p]),x.closed)return;x.complete()})}})},58216:function(d,v,e){"use strict";var r=e(94488),i=e(73446),l=e(80734);r({target:"Promise",stat:!0,forced:!0},{try:function(c){var f=i.f(this),o=l(c);return(o.error?f.reject:f.resolve)(o.value),f.promise}})},41401:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=i.toKey,f=i.set;r({target:"Reflect",stat:!0},{defineMetadata:function(h,u,a){var x=arguments.length<4?void 0:c(arguments[3]);f(h,u,l(a),x)}})},79908:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=i.toKey,f=i.getMap,o=i.store;r({target:"Reflect",stat:!0},{deleteMetadata:function(u,a){var x=arguments.length<3?void 0:c(arguments[2]),p=f(l(a),x,!1);if(p===void 0||!p.delete(u))return!1;if(p.size)return!0;var y=o.get(a);return y.delete(x),!!y.size||o.delete(a)}})},79890:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(82584),c=e(80449),f=e(53456),o=e(65621),h=i(o),u=i([].concat),a=l.keys,x=l.toKey,p=function(y,m){var b=a(y,m),S=f(y);if(S===null)return b;var k=p(S,m);return k.length?b.length?h(u(b,k)):k:b};r({target:"Reflect",stat:!0},{getMetadataKeys:function(m){var b=arguments.length<2?void 0:x(arguments[1]);return p(c(m),b)}})},82531:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=e(53456),f=i.has,o=i.get,h=i.toKey,u=function(a,x,p){var y=f(a,x,p);if(y)return o(a,x,p);var m=c(x);return m!==null?u(a,m,p):void 0};r({target:"Reflect",stat:!0},{getMetadata:function(x,p){var y=arguments.length<3?void 0:h(arguments[2]);return u(x,l(p),y)}})},38944:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=i.keys,f=i.toKey;r({target:"Reflect",stat:!0},{getOwnMetadataKeys:function(h){var u=arguments.length<2?void 0:f(arguments[1]);return c(l(h),u)}})},88472:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=i.get,f=i.toKey;r({target:"Reflect",stat:!0},{getOwnMetadata:function(h,u){var a=arguments.length<3?void 0:f(arguments[2]);return c(h,l(u),a)}})},78423:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=e(53456),f=i.has,o=i.toKey,h=function(u,a,x){var p=f(u,a,x);if(p)return!0;var y=c(a);return y!==null?h(u,y,x):!1};r({target:"Reflect",stat:!0},{hasMetadata:function(a,x){var p=arguments.length<3?void 0:o(arguments[2]);return h(a,l(x),p)}})},65713:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=i.has,f=i.toKey;r({target:"Reflect",stat:!0},{hasOwnMetadata:function(h,u){var a=arguments.length<3?void 0:f(arguments[2]);return c(h,l(u),a)}})},22968:function(d,v,e){"use strict";var r=e(94488),i=e(82584),l=e(80449),c=i.toKey,f=i.set;r({target:"Reflect",stat:!0},{metadata:function(h,u){return function(x,p){f(h,u,l(x),c(p))}}})},17564:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(69905),c=e(19268),f=i("".charCodeAt),o=i("".replace),h=RegExp("[!\"#$%&'()*+,\\-./:;<=>?@[\\\\\\]^`{|}~"+c+"]","g");r({target:"RegExp",stat:!0,forced:!0},{escape:function(a){var x=l(a),p=f(x,0);return(p>47&&p<58?"\\x3":"")+o(x,h,"\\$&")}})},1220:function(d,v,e){"use strict";var r=e(94488),i=e(17442),l=e(19691).add;r({target:"Set",proto:!0,real:!0,forced:!0},{addAll:function(){for(var f=i(this),o=0,h=arguments.length;o<h;o++)l(f,arguments[o]);return f}})},44886:function(d,v,e){"use strict";var r=e(94488),i=e(17442),l=e(19691).remove;r({target:"Set",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var f=i(this),o=!0,h,u=0,a=arguments.length;u<a;u++)h=l(f,arguments[u]),o=o&&h;return!!o}})},35295:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(10038);r({target:"Set",proto:!0,real:!0,forced:!0},{difference:function(o){return i(c,this,l(o))}})},57019:function(d,v,e){"use strict";var r=e(94488),i=e(10038),l=e(22627);r({target:"Set",proto:!0,real:!0,forced:!l("difference")},{difference:i})},80286:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(17442),c=e(57002);r({target:"Set",proto:!0,real:!0,forced:!0},{every:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0);return c(h,function(a){if(!u(a,a,h))return!1},!0)!==!1}})},38487:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(17442),c=e(19691),f=e(57002),o=c.Set,h=c.add;r({target:"Set",proto:!0,real:!0,forced:!0},{filter:function(a){var x=l(this),p=i(a,arguments.length>1?arguments[1]:void 0),y=new o;return f(x,function(m){p(m,m,x)&&h(y,m)}),y}})},29916:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(17442),c=e(57002);r({target:"Set",proto:!0,real:!0,forced:!0},{find:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0),a=c(h,function(x){if(u(x,x,h))return{value:x}},!0);return a&&a.value}})},25541:function(d,v,e){"use strict";var r=e(94488),i=e(72846);r({target:"Set",stat:!0,forced:!0},{from:i})},34926:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(16049);r({target:"Set",proto:!0,real:!0,forced:!0},{intersection:function(o){return i(c,this,l(o))}})},45612:function(d,v,e){"use strict";var r=e(94488),i=e(3338),l=e(16049),c=e(22627),f=!c("intersection")||i(function(){return Array.from(new Set([1,2,3]).intersection(new Set([3,2])))!=="3,2"});r({target:"Set",proto:!0,real:!0,forced:f},{intersection:l})},68255:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(17616);r({target:"Set",proto:!0,real:!0,forced:!0},{isDisjointFrom:function(o){return i(c,this,l(o))}})},98080:function(d,v,e){"use strict";var r=e(94488),i=e(17616),l=e(22627);r({target:"Set",proto:!0,real:!0,forced:!l("isDisjointFrom")},{isDisjointFrom:i})},16450:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(84833);r({target:"Set",proto:!0,real:!0,forced:!0},{isSubsetOf:function(o){return i(c,this,l(o))}})},96351:function(d,v,e){"use strict";var r=e(94488),i=e(84833),l=e(22627);r({target:"Set",proto:!0,real:!0,forced:!l("isSubsetOf")},{isSubsetOf:i})},86921:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(51135);r({target:"Set",proto:!0,real:!0,forced:!0},{isSupersetOf:function(o){return i(c,this,l(o))}})},60244:function(d,v,e){"use strict";var r=e(94488),i=e(51135),l=e(22627);r({target:"Set",proto:!0,real:!0,forced:!l("isSupersetOf")},{isSupersetOf:i})},82928:function(d,v,e){"use strict";var r=e(94488),i=e(94237),l=e(17442),c=e(57002),f=e(69905),o=i([].join),h=i([].push);r({target:"Set",proto:!0,real:!0,forced:!0},{join:function(a){var x=l(this),p=a===void 0?",":f(a),y=[];return c(x,function(m){h(y,m)}),o(y,p)}})},42947:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(17442),c=e(19691),f=e(57002),o=c.Set,h=c.add;r({target:"Set",proto:!0,real:!0,forced:!0},{map:function(a){var x=l(this),p=i(a,arguments.length>1?arguments[1]:void 0),y=new o;return f(x,function(m){h(y,p(m,m,x))}),y}})},71568:function(d,v,e){"use strict";var r=e(94488),i=e(48800);r({target:"Set",stat:!0,forced:!0},{of:i})},94194:function(d,v,e){"use strict";var r=e(94488),i=e(63335),l=e(17442),c=e(57002),f=TypeError;r({target:"Set",proto:!0,real:!0,forced:!0},{reduce:function(h){var u=l(this),a=arguments.length<2,x=a?void 0:arguments[1];if(i(h),c(u,function(p){a?(a=!1,x=p):x=h(x,p,p,u)}),a)throw new f("Reduce of empty set with no initial value");return x}})},30556:function(d,v,e){"use strict";var r=e(94488),i=e(80666),l=e(17442),c=e(57002);r({target:"Set",proto:!0,real:!0,forced:!0},{some:function(o){var h=l(this),u=i(o,arguments.length>1?arguments[1]:void 0);return c(h,function(a){if(u(a,a,h))return!0},!0)===!0}})},93102:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(36312);r({target:"Set",proto:!0,real:!0,forced:!0},{symmetricDifference:function(o){return i(c,this,l(o))}})},32100:function(d,v,e){"use strict";var r=e(94488),i=e(36312),l=e(22627);r({target:"Set",proto:!0,real:!0,forced:!l("symmetricDifference")},{symmetricDifference:i})},82074:function(d,v,e){"use strict";var r=e(94488),i=e(89945),l=e(77999),c=e(24667);r({target:"Set",proto:!0,real:!0,forced:!0},{union:function(o){return i(c,this,l(o))}})},1821:function(d,v,e){"use strict";var r=e(94488),i=e(24667),l=e(22627);r({target:"Set",proto:!0,real:!0,forced:!l("union")},{union:i})},13578:function(d,v,e){"use strict";var r=e(94488),i=e(13764).charAt,l=e(95955),c=e(56902),f=e(69905);r({target:"String",proto:!0,forced:!0},{at:function(h){var u=f(l(this)),a=u.length,x=c(h),p=x>=0?x:a+x;return p<0||p>=a?void 0:i(u,p)}})},62882:function(d,v,e){"use strict";var r=e(94488),i=e(83126),l=e(25587),c=e(95955),f=e(69905),o=e(94844),h=e(13764),u=h.codeAt,a=h.charAt,x="String Iterator",p=o.set,y=o.getterFor(x),m=i(function(S){p(this,{type:x,string:S,index:0})},"String",function(){var S=y(this),k=S.string,R=S.index,A;return R>=k.length?l(void 0,!0):(A=a(k,R),S.index+=A.length,l({codePoint:u(A,0),position:R},!1))});r({target:"String",proto:!0,forced:!0},{codePoints:function(){return new m(f(c(this)))}})},59348:function(d,v,e){"use strict";var r=e(94488),i=e(67410);r({target:"String",stat:!0,forced:!0},{cooked:i})},37457:function(d,v,e){"use strict";var r=e(13247),i=e(94488),l=e(86528),c=e(94237),f=e(13743),o=e(80449),h=e(94029),u=e(55327),a=e(82762),x=e(37691).f,p=e(71698),y=e(42530),m=e(67410),b=e(79204),S=e(19268),k=new y.WeakMap,R=y.get,A=y.has,P=y.set,M=Array,B=TypeError,N=Object.freeze||Object,K=Object.isFrozen,H=Math.min,W=c("".charAt),ae=c("".slice),ne=c("".split),oe=c(/./.exec),q=/([\n\u2028\u2029]|\r\n?)/g,X=RegExp("^["+S+"]*"),V=RegExp("[^"+S+"]"),se="Invalid tag",ee="Invalid opening line",J="Invalid closing line",le=function(Ie){var He=Ie.raw;if(r&&!K(He))throw new B("Raw template should be frozen");if(A(k,He))return R(k,He);var je=z(He),Dt=ie(je);return x(Dt,"raw",{value:N(je)}),N(Dt),P(k,He,Dt),Dt},z=function(Ie){var He=h(Ie),je=a(He),Dt=M(je),ht=M(je),It=0,Zt,Rt,ar,$e;if(!je)throw new B(se);for(;It<je;It++){var gt=He[It];if(typeof gt=="string")Dt[It]=ne(gt,q);else throw new B(se)}for(It=0;It<je;It++){var Mt=It+1===je;if(Zt=Dt[It],It===0){if(Zt.length===1||Zt[0].length>0)throw new B(ee);Zt[1]=""}if(Mt){if(Zt.length===1||oe(V,Zt[Zt.length-1]))throw new B(J);Zt[Zt.length-2]="",Zt[Zt.length-1]=""}for(var et=2;et<Zt.length;et+=2){var ft=Zt[et],ot=et+1===Zt.length&&!Mt,Je=oe(X,ft)[0];if(!ot&&Je.length===ft.length){Zt[et]="";continue}Rt=j(Je,Rt)}}var Ne=Rt?Rt.length:0;for(It=0;It<je;It++){for(Zt=Dt[It],ar=Zt[0],$e=1;$e<Zt.length;$e+=2)ar+=Zt[$e]+ae(Zt[$e+1],Ne);ht[It]=ar}return ht},j=function(Ie,He){if(He===void 0||Ie===He)return Ie;for(var je=0,Dt=H(Ie.length,He.length);je<Dt&&W(Ie,je)===W(He,je);je++);return ae(Ie,0,je)},ie=function(Ie){for(var He=0,je=Ie.length,Dt=M(je);He<je;He++)Dt[He]=b(Ie[He]);return Dt},me=function(Ie){return l(function(He){var je=p(arguments);return je[0]=le(o(He)),f(Ie,this,je)},"")},Se=me(m);i({target:"String",stat:!0,forced:!0},{dedent:function(He){return o(He),u(He)?me(He):f(Se,this,arguments)}})},14800:function(d,v,e){"use strict";var r=e(94488),i=e(16332),l=e(53456),c=e(58218),f=e(24538),o=e(20132),h=e(68151),u=e(35012),a=e(61888),x=e(7825),p=e(59893),y=p("toStringTag"),m=Error,b=function(R,A,P){var M=i(S,this),B;return c?B=c(new m,M?l(this):S):(B=M?this:o(S),h(B,y,"Error")),P!==void 0&&h(B,"message",x(P)),a(B,b,B.stack,1),h(B,"error",R),h(B,"suppressed",A),B};c?c(b,m):f(b,m,{name:!0});var S=b.prototype=o(m.prototype,{constructor:u(1,b),message:u(1,""),name:u(1,"SuppressedError")});r({global:!0,constructor:!0,arity:3},{SuppressedError:b})},70654:function(d,v,e){"use strict";var r=e(92916),i=e(94674),l=e(37691).f,c=e(71256).f,f=r.Symbol;if(i("asyncDispose"),f){var o=c(f,"asyncDispose");o.enumerable&&o.configurable&&o.writable&&l(f,"asyncDispose",{value:o.value,enumerable:!1,configurable:!1,writable:!1})}},90252:function(d,v,e){"use strict";var r=e(92916),i=e(94674),l=e(37691).f,c=e(71256).f,f=r.Symbol;if(i("dispose"),f){var o=c(f,"dispose");o.enumerable&&o.configurable&&o.writable&&l(f,"dispose",{value:o.value,enumerable:!1,configurable:!1,writable:!1})}},29482:function(d,v,e){"use strict";var r=e(94488),i=e(69077);r({target:"Symbol",stat:!0},{isRegisteredSymbol:i})},51630:function(d,v,e){"use strict";var r=e(94488),i=e(69077);r({target:"Symbol",stat:!0,name:"isRegisteredSymbol"},{isRegistered:i})},61933:function(d,v,e){"use strict";var r=e(94488),i=e(40443);r({target:"Symbol",stat:!0,forced:!0},{isWellKnownSymbol:i})},619:function(d,v,e){"use strict";var r=e(94488),i=e(40443);r({target:"Symbol",stat:!0,name:"isWellKnownSymbol",forced:!0},{isWellKnown:i})},99675:function(d,v,e){"use strict";var r=e(94674);r("matcher")},53637:function(d,v,e){"use strict";var r=e(94674);r("metadataKey")},52548:function(d,v,e){"use strict";var r=e(94674);r("metadata")},57482:function(d,v,e){"use strict";var r=e(94674);r("observable")},59725:function(d,v,e){"use strict";var r=e(94674);r("patternMatch")},17610:function(d,v,e){"use strict";var r=e(94674);r("replaceAll")},11507:function(d,v,e){"use strict";var r=e(58261),i=e(90560).filterReject,l=e(27607),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("filterOut",function(h){var u=i(c(this),h,arguments.length>1?arguments[1]:void 0);return l(this,u)},!0)},16315:function(d,v,e){"use strict";var r=e(58261),i=e(90560).filterReject,l=e(27607),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("filterReject",function(h){var u=i(c(this),h,arguments.length>1?arguments[1]:void 0);return l(this,u)},!0)},56966:function(d,v,e){"use strict";var r=e(65911),i=e(6086),l=e(32278),c=e(58261),f=e(69478),o=c.aTypedArrayConstructor,h=c.exportTypedArrayStaticMethod;h("fromAsync",function(a){var x=this,p=arguments.length,y=p>1?arguments[1]:void 0,m=p>2?arguments[2]:void 0;return new(r("Promise"))(function(b){i(x),b(l(a,y,m))}).then(function(b){return f(o(x),b)})},!0)},60239:function(d,v,e){"use strict";var r=e(58261),i=e(36444),l=e(31384),c=r.aTypedArray,f=r.exportTypedArrayMethod;f("groupBy",function(h){var u=arguments.length>1?arguments[1]:void 0;return i(c(this),h,u,l)},!0)},49381:function(d,v,e){"use strict";var r=e(58261),i=e(82762),l=e(75406),c=e(51981),f=e(93303),o=e(56902),h=e(3338),u=r.aTypedArray,a=r.getTypedArrayConstructor,x=r.exportTypedArrayMethod,p=Math.max,y=Math.min,m=!h(function(){var b=new Int8Array([1]),S=b.toSpliced(1,0,{valueOf:function(){return b[0]=2,3}});return S[0]!==2||S[1]!==3});x("toSpliced",function(S,k){var R=u(this),A=a(R),P=i(R),M=c(S,P),B=arguments.length,N=0,K,H,W,ae,ne,oe,q;if(B===0)K=H=0;else if(B===1)K=0,H=P-M;else if(H=y(p(o(k),0),P-M),K=B-2,K){ae=new A(K),W=l(ae);for(var X=2;X<B;X++)ne=arguments[X],ae[X-2]=W?f(ne):+ne}for(oe=P+K-H,q=new A(oe);N<M;N++)q[N]=R[N];for(;N<M+K;N++)q[N]=ae[N-M];for(;N<oe;N++)q[N]=R[N+H-K];return q},!m)},17230:function(d,v,e){"use strict";var r=e(94237),i=e(58261),l=e(69478),c=e(65621),f=i.aTypedArray,o=i.getTypedArrayConstructor,h=i.exportTypedArrayMethod,u=r(c);h("uniqueBy",function(x){return f(this),l(o(this),u(this,x))},!0)},62720:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(94237),c=e(1674),f=e(79606),o=e(32621),h=e(69478),u=e(66244),a=e(81750),x=u.c2i,p=u.c2iUrl,y=i.Uint8Array,m=i.SyntaxError,b=l("".charAt),S=l("".replace),k=l("".slice),R=l([].push),A=/[\t\n\f\r ]/g,P="Extra bits";y&&r({target:"Uint8Array",stat:!0,forced:!0},{fromBase64:function(B){f(B);var N=arguments.length>1?c(arguments[1]):void 0,K=a(N)==="base64"?x:p,H=N?!!N.strict:!1,W=H?B:S(B,A,"");if(W.length%4===0)k(W,-2)==="=="?W=k(W,0,-2):k(W,-1)==="="&&(W=k(W,0,-1));else if(H)throw new m("Input is not correctly padded");var ae=W.length%4;switch(ae){case 1:throw new m("Bad input length");case 2:W+="AA";break;case 3:W+="A"}for(var ne=[],oe=0,q=W.length,X=function(ee){var J=b(W,oe+ee);if(!o(K,J))throw new m('Bad char in input: "'+J+'"');return K[J]<<18-6*ee};oe<q;oe+=4){var V=X(0)+X(1)+X(2)+X(3);R(ne,V>>16&255,V>>8&255,V&255)}var se=ne.length;if(ae===2){if(H&&ne[se-2]!==0)throw new m(P);se-=2}else if(ae===3){if(H&&ne[se-1]!==0)throw new m(P);se--}return h(y,ne,se)}})},57151:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(94237),c=e(79606),f=i.Uint8Array,o=i.SyntaxError,h=i.parseInt,u=/[^\da-f]/i,a=l(u.exec),x=l("".slice);f&&r({target:"Uint8Array",stat:!0,forced:!0},{fromHex:function(y){c(y);var m=y.length;if(m%2)throw new o("String should have an even number of characters");if(a(u,y))throw new o("String should only contain hex characters");for(var b=new f(m/2),S=0;S<m;S+=2)b[S/2]=h(x(y,S,S+2),16);return b}})},48732:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(94237),c=e(1674),f=e(27270),o=e(66244),h=e(81750),u=o.i2c,a=o.i2cUrl,x=i.Uint8Array,p=l("".charAt);x&&r({target:"Uint8Array",proto:!0,forced:!0},{toBase64:function(){for(var m=f(this),b=arguments.length?c(arguments[0]):void 0,S=h(b)==="base64"?u:a,k="",R=0,A=m.length,P,M=function(B){return p(S,P>>6*B&63)};R+2<A;R+=3)P=(m[R]<<16)+(m[R+1]<<8)+m[R+2],k+=M(3)+M(2)+M(1)+M(0);return R+2===A?(P=(m[R]<<16)+(m[R+1]<<8),k+=M(3)+M(2)+M(1)+"="):R+1===A&&(P=m[R]<<16,k+=M(3)+M(2)+"=="),k}})},18481:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(94237),c=e(27270),f=i.Uint8Array,o=l(1 .toString);f&&r({target:"Uint8Array",proto:!0,forced:!0},{toHex:function(){c(this);for(var u="",a=0,x=this.length;a<x;a++){var p=o(this[a],16);u+=p.length===1?"0"+p:p}return u}})},55055:function(d,v,e){"use strict";var r=e(94488),i=e(63619),l=e(42530).remove;r({target:"WeakMap",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var f=i(this),o=!0,h,u=0,a=arguments.length;u<a;u++)h=l(f,arguments[u]),o=o&&h;return!!o}})},90965:function(d,v,e){"use strict";var r=e(94488),i=e(63619),l=e(42530),c=l.get,f=l.has,o=l.set;r({target:"WeakMap",proto:!0,real:!0,forced:!0},{emplace:function(u,a){var x=i(this),p,y;return f(x,u)?(p=c(x,u),"update"in a&&(p=a.update(p,u,x),o(x,u,p)),p):(y=a.insert(u,x),o(x,u,y),y)}})},7195:function(d,v,e){"use strict";var r=e(94488),i=e(72846);r({target:"WeakMap",stat:!0,forced:!0},{from:i})},89179:function(d,v,e){"use strict";var r=e(94488),i=e(48800);r({target:"WeakMap",stat:!0,forced:!0},{of:i})},67725:function(d,v,e){"use strict";var r=e(94488),i=e(14615);r({target:"WeakMap",proto:!0,real:!0,forced:!0},{upsert:i})},59884:function(d,v,e){"use strict";var r=e(94488),i=e(18888),l=e(91385).add;r({target:"WeakSet",proto:!0,real:!0,forced:!0},{addAll:function(){for(var f=i(this),o=0,h=arguments.length;o<h;o++)l(f,arguments[o]);return f}})},89202:function(d,v,e){"use strict";var r=e(94488),i=e(18888),l=e(91385).remove;r({target:"WeakSet",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var f=i(this),o=!0,h,u=0,a=arguments.length;u<a;u++)h=l(f,arguments[u]),o=o&&h;return!!o}})},97815:function(d,v,e){"use strict";var r=e(94488),i=e(72846);r({target:"WeakSet",stat:!0,forced:!0},{from:i})},11593:function(d,v,e){"use strict";var r=e(94488),i=e(48800);r({target:"WeakSet",stat:!0,forced:!0},{of:i})},7597:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(65911),c=e(94237),f=e(89945),o=e(3338),h=e(69905),u=e(57106),a=e(66244).c2i,x=/[^\d+/a-z]/i,p=/[\t\n\f\r ]+/g,y=/[=]{1,2}$/,m=l("atob"),b=String.fromCharCode,S=c("".charAt),k=c("".replace),R=c(x.exec),A=!!m&&!o(function(){return m("aGk=")!=="hi"}),P=A&&o(function(){return m(" ")!==""}),M=A&&!o(function(){m("a")}),B=A&&!o(function(){m()}),N=A&&m.length!==1,K=!A||P||M||B||N;r({global:!0,bind:!0,enumerable:!0,forced:K},{atob:function(W){if(u(arguments.length,1),A&&!P&&!M)return f(m,i,W);var ae=k(h(W),p,""),ne="",oe=0,q=0,X,V,se;if(ae.length%4===0&&(ae=k(ae,y,"")),X=ae.length,X%4===1||R(x,ae))throw new(l("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;oe<X;)V=S(ae,oe++),se=q%4?se*64+a[V]:a[V],q++%4&&(ne+=b(255&se>>(-2*q&6)));return ne}})},55182:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(65911),c=e(94237),f=e(89945),o=e(3338),h=e(69905),u=e(57106),a=e(66244).i2c,x=l("btoa"),p=c("".charAt),y=c("".charCodeAt),m=!!x&&!o(function(){return x("hi")!=="aGk="}),b=m&&!o(function(){x()}),S=m&&o(function(){return x(null)!=="bnVsbA=="}),k=m&&x.length!==1;r({global:!0,bind:!0,enumerable:!0,forced:!m||b||S||k},{btoa:function(A){if(u(arguments.length,1),m)return f(x,i,h(A));for(var P=h(A),M="",B=0,N=a,K,H;p(P,B)||(N="=",B%1);){if(H=y(P,B+=.75),H>255)throw new(l("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");K=K<<8|H,M+=p(N,63&K>>8-B%1*8)}return M}})},91472:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(28887).clear;r({global:!0,bind:!0,enumerable:!0,forced:i.clearImmediate!==l},{clearImmediate:l})},34366:function(d,v,e){"use strict";var r=e(92916),i=e(66749),l=e(9518),c=e(59594),f=e(68151),o=function(u){if(u&&u.forEach!==c)try{f(u,"forEach",c)}catch(a){u.forEach=c}};for(var h in i)i[h]&&o(r[h]&&r[h].prototype);o(l)},85425:function(d,v,e){"use strict";var r=e(92916),i=e(66749),l=e(9518),c=e(11005),f=e(68151),o=e(94573),h=e(59893),u=h("iterator"),a=c.values,x=function(y,m){if(y){if(y[u]!==a)try{f(y,u,a)}catch(S){y[u]=a}if(o(y,m,!0),i[m]){for(var b in c)if(y[b]!==c[b])try{f(y,b,c[b])}catch(S){y[b]=c[b]}}}};for(var p in i)x(r[p]&&r[p].prototype,p);x(l,"DOMTokenList")},64522:function(d,v,e){"use strict";var r=e(94488),i=e(11270),l=e(65911),c=e(3338),f=e(20132),o=e(35012),h=e(37691).f,u=e(2291),a=e(64110),x=e(32621),p=e(56472),y=e(80449),m=e(13367),b=e(7825),S=e(52109),k=e(80739),R=e(94844),A=e(35454),P=e(16697),M="DOMException",B="DATA_CLONE_ERR",N=l("Error"),K=l(M)||function(){try{var ht=l("MessageChannel")||i("worker_threads").MessageChannel;new ht().port1.postMessage(new WeakMap)}catch(It){if(It.name===B&&It.code===25)return It.constructor}}(),H=K&&K.prototype,W=N.prototype,ae=R.set,ne=R.getterFor(M),oe="stack"in new N(M),q=function(ht){return x(S,ht)&&S[ht].m?S[ht].c:0},X=function(){p(this,V);var It=arguments.length,Zt=b(It<1?void 0:arguments[0]),Rt=b(It<2?void 0:arguments[1],"Error"),ar=q(Rt);if(ae(this,{type:M,name:Rt,message:Zt,code:ar}),A||(this.name=Rt,this.message=Zt,this.code=ar),oe){var $e=new N(Zt);$e.name=M,h(this,"stack",o(1,k($e.stack,1)))}},V=X.prototype=f(W),se=function(ht){return{enumerable:!0,configurable:!0,get:ht}},ee=function(ht){return se(function(){return ne(this)[ht]})};A&&(a(V,"code",ee("code")),a(V,"message",ee("message")),a(V,"name",ee("name"))),h(V,"constructor",o(1,X));var J=c(function(){return!(new K instanceof N)}),le=J||c(function(){return W.toString!==m||String(new K(1,2))!=="2: 1"}),z=J||c(function(){return new K(1,"DataCloneError").code!==25}),j=J||K[B]!==25||H[B]!==25,ie=P?le||z||j:J;r({global:!0,constructor:!0,forced:ie},{DOMException:ie?X:K});var me=l(M),Se=me.prototype;le&&(P||K===me)&&u(Se,"toString",m),z&&A&&K===me&&a(Se,"code",se(function(){return q(y(this).name)}));for(var Ie in S)if(x(S,Ie)){var He=S[Ie],je=He.s,Dt=o(6,He.c);x(me,je)||h(me,je,Dt),x(Se,je)||h(Se,je,Dt)}},41599:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(65911),c=e(35012),f=e(37691).f,o=e(32621),h=e(56472),u=e(25576),a=e(7825),x=e(52109),p=e(80739),y=e(35454),m=e(16697),b="DOMException",S=l("Error"),k=l(b),R=function(){h(this,A);var X=arguments.length,V=a(X<1?void 0:arguments[0]),se=a(X<2?void 0:arguments[1],"Error"),ee=new k(V,se),J=new S(V);return J.name=b,f(ee,"stack",c(1,p(J.stack,1))),u(ee,this,R),ee},A=R.prototype=k.prototype,P="stack"in new S(b),M="stack"in new k(1,2),B=k&&y&&Object.getOwnPropertyDescriptor(i,b),N=!!B&&!(B.writable&&B.configurable),K=P&&!N&&!M;r({global:!0,constructor:!0,forced:m||K},{DOMException:K?R:k});var H=l(b),W=H.prototype;if(W.constructor!==H){m||f(W,"constructor",c(1,H));for(var ae in x)if(o(x,ae)){var ne=x[ae],oe=ne.s;o(H,oe)||f(H,oe,c(6,ne.c))}}},86465:function(d,v,e){"use strict";var r=e(65911),i=e(94573),l="DOMException";i(r(l),l)},78437:function(d,v,e){"use strict";e(91472),e(91700)},73624:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(72933),c=e(63335),f=e(57106),o=e(90946),h=i.process;r({global:!0,enumerable:!0,dontCallGetSet:!0},{queueMicrotask:function(a){f(arguments.length,1),c(a);var x=o&&h.domain;l(x?x.bind(a):a)}})},62059:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(64110),c=e(35454),f=TypeError,o=Object.defineProperty,h=i.self!==i;try{if(c){var u=Object.getOwnPropertyDescriptor(i,"self");(h||!u||!u.get||!u.enumerable)&&l(i,"self",{get:function(){return i},set:function(x){if(this!==i)throw new f("Illegal invocation");o(i,"self",{value:x,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else r({global:!0,simple:!0,forced:h},{self:i})}catch(a){}},91700:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(28887).set,c=e(93222),f=i.setImmediate?c(l,!1):l;r({global:!0,bind:!0,enumerable:!0,forced:i.setImmediate!==f},{setImmediate:f})},88469:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(93222),c=l(i.setInterval,!0);r({global:!0,bind:!0,forced:i.setInterval!==c},{setInterval:c})},91572:function(d,v,e){"use strict";var r=e(94488),i=e(92916),l=e(93222),c=l(i.setTimeout,!0);r({global:!0,bind:!0,forced:i.setTimeout!==c},{setTimeout:c})},10305:function(d,v,e){"use strict";var r=e(16697),i=e(94488),l=e(92916),c=e(65911),f=e(94237),o=e(3338),h=e(6145),u=e(55327),a=e(39812),x=e(4112),p=e(31946),y=e(18446),m=e(62003),b=e(80449),S=e(97607),k=e(32621),R=e(69392),A=e(68151),P=e(82762),M=e(57106),B=e(81644),N=e(2786),K=e(19691),H=e(57002),W=e(39311),ae=e(25406),ne=e(80426),oe=l.Object,q=l.Array,X=l.Date,V=l.Error,se=l.TypeError,ee=l.PerformanceMark,J=c("DOMException"),le=N.Map,z=N.has,j=N.get,ie=N.set,me=K.Set,Se=K.add,Ie=K.has,He=c("Object","keys"),je=f([].push),Dt=f((!0).valueOf),ht=f(1 .valueOf),It=f("".valueOf),Zt=f(X.prototype.getTime),Rt=h("structuredClone"),ar="DataCloneError",$e="Transferring",gt=function(Me){return!o(function(){var tt=new l.Set([7]),Yt=Me(tt),Ot=Me(oe(7));return Yt===tt||!Yt.has(7)||!p(Ot)||+Ot!=7})&&Me},Mt=function(Me,tt){return!o(function(){var Yt=new tt,Ot=Me({a:Yt,b:Yt});return!(Ot&&Ot.a===Ot.b&&Ot.a instanceof tt&&Ot.a.stack===Yt.stack)})},et=function(Me){return!o(function(){var tt=Me(new l.AggregateError([1],Rt,{cause:3}));return tt.name!=="AggregateError"||tt.errors[0]!==1||tt.message!==Rt||tt.cause!==3})},ft=l.structuredClone,ot=r||!Mt(ft,V)||!Mt(ft,J)||!et(ft),Je=!ft&&gt(function(Me){return new ee(Rt,{detail:Me}).detail}),Ne=gt(ft)||Je,ye=function(Me){throw new J("Uncloneable type: "+Me,ar)},ke=function(Me,tt){throw new J((tt||"Cloning")+" of "+Me+" cannot be properly polyfilled in this engine",ar)},Ge=function(Me,tt){return Ne||ke(tt),Ne(Me)},We=function(){var Me;try{Me=new l.DataTransfer}catch(tt){try{Me=new l.ClipboardEvent("").clipboardData}catch(Yt){}}return Me&&Me.items&&Me.files?Me:null},Xe=function(Me,tt,Yt){if(z(tt,Me))return j(tt,Me);var Ot=Yt||S(Me),zt,Ht,lr,Wt,Ce,ce;if(Ot==="SharedArrayBuffer")Ne?zt=Ne(Me):zt=Me;else{var pe=l.DataView;!pe&&!u(Me.slice)&&ke("ArrayBuffer");try{if(u(Me.slice)&&!Me.resizable)zt=Me.slice(0);else for(Ht=Me.byteLength,lr=("maxByteLength"in Me)?{maxByteLength:Me.maxByteLength}:void 0,zt=new ArrayBuffer(Ht,lr),Wt=new pe(Me),Ce=new pe(zt),ce=0;ce<Ht;ce++)Ce.setUint8(ce,Wt.getUint8(ce))}catch(Ct){throw new J("ArrayBuffer is detached",ar)}}return ie(tt,Me,zt),zt},ut=function(Me,tt,Yt,Ot,zt){var Ht=l[tt];return p(Ht)||ke(tt),new Ht(Xe(Me.buffer,zt),Yt,Ot)},pt=function(Me,tt){if(y(Me)&&ye("Symbol"),!p(Me))return Me;if(tt){if(z(tt,Me))return j(tt,Me)}else tt=new le;var Yt=S(Me),Ot,zt,Ht,lr,Wt,Ce,ce,pe;switch(Yt){case"Array":Ht=q(P(Me));break;case"Object":Ht={};break;case"Map":Ht=new le;break;case"Set":Ht=new me;break;case"RegExp":Ht=new RegExp(Me.source,B(Me));break;case"Error":switch(zt=Me.name,zt){case"AggregateError":Ht=new(c(zt))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":Ht=new(c(zt));break;case"CompileError":case"LinkError":case"RuntimeError":Ht=new(c("WebAssembly",zt));break;default:Ht=new V}break;case"DOMException":Ht=new J(Me.message,Me.name);break;case"ArrayBuffer":case"SharedArrayBuffer":Ht=Xe(Me,tt,Yt);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":Ce=Yt==="DataView"?Me.byteLength:Me.length,Ht=ut(Me,Yt,Me.byteOffset,Ce,tt);break;case"DOMQuad":try{Ht=new DOMQuad(pt(Me.p1,tt),pt(Me.p2,tt),pt(Me.p3,tt),pt(Me.p4,tt))}catch(Ct){Ht=Ge(Me,Yt)}break;case"File":if(Ne)try{Ht=Ne(Me),S(Ht)!==Yt&&(Ht=void 0)}catch(Ct){}if(!Ht)try{Ht=new File([Me],Me.name,Me)}catch(Ct){}Ht||ke(Yt);break;case"FileList":if(lr=We(),lr){for(Wt=0,Ce=P(Me);Wt<Ce;Wt++)lr.items.add(pt(Me[Wt],tt));Ht=lr.files}else Ht=Ge(Me,Yt);break;case"ImageData":try{Ht=new ImageData(pt(Me.data,tt),Me.width,Me.height,{colorSpace:Me.colorSpace})}catch(Ct){Ht=Ge(Me,Yt)}break;default:if(Ne)Ht=Ne(Me);else switch(Yt){case"BigInt":Ht=oe(Me.valueOf());break;case"Boolean":Ht=oe(Dt(Me));break;case"Number":Ht=oe(ht(Me));break;case"String":Ht=oe(It(Me));break;case"Date":Ht=new X(Zt(Me));break;case"Blob":try{Ht=Me.slice(0,Me.size,Me.type)}catch(Ct){ke(Yt)}break;case"DOMPoint":case"DOMPointReadOnly":Ot=l[Yt];try{Ht=Ot.fromPoint?Ot.fromPoint(Me):new Ot(Me.x,Me.y,Me.z,Me.w)}catch(Ct){ke(Yt)}break;case"DOMRect":case"DOMRectReadOnly":Ot=l[Yt];try{Ht=Ot.fromRect?Ot.fromRect(Me):new Ot(Me.x,Me.y,Me.width,Me.height)}catch(Ct){ke(Yt)}break;case"DOMMatrix":case"DOMMatrixReadOnly":Ot=l[Yt];try{Ht=Ot.fromMatrix?Ot.fromMatrix(Me):new Ot(Me)}catch(Ct){ke(Yt)}break;case"AudioData":case"VideoFrame":u(Me.clone)||ke(Yt);try{Ht=Me.clone()}catch(Ct){ye(Yt)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":ke(Yt);default:ye(Yt)}}switch(ie(tt,Me,Ht),Yt){case"Array":case"Object":for(ce=He(Me),Wt=0,Ce=P(ce);Wt<Ce;Wt++)pe=ce[Wt],R(Ht,pe,pt(Me[pe],tt));break;case"Map":Me.forEach(function(Ct,Ae){ie(Ht,pt(Ae,tt),pt(Ct,tt))});break;case"Set":Me.forEach(function(Ct){Se(Ht,pt(Ct,tt))});break;case"Error":A(Ht,"message",pt(Me.message,tt)),k(Me,"cause")&&A(Ht,"cause",pt(Me.cause,tt)),zt==="AggregateError"?Ht.errors=pt(Me.errors,tt):zt==="SuppressedError"&&(Ht.error=pt(Me.error,tt),Ht.suppressed=pt(Me.suppressed,tt));case"DOMException":ae&&A(Ht,"stack",pt(Me.stack,tt))}return Ht},or=function(Me,tt){if(!p(Me))throw new se("Transfer option cannot be converted to a sequence");var Yt=[];m(Me,function(Ae){je(Yt,b(Ae))});for(var Ot=0,zt=P(Yt),Ht=new me,lr,Wt,Ce,ce,pe,Ct;Ot<zt;){if(lr=Yt[Ot++],Wt=S(lr),Wt==="ArrayBuffer"?Ie(Ht,lr):z(tt,lr))throw new J("Duplicate transferable",ar);if(Wt==="ArrayBuffer"){Se(Ht,lr);continue}if(ne)ce=ft(lr,{transfer:[lr]});else switch(Wt){case"ImageBitmap":Ce=l.OffscreenCanvas,a(Ce)||ke(Wt,$e);try{pe=new Ce(lr.width,lr.height),Ct=pe.getContext("bitmaprenderer"),Ct.transferFromImageBitmap(lr),ce=pe.transferToImageBitmap()}catch(Ae){}break;case"AudioData":case"VideoFrame":(!u(lr.clone)||!u(lr.close))&&ke(Wt,$e);try{ce=lr.clone(),lr.close()}catch(Ae){}break;case"MediaSourceHandle":case"MessagePort":case"OffscreenCanvas":case"ReadableStream":case"TransformStream":case"WritableStream":ke(Wt,$e)}if(ce===void 0)throw new J("This object cannot be transferred: "+Wt,ar);ie(tt,lr,ce)}return Ht},tr=function(Me){H(Me,function(tt){ne?Ne(tt,{transfer:[tt]}):u(tt.transfer)?tt.transfer():W?W(tt):ke("ArrayBuffer",$e)})};i({global:!0,enumerable:!0,sham:!ne,forced:ot},{structuredClone:function(tt){var Yt=M(arguments.length,1)>1&&!x(arguments[1])?b(arguments[1]):void 0,Ot=Yt?Yt.transfer:void 0,zt,Ht;Ot!==void 0&&(zt=new le,Ht=or(Ot,zt));var lr=pt(tt,zt);return Ht&&tr(Ht),lr}})},41208:function(d,v,e){"use strict";e(88469),e(91572)},91340:function(d,v,e){"use strict";e(11005);var r=e(94488),i=e(92916),l=e(89945),c=e(94237),f=e(35454),o=e(3299),h=e(2291),u=e(64110),a=e(66477),x=e(94573),p=e(83126),y=e(94844),m=e(56472),b=e(55327),S=e(32621),k=e(80666),R=e(97607),A=e(80449),P=e(31946),M=e(69905),B=e(20132),N=e(35012),K=e(85428),H=e(26006),W=e(25587),ae=e(57106),ne=e(59893),oe=e(63668),q=ne("iterator"),X="URLSearchParams",V=X+"Iterator",se=y.set,ee=y.getterFor(X),J=y.getterFor(V),le=Object.getOwnPropertyDescriptor,z=function(zt){if(!f)return i[zt];var Ht=le(i,zt);return Ht&&Ht.value},j=z("fetch"),ie=z("Request"),me=z("Headers"),Se=ie&&ie.prototype,Ie=me&&me.prototype,He=i.RegExp,je=i.TypeError,Dt=i.decodeURIComponent,ht=i.encodeURIComponent,It=c("".charAt),Zt=c([].join),Rt=c([].push),ar=c("".replace),$e=c([].shift),gt=c([].splice),Mt=c("".split),et=c("".slice),ft=/\+/g,ot=Array(4),Je=function(zt){return ot[zt-1]||(ot[zt-1]=He("((?:%[\\da-f]{2}){"+zt+"})","gi"))},Ne=function(zt){try{return Dt(zt)}catch(Ht){return zt}},ye=function(zt){var Ht=ar(zt,ft," "),lr=4;try{return Dt(Ht)}catch(Wt){for(;lr;)Ht=ar(Ht,Je(lr--),Ne);return Ht}},ke=/[!'()~]|%20/g,Ge={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},We=function(zt){return Ge[zt]},Xe=function(zt){return ar(ht(zt),ke,We)},ut=p(function(Ht,lr){se(this,{type:V,target:ee(Ht).entries,index:0,kind:lr})},X,function(){var Ht=J(this),lr=Ht.target,Wt=Ht.index++;if(!lr||Wt>=lr.length)return Ht.target=void 0,W(void 0,!0);var Ce=lr[Wt];switch(Ht.kind){case"keys":return W(Ce.key,!1);case"values":return W(Ce.value,!1)}return W([Ce.key,Ce.value],!1)},!0),pt=function(zt){this.entries=[],this.url=null,zt!==void 0&&(P(zt)?this.parseObject(zt):this.parseQuery(typeof zt=="string"?It(zt,0)==="?"?et(zt,1):zt:M(zt)))};pt.prototype={type:X,bindURL:function(zt){this.url=zt,this.update()},parseObject:function(zt){var Ht=this.entries,lr=H(zt),Wt,Ce,ce,pe,Ct,Ae,st;if(lr)for(Wt=K(zt,lr),Ce=Wt.next;!(ce=l(Ce,Wt)).done;){if(pe=K(A(ce.value)),Ct=pe.next,(Ae=l(Ct,pe)).done||(st=l(Ct,pe)).done||!l(Ct,pe).done)throw new je("Expected sequence with length 2");Rt(Ht,{key:M(Ae.value),value:M(st.value)})}else for(var Gt in zt)S(zt,Gt)&&Rt(Ht,{key:Gt,value:M(zt[Gt])})},parseQuery:function(zt){if(zt)for(var Ht=this.entries,lr=Mt(zt,"&"),Wt=0,Ce,ce;Wt<lr.length;)Ce=lr[Wt++],Ce.length&&(ce=Mt(Ce,"="),Rt(Ht,{key:ye($e(ce)),value:ye(Zt(ce,"="))}))},serialize:function(){for(var zt=this.entries,Ht=[],lr=0,Wt;lr<zt.length;)Wt=zt[lr++],Rt(Ht,Xe(Wt.key)+"="+Xe(Wt.value));return Zt(Ht,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var or=function(){m(this,tr);var Ht=arguments.length>0?arguments[0]:void 0,lr=se(this,new pt(Ht));f||(this.size=lr.entries.length)},tr=or.prototype;if(a(tr,{append:function(Ht,lr){var Wt=ee(this);ae(arguments.length,2),Rt(Wt.entries,{key:M(Ht),value:M(lr)}),f||this.length++,Wt.updateURL()},delete:function(zt){for(var Ht=ee(this),lr=ae(arguments.length,1),Wt=Ht.entries,Ce=M(zt),ce=lr<2?void 0:arguments[1],pe=ce===void 0?ce:M(ce),Ct=0;Ct<Wt.length;){var Ae=Wt[Ct];if(Ae.key===Ce&&(pe===void 0||Ae.value===pe)){if(gt(Wt,Ct,1),pe!==void 0)break}else Ct++}f||(this.size=Wt.length),Ht.updateURL()},get:function(Ht){var lr=ee(this).entries;ae(arguments.length,1);for(var Wt=M(Ht),Ce=0;Ce<lr.length;Ce++)if(lr[Ce].key===Wt)return lr[Ce].value;return null},getAll:function(Ht){var lr=ee(this).entries;ae(arguments.length,1);for(var Wt=M(Ht),Ce=[],ce=0;ce<lr.length;ce++)lr[ce].key===Wt&&Rt(Ce,lr[ce].value);return Ce},has:function(Ht){for(var lr=ee(this).entries,Wt=ae(arguments.length,1),Ce=M(Ht),ce=Wt<2?void 0:arguments[1],pe=ce===void 0?ce:M(ce),Ct=0;Ct<lr.length;){var Ae=lr[Ct++];if(Ae.key===Ce&&(pe===void 0||Ae.value===pe))return!0}return!1},set:function(Ht,lr){var Wt=ee(this);ae(arguments.length,1);for(var Ce=Wt.entries,ce=!1,pe=M(Ht),Ct=M(lr),Ae=0,st;Ae<Ce.length;Ae++)st=Ce[Ae],st.key===pe&&(ce?gt(Ce,Ae--,1):(ce=!0,st.value=Ct));ce||Rt(Ce,{key:pe,value:Ct}),f||(this.size=Ce.length),Wt.updateURL()},sort:function(){var Ht=ee(this);oe(Ht.entries,function(lr,Wt){return lr.key>Wt.key?1:-1}),Ht.updateURL()},forEach:function(Ht){for(var lr=ee(this).entries,Wt=k(Ht,arguments.length>1?arguments[1]:void 0),Ce=0,ce;Ce<lr.length;)ce=lr[Ce++],Wt(ce.value,ce.key,this)},keys:function(){return new ut(this,"keys")},values:function(){return new ut(this,"values")},entries:function(){return new ut(this,"entries")}},{enumerable:!0}),h(tr,q,tr.entries,{name:"entries"}),h(tr,"toString",function(){return ee(this).serialize()},{enumerable:!0}),f&&u(tr,"size",{get:function(){return ee(this).entries.length},configurable:!0,enumerable:!0}),x(or,X),r({global:!0,constructor:!0,forced:!o},{URLSearchParams:or}),!o&&b(me)){var Me=c(Ie.has),tt=c(Ie.set),Yt=function(zt){if(P(zt)){var Ht=zt.body,lr;if(R(Ht)===X)return lr=zt.headers?new me(zt.headers):new me,Me(lr,"content-type")||tt(lr,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),B(zt,{body:N(0,M(Ht)),headers:N(0,lr)})}return zt};if(b(j)&&r({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(Ht){return j(Ht,arguments.length>1?Yt(arguments[1]):{})}}),b(ie)){var Ot=function(Ht){return m(this,Se),new ie(Ht,arguments.length>1?Yt(arguments[1]):{})};Se.constructor=Ot,Ot.prototype=Se,r({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:Ot})}}d.exports={URLSearchParams:or,getState:ee}},4890:function(d,v,e){"use strict";var r=e(2291),i=e(94237),l=e(69905),c=e(57106),f=URLSearchParams,o=f.prototype,h=i(o.append),u=i(o.delete),a=i(o.forEach),x=i([].push),p=new f("a=1&a=2&b=3");p.delete("a",1),p.delete("b",void 0),p+""!="a=2"&&r(o,"delete",function(y){var m=arguments.length,b=m<2?void 0:arguments[1];if(m&&b===void 0)return u(this,y);var S=[];a(this,function(K,H){x(S,{key:H,value:K})}),c(m,1);for(var k=l(y),R=l(b),A=0,P=0,M=!1,B=S.length,N;A<B;)N=S[A++],M||N.key===k?(M=!0,u(this,N.key)):P++;for(;P<B;)N=S[P++],N.key===k&&N.value===R||h(this,N.key,N.value)},{enumerable:!0,unsafe:!0})},5340:function(d,v,e){"use strict";var r=e(2291),i=e(94237),l=e(69905),c=e(57106),f=URLSearchParams,o=f.prototype,h=i(o.getAll),u=i(o.has),a=new f("a=1");(a.has("a",2)||!a.has("a",void 0))&&r(o,"has",function(p){var y=arguments.length,m=y<2?void 0:arguments[1];if(y&&m===void 0)return u(this,p);var b=h(this,p);c(y,1);for(var S=l(m),k=0;k<b.length;)if(b[k++]===S)return!0;return!1},{enumerable:!0,unsafe:!0})},7893:function(d,v,e){"use strict";e(91340)},61650:function(d,v,e){"use strict";var r=e(35454),i=e(94237),l=e(64110),c=URLSearchParams.prototype,f=i(c.forEach);r&&!("size"in c)&&l(c,"size",{get:function(){var h=0;return f(this,function(){h++}),h},configurable:!0,enumerable:!0})},40061:function(d,v,e){"use strict";var r=e(94488),i=e(65911),l=e(3338),c=e(57106),f=e(69905),o=e(3299),h=i("URL"),u=o&&l(function(){h.canParse()});r({target:"URL",stat:!0,forced:!u},{canParse:function(x){var p=c(arguments.length,1),y=f(x),m=p<2||arguments[1]===void 0?void 0:f(arguments[1]);try{return!!new h(y,m)}catch(b){return!1}}})},13588:function(d,v,e){"use strict";e(20852);var r=e(94488),i=e(35454),l=e(3299),c=e(92916),f=e(80666),o=e(94237),h=e(2291),u=e(64110),a=e(56472),x=e(32621),p=e(80530),y=e(60255),m=e(71698),b=e(13764).codeAt,S=e(93245),k=e(69905),R=e(94573),A=e(57106),P=e(91340),M=e(94844),B=M.set,N=M.getterFor("URL"),K=P.URLSearchParams,H=P.getState,W=c.URL,ae=c.TypeError,ne=c.parseInt,oe=Math.floor,q=Math.pow,X=o("".charAt),V=o(/./.exec),se=o([].join),ee=o(1 .toString),J=o([].pop),le=o([].push),z=o("".replace),j=o([].shift),ie=o("".split),me=o("".slice),Se=o("".toLowerCase),Ie=o([].unshift),He="Invalid authority",je="Invalid scheme",Dt="Invalid host",ht="Invalid port",It=/[a-z]/i,Zt=/[\d+-.a-z]/i,Rt=/\d/,ar=/^0x/i,$e=/^[0-7]+$/,gt=/^\d+$/,Mt=/^[\da-f]+$/i,et=/[\0\t\n\r #%/:<>?@[\\\]^|]/,ft=/[\0\t\n\r #/:<>?@[\\\]^|]/,ot=/^[\u0000-\u0020]+/,Je=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,Ne=/[\t\n\r]/g,ye,ke=function(At){var Kt=ie(At,"."),Bt,Jt,br,Xr,Wr,jn,wn;if(Kt.length&&Kt[Kt.length-1]===""&&Kt.length--,Bt=Kt.length,Bt>4)return At;for(Jt=[],br=0;br<Bt;br++){if(Xr=Kt[br],Xr==="")return At;if(Wr=10,Xr.length>1&&X(Xr,0)==="0"&&(Wr=V(ar,Xr)?16:8,Xr=me(Xr,Wr===8?1:2)),Xr==="")jn=0;else{if(!V(Wr===10?gt:Wr===8?$e:Mt,Xr))return At;jn=ne(Xr,Wr)}le(Jt,jn)}for(br=0;br<Bt;br++)if(jn=Jt[br],br===Bt-1){if(jn>=q(256,5-Bt))return null}else if(jn>255)return null;for(wn=J(Jt),br=0;br<Jt.length;br++)wn+=Jt[br]*q(256,3-br);return wn},Ge=function(At){var Kt=[0,0,0,0,0,0,0,0],Bt=0,Jt=null,br=0,Xr,Wr,jn,wn,Yn,St,Vr,ii=function(){return X(At,br)};if(ii()===":"){if(X(At,1)!==":")return;br+=2,Bt++,Jt=Bt}for(;ii();){if(Bt===8)return;if(ii()===":"){if(Jt!==null)return;br++,Bt++,Jt=Bt;continue}for(Xr=Wr=0;Wr<4&&V(Mt,ii());)Xr=Xr*16+ne(ii(),16),br++,Wr++;if(ii()==="."){if(Wr===0||(br-=Wr,Bt>6))return;for(jn=0;ii();){if(wn=null,jn>0)if(ii()==="."&&jn<4)br++;else return;if(!V(Rt,ii()))return;for(;V(Rt,ii());){if(Yn=ne(ii(),10),wn===null)wn=Yn;else{if(wn===0)return;wn=wn*10+Yn}if(wn>255)return;br++}Kt[Bt]=Kt[Bt]*256+wn,jn++,(jn===2||jn===4)&&Bt++}if(jn!==4)return;break}else if(ii()===":"){if(br++,!ii())return}else if(ii())return;Kt[Bt++]=Xr}if(Jt!==null)for(St=Bt-Jt,Bt=7;Bt!==0&&St>0;)Vr=Kt[Bt],Kt[Bt--]=Kt[Jt+St-1],Kt[Jt+--St]=Vr;else if(Bt!==8)return;return Kt},We=function(At){for(var Kt=null,Bt=1,Jt=null,br=0,Xr=0;Xr<8;Xr++)At[Xr]!==0?(br>Bt&&(Kt=Jt,Bt=br),Jt=null,br=0):(Jt===null&&(Jt=Xr),++br);return br>Bt&&(Kt=Jt,Bt=br),Kt},Xe=function(At){var Kt,Bt,Jt,br;if(typeof At=="number"){for(Kt=[],Bt=0;Bt<4;Bt++)Ie(Kt,At%256),At=oe(At/256);return se(Kt,".")}else if(typeof At=="object"){for(Kt="",Jt=We(At),Bt=0;Bt<8;Bt++)br&&At[Bt]===0||(br&&(br=!1),Jt===Bt?(Kt+=Bt?":":"::",br=!0):(Kt+=ee(At[Bt],16),Bt<7&&(Kt+=":")));return"["+Kt+"]"}return At},ut={},pt=p({},ut,{" ":1,'"':1,"<":1,">":1,"`":1}),or=p({},pt,{"#":1,"?":1,"{":1,"}":1}),tr=p({},or,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),Me=function(At,Kt){var Bt=b(At,0);return Bt>32&&Bt<127&&!x(Kt,At)?At:encodeURIComponent(At)},tt={ftp:21,file:null,http:80,https:443,ws:80,wss:443},Yt=function(At,Kt){var Bt;return At.length===2&&V(It,X(At,0))&&((Bt=X(At,1))===":"||!Kt&&Bt==="|")},Ot=function(At){var Kt;return At.length>1&&Yt(me(At,0,2))&&(At.length===2||(Kt=X(At,2))==="/"||Kt==="\\"||Kt==="?"||Kt==="#")},zt=function(At){return At==="."||Se(At)==="%2e"},Ht=function(At){return At=Se(At),At===".."||At==="%2e."||At===".%2e"||At==="%2e%2e"},lr={},Wt={},Ce={},ce={},pe={},Ct={},Ae={},st={},Gt={},bt={},Te={},yt={},ze={},xe={},dt={},Pt={},Be={},Or={},mt={},qr={},an={},Nt=function(At,Kt,Bt){var Jt=k(At),br,Xr,Wr;if(Kt){if(Xr=this.parse(Jt),Xr)throw new ae(Xr);this.searchParams=null}else{if(Bt!==void 0&&(br=new Nt(Bt,!0)),Xr=this.parse(Jt,null,br),Xr)throw new ae(Xr);Wr=H(new K),Wr.bindURL(this),this.searchParams=Wr}};Nt.prototype={type:"URL",parse:function(At,Kt,Bt){var Jt=this,br=Kt||lr,Xr=0,Wr="",jn=!1,wn=!1,Yn=!1,St,Vr,ii,Bi;for(At=k(At),Kt||(Jt.scheme="",Jt.username="",Jt.password="",Jt.host=null,Jt.port=null,Jt.path=[],Jt.query=null,Jt.fragment=null,Jt.cannotBeABaseURL=!1,At=z(At,ot,""),At=z(At,Je,"$1")),At=z(At,Ne,""),St=y(At);Xr<=St.length;){switch(Vr=St[Xr],br){case lr:if(Vr&&V(It,Vr))Wr+=Se(Vr),br=Wt;else{if(Kt)return je;br=Ce;continue}break;case Wt:if(Vr&&(V(Zt,Vr)||Vr==="+"||Vr==="-"||Vr==="."))Wr+=Se(Vr);else if(Vr===":"){if(Kt&&(Jt.isSpecial()!==x(tt,Wr)||Wr==="file"&&(Jt.includesCredentials()||Jt.port!==null)||Jt.scheme==="file"&&!Jt.host))return;if(Jt.scheme=Wr,Kt){Jt.isSpecial()&&tt[Jt.scheme]===Jt.port&&(Jt.port=null);return}Wr="",Jt.scheme==="file"?br=xe:Jt.isSpecial()&&Bt&&Bt.scheme===Jt.scheme?br=ce:Jt.isSpecial()?br=st:St[Xr+1]==="/"?(br=pe,Xr++):(Jt.cannotBeABaseURL=!0,le(Jt.path,""),br=mt)}else{if(Kt)return je;Wr="",br=Ce,Xr=0;continue}break;case Ce:if(!Bt||Bt.cannotBeABaseURL&&Vr!=="#")return je;if(Bt.cannotBeABaseURL&&Vr==="#"){Jt.scheme=Bt.scheme,Jt.path=m(Bt.path),Jt.query=Bt.query,Jt.fragment="",Jt.cannotBeABaseURL=!0,br=an;break}br=Bt.scheme==="file"?xe:Ct;continue;case ce:if(Vr==="/"&&St[Xr+1]==="/")br=Gt,Xr++;else{br=Ct;continue}break;case pe:if(Vr==="/"){br=bt;break}else{br=Or;continue}case Ct:if(Jt.scheme=Bt.scheme,Vr===ye)Jt.username=Bt.username,Jt.password=Bt.password,Jt.host=Bt.host,Jt.port=Bt.port,Jt.path=m(Bt.path),Jt.query=Bt.query;else if(Vr==="/"||Vr==="\\"&&Jt.isSpecial())br=Ae;else if(Vr==="?")Jt.username=Bt.username,Jt.password=Bt.password,Jt.host=Bt.host,Jt.port=Bt.port,Jt.path=m(Bt.path),Jt.query="",br=qr;else if(Vr==="#")Jt.username=Bt.username,Jt.password=Bt.password,Jt.host=Bt.host,Jt.port=Bt.port,Jt.path=m(Bt.path),Jt.query=Bt.query,Jt.fragment="",br=an;else{Jt.username=Bt.username,Jt.password=Bt.password,Jt.host=Bt.host,Jt.port=Bt.port,Jt.path=m(Bt.path),Jt.path.length--,br=Or;continue}break;case Ae:if(Jt.isSpecial()&&(Vr==="/"||Vr==="\\"))br=Gt;else if(Vr==="/")br=bt;else{Jt.username=Bt.username,Jt.password=Bt.password,Jt.host=Bt.host,Jt.port=Bt.port,br=Or;continue}break;case st:if(br=Gt,Vr!=="/"||X(Wr,Xr+1)!=="/")continue;Xr++;break;case Gt:if(Vr!=="/"&&Vr!=="\\"){br=bt;continue}break;case bt:if(Vr==="@"){jn&&(Wr="%40"+Wr),jn=!0,ii=y(Wr);for(var Gn=0;Gn<ii.length;Gn++){var ci=ii[Gn];if(ci===":"&&!Yn){Yn=!0;continue}var Oi=Me(ci,tr);Yn?Jt.password+=Oi:Jt.username+=Oi}Wr=""}else if(Vr===ye||Vr==="/"||Vr==="?"||Vr==="#"||Vr==="\\"&&Jt.isSpecial()){if(jn&&Wr==="")return He;Xr-=y(Wr).length+1,Wr="",br=Te}else Wr+=Vr;break;case Te:case yt:if(Kt&&Jt.scheme==="file"){br=Pt;continue}else if(Vr===":"&&!wn){if(Wr==="")return Dt;if(Bi=Jt.parseHost(Wr),Bi)return Bi;if(Wr="",br=ze,Kt===yt)return}else if(Vr===ye||Vr==="/"||Vr==="?"||Vr==="#"||Vr==="\\"&&Jt.isSpecial()){if(Jt.isSpecial()&&Wr==="")return Dt;if(Kt&&Wr===""&&(Jt.includesCredentials()||Jt.port!==null))return;if(Bi=Jt.parseHost(Wr),Bi)return Bi;if(Wr="",br=Be,Kt)return;continue}else Vr==="["?wn=!0:Vr==="]"&&(wn=!1),Wr+=Vr;break;case ze:if(V(Rt,Vr))Wr+=Vr;else if(Vr===ye||Vr==="/"||Vr==="?"||Vr==="#"||Vr==="\\"&&Jt.isSpecial()||Kt){if(Wr!==""){var $i=ne(Wr,10);if($i>65535)return ht;Jt.port=Jt.isSpecial()&&$i===tt[Jt.scheme]?null:$i,Wr=""}if(Kt)return;br=Be;continue}else return ht;break;case xe:if(Jt.scheme="file",Vr==="/"||Vr==="\\")br=dt;else if(Bt&&Bt.scheme==="file")switch(Vr){case ye:Jt.host=Bt.host,Jt.path=m(Bt.path),Jt.query=Bt.query;break;case"?":Jt.host=Bt.host,Jt.path=m(Bt.path),Jt.query="",br=qr;break;case"#":Jt.host=Bt.host,Jt.path=m(Bt.path),Jt.query=Bt.query,Jt.fragment="",br=an;break;default:Ot(se(m(St,Xr),""))||(Jt.host=Bt.host,Jt.path=m(Bt.path),Jt.shortenPath()),br=Or;continue}else{br=Or;continue}break;case dt:if(Vr==="/"||Vr==="\\"){br=Pt;break}Bt&&Bt.scheme==="file"&&!Ot(se(m(St,Xr),""))&&(Yt(Bt.path[0],!0)?le(Jt.path,Bt.path[0]):Jt.host=Bt.host),br=Or;continue;case Pt:if(Vr===ye||Vr==="/"||Vr==="\\"||Vr==="?"||Vr==="#"){if(!Kt&&Yt(Wr))br=Or;else if(Wr===""){if(Jt.host="",Kt)return;br=Be}else{if(Bi=Jt.parseHost(Wr),Bi)return Bi;if(Jt.host==="localhost"&&(Jt.host=""),Kt)return;Wr="",br=Be}continue}else Wr+=Vr;break;case Be:if(Jt.isSpecial()){if(br=Or,Vr!=="/"&&Vr!=="\\")continue}else if(!Kt&&Vr==="?")Jt.query="",br=qr;else if(!Kt&&Vr==="#")Jt.fragment="",br=an;else if(Vr!==ye&&(br=Or,Vr!=="/"))continue;break;case Or:if(Vr===ye||Vr==="/"||Vr==="\\"&&Jt.isSpecial()||!Kt&&(Vr==="?"||Vr==="#")){if(Ht(Wr)?(Jt.shortenPath(),Vr!=="/"&&!(Vr==="\\"&&Jt.isSpecial())&&le(Jt.path,"")):zt(Wr)?Vr!=="/"&&!(Vr==="\\"&&Jt.isSpecial())&&le(Jt.path,""):(Jt.scheme==="file"&&!Jt.path.length&&Yt(Wr)&&(Jt.host&&(Jt.host=""),Wr=X(Wr,0)+":"),le(Jt.path,Wr)),Wr="",Jt.scheme==="file"&&(Vr===ye||Vr==="?"||Vr==="#"))for(;Jt.path.length>1&&Jt.path[0]==="";)j(Jt.path);Vr==="?"?(Jt.query="",br=qr):Vr==="#"&&(Jt.fragment="",br=an)}else Wr+=Me(Vr,or);break;case mt:Vr==="?"?(Jt.query="",br=qr):Vr==="#"?(Jt.fragment="",br=an):Vr!==ye&&(Jt.path[0]+=Me(Vr,ut));break;case qr:!Kt&&Vr==="#"?(Jt.fragment="",br=an):Vr!==ye&&(Vr==="'"&&Jt.isSpecial()?Jt.query+="%27":Vr==="#"?Jt.query+="%23":Jt.query+=Me(Vr,ut));break;case an:Vr!==ye&&(Jt.fragment+=Me(Vr,pt));break}Xr++}},parseHost:function(At){var Kt,Bt,Jt;if(X(At,0)==="["){if(X(At,At.length-1)!=="]"||(Kt=Ge(me(At,1,-1)),!Kt))return Dt;this.host=Kt}else if(this.isSpecial()){if(At=S(At),V(et,At)||(Kt=ke(At),Kt===null))return Dt;this.host=Kt}else{if(V(ft,At))return Dt;for(Kt="",Bt=y(At),Jt=0;Jt<Bt.length;Jt++)Kt+=Me(Bt[Jt],ut);this.host=Kt}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||this.scheme==="file"},includesCredentials:function(){return this.username!==""||this.password!==""},isSpecial:function(){return x(tt,this.scheme)},shortenPath:function(){var At=this.path,Kt=At.length;Kt&&(this.scheme!=="file"||Kt!==1||!Yt(At[0],!0))&&At.length--},serialize:function(){var At=this,Kt=At.scheme,Bt=At.username,Jt=At.password,br=At.host,Xr=At.port,Wr=At.path,jn=At.query,wn=At.fragment,Yn=Kt+":";return br!==null?(Yn+="//",At.includesCredentials()&&(Yn+=Bt+(Jt?":"+Jt:"")+"@"),Yn+=Xe(br),Xr!==null&&(Yn+=":"+Xr)):Kt==="file"&&(Yn+="//"),Yn+=At.cannotBeABaseURL?Wr[0]:Wr.length?"/"+se(Wr,"/"):"",jn!==null&&(Yn+="?"+jn),wn!==null&&(Yn+="#"+wn),Yn},setHref:function(At){var Kt=this.parse(At);if(Kt)throw new ae(Kt);this.searchParams.update()},getOrigin:function(){var At=this.scheme,Kt=this.port;if(At==="blob")try{return new qt(At.path[0]).origin}catch(Bt){return"null"}return At==="file"||!this.isSpecial()?"null":At+"://"+Xe(this.host)+(Kt!==null?":"+Kt:"")},getProtocol:function(){return this.scheme+":"},setProtocol:function(At){this.parse(k(At)+":",lr)},getUsername:function(){return this.username},setUsername:function(At){var Kt=y(k(At));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var Bt=0;Bt<Kt.length;Bt++)this.username+=Me(Kt[Bt],tr)}},getPassword:function(){return this.password},setPassword:function(At){var Kt=y(k(At));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var Bt=0;Bt<Kt.length;Bt++)this.password+=Me(Kt[Bt],tr)}},getHost:function(){var At=this.host,Kt=this.port;return At===null?"":Kt===null?Xe(At):Xe(At)+":"+Kt},setHost:function(At){this.cannotBeABaseURL||this.parse(At,Te)},getHostname:function(){var At=this.host;return At===null?"":Xe(At)},setHostname:function(At){this.cannotBeABaseURL||this.parse(At,yt)},getPort:function(){var At=this.port;return At===null?"":k(At)},setPort:function(At){this.cannotHaveUsernamePasswordPort()||(At=k(At),At===""?this.port=null:this.parse(At,ze))},getPathname:function(){var At=this.path;return this.cannotBeABaseURL?At[0]:At.length?"/"+se(At,"/"):""},setPathname:function(At){this.cannotBeABaseURL||(this.path=[],this.parse(At,Be))},getSearch:function(){var At=this.query;return At?"?"+At:""},setSearch:function(At){At=k(At),At===""?this.query=null:(X(At,0)==="?"&&(At=me(At,1)),this.query="",this.parse(At,qr)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var At=this.fragment;return At?"#"+At:""},setHash:function(At){if(At=k(At),At===""){this.fragment=null;return}X(At,0)==="#"&&(At=me(At,1)),this.fragment="",this.parse(At,an)},update:function(){this.query=this.searchParams.serialize()||null}};var qt=function(Kt){var Bt=a(this,Lt),Jt=A(arguments.length,1)>1?arguments[1]:void 0,br=B(Bt,new Nt(Kt,!1,Jt));i||(Bt.href=br.serialize(),Bt.origin=br.getOrigin(),Bt.protocol=br.getProtocol(),Bt.username=br.getUsername(),Bt.password=br.getPassword(),Bt.host=br.getHost(),Bt.hostname=br.getHostname(),Bt.port=br.getPort(),Bt.pathname=br.getPathname(),Bt.search=br.getSearch(),Bt.searchParams=br.getSearchParams(),Bt.hash=br.getHash())},Lt=qt.prototype,Xt=function(At,Kt){return{get:function(){return N(this)[At]()},set:Kt&&function(Bt){return N(this)[Kt](Bt)},configurable:!0,enumerable:!0}};if(i&&(u(Lt,"href",Xt("serialize","setHref")),u(Lt,"origin",Xt("getOrigin")),u(Lt,"protocol",Xt("getProtocol","setProtocol")),u(Lt,"username",Xt("getUsername","setUsername")),u(Lt,"password",Xt("getPassword","setPassword")),u(Lt,"host",Xt("getHost","setHost")),u(Lt,"hostname",Xt("getHostname","setHostname")),u(Lt,"port",Xt("getPort","setPort")),u(Lt,"pathname",Xt("getPathname","setPathname")),u(Lt,"search",Xt("getSearch","setSearch")),u(Lt,"searchParams",Xt("getSearchParams")),u(Lt,"hash",Xt("getHash","setHash"))),h(Lt,"toJSON",function(){return N(this).serialize()},{enumerable:!0}),h(Lt,"toString",function(){return N(this).serialize()},{enumerable:!0}),W){var Er=W.createObjectURL,Pr=W.revokeObjectURL;Er&&h(qt,"createObjectURL",f(Er,W)),Pr&&h(qt,"revokeObjectURL",f(Pr,W))}R(qt,"URL"),r({global:!0,constructor:!0,forced:!l,sham:!i},{URL:qt})},25204:function(d,v,e){"use strict";e(13588)},47803:function(d,v,e){"use strict";var r=e(94488),i=e(89945);r({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return i(URL.prototype.toString,this)}})},73825:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){if(Array.isArray(i))return i}},65873:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(89878);function i(l,c,f){return c=(0,r.Z)(c),c in l?Object.defineProperty(l,c,{value:f,enumerable:!0,configurable:!0,writable:!0}):l[c]=f,l}},38329:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(){return r=Object.assign?Object.assign.bind():function(i){for(var l=1;l<arguments.length;l++){var c=arguments[l];for(var f in c)Object.prototype.hasOwnProperty.call(c,f)&&(i[f]=c[f])}return i},r.apply(this,arguments)}},66160:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}},63579:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(65873);function i(c,f){var o=Object.keys(c);if(Object.getOwnPropertySymbols){var h=Object.getOwnPropertySymbols(c);f&&(h=h.filter(function(u){return Object.getOwnPropertyDescriptor(c,u).enumerable})),o.push.apply(o,h)}return o}function l(c){for(var f=1;f<arguments.length;f++){var o=arguments[f]!=null?arguments[f]:{};f%2?i(Object(o),!0).forEach(function(h){(0,r.Z)(c,h,o[h])}):Object.getOwnPropertyDescriptors?Object.defineProperties(c,Object.getOwnPropertyDescriptors(o)):i(Object(o)).forEach(function(h){Object.defineProperty(c,h,Object.getOwnPropertyDescriptor(o,h))})}return c}},38127:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});function r(l,c){if(l==null)return{};var f={},o=Object.keys(l),h,u;for(u=0;u<o.length;u++)h=o[u],!(c.indexOf(h)>=0)&&(f[h]=l[h]);return f}function i(l,c){if(l==null)return{};var f=r(l,c),o,h;if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(l);for(h=0;h<u.length;h++)o=u[h],!(c.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(l,o)&&(f[o]=l[o])}return f}},87296:function(d,v,e){"use strict";e.d(v,{Z:function(){return f}});var r=e(73825);function i(o,h){var u=o==null?null:typeof Symbol!="undefined"&&o[Symbol.iterator]||o["@@iterator"];if(u!=null){var a,x,p,y,m=[],b=!0,S=!1;try{if(p=(u=u.call(o)).next,h===0){if(Object(u)!==u)return;b=!1}else for(;!(b=(a=p.call(u)).done)&&(m.push(a.value),m.length!==h);b=!0);}catch(k){S=!0,x=k}finally{try{if(!b&&u.return!=null&&(y=u.return(),Object(y)!==y))return}finally{if(S)throw x}}return m}}var l=e(99227),c=e(66160);function f(o,h){return(0,r.Z)(o)||i(o,h)||(0,l.Z)(o,h)||(0,c.Z)()}},89878:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(8616);function i(c,f){if((0,r.Z)(c)!="object"||!c)return c;var o=c[Symbol.toPrimitive];if(o!==void 0){var h=o.call(c,f||"default");if((0,r.Z)(h)!="object")return h;throw new TypeError("@@toPrimitive must return a primitive value.")}return(f==="string"?String:Number)(c)}function l(c){var f=i(c,"string");return(0,r.Z)(f)=="symbol"?f:String(f)}},8616:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){"@babel/helpers - typeof";return r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(l){return typeof l}:function(l){return l&&typeof Symbol=="function"&&l.constructor===Symbol&&l!==Symbol.prototype?"symbol":typeof l},r(i)}},99227:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});function r(l,c){(c==null||c>l.length)&&(c=l.length);for(var f=0,o=new Array(c);f<c;f++)o[f]=l[f];return o}function i(l,c){if(l){if(typeof l=="string")return r(l,c);var f=Object.prototype.toString.call(l).slice(8,-1);if(f==="Object"&&l.constructor&&(f=l.constructor.name),f==="Map"||f==="Set")return Array.from(l);if(f==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(f))return r(l,c)}}},97047:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){(l==null||l>i.length)&&(l=i.length);for(var c=0,f=Array(l);c<l;c++)f[c]=i[c];return f}},42028:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){if(Array.isArray(i))return i}},31226:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){if(i===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return i}},3202:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});function r(l,c,f,o,h,u,a){try{var x=l[u](a),p=x.value}catch(y){return void f(y)}x.done?c(p):Promise.resolve(p).then(o,h)}function i(l){return function(){var c=this,f=arguments;return new Promise(function(o,h){var u=l.apply(c,f);function a(p){r(u,o,h,a,x,"next",p)}function x(p){r(u,o,h,a,x,"throw",p)}a(void 0)})}}},67732:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){if(!(i instanceof l))throw new TypeError("Cannot call a class as a function")}},83652:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(88058);function i(c,f){for(var o=0;o<f.length;o++){var h=f[o];h.enumerable=h.enumerable||!1,h.configurable=!0,"value"in h&&(h.writable=!0),Object.defineProperty(c,(0,r.Z)(h.key),h)}}function l(c,f,o){return f&&i(c.prototype,f),o&&i(c,o),Object.defineProperty(c,"prototype",{writable:!1}),c}},158:function(d,v,e){"use strict";e.d(v,{Z:function(){return c}});var r=e(58289),i=e(75538),l=e(85458);function c(f){var o=(0,i.Z)();return function(){var h,u=(0,r.Z)(f);if(o){var a=(0,r.Z)(this).constructor;h=Reflect.construct(u,arguments,a)}else h=u.apply(this,arguments);return(0,l.Z)(this,h)}}},20068:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(88058);function i(l,c,f){return(c=(0,r.Z)(c))in l?Object.defineProperty(l,c,{value:f,enumerable:!0,configurable:!0,writable:!0}):l[c]=f,l}},54476:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(){return r=Object.assign?Object.assign.bind():function(i){for(var l=1;l<arguments.length;l++){var c=arguments[l];for(var f in c)({}).hasOwnProperty.call(c,f)&&(i[f]=c[f])}return i},r.apply(null,arguments)}},58289:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){return r=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(l){return l.__proto__||Object.getPrototypeOf(l)},r(i)}},42403:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(18773);function i(l,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function");l.prototype=Object.create(c&&c.prototype,{constructor:{value:l,writable:!0,configurable:!0}}),Object.defineProperty(l,"prototype",{writable:!1}),c&&(0,r.Z)(l,c)}},75538:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(){try{var i=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(l){}return(r=function(){return!!i})()}},7553:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){if(typeof Symbol!="undefined"&&i[Symbol.iterator]!=null||i["@@iterator"]!=null)return Array.from(i)}},23317:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}},75682:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(20068);function i(l){for(var c=1;c<arguments.length;c++){var f=arguments[c]!=null?Object(arguments[c]):{},o=Object.keys(f);typeof Object.getOwnPropertySymbols=="function"&&o.push.apply(o,Object.getOwnPropertySymbols(f).filter(function(h){return Object.getOwnPropertyDescriptor(f,h).enumerable})),o.forEach(function(h){(0,r.Z)(l,h,f[h])})}return l}},33885:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(20068);function i(c,f){var o=Object.keys(c);if(Object.getOwnPropertySymbols){var h=Object.getOwnPropertySymbols(c);f&&(h=h.filter(function(u){return Object.getOwnPropertyDescriptor(c,u).enumerable})),o.push.apply(o,h)}return o}function l(c){for(var f=1;f<arguments.length;f++){var o=arguments[f]!=null?arguments[f]:{};f%2?i(Object(o),!0).forEach(function(h){(0,r.Z)(c,h,o[h])}):Object.getOwnPropertyDescriptors?Object.defineProperties(c,Object.getOwnPropertyDescriptors(o)):i(Object(o)).forEach(function(h){Object.defineProperty(c,h,Object.getOwnPropertyDescriptor(o,h))})}return c}},75931:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(85377);function i(l,c){if(l==null)return{};var f,o,h=(0,r.Z)(l,c);if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(l);for(o=0;o<u.length;o++)f=u[o],c.indexOf(f)===-1&&{}.propertyIsEnumerable.call(l,f)&&(h[f]=l[f])}return h}},85377:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){if(i==null)return{};var c={};for(var f in i)if({}.hasOwnProperty.call(i,f)){if(l.indexOf(f)!==-1)continue;c[f]=i[f]}return c}},85458:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(76190),i=e(31226);function l(c,f){if(f&&((0,r.Z)(f)=="object"||typeof f=="function"))return f;if(f!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return(0,i.Z)(c)}},75044:function(d,v,e){"use strict";e.d(v,{Z:function(){return x}});function r(p,y){this.v=p,this.k=y}function i(p,y,m,b){var S=Object.defineProperty;try{S({},"",{})}catch(k){S=0}i=function(R,A,P,M){function B(N,K){i(R,N,function(H){return this._invoke(N,K,H)})}A?S?S(R,A,{value:P,enumerable:!M,configurable:!M,writable:!M}):R[A]=P:(B("next",0),B("throw",1),B("return",2))},i(p,y,m,b)}function l(){var p,y,m=typeof Symbol=="function"?Symbol:{},b=m.iterator||"@@iterator",S=m.toStringTag||"@@toStringTag";function k(H,W,ae,ne){var oe=W&&W.prototype instanceof A?W:A,q=Object.create(oe.prototype);return i(q,"_invoke",function(X,V,se){var ee,J,le,z=0,j=se||[],ie=!1,me={p:0,n:0,v:p,a:Se,f:Se.bind(p,4),d:function(He,je){return ee=He,J=0,le=p,me.n=je,R}};function Se(Ie,He){for(J=Ie,le=He,y=0;!ie&&z&&!je&&y<j.length;y++){var je,Dt=j[y],ht=me.p,It=Dt[2];Ie>3?(je=It===He)&&(le=Dt[(J=Dt[4])?5:(J=3,3)],Dt[4]=Dt[5]=p):Dt[0]<=ht&&((je=Ie<2&&ht<Dt[1])?(J=0,me.v=He,me.n=Dt[1]):ht<It&&(je=Ie<3||Dt[0]>He||He>It)&&(Dt[4]=Ie,Dt[5]=He,me.n=It,J=0))}if(je||Ie>1)return R;throw ie=!0,He}return function(Ie,He,je){if(z>1)throw TypeError("Generator is already running");for(ie&&He===1&&Se(He,je),J=He,le=je;(y=J<2?p:le)||!ie;){ee||(J?J<3?(J>1&&(me.n=-1),Se(J,le)):me.n=le:me.v=le);try{if(z=2,ee){if(J||(Ie="next"),y=ee[Ie]){if(!(y=y.call(ee,le)))throw TypeError("iterator result is not an object");if(!y.done)return y;le=y.value,J<2&&(J=0)}else J===1&&(y=ee.return)&&y.call(ee),J<2&&(le=TypeError("The iterator does not provide a '"+Ie+"' method"),J=1);ee=p}else if((y=(ie=me.n<0)?le:X.call(V,me))!==R)break}catch(Dt){ee=p,J=1,le=Dt}finally{z=1}}return{value:y,done:ie}}}(H,ae,ne),!0),q}var R={};function A(){}function P(){}function M(){}y=Object.getPrototypeOf;var B=[][b]?y(y([][b]())):(i(y={},b,function(){return this}),y),N=M.prototype=A.prototype=Object.create(B);function K(H){return Object.setPrototypeOf?Object.setPrototypeOf(H,M):(H.__proto__=M,i(H,S,"GeneratorFunction")),H.prototype=Object.create(N),H}return P.prototype=M,i(N,"constructor",M),i(M,"constructor",P),P.displayName="GeneratorFunction",i(M,S,"GeneratorFunction"),i(N),i(N,S,"Generator"),i(N,b,function(){return this}),i(N,"toString",function(){return"[object Generator]"}),(l=function(){return{w:k,m:K}})()}function c(p,y){function m(S,k,R,A){try{var P=p[S](k),M=P.value;return M instanceof r?y.resolve(M.v).then(function(B){m("next",B,R,A)},function(B){m("throw",B,R,A)}):y.resolve(M).then(function(B){P.value=B,R(P)},function(B){return m("throw",B,R,A)})}catch(B){A(B)}}var b;this.next||(i(c.prototype),i(c.prototype,typeof Symbol=="function"&&Symbol.asyncIterator||"@asyncIterator",function(){return this})),i(this,"_invoke",function(S,k,R){function A(){return new y(function(P,M){m(S,R,P,M)})}return b=b?b.then(A,A):A()},!0)}function f(p,y,m,b,S){return new c(l().w(p,y,m,b),S||Promise)}function o(p,y,m,b,S){var k=f(p,y,m,b,S);return k.next().then(function(R){return R.done?R.value:k.next()})}function h(p){var y=Object(p),m=[];for(var b in y)m.unshift(b);return function S(){for(;m.length;)if((b=m.pop())in y)return S.value=b,S.done=!1,S;return S.done=!0,S}}var u=e(76190);function a(p){if(p!=null){var y=p[typeof Symbol=="function"&&Symbol.iterator||"@@iterator"],m=0;if(y)return y.call(p);if(typeof p.next=="function")return p;if(!isNaN(p.length))return{next:function(){return p&&m>=p.length&&(p=void 0),{value:p&&p[m++],done:!p}}}}throw new TypeError((0,u.Z)(p)+" is not iterable")}function x(){"use strict";var p=l(),y=p.m(x),m=(Object.getPrototypeOf?Object.getPrototypeOf(y):y.__proto__).constructor;function b(R){var A=typeof R=="function"&&R.constructor;return!!A&&(A===m||(A.displayName||A.name)==="GeneratorFunction")}var S={throw:1,return:2,break:3,continue:3};function k(R){var A,P;return function(M){A||(A={stop:function(){return P(M.a,2)},catch:function(){return M.v},abrupt:function(N,K){return P(M.a,S[N],K)},delegateYield:function(N,K,H){return A.resultName=K,P(M.d,a(N),H)},finish:function(N){return P(M.f,N)}},P=function(N,K,H){M.p=A.prev,M.n=A.next;try{return N(K,H)}finally{A.next=M.n}}),A.resultName&&(A[A.resultName]=M.v,A.resultName=void 0),A.sent=M.v,A.next=M.n;try{return R.call(this,A)}finally{M.p=A.prev,M.n=A.next}}}return(x=function(){return{wrap:function(P,M,B,N){return p.w(k(P),M,B,N&&N.reverse())},isGeneratorFunction:b,mark:p.m,awrap:function(P,M){return new r(P,M)},AsyncIterator:c,async:function(P,M,B,N,K){return(b(M)?f:o)(k(P),M,B,N,K)},keys:h,values:a}})()}},18773:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i,l){return r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(c,f){return c.__proto__=f,c},r(i,l)}},42978:function(d,v,e){"use strict";e.d(v,{Z:function(){return f}});var r=e(42028);function i(o,h){var u=o==null?null:typeof Symbol!="undefined"&&o[Symbol.iterator]||o["@@iterator"];if(u!=null){var a,x,p,y,m=[],b=!0,S=!1;try{if(p=(u=u.call(o)).next,h===0){if(Object(u)!==u)return;b=!1}else for(;!(b=(a=p.call(u)).done)&&(m.push(a.value),m.length!==h);b=!0);}catch(k){S=!0,x=k}finally{try{if(!b&&u.return!=null&&(y=u.return(),Object(y)!==y))return}finally{if(S)throw x}}return m}}var l=e(3208),c=e(23317);function f(o,h){return(0,r.Z)(o)||i(o,h)||(0,l.Z)(o,h)||(0,c.Z)()}},66712:function(d,v,e){"use strict";e.d(v,{Z:function(){return f}});var r=e(42028),i=e(7553),l=e(3208),c=e(23317);function f(o){return(0,r.Z)(o)||(0,i.Z)(o)||(0,l.Z)(o)||(0,c.Z)()}},94480:function(d,v,e){"use strict";e.d(v,{Z:function(){return o}});var r=e(97047);function i(h){if(Array.isArray(h))return(0,r.Z)(h)}var l=e(7553),c=e(3208);function f(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function o(h){return i(h)||(0,l.Z)(h)||(0,c.Z)(h)||f()}},88058:function(d,v,e){"use strict";e.d(v,{Z:function(){return l}});var r=e(76190);function i(c,f){if((0,r.Z)(c)!="object"||!c)return c;var o=c[Symbol.toPrimitive];if(o!==void 0){var h=o.call(c,f||"default");if((0,r.Z)(h)!="object")return h;throw new TypeError("@@toPrimitive must return a primitive value.")}return(f==="string"?String:Number)(c)}function l(c){var f=i(c,"string");return(0,r.Z)(f)=="symbol"?f:f+""}},76190:function(d,v,e){"use strict";e.d(v,{Z:function(){return r}});function r(i){"@babel/helpers - typeof";return r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(l){return typeof l}:function(l){return l&&typeof Symbol=="function"&&l.constructor===Symbol&&l!==Symbol.prototype?"symbol":typeof l},r(i)}},3208:function(d,v,e){"use strict";e.d(v,{Z:function(){return i}});var r=e(97047);function i(l,c){if(l){if(typeof l=="string")return(0,r.Z)(l,c);var f={}.toString.call(l).slice(8,-1);return f==="Object"&&l.constructor&&(f=l.constructor.name),f==="Map"||f==="Set"?Array.from(l):f==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(f)?(0,r.Z)(l,c):void 0}}},80360:function(d,v,e){"use strict";e.d(v,{ZP:function(){return Pf}});const r=Number.isFinite||function(D){return typeof D=="number"&&isFinite(D)},i=Number.isSafeInteger||function(D){return typeof D=="number"&&Math.abs(D)<=l},l=Number.MAX_SAFE_INTEGER||9007199254740991;let c=function(D){return D.NETWORK_ERROR="networkError",D.MEDIA_ERROR="mediaError",D.KEY_SYSTEM_ERROR="keySystemError",D.MUX_ERROR="muxError",D.OTHER_ERROR="otherError",D}({}),f=function(D){return D.KEY_SYSTEM_NO_KEYS="keySystemNoKeys",D.KEY_SYSTEM_NO_ACCESS="keySystemNoAccess",D.KEY_SYSTEM_NO_SESSION="keySystemNoSession",D.KEY_SYSTEM_NO_CONFIGURED_LICENSE="keySystemNoConfiguredLicense",D.KEY_SYSTEM_LICENSE_REQUEST_FAILED="keySystemLicenseRequestFailed",D.KEY_SYSTEM_SERVER_CERTIFICATE_REQUEST_FAILED="keySystemServerCertificateRequestFailed",D.KEY_SYSTEM_SERVER_CERTIFICATE_UPDATE_FAILED="keySystemServerCertificateUpdateFailed",D.KEY_SYSTEM_SESSION_UPDATE_FAILED="keySystemSessionUpdateFailed",D.KEY_SYSTEM_STATUS_OUTPUT_RESTRICTED="keySystemStatusOutputRestricted",D.KEY_SYSTEM_STATUS_INTERNAL_ERROR="keySystemStatusInternalError",D.KEY_SYSTEM_DESTROY_MEDIA_KEYS_ERROR="keySystemDestroyMediaKeysError",D.KEY_SYSTEM_DESTROY_CLOSE_SESSION_ERROR="keySystemDestroyCloseSessionError",D.KEY_SYSTEM_DESTROY_REMOVE_SESSION_ERROR="keySystemDestroyRemoveSessionError",D.MANIFEST_LOAD_ERROR="manifestLoadError",D.MANIFEST_LOAD_TIMEOUT="manifestLoadTimeOut",D.MANIFEST_PARSING_ERROR="manifestParsingError",D.MANIFEST_INCOMPATIBLE_CODECS_ERROR="manifestIncompatibleCodecsError",D.LEVEL_EMPTY_ERROR="levelEmptyError",D.LEVEL_LOAD_ERROR="levelLoadError",D.LEVEL_LOAD_TIMEOUT="levelLoadTimeOut",D.LEVEL_PARSING_ERROR="levelParsingError",D.LEVEL_SWITCH_ERROR="levelSwitchError",D.AUDIO_TRACK_LOAD_ERROR="audioTrackLoadError",D.AUDIO_TRACK_LOAD_TIMEOUT="audioTrackLoadTimeOut",D.SUBTITLE_LOAD_ERROR="subtitleTrackLoadError",D.SUBTITLE_TRACK_LOAD_TIMEOUT="subtitleTrackLoadTimeOut",D.FRAG_LOAD_ERROR="fragLoadError",D.FRAG_LOAD_TIMEOUT="fragLoadTimeOut",D.FRAG_DECRYPT_ERROR="fragDecryptError",D.FRAG_PARSING_ERROR="fragParsingError",D.FRAG_GAP="fragGap",D.REMUX_ALLOC_ERROR="remuxAllocError",D.KEY_LOAD_ERROR="keyLoadError",D.KEY_LOAD_TIMEOUT="keyLoadTimeOut",D.BUFFER_ADD_CODEC_ERROR="bufferAddCodecError",D.BUFFER_INCOMPATIBLE_CODECS_ERROR="bufferIncompatibleCodecsError",D.BUFFER_APPEND_ERROR="bufferAppendError",D.BUFFER_APPENDING_ERROR="bufferAppendingError",D.BUFFER_STALLED_ERROR="bufferStalledError",D.BUFFER_FULL_ERROR="bufferFullError",D.BUFFER_SEEK_OVER_HOLE="bufferSeekOverHole",D.BUFFER_NUDGE_ON_STALL="bufferNudgeOnStall",D.ASSET_LIST_LOAD_ERROR="assetListLoadError",D.ASSET_LIST_LOAD_TIMEOUT="assetListLoadTimeout",D.ASSET_LIST_PARSING_ERROR="assetListParsingError",D.INTERSTITIAL_ASSET_ITEM_ERROR="interstitialAssetItemError",D.INTERNAL_EXCEPTION="internalException",D.INTERNAL_ABORTED="aborted",D.ATTACH_MEDIA_ERROR="attachMediaError",D.UNKNOWN="unknown",D}({}),o=function(D){return D.MEDIA_ATTACHING="hlsMediaAttaching",D.MEDIA_ATTACHED="hlsMediaAttached",D.MEDIA_DETACHING="hlsMediaDetaching",D.MEDIA_DETACHED="hlsMediaDetached",D.MEDIA_ENDED="hlsMediaEnded",D.STALL_RESOLVED="hlsStallResolved",D.BUFFER_RESET="hlsBufferReset",D.BUFFER_CODECS="hlsBufferCodecs",D.BUFFER_CREATED="hlsBufferCreated",D.BUFFER_APPENDING="hlsBufferAppending",D.BUFFER_APPENDED="hlsBufferAppended",D.BUFFER_EOS="hlsBufferEos",D.BUFFERED_TO_END="hlsBufferedToEnd",D.BUFFER_FLUSHING="hlsBufferFlushing",D.BUFFER_FLUSHED="hlsBufferFlushed",D.MANIFEST_LOADING="hlsManifestLoading",D.MANIFEST_LOADED="hlsManifestLoaded",D.MANIFEST_PARSED="hlsManifestParsed",D.LEVEL_SWITCHING="hlsLevelSwitching",D.LEVEL_SWITCHED="hlsLevelSwitched",D.LEVEL_LOADING="hlsLevelLoading",D.LEVEL_LOADED="hlsLevelLoaded",D.LEVEL_UPDATED="hlsLevelUpdated",D.LEVEL_PTS_UPDATED="hlsLevelPtsUpdated",D.LEVELS_UPDATED="hlsLevelsUpdated",D.AUDIO_TRACKS_UPDATED="hlsAudioTracksUpdated",D.AUDIO_TRACK_SWITCHING="hlsAudioTrackSwitching",D.AUDIO_TRACK_SWITCHED="hlsAudioTrackSwitched",D.AUDIO_TRACK_LOADING="hlsAudioTrackLoading",D.AUDIO_TRACK_LOADED="hlsAudioTrackLoaded",D.AUDIO_TRACK_UPDATED="hlsAudioTrackUpdated",D.SUBTITLE_TRACKS_UPDATED="hlsSubtitleTracksUpdated",D.SUBTITLE_TRACKS_CLEARED="hlsSubtitleTracksCleared",D.SUBTITLE_TRACK_SWITCH="hlsSubtitleTrackSwitch",D.SUBTITLE_TRACK_LOADING="hlsSubtitleTrackLoading",D.SUBTITLE_TRACK_LOADED="hlsSubtitleTrackLoaded",D.SUBTITLE_TRACK_UPDATED="hlsSubtitleTrackUpdated",D.SUBTITLE_FRAG_PROCESSED="hlsSubtitleFragProcessed",D.CUES_PARSED="hlsCuesParsed",D.NON_NATIVE_TEXT_TRACKS_FOUND="hlsNonNativeTextTracksFound",D.INIT_PTS_FOUND="hlsInitPtsFound",D.FRAG_LOADING="hlsFragLoading",D.FRAG_LOAD_EMERGENCY_ABORTED="hlsFragLoadEmergencyAborted",D.FRAG_LOADED="hlsFragLoaded",D.FRAG_DECRYPTED="hlsFragDecrypted",D.FRAG_PARSING_INIT_SEGMENT="hlsFragParsingInitSegment",D.FRAG_PARSING_USERDATA="hlsFragParsingUserdata",D.FRAG_PARSING_METADATA="hlsFragParsingMetadata",D.FRAG_PARSED="hlsFragParsed",D.FRAG_BUFFERED="hlsFragBuffered",D.FRAG_CHANGED="hlsFragChanged",D.FPS_DROP="hlsFpsDrop",D.FPS_DROP_LEVEL_CAPPING="hlsFpsDropLevelCapping",D.MAX_AUTO_LEVEL_UPDATED="hlsMaxAutoLevelUpdated",D.ERROR="hlsError",D.DESTROYING="hlsDestroying",D.KEY_LOADING="hlsKeyLoading",D.KEY_LOADED="hlsKeyLoaded",D.LIVE_BACK_BUFFER_REACHED="hlsLiveBackBufferReached",D.BACK_BUFFER_REACHED="hlsBackBufferReached",D.STEERING_MANIFEST_LOADED="hlsSteeringManifestLoaded",D.ASSET_LIST_LOADING="hlsAssetListLoading",D.ASSET_LIST_LOADED="hlsAssetListLoaded",D.INTERSTITIALS_UPDATED="hlsInterstitialsUpdated",D.INTERSTITIALS_BUFFERED_TO_BOUNDARY="hlsInterstitialsBufferedToBoundary",D.INTERSTITIAL_ASSET_PLAYER_CREATED="hlsInterstitialAssetPlayerCreated",D.INTERSTITIAL_STARTED="hlsInterstitialStarted",D.INTERSTITIAL_ASSET_STARTED="hlsInterstitialAssetStarted",D.INTERSTITIAL_ASSET_ENDED="hlsInterstitialAssetEnded",D.INTERSTITIAL_ASSET_ERROR="hlsInterstitialAssetError",D.INTERSTITIAL_ENDED="hlsInterstitialEnded",D.INTERSTITIALS_PRIMARY_RESUMED="hlsInterstitialsPrimaryResumed",D.PLAYOUT_LIMIT_REACHED="hlsPlayoutLimitReached",D.EVENT_CUE_ENTER="hlsEventCueEnter",D}({});var h={MANIFEST:"manifest",LEVEL:"level",AUDIO_TRACK:"audioTrack",SUBTITLE_TRACK:"subtitleTrack"},u={MAIN:"main",AUDIO:"audio",SUBTITLE:"subtitle"};class a{constructor(t,n=0,s=0){this.halfLife=void 0,this.alpha_=void 0,this.estimate_=void 0,this.totalWeight_=void 0,this.halfLife=t,this.alpha_=t?Math.exp(Math.log(.5)/t):0,this.estimate_=n,this.totalWeight_=s}sample(t,n){const s=Math.pow(this.alpha_,t);this.estimate_=n*(1-s)+s*this.estimate_,this.totalWeight_+=t}getTotalWeight(){return this.totalWeight_}getEstimate(){if(this.alpha_){const t=1-Math.pow(this.alpha_,this.totalWeight_);if(t)return this.estimate_/t}return this.estimate_}}class x{constructor(t,n,s,_=100){this.defaultEstimate_=void 0,this.minWeight_=void 0,this.minDelayMs_=void 0,this.slow_=void 0,this.fast_=void 0,this.defaultTTFB_=void 0,this.ttfb_=void 0,this.defaultEstimate_=s,this.minWeight_=.001,this.minDelayMs_=50,this.slow_=new a(t),this.fast_=new a(n),this.defaultTTFB_=_,this.ttfb_=new a(t)}update(t,n){const{slow_:s,fast_:_,ttfb_:E}=this;s.halfLife!==t&&(this.slow_=new a(t,s.getEstimate(),s.getTotalWeight())),_.halfLife!==n&&(this.fast_=new a(n,_.getEstimate(),_.getTotalWeight())),E.halfLife!==t&&(this.ttfb_=new a(t,E.getEstimate(),E.getTotalWeight()))}sample(t,n){t=Math.max(t,this.minDelayMs_);const s=8*n,_=t/1e3,E=s/_;this.fast_.sample(_,E),this.slow_.sample(_,E)}sampleTTFB(t){const n=t/1e3,s=Math.sqrt(2)*Math.exp(-Math.pow(n,2)/2);this.ttfb_.sample(s,Math.max(t,5))}canEstimate(){return this.fast_.getTotalWeight()>=this.minWeight_}getEstimate(){return this.canEstimate()?Math.min(this.fast_.getEstimate(),this.slow_.getEstimate()):this.defaultEstimate_}getEstimateTTFB(){return this.ttfb_.getTotalWeight()>=this.minWeight_?this.ttfb_.getEstimate():this.defaultTTFB_}get defaultEstimate(){return this.defaultEstimate_}destroy(){}}function p(D,t,n){return(t=k(t))in D?Object.defineProperty(D,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):D[t]=n,D}function y(){return y=Object.assign?Object.assign.bind():function(D){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var s in n)({}).hasOwnProperty.call(n,s)&&(D[s]=n[s])}return D},y.apply(null,arguments)}function m(D,t){var n=Object.keys(D);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(D);t&&(s=s.filter(function(_){return Object.getOwnPropertyDescriptor(D,_).enumerable})),n.push.apply(n,s)}return n}function b(D){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?m(Object(n),!0).forEach(function(s){p(D,s,n[s])}):Object.getOwnPropertyDescriptors?Object.defineProperties(D,Object.getOwnPropertyDescriptors(n)):m(Object(n)).forEach(function(s){Object.defineProperty(D,s,Object.getOwnPropertyDescriptor(n,s))})}return D}function S(D,t){if(typeof D!="object"||!D)return D;var n=D[Symbol.toPrimitive];if(n!==void 0){var s=n.call(D,t);if(typeof s!="object")return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(D)}function k(D){var t=S(D,"string");return typeof t=="symbol"?t:t+""}class R{constructor(t,n){this.trace=void 0,this.debug=void 0,this.log=void 0,this.warn=void 0,this.info=void 0,this.error=void 0;const s=`[${t}]:`;this.trace=A,this.debug=n.debug.bind(null,s),this.log=n.log.bind(null,s),this.warn=n.warn.bind(null,s),this.info=n.info.bind(null,s),this.error=n.error.bind(null,s)}}const A=function(){},P={trace:A,debug:A,log:A,warn:A,info:A,error:A};function M(){return y({},P)}function B(D,t){const n=self.console[D];return n?n.bind(self.console,`${t?"["+t+"] ":""}[${D}] >`):A}function N(D,t,n){return t[D]?t[D].bind(t):B(D,n)}const K=M();function H(D,t,n){const s=M();if(typeof console=="object"&&D===!0||typeof D=="object"){const _=["debug","log","info","warn","error"];_.forEach(E=>{s[E]=N(E,D,n)});try{s.log(`Debug logs enabled for "${t}" in hls.js version 1.6.13`)}catch(E){return M()}_.forEach(E=>{K[E]=N(E,D)})}else y(K,s);return s}const W=K;function ae(D=!0){return typeof self=="undefined"?void 0:(D||!self.MediaSource)&&self.ManagedMediaSource||self.MediaSource||self.WebKitMediaSource}function ne(D){return typeof self!="undefined"&&D===self.ManagedMediaSource}function oe(D,t){const n=Object.keys(D),s=Object.keys(t),_=n.length,E=s.length;return!_||!E||_===E&&!n.some(I=>s.indexOf(I)===-1)}function q(D,t=!1){if(typeof TextDecoder!="undefined"){const G=new TextDecoder("utf-8").decode(D);if(t){const ue=G.indexOf("\0");return ue!==-1?G.substring(0,ue):G}return G.replace(/\0/g,"")}const n=D.length;let s,_,E,I="",U=0;for(;U<n;){if(s=D[U++],s===0&&t)return I;if(s===0||s===3)continue;switch(s>>4){case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:I+=String.fromCharCode(s);break;case 12:case 13:_=D[U++],I+=String.fromCharCode((s&31)<<6|_&63);break;case 14:_=D[U++],E=D[U++],I+=String.fromCharCode((s&15)<<12|(_&63)<<6|(E&63)<<0);break}}return I}function X(D){let t="";for(let n=0;n<D.length;n++){let s=D[n].toString(16);s.length<2&&(s="0"+s),t+=s}return t}function V(D){return Uint8Array.from(D.replace(/^0x/,"").replace(/([\da-fA-F]{2}) ?/g,"0x$1 ").replace(/ +$/,"").split(" ")).buffer}function se(D){return D&&D.__esModule&&Object.prototype.hasOwnProperty.call(D,"default")?D.default:D}var ee={exports:{}},J;function le(){return J||(J=1,function(D,t){(function(n){var s=/^(?=((?:[a-zA-Z0-9+\-.]+:)?))\1(?=((?:\/\/[^\/?#]*)?))\2(?=((?:(?:[^?#\/]*\/)*[^;?#\/]*)?))\3((?:;[^?#]*)?)(\?[^#]*)?(#[^]*)?$/,_=/^(?=([^\/?#]*))\1([^]*)$/,E=/(?:\/|^)\.(?=\/)/g,I=/(?:\/|^)\.\.\/(?!\.\.\/)[^\/]*(?=\/)/g,U={buildAbsoluteURL:function(Q,G,ue){if(ue=ue||{},Q=Q.trim(),G=G.trim(),!G){if(!ue.alwaysNormalize)return Q;var de=U.parseURL(Q);if(!de)throw new Error("Error trying to parse base URL.");return de.path=U.normalizePath(de.path),U.buildURLFromParts(de)}var be=U.parseURL(G);if(!be)throw new Error("Error trying to parse relative URL.");if(be.scheme)return ue.alwaysNormalize?(be.path=U.normalizePath(be.path),U.buildURLFromParts(be)):G;var Re=U.parseURL(Q);if(!Re)throw new Error("Error trying to parse base URL.");if(!Re.netLoc&&Re.path&&Re.path[0]!=="/"){var Le=_.exec(Re.path);Re.netLoc=Le[1],Re.path=Le[2]}Re.netLoc&&!Re.path&&(Re.path="/");var at={scheme:Re.scheme,netLoc:be.netLoc,path:null,params:be.params,query:be.query,fragment:be.fragment};if(!be.netLoc&&(at.netLoc=Re.netLoc,be.path[0]!=="/"))if(!be.path)at.path=Re.path,be.params||(at.params=Re.params,be.query||(at.query=Re.query));else{var it=Re.path,Qt=it.substring(0,it.lastIndexOf("/")+1)+be.path;at.path=U.normalizePath(Qt)}return at.path===null&&(at.path=ue.alwaysNormalize?U.normalizePath(be.path):be.path),U.buildURLFromParts(at)},parseURL:function(Q){var G=s.exec(Q);return G?{scheme:G[1]||"",netLoc:G[2]||"",path:G[3]||"",params:G[4]||"",query:G[5]||"",fragment:G[6]||""}:null},normalizePath:function(Q){for(Q=Q.split("").reverse().join("").replace(E,"");Q.length!==(Q=Q.replace(I,"")).length;);return Q.split("").reverse().join("")},buildURLFromParts:function(Q){return Q.scheme+Q.netLoc+Q.path+Q.params+Q.query+Q.fragment}};D.exports=U})()}(ee)),ee.exports}var z=le();class j{constructor(){this.aborted=!1,this.loaded=0,this.retry=0,this.total=0,this.chunkCount=0,this.bwEstimate=0,this.loading={start:0,first:0,end:0},this.parsing={start:0,end:0},this.buffering={start:0,first:0,end:0}}}var ie={AUDIO:"audio",VIDEO:"video",AUDIOVIDEO:"audiovideo"};class me{constructor(t){this._byteRange=null,this._url=null,this._stats=null,this._streams=null,this.base=void 0,this.relurl=void 0,typeof t=="string"&&(t={url:t}),this.base=t,Dt(this,"stats")}setByteRange(t,n){const s=t.split("@",2);let _;s.length===1?_=(n==null?void 0:n.byteRangeEndOffset)||0:_=parseInt(s[1]),this._byteRange=[_,parseInt(s[0])+_]}get baseurl(){return this.base.url}get byteRange(){return this._byteRange===null?[]:this._byteRange}get byteRangeStartOffset(){return this.byteRange[0]}get byteRangeEndOffset(){return this.byteRange[1]}get elementaryStreams(){return this._streams===null&&(this._streams={[ie.AUDIO]:null,[ie.VIDEO]:null,[ie.AUDIOVIDEO]:null}),this._streams}set elementaryStreams(t){this._streams=t}get hasStats(){return this._stats!==null}get hasStreams(){return this._streams!==null}get stats(){return this._stats===null&&(this._stats=new j),this._stats}set stats(t){this._stats=t}get url(){return!this._url&&this.baseurl&&this.relurl&&(this._url=z.buildAbsoluteURL(this.baseurl,this.relurl,{alwaysNormalize:!0})),this._url||""}set url(t){this._url=t}clearElementaryStreamInfo(){const{elementaryStreams:t}=this;t[ie.AUDIO]=null,t[ie.VIDEO]=null,t[ie.AUDIOVIDEO]=null}}function Se(D){return D.sn!=="initSegment"}class Ie extends me{constructor(t,n){super(n),this._decryptdata=null,this._programDateTime=null,this._ref=null,this._bitrate=void 0,this.rawProgramDateTime=null,this.tagList=[],this.duration=0,this.sn=0,this.levelkeys=void 0,this.type=void 0,this.loader=null,this.keyLoader=null,this.level=-1,this.cc=0,this.startPTS=void 0,this.endPTS=void 0,this.startDTS=void 0,this.endDTS=void 0,this.start=0,this.playlistOffset=0,this.deltaPTS=void 0,this.maxStartPTS=void 0,this.minEndPTS=void 0,this.data=void 0,this.bitrateTest=!1,this.title=null,this.initSegment=null,this.endList=void 0,this.gap=void 0,this.urlId=0,this.type=t}get byteLength(){if(this.hasStats){const t=this.stats.total;if(t)return t}if(this.byteRange.length){const t=this.byteRange[0],n=this.byteRange[1];if(r(t)&&r(n))return n-t}return null}get bitrate(){return this.byteLength?this.byteLength*8/this.duration:this._bitrate?this._bitrate:null}set bitrate(t){this._bitrate=t}get decryptdata(){var t;const{levelkeys:n}=this;if(!n||n.NONE)return null;if(n.identity)this._decryptdata||(this._decryptdata=n.identity.getDecryptData(this.sn));else if(!((t=this._decryptdata)!=null&&t.keyId)){const s=Object.keys(n);if(s.length===1){const _=this._decryptdata=n[s[0]]||null;_&&(this._decryptdata=_.getDecryptData(this.sn,n))}}return this._decryptdata}get end(){return this.start+this.duration}get endProgramDateTime(){if(this.programDateTime===null)return null;const t=r(this.duration)?this.duration:0;return this.programDateTime+t*1e3}get encrypted(){var t;if((t=this._decryptdata)!=null&&t.encrypted)return!0;if(this.levelkeys){var n;const s=Object.keys(this.levelkeys),_=s.length;if(_>1||_===1&&(n=this.levelkeys[s[0]])!=null&&n.encrypted)return!0}return!1}get programDateTime(){return this._programDateTime===null&&this.rawProgramDateTime&&(this.programDateTime=Date.parse(this.rawProgramDateTime)),this._programDateTime}set programDateTime(t){if(!r(t)){this._programDateTime=this.rawProgramDateTime=null;return}this._programDateTime=t}get ref(){return Se(this)?(this._ref||(this._ref={base:this.base,start:this.start,duration:this.duration,sn:this.sn,programDateTime:this.programDateTime}),this._ref):null}addStart(t){this.setStart(this.start+t)}setStart(t){this.start=t,this._ref&&(this._ref.start=t)}setDuration(t){this.duration=t,this._ref&&(this._ref.duration=t)}setKeyFormat(t){const n=this.levelkeys;if(n){var s;const _=n[t];_&&!((s=this._decryptdata)!=null&&s.keyId)&&(this._decryptdata=_.getDecryptData(this.sn,n))}}abortRequests(){var t,n;(t=this.loader)==null||t.abort(),(n=this.keyLoader)==null||n.abort()}setElementaryStreamInfo(t,n,s,_,E,I=!1){const{elementaryStreams:U}=this,Q=U[t];if(!Q){U[t]={startPTS:n,endPTS:s,startDTS:_,endDTS:E,partial:I};return}Q.startPTS=Math.min(Q.startPTS,n),Q.endPTS=Math.max(Q.endPTS,s),Q.startDTS=Math.min(Q.startDTS,_),Q.endDTS=Math.max(Q.endDTS,E)}}class He extends me{constructor(t,n,s,_,E){super(s),this.fragOffset=0,this.duration=0,this.gap=!1,this.independent=!1,this.relurl=void 0,this.fragment=void 0,this.index=void 0,this.duration=t.decimalFloatingPoint("DURATION"),this.gap=t.bool("GAP"),this.independent=t.bool("INDEPENDENT"),this.relurl=t.enumeratedString("URI"),this.fragment=n,this.index=_;const I=t.enumeratedString("BYTERANGE");I&&this.setByteRange(I,E),E&&(this.fragOffset=E.fragOffset+E.duration)}get start(){return this.fragment.start+this.fragOffset}get end(){return this.start+this.duration}get loaded(){const{elementaryStreams:t}=this;return!!(t.audio||t.video||t.audiovideo)}}function je(D,t){const n=Object.getPrototypeOf(D);if(n){const s=Object.getOwnPropertyDescriptor(n,t);return s||je(n,t)}}function Dt(D,t){const n=je(D,t);n&&(n.enumerable=!0,Object.defineProperty(D,t,n))}const ht=Math.pow(2,32)-1,It=[].push,Zt={video:1,audio:2,id3:3,text:4};function Rt(D){return String.fromCharCode.apply(null,D)}function ar(D,t){const n=D[t]<<8|D[t+1];return n<0?65536+n:n}function $e(D,t){const n=Mt(D,t);return n<0?4294967296+n:n}function gt(D,t){let n=$e(D,t);return n*=Math.pow(2,32),n+=$e(D,t+4),n}function Mt(D,t){return D[t]<<24|D[t+1]<<16|D[t+2]<<8|D[t+3]}function et(D){const t=D.byteLength;for(let n=0;n<t;){const s=$e(D,n);if(s>8&&D[n+4]===109&&D[n+5]===111&&D[n+6]===111&&D[n+7]===102)return!0;n=s>1?n+s:t}return!1}function ft(D,t){const n=[];if(!t.length)return n;const s=D.byteLength;for(let _=0;_<s;){const E=$e(D,_),I=Rt(D.subarray(_+4,_+8)),U=E>1?_+E:s;if(I===t[0])if(t.length===1)n.push(D.subarray(_+8,U));else{const Q=ft(D.subarray(_+8,U),t.slice(1));Q.length&&It.apply(n,Q)}_=U}return n}function ot(D){const t=[],n=D[0];let s=8;const _=$e(D,s);s+=4;let E=0,I=0;n===0?(E=$e(D,s),I=$e(D,s+4),s+=8):(E=gt(D,s),I=gt(D,s+8),s+=16),s+=2;let U=D.length+I;const Q=ar(D,s);s+=2;for(let G=0;G<Q;G++){let ue=s;const de=$e(D,ue);ue+=4;const be=de&2147483647;if((de&2147483648)>>>31===1)return W.warn("SIDX has hierarchical references (not supported)"),null;const Le=$e(D,ue);ue+=4,t.push({referenceSize:be,subsegmentDuration:Le,info:{duration:Le/_,start:U,end:U+be-1}}),U+=be,ue+=4,s=ue}return{earliestPresentationTime:E,timescale:_,version:n,referencesCount:Q,references:t}}function Je(D){const t=[],n=ft(D,["moov","trak"]);for(let _=0;_<n.length;_++){const E=n[_],I=ft(E,["tkhd"])[0];if(I){let U=I[0];const Q=$e(I,U===0?12:20),G=ft(E,["mdia","mdhd"])[0];if(G){U=G[0];const ue=$e(G,U===0?12:20),de=ft(E,["mdia","hdlr"])[0];if(de){const be=Rt(de.subarray(8,12)),Re={soun:ie.AUDIO,vide:ie.VIDEO}[be],Le=ft(E,["mdia","minf","stbl","stsd"])[0],at=Ne(Le);Re?(t[Q]={timescale:ue,type:Re,stsd:at},t[Re]=b({timescale:ue,id:Q},at)):t[Q]={timescale:ue,type:be,stsd:at}}}}}return ft(D,["moov","mvex","trex"]).forEach(_=>{const E=$e(_,4),I=t[E];I&&(I.default={duration:$e(_,12),flags:$e(_,20)})}),t}function Ne(D){const t=D.subarray(8),n=t.subarray(86),s=Rt(t.subarray(4,8));let _=s,E;const I=s==="enca"||s==="encv";if(I){const G=ft(t,[s])[0].subarray(s==="enca"?28:78);ft(G,["sinf"]).forEach(de=>{const be=ft(de,["schm"])[0];if(be){const Re=Rt(be.subarray(4,8));if(Re==="cbcs"||Re==="cenc"){const Le=ft(de,["frma"])[0];Le&&(_=Rt(Le))}}})}const U=_;switch(_){case"avc1":case"avc2":case"avc3":case"avc4":{const Q=ft(n,["avcC"])[0];Q&&Q.length>3&&(_+="."+We(Q[1])+We(Q[2])+We(Q[3]),E=ye(U==="avc1"?"dva1":"dvav",n));break}case"mp4a":{const Q=ft(t,[s])[0],G=ft(Q.subarray(28),["esds"])[0];if(G&&G.length>7){let ue=4;if(G[ue++]!==3)break;ue=Ge(G,ue),ue+=2;const de=G[ue++];if(de&128&&(ue+=2),de&64&&(ue+=G[ue++]),G[ue++]!==4)break;ue=Ge(G,ue);const be=G[ue++];if(be===64)_+="."+We(be);else break;if(ue+=12,G[ue++]!==5)break;ue=Ge(G,ue);const Re=G[ue++];let Le=(Re&248)>>3;Le===31&&(Le+=1+((Re&7)<<3)+((G[ue]&224)>>5)),_+="."+Le}break}case"hvc1":case"hev1":{const Q=ft(n,["hvcC"])[0];if(Q&&Q.length>12){const G=Q[1],ue=["","A","B","C"][G>>6],de=G&31,be=$e(Q,2),Re=(G&32)>>5?"H":"L",Le=Q[12],at=Q.subarray(6,12);_+="."+ue+de,_+="."+ke(be).toString(16).toUpperCase(),_+="."+Re+Le;let it="";for(let Qt=at.length;Qt--;){const ir=at[Qt];(ir||it)&&(it="."+ir.toString(16).toUpperCase()+it)}_+=it}E=ye(U=="hev1"?"dvhe":"dvh1",n);break}case"dvh1":case"dvhe":case"dvav":case"dva1":case"dav1":{_=ye(_,n)||_;break}case"vp09":{const Q=ft(n,["vpcC"])[0];if(Q&&Q.length>6){const G=Q[4],ue=Q[5],de=Q[6]>>4&15;_+="."+Xe(G)+"."+Xe(ue)+"."+Xe(de)}break}case"av01":{const Q=ft(n,["av1C"])[0];if(Q&&Q.length>2){const G=Q[1]>>>5,ue=Q[1]&31,de=Q[2]>>>7?"H":"M",be=(Q[2]&64)>>6,Re=(Q[2]&32)>>5,Le=G===2&&be?Re?12:10:be?10:8,at=(Q[2]&16)>>4,it=(Q[2]&8)>>3,Qt=(Q[2]&4)>>2,ir=Q[2]&3;_+="."+G+"."+Xe(ue)+de+"."+Xe(Le)+"."+at+"."+it+Qt+ir+"."+Xe(1)+"."+Xe(1)+"."+Xe(1)+"."+0,E=ye("dav1",n)}break}}return{codec:_,encrypted:I,supplemental:E}}function ye(D,t){const n=ft(t,["dvvC"]),s=n.length?n[0]:ft(t,["dvcC"])[0];if(s){const _=s[2]>>1&127,E=s[2]<<5&32|s[3]>>3&31;return D+"."+Xe(_)+"."+Xe(E)}}function ke(D){let t=0;for(let n=0;n<32;n++)t|=(D>>n&1)<<31-n;return t>>>0}function Ge(D,t){const n=t+5;for(;D[t++]&128&&t<n;);return t}function We(D){return("0"+D.toString(16).toUpperCase()).slice(-2)}function Xe(D){return(D<10?"0":"")+D}function ut(D,t){if(!D||!t)return;const n=t.keyId;n&&t.isCommonEncryption&&or(D,(s,_)=>{const E=s.subarray(8,24);E.some(I=>I!==0)||(W.log(`[eme] Patching keyId in 'enc${_?"a":"v"}>sinf>>tenc' box: ${X(E)} -> ${X(n)}`),s.set(n,8))})}function pt(D){const t=[];return or(D,n=>t.push(n.subarray(8,24))),t}function or(D,t){ft(D,["moov","trak"]).forEach(s=>{const _=ft(s,["mdia","minf","stbl","stsd"])[0];if(!_)return;const E=_.subarray(8);let I=ft(E,["enca"]);const U=I.length>0;U||(I=ft(E,["encv"])),I.forEach(Q=>{const G=U?Q.subarray(28):Q.subarray(78);ft(G,["sinf"]).forEach(de=>{const be=tr(de);be&&t(be,U)})})})}function tr(D){const t=ft(D,["schm"])[0];if(t){const n=Rt(t.subarray(4,8));if(n==="cbcs"||n==="cenc"){const s=ft(D,["schi","tenc"])[0];if(s)return s}}}function Me(D,t,n){const s={},_=ft(D,["moof","traf"]);for(let E=0;E<_.length;E++){const I=_[E],U=ft(I,["tfhd"])[0],Q=$e(U,4),G=t[Q];if(!G)continue;s[Q]||(s[Q]={start:NaN,duration:0,sampleCount:0,timescale:G.timescale,type:G.type});const ue=s[Q],de=ft(I,["tfdt"])[0];if(de){const ur=de[0];let Ar=$e(de,4);ur===1&&(Ar===ht?n.warn("[mp4-demuxer]: Ignoring assumed invalid signed 64-bit track fragment decode time"):(Ar*=ht+1,Ar+=$e(de,8))),r(Ar)&&(!r(ue.start)||Ar<ue.start)&&(ue.start=Ar)}const be=G.default,Re=$e(U,0)|(be==null?void 0:be.flags);let Le=(be==null?void 0:be.duration)||0;Re&8&&(Re&2?Le=$e(U,12):Le=$e(U,8));const at=ft(I,["trun"]);let it=ue.start||0,Qt=0,ir=Le;for(let ur=0;ur<at.length;ur++){const Ar=at[ur],Ur=$e(Ar,4),mn=ue.sampleCount;ue.sampleCount+=Ur;const zr=Ar[3]&1,ln=Ar[3]&4,on=Ar[2]&1,Qr=Ar[2]&2,Dn=Ar[2]&4,Ei=Ar[2]&8;let Ki=8,da=Ur;for(zr&&(Ki+=4),ln&&Ur&&(!(Ar[Ki+1]&1)&&ue.keyFrameIndex===void 0&&(ue.keyFrameIndex=mn),Ki+=4,on?(ir=$e(Ar,Ki),Ki+=4):ir=Le,Qr&&(Ki+=4),Ei&&(Ki+=4),it+=ir,Qt+=ir,da--);da--;)on?(ir=$e(Ar,Ki),Ki+=4):ir=Le,Qr&&(Ki+=4),Dn&&(Ar[Ki+1]&1||ue.keyFrameIndex===void 0&&(ue.keyFrameIndex=ue.sampleCount-(da+1),ue.keyFrameStart=it),Ki+=4),Ei&&(Ki+=4),it+=ir,Qt+=ir;!Qt&&Le&&(Qt+=Le*Ur)}ue.duration+=Qt}if(!Object.keys(s).some(E=>s[E].duration)){let E=1/0,I=0;const U=ft(D,["sidx"]);for(let Q=0;Q<U.length;Q++){const G=ot(U[Q]);if(G!=null&&G.references){E=Math.min(E,G.earliestPresentationTime/G.timescale);const ue=G.references.reduce((de,be)=>de+be.info.duration||0,0);I=Math.max(I,ue+G.earliestPresentationTime/G.timescale)}}I&&r(I)&&Object.keys(s).forEach(Q=>{s[Q].duration||(s[Q].duration=I*s[Q].timescale-s[Q].start)})}return s}function tt(D){const t={valid:null,remainder:null},n=ft(D,["moof"]);if(n.length<2)return t.remainder=D,t;const s=n[n.length-1];return t.valid=D.slice(0,s.byteOffset-8),t.remainder=D.slice(s.byteOffset-8),t}function Yt(D,t){const n=new Uint8Array(D.length+t.length);return n.set(D),n.set(t,D.length),n}function Ot(D,t){const n=[],s=t.samples,_=t.timescale,E=t.id;let I=!1;return ft(s,["moof"]).map(Q=>{const G=Q.byteOffset-8;ft(Q,["traf"]).map(de=>{const be=ft(de,["tfdt"]).map(Re=>{const Le=Re[0];let at=$e(Re,4);return Le===1&&(at*=Math.pow(2,32),at+=$e(Re,8)),at/_})[0];return be!==void 0&&(D=be),ft(de,["tfhd"]).map(Re=>{const Le=$e(Re,4),at=$e(Re,0)&16777215,it=(at&1)!==0,Qt=(at&2)!==0,ir=(at&8)!==0;let ur=0;const Ar=(at&16)!==0;let Ur=0;const mn=(at&32)!==0;let zr=8;Le===E&&(it&&(zr+=8),Qt&&(zr+=4),ir&&(ur=$e(Re,zr),zr+=4),Ar&&(Ur=$e(Re,zr),zr+=4),mn&&(zr+=4),t.type==="video"&&(I=zt(t.codec)),ft(de,["trun"]).map(ln=>{const on=ln[0],Qr=$e(ln,0)&16777215,Dn=(Qr&1)!==0;let Ei=0;const Ki=(Qr&4)!==0,da=(Qr&256)!==0;let Vi=0;const fi=(Qr&512)!==0;let qi=0;const ki=(Qr&1024)!==0,ua=(Qr&2048)!==0;let Fa=0;const bi=$e(ln,4);let xi=8;Dn&&(Ei=$e(ln,xi),xi+=4),Ki&&(xi+=4);let ys=Ei+G;for(let bs=0;bs<bi;bs++){if(da?(Vi=$e(ln,xi),xi+=4):Vi=ur,fi?(qi=$e(ln,xi),xi+=4):qi=Ur,ki&&(xi+=4),ua&&(on===0?Fa=$e(ln,xi):Fa=Mt(ln,xi),xi+=4),t.type===ie.VIDEO){let Ss=0;for(;Ss<qi;){const Ks=$e(s,ys);if(ys+=4,Ht(I,s[ys])){const pu=s.subarray(ys,ys+Ks);lr(pu,I?2:1,D+Fa/_,n)}ys+=Ks,Ss+=Ks+4}}D+=Vi/_}}))})})}),n}function zt(D){if(!D)return!1;const t=D.substring(0,4);return t==="hvc1"||t==="hev1"||t==="dvh1"||t==="dvhe"}function Ht(D,t){if(D){const n=t>>1&63;return n===39||n===40}else return(t&31)===6}function lr(D,t,n,s){const _=Wt(D);let E=0;E+=t;let I=0,U=0,Q=0;for(;E<_.length;){I=0;do{if(E>=_.length)break;Q=_[E++],I+=Q}while(Q===255);U=0;do{if(E>=_.length)break;Q=_[E++],U+=Q}while(Q===255);const G=_.length-E;let ue=E;if(U<G)E+=U;else if(U>G){W.error(`Malformed SEI payload. ${U} is too small, only ${G} bytes left to parse.`);break}if(I===4){if(_[ue++]===181){const be=ar(_,ue);if(ue+=2,be===49){const Re=$e(_,ue);if(ue+=4,Re===1195456820){const Le=_[ue++];if(Le===3){const at=_[ue++],it=31&at,Qt=64&at,ir=Qt?2+it*3:0,ur=new Uint8Array(ir);if(Qt){ur[0]=at;for(let Ar=1;Ar<ir;Ar++)ur[Ar]=_[ue++]}s.push({type:Le,payloadType:I,pts:n,bytes:ur})}}}}}else if(I===5&&U>16){const de=[];for(let Le=0;Le<16;Le++){const at=_[ue++].toString(16);de.push(at.length==1?"0"+at:at),(Le===3||Le===5||Le===7||Le===9)&&de.push("-")}const be=U-16,Re=new Uint8Array(be);for(let Le=0;Le<be;Le++)Re[Le]=_[ue++];s.push({payloadType:I,pts:n,uuid:de.join(""),userData:q(Re),userDataBytes:Re})}}}function Wt(D){const t=D.byteLength,n=[];let s=1;for(;s<t-2;)D[s]===0&&D[s+1]===0&&D[s+2]===3?(n.push(s+2),s+=2):s++;if(n.length===0)return D;const _=t-n.length,E=new Uint8Array(_);let I=0;for(s=0;s<_;I++,s++)I===n[0]&&(I++,n.shift()),E[s]=D[I];return E}function Ce(D){const t=D[0];let n="",s="",_=0,E=0,I=0,U=0,Q=0,G=0;if(t===0){for(;Rt(D.subarray(G,G+1))!=="\0";)n+=Rt(D.subarray(G,G+1)),G+=1;for(n+=Rt(D.subarray(G,G+1)),G+=1;Rt(D.subarray(G,G+1))!=="\0";)s+=Rt(D.subarray(G,G+1)),G+=1;s+=Rt(D.subarray(G,G+1)),G+=1,_=$e(D,12),E=$e(D,16),U=$e(D,20),Q=$e(D,24),G=28}else if(t===1){G+=4,_=$e(D,G),G+=4;const de=$e(D,G);G+=4;const be=$e(D,G);for(G+=4,I=4294967296*de+be,i(I)||(I=Number.MAX_SAFE_INTEGER,W.warn("Presentation time exceeds safe integer limit and wrapped to max safe integer in parsing emsg box")),U=$e(D,G),G+=4,Q=$e(D,G),G+=4;Rt(D.subarray(G,G+1))!=="\0";)n+=Rt(D.subarray(G,G+1)),G+=1;for(n+=Rt(D.subarray(G,G+1)),G+=1;Rt(D.subarray(G,G+1))!=="\0";)s+=Rt(D.subarray(G,G+1)),G+=1;s+=Rt(D.subarray(G,G+1)),G+=1}const ue=D.subarray(G,D.byteLength);return{schemeIdUri:n,value:s,timeScale:_,presentationTime:I,presentationTimeDelta:E,eventDuration:U,id:Q,payload:ue}}function ce(D,...t){const n=t.length;let s=8,_=n;for(;_--;)s+=t[_].byteLength;const E=new Uint8Array(s);for(E[0]=s>>24&255,E[1]=s>>16&255,E[2]=s>>8&255,E[3]=s&255,E.set(D,4),_=0,s=8;_<n;_++)E.set(t[_],s),s+=t[_].byteLength;return E}function pe(D,t,n){if(D.byteLength!==16)throw new RangeError("Invalid system id");let s,_;s=0,_=new Uint8Array;let E;s>0?(E=new Uint8Array(4),t.length>0&&new DataView(E.buffer).setUint32(0,t.length,!1)):E=new Uint8Array;const I=new Uint8Array(4);return n.byteLength>0&&new DataView(I.buffer).setUint32(0,n.byteLength,!1),ce([112,115,115,104],new Uint8Array([s,0,0,0]),D,E,_,I,n)}function Ct(D){const t=[];if(D instanceof ArrayBuffer){const n=D.byteLength;let s=0;for(;s+32<n;){const _=new DataView(D,s),E=Ae(_);t.push(E),s+=E.size}}return t}function Ae(D){const t=D.getUint32(0),n=D.byteOffset,s=D.byteLength;if(s<t)return{offset:n,size:s};if(D.getUint32(4)!==1886614376)return{offset:n,size:t};const E=D.getUint32(8)>>>24;if(E!==0&&E!==1)return{offset:n,size:t};const I=D.buffer,U=X(new Uint8Array(I,n+12,16));let Q=null,G=null,ue=0;if(E===0)ue=28;else{const be=D.getUint32(28);if(!be||s<32+be*16)return{offset:n,size:t};Q=[];for(let Re=0;Re<be;Re++)Q.push(new Uint8Array(I,n+32+Re*16,16));ue=32+be*16}if(!ue)return{offset:n,size:t};const de=D.getUint32(ue);return t-32<de?{offset:n,size:t}:(G=new Uint8Array(I,n+ue+4,de),{version:E,systemId:U,kids:Q,data:G,offset:n,size:t})}const st=()=>/\(Windows.+Firefox\//i.test(navigator.userAgent),Gt={audio:{a3ds:1,"ac-3":.95,"ac-4":1,alac:.9,alaw:1,dra1:1,"dts+":1,"dts-":1,dtsc:1,dtse:1,dtsh:1,"ec-3":.9,enca:1,fLaC:.9,flac:.9,FLAC:.9,g719:1,g726:1,m4ae:1,mha1:1,mha2:1,mhm1:1,mhm2:1,mlpa:1,mp4a:1,"raw ":1,Opus:1,opus:1,samr:1,sawb:1,sawp:1,sevc:1,sqcp:1,ssmv:1,twos:1,ulaw:1},video:{avc1:1,avc2:1,avc3:1,avc4:1,avcp:1,av01:.8,dav1:.8,drac:1,dva1:1,dvav:1,dvh1:.7,dvhe:.7,encv:1,hev1:.75,hvc1:.75,mjp2:1,mp4v:1,mvc1:1,mvc2:1,mvc3:1,mvc4:1,resv:1,rv60:1,s263:1,svc1:1,svc2:1,"vc-1":1,vp08:1,vp09:.9},text:{stpp:1,wvtt:1}};function bt(D,t){const n=Gt[t];return!!n&&!!n[D.slice(0,4)]}function Te(D,t,n=!0){return!D.split(",").some(s=>!yt(s,t,n))}function yt(D,t,n=!0){var s;const _=ae(n);return(s=_==null?void 0:_.isTypeSupported(ze(D,t)))!=null?s:!1}function ze(D,t){return`${t}/mp4;codecs=${D}`}function xe(D){if(D){const t=D.substring(0,4);return Gt.video[t]}return 2}function dt(D){const t=st();return D.split(",").reduce((n,s)=>{const E=t&&zt(s)?9:Gt.video[s];return E?(E*2+n)/(n?3:2):(Gt.audio[s]+n)/(n?2:1)},0)}const Pt={};function Be(D,t=!0){if(Pt[D])return Pt[D];const n={flac:["flac","fLaC","FLAC"],opus:["opus","Opus"],"mp4a.40.34":["mp3"]}[D];for(let _=0;_<n.length;_++){var s;if(yt(n[_],"audio",t))return Pt[D]=n[_],n[_];if(n[_]==="mp3"&&(s=ae(t))!=null&&s.isTypeSupported("audio/mpeg"))return""}return D}const Or=/flac|opus|mp4a\.40\.34/i;function mt(D,t=!0){return D.replace(Or,n=>Be(n.toLowerCase(),t))}function qr(D,t){const n=[];if(D){const s=D.split(",");for(let _=0;_<s.length;_++)bt(s[_],"video")||n.push(s[_])}return t&&n.push(t),n.join(",")}function an(D,t){if(D&&(D.length>4||["ac-3","ec-3","alac","fLaC","Opus"].indexOf(D)!==-1)&&(Nt(D,"audio")||Nt(D,"video")))return D;if(t){const n=t.split(",");if(n.length>1){if(D){for(let s=n.length;s--;)if(n[s].substring(0,4)===D.substring(0,4))return n[s]}return n[0]}}return t||D}function Nt(D,t){return bt(D,t)&&yt(D,t)}function qt(D){const t=D.split(",");for(let n=0;n<t.length;n++){const s=t[n].split(".");s.length>2&&s[0]==="avc1"&&(t[n]=`avc1.${parseInt(s[1]).toString(16)}${("000"+parseInt(s[2]).toString(16)).slice(-4)}`)}return t.join(",")}function Lt(D){if(D.startsWith("av01.")){const t=D.split("."),n=["0","111","01","01","01","0"];for(let s=t.length;s>4&&s<10;s++)t[s]=n[s-4];return t.join(".")}return D}function Xt(D){const t=ae(D)||{isTypeSupported:()=>!1};return{mpeg:t.isTypeSupported("audio/mpeg"),mp3:t.isTypeSupported('audio/mp4; codecs="mp3"'),ac3:t.isTypeSupported('audio/mp4; codecs="ac-3"')}}function Er(D){return D.replace(/^.+codecs=["']?([^"']+).*$/,"$1")}const Pr={supported:!0,powerEfficient:!0,smooth:!0},At={supported:!1,smooth:!1,powerEfficient:!1},Kt={supported:!0,configurations:[],decodingInfoResults:[Pr]};function Bt(D,t){return{supported:!1,configurations:t,decodingInfoResults:[At],error:D}}function Jt(D,t,n,s,_,E){const I=D.videoCodec,U=D.audioCodec?D.audioGroups:null,Q=E==null?void 0:E.audioCodec,G=E==null?void 0:E.channels,ue=G?parseInt(G):Q?1/0:2;let de=null;if(U!=null&&U.length)try{U.length===1&&U[0]?de=t.groups[U[0]].channels:de=U.reduce((be,Re)=>{if(Re){const Le=t.groups[Re];if(!Le)throw new Error(`Audio track group ${Re} not found`);Object.keys(Le.channels).forEach(at=>{be[at]=(be[at]||0)+Le.channels[at]})}return be},{2:0})}catch(be){return!0}return I!==void 0&&(I.split(",").some(be=>zt(be))||D.width>1920&&D.height>1088||D.height>1920&&D.width>1088||D.frameRate>Math.max(s,30)||D.videoRange!=="SDR"&&D.videoRange!==n||D.bitrate>Math.max(_,8e6))||!!de&&r(ue)&&Object.keys(de).some(be=>parseInt(be)>ue)}function br(D,t,n,s={}){const _=D.videoCodec;if(!_&&!D.audioCodec||!n)return Promise.resolve(Kt);const E=[],I=Xr(D),U=I.length,Q=Wr(D,t,U>0),G=Q.length;for(let ue=U||1*G||1;ue--;){const de={type:"media-source"};if(U&&(de.video=I[ue%U]),G){de.audio=Q[ue%G];const be=de.audio.bitrate;de.video&&be&&(de.video.bitrate-=be)}E.push(de)}if(_){const ue=navigator.userAgent;if(_.split(",").some(de=>zt(de))&&st())return Promise.resolve(Bt(new Error(`Overriding Windows Firefox HEVC MediaCapabilities result based on user-agent string: (${ue})`),E))}return Promise.all(E.map(ue=>{const de=Yn(ue);return s[de]||(s[de]=n.decodingInfo(ue))})).then(ue=>({supported:!ue.some(de=>!de.supported),configurations:E,decodingInfoResults:ue})).catch(ue=>({supported:!1,configurations:E,decodingInfoResults:[],error:ue}))}function Xr(D){var t;const n=(t=D.videoCodec)==null?void 0:t.split(","),s=wn(D),_=D.width||640,E=D.height||480,I=D.frameRate||30,U=D.videoRange.toLowerCase();return n?n.map(Q=>{const G={contentType:ze(Lt(Q),"video"),width:_,height:E,bitrate:s,framerate:I};return U!=="sdr"&&(G.transferFunction=U),G}):[]}function Wr(D,t,n){var s;const _=(s=D.audioCodec)==null?void 0:s.split(","),E=wn(D);return _&&D.audioGroups?D.audioGroups.reduce((I,U)=>{var Q;const G=U?(Q=t.groups[U])==null?void 0:Q.tracks:null;return G?G.reduce((ue,de)=>{if(de.groupId===U){const be=parseFloat(de.channels||"");_.forEach(Re=>{const Le={contentType:ze(Re,"audio"),bitrate:n?jn(Re,E):E};be&&(Le.channels=""+be),ue.push(Le)})}return ue},I):I},[]):[]}function jn(D,t){if(t<=1)return 1;let n=128e3;return D==="ec-3"?n=768e3:D==="ac-3"&&(n=64e4),Math.min(t/2,n)}function wn(D){return Math.ceil(Math.max(D.bitrate*.9,D.averageBitrate)/1e3)*1e3||1}function Yn(D){let t="";const{audio:n,video:s}=D;if(s){const _=Er(s.contentType);t+=`${_}_r${s.height}x${s.width}f${Math.ceil(s.framerate)}${s.transferFunction||"sd"}_${Math.ceil(s.bitrate/1e5)}`}if(n){const _=Er(n.contentType);t+=`${s?"_":""}${_}_c${n.channels}`}return t}const St=["NONE","TYPE-0","TYPE-1",null];function Vr(D){return St.indexOf(D)>-1}const ii=["SDR","PQ","HLG"];function Bi(D){return!!D&&ii.indexOf(D)>-1}var Gn={No:"",Yes:"YES",v2:"v2"};function ci(D){const{canSkipUntil:t,canSkipDateRanges:n,age:s}=D,_=s<t/2;return t&&_?n?Gn.v2:Gn.Yes:Gn.No}class Oi{constructor(t,n,s){this.msn=void 0,this.part=void 0,this.skip=void 0,this.msn=t,this.part=n,this.skip=s}addDirectives(t){const n=new self.URL(t);return this.msn!==void 0&&n.searchParams.set("_HLS_msn",this.msn.toString()),this.part!==void 0&&n.searchParams.set("_HLS_part",this.part.toString()),this.skip&&n.searchParams.set("_HLS_skip",this.skip),n.href}}class $i{constructor(t){if(this._attrs=void 0,this.audioCodec=void 0,this.bitrate=void 0,this.codecSet=void 0,this.url=void 0,this.frameRate=void 0,this.height=void 0,this.id=void 0,this.name=void 0,this.supplemental=void 0,this.videoCodec=void 0,this.width=void 0,this.details=void 0,this.fragmentError=0,this.loadError=0,this.loaded=void 0,this.realBitrate=0,this.supportedPromise=void 0,this.supportedResult=void 0,this._avgBitrate=0,this._audioGroups=void 0,this._subtitleGroups=void 0,this._urlId=0,this.url=[t.url],this._attrs=[t.attrs],this.bitrate=t.bitrate,t.details&&(this.details=t.details),this.id=t.id||0,this.name=t.name,this.width=t.width||0,this.height=t.height||0,this.frameRate=t.attrs.optionalFloat("FRAME-RATE",0),this._avgBitrate=t.attrs.decimalInteger("AVERAGE-BANDWIDTH"),this.audioCodec=t.audioCodec,this.videoCodec=t.videoCodec,this.codecSet=[t.videoCodec,t.audioCodec].filter(s=>!!s).map(s=>s.substring(0,4)).join(","),"supplemental"in t){var n;this.supplemental=t.supplemental;const s=(n=t.supplemental)==null?void 0:n.videoCodec;s&&s!==t.videoCodec&&(this.codecSet+=`,${s.substring(0,4)}`)}this.addGroupId("audio",t.attrs.AUDIO),this.addGroupId("text",t.attrs.SUBTITLES)}get maxBitrate(){return Math.max(this.realBitrate,this.bitrate)}get averageBitrate(){return this._avgBitrate||this.realBitrate||this.bitrate}get attrs(){return this._attrs[0]}get codecs(){return this.attrs.CODECS||""}get pathwayId(){return this.attrs["PATHWAY-ID"]||"."}get videoRange(){return this.attrs["VIDEO-RANGE"]||"SDR"}get score(){return this.attrs.optionalFloat("SCORE",0)}get uri(){return this.url[0]||""}hasAudioGroup(t){return Ai(this._audioGroups,t)}hasSubtitleGroup(t){return Ai(this._subtitleGroups,t)}get audioGroups(){return this._audioGroups}get subtitleGroups(){return this._subtitleGroups}addGroupId(t,n){if(n){if(t==="audio"){let s=this._audioGroups;s||(s=this._audioGroups=[]),s.indexOf(n)===-1&&s.push(n)}else if(t==="text"){let s=this._subtitleGroups;s||(s=this._subtitleGroups=[]),s.indexOf(n)===-1&&s.push(n)}}}get urlId(){return 0}set urlId(t){}get audioGroupIds(){return this.audioGroups?[this.audioGroupId]:void 0}get textGroupIds(){return this.subtitleGroups?[this.textGroupId]:void 0}get audioGroupId(){var t;return(t=this.audioGroups)==null?void 0:t[0]}get textGroupId(){var t;return(t=this.subtitleGroups)==null?void 0:t[0]}addFallback(){}}function Ai(D,t){return!t||!D?!1:D.indexOf(t)!==-1}function ji(){if(typeof matchMedia=="function"){const D=matchMedia("(dynamic-range: high)"),t=matchMedia("bad query");if(D.media!==t.media)return D.matches===!0}return!1}function ha(D,t){let n=!1,s=[];if(D&&(n=D!=="SDR",s=[D]),t){s=t.allowedVideoRanges||ii.slice(0);const _=s.join("")!=="SDR"&&!t.videoCodec;n=t.preferHDR!==void 0?t.preferHDR:_&&ji(),n||(s=["SDR"])}return{preferHDR:n,allowedVideoRanges:s}}const ea=D=>{const t=new WeakSet;return(n,s)=>{if(D&&(s=D(n,s)),typeof s=="object"&&s!==null){if(t.has(s))return;t.add(s)}return s}},Yi=(D,t)=>JSON.stringify(D,ea(t));function mi(D,t,n,s,_){const E=Object.keys(D),I=s==null?void 0:s.channels,U=s==null?void 0:s.audioCodec,Q=_==null?void 0:_.videoCodec,G=I&&parseInt(I)===2;let ue=!1,de=!1,be=1/0,Re=1/0,Le=1/0,at=1/0,it=0,Qt=[];const{preferHDR:ir,allowedVideoRanges:ur}=ha(t,_);for(let ln=E.length;ln--;){const on=D[E[ln]];ue||(ue=on.channels[2]>0),be=Math.min(be,on.minHeight),Re=Math.min(Re,on.minFramerate),Le=Math.min(Le,on.minBitrate),ur.filter(Dn=>on.videoRanges[Dn]>0).length>0&&(de=!0)}be=r(be)?be:0,Re=r(Re)?Re:0;const Ar=Math.max(1080,be),Ur=Math.max(30,Re);Le=r(Le)?Le:n,n=Math.max(Le,n),de||(t=void 0);const mn=E.length>1;return{codecSet:E.reduce((ln,on)=>{const Qr=D[on];if(on===ln)return ln;if(Qt=de?ur.filter(Dn=>Qr.videoRanges[Dn]>0):[],mn){if(Qr.minBitrate>n)return zi(on,`min bitrate of ${Qr.minBitrate} > current estimate of ${n}`),ln;if(!Qr.hasDefaultAudio)return zi(on,"no renditions with default or auto-select sound found"),ln;if(U&&on.indexOf(U.substring(0,4))%5!==0)return zi(on,`audio codec preference "${U}" not found`),ln;if(I&&!G){if(!Qr.channels[I])return zi(on,`no renditions with ${I} channel sound found (channels options: ${Object.keys(Qr.channels)})`),ln}else if((!U||G)&&ue&&Qr.channels[2]===0)return zi(on,"no renditions with stereo sound found"),ln;if(Qr.minHeight>Ar)return zi(on,`min resolution of ${Qr.minHeight} > maximum of ${Ar}`),ln;if(Qr.minFramerate>Ur)return zi(on,`min framerate of ${Qr.minFramerate} > maximum of ${Ur}`),ln;if(!Qt.some(Dn=>Qr.videoRanges[Dn]>0))return zi(on,`no variants with VIDEO-RANGE of ${Yi(Qt)} found`),ln;if(Q&&on.indexOf(Q.substring(0,4))%5!==0)return zi(on,`video codec preference "${Q}" not found`),ln;if(Qr.maxScore<it)return zi(on,`max score of ${Qr.maxScore} < selected max of ${it}`),ln}return ln&&(dt(on)>=dt(ln)||Qr.fragmentError>D[ln].fragmentError)?ln:(at=Qr.minIndex,it=Qr.maxScore,on)},void 0),videoRanges:Qt,preferHDR:ir,minFramerate:Re,minBitrate:Le,minIndex:at}}function zi(D,t){W.log(`[abr] start candidates with "${D}" ignored because ${t}`)}function Ca(D){return D.reduce((t,n)=>{let s=t.groups[n.groupId];s||(s=t.groups[n.groupId]={tracks:[],channels:{2:0},hasDefault:!1,hasAutoSelect:!1}),s.tracks.push(n);const _=n.channels||"2";return s.channels[_]=(s.channels[_]||0)+1,s.hasDefault=s.hasDefault||n.default,s.hasAutoSelect=s.hasAutoSelect||n.autoselect,s.hasDefault&&(t.hasDefaultAudio=!0),s.hasAutoSelect&&(t.hasAutoSelectAudio=!0),t},{hasDefaultAudio:!1,hasAutoSelectAudio:!1,groups:{}})}function xt(D,t,n,s){return D.slice(n,s+1).reduce((_,E,I)=>{if(!E.codecSet)return _;const U=E.audioGroups;let Q=_[E.codecSet];Q||(_[E.codecSet]=Q={minBitrate:1/0,minHeight:1/0,minFramerate:1/0,minIndex:I,maxScore:0,videoRanges:{SDR:0},channels:{2:0},hasDefaultAudio:!U,fragmentError:0}),Q.minBitrate=Math.min(Q.minBitrate,E.bitrate);const G=Math.min(E.height,E.width);return Q.minHeight=Math.min(Q.minHeight,G),Q.minFramerate=Math.min(Q.minFramerate,E.frameRate),Q.minIndex=Math.min(Q.minIndex,I),Q.maxScore=Math.max(Q.maxScore,E.score),Q.fragmentError+=E.fragmentError,Q.videoRanges[E.videoRange]=(Q.videoRanges[E.videoRange]||0)+1,U&&U.forEach(ue=>{if(!ue)return;const de=t.groups[ue];de&&(Q.hasDefaultAudio=Q.hasDefaultAudio||t.hasDefaultAudio?de.hasDefault:de.hasAutoSelect||!t.hasDefaultAudio&&!t.hasAutoSelectAudio,Object.keys(de.channels).forEach(be=>{Q.channels[be]=(Q.channels[be]||0)+de.channels[be]}))}),_},{})}function xa(D){if(!D)return D;const{lang:t,assocLang:n,characteristics:s,channels:_,audioCodec:E}=D;return{lang:t,assocLang:n,characteristics:s,channels:_,audioCodec:E}}function Zi(D,t,n){if("attrs"in D){const s=t.indexOf(D);if(s!==-1)return s}for(let s=0;s<t.length;s++){const _=t[s];if(_i(D,_,n))return s}return-1}function _i(D,t,n){const{groupId:s,name:_,lang:E,assocLang:I,default:U}=D,Q=D.forced;return(s===void 0||t.groupId===s)&&(_===void 0||t.name===_)&&(E===void 0||Da(E,t.lang))&&(E===void 0||t.assocLang===I)&&(U===void 0||t.default===U)&&(Q===void 0||t.forced===Q)&&(!("characteristics"in D)||Hi(D.characteristics||"",t.characteristics))&&(n===void 0||n(D,t))}function Da(D,t="--"){return D.length===t.length?D===t:D.startsWith(t)||t.startsWith(D)}function Hi(D,t=""){const n=D.split(","),s=t.split(",");return n.length===s.length&&!n.some(_=>s.indexOf(_)===-1)}function ei(D,t){const{audioCodec:n,channels:s}=D;return(n===void 0||(t.audioCodec||"").substring(0,4)===n.substring(0,4))&&(s===void 0||s===(t.channels||"2"))}function $n(D,t,n,s,_){const E=t[s],U=t.reduce((be,Re,Le)=>{const at=Re.uri;return(be[at]||(be[at]=[])).push(Le),be},{})[E.uri];U.length>1&&(s=Math.max.apply(Math,U));const Q=E.videoRange,G=E.frameRate,ue=E.codecSet.substring(0,4),de=Ee(t,s,be=>{if(be.videoRange!==Q||be.frameRate!==G||be.codecSet.substring(0,4)!==ue)return!1;const Re=be.audioGroups,Le=n.filter(at=>!Re||Re.indexOf(at.groupId)!==-1);return Zi(D,Le,_)>-1});return de>-1?de:Ee(t,s,be=>{const Re=be.audioGroups,Le=n.filter(at=>!Re||Re.indexOf(at.groupId)!==-1);return Zi(D,Le,_)>-1})}function Ee(D,t,n){for(let s=t;s>-1;s--)if(n(D[s]))return s;for(let s=t+1;s<D.length;s++)if(n(D[s]))return s;return-1}function nt(D,t){var n;return!!D&&D!==((n=t.loadLevelObj)==null?void 0:n.uri)}class qe extends R{constructor(t){super("abr",t.logger),this.hls=void 0,this.lastLevelLoadSec=0,this.lastLoadedFragLevel=-1,this.firstSelection=-1,this._nextAutoLevel=-1,this.nextAutoLevelKey="",this.audioTracksByGroup=null,this.codecTiers=null,this.timer=-1,this.fragCurrent=null,this.partCurrent=null,this.bitrateTestDelay=0,this.rebufferNotice=-1,this.supportedCache={},this.bwEstimator=void 0,this._abandonRulesCheck=n=>{var s;const{fragCurrent:_,partCurrent:E,hls:I}=this,{autoLevelEnabled:U,media:Q}=I;if(!_||!Q)return;const G=performance.now(),ue=E?E.stats:_.stats,de=E?E.duration:_.duration,be=G-ue.loading.start,Re=I.minAutoLevel,Le=_.level,at=this._nextAutoLevel;if(ue.aborted||ue.loaded&&ue.loaded===ue.total||Le<=Re){this.clearTimer(),this._nextAutoLevel=-1;return}if(!U)return;const it=at>-1&&at!==Le,Qt=!!n||it;if(!Qt&&(Q.paused||!Q.playbackRate||!Q.readyState))return;const ir=I.mainForwardBufferInfo;if(!Qt&&ir===null)return;const ur=this.bwEstimator.getEstimateTTFB(),Ar=Math.abs(Q.playbackRate);if(be<=Math.max(ur,1e3*(de/(Ar*2))))return;const Ur=ir?ir.len/Ar:0,mn=ue.loading.first?ue.loading.first-ue.loading.start:-1,zr=ue.loaded&&mn>-1,ln=this.getBwEstimate(),on=I.levels,Qr=on[Le],Dn=Math.max(ue.loaded,Math.round(de*(_.bitrate||Qr.averageBitrate)/8));let Ei=zr?be-mn:be;Ei<1&&zr&&(Ei=Math.min(be,ue.loaded*8/ln));const Ki=zr?ue.loaded*1e3/Ei:0,da=ur/1e3,Vi=Ki?(Dn-ue.loaded)/Ki:Dn*8/ln+da;if(Vi<=Ur)return;const fi=Ki?Ki*8:ln,qi=((s=(n==null?void 0:n.details)||this.hls.latestLevelDetails)==null?void 0:s.live)===!0,ki=this.hls.config.abrBandWidthUpFactor;let ua=Number.POSITIVE_INFINITY,Fa;for(Fa=Le-1;Fa>Re;Fa--){const bs=on[Fa].maxBitrate,Ss=!on[Fa].details||qi;if(ua=this.getTimeToLoadFrag(da,fi,de*bs,Ss),ua<Math.min(Ur,de+da))break}if(ua>=Vi||ua>de*10)return;zr?this.bwEstimator.sample(be-Math.min(ur,mn),ue.loaded):this.bwEstimator.sampleTTFB(be);const bi=on[Fa].maxBitrate;this.getBwEstimate()*ki>bi&&this.resetEstimator(bi);const xi=this.findBestLevel(bi,Re,Fa,0,Ur,1,1);xi>-1&&(Fa=xi),this.warn(`Fragment ${_.sn}${E?" part "+E.index:""} of level ${Le} is loading too slowly;
Fragment duration: ${_.duration.toFixed(3)}
Time to underbuffer: ${Ur.toFixed(3)} s
Estimated load time for current fragment: ${Vi.toFixed(3)} s
Estimated load time for down switch fragment: ${ua.toFixed(3)} s
TTFB estimate: ${mn|0} ms
Current BW estimate: ${r(ln)?ln|0:"Unknown"} bps
New BW estimate: ${this.getBwEstimate()|0} bps
Switching to level ${Fa} @ ${bi|0} bps`),I.nextLoadLevel=I.nextAutoLevel=Fa,this.clearTimer();const ys=()=>{if(this.clearTimer(),this.fragCurrent===_&&this.hls.loadLevel===Fa&&Fa>0){const bs=this.getStarvationDelay();if(this.warn(`Aborting inflight request ${Fa>0?"and switching down":""}
Fragment duration: ${_.duration.toFixed(3)} s
Time to underbuffer: ${bs.toFixed(3)} s`),_.abortRequests(),this.fragCurrent=this.partCurrent=null,Fa>Re){let Ss=this.findBestLevel(this.hls.levels[Re].bitrate,Re,Fa,0,bs,1,1);Ss===-1&&(Ss=Re),this.hls.nextLoadLevel=this.hls.nextAutoLevel=Ss,this.resetEstimator(this.hls.levels[Ss].bitrate)}}};it||Vi>ua*2?ys():this.timer=self.setInterval(ys,ua*1e3),I.trigger(o.FRAG_LOAD_EMERGENCY_ABORTED,{frag:_,part:E,stats:ue})},this.hls=t,this.bwEstimator=this.initEstimator(),this.registerListeners()}resetEstimator(t){t&&(this.log(`setting initial bwe to ${t}`),this.hls.config.abrEwmaDefaultEstimate=t),this.firstSelection=-1,this.bwEstimator=this.initEstimator()}initEstimator(){const t=this.hls.config;return new x(t.abrEwmaSlowVoD,t.abrEwmaFastVoD,t.abrEwmaDefaultEstimate)}registerListeners(){const{hls:t}=this;t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.FRAG_LOADING,this.onFragLoading,this),t.on(o.FRAG_LOADED,this.onFragLoaded,this),t.on(o.FRAG_BUFFERED,this.onFragBuffered,this),t.on(o.LEVEL_SWITCHING,this.onLevelSwitching,this),t.on(o.LEVEL_LOADED,this.onLevelLoaded,this),t.on(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.on(o.MAX_AUTO_LEVEL_UPDATED,this.onMaxAutoLevelUpdated,this),t.on(o.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t&&(t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.FRAG_LOADING,this.onFragLoading,this),t.off(o.FRAG_LOADED,this.onFragLoaded,this),t.off(o.FRAG_BUFFERED,this.onFragBuffered,this),t.off(o.LEVEL_SWITCHING,this.onLevelSwitching,this),t.off(o.LEVEL_LOADED,this.onLevelLoaded,this),t.off(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.off(o.MAX_AUTO_LEVEL_UPDATED,this.onMaxAutoLevelUpdated,this),t.off(o.ERROR,this.onError,this))}destroy(){this.unregisterListeners(),this.clearTimer(),this.hls=this._abandonRulesCheck=this.supportedCache=null,this.fragCurrent=this.partCurrent=null}onManifestLoading(t,n){this.lastLoadedFragLevel=-1,this.firstSelection=-1,this.lastLevelLoadSec=0,this.supportedCache={},this.fragCurrent=this.partCurrent=null,this.onLevelsUpdated(),this.clearTimer()}onLevelsUpdated(){this.lastLoadedFragLevel>-1&&this.fragCurrent&&(this.lastLoadedFragLevel=this.fragCurrent.level),this._nextAutoLevel=-1,this.onMaxAutoLevelUpdated(),this.codecTiers=null,this.audioTracksByGroup=null}onMaxAutoLevelUpdated(){this.firstSelection=-1,this.nextAutoLevelKey=""}onFragLoading(t,n){const s=n.frag;if(!this.ignoreFragment(s)){if(!s.bitrateTest){var _;this.fragCurrent=s,this.partCurrent=(_=n.part)!=null?_:null}this.clearTimer(),this.timer=self.setInterval(this._abandonRulesCheck,100)}}onLevelSwitching(t,n){this.clearTimer()}onError(t,n){if(!n.fatal)switch(n.details){case f.BUFFER_ADD_CODEC_ERROR:case f.BUFFER_APPEND_ERROR:this.lastLoadedFragLevel=-1,this.firstSelection=-1;break;case f.FRAG_LOAD_TIMEOUT:{const s=n.frag,{fragCurrent:_,partCurrent:E}=this;if(s&&_&&s.sn===_.sn&&s.level===_.level){const I=performance.now(),U=E?E.stats:s.stats,Q=I-U.loading.start,G=U.loading.first?U.loading.first-U.loading.start:-1;if(U.loaded&&G>-1){const de=this.bwEstimator.getEstimateTTFB();this.bwEstimator.sample(Q-Math.min(de,G),U.loaded)}else this.bwEstimator.sampleTTFB(Q)}break}}}getTimeToLoadFrag(t,n,s,_){const E=t+s/n,I=_?t+this.lastLevelLoadSec:0;return E+I}onLevelLoaded(t,n){const s=this.hls.config,{loading:_}=n.stats,E=_.end-_.first;r(E)&&(this.lastLevelLoadSec=E/1e3),n.details.live?this.bwEstimator.update(s.abrEwmaSlowLive,s.abrEwmaFastLive):this.bwEstimator.update(s.abrEwmaSlowVoD,s.abrEwmaFastVoD),this.timer>-1&&this._abandonRulesCheck(n.levelInfo)}onFragLoaded(t,{frag:n,part:s}){const _=s?s.stats:n.stats;if(n.type===u.MAIN&&this.bwEstimator.sampleTTFB(_.loading.first-_.loading.start),!this.ignoreFragment(n)){if(this.clearTimer(),n.level===this._nextAutoLevel&&(this._nextAutoLevel=-1),this.firstSelection=-1,this.hls.config.abrMaxWithRealBitrate){const E=s?s.duration:n.duration,I=this.hls.levels[n.level],U=(I.loaded?I.loaded.bytes:0)+_.loaded,Q=(I.loaded?I.loaded.duration:0)+E;I.loaded={bytes:U,duration:Q},I.realBitrate=Math.round(8*U/Q)}if(n.bitrateTest){const E={stats:_,frag:n,part:s,id:n.type};this.onFragBuffered(o.FRAG_BUFFERED,E),n.bitrateTest=!1}else this.lastLoadedFragLevel=n.level}}onFragBuffered(t,n){const{frag:s,part:_}=n,E=_!=null&&_.stats.loaded?_.stats:s.stats;if(E.aborted||this.ignoreFragment(s))return;const I=E.parsing.end-E.loading.start-Math.min(E.loading.first-E.loading.start,this.bwEstimator.getEstimateTTFB());this.bwEstimator.sample(I,E.loaded),E.bwEstimate=this.getBwEstimate(),s.bitrateTest?this.bitrateTestDelay=I/1e3:this.bitrateTestDelay=0}ignoreFragment(t){return t.type!==u.MAIN||t.sn==="initSegment"}clearTimer(){this.timer>-1&&(self.clearInterval(this.timer),this.timer=-1)}get firstAutoLevel(){const{maxAutoLevel:t,minAutoLevel:n}=this.hls,s=this.getBwEstimate(),_=this.hls.config.maxStarvationDelay,E=this.findBestLevel(s,n,t,0,_,1,1);if(E>-1)return E;const I=this.hls.firstLevel,U=Math.min(Math.max(I,n),t);return this.warn(`Could not find best starting auto level. Defaulting to first in playlist ${I} clamped to ${U}`),U}get forcedAutoLevel(){return this.nextAutoLevelKey?-1:this._nextAutoLevel}get nextAutoLevel(){const t=this.forcedAutoLevel,s=this.bwEstimator.canEstimate(),_=this.lastLoadedFragLevel>-1;if(t!==-1&&(!s||!_||this.nextAutoLevelKey===this.getAutoLevelKey()))return t;const E=s&&_?this.getNextABRAutoLevel():this.firstAutoLevel;if(t!==-1){const I=this.hls.levels;if(I.length>Math.max(t,E)&&I[t].loadError<=I[E].loadError)return t}return this._nextAutoLevel=E,this.nextAutoLevelKey=this.getAutoLevelKey(),E}getAutoLevelKey(){return`${this.getBwEstimate()}_${this.getStarvationDelay().toFixed(2)}`}getNextABRAutoLevel(){const{fragCurrent:t,partCurrent:n,hls:s}=this;if(s.levels.length<=1)return s.loadLevel;const{maxAutoLevel:_,config:E,minAutoLevel:I}=s,U=n?n.duration:t?t.duration:0,Q=this.getBwEstimate(),G=this.getStarvationDelay();let ue=E.abrBandWidthFactor,de=E.abrBandWidthUpFactor;if(G){const it=this.findBestLevel(Q,I,_,G,0,ue,de);if(it>=0)return this.rebufferNotice=-1,it}let be=U?Math.min(U,E.maxStarvationDelay):E.maxStarvationDelay;if(!G){const it=this.bitrateTestDelay;it&&(be=(U?Math.min(U,E.maxLoadingDelay):E.maxLoadingDelay)-it,this.info(`bitrate test took ${Math.round(1e3*it)}ms, set first fragment max fetchDuration to ${Math.round(1e3*be)} ms`),ue=de=1)}const Re=this.findBestLevel(Q,I,_,G,be,ue,de);if(this.rebufferNotice!==Re&&(this.rebufferNotice=Re,this.info(`${G?"rebuffering expected":"buffer is empty"}, optimal quality level ${Re}`)),Re>-1)return Re;const Le=s.levels[I],at=s.loadLevelObj;return at&&(Le==null?void 0:Le.bitrate)<at.bitrate?I:s.loadLevel}getStarvationDelay(){const t=this.hls,n=t.media;if(!n)return 1/0;const s=n&&n.playbackRate!==0?Math.abs(n.playbackRate):1,_=t.mainForwardBufferInfo;return(_?_.len:0)/s}getBwEstimate(){return this.bwEstimator.canEstimate()?this.bwEstimator.getEstimate():this.hls.config.abrEwmaDefaultEstimate}findBestLevel(t,n,s,_,E,I,U){var Q;const G=_+E,ue=this.lastLoadedFragLevel,de=ue===-1?this.hls.firstLevel:ue,{fragCurrent:be,partCurrent:Re}=this,{levels:Le,allAudioTracks:at,loadLevel:it,config:Qt}=this.hls;if(Le.length===1)return 0;const ir=Le[de],ur=!!((Q=this.hls.latestLevelDetails)!=null&&Q.live),Ar=it===-1||ue===-1;let Ur,mn="SDR",zr=(ir==null?void 0:ir.frameRate)||0;const{audioPreference:ln,videoPreference:on}=Qt,Qr=this.audioTracksByGroup||(this.audioTracksByGroup=Ca(at));let Dn=-1;if(Ar){if(this.firstSelection!==-1)return this.firstSelection;const fi=this.codecTiers||(this.codecTiers=xt(Le,Qr,n,s)),qi=mi(fi,mn,t,ln,on),{codecSet:ki,videoRanges:ua,minFramerate:Fa,minBitrate:bi,minIndex:xi,preferHDR:ys}=qi;Dn=xi,Ur=ki,mn=ys?ua[ua.length-1]:ua[0],zr=Fa,t=Math.max(t,bi),this.log(`picked start tier ${Yi(qi)}`)}else Ur=ir==null?void 0:ir.codecSet,mn=ir==null?void 0:ir.videoRange;const Ei=Re?Re.duration:be?be.duration:0,Ki=this.bwEstimator.getEstimateTTFB()/1e3,da=[];for(let fi=s;fi>=n;fi--){var Vi;const qi=Le[fi],ki=fi>de;if(!qi)continue;if(Qt.useMediaCapabilities&&!qi.supportedResult&&!qi.supportedPromise){const Ss=navigator.mediaCapabilities;typeof(Ss==null?void 0:Ss.decodingInfo)=="function"&&Jt(qi,Qr,mn,zr,t,ln)?(qi.supportedPromise=br(qi,Qr,Ss,this.supportedCache),qi.supportedPromise.then(Ks=>{if(!this.hls)return;qi.supportedResult=Ks;const pu=this.hls.levels,ma=pu.indexOf(qi);Ks.error?this.warn(`MediaCapabilities decodingInfo error: "${Ks.error}" for level ${ma} ${Yi(Ks)}`):Ks.supported?Ks.decodingInfoResults.some(nc=>nc.smooth===!1||nc.powerEfficient===!1)&&this.log(`MediaCapabilities decodingInfo for level ${ma} not smooth or powerEfficient: ${Yi(Ks)}`):(this.warn(`Unsupported MediaCapabilities decodingInfo result for level ${ma} ${Yi(Ks)}`),ma>-1&&pu.length>1&&(this.log(`Removing unsupported level ${ma}`),this.hls.removeLevel(ma),this.hls.loadLevel===-1&&(this.hls.nextLoadLevel=0)))}).catch(Ks=>{this.warn(`Error handling MediaCapabilities decodingInfo: ${Ks}`)})):qi.supportedResult=Kt}if((Ur&&qi.codecSet!==Ur||mn&&qi.videoRange!==mn||ki&&zr>qi.frameRate||!ki&&zr>0&&zr<qi.frameRate||(Vi=qi.supportedResult)!=null&&(Vi=Vi.decodingInfoResults)!=null&&Vi.some(Ss=>Ss.smooth===!1))&&(!Ar||fi!==Dn)){da.push(fi);continue}const ua=qi.details,Fa=(Re?ua==null?void 0:ua.partTarget:ua==null?void 0:ua.averagetargetduration)||Ei;let bi;ki?bi=U*t:bi=I*t;const xi=Ei&&_>=Ei*2&&E===0?qi.averageBitrate:qi.maxBitrate,ys=this.getTimeToLoadFrag(Ki,bi,xi*Fa,ua===void 0);if(bi>=xi&&(fi===ue||qi.loadError===0&&qi.fragmentError===0)&&(ys<=Ki||!r(ys)||ur&&!this.bitrateTestDelay||ys<G)){const Ss=this.forcedAutoLevel;return fi!==it&&(Ss===-1||Ss!==it)&&(da.length&&this.trace(`Skipped level(s) ${da.join(",")} of ${s} max with CODECS and VIDEO-RANGE:"${Le[da[0]].codecs}" ${Le[da[0]].videoRange}; not compatible with "${Ur}" ${mn}`),this.info(`switch candidate:${de}->${fi} adjustedbw(${Math.round(bi)})-bitrate=${Math.round(bi-xi)} ttfb:${Ki.toFixed(1)} avgDuration:${Fa.toFixed(1)} maxFetchDuration:${G.toFixed(1)} fetchDuration:${ys.toFixed(1)} firstSelection:${Ar} codecSet:${qi.codecSet} videoRange:${qi.videoRange} hls.loadLevel:${it}`)),Ar&&(this.firstSelection=fi),fi}}return-1}set nextAutoLevel(t){const n=this.deriveNextAutoLevel(t);this._nextAutoLevel!==n&&(this.nextAutoLevelKey="",this._nextAutoLevel=n)}deriveNextAutoLevel(t){const{maxAutoLevel:n,minAutoLevel:s}=this.hls;return Math.min(Math.max(t,s),n)}}const Tt={search:function(D,t){let n=0,s=D.length-1,_=null,E=null;for(;n<=s;){_=(n+s)/2|0,E=D[_];const I=t(E);if(I>0)n=_+1;else if(I<0)s=_-1;else return E}return null}};function lt(D,t,n){if(t===null||!Array.isArray(D)||!D.length||!r(t))return null;const s=D[0].programDateTime;if(t<(s||0))return null;const _=D[D.length-1].endProgramDateTime;if(t>=(_||0))return null;for(let E=0;E<D.length;++E){const I=D[E];if($r(t,n,I))return I}return null}function hr(D,t,n=0,s=0,_=.005){let E=null;if(D){E=t[1+D.sn-t[0].sn]||null;const U=D.endDTS-n;U>0&&U<15e-7&&(n+=15e-7),E&&D.level!==E.level&&E.end<=D.end&&(E=t[2+D.sn-t[0].sn]||null)}else n===0&&t[0].start===0&&(E=t[0]);if(E&&((!D||D.level===E.level)&&Cr(n,s,E)===0||pr(E,D,Math.min(_,s))))return E;const I=Tt.search(t,Cr.bind(null,n,s));return I&&(I!==D||!E)?I:E}function pr(D,t,n){if(t&&t.start===0&&t.level<D.level&&(t.endPTS||0)>0){const s=t.tagList.reduce((_,E)=>(E[0]==="INF"&&(_+=parseFloat(E[1])),_),n);return D.start<=s}return!1}function Cr(D=0,t=0,n){if(n.start<=D&&n.start+n.duration>D)return 0;const s=Math.min(t,n.duration+(n.deltaPTS?n.deltaPTS:0));return n.start+n.duration-s<=D?1:n.start-s>D&&n.start?-1:0}function $r(D,t,n){const s=Math.min(t,n.duration+(n.deltaPTS?n.deltaPTS:0))*1e3;return(n.endProgramDateTime||0)-s>D}function en(D,t,n){if(D&&D.startCC<=t&&D.endCC>=t){let s=D.fragments;const{fragmentHint:_}=D;_&&(s=s.concat(_));let E;return Tt.search(s,I=>I.cc<t?1:I.cc>t?-1:(E=I,I.end<=n?1:I.start>n?-1:0)),E||null}return null}function Nr(D){switch(D.details){case f.FRAG_LOAD_TIMEOUT:case f.KEY_LOAD_TIMEOUT:case f.LEVEL_LOAD_TIMEOUT:case f.MANIFEST_LOAD_TIMEOUT:return!0}return!1}function An(D){return D.details.startsWith("key")}function _r(D){return An(D)&&!!D.frag&&!D.frag.decryptdata}function Fn(D,t){const n=Nr(t);return D.default[`${n?"timeout":"error"}Retry`]}function Qn(D,t){const n=D.backoff==="linear"?1:Math.pow(2,t);return Math.min(n*D.retryDelayMs,D.maxRetryDelayMs)}function Ke(D){return b(b({},D),{errorRetry:null,timeoutRetry:null})}function ct(D,t,n,s){if(!D)return!1;const _=s==null?void 0:s.code,E=t<D.maxNumRetry&&(ge(_)||!!n);return D.shouldRetry?D.shouldRetry(D,t,n,s,E):E}function ge(D){return sr(D)||!!D&&(D<400||D>499)}function sr(D){return D===0&&navigator.onLine===!1}var nr={DoNothing:0,SendEndCallback:1,SendAlternateToPenaltyBox:2,RemoveAlternatePermanently:3,InsertDiscontinuity:4,RetryRequest:5},kr={None:0,MoveAllAlternatesMatchingHost:1,MoveAllAlternatesMatchingHDCP:2,MoveAllAlternatesMatchingKey:4,SwitchToSDR:8};class Hr extends R{constructor(t){super("error-controller",t.logger),this.hls=void 0,this.playlistError=0,this.hls=t,this.registerListeners()}registerListeners(){const t=this.hls;t.on(o.ERROR,this.onError,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.LEVEL_UPDATED,this.onLevelUpdated,this)}unregisterListeners(){const t=this.hls;t&&(t.off(o.ERROR,this.onError,this),t.off(o.ERROR,this.onErrorOut,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.LEVEL_UPDATED,this.onLevelUpdated,this))}destroy(){this.unregisterListeners(),this.hls=null}startLoad(t){}stopLoad(){this.playlistError=0}getVariantLevelIndex(t){return(t==null?void 0:t.type)===u.MAIN?t.level:this.getVariantIndex()}getVariantIndex(){var t;const n=this.hls,s=n.currentLevel;return(t=n.loadLevelObj)!=null&&t.details||s===-1?n.loadLevel:s}variantHasKey(t,n){if(t){var s;if((s=t.details)!=null&&s.hasKey(n))return!0;const _=t.audioGroups;if(_)return this.hls.allAudioTracks.filter(I=>_.indexOf(I.groupId)>=0).some(I=>{var U;return(U=I.details)==null?void 0:U.hasKey(n)})}return!1}onManifestLoading(){this.playlistError=0}onLevelUpdated(){this.playlistError=0}onError(t,n){var s;if(n.fatal)return;const _=this.hls,E=n.context;switch(n.details){case f.FRAG_LOAD_ERROR:case f.FRAG_LOAD_TIMEOUT:case f.KEY_LOAD_ERROR:case f.KEY_LOAD_TIMEOUT:n.errorAction=this.getFragRetryOrSwitchAction(n);return;case f.FRAG_PARSING_ERROR:if((s=n.frag)!=null&&s.gap){n.errorAction=Zr();return}case f.FRAG_GAP:case f.FRAG_DECRYPT_ERROR:{n.errorAction=this.getFragRetryOrSwitchAction(n),n.errorAction.action=nr.SendAlternateToPenaltyBox;return}case f.LEVEL_EMPTY_ERROR:case f.LEVEL_PARSING_ERROR:{var I;const Q=n.parent===u.MAIN?n.level:_.loadLevel;n.details===f.LEVEL_EMPTY_ERROR&&((I=n.context)!=null&&(I=I.levelDetails)!=null&&I.live)?n.errorAction=this.getPlaylistRetryOrSwitchAction(n,Q):(n.levelRetry=!1,n.errorAction=this.getLevelSwitchAction(n,Q))}return;case f.LEVEL_LOAD_ERROR:case f.LEVEL_LOAD_TIMEOUT:typeof(E==null?void 0:E.level)=="number"&&(n.errorAction=this.getPlaylistRetryOrSwitchAction(n,E.level));return;case f.AUDIO_TRACK_LOAD_ERROR:case f.AUDIO_TRACK_LOAD_TIMEOUT:case f.SUBTITLE_LOAD_ERROR:case f.SUBTITLE_TRACK_LOAD_TIMEOUT:if(E){const Q=_.loadLevelObj;if(Q&&(E.type===h.AUDIO_TRACK&&Q.hasAudioGroup(E.groupId)||E.type===h.SUBTITLE_TRACK&&Q.hasSubtitleGroup(E.groupId))){n.errorAction=this.getPlaylistRetryOrSwitchAction(n,_.loadLevel),n.errorAction.action=nr.SendAlternateToPenaltyBox,n.errorAction.flags=kr.MoveAllAlternatesMatchingHost;return}}return;case f.KEY_SYSTEM_STATUS_OUTPUT_RESTRICTED:n.errorAction={action:nr.SendAlternateToPenaltyBox,flags:kr.MoveAllAlternatesMatchingHDCP};return;case f.KEY_SYSTEM_SESSION_UPDATE_FAILED:case f.KEY_SYSTEM_STATUS_INTERNAL_ERROR:case f.KEY_SYSTEM_NO_SESSION:n.errorAction={action:nr.SendAlternateToPenaltyBox,flags:kr.MoveAllAlternatesMatchingKey};return;case f.BUFFER_ADD_CODEC_ERROR:case f.REMUX_ALLOC_ERROR:case f.BUFFER_APPEND_ERROR:if(!n.errorAction){var U;n.errorAction=this.getLevelSwitchAction(n,(U=n.level)!=null?U:_.loadLevel)}return;case f.INTERNAL_EXCEPTION:case f.BUFFER_APPENDING_ERROR:case f.BUFFER_FULL_ERROR:case f.LEVEL_SWITCH_ERROR:case f.BUFFER_STALLED_ERROR:case f.BUFFER_SEEK_OVER_HOLE:case f.BUFFER_NUDGE_ON_STALL:n.errorAction=Zr();return}n.type===c.KEY_SYSTEM_ERROR&&(n.levelRetry=!1,n.errorAction=Zr())}getPlaylistRetryOrSwitchAction(t,n){const s=this.hls,_=Fn(s.config.playlistLoadPolicy,t),E=this.playlistError++;if(ct(_,E,Nr(t),t.response))return{action:nr.RetryRequest,flags:kr.None,retryConfig:_,retryCount:E};const U=this.getLevelSwitchAction(t,n);return _&&(U.retryConfig=_,U.retryCount=E),U}getFragRetryOrSwitchAction(t){const n=this.hls,s=this.getVariantLevelIndex(t.frag),_=n.levels[s],{fragLoadPolicy:E,keyLoadPolicy:I}=n.config,U=Fn(An(t)?I:E,t),Q=n.levels.reduce((ue,de)=>ue+de.fragmentError,0);if(_&&(t.details!==f.FRAG_GAP&&_.fragmentError++,!_r(t)&&ct(U,Q,Nr(t),t.response)))return{action:nr.RetryRequest,flags:kr.None,retryConfig:U,retryCount:Q};const G=this.getLevelSwitchAction(t,s);return U&&(G.retryConfig=U,G.retryCount=Q),G}getLevelSwitchAction(t,n){const s=this.hls;n==null&&(n=s.loadLevel);const _=this.hls.levels[n];if(_){var E,I;const G=t.details;_.loadError++,G===f.BUFFER_APPEND_ERROR&&_.fragmentError++;let ue=-1;const{levels:de,loadLevel:be,minAutoLevel:Re,maxAutoLevel:Le}=s;!s.autoLevelEnabled&&!s.config.preserveManualLevelOnError&&(s.loadLevel=-1);const at=(E=t.frag)==null?void 0:E.type,Qt=(at===u.AUDIO&&G===f.FRAG_PARSING_ERROR||t.sourceBufferName==="audio"&&(G===f.BUFFER_ADD_CODEC_ERROR||G===f.BUFFER_APPEND_ERROR))&&de.some(({audioCodec:mn})=>_.audioCodec!==mn),ur=t.sourceBufferName==="video"&&(G===f.BUFFER_ADD_CODEC_ERROR||G===f.BUFFER_APPEND_ERROR)&&de.some(({codecSet:mn,audioCodec:zr})=>_.codecSet!==mn&&_.audioCodec===zr),{type:Ar,groupId:Ur}=(I=t.context)!=null?I:{};for(let mn=de.length;mn--;){const zr=(mn+be)%de.length;if(zr!==be&&zr>=Re&&zr<=Le&&de[zr].loadError===0){var U,Q;const ln=de[zr];if(G===f.FRAG_GAP&&at===u.MAIN&&t.frag){const on=de[zr].details;if(on){const Qr=hr(t.frag,on.fragments,t.frag.start);if(Qr!=null&&Qr.gap)continue}}else{if(Ar===h.AUDIO_TRACK&&ln.hasAudioGroup(Ur)||Ar===h.SUBTITLE_TRACK&&ln.hasSubtitleGroup(Ur))continue;if(at===u.AUDIO&&(U=_.audioGroups)!=null&&U.some(on=>ln.hasAudioGroup(on))||at===u.SUBTITLE&&(Q=_.subtitleGroups)!=null&&Q.some(on=>ln.hasSubtitleGroup(on))||Qt&&_.audioCodec===ln.audioCodec||ur&&_.codecSet===ln.codecSet||!Qt&&_.codecSet!==ln.codecSet)continue}ue=zr;break}}if(ue>-1&&s.loadLevel!==ue)return t.levelRetry=!0,this.playlistError=0,{action:nr.SendAlternateToPenaltyBox,flags:kr.None,nextAutoLevel:ue}}return{action:nr.SendAlternateToPenaltyBox,flags:kr.MoveAllAlternatesMatchingHost}}onErrorOut(t,n){var s;switch((s=n.errorAction)==null?void 0:s.action){case nr.DoNothing:break;case nr.SendAlternateToPenaltyBox:this.sendAlternateToPenaltyBox(n),!n.errorAction.resolved&&n.details!==f.FRAG_GAP?n.fatal=!0:/MediaSource readyState: ended/.test(n.error.message)&&(this.warn(`MediaSource ended after "${n.sourceBufferName}" sourceBuffer append error. Attempting to recover from media error.`),this.hls.recoverMediaError());break;case nr.RetryRequest:break}if(n.fatal){this.hls.stopLoad();return}}sendAlternateToPenaltyBox(t){const n=this.hls,s=t.errorAction;if(!s)return;const{flags:_}=s,E=s.nextAutoLevel;switch(_){case kr.None:this.switchLevel(t,E);break;case kr.MoveAllAlternatesMatchingHDCP:{const Q=this.getVariantLevelIndex(t.frag),G=n.levels[Q],ue=G==null?void 0:G.attrs["HDCP-LEVEL"];if(s.hdcpLevel=ue,ue==="NONE")this.warn("HDCP policy resticted output with HDCP-LEVEL=NONE");else if(ue){n.maxHdcpLevel=St[St.indexOf(ue)-1],s.resolved=!0,this.warn(`Restricting playback to HDCP-LEVEL of "${n.maxHdcpLevel}" or lower`);break}}case kr.MoveAllAlternatesMatchingKey:{const Q=t.decryptdata;if(Q){const G=this.hls.levels,ue=G.length;for(let be=ue;be--;)if(this.variantHasKey(G[be],Q)){var I,U;this.log(`Banned key found in level ${be} (${G[be].bitrate}bps) or audio group "${(I=G[be].audioGroups)==null?void 0:I.join(",")}" (${(U=t.frag)==null?void 0:U.type} fragment) ${X(Q.keyId||[])}`),G[be].fragmentError++,G[be].loadError++,this.log(`Removing level ${be} with key error (${t.error})`),this.hls.removeLevel(be)}const de=t.frag;if(this.hls.levels.length<ue)s.resolved=!0;else if(de&&de.type!==u.MAIN){const be=de.decryptdata;be&&!Q.matches(be)&&(s.resolved=!0)}}break}}s.resolved||this.switchLevel(t,E)}switchLevel(t,n){if(n!==void 0&&t.errorAction&&(this.warn(`switching to level ${n} after ${t.details}`),this.hls.nextAutoLevel=n,t.errorAction.resolved=!0,this.hls.nextLoadLevel=this.hls.nextAutoLevel,t.details===f.BUFFER_ADD_CODEC_ERROR&&t.mimeType&&t.sourceBufferName!=="audiovideo")){const s=Er(t.mimeType),_=this.hls.levels;for(let E=_.length;E--;)_[E][`${t.sourceBufferName}Codec`]===s&&(this.log(`Removing level ${E} for ${t.details} ("${s}" not supported)`),this.hls.removeLevel(E))}}}function Zr(D){const t={action:nr.DoNothing,flags:kr.None};return D&&(t.resolved=!0),t}var hn={NOT_LOADED:"NOT_LOADED",APPENDING:"APPENDING",PARTIAL:"PARTIAL",OK:"OK"};class Si{constructor(t){this.activePartLists=Object.create(null),this.endListFragments=Object.create(null),this.fragments=Object.create(null),this.timeRanges=Object.create(null),this.bufferPadding=.2,this.hls=void 0,this.hasGaps=!1,this.hls=t,this._registerListeners()}_registerListeners(){const{hls:t}=this;t&&(t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.BUFFER_APPENDED,this.onBufferAppended,this),t.on(o.FRAG_BUFFERED,this.onFragBuffered,this),t.on(o.FRAG_LOADED,this.onFragLoaded,this))}_unregisterListeners(){const{hls:t}=this;t&&(t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.BUFFER_APPENDED,this.onBufferAppended,this),t.off(o.FRAG_BUFFERED,this.onFragBuffered,this),t.off(o.FRAG_LOADED,this.onFragLoaded,this))}destroy(){this._unregisterListeners(),this.hls=this.fragments=this.activePartLists=this.endListFragments=this.timeRanges=null}getAppendedFrag(t,n){const s=this.activePartLists[n];if(s)for(let _=s.length;_--;){const E=s[_];if(!E)break;if(E.start<=t&&t<=E.end&&E.loaded)return E}return this.getBufferedFrag(t,n)}getBufferedFrag(t,n){return this.getFragAtPos(t,n,!0)}getFragAtPos(t,n,s){const{fragments:_}=this,E=Object.keys(_);for(let I=E.length;I--;){const U=_[E[I]];if((U==null?void 0:U.body.type)===n&&(!s||U.buffered)){const Q=U.body;if(Q.start<=t&&t<=Q.end)return Q}}return null}detectEvictedFragments(t,n,s,_,E){this.timeRanges&&(this.timeRanges[t]=n);const I=(_==null?void 0:_.fragment.sn)||-1;Object.keys(this.fragments).forEach(U=>{const Q=this.fragments[U];if(!Q||I>=Q.body.sn)return;if(!Q.buffered&&(!Q.loaded||E)){Q.body.type===s&&this.removeFragment(Q.body);return}const G=Q.range[t];if(G){if(G.time.length===0){this.removeFragment(Q.body);return}G.time.some(ue=>{const de=!this.isTimeBuffered(ue.startPTS,ue.endPTS,n);return de&&this.removeFragment(Q.body),de})}})}detectPartialFragments(t){const n=this.timeRanges;if(!n||t.frag.sn==="initSegment")return;const s=t.frag,_=yn(s),E=this.fragments[_];if(!E||E.buffered&&s.gap)return;const I=!s.relurl;Object.keys(n).forEach(U=>{const Q=s.elementaryStreams[U];if(!Q)return;const G=n[U],ue=I||Q.partial===!0;E.range[U]=this.getBufferedTimes(s,t.part,ue,G)}),E.loaded=null,Object.keys(E.range).length?(E.buffered=!0,(E.body.endList=s.endList||E.body.endList)&&(this.endListFragments[E.body.type]=E),un(E)||this.removeParts(s.sn-1,s.type)):this.removeFragment(E.body)}removeParts(t,n){const s=this.activePartLists[n];s&&(this.activePartLists[n]=Gr(s,_=>_.fragment.sn>=t))}fragBuffered(t,n){const s=yn(t);let _=this.fragments[s];!_&&n&&(_=this.fragments[s]={body:t,appendedPTS:null,loaded:null,buffered:!1,range:Object.create(null)},t.gap&&(this.hasGaps=!0)),_&&(_.loaded=null,_.buffered=!0)}getBufferedTimes(t,n,s,_){const E={time:[],partial:s},I=t.start,U=t.end,Q=t.minEndPTS||U,G=t.maxStartPTS||I;for(let ue=0;ue<_.length;ue++){const de=_.start(ue)-this.bufferPadding,be=_.end(ue)+this.bufferPadding;if(G>=de&&Q<=be){E.time.push({startPTS:Math.max(I,_.start(ue)),endPTS:Math.min(U,_.end(ue))});break}else if(I<be&&U>de){const Re=Math.max(I,_.start(ue)),Le=Math.min(U,_.end(ue));Le>Re&&(E.partial=!0,E.time.push({startPTS:Re,endPTS:Le}))}else if(U<=de)break}return E}getPartialFragment(t){let n=null,s,_,E,I=0;const{bufferPadding:U,fragments:Q}=this;return Object.keys(Q).forEach(G=>{const ue=Q[G];ue&&un(ue)&&(_=ue.body.start-U,E=ue.body.end+U,t>=_&&t<=E&&(s=Math.min(t-_,E-t),I<=s&&(n=ue.body,I=s)))}),n}isEndListAppended(t){const n=this.endListFragments[t];return n!==void 0&&(n.buffered||un(n))}getState(t){const n=yn(t),s=this.fragments[n];return s?s.buffered?un(s)?hn.PARTIAL:hn.OK:hn.APPENDING:hn.NOT_LOADED}isTimeBuffered(t,n,s){let _,E;for(let I=0;I<s.length;I++){if(_=s.start(I)-this.bufferPadding,E=s.end(I)+this.bufferPadding,t>=_&&n<=E)return!0;if(n<=_)return!1}return!1}onManifestLoading(){this.removeAllFragments()}onFragLoaded(t,n){if(n.frag.sn==="initSegment"||n.frag.bitrateTest)return;const s=n.frag,_=n.part?null:n,E=yn(s);this.fragments[E]={body:s,appendedPTS:null,loaded:_,buffered:!1,range:Object.create(null)}}onBufferAppended(t,n){const{frag:s,part:_,timeRanges:E,type:I}=n;if(s.sn==="initSegment")return;const U=s.type;if(_){let G=this.activePartLists[U];G||(this.activePartLists[U]=G=[]),G.push(_)}this.timeRanges=E;const Q=E[I];this.detectEvictedFragments(I,Q,U,_)}onFragBuffered(t,n){this.detectPartialFragments(n)}hasFragment(t){const n=yn(t);return!!this.fragments[n]}hasFragments(t){const{fragments:n}=this,s=Object.keys(n);if(!t)return s.length>0;for(let _=s.length;_--;){const E=n[s[_]];if((E==null?void 0:E.body.type)===t)return!0}return!1}hasParts(t){var n;return!!((n=this.activePartLists[t])!=null&&n.length)}removeFragmentsInRange(t,n,s,_,E){_&&!this.hasGaps||Object.keys(this.fragments).forEach(I=>{const U=this.fragments[I];if(!U)return;const Q=U.body;Q.type!==s||_&&!Q.gap||Q.start<n&&Q.end>t&&(U.buffered||E)&&this.removeFragment(Q)})}removeFragment(t){const n=yn(t);t.clearElementaryStreamInfo();const s=this.activePartLists[t.type];if(s){const _=t.sn;this.activePartLists[t.type]=Gr(s,E=>E.fragment.sn!==_)}delete this.fragments[n],t.endList&&delete this.endListFragments[t.type]}removeAllFragments(){var t;this.fragments=Object.create(null),this.endListFragments=Object.create(null),this.activePartLists=Object.create(null),this.hasGaps=!1;const n=(t=this.hls)==null||(t=t.latestLevelDetails)==null?void 0:t.partList;n&&n.forEach(s=>s.clearElementaryStreamInfo())}}function un(D){var t,n,s;return D.buffered&&!!(D.body.gap||(t=D.range.video)!=null&&t.partial||(n=D.range.audio)!=null&&n.partial||(s=D.range.audiovideo)!=null&&s.partial)}function yn(D){return`${D.type}_${D.level}_${D.sn}`}function Gr(D,t){return D.filter(n=>{const s=t(n);return s||n.clearElementaryStreamInfo(),s})}var kn={cbc:0,ctr:1};class si{constructor(t,n,s){this.subtle=void 0,this.aesIV=void 0,this.aesMode=void 0,this.subtle=t,this.aesIV=n,this.aesMode=s}decrypt(t,n){switch(this.aesMode){case kn.cbc:return this.subtle.decrypt({name:"AES-CBC",iv:this.aesIV},n,t);case kn.ctr:return this.subtle.decrypt({name:"AES-CTR",counter:this.aesIV,length:64},n,t);default:throw new Error(`[AESCrypto] invalid aes mode ${this.aesMode}`)}}}function Ea(D){const t=D.byteLength,n=t&&new DataView(D.buffer).getUint8(t-1);return n?D.slice(0,t-n):D}class Js{constructor(){this.rcon=[0,1,2,4,8,16,32,64,128,27,54],this.subMix=[new Uint32Array(256),new Uint32Array(256),new Uint32Array(256),new Uint32Array(256)],this.invSubMix=[new Uint32Array(256),new Uint32Array(256),new Uint32Array(256),new Uint32Array(256)],this.sBox=new Uint32Array(256),this.invSBox=new Uint32Array(256),this.key=new Uint32Array(0),this.ksRows=0,this.keySize=0,this.keySchedule=void 0,this.invKeySchedule=void 0,this.initTable()}uint8ArrayToUint32Array_(t){const n=new DataView(t),s=new Uint32Array(4);for(let _=0;_<4;_++)s[_]=n.getUint32(_*4);return s}initTable(){const t=this.sBox,n=this.invSBox,s=this.subMix,_=s[0],E=s[1],I=s[2],U=s[3],Q=this.invSubMix,G=Q[0],ue=Q[1],de=Q[2],be=Q[3],Re=new Uint32Array(256);let Le=0,at=0,it=0;for(it=0;it<256;it++)it<128?Re[it]=it<<1:Re[it]=it<<1^283;for(it=0;it<256;it++){let Qt=at^at<<1^at<<2^at<<3^at<<4;Qt=Qt>>>8^Qt&255^99,t[Le]=Qt,n[Qt]=Le;const ir=Re[Le],ur=Re[ir],Ar=Re[ur];let Ur=Re[Qt]*257^Qt*16843008;_[Le]=Ur<<24|Ur>>>8,E[Le]=Ur<<16|Ur>>>16,I[Le]=Ur<<8|Ur>>>24,U[Le]=Ur,Ur=Ar*16843009^ur*65537^ir*257^Le*16843008,G[Qt]=Ur<<24|Ur>>>8,ue[Qt]=Ur<<16|Ur>>>16,de[Qt]=Ur<<8|Ur>>>24,be[Qt]=Ur,Le?(Le=ir^Re[Re[Re[Ar^ir]]],at^=Re[Re[at]]):Le=at=1}}expandKey(t){const n=this.uint8ArrayToUint32Array_(t);let s=!0,_=0;for(;_<n.length&&s;)s=n[_]===this.key[_],_++;if(s)return;this.key=n;const E=this.keySize=n.length;if(E!==4&&E!==6&&E!==8)throw new Error("Invalid aes key size="+E);const I=this.ksRows=(E+6+1)*4;let U,Q;const G=this.keySchedule=new Uint32Array(I),ue=this.invKeySchedule=new Uint32Array(I),de=this.sBox,be=this.rcon,Re=this.invSubMix,Le=Re[0],at=Re[1],it=Re[2],Qt=Re[3];let ir,ur;for(U=0;U<I;U++){if(U<E){ir=G[U]=n[U];continue}ur=ir,U%E===0?(ur=ur<<8|ur>>>24,ur=de[ur>>>24]<<24|de[ur>>>16&255]<<16|de[ur>>>8&255]<<8|de[ur&255],ur^=be[U/E|0]<<24):E>6&&U%E===4&&(ur=de[ur>>>24]<<24|de[ur>>>16&255]<<16|de[ur>>>8&255]<<8|de[ur&255]),G[U]=ir=(G[U-E]^ur)>>>0}for(Q=0;Q<I;Q++)U=I-Q,Q&3?ur=G[U]:ur=G[U-4],Q<4||U<=4?ue[Q]=ur:ue[Q]=Le[de[ur>>>24]]^at[de[ur>>>16&255]]^it[de[ur>>>8&255]]^Qt[de[ur&255]],ue[Q]=ue[Q]>>>0}networkToHostOrderSwap(t){return t<<24|(t&65280)<<8|(t&16711680)>>8|t>>>24}decrypt(t,n,s){const _=this.keySize+6,E=this.invKeySchedule,I=this.invSBox,U=this.invSubMix,Q=U[0],G=U[1],ue=U[2],de=U[3],be=this.uint8ArrayToUint32Array_(s);let Re=be[0],Le=be[1],at=be[2],it=be[3];const Qt=new Int32Array(t),ir=new Int32Array(Qt.length);let ur,Ar,Ur,mn,zr,ln,on,Qr,Dn,Ei,Ki,da,Vi,fi;const qi=this.networkToHostOrderSwap;for(;n<Qt.length;){for(Dn=qi(Qt[n]),Ei=qi(Qt[n+1]),Ki=qi(Qt[n+2]),da=qi(Qt[n+3]),zr=Dn^E[0],ln=da^E[1],on=Ki^E[2],Qr=Ei^E[3],Vi=4,fi=1;fi<_;fi++)ur=Q[zr>>>24]^G[ln>>16&255]^ue[on>>8&255]^de[Qr&255]^E[Vi],Ar=Q[ln>>>24]^G[on>>16&255]^ue[Qr>>8&255]^de[zr&255]^E[Vi+1],Ur=Q[on>>>24]^G[Qr>>16&255]^ue[zr>>8&255]^de[ln&255]^E[Vi+2],mn=Q[Qr>>>24]^G[zr>>16&255]^ue[ln>>8&255]^de[on&255]^E[Vi+3],zr=ur,ln=Ar,on=Ur,Qr=mn,Vi=Vi+4;ur=I[zr>>>24]<<24^I[ln>>16&255]<<16^I[on>>8&255]<<8^I[Qr&255]^E[Vi],Ar=I[ln>>>24]<<24^I[on>>16&255]<<16^I[Qr>>8&255]<<8^I[zr&255]^E[Vi+1],Ur=I[on>>>24]<<24^I[Qr>>16&255]<<16^I[zr>>8&255]<<8^I[ln&255]^E[Vi+2],mn=I[Qr>>>24]<<24^I[zr>>16&255]<<16^I[ln>>8&255]<<8^I[on&255]^E[Vi+3],ir[n]=qi(ur^Re),ir[n+1]=qi(mn^Le),ir[n+2]=qi(Ur^at),ir[n+3]=qi(Ar^it),Re=Dn,Le=Ei,at=Ki,it=da,n=n+4}return ir.buffer}}class Ba{constructor(t,n,s){this.subtle=void 0,this.key=void 0,this.aesMode=void 0,this.subtle=t,this.key=n,this.aesMode=s}expandKey(){const t=$s(this.aesMode);return this.subtle.importKey("raw",this.key,{name:t},!1,["encrypt","decrypt"])}}function $s(D){switch(D){case kn.cbc:return"AES-CBC";case kn.ctr:return"AES-CTR";default:throw new Error(`[FastAESKey] invalid aes mode ${D}`)}}const Ns=16;class as{constructor(t,{removePKCS7Padding:n=!0}={}){if(this.logEnabled=!0,this.removePKCS7Padding=void 0,this.subtle=null,this.softwareDecrypter=null,this.key=null,this.fastAesKey=null,this.remainderData=null,this.currentIV=null,this.currentResult=null,this.useSoftware=void 0,this.enableSoftwareAES=void 0,this.enableSoftwareAES=t.enableSoftwareAES,this.removePKCS7Padding=n,n)try{const s=self.crypto;s&&(this.subtle=s.subtle||s.webkitSubtle)}catch(s){}this.useSoftware=!this.subtle}destroy(){this.subtle=null,this.softwareDecrypter=null,this.key=null,this.fastAesKey=null,this.remainderData=null,this.currentIV=null,this.currentResult=null}isSync(){return this.useSoftware}flush(){const{currentResult:t,remainderData:n}=this;if(!t||n)return this.reset(),null;const s=new Uint8Array(t);return this.reset(),this.removePKCS7Padding?Ea(s):s}reset(){this.currentResult=null,this.currentIV=null,this.remainderData=null,this.softwareDecrypter&&(this.softwareDecrypter=null)}decrypt(t,n,s,_){return this.useSoftware?new Promise((E,I)=>{const U=ArrayBuffer.isView(t)?t:new Uint8Array(t);this.softwareDecrypt(U,n,s,_);const Q=this.flush();Q?E(Q.buffer):I(new Error("[softwareDecrypt] Failed to decrypt data"))}):this.webCryptoDecrypt(new Uint8Array(t),n,s,_)}softwareDecrypt(t,n,s,_){const{currentIV:E,currentResult:I,remainderData:U}=this;if(_!==kn.cbc||n.byteLength!==16)return W.warn("SoftwareDecrypt: can only handle AES-128-CBC"),null;this.logOnce("JS AES decrypt"),U&&(t=Yt(U,t),this.remainderData=null);const Q=this.getValidChunk(t);if(!Q.length)return null;E&&(s=E);let G=this.softwareDecrypter;G||(G=this.softwareDecrypter=new Js),G.expandKey(n);const ue=I;return this.currentResult=G.decrypt(Q.buffer,0,s),this.currentIV=Q.slice(-16).buffer,ue||null}webCryptoDecrypt(t,n,s,_){if(this.key!==n||!this.fastAesKey){if(!this.subtle)return Promise.resolve(this.onWebCryptoError(t,n,s,_));this.key=n,this.fastAesKey=new Ba(this.subtle,n,_)}return this.fastAesKey.expandKey().then(E=>this.subtle?(this.logOnce("WebCrypto AES decrypt"),new si(this.subtle,new Uint8Array(s),_).decrypt(t.buffer,E)):Promise.reject(new Error("web crypto not initialized"))).catch(E=>(W.warn(`[decrypter]: WebCrypto Error, disable WebCrypto API, ${E.name}: ${E.message}`),this.onWebCryptoError(t,n,s,_)))}onWebCryptoError(t,n,s,_){const E=this.enableSoftwareAES;if(E){this.useSoftware=!0,this.logEnabled=!0,this.softwareDecrypt(t,n,s,_);const I=this.flush();if(I)return I.buffer}throw new Error("WebCrypto"+(E?" and softwareDecrypt":"")+": failed to decrypt data")}getValidChunk(t){let n=t;const s=t.length-t.length%Ns;return s!==t.length&&(n=t.slice(0,s),this.remainderData=t.slice(s)),n}logOnce(t){this.logEnabled&&(W.log(`[decrypter]: ${t}`),this.logEnabled=!1)}}const oo=Math.pow(2,17);class Aa{constructor(t){this.config=void 0,this.loader=null,this.partLoadTimeout=-1,this.config=t}destroy(){this.loader&&(this.loader.destroy(),this.loader=null)}abort(){this.loader&&this.loader.abort()}load(t,n){const s=t.url;if(!s)return Promise.reject(new Ji({type:c.NETWORK_ERROR,details:f.FRAG_LOAD_ERROR,fatal:!1,frag:t,error:new Error(`Fragment does not have a ${s?"part list":"url"}`),networkDetails:null}));this.abort();const _=this.config,E=_.fLoader,I=_.loader;return new Promise((U,Q)=>{if(this.loader&&this.loader.destroy(),t.gap)if(t.tagList.some(Le=>Le[0]==="GAP")){Q(ps(t));return}else t.gap=!1;const G=this.loader=E?new E(_):new I(_),ue=Is(t);t.loader=G;const de=Ke(_.fragLoadPolicy.default),be={loadPolicy:de,timeout:de.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0,highWaterMark:t.sn==="initSegment"?1/0:oo};t.stats=G.stats;const Re={onSuccess:(Le,at,it,Qt)=>{this.resetLoader(t,G);let ir=Le.data;it.resetIV&&t.decryptdata&&(t.decryptdata.iv=new Uint8Array(ir.slice(0,16)),ir=ir.slice(16)),U({frag:t,part:null,payload:ir,networkDetails:Qt})},onError:(Le,at,it,Qt)=>{this.resetLoader(t,G),Q(new Ji({type:c.NETWORK_ERROR,details:f.FRAG_LOAD_ERROR,fatal:!1,frag:t,response:b({url:s,data:void 0},Le),error:new Error(`HTTP Error ${Le.code} ${Le.text}`),networkDetails:it,stats:Qt}))},onAbort:(Le,at,it)=>{this.resetLoader(t,G),Q(new Ji({type:c.NETWORK_ERROR,details:f.INTERNAL_ABORTED,fatal:!1,frag:t,error:new Error("Aborted"),networkDetails:it,stats:Le}))},onTimeout:(Le,at,it)=>{this.resetLoader(t,G),Q(new Ji({type:c.NETWORK_ERROR,details:f.FRAG_LOAD_TIMEOUT,fatal:!1,frag:t,error:new Error(`Timeout after ${be.timeout}ms`),networkDetails:it,stats:Le}))}};n&&(Re.onProgress=(Le,at,it,Qt)=>n({frag:t,part:null,payload:it,networkDetails:Qt})),G.load(ue,be,Re)})}loadPart(t,n,s){this.abort();const _=this.config,E=_.fLoader,I=_.loader;return new Promise((U,Q)=>{if(this.loader&&this.loader.destroy(),t.gap||n.gap){Q(ps(t,n));return}const G=this.loader=E?new E(_):new I(_),ue=Is(t,n);t.loader=G;const de=Ke(_.fragLoadPolicy.default),be={loadPolicy:de,timeout:de.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0,highWaterMark:oo};n.stats=G.stats,G.load(ue,be,{onSuccess:(Re,Le,at,it)=>{this.resetLoader(t,G),this.updateStatsFromPart(t,n);const Qt={frag:t,part:n,payload:Re.data,networkDetails:it};s(Qt),U(Qt)},onError:(Re,Le,at,it)=>{this.resetLoader(t,G),Q(new Ji({type:c.NETWORK_ERROR,details:f.FRAG_LOAD_ERROR,fatal:!1,frag:t,part:n,response:b({url:ue.url,data:void 0},Re),error:new Error(`HTTP Error ${Re.code} ${Re.text}`),networkDetails:at,stats:it}))},onAbort:(Re,Le,at)=>{t.stats.aborted=n.stats.aborted,this.resetLoader(t,G),Q(new Ji({type:c.NETWORK_ERROR,details:f.INTERNAL_ABORTED,fatal:!1,frag:t,part:n,error:new Error("Aborted"),networkDetails:at,stats:Re}))},onTimeout:(Re,Le,at)=>{this.resetLoader(t,G),Q(new Ji({type:c.NETWORK_ERROR,details:f.FRAG_LOAD_TIMEOUT,fatal:!1,frag:t,part:n,error:new Error(`Timeout after ${be.timeout}ms`),networkDetails:at,stats:Re}))}})})}updateStatsFromPart(t,n){const s=t.stats,_=n.stats,E=_.total;if(s.loaded+=_.loaded,E){const Q=Math.round(t.duration/n.duration),G=Math.min(Math.round(s.loaded/E),Q),de=(Q-G)*Math.round(s.loaded/G);s.total=s.loaded+de}else s.total=Math.max(s.loaded,s.total);const I=s.loading,U=_.loading;I.start?I.first+=U.first-U.start:(I.start=U.start,I.first=U.first),I.end=U.end}resetLoader(t,n){t.loader=null,this.loader===n&&(self.clearTimeout(this.partLoadTimeout),this.loader=null),n.destroy()}}function Is(D,t=null){const n=t||D,s={frag:D,part:t,responseType:"arraybuffer",url:n.url,headers:{},rangeStart:0,rangeEnd:0},_=n.byteRangeStartOffset,E=n.byteRangeEndOffset;if(r(_)&&r(E)){var I;let U=_,Q=E;if(D.sn==="initSegment"&&po((I=D.decryptdata)==null?void 0:I.method)){const G=E-_;G%16&&(Q=E+(16-G%16)),_!==0&&(s.resetIV=!0,U=_-16)}s.rangeStart=U,s.rangeEnd=Q}return s}function ps(D,t){const n=new Error(`GAP ${D.gap?"tag":"attribute"} found`),s={type:c.MEDIA_ERROR,details:f.FRAG_GAP,fatal:!1,frag:D,error:n,networkDetails:null};return t&&(s.part=t),(t||D).stats.aborted=!0,new Ji(s)}function po(D){return D==="AES-128"||D==="AES-256"}class Ji extends Error{constructor(t){super(t.error.message),this.data=void 0,this.data=t}}class to extends R{constructor(t,n){super(t,n),this._boundTick=void 0,this._tickTimer=null,this._tickInterval=null,this._tickCallCount=0,this._boundTick=this.tick.bind(this)}destroy(){this.onHandlerDestroying(),this.onHandlerDestroyed()}onHandlerDestroying(){this.clearNextTick(),this.clearInterval()}onHandlerDestroyed(){}hasInterval(){return!!this._tickInterval}hasNextTick(){return!!this._tickTimer}setInterval(t){return this._tickInterval?!1:(this._tickCallCount=0,this._tickInterval=self.setInterval(this._boundTick,t),!0)}clearInterval(){return this._tickInterval?(self.clearInterval(this._tickInterval),this._tickInterval=null,!0):!1}clearNextTick(){return this._tickTimer?(self.clearTimeout(this._tickTimer),this._tickTimer=null,!0):!1}tick(){this._tickCallCount++,this._tickCallCount===1&&(this.doTick(),this._tickCallCount>1&&this.tickImmediate(),this._tickCallCount=0)}tickImmediate(){this.clearNextTick(),this._tickTimer=self.setTimeout(this._boundTick,0)}doTick(){}}class zo{constructor(t,n,s,_=0,E=-1,I=!1){this.level=void 0,this.sn=void 0,this.part=void 0,this.id=void 0,this.size=void 0,this.partial=void 0,this.transmuxing=Na(),this.buffering={audio:Na(),video:Na(),audiovideo:Na()},this.level=t,this.sn=n,this.id=s,this.size=_,this.part=E,this.partial=I}}function Na(){return{start:0,executeStart:0,executeEnd:0,end:0}}const zs={length:0,start:()=>0,end:()=>0};class di{static isBuffered(t,n){if(t){const s=di.getBuffered(t);for(let _=s.length;_--;)if(n>=s.start(_)&&n<=s.end(_))return!0}return!1}static bufferedRanges(t){if(t){const n=di.getBuffered(t);return di.timeRangesToArray(n)}return[]}static timeRangesToArray(t){const n=[];for(let s=0;s<t.length;s++)n.push({start:t.start(s),end:t.end(s)});return n}static bufferInfo(t,n,s){if(t){const _=di.bufferedRanges(t);if(_.length)return di.bufferedInfo(_,n,s)}return{len:0,start:n,end:n,bufferedIndex:-1}}static bufferedInfo(t,n,s){n=Math.max(0,n),t.length>1&&t.sort((ue,de)=>ue.start-de.start||de.end-ue.end);let _=-1,E=[];if(s)for(let ue=0;ue<t.length;ue++){n>=t[ue].start&&n<=t[ue].end&&(_=ue);const de=E.length;if(de){const be=E[de-1].end;t[ue].start-be<s?t[ue].end>be&&(E[de-1].end=t[ue].end):E.push(t[ue])}else E.push(t[ue])}else E=t;let I=0,U,Q=n,G=n;for(let ue=0;ue<E.length;ue++){const de=E[ue].start,be=E[ue].end;if(_===-1&&n>=de&&n<=be&&(_=ue),n+s>=de&&n<be)Q=de,G=be,I=G-n;else if(n+s<de){U=de;break}}return{len:I,start:Q||0,end:G||0,nextStart:U,buffered:t,bufferedIndex:_}}static getBuffered(t){try{return t.buffered||zs}catch(n){return W.log("failed to get media.buffered",n),zs}}}const ro=/\{\$([a-zA-Z0-9-_]+)\}/g;function Rn(D){return ro.test(D)}function ss(D,t){if(D.variableList!==null||D.hasVariableRefs){const n=D.variableList;return t.replace(ro,s=>{const _=s.substring(2,s.length-1),E=n==null?void 0:n[_];return E===void 0?(D.playlistParsingError||(D.playlistParsingError=new Error(`Missing preceding EXT-X-DEFINE tag for Variable Reference: "${_}"`)),s):E})}return t}function Ps(D,t,n){let s=D.variableList;s||(D.variableList=s={});let _,E;if("QUERYPARAM"in t){_=t.QUERYPARAM;try{const I=new self.URL(n).searchParams;if(I.has(_))E=I.get(_);else throw new Error(`"${_}" does not match any query parameter in URI: "${n}"`)}catch(I){D.playlistParsingError||(D.playlistParsingError=new Error(`EXT-X-DEFINE QUERYPARAM: ${I.message}`))}}else _=t.NAME,E=t.VALUE;_ in s?D.playlistParsingError||(D.playlistParsingError=new Error(`EXT-X-DEFINE duplicate Variable Name declarations: "${_}"`)):s[_]=E||""}function Os(D,t,n){const s=t.IMPORT;if(n&&s in n){let _=D.variableList;_||(D.variableList=_={}),_[s]=n[s]}else D.playlistParsingError||(D.playlistParsingError=new Error(`EXT-X-DEFINE IMPORT attribute not found in Multivariant Playlist: "${s}"`))}const Qi=/^(\d+)x(\d+)$/,Ka=/(.+?)=(".*?"|.*?)(?:,|$)/g;class Ni{constructor(t,n){typeof t=="string"&&(t=Ni.parseAttrList(t,n)),y(this,t)}get clientAttrs(){return Object.keys(this).filter(t=>t.substring(0,2)==="X-")}decimalInteger(t){const n=parseInt(this[t],10);return n>Number.MAX_SAFE_INTEGER?1/0:n}hexadecimalInteger(t){if(this[t]){let n=(this[t]||"0x").slice(2);n=(n.length&1?"0":"")+n;const s=new Uint8Array(n.length/2);for(let _=0;_<n.length/2;_++)s[_]=parseInt(n.slice(_*2,_*2+2),16);return s}return null}hexadecimalIntegerAsNumber(t){const n=parseInt(this[t],16);return n>Number.MAX_SAFE_INTEGER?1/0:n}decimalFloatingPoint(t){return parseFloat(this[t])}optionalFloat(t,n){const s=this[t];return s?parseFloat(s):n}enumeratedString(t){return this[t]}enumeratedStringList(t,n){const s=this[t];return(s?s.split(/[ ,]+/):[]).reduce((_,E)=>(_[E.toLowerCase()]=!0,_),n)}bool(t){return this[t]==="YES"}decimalResolution(t){const n=Qi.exec(this[t]);if(n!==null)return{width:parseInt(n[1],10),height:parseInt(n[2],10)}}static parseAttrList(t,n){let s;const _={},E='"';for(Ka.lastIndex=0;(s=Ka.exec(t))!==null;){const I=s[1].trim();let U=s[2];const Q=U.indexOf(E)===0&&U.lastIndexOf(E)===U.length-1;let G=!1;if(Q)U=U.slice(1,-1);else switch(I){case"IV":case"SCTE35-CMD":case"SCTE35-IN":case"SCTE35-OUT":G=!0}if(n&&(Q||G))U=ss(n,U);else if(!G&&!Q)switch(I){case"CLOSED-CAPTIONS":if(U==="NONE")break;case"ALLOWED-CPC":case"CLASS":case"ASSOC-LANGUAGE":case"AUDIO":case"BYTERANGE":case"CHANNELS":case"CHARACTERISTICS":case"CODECS":case"DATA-ID":case"END-DATE":case"GROUP-ID":case"ID":case"IMPORT":case"INSTREAM-ID":case"KEYFORMAT":case"KEYFORMATVERSIONS":case"LANGUAGE":case"NAME":case"PATHWAY-ID":case"QUERYPARAM":case"RECENTLY-REMOVED-DATERANGES":case"SERVER-URI":case"STABLE-RENDITION-ID":case"STABLE-VARIANT-ID":case"START-DATE":case"SUBTITLES":case"SUPPLEMENTAL-CODECS":case"URI":case"VALUE":case"VIDEO":case"X-ASSET-LIST":case"X-ASSET-URI":W.warn(`${t}: attribute ${I} is missing quotes`)}_[I]=U}return _}}const Ds="com.apple.hls.interstitial";function xo(D){return D!=="ID"&&D!=="CLASS"&&D!=="CUE"&&D!=="START-DATE"&&D!=="DURATION"&&D!=="END-DATE"&&D!=="END-ON-NEXT"}function Zo(D){return D==="SCTE35-OUT"||D==="SCTE35-IN"||D==="SCTE35-CMD"}class Qo{constructor(t,n,s=0){var _;if(this.attr=void 0,this.tagAnchor=void 0,this.tagOrder=void 0,this._startDate=void 0,this._endDate=void 0,this._dateAtEnd=void 0,this._cue=void 0,this._badValueForSameId=void 0,this.tagAnchor=(n==null?void 0:n.tagAnchor)||null,this.tagOrder=(_=n==null?void 0:n.tagOrder)!=null?_:s,n){const E=n.attr;for(const I in E)if(Object.prototype.hasOwnProperty.call(t,I)&&t[I]!==E[I]){W.warn(`DATERANGE tag attribute: "${I}" does not match for tags with ID: "${t.ID}"`),this._badValueForSameId=I;break}t=y(new Ni({}),E,t)}if(this.attr=t,n?(this._startDate=n._startDate,this._cue=n._cue,this._endDate=n._endDate,this._dateAtEnd=n._dateAtEnd):this._startDate=new Date(t["START-DATE"]),"END-DATE"in this.attr){const E=(n==null?void 0:n.endDate)||new Date(this.attr["END-DATE"]);r(E.getTime())&&(this._endDate=E)}}get id(){return this.attr.ID}get class(){return this.attr.CLASS}get cue(){const t=this._cue;return t===void 0?this._cue=this.attr.enumeratedStringList(this.attr.CUE?"CUE":"X-CUE",{pre:!1,post:!1,once:!1}):t}get startTime(){const{tagAnchor:t}=this;return t===null||t.programDateTime===null?(W.warn(`Expected tagAnchor Fragment with PDT set for DateRange "${this.id}": ${t}`),NaN):t.start+(this.startDate.getTime()-t.programDateTime)/1e3}get startDate(){return this._startDate}get endDate(){const t=this._endDate||this._dateAtEnd;if(t)return t;const n=this.duration;return n!==null?this._dateAtEnd=new Date(this._startDate.getTime()+n*1e3):null}get duration(){if("DURATION"in this.attr){const t=this.attr.decimalFloatingPoint("DURATION");if(r(t))return t}else if(this._endDate)return(this._endDate.getTime()-this._startDate.getTime())/1e3;return null}get plannedDuration(){return"PLANNED-DURATION"in this.attr?this.attr.decimalFloatingPoint("PLANNED-DURATION"):null}get endOnNext(){return this.attr.bool("END-ON-NEXT")}get isInterstitial(){return this.class===Ds}get isValid(){return!!this.id&&!this._badValueForSameId&&r(this.startDate.getTime())&&(this.duration===null||this.duration>=0)&&(!this.endOnNext||!!this.class)&&(!this.attr.CUE||!this.cue.pre&&!this.cue.post||this.cue.pre!==this.cue.post)&&(!this.isInterstitial||"X-ASSET-URI"in this.attr||"X-ASSET-LIST"in this.attr)}}const mu=10;class _u{constructor(t){this.PTSKnown=!1,this.alignedSliding=!1,this.averagetargetduration=void 0,this.endCC=0,this.endSN=0,this.fragments=void 0,this.fragmentHint=void 0,this.partList=null,this.dateRanges=void 0,this.dateRangeTagCount=0,this.live=!0,this.requestScheduled=-1,this.ageHeader=0,this.advancedDateTime=void 0,this.updated=!0,this.advanced=!0,this.misses=0,this.startCC=0,this.startSN=0,this.startTimeOffset=null,this.targetduration=0,this.totalduration=0,this.type=null,this.url=void 0,this.m3u8="",this.version=null,this.canBlockReload=!1,this.canSkipUntil=0,this.canSkipDateRanges=!1,this.skippedSegments=0,this.recentlyRemovedDateranges=void 0,this.partHoldBack=0,this.holdBack=0,this.partTarget=0,this.preloadHint=void 0,this.renditionReports=void 0,this.tuneInGoal=0,this.deltaUpdateFailed=void 0,this.driftStartTime=0,this.driftEndTime=0,this.driftStart=0,this.driftEnd=0,this.encryptedFragments=void 0,this.playlistParsingError=null,this.variableList=null,this.hasVariableRefs=!1,this.appliedTimelineOffset=void 0,this.fragments=[],this.encryptedFragments=[],this.dateRanges={},this.url=t}reloaded(t){if(!t){this.advanced=!0,this.updated=!0;return}const n=this.lastPartSn-t.lastPartSn,s=this.lastPartIndex-t.lastPartIndex;this.updated=this.endSN!==t.endSN||!!s||!!n||!this.live,this.advanced=this.endSN>t.endSN||n>0||n===0&&s>0,this.updated||this.advanced?this.misses=Math.floor(t.misses*.6):this.misses=t.misses+1}hasKey(t){return this.encryptedFragments.some(n=>{let s=n.decryptdata;return s||(n.setKeyFormat(t.keyFormat),s=n.decryptdata),!!s&&t.matches(s)})}get hasProgramDateTime(){return this.fragments.length?r(this.fragments[this.fragments.length-1].programDateTime):!1}get levelTargetDuration(){return this.averagetargetduration||this.targetduration||mu}get drift(){const t=this.driftEndTime-this.driftStartTime;return t>0?(this.driftEnd-this.driftStart)*1e3/t:1}get edge(){return this.partEnd||this.fragmentEnd}get partEnd(){var t;return(t=this.partList)!=null&&t.length?this.partList[this.partList.length-1].end:this.fragmentEnd}get fragmentEnd(){return this.fragments.length?this.fragments[this.fragments.length-1].end:0}get fragmentStart(){return this.fragments.length?this.fragments[0].start:0}get age(){return this.advancedDateTime?Math.max(Date.now()-this.advancedDateTime,0)/1e3:0}get lastPartIndex(){var t;return(t=this.partList)!=null&&t.length?this.partList[this.partList.length-1].index:-1}get maxPartIndex(){const t=this.partList;if(t){const n=this.lastPartIndex;if(n!==-1){for(let s=t.length;s--;)if(t[s].index>n)return t[s].index;return n}}return 0}get lastPartSn(){var t;return(t=this.partList)!=null&&t.length?this.partList[this.partList.length-1].fragment.sn:this.endSN}get expired(){if(this.live&&this.age&&this.misses<3){const t=this.partEnd-this.fragmentStart;return this.age>Math.max(t,this.totalduration)+this.levelTargetDuration}return!1}}function vo(D,t){return D.length===t.length?!D.some((n,s)=>n!==t[s]):!1}function Wo(D,t){return!D&&!t?!0:!D||!t?!1:vo(D,t)}function Oo(D){return D==="AES-128"||D==="AES-256"||D==="AES-256-CTR"}function nu(D){switch(D){case"AES-128":case"AES-256":return kn.cbc;case"AES-256-CTR":return kn.ctr;default:throw new Error(`invalid full segment method ${D}`)}}function Xo(D){return Uint8Array.from(atob(D),t=>t.charCodeAt(0))}function hi(D){return Uint8Array.from(unescape(encodeURIComponent(D)),t=>t.charCodeAt(0))}function vi(D){const t=hi(D).subarray(0,16),n=new Uint8Array(16);return n.set(t,16-t.length),n}function qa(D){const t=function(s,_,E){const I=s[_];s[_]=s[E],s[E]=I};t(D,0,3),t(D,1,2),t(D,4,5),t(D,6,7)}function ls(D){const t=D.split(":");let n=null;if(t[0]==="data"&&t.length===2){const s=t[1].split(";"),_=s[s.length-1].split(",");if(_.length===2){const E=_[0]==="base64",I=_[1];E?(s.splice(-1,1),n=Xo(I)):n=vi(I)}}return n}const es=typeof self!="undefined"?self:void 0;var Wa={CLEARKEY:"org.w3.clearkey",FAIRPLAY:"com.apple.fps",PLAYREADY:"com.microsoft.playready",WIDEVINE:"com.widevine.alpha"},ms={CLEARKEY:"org.w3.clearkey",FAIRPLAY:"com.apple.streamingkeydelivery",PLAYREADY:"com.microsoft.playready",WIDEVINE:"urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed"};function Jo(D){switch(D){case ms.FAIRPLAY:return Wa.FAIRPLAY;case ms.PLAYREADY:return Wa.PLAYREADY;case ms.WIDEVINE:return Wa.WIDEVINE;case ms.CLEARKEY:return Wa.CLEARKEY}}function ks(D){switch(D){case Wa.FAIRPLAY:return ms.FAIRPLAY;case Wa.PLAYREADY:return ms.PLAYREADY;case Wa.WIDEVINE:return ms.WIDEVINE;case Wa.CLEARKEY:return ms.CLEARKEY}}function Mo(D){const{drmSystems:t,widevineLicenseUrl:n}=D,s=t?[Wa.FAIRPLAY,Wa.WIDEVINE,Wa.PLAYREADY,Wa.CLEARKEY].filter(_=>!!t[_]):[];return!s[Wa.WIDEVINE]&&n&&s.push(Wa.WIDEVINE),s}const Eu=function(D){return es!=null&&(D=es.navigator)!=null&&D.requestMediaKeySystemAccess?self.navigator.requestMediaKeySystemAccess.bind(self.navigator):null}();function Pu(D,t,n,s){let _;switch(D){case Wa.FAIRPLAY:_=["cenc","sinf"];break;case Wa.WIDEVINE:case Wa.PLAYREADY:_=["cenc"];break;case Wa.CLEARKEY:_=["cenc","keyids"];break;default:throw new Error(`Unknown key-system: ${D}`)}return rl(_,t,n,s)}function rl(D,t,n,s){return[{initDataTypes:D,persistentState:s.persistentState||"optional",distinctiveIdentifier:s.distinctiveIdentifier||"optional",sessionTypes:s.sessionTypes||[s.sessionType||"temporary"],audioCapabilities:t.map(E=>({contentType:`audio/mp4; codecs=${E}`,robustness:s.audioRobustness||"",encryptionScheme:s.audioEncryptionScheme||null})),videoCapabilities:n.map(E=>({contentType:`video/mp4; codecs=${E}`,robustness:s.videoRobustness||"",encryptionScheme:s.videoEncryptionScheme||null}))}]}function dl(D){var t;return!!D&&(D.sessionType==="persistent-license"||!!((t=D.sessionTypes)!=null&&t.some(n=>n==="persistent-license")))}function Fo(D){const t=new Uint16Array(D.buffer,D.byteOffset,D.byteLength/2),n=String.fromCharCode.apply(null,Array.from(t)),s=n.substring(n.indexOf("<"),n.length),I=new DOMParser().parseFromString(s,"text/xml").getElementsByTagName("KID")[0];if(I){const U=I.childNodes[0]?I.childNodes[0].nodeValue:I.getAttribute("VALUE");if(U){const Q=Xo(U).subarray(0,16);return qa(Q),Q}}return null}let uo={};class Ho{static clearKeyUriToKeyIdMap(){uo={}}static setKeyIdForUri(t,n){uo[t]=n}constructor(t,n,s,_=[1],E=null,I){this.uri=void 0,this.method=void 0,this.keyFormat=void 0,this.keyFormatVersions=void 0,this.encrypted=void 0,this.isCommonEncryption=void 0,this.iv=null,this.key=null,this.keyId=null,this.pssh=null,this.method=t,this.uri=n,this.keyFormat=s,this.keyFormatVersions=_,this.iv=E,this.encrypted=t?t!=="NONE":!1,this.isCommonEncryption=this.encrypted&&!Oo(t),I!=null&&I.startsWith("0x")&&(this.keyId=new Uint8Array(V(I)))}matches(t){return t.uri===this.uri&&t.method===this.method&&t.encrypted===this.encrypted&&t.keyFormat===this.keyFormat&&vo(t.keyFormatVersions,this.keyFormatVersions)&&Wo(t.iv,this.iv)&&Wo(t.keyId,this.keyId)}isSupported(){if(this.method){if(Oo(this.method)||this.method==="NONE")return!0;if(this.keyFormat==="identity")return this.method==="SAMPLE-AES";switch(this.keyFormat){case ms.FAIRPLAY:case ms.WIDEVINE:case ms.PLAYREADY:case ms.CLEARKEY:return["SAMPLE-AES","SAMPLE-AES-CENC","SAMPLE-AES-CTR"].indexOf(this.method)!==-1}}return!1}getDecryptData(t,n){if(!this.encrypted||!this.uri)return null;if(Oo(this.method)){let E=this.iv;return E||(typeof t!="number"&&(W.warn(`missing IV for initialization segment with method="${this.method}" - compliance issue`),t=0),E=Go(t)),new Ho(this.method,this.uri,"identity",this.keyFormatVersions,E)}if(this.keyId){const E=uo[this.uri];if(E&&!vo(this.keyId,E)&&Ho.setKeyIdForUri(this.uri,this.keyId),this.pssh)return this}const s=ls(this.uri);if(s)switch(this.keyFormat){case ms.WIDEVINE:if(this.pssh=s,!this.keyId){const E=Ct(s.buffer);if(E.length){var _;const I=E[0];this.keyId=(_=I.kids)!=null&&_.length?I.kids[0]:null}}this.keyId||(this.keyId=Bo(n));break;case ms.PLAYREADY:{const E=new Uint8Array([154,4,240,121,152,64,66,134,171,146,230,91,224,136,95,149]);this.pssh=pe(E,null,s),this.keyId=Fo(s);break}default:{let E=s.subarray(0,16);if(E.length!==16){const I=new Uint8Array(16);I.set(E,16-E.length),E=I}this.keyId=E;break}}if(!this.keyId||this.keyId.byteLength!==16){let E;E=Hu(n),E||(E=Bo(n),E||(E=uo[this.uri])),E&&(this.keyId=E,Ho.setKeyIdForUri(this.uri,E))}return this}}function Hu(D){const t=D==null?void 0:D[ms.WIDEVINE];return t?t.keyId:null}function Bo(D){const t=D==null?void 0:D[ms.PLAYREADY];if(t){const n=ls(t.uri);if(n)return Fo(n)}return null}function Go(D){const t=new Uint8Array(16);for(let n=12;n<16;n++)t[n]=D>>8*(15-n)&255;return t}const Uu=/#EXT-X-STREAM-INF:([^\r\n]*)(?:[\r\n](?:#[^\r\n]*)?)*([^\r\n]+)|#EXT-X-(SESSION-DATA|SESSION-KEY|DEFINE|CONTENT-STEERING|START):([^\r\n]*)[\r\n]+/g,iu=/#EXT-X-MEDIA:(.*)/g,vu=/^#EXT(?:INF|-X-TARGETDURATION):/m,No=new RegExp([/#EXTINF:\s*(\d*(?:\.\d+)?)(?:,(.*)\s+)?/.source,/(?!#) *(\S[^\r\n]*)/.source,/#.*/.source].join("|"),"g"),gu=new RegExp([/#EXT-X-(PROGRAM-DATE-TIME|BYTERANGE|DATERANGE|DEFINE|KEY|MAP|PART|PART-INF|PLAYLIST-TYPE|PRELOAD-HINT|RENDITION-REPORT|SERVER-CONTROL|SKIP|START):(.+)/.source,/#EXT-X-(BITRATE|DISCONTINUITY-SEQUENCE|MEDIA-SEQUENCE|TARGETDURATION|VERSION): *(\d+)/.source,/#EXT-X-(DISCONTINUITY|ENDLIST|GAP|INDEPENDENT-SEGMENTS)/.source,/(#)([^:]*):(.*)/.source,/(#)(.*)(?:.*)\r?\n?/.source].join("|"));class Ko{static findGroup(t,n){for(let s=0;s<t.length;s++){const _=t[s];if(_.id===n)return _}}static resolve(t,n){return z.buildAbsoluteURL(n,t,{alwaysNormalize:!0})}static isMediaPlaylist(t){return vu.test(t)}static parseMasterPlaylist(t,n){const s=Rn(t),_={contentSteering:null,levels:[],playlistParsingError:null,sessionData:null,sessionKeys:null,startTimeOffset:null,variableList:null,hasVariableRefs:s},E=[];if(Uu.lastIndex=0,!t.startsWith("#EXTM3U"))return _.playlistParsingError=new Error("no EXTM3U delimiter"),_;let I;for(;(I=Uu.exec(t))!=null;)if(I[1]){var U;const G=new Ni(I[1],_),ue=ss(_,I[2]),de={attrs:G,bitrate:G.decimalInteger("BANDWIDTH")||G.decimalInteger("AVERAGE-BANDWIDTH"),name:G.NAME,url:Ko.resolve(ue,n)},be=G.decimalResolution("RESOLUTION");be&&(de.width=be.width,de.height=be.height),Tr(G.CODECS,de);const Re=G["SUPPLEMENTAL-CODECS"];Re&&(de.supplemental={},Tr(Re,de.supplemental)),(U=de.unknownCodecs)!=null&&U.length||E.push(de),_.levels.push(de)}else if(I[3]){const G=I[3],ue=I[4];switch(G){case"SESSION-DATA":{const de=new Ni(ue,_),be=de["DATA-ID"];be&&(_.sessionData===null&&(_.sessionData={}),_.sessionData[be]=de);break}case"SESSION-KEY":{const de=dr(ue,n,_);de.encrypted&&de.isSupported()?(_.sessionKeys===null&&(_.sessionKeys=[]),_.sessionKeys.push(de)):W.warn(`[Keys] Ignoring invalid EXT-X-SESSION-KEY tag: "${ue}"`);break}case"DEFINE":{{const de=new Ni(ue,_);Ps(_,de,n)}break}case"CONTENT-STEERING":{const de=new Ni(ue,_);_.contentSteering={uri:Ko.resolve(de["SERVER-URI"],n),pathwayId:de["PATHWAY-ID"]||"."};break}case"START":{_.startTimeOffset=vr(ue);break}}}const Q=E.length>0&&E.length<_.levels.length;return _.levels=Q?E:_.levels,_.levels.length===0&&(_.playlistParsingError=new Error("no levels found in manifest")),_}static parseMasterPlaylistMedia(t,n,s){let _;const E={},I=s.levels,U={AUDIO:I.map(G=>({id:G.attrs.AUDIO,audioCodec:G.audioCodec})),SUBTITLES:I.map(G=>({id:G.attrs.SUBTITLES,textCodec:G.textCodec})),"CLOSED-CAPTIONS":[]};let Q=0;for(iu.lastIndex=0;(_=iu.exec(t))!==null;){const G=new Ni(_[1],s),ue=G.TYPE;if(ue){const de=U[ue],be=E[ue]||[];E[ue]=be;const Re=G.LANGUAGE,Le=G["ASSOC-LANGUAGE"],at=G.CHANNELS,it=G.CHARACTERISTICS,Qt=G["INSTREAM-ID"],ir={attrs:G,bitrate:0,id:Q++,groupId:G["GROUP-ID"]||"",name:G.NAME||Re||"",type:ue,default:G.bool("DEFAULT"),autoselect:G.bool("AUTOSELECT"),forced:G.bool("FORCED"),lang:Re,url:G.URI?Ko.resolve(G.URI,n):""};if(Le&&(ir.assocLang=Le),at&&(ir.channels=at),it&&(ir.characteristics=it),Qt&&(ir.instreamId=Qt),de!=null&&de.length){const ur=Ko.findGroup(de,ir.groupId)||de[0];bn(ir,ur,"audioCodec"),bn(ir,ur,"textCodec")}be.push(ir)}}return E}static parseLevelPlaylist(t,n,s,_,E,I){var U;const Q={url:n},G=new _u(n),ue=G.fragments,de=[];let be=null,Re=0,Le=0,at=0,it=0,Qt=0,ir=null,ur=new Ie(_,Q),Ar,Ur,mn,zr=-1,ln=!1,on=null,Qr;if(No.lastIndex=0,G.m3u8=t,G.hasVariableRefs=Rn(t),((U=No.exec(t))==null?void 0:U[0])!=="#EXTM3U")return G.playlistParsingError=new Error("Missing format identifier #EXTM3U"),G;for(;(Ar=No.exec(t))!==null;){ln&&(ln=!1,ur=new Ie(_,Q),ur.playlistOffset=at,ur.setStart(at),ur.sn=Re,ur.cc=it,Qt&&(ur.bitrate=Qt),ur.level=s,be&&(ur.initSegment=be,be.rawProgramDateTime&&(ur.rawProgramDateTime=be.rawProgramDateTime,be.rawProgramDateTime=null),on&&(ur.setByteRange(on),on=null)));const da=Ar[1];if(da){ur.duration=parseFloat(da);const Vi=(" "+Ar[2]).slice(1);ur.title=Vi||null,ur.tagList.push(Vi?["INF",da,Vi]:["INF",da])}else if(Ar[3]){if(r(ur.duration)){ur.playlistOffset=at,ur.setStart(at),mn&&ai(ur,mn,G),ur.sn=Re,ur.level=s,ur.cc=it,ue.push(ur);const Vi=(" "+Ar[3]).slice(1);ur.relurl=ss(G,Vi),Ln(ur,ir,de),ir=ur,at+=ur.duration,Re++,Le=0,ln=!0}}else{if(Ar=Ar[0].match(gu),!Ar){W.warn("No matches on slow regex match for level playlist!");continue}for(Ur=1;Ur<Ar.length&&Ar[Ur]===void 0;Ur++);const Vi=(" "+Ar[Ur]).slice(1),fi=(" "+Ar[Ur+1]).slice(1),qi=Ar[Ur+2]?(" "+Ar[Ur+2]).slice(1):null;switch(Vi){case"BYTERANGE":ir?ur.setByteRange(fi,ir):ur.setByteRange(fi);break;case"PROGRAM-DATE-TIME":ur.rawProgramDateTime=fi,ur.tagList.push(["PROGRAM-DATE-TIME",fi]),zr===-1&&(zr=ue.length);break;case"PLAYLIST-TYPE":G.type&&Jn(G,Vi,Ar),G.type=fi.toUpperCase();break;case"MEDIA-SEQUENCE":G.startSN!==0?Jn(G,Vi,Ar):ue.length>0&&mr(G,Vi,Ar),Re=G.startSN=parseInt(fi);break;case"SKIP":{G.skippedSegments&&Jn(G,Vi,Ar);const ki=new Ni(fi,G),ua=ki.decimalInteger("SKIPPED-SEGMENTS");if(r(ua)){G.skippedSegments+=ua;for(let bi=ua;bi--;)ue.push(null);Re+=ua}const Fa=ki.enumeratedString("RECENTLY-REMOVED-DATERANGES");Fa&&(G.recentlyRemovedDateranges=(G.recentlyRemovedDateranges||[]).concat(Fa.split(" ")));break}case"TARGETDURATION":G.targetduration!==0&&Jn(G,Vi,Ar),G.targetduration=Math.max(parseInt(fi),1);break;case"VERSION":G.version!==null&&Jn(G,Vi,Ar),G.version=parseInt(fi);break;case"INDEPENDENT-SEGMENTS":break;case"ENDLIST":G.live||Jn(G,Vi,Ar),G.live=!1;break;case"#":(fi||qi)&&ur.tagList.push(qi?[fi,qi]:[fi]);break;case"DISCONTINUITY":it++,ur.tagList.push(["DIS"]);break;case"GAP":ur.gap=!0,ur.tagList.push([Vi]);break;case"BITRATE":ur.tagList.push([Vi,fi]),Qt=parseInt(fi)*1e3,r(Qt)?ur.bitrate=Qt:Qt=0;break;case"DATERANGE":{const ki=new Ni(fi,G),ua=new Qo(ki,G.dateRanges[ki.ID],G.dateRangeTagCount);G.dateRangeTagCount++,ua.isValid||G.skippedSegments?G.dateRanges[ua.id]=ua:W.warn(`Ignoring invalid DATERANGE tag: "${fi}"`),ur.tagList.push(["EXT-X-DATERANGE",fi]);break}case"DEFINE":{{const ki=new Ni(fi,G);"IMPORT"in ki?Os(G,ki,I):Ps(G,ki,n)}break}case"DISCONTINUITY-SEQUENCE":G.startCC!==0?Jn(G,Vi,Ar):ue.length>0&&mr(G,Vi,Ar),G.startCC=it=parseInt(fi);break;case"KEY":{const ki=dr(fi,n,G);if(ki.isSupported()){if(ki.method==="NONE"){mn=void 0;break}mn||(mn={});const ua=mn[ki.keyFormat];ua!=null&&ua.matches(ki)||(ua&&(mn=y({},mn)),mn[ki.keyFormat]=ki)}else W.warn(`[Keys] Ignoring unsupported EXT-X-KEY tag: "${fi}"`);break}case"START":G.startTimeOffset=vr(fi);break;case"MAP":{const ki=new Ni(fi,G);if(ur.duration){const ua=new Ie(_,Q);Zn(ua,ki,s,mn),be=ua,ur.initSegment=be,be.rawProgramDateTime&&!ur.rawProgramDateTime&&(ur.rawProgramDateTime=be.rawProgramDateTime)}else{const ua=ur.byteRangeEndOffset;if(ua){const Fa=ur.byteRangeStartOffset;on=`${ua-Fa}@${Fa}`}else on=null;Zn(ur,ki,s,mn),be=ur,ln=!0}be.cc=it;break}case"SERVER-CONTROL":{Qr&&Jn(G,Vi,Ar),Qr=new Ni(fi),G.canBlockReload=Qr.bool("CAN-BLOCK-RELOAD"),G.canSkipUntil=Qr.optionalFloat("CAN-SKIP-UNTIL",0),G.canSkipDateRanges=G.canSkipUntil>0&&Qr.bool("CAN-SKIP-DATERANGES"),G.partHoldBack=Qr.optionalFloat("PART-HOLD-BACK",0),G.holdBack=Qr.optionalFloat("HOLD-BACK",0);break}case"PART-INF":{G.partTarget&&Jn(G,Vi,Ar);const ki=new Ni(fi);G.partTarget=ki.decimalFloatingPoint("PART-TARGET");break}case"PART":{let ki=G.partList;ki||(ki=G.partList=[]);const ua=Le>0?ki[ki.length-1]:void 0,Fa=Le++,bi=new Ni(fi,G),xi=new He(bi,ur,Q,Fa,ua);ki.push(xi),ur.duration+=xi.duration;break}case"PRELOAD-HINT":{const ki=new Ni(fi,G);G.preloadHint=ki;break}case"RENDITION-REPORT":{const ki=new Ni(fi,G);G.renditionReports=G.renditionReports||[],G.renditionReports.push(ki);break}default:W.warn(`line parsed but not handled: ${Ar}`);break}}}ir&&!ir.relurl?(ue.pop(),at-=ir.duration,G.partList&&(G.fragmentHint=ir)):G.partList&&(Ln(ur,ir,de),ur.cc=it,G.fragmentHint=ur,mn&&ai(ur,mn,G)),G.targetduration||(G.playlistParsingError=new Error("Missing Target Duration"));const Dn=ue.length,Ei=ue[0],Ki=ue[Dn-1];if(at+=G.skippedSegments*G.targetduration,at>0&&Dn&&Ki){G.averagetargetduration=at/Dn;const da=Ki.sn;G.endSN=da!=="initSegment"?da:0,G.live||(Ki.endList=!0),zr>0&&(zn(ue,zr),Ei&&de.unshift(Ei))}return G.fragmentHint&&(at+=G.fragmentHint.duration),G.totalduration=at,de.length&&G.dateRangeTagCount&&Ei&&rr(de,G),G.endCC=it,G}}function rr(D,t){let n=D.length;if(!n)if(t.hasProgramDateTime){const U=t.fragments[t.fragments.length-1];D.push(U),n++}else return;const s=D[n-1],_=t.live?1/0:t.totalduration,E=Object.keys(t.dateRanges);for(let U=E.length;U--;){const Q=t.dateRanges[E[U]],G=Q.startDate.getTime();Q.tagAnchor=s.ref;for(let ue=n;ue--;){var I;if(((I=D[ue])==null?void 0:I.sn)<t.startSN)break;const de=gr(t,G,D,ue,_);if(de!==-1){Q.tagAnchor=t.fragments[de].ref;break}}}}function gr(D,t,n,s,_){const E=n[s];if(E){const U=E.programDateTime;if(t>=U||s===0){var I;const Q=(((I=n[s+1])==null?void 0:I.start)||_)-E.start;if(t<=U+Q*1e3){const G=n[s].sn-D.startSN;if(G<0)return-1;const ue=D.fragments;if(ue.length>n.length){const be=(n[s+1]||ue[ue.length-1]).sn-D.startSN;for(let Re=be;Re>G;Re--){const Le=ue[Re].programDateTime;if(t>=Le&&t<Le+ue[Re].duration*1e3)return Re}}return G}}}return-1}function dr(D,t,n){var s,_;const E=new Ni(D,n),I=(s=E.METHOD)!=null?s:"",U=E.URI,Q=E.hexadecimalInteger("IV"),G=E.KEYFORMATVERSIONS,ue=(_=E.KEYFORMAT)!=null?_:"identity";U&&E.IV&&!Q&&W.error(`Invalid IV: ${E.IV}`);const de=U?Ko.resolve(U,t):"",be=(G||"1").split("/").map(Number).filter(Number.isFinite);return new Ho(I,de,ue,be,Q,E.KEYID)}function vr(D){const n=new Ni(D).decimalFloatingPoint("TIME-OFFSET");return r(n)?n:null}function Tr(D,t){let n=(D||"").split(/[ ,]+/).filter(s=>s);["video","audio","text"].forEach(s=>{const _=n.filter(E=>bt(E,s));_.length&&(t[`${s}Codec`]=_.map(E=>E.split("/")[0]).join(","),n=n.filter(E=>_.indexOf(E)===-1))}),t.unknownCodecs=n}function bn(D,t,n){const s=t[n];s&&(D[n]=s)}function zn(D,t){let n=D[t];for(let s=t;s--;){const _=D[s];if(!_)return;_.programDateTime=n.programDateTime-_.duration*1e3,n=_}}function Ln(D,t,n){D.rawProgramDateTime?n.push(D):t!=null&&t.programDateTime&&(D.programDateTime=t.endProgramDateTime)}function Zn(D,t,n,s){D.relurl=t.URI,t.BYTERANGE&&D.setByteRange(t.BYTERANGE),D.level=n,D.sn="initSegment",s&&(D.levelkeys=s),D.initSegment=null}function ai(D,t,n){D.levelkeys=t;const{encryptedFragments:s}=n;(!s.length||s[s.length-1].levelkeys!==t)&&Object.keys(t).some(_=>t[_].isCommonEncryption)&&s.push(D)}function Jn(D,t,n){D.playlistParsingError=new Error(`#EXT-X-${t} must not appear more than once (${n[0]})`)}function mr(D,t,n){D.playlistParsingError=new Error(`#EXT-X-${t} must appear before the first Media Segment (${n[0]})`)}function Fr(D,t){const n=t.startPTS;if(r(n)){let s=0,_;t.sn>D.sn?(s=n-D.start,_=D):(s=D.start-n,_=t),_.duration!==s&&_.setDuration(s)}else t.sn>D.sn?D.cc===t.cc&&D.minEndPTS?t.setStart(D.start+(D.minEndPTS-D.start)):t.setStart(D.start+D.duration):t.setStart(Math.max(D.start-t.duration,0))}function Br(D,t,n,s,_,E,I){s-n<=0&&(I.warn("Fragment should have a positive duration",t),s=n+t.duration,E=_+t.duration);let Q=n,G=s;const ue=t.startPTS,de=t.endPTS;if(r(ue)){const Qt=Math.abs(ue-n);D&&Qt>D.totalduration?I.warn(`media timestamps and playlist times differ by ${Qt}s for level ${t.level} ${D.url}`):r(t.deltaPTS)?t.deltaPTS=Math.max(Qt,t.deltaPTS):t.deltaPTS=Qt,Q=Math.max(n,ue),n=Math.min(n,ue),_=t.startDTS!==void 0?Math.min(_,t.startDTS):_,G=Math.min(s,de),s=Math.max(s,de),E=t.endDTS!==void 0?Math.max(E,t.endDTS):E}const be=n-t.start;t.start!==0&&t.setStart(n),t.setDuration(s-t.start),t.startPTS=n,t.maxStartPTS=Q,t.startDTS=_,t.endPTS=s,t.minEndPTS=G,t.endDTS=E;const Re=t.sn;if(!D||Re<D.startSN||Re>D.endSN)return 0;let Le;const at=Re-D.startSN,it=D.fragments;for(it[at]=t,Le=at;Le>0;Le--)Fr(it[Le],it[Le-1]);for(Le=at;Le<it.length-1;Le++)Fr(it[Le],it[Le+1]);return D.fragmentHint&&Fr(it[it.length-1],D.fragmentHint),D.PTSKnown=D.alignedSliding=!0,be}function Tn(D,t,n){if(D===t)return;let s=null;const _=D.fragments;for(let ue=_.length-1;ue>=0;ue--){const de=_[ue].initSegment;if(de){s=de;break}}D.fragmentHint&&delete D.fragmentHint.endPTS;let E;wi(D,t,(ue,de,be,Re)=>{if((!t.startCC||t.skippedSegments)&&de.cc!==ue.cc){const Le=ue.cc-de.cc;for(let at=be;at<Re.length;at++)Re[at].cc+=Le;t.endCC=Re[Re.length-1].cc}r(ue.startPTS)&&r(ue.endPTS)&&(de.setStart(de.startPTS=ue.startPTS),de.startDTS=ue.startDTS,de.maxStartPTS=ue.maxStartPTS,de.endPTS=ue.endPTS,de.endDTS=ue.endDTS,de.minEndPTS=ue.minEndPTS,de.setDuration(ue.endPTS-ue.startPTS),de.duration&&(E=de),t.PTSKnown=t.alignedSliding=!0),ue.hasStreams&&(de.elementaryStreams=ue.elementaryStreams),de.loader=ue.loader,ue.hasStats&&(de.stats=ue.stats),ue.initSegment&&(de.initSegment=ue.initSegment,s=ue.initSegment)});const I=t.fragments,U=t.fragmentHint?I.concat(t.fragmentHint):I;if(s&&U.forEach(ue=>{var de;ue&&(!ue.initSegment||ue.initSegment.relurl===((de=s)==null?void 0:de.relurl))&&(ue.initSegment=s)}),t.skippedSegments){if(t.deltaUpdateFailed=I.some(ue=>!ue),t.deltaUpdateFailed){n.warn("[level-helper] Previous playlist missing segments skipped in delta playlist");for(let ue=t.skippedSegments;ue--;)I.shift();t.startSN=I[0].sn}else{t.canSkipDateRanges&&(t.dateRanges=In(D.dateRanges,t,n));const ue=D.fragments.filter(de=>de.rawProgramDateTime);if(D.hasProgramDateTime&&!t.hasProgramDateTime)for(let de=1;de<U.length;de++)U[de].programDateTime===null&&Ln(U[de],U[de-1],ue);rr(ue,t)}t.endCC=I[I.length-1].cc}if(!t.startCC){var Q;const ue=Et(D,t.startSN-1);t.startCC=(Q=ue==null?void 0:ue.cc)!=null?Q:I[0].cc}oi(D.partList,t.partList,(ue,de)=>{de.elementaryStreams=ue.elementaryStreams,de.stats=ue.stats}),E?Br(t,E,E.startPTS,E.endPTS,E.startDTS,E.endDTS,n):ta(D,t),I.length&&(t.totalduration=t.edge-I[0].start),t.driftStartTime=D.driftStartTime,t.driftStart=D.driftStart;const G=t.advancedDateTime;if(t.advanced&&G){const ue=t.edge;t.driftStart||(t.driftStartTime=G,t.driftStart=ue),t.driftEndTime=G,t.driftEnd=ue}else t.driftEndTime=D.driftEndTime,t.driftEnd=D.driftEnd,t.advancedDateTime=D.advancedDateTime;t.requestScheduled===-1&&(t.requestScheduled=D.requestScheduled)}function In(D,t,n){const{dateRanges:s,recentlyRemovedDateranges:_}=t,E=y({},D);_&&_.forEach(Q=>{delete E[Q]});const U=Object.keys(E).length;return U?(Object.keys(s).forEach(Q=>{const G=E[Q],ue=new Qo(s[Q].attr,G);ue.isValid?(E[Q]=ue,G||(ue.tagOrder+=U)):n.warn(`Ignoring invalid Playlist Delta Update DATERANGE tag: "${Yi(s[Q].attr)}"`)}),E):s}function oi(D,t,n){if(D&&t){let s=0;for(let _=0,E=D.length;_<=E;_++){const I=D[_],U=t[_+s];I&&U&&I.index===U.index&&I.fragment.sn===U.fragment.sn?n(I,U):s--}}}function wi(D,t,n){const s=t.skippedSegments,_=Math.max(D.startSN,t.startSN)-t.startSN,E=(D.fragmentHint?1:0)+(s?t.endSN:Math.min(D.endSN,t.endSN))-t.startSN,I=t.startSN-D.startSN,U=t.fragmentHint?t.fragments.concat(t.fragmentHint):t.fragments,Q=D.fragmentHint?D.fragments.concat(D.fragmentHint):D.fragments;for(let G=_;G<=E;G++){const ue=Q[I+G];let de=U[G];if(s&&!de&&ue&&(de=t.fragments[G]=ue),ue&&de){n(ue,de,G,U);const be=ue.relurl,Re=de.relurl;if(be&&Ys(be,Re)){t.playlistParsingError=Hn(`media sequence mismatch ${de.sn}:`,D,t,ue,de);return}else if(ue.cc!==de.cc){t.playlistParsingError=Hn(`discontinuity sequence mismatch (${ue.cc}!=${de.cc})`,D,t,ue,de);return}}}}function Hn(D,t,n,s,_){return new Error(`${D} ${_.url}
Playlist starting @${t.startSN}
${t.m3u8}
Playlist starting @${n.startSN}
${n.m3u8}`)}function ta(D,t,n=!0){const s=t.startSN+t.skippedSegments-D.startSN,_=D.fragments,E=s>=0;let I=0;if(E&&s<_.length)I=_[s].start;else if(E&&t.startSN===D.endSN+1)I=D.fragmentEnd;else if(E&&n)I=D.fragmentStart+s*t.levelTargetDuration;else if(!t.skippedSegments&&t.fragmentStart===0)I=D.fragmentStart;else return;ra(t,I)}function ra(D,t){if(t){const n=D.fragments;for(let s=D.skippedSegments;s<n.length;s++)n[s].addStart(t);D.fragmentHint&&D.fragmentHint.addStart(t)}}function gi(D,t=1/0){let n=1e3*D.targetduration;if(D.updated){const s=D.fragments;if(s.length&&n*4>t){const E=s[s.length-1].duration*1e3;E<n&&(n=E)}}else n/=2;return Math.round(n)}function Et(D,t,n){if(!D)return null;let s=D.fragments[t-D.startSN];return s||(s=D.fragmentHint,s&&s.sn===t)?s:t<D.startSN&&n&&n.sn===t?n:null}function Xn(D,t,n){return D?Sa(D.partList,t,n):null}function Sa(D,t,n){if(D)for(let s=D.length;s--;){const _=D[s];if(_.index===n&&_.fragment.sn===t)return _}return null}function Ra(D){D.forEach((t,n)=>{var s;(s=t.details)==null||s.fragments.forEach(_=>{_.level=n,_.initSegment&&(_.initSegment.level=n)})})}function Ys(D,t){return D!==t&&t?sn(D)!==sn(t):!1}function sn(D){return D.replace(/\?[^?]*$/,"")}function Do(D,t){for(let s=0,_=D.length;s<_;s++){var n;if(((n=D[s])==null?void 0:n.cc)===t)return D[s]}return null}function lo(D,t){return!!(D&&t.startCC<D.endCC&&t.endCC>D.startCC)}function Rs(D,t){const n=D.start+t;D.startPTS=n,D.setStart(n),D.endPTS=n+D.duration}function no(D,t){const n=t.fragments;for(let s=0,_=n.length;s<_;s++)Rs(n[s],D);t.fragmentHint&&Rs(t.fragmentHint,D),t.alignedSliding=!0}function io(D,t){D&&(ts(t,D),t.alignedSliding||cs(t,D),!t.alignedSliding&&!t.skippedSegments&&ta(D,t,!1))}function ts(D,t){if(!lo(t,D))return;const n=Math.min(t.endCC,D.endCC),s=Do(t.fragments,n),_=Do(D.fragments,n);if(!s||!_)return;W.log(`Aligning playlist at start of dicontinuity sequence ${n}`);const E=s.start-_.start;no(E,D)}function cs(D,t){if(!D.hasProgramDateTime||!t.hasProgramDateTime)return;const n=D.fragments,s=t.fragments;if(!n.length||!s.length)return;let _,E;const I=Math.min(t.endCC,D.endCC);t.startCC<I&&D.startCC<I&&(_=Do(s,I),E=Do(n,I)),(!_||!E)&&(_=s[Math.floor(s.length/2)],E=Do(n,_.cc)||n[Math.floor(n.length/2)]);const U=_.programDateTime,Q=E.programDateTime;if(!U||!Q)return;const G=(Q-U)/1e3-(E.start-_.start);no(G,D)}function ja(D,t,n){os(D,t,n),D.addEventListener(t,n)}function os(D,t,n){D.removeEventListener(t,n)}const Qe={toString:function(D){let t="";const n=D.length;for(let s=0;s<n;s++)t+=`[${D.start(s).toFixed(3)}-${D.end(s).toFixed(3)}]`;return t}},Pe={STOPPED:"STOPPED",IDLE:"IDLE",KEY_LOADING:"KEY_LOADING",FRAG_LOADING:"FRAG_LOADING",FRAG_LOADING_WAITING_RETRY:"FRAG_LOADING_WAITING_RETRY",WAITING_TRACK:"WAITING_TRACK",PARSING:"PARSING",PARSED:"PARSED",ENDED:"ENDED",ERROR:"ERROR",WAITING_INIT_PTS:"WAITING_INIT_PTS",WAITING_LEVEL:"WAITING_LEVEL"};class Ft extends to{constructor(t,n,s,_,E){super(_,t.logger),this.hls=void 0,this.fragPrevious=null,this.fragCurrent=null,this.fragmentTracker=void 0,this.transmuxer=null,this._state=Pe.STOPPED,this.playlistType=void 0,this.media=null,this.mediaBuffer=null,this.config=void 0,this.bitrateTest=!1,this.lastCurrentTime=0,this.nextLoadPosition=0,this.startPosition=0,this.startTimeOffset=null,this.retryDate=0,this.levels=null,this.fragmentLoader=void 0,this.keyLoader=void 0,this.levelLastLoaded=null,this.startFragRequested=!1,this.decrypter=void 0,this.initPTS=[],this.buffering=!0,this.loadingParts=!1,this.loopSn=void 0,this.onMediaSeeking=()=>{const{config:I,fragCurrent:U,media:Q,mediaBuffer:G,state:ue}=this,de=Q?Q.currentTime:0,be=di.bufferInfo(G||Q,de,I.maxBufferHole),Re=!be.len;if(this.log(`Media seeking to ${r(de)?de.toFixed(3):de}, state: ${ue}, ${Re?"out of":"in"} buffer`),this.state===Pe.ENDED)this.resetLoadingState();else if(U){const Le=I.maxFragLookUpTolerance,at=U.start-Le,it=U.start+U.duration+Le;if(Re||it<be.start||at>be.end){const Qt=de>it;(de<at||Qt)&&(Qt&&U.loader&&(this.log(`Cancelling fragment load for seek (sn: ${U.sn})`),U.abortRequests(),this.resetLoadingState()),this.fragPrevious=null)}}if(Q){this.fragmentTracker.removeFragmentsInRange(de,1/0,this.playlistType,!0);const Le=this.lastCurrentTime;if(de>Le&&(this.lastCurrentTime=de),!this.loadingParts){const at=Math.max(be.end,de),it=this.shouldLoadParts(this.getLevelDetails(),at);it&&(this.log(`LL-Part loading ON after seeking to ${de.toFixed(2)} with buffer @${at.toFixed(2)}`),this.loadingParts=it)}}this.hls.hasEnoughToStart||(this.log(`Setting ${Re?"startPosition":"nextLoadPosition"} to ${de} for seek without enough to start`),this.nextLoadPosition=de,Re&&(this.startPosition=de)),Re&&this.state===Pe.IDLE&&this.tickImmediate()},this.onMediaEnded=()=>{this.log("setting startPosition to 0 because media ended"),this.startPosition=this.lastCurrentTime=0},this.playlistType=E,this.hls=t,this.fragmentLoader=new Aa(t.config),this.keyLoader=s,this.fragmentTracker=n,this.config=t.config,this.decrypter=new as(t.config)}registerListeners(){const{hls:t}=this;t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(o.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(o.ERROR,this.onError,this)}doTick(){this.onTickEnd()}onTickEnd(){}startLoad(t){}stopLoad(){if(this.state===Pe.STOPPED)return;this.fragmentLoader.abort(),this.keyLoader.abort(this.playlistType);const t=this.fragCurrent;t!=null&&t.loader&&(t.abortRequests(),this.fragmentTracker.removeFragment(t)),this.resetTransmuxer(),this.fragCurrent=null,this.fragPrevious=null,this.clearInterval(),this.clearNextTick(),this.state=Pe.STOPPED}get startPositionValue(){const{nextLoadPosition:t,startPosition:n}=this;return n===-1&&t?t:n}get bufferingEnabled(){return this.buffering}pauseBuffering(){this.buffering=!1}resumeBuffering(){this.buffering=!0}get inFlightFrag(){return{frag:this.fragCurrent,state:this.state}}_streamEnded(t,n){if(n.live||!this.media)return!1;const s=t.end||0,_=this.config.timelineOffset||0;if(s<=_)return!1;const E=t.buffered;this.config.maxBufferHole&&E&&E.length>1&&(t=di.bufferedInfo(E,t.start,0));const I=t.nextStart;if(I&&I>_&&I<n.edge||this.media.currentTime<t.start)return!1;const Q=n.partList;if(Q!=null&&Q.length){const ue=Q[Q.length-1];return di.isBuffered(this.media,ue.start+ue.duration/2)}const G=n.fragments[n.fragments.length-1].type;return this.fragmentTracker.isEndListAppended(G)}getLevelDetails(){if(this.levels&&this.levelLastLoaded!==null)return this.levelLastLoaded.details}get timelineOffset(){const t=this.config.timelineOffset;if(t){var n;return((n=this.getLevelDetails())==null?void 0:n.appliedTimelineOffset)||t}return 0}onMediaAttached(t,n){const s=this.media=this.mediaBuffer=n.media;ja(s,"seeking",this.onMediaSeeking),ja(s,"ended",this.onMediaEnded);const _=this.config;this.levels&&_.autoStartLoad&&this.state===Pe.STOPPED&&this.startLoad(_.startPosition)}onMediaDetaching(t,n){const s=!!n.transferMedia,_=this.media;if(_!==null){if(_.ended&&(this.log("MSE detaching and video ended, reset startPosition"),this.startPosition=this.lastCurrentTime=0),os(_,"seeking",this.onMediaSeeking),os(_,"ended",this.onMediaEnded),this.keyLoader&&!s&&this.keyLoader.detach(),this.media=this.mediaBuffer=null,this.loopSn=void 0,s){this.resetLoadingState(),this.resetTransmuxer();return}this.loadingParts=!1,this.fragmentTracker.removeAllFragments(),this.stopLoad()}}onManifestLoading(){this.initPTS=[],this.levels=this.levelLastLoaded=this.fragCurrent=null,this.lastCurrentTime=this.startPosition=0,this.startFragRequested=!1}onError(t,n){}onManifestLoaded(t,n){this.startTimeOffset=n.startTimeOffset}onHandlerDestroying(){this.stopLoad(),this.transmuxer&&(this.transmuxer.destroy(),this.transmuxer=null),super.onHandlerDestroying(),this.hls=this.onMediaSeeking=this.onMediaEnded=null}onHandlerDestroyed(){this.state=Pe.STOPPED,this.fragmentLoader&&this.fragmentLoader.destroy(),this.keyLoader&&this.keyLoader.destroy(),this.decrypter&&this.decrypter.destroy(),this.hls=this.log=this.warn=this.decrypter=this.keyLoader=this.fragmentLoader=this.fragmentTracker=null,super.onHandlerDestroyed()}loadFragment(t,n,s){this.startFragRequested=!0,this._loadFragForPlayback(t,n,s)}_loadFragForPlayback(t,n,s){const _=E=>{const I=E.frag;if(this.fragContextChanged(I)){this.warn(`${I.type} sn: ${I.sn}${E.part?" part: "+E.part.index:""} of ${this.fragInfo(I,!1,E.part)}) was dropped during download.`),this.fragmentTracker.removeFragment(I);return}I.stats.chunkCount++,this._handleFragmentLoadProgress(E)};this._doFragLoad(t,n,s,_).then(E=>{if(!E)return;const I=this.state,U=E.frag;if(this.fragContextChanged(U)){(I===Pe.FRAG_LOADING||!this.fragCurrent&&I===Pe.PARSING)&&(this.fragmentTracker.removeFragment(U),this.state=Pe.IDLE);return}"payload"in E&&(this.log(`Loaded ${U.type} sn: ${U.sn} of ${this.playlistLabel()} ${U.level}`),this.hls.trigger(o.FRAG_LOADED,E)),this._handleFragmentLoadComplete(E)}).catch(E=>{this.state===Pe.STOPPED||this.state===Pe.ERROR||(this.warn(`Frag error: ${(E==null?void 0:E.message)||E}`),this.resetFragmentLoading(t))})}clearTrackerIfNeeded(t){var n;const{fragmentTracker:s}=this;if(s.getState(t)===hn.APPENDING){const E=t.type,I=this.getFwdBufferInfo(this.mediaBuffer,E),U=Math.max(t.duration,I?I.len:this.config.maxBufferLength),Q=this.backtrackFragment;((Q?t.sn-Q.sn:0)===1||this.reduceMaxBufferLength(U,t.duration))&&s.removeFragment(t)}else((n=this.mediaBuffer)==null?void 0:n.buffered.length)===0?s.removeAllFragments():s.hasParts(t.type)&&(s.detectPartialFragments({frag:t,part:null,stats:t.stats,id:t.type}),s.getState(t)===hn.PARTIAL&&s.removeFragment(t))}checkLiveUpdate(t){if(t.updated&&!t.live){const n=t.fragments[t.fragments.length-1];this.fragmentTracker.detectPartialFragments({frag:n,part:null,stats:n.stats,id:n.type})}t.fragments[0]||(t.deltaUpdateFailed=!0)}waitForLive(t){const n=t.details;return(n==null?void 0:n.live)&&n.type!=="EVENT"&&(this.levelLastLoaded!==t||n.expired)}flushMainBuffer(t,n,s=null){if(!(t-n))return;const _={startOffset:t,endOffset:n,type:s};this.hls.trigger(o.BUFFER_FLUSHING,_)}_loadInitSegment(t,n){this._doFragLoad(t,n).then(s=>{const _=s==null?void 0:s.frag;if(!_||this.fragContextChanged(_)||!this.levels)throw new Error("init load aborted");return s}).then(s=>{const{hls:_}=this,{frag:E,payload:I}=s,U=E.decryptdata;if(I&&I.byteLength>0&&U!=null&&U.key&&U.iv&&Oo(U.method)){const Q=self.performance.now();return this.decrypter.decrypt(new Uint8Array(I),U.key.buffer,U.iv.buffer,nu(U.method)).catch(G=>{throw _.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_DECRYPT_ERROR,fatal:!1,error:G,reason:G.message,frag:E}),G}).then(G=>{const ue=self.performance.now();return _.trigger(o.FRAG_DECRYPTED,{frag:E,payload:G,stats:{tstart:Q,tdecrypt:ue}}),s.payload=G,this.completeInitSegmentLoad(s)})}return this.completeInitSegmentLoad(s)}).catch(s=>{this.state===Pe.STOPPED||this.state===Pe.ERROR||(this.warn(s),this.resetFragmentLoading(t))})}completeInitSegmentLoad(t){const{levels:n}=this;if(!n)throw new Error("init load aborted, missing levels");const s=t.frag.stats;this.state!==Pe.STOPPED&&(this.state=Pe.IDLE),t.frag.data=new Uint8Array(t.payload),s.parsing.start=s.buffering.start=self.performance.now(),s.parsing.end=s.buffering.end=self.performance.now(),this.tick()}unhandledEncryptionError(t,n){var s,_;const E=t.tracks;if(E&&!n.encrypted&&((s=E.audio)!=null&&s.encrypted||(_=E.video)!=null&&_.encrypted)&&(!this.config.emeEnabled||!this.keyLoader.emeController)){const I=this.media,U=new Error(`Encrypted track with no key in ${this.fragInfo(n)} (media ${I?"attached mediaKeys: "+I.mediaKeys:"detached"})`);return this.warn(U.message),!I||I.mediaKeys?!1:(this.hls.trigger(o.ERROR,{type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_NO_KEYS,fatal:!1,error:U,frag:n}),this.resetTransmuxer(),!0)}return!1}fragContextChanged(t){const{fragCurrent:n}=this;return!t||!n||t.sn!==n.sn||t.level!==n.level}fragBufferedComplete(t,n){const s=this.mediaBuffer?this.mediaBuffer:this.media;if(this.log(`Buffered ${t.type} sn: ${t.sn}${n?" part: "+n.index:""} of ${this.fragInfo(t,!1,n)} > buffer:${s?Qe.toString(di.getBuffered(s)):"(detached)"})`),Se(t)){var _;if(t.type!==u.SUBTITLE){const I=t.elementaryStreams;if(!Object.keys(I).some(U=>!!I[U])){this.state=Pe.IDLE;return}}const E=(_=this.levels)==null?void 0:_[t.level];E!=null&&E.fragmentError&&(this.log(`Resetting level fragment error count of ${E.fragmentError} on frag buffered`),E.fragmentError=0)}this.state=Pe.IDLE}_handleFragmentLoadComplete(t){const{transmuxer:n}=this;if(!n)return;const{frag:s,part:_,partsLoaded:E}=t,I=!E||E.length===0||E.some(Q=>!Q),U=new zo(s.level,s.sn,s.stats.chunkCount+1,0,_?_.index:-1,!I);n.flush(U)}_handleFragmentLoadProgress(t){}_doFragLoad(t,n,s=null,_){var E;this.fragCurrent=t;const I=n.details;if(!this.levels||!I)throw new Error(`frag load aborted, missing level${I?"":" detail"}s`);let U=null;if(t.encrypted&&!((E=t.decryptdata)!=null&&E.key)){if(this.log(`Loading key for ${t.sn} of [${I.startSN}-${I.endSN}], ${this.playlistLabel()} ${t.level}`),this.state=Pe.KEY_LOADING,this.fragCurrent=t,U=this.keyLoader.load(t).then(be=>{if(!this.fragContextChanged(be.frag))return this.hls.trigger(o.KEY_LOADED,be),this.state===Pe.KEY_LOADING&&(this.state=Pe.IDLE),be}),this.hls.trigger(o.KEY_LOADING,{frag:t}),this.fragCurrent===null)return this.log("context changed in KEY_LOADING"),Promise.resolve(null)}else t.encrypted||(U=this.keyLoader.loadClear(t,I.encryptedFragments,this.startFragRequested),U&&this.log("[eme] blocking frag load until media-keys acquired"));const Q=this.fragPrevious;if(Se(t)&&(!Q||t.sn!==Q.sn)){const be=this.shouldLoadParts(n.details,t.end);be!==this.loadingParts&&(this.log(`LL-Part loading ${be?"ON":"OFF"} loading sn ${Q==null?void 0:Q.sn}->${t.sn}`),this.loadingParts=be)}if(s=Math.max(t.start,s||0),this.loadingParts&&Se(t)){const be=I.partList;if(be&&_){s>I.fragmentEnd&&I.fragmentHint&&(t=I.fragmentHint);const Re=this.getNextPart(be,t,s);if(Re>-1){const Le=be[Re];t=this.fragCurrent=Le.fragment,this.log(`Loading ${t.type} sn: ${t.sn} part: ${Le.index} (${Re}/${be.length-1}) of ${this.fragInfo(t,!1,Le)}) cc: ${t.cc} [${I.startSN}-${I.endSN}], target: ${parseFloat(s.toFixed(3))}`),this.nextLoadPosition=Le.start+Le.duration,this.state=Pe.FRAG_LOADING;let at;return U?at=U.then(it=>!it||this.fragContextChanged(it.frag)?null:this.doFragPartsLoad(t,Le,n,_)).catch(it=>this.handleFragLoadError(it)):at=this.doFragPartsLoad(t,Le,n,_).catch(it=>this.handleFragLoadError(it)),this.hls.trigger(o.FRAG_LOADING,{frag:t,part:Le,targetBufferTime:s}),this.fragCurrent===null?Promise.reject(new Error("frag load aborted, context changed in FRAG_LOADING parts")):at}else if(!t.url||this.loadedEndOfParts(be,s))return Promise.resolve(null)}}if(Se(t)&&this.loadingParts){var G;this.log(`LL-Part loading OFF after next part miss @${s.toFixed(2)} Check buffer at sn: ${t.sn} loaded parts: ${(G=I.partList)==null?void 0:G.filter(be=>be.loaded).map(be=>`[${be.start}-${be.end}]`)}`),this.loadingParts=!1}else if(!t.url)return Promise.resolve(null);this.log(`Loading ${t.type} sn: ${t.sn} of ${this.fragInfo(t,!1)}) cc: ${t.cc} ${"["+I.startSN+"-"+I.endSN+"]"}, target: ${parseFloat(s.toFixed(3))}`),r(t.sn)&&!this.bitrateTest&&(this.nextLoadPosition=t.start+t.duration),this.state=Pe.FRAG_LOADING;const ue=this.config.progressive;let de;return ue&&U?de=U.then(be=>!be||this.fragContextChanged(be.frag)?null:this.fragmentLoader.load(t,_)).catch(be=>this.handleFragLoadError(be)):de=Promise.all([this.fragmentLoader.load(t,ue?_:void 0),U]).then(([be])=>(!ue&&_&&_(be),be)).catch(be=>this.handleFragLoadError(be)),this.hls.trigger(o.FRAG_LOADING,{frag:t,targetBufferTime:s}),this.fragCurrent===null?Promise.reject(new Error("frag load aborted, context changed in FRAG_LOADING")):de}doFragPartsLoad(t,n,s,_){return new Promise((E,I)=>{var U;const Q=[],G=(U=s.details)==null?void 0:U.partList,ue=de=>{this.fragmentLoader.loadPart(t,de,_).then(be=>{Q[de.index]=be;const Re=be.part;this.hls.trigger(o.FRAG_LOADED,be);const Le=Xn(s.details,t.sn,de.index+1)||Sa(G,t.sn,de.index+1);if(Le)ue(Le);else return E({frag:t,part:Re,partsLoaded:Q})}).catch(I)};ue(n)})}handleFragLoadError(t){if("data"in t){const n=t.data;n.frag&&n.details===f.INTERNAL_ABORTED?this.handleFragLoadAborted(n.frag,n.part):n.frag&&n.type===c.KEY_SYSTEM_ERROR?(n.frag.abortRequests(),this.resetStartWhenNotLoaded(),this.resetFragmentLoading(n.frag)):this.hls.trigger(o.ERROR,n)}else this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.INTERNAL_EXCEPTION,err:t,error:t,fatal:!0});return null}_handleTransmuxerFlush(t){const n=this.getCurrentContext(t);if(!n||this.state!==Pe.PARSING){!this.fragCurrent&&this.state!==Pe.STOPPED&&this.state!==Pe.ERROR&&(this.state=Pe.IDLE);return}const{frag:s,part:_,level:E}=n,I=self.performance.now();s.stats.parsing.end=I,_&&(_.stats.parsing.end=I);const U=this.getLevelDetails(),G=U&&s.sn>U.endSN||this.shouldLoadParts(U,s.end);G!==this.loadingParts&&(this.log(`LL-Part loading ${G?"ON":"OFF"} after parsing segment ending @${s.end.toFixed(2)}`),this.loadingParts=G),this.updateLevelTiming(s,_,E,t.partial)}shouldLoadParts(t,n){if(this.config.lowLatencyMode){if(!t)return this.loadingParts;if(t.partList){var s;const E=t.partList[0];if(E.fragment.type===u.SUBTITLE)return!1;const I=E.end+(((s=t.fragmentHint)==null?void 0:s.duration)||0);if(n>=I){var _;if((this.hls.hasEnoughToStart?((_=this.media)==null?void 0:_.currentTime)||this.lastCurrentTime:this.getLoadPosition())>E.start-E.fragment.duration)return!0}}}return!1}getCurrentContext(t){const{levels:n,fragCurrent:s}=this,{level:_,sn:E,part:I}=t;if(!(n!=null&&n[_]))return this.warn(`Levels object was unset while buffering fragment ${E} of ${this.playlistLabel()} ${_}. The current chunk will not be buffered.`),null;const U=n[_],Q=U.details,G=I>-1?Xn(Q,E,I):null,ue=G?G.fragment:Et(Q,E,s);return ue?(s&&s!==ue&&(ue.stats=s.stats),{frag:ue,part:G,level:U}):null}bufferFragmentData(t,n,s,_,E){if(this.state!==Pe.PARSING)return;const{data1:I,data2:U}=t;let Q=I;if(U&&(Q=Yt(I,U)),!Q.length)return;const G=this.initPTS[n.cc],ue=G?-G.baseTime/G.timescale:void 0,de={type:t.type,frag:n,part:s,chunkMeta:_,offset:ue,parent:n.type,data:Q};if(this.hls.trigger(o.BUFFER_APPENDING,de),t.dropped&&t.independent&&!s){if(E)return;this.flushBufferGap(n)}}flushBufferGap(t){const n=this.media;if(!n)return;if(!di.isBuffered(n,n.currentTime)){this.flushMainBuffer(0,t.start);return}const s=n.currentTime,_=di.bufferInfo(n,s,0),E=t.duration,I=Math.min(this.config.maxFragLookUpTolerance*2,E*.25),U=Math.max(Math.min(t.start-I,_.end-I),s+I);t.start-U>I&&this.flushMainBuffer(U,t.start)}getFwdBufferInfo(t,n){var s;const _=this.getLoadPosition();if(!r(_))return null;const I=this.lastCurrentTime>_||(s=this.media)!=null&&s.paused?0:this.config.maxBufferHole;return this.getFwdBufferInfoAtPos(t,_,n,I)}getFwdBufferInfoAtPos(t,n,s,_){const E=di.bufferInfo(t,n,_);if(E.len===0&&E.nextStart!==void 0){const I=this.fragmentTracker.getBufferedFrag(n,s);if(I&&(E.nextStart<=I.end||I.gap)){const U=Math.max(Math.min(E.nextStart,I.end)-n,_);return di.bufferInfo(t,n,U)}}return E}getMaxBufferLength(t){const{config:n}=this;let s;return t?s=Math.max(8*n.maxBufferSize/t,n.maxBufferLength):s=n.maxBufferLength,Math.min(s,n.maxMaxBufferLength)}reduceMaxBufferLength(t,n){const s=this.config,_=Math.max(Math.min(t-n,s.maxBufferLength),n),E=Math.max(t-n*3,s.maxMaxBufferLength/2,_);return E>=_?(s.maxMaxBufferLength=E,this.warn(`Reduce max buffer length to ${E}s`),!0):!1}getAppendedFrag(t,n=u.MAIN){const s=this.fragmentTracker?this.fragmentTracker.getAppendedFrag(t,n):null;return s&&"fragment"in s?s.fragment:s}getNextFragment(t,n){const s=n.fragments,_=s.length;if(!_)return null;const{config:E}=this,I=s[0].start,U=E.lowLatencyMode&&!!n.partList;let Q=null;if(n.live){const de=E.initialLiveManifestSize;if(_<de)return this.warn(`Not enough fragments to start playback (have: ${_}, need: ${de})`),null;if(!n.PTSKnown&&!this.startFragRequested&&this.startPosition===-1||t<I){var G;U&&!this.loadingParts&&(this.log("LL-Part loading ON for initial live fragment"),this.loadingParts=!0),Q=this.getInitialLiveFragment(n);const be=this.hls.startPosition,Re=this.hls.liveSyncPosition,Le=Q?(be!==-1&&be>=I?be:Re)||Q.start:t;this.log(`Setting startPosition to ${Le} to match start frag at live edge. mainStart: ${be} liveSyncPosition: ${Re} frag.start: ${(G=Q)==null?void 0:G.start}`),this.startPosition=this.nextLoadPosition=Le}}else t<=I&&(Q=s[0]);if(!Q){const de=this.loadingParts?n.partEnd:n.fragmentEnd;Q=this.getFragmentAtPosition(t,de,n)}let ue=this.filterReplacedPrimary(Q,n);if(!ue&&Q){const de=Q.sn-n.startSN;ue=this.filterReplacedPrimary(s[de+1]||null,n)}return this.mapToInitFragWhenRequired(ue)}isLoopLoading(t,n){const s=this.fragmentTracker.getState(t);return(s===hn.OK||s===hn.PARTIAL&&!!t.gap)&&this.nextLoadPosition>n}getNextFragmentLoopLoading(t,n,s,_,E){let I=null;if(t.gap&&(I=this.getNextFragment(this.nextLoadPosition,n),I&&!I.gap&&s.nextStart)){const U=this.getFwdBufferInfoAtPos(this.mediaBuffer?this.mediaBuffer:this.media,s.nextStart,_,0);if(U!==null&&s.len+U.len>=E){const Q=I.sn;return this.loopSn!==Q&&(this.log(`buffer full after gaps in "${_}" playlist starting at sn: ${Q}`),this.loopSn=Q),null}}return this.loopSn=void 0,I}get primaryPrefetch(){if(_t(this.config)){var t;if((t=this.hls.interstitialsManager)==null||(t=t.playingItem)==null?void 0:t.event)return!0}return!1}filterReplacedPrimary(t,n){if(!t)return t;if(_t(this.config)&&t.type!==u.SUBTITLE){const s=this.hls.interstitialsManager,_=s==null?void 0:s.bufferingItem;if(_){const I=_.event;if(I){if(I.appendInPlace||Math.abs(t.start-_.start)>1||_.start===0)return null}else if(t.end<=_.start&&(n==null?void 0:n.live)===!1||t.start>_.end&&_.nextEvent&&(_.nextEvent.appendInPlace||t.start-_.end>1))return null}const E=s==null?void 0:s.playerQueue;if(E)for(let I=E.length;I--;){const U=E[I].interstitial;if(U.appendInPlace&&t.start>=U.startTime&&t.end<=U.resumeTime)return null}}return t}mapToInitFragWhenRequired(t){return t!=null&&t.initSegment&&!t.initSegment.data&&!this.bitrateTest?t.initSegment:t}getNextPart(t,n,s){let _=-1,E=!1,I=!0;for(let U=0,Q=t.length;U<Q;U++){const G=t[U];if(I=I&&!G.independent,_>-1&&s<G.start)break;const ue=G.loaded;ue?_=-1:(E||(G.independent||I)&&G.fragment===n)&&(G.fragment!==n&&this.warn(`Need buffer at ${s} but next unloaded part starts at ${G.start}`),_=U),E=ue}return _}loadedEndOfParts(t,n){let s;for(let _=t.length;_--;){if(s=t[_],!s.loaded)return!1;if(n>s.start)return!0}return!1}getInitialLiveFragment(t){const n=t.fragments,s=this.fragPrevious;let _=null;if(s){if(t.hasProgramDateTime&&(this.log(`Live playlist, switching playlist, load frag with same PDT: ${s.programDateTime}`),_=lt(n,s.endProgramDateTime,this.config.maxFragLookUpTolerance)),!_){const E=s.sn+1;if(E>=t.startSN&&E<=t.endSN){const I=n[E-t.startSN];s.cc===I.cc&&(_=I,this.log(`Live playlist, switching playlist, load frag with next SN: ${_.sn}`))}_||(_=en(t,s.cc,s.end),_&&this.log(`Live playlist, switching playlist, load frag with same CC: ${_.sn}`))}}else{const E=this.hls.liveSyncPosition;E!==null&&(_=this.getFragmentAtPosition(E,this.bitrateTest?t.fragmentEnd:t.edge,t))}return _}getFragmentAtPosition(t,n,s){const{config:_}=this;let{fragPrevious:E}=this,{fragments:I,endSN:U}=s;const{fragmentHint:Q}=s,{maxFragLookUpTolerance:G}=_,ue=s.partList,de=!!(this.loadingParts&&ue!=null&&ue.length&&Q);de&&!this.bitrateTest&&ue[ue.length-1].fragment.sn===Q.sn&&(I=I.concat(Q),U=Q.sn);let be;if(t<n){var Re;const at=t<this.lastCurrentTime||t>n-G||(Re=this.media)!=null&&Re.paused||!this.startFragRequested?0:G;be=hr(E,I,t,at)}else be=I[I.length-1];if(be){const Le=be.sn-s.startSN,at=this.fragmentTracker.getState(be);if((at===hn.OK||at===hn.PARTIAL&&be.gap)&&(E=be),E&&be.sn===E.sn&&(!de||ue[0].fragment.sn>be.sn||!s.live)&&be.level===E.level){const Qt=I[Le+1];be.sn<U&&this.fragmentTracker.getState(Qt)!==hn.OK?be=Qt:be=null}}return be}alignPlaylists(t,n,s){const _=t.fragments.length;if(!_)return this.warn("No fragments in live playlist"),0;const E=t.fragmentStart,I=!n,U=t.alignedSliding&&r(E);if(I||!U&&!E){io(s,t);const Q=t.fragmentStart;return this.log(`Live playlist sliding: ${Q.toFixed(2)} start-sn: ${n?n.startSN:"na"}->${t.startSN} fragments: ${_}`),Q}return E}waitForCdnTuneIn(t){return t.live&&t.canBlockReload&&t.partTarget&&t.tuneInGoal>Math.max(t.partHoldBack,t.partTarget*3)}setStartPosition(t,n){let s=this.startPosition;s<n&&(s=-1);const _=this.timelineOffset;if(s===-1){const E=this.startTimeOffset!==null,I=E?this.startTimeOffset:t.startTimeOffset;I!==null&&r(I)?(s=n+I,I<0&&(s+=t.edge),s=Math.min(Math.max(n,s),n+t.totalduration),this.log(`Setting startPosition to ${s} for start time offset ${I} found in ${E?"multivariant":"media"} playlist`),this.startPosition=s):t.live?(s=this.hls.liveSyncPosition||n,this.log(`Setting startPosition to -1 to start at live edge ${s}`),this.startPosition=-1):(this.log("setting startPosition to 0 by default"),this.startPosition=s=0),this.lastCurrentTime=s+_}this.nextLoadPosition=s+_}getLoadPosition(){var t;const{media:n}=this;let s=0;return(t=this.hls)!=null&&t.hasEnoughToStart&&n?s=n.currentTime:this.nextLoadPosition>=0&&(s=this.nextLoadPosition),s}handleFragLoadAborted(t,n){this.transmuxer&&t.type===this.playlistType&&Se(t)&&t.stats.aborted&&(this.log(`Fragment ${t.sn}${n?" part "+n.index:""} of ${this.playlistLabel()} ${t.level} was aborted`),this.resetFragmentLoading(t))}resetFragmentLoading(t){(!this.fragCurrent||!this.fragContextChanged(t)&&this.state!==Pe.FRAG_LOADING_WAITING_RETRY)&&(this.state=Pe.IDLE)}onFragmentOrKeyLoadError(t,n){var s;if(n.chunkMeta&&!n.frag){const Qt=this.getCurrentContext(n.chunkMeta);Qt&&(n.frag=Qt.frag)}const _=n.frag;if(!_||_.type!==t||!this.levels)return;if(this.fragContextChanged(_)){var E;this.warn(`Frag load error must match current frag to retry ${_.url} > ${(E=this.fragCurrent)==null?void 0:E.url}`);return}const I=n.details===f.FRAG_GAP;I&&this.fragmentTracker.fragBuffered(_,!0);const U=n.errorAction;if(!U){this.state=Pe.ERROR;return}const{action:Q,flags:G,retryCount:ue=0,retryConfig:de}=U,be=!!de,Re=be&&Q===nr.RetryRequest,Le=be&&!U.resolved&&G===kr.MoveAllAlternatesMatchingHost,at=(s=this.hls.latestLevelDetails)==null?void 0:s.live;if(!Re&&Le&&Se(_)&&!_.endList&&at&&!_r(n))this.resetFragmentErrors(t),this.treatAsGap(_),U.resolved=!0;else if((Re||Le)&&ue<de.maxNumRetry){var it;const Qt=sr((it=n.response)==null?void 0:it.code),ir=Qn(de,ue);if(this.resetStartWhenNotLoaded(),this.retryDate=self.performance.now()+ir,this.state=Pe.FRAG_LOADING_WAITING_RETRY,U.resolved=!0,Qt){this.log("Waiting for connection (offline)"),this.retryDate=1/0,n.reason="offline";return}this.warn(`Fragment ${_.sn} of ${t} ${_.level} errored with ${n.details}, retrying loading ${ue+1}/${de.maxNumRetry} in ${ir}ms`)}else if(de)if(this.resetFragmentErrors(t),ue<de.maxNumRetry)!I&&Q!==nr.RemoveAlternatePermanently&&(U.resolved=!0);else{this.warn(`${n.details} reached or exceeded max retry (${ue})`);return}else Q===nr.SendAlternateToPenaltyBox?this.state=Pe.WAITING_LEVEL:this.state=Pe.ERROR;this.tickImmediate()}checkRetryDate(){const t=self.performance.now(),n=this.retryDate,s=n===1/0;(!n||t>=n||s&&!sr(0))&&(s&&this.log("Connection restored (online)"),this.resetStartWhenNotLoaded(),this.state=Pe.IDLE)}reduceLengthAndFlushBuffer(t){if(this.state===Pe.PARSING||this.state===Pe.PARSED){const n=t.frag,s=t.parent,_=this.getFwdBufferInfo(this.mediaBuffer,s),E=_&&_.len>.5;E&&this.reduceMaxBufferLength(_.len,(n==null?void 0:n.duration)||10);const I=!E;return I&&this.warn(`Buffer full error while media.currentTime (${this.getLoadPosition()}) is not buffered, flush ${s} buffer`),n&&(this.fragmentTracker.removeFragment(n),this.nextLoadPosition=n.start),this.resetLoadingState(),I}return!1}resetFragmentErrors(t){t===u.AUDIO&&(this.fragCurrent=null),this.hls.hasEnoughToStart||(this.startFragRequested=!1),this.state!==Pe.STOPPED&&(this.state=Pe.IDLE)}afterBufferFlushed(t,n,s){if(!t)return;const _=di.getBuffered(t);this.fragmentTracker.detectEvictedFragments(n,_,s),this.state===Pe.ENDED&&this.resetLoadingState()}resetLoadingState(){this.log("Reset loading state"),this.fragCurrent=null,this.fragPrevious=null,this.state!==Pe.STOPPED&&(this.state=Pe.IDLE)}resetStartWhenNotLoaded(){if(!this.hls.hasEnoughToStart){this.startFragRequested=!1;const t=this.levelLastLoaded,n=t?t.details:null;n!=null&&n.live?(this.log("resetting startPosition for live start"),this.startPosition=-1,this.setStartPosition(n,n.fragmentStart),this.resetLoadingState()):this.nextLoadPosition=this.startPosition}}resetWhenMissingContext(t){this.log(`Loading context changed while buffering sn ${t.sn} of ${this.playlistLabel()} ${t.level===-1?"<removed>":t.level}. This chunk will not be buffered.`),this.removeUnbufferedFrags(),this.resetStartWhenNotLoaded(),this.resetLoadingState()}removeUnbufferedFrags(t=0){this.fragmentTracker.removeFragmentsInRange(t,1/0,this.playlistType,!1,!0)}updateLevelTiming(t,n,s,_){const E=s.details;if(!E){this.warn("level.details undefined");return}if(!Object.keys(t.elementaryStreams).reduce((Q,G)=>{const ue=t.elementaryStreams[G];if(ue){const de=ue.endPTS-ue.startPTS;if(de<=0)return this.warn(`Could not parse fragment ${t.sn} ${G} duration reliably (${de})`),Q||!1;const be=_?0:Br(E,t,ue.startPTS,ue.endPTS,ue.startDTS,ue.endDTS,this);return this.hls.trigger(o.LEVEL_PTS_UPDATED,{details:E,level:s,drift:be,type:G,frag:t,start:ue.startPTS,end:ue.endPTS}),!0}return Q},!1)){var U;if(s.fragmentError===0&&this.treatAsGap(t,s),((U=this.transmuxer)==null?void 0:U.error)===null){const Q=new Error(`Found no media in fragment ${t.sn} of ${this.playlistLabel()} ${t.level} resetting transmuxer to fallback to playlist timing`);if(this.warn(Q.message),this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_PARSING_ERROR,fatal:!1,error:Q,frag:t,reason:`Found no media in msn ${t.sn} of ${this.playlistLabel()} "${s.url}"`}),!this.hls)return;this.resetTransmuxer()}}this.state=Pe.PARSED,this.log(`Parsed ${t.type} sn: ${t.sn}${n?" part: "+n.index:""} of ${this.fragInfo(t,!1,n)})`),this.hls.trigger(o.FRAG_PARSED,{frag:t,part:n})}playlistLabel(){return this.playlistType===u.MAIN?"level":"track"}fragInfo(t,n=!0,s){var _,E;return`${this.playlistLabel()} ${t.level} (${s?"part":"frag"}:[${((_=n&&!s?t.startPTS:(s||t).start)!=null?_:NaN).toFixed(3)}-${((E=n&&!s?t.endPTS:(s||t).end)!=null?E:NaN).toFixed(3)}]${s&&t.type==="main"?"INDEPENDENT="+(s.independent?"YES":"NO"):""}`}treatAsGap(t,n){n&&n.fragmentError++,t.gap=!0,this.fragmentTracker.removeFragment(t),this.fragmentTracker.fragBuffered(t,!0)}resetTransmuxer(){var t;(t=this.transmuxer)==null||t.reset()}recoverWorkerError(t){t.event==="demuxerWorker"&&(this.fragmentTracker.removeAllFragments(),this.transmuxer&&(this.transmuxer.destroy(),this.transmuxer=null),this.resetStartWhenNotLoaded(),this.resetLoadingState())}set state(t){const n=this._state;n!==t&&(this._state=t,this.log(`${n}->${t}`))}get state(){return this._state}}function _t(D){return!!D.interstitialsController&&D.enableInterstitialPlayback!==!1}class Sr{constructor(){this.chunks=[],this.dataLength=0}push(t){this.chunks.push(t),this.dataLength+=t.length}flush(){const{chunks:t,dataLength:n}=this;let s;if(t.length)t.length===1?s=t[0]:s=Mr(t,n);else return new Uint8Array(0);return this.reset(),s}reset(){this.chunks.length=0,this.dataLength=0}}function Mr(D,t){const n=new Uint8Array(t);let s=0;for(let _=0;_<D.length;_++){const E=D[_];n.set(E,s),s+=E.length}return n}var Kr={exports:{}},xn;function cn(){return xn||(xn=1,function(D){var t=Object.prototype.hasOwnProperty,n="~";function s(){}Object.create&&(s.prototype=Object.create(null),new s().__proto__||(n=!1));function _(Q,G,ue){this.fn=Q,this.context=G,this.once=ue||!1}function E(Q,G,ue,de,be){if(typeof ue!="function")throw new TypeError("The listener must be a function");var Re=new _(ue,de||Q,be),Le=n?n+G:G;return Q._events[Le]?Q._events[Le].fn?Q._events[Le]=[Q._events[Le],Re]:Q._events[Le].push(Re):(Q._events[Le]=Re,Q._eventsCount++),Q}function I(Q,G){--Q._eventsCount===0?Q._events=new s:delete Q._events[G]}function U(){this._events=new s,this._eventsCount=0}U.prototype.eventNames=function(){var G=[],ue,de;if(this._eventsCount===0)return G;for(de in ue=this._events)t.call(ue,de)&&G.push(n?de.slice(1):de);return Object.getOwnPropertySymbols?G.concat(Object.getOwnPropertySymbols(ue)):G},U.prototype.listeners=function(G){var ue=n?n+G:G,de=this._events[ue];if(!de)return[];if(de.fn)return[de.fn];for(var be=0,Re=de.length,Le=new Array(Re);be<Re;be++)Le[be]=de[be].fn;return Le},U.prototype.listenerCount=function(G){var ue=n?n+G:G,de=this._events[ue];return de?de.fn?1:de.length:0},U.prototype.emit=function(G,ue,de,be,Re,Le){var at=n?n+G:G;if(!this._events[at])return!1;var it=this._events[at],Qt=arguments.length,ir,ur;if(it.fn){switch(it.once&&this.removeListener(G,it.fn,void 0,!0),Qt){case 1:return it.fn.call(it.context),!0;case 2:return it.fn.call(it.context,ue),!0;case 3:return it.fn.call(it.context,ue,de),!0;case 4:return it.fn.call(it.context,ue,de,be),!0;case 5:return it.fn.call(it.context,ue,de,be,Re),!0;case 6:return it.fn.call(it.context,ue,de,be,Re,Le),!0}for(ur=1,ir=new Array(Qt-1);ur<Qt;ur++)ir[ur-1]=arguments[ur];it.fn.apply(it.context,ir)}else{var Ar=it.length,Ur;for(ur=0;ur<Ar;ur++)switch(it[ur].once&&this.removeListener(G,it[ur].fn,void 0,!0),Qt){case 1:it[ur].fn.call(it[ur].context);break;case 2:it[ur].fn.call(it[ur].context,ue);break;case 3:it[ur].fn.call(it[ur].context,ue,de);break;case 4:it[ur].fn.call(it[ur].context,ue,de,be);break;default:if(!ir)for(Ur=1,ir=new Array(Qt-1);Ur<Qt;Ur++)ir[Ur-1]=arguments[Ur];it[ur].fn.apply(it[ur].context,ir)}}return!0},U.prototype.on=function(G,ue,de){return E(this,G,ue,de,!1)},U.prototype.once=function(G,ue,de){return E(this,G,ue,de,!0)},U.prototype.removeListener=function(G,ue,de,be){var Re=n?n+G:G;if(!this._events[Re])return this;if(!ue)return I(this,Re),this;var Le=this._events[Re];if(Le.fn)Le.fn===ue&&(!be||Le.once)&&(!de||Le.context===de)&&I(this,Re);else{for(var at=0,it=[],Qt=Le.length;at<Qt;at++)(Le[at].fn!==ue||be&&!Le[at].once||de&&Le[at].context!==de)&&it.push(Le[at]);it.length?this._events[Re]=it.length===1?it[0]:it:I(this,Re)}return this},U.prototype.removeAllListeners=function(G){var ue;return G?(ue=n?n+G:G,this._events[ue]&&I(this,ue)):(this._events=new s,this._eventsCount=0),this},U.prototype.off=U.prototype.removeListener,U.prototype.addListener=U.prototype.on,U.prefixed=n,U.EventEmitter=U,D.exports=U}(Kr)),Kr.exports}var Sn=cn(),ri=se(Sn);const ni="1.6.13",yi={};function Li(){return typeof __HLS_WORKER_BUNDLE__=="function"}function na(){const D=yi[ni];if(D)return D.clientCount++,D;const t=new self.Blob([`var exports={};var module={exports:exports};function define(f){f()};define.amd=true;(${__HLS_WORKER_BUNDLE__.toString()})(true);`],{type:"text/javascript"}),n=self.URL.createObjectURL(t),_={worker:new self.Worker(n),objectURL:n,clientCount:1};return yi[ni]=_,_}function Wi(D){const t=yi[D];if(t)return t.clientCount++,t;const n=new self.URL(D,self.location.href).href,_={worker:new self.Worker(n),scriptURL:n,clientCount:1};return yi[D]=_,_}function Ci(D){const t=yi[D||ni];if(t&&t.clientCount--===1){const{worker:s,objectURL:_}=t;delete yi[D||ni],_&&self.URL.revokeObjectURL(_),s.terminate()}}function Ia(D,t){return t+10<=D.length&&D[t]===51&&D[t+1]===68&&D[t+2]===73&&D[t+3]<255&&D[t+4]<255&&D[t+6]<128&&D[t+7]<128&&D[t+8]<128&&D[t+9]<128}function Ii(D,t){return t+10<=D.length&&D[t]===73&&D[t+1]===68&&D[t+2]===51&&D[t+3]<255&&D[t+4]<255&&D[t+6]<128&&D[t+7]<128&&D[t+8]<128&&D[t+9]<128}function pi(D,t){let n=0;return n=(D[t]&127)<<21,n|=(D[t+1]&127)<<14,n|=(D[t+2]&127)<<7,n|=D[t+3]&127,n}function ca(D,t){const n=t;let s=0;for(;Ii(D,t);){s+=10;const _=pi(D,t+6);s+=_,Ia(D,t+10)&&(s+=10),t+=s}if(s>0)return D.subarray(n,n+s)}function Eo(D,t,n,s){const _=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350],E=t[n+2],I=E>>2&15;if(I>12){const Re=new Error(`invalid ADTS sampling index:${I}`);D.emit(o.ERROR,o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_PARSING_ERROR,fatal:!0,error:Re,reason:Re.message});return}const U=(E>>6&3)+1,Q=t[n+3]>>6&3|(E&1)<<2,G="mp4a.40."+U,ue=_[I];let de=I;(U===5||U===29)&&(de-=3);const be=[U<<3|(de&14)>>1,(de&1)<<7|Q<<3];return W.log(`manifest codec:${s}, parsed codec:${G}, channels:${Q}, rate:${ue} (ADTS object type:${U} sampling index:${I})`),{config:be,samplerate:ue,channelCount:Q,codec:G,parsedCodec:G,manifestCodec:s}}function Qs(D,t){return D[t]===255&&(D[t+1]&246)===240}function ia(D,t){return D[t+1]&1?7:9}function fs(D,t){return(D[t+3]&3)<<11|D[t+4]<<3|(D[t+5]&224)>>>5}function ya(D,t){return t+5<D.length}function _s(D,t){return t+1<D.length&&Qs(D,t)}function La(D,t){return ya(D,t)&&Qs(D,t)&&fs(D,t)<=D.length-t}function rs(D,t){if(_s(D,t)){const n=ia(D,t);if(t+n>=D.length)return!1;const s=fs(D,t);if(s<=n)return!1;const _=t+s;return _===D.length||_s(D,_)}return!1}function Ls(D,t,n,s,_){if(!D.samplerate){const E=Eo(t,n,s,_);if(!E)return;y(D,E)}}function ao(D){return 9216e4/D}function xs(D,t){const n=ia(D,t);if(t+n<=D.length){const s=fs(D,t)-n;if(s>0)return{headerLength:n,frameLength:s}}}function pa(D,t,n,s,_){const E=ao(D.samplerate),I=s+_*E,U=xs(t,n);let Q;if(U){const{frameLength:de,headerLength:be}=U,Re=be+de,Le=Math.max(0,n+Re-t.length);Le?(Q=new Uint8Array(Re-be),Q.set(t.subarray(n+be,t.length),0)):Q=t.subarray(n+be,n+Re);const at={unit:Q,pts:I};return Le||D.samples.push(at),{sample:at,length:Re,missing:Le}}const G=t.length-n;return Q=new Uint8Array(G),Q.set(t.subarray(n,t.length),0),{sample:{unit:Q,pts:I},length:G,missing:-1}}function Ms(D,t){return Ii(D,t)&&pi(D,t+6)+10<=D.length-t}function jo(D){return D instanceof ArrayBuffer?D:D.byteOffset==0&&D.byteLength==D.buffer.byteLength?D.buffer:new Uint8Array(D).buffer}function qs(D,t=0,n=1/0){return Ha(D,t,n,Uint8Array)}function Ha(D,t,n,s){const _=us(D);let E=1;"BYTES_PER_ELEMENT"in s&&(E=s.BYTES_PER_ELEMENT);const I=co(D)?D.byteOffset:0,U=(I+D.byteLength)/E,Q=(I+t)/E,G=Math.floor(Math.max(0,Math.min(Q,U))),ue=Math.floor(Math.min(G+Math.max(n,0),U));return new s(_,G,ue-G)}function us(D){return D instanceof ArrayBuffer?D:D.buffer}function co(D){return D&&D.buffer instanceof ArrayBuffer&&D.byteLength!==void 0&&D.byteOffset!==void 0}function Va(D){const t={key:D.type,description:"",data:"",mimeType:null,pictureType:null},n=3;if(D.size<2)return;if(D.data[0]!==n){console.log("Ignore frame with unrecognized character encoding");return}const s=D.data.subarray(1).indexOf(0);if(s===-1)return;const _=q(qs(D.data,1,s)),E=D.data[2+s],I=D.data.subarray(3+s).indexOf(0);if(I===-1)return;const U=q(qs(D.data,3+s,I));let Q;return _==="-->"?Q=q(qs(D.data,4+s+I)):Q=jo(D.data.subarray(4+s+I)),t.mimeType=_,t.pictureType=E,t.description=U,t.data=Q,t}function Vt(D){if(D.size<2)return;const t=q(D.data,!0),n=new Uint8Array(D.data.subarray(t.length+1));return{key:D.type,info:t,data:n.buffer}}function kt(D){if(D.size<2)return;if(D.type==="TXXX"){let n=1;const s=q(D.data.subarray(n),!0);n+=s.length+1;const _=q(D.data.subarray(n));return{key:D.type,info:s,data:_}}const t=q(D.data.subarray(1));return{key:D.type,info:"",data:t}}function Pa(D){if(D.type==="WXXX"){if(D.size<2)return;let n=1;const s=q(D.data.subarray(n),!0);n+=s.length+1;const _=q(D.data.subarray(n));return{key:D.type,info:s,data:_}}const t=q(D.data);return{key:D.type,info:"",data:t}}function Zs(D){return D.type==="PRIV"?Vt(D):D.type[0]==="W"?Pa(D):D.type==="APIC"?Va(D):kt(D)}function _n(D){const t=String.fromCharCode(D[0],D[1],D[2],D[3]),n=pi(D,4),s=10;return{type:t,size:n,data:D.subarray(s,s+n)}}const En=10,Ze=10;function jt(D){let t=0;const n=[];for(;Ii(D,t);){const s=pi(D,t+6);D[t+5]>>6&1&&(t+=En),t+=En;const _=t+s;for(;t+Ze<_;){const E=_n(D.subarray(t)),I=Zs(E);I&&n.push(I),t+=E.size+En}Ia(D,t)&&(t+=En)}return n}function wr(D){return D&&D.key==="PRIV"&&D.info==="com.apple.streaming.transportStreamTimestamp"}function Rr(D){if(D.data.byteLength===8){const t=new Uint8Array(D.data),n=t[3]&1;let s=(t[4]<<23)+(t[5]<<15)+(t[6]<<7)+t[7];return s/=45,n&&(s+=4772185884e-2),Math.round(s)}}function Jr(D){const t=jt(D);for(let n=0;n<t.length;n++){const s=t[n];if(wr(s))return Rr(s)}}let gn=function(D){return D.audioId3="org.id3",D.dateRange="com.apple.quicktime.HLS",D.emsg="https://aomedia.org/emsg/ID3",D.misbklv="urn:misb:KLV:bin:1910.1",D}({});function Xi(D="",t=9e4){return{type:D,id:-1,pid:-1,inputTimeScale:t,sequenceNumber:-1,samples:[],dropped:0}}class ui{constructor(){this._audioTrack=void 0,this._id3Track=void 0,this.frameIndex=0,this.cachedData=null,this.basePTS=null,this.initPTS=null,this.lastPTS=null}resetInitSegment(t,n,s,_){this._id3Track={type:"id3",id:3,pid:-1,inputTimeScale:9e4,sequenceNumber:0,samples:[],dropped:0}}resetTimeStamp(t){this.initPTS=t,this.resetContiguity()}resetContiguity(){this.basePTS=null,this.lastPTS=null,this.frameIndex=0}canParse(t,n){return!1}appendFrame(t,n,s){}demux(t,n){this.cachedData&&(t=Yt(this.cachedData,t),this.cachedData=null);let s=ca(t,0),_=s?s.length:0,E;const I=this._audioTrack,U=this._id3Track,Q=s?Jr(s):void 0,G=t.length;for((this.basePTS===null||this.frameIndex===0&&r(Q))&&(this.basePTS=wo(Q,n,this.initPTS),this.lastPTS=this.basePTS),this.lastPTS===null&&(this.lastPTS=this.basePTS),s&&s.length>0&&U.samples.push({pts:this.lastPTS,dts:this.lastPTS,data:s,type:gn.audioId3,duration:Number.POSITIVE_INFINITY});_<G;){if(this.canParse(t,_)){const ue=this.appendFrame(I,t,_);ue?(this.frameIndex++,this.lastPTS=ue.sample.pts,_+=ue.length,E=_):_=G}else Ms(t,_)?(s=ca(t,_),U.samples.push({pts:this.lastPTS,dts:this.lastPTS,data:s,type:gn.audioId3,duration:Number.POSITIVE_INFINITY}),_+=s.length,E=_):_++;if(_===G&&E!==G){const ue=t.slice(E);this.cachedData?this.cachedData=Yt(this.cachedData,ue):this.cachedData=ue}}return{audioTrack:I,videoTrack:Xi(),id3Track:U,textTrack:Xi()}}demuxSampleAes(t,n,s){return Promise.reject(new Error(`[${this}] This demuxer does not support Sample-AES decryption`))}flush(t){const n=this.cachedData;return n&&(this.cachedData=null,this.demux(n,0)),{audioTrack:this._audioTrack,videoTrack:Xi(),id3Track:this._id3Track,textTrack:Xi()}}destroy(){this.cachedData=null,this._audioTrack=this._id3Track=void 0}}const wo=(D,t,n)=>{if(r(D))return D*90;const s=n?n.baseTime*9e4/n.timescale:0;return t*9e4+s};let fa=null;const ns=[32,64,96,128,160,192,224,256,288,320,352,384,416,448,32,48,56,64,80,96,112,128,160,192,224,256,320,384,32,40,48,56,64,80,96,112,128,160,192,224,256,320,32,48,56,64,80,96,112,128,144,160,176,192,224,256,8,16,24,32,40,48,56,64,80,96,112,128,144,160],Xa=[44100,48e3,32e3,22050,24e3,16e3,11025,12e3,8e3],Es=[[0,72,144,12],[0,0,0,0],[0,72,144,12],[0,144,144,12]],go=[0,1,1,4];function wu(D,t,n,s,_){if(n+24>t.length)return;const E=yu(t,n);if(E&&n+E.frameLength<=t.length){const I=E.samplesPerFrame*9e4/E.sampleRate,U=s+_*I,Q={unit:t.subarray(n,n+E.frameLength),pts:U,dts:U};return D.config=[],D.channelCount=E.channelCount,D.samplerate=E.sampleRate,D.samples.push(Q),{sample:Q,length:E.frameLength,missing:0}}}function yu(D,t){const n=D[t+1]>>3&3,s=D[t+1]>>1&3,_=D[t+2]>>4&15,E=D[t+2]>>2&3;if(n!==1&&_!==0&&_!==15&&E!==3){const I=D[t+2]>>1&1,U=D[t+3]>>6,Q=n===3?3-s:s===3?3:4,G=ns[Q*14+_-1]*1e3,de=Xa[(n===3?0:n===2?1:2)*3+E],be=U===3?1:2,Re=Es[n][s],Le=go[s],at=Re*8*Le,it=Math.floor(Re*G/de+I)*Le;if(fa===null){const ur=(navigator.userAgent||"").match(/Chrome\/(\d+)/i);fa=ur?parseInt(ur[1]):0}return!!fa&&fa<=87&&s===2&&G>=224e3&&U===0&&(D[t+3]=D[t+3]|128),{sampleRate:de,channelCount:be,frameLength:it,samplesPerFrame:at}}}function Ve(D,t){return D[t]===255&&(D[t+1]&224)===224&&(D[t+1]&6)!==0}function Z(D,t){return t+1<D.length&&Ve(D,t)}function Y(D,t){return Ve(D,t)&&4<=D.length-t}function te(D,t){if(t+1<D.length&&Ve(D,t)){const s=yu(D,t);let _=4;s!=null&&s.frameLength&&(_=s.frameLength);const E=t+_;return E===D.length||Z(D,E)}return!1}class he extends ui{constructor(t,n){super(),this.observer=void 0,this.config=void 0,this.observer=t,this.config=n}resetInitSegment(t,n,s,_){super.resetInitSegment(t,n,s,_),this._audioTrack={container:"audio/adts",type:"audio",id:2,pid:-1,sequenceNumber:0,segmentCodec:"aac",samples:[],manifestCodec:n,duration:_,inputTimeScale:9e4,dropped:0}}static probe(t,n){if(!t)return!1;const s=ca(t,0);let _=(s==null?void 0:s.length)||0;if(te(t,_))return!1;for(let E=t.length;_<E;_++)if(rs(t,_))return n.log("ADTS sync word found !"),!0;return!1}canParse(t,n){return La(t,n)}appendFrame(t,n,s){Ls(t,this.observer,n,s,t.manifestCodec);const _=pa(t,n,s,this.basePTS,this.frameIndex);if(_&&_.missing===0)return _}}const we=(D,t)=>{let n=0,s=5;t+=s;const _=new Uint32Array(1),E=new Uint32Array(1),I=new Uint8Array(1);for(;s>0;){I[0]=D[t];const U=Math.min(s,8),Q=8-U;E[0]=4278190080>>>24+Q<<Q,_[0]=(I[0]&E[0])>>Q,n=n?n<<U|_[0]:_[0],t+=1,s-=U}return n};class Ye extends ui{constructor(t){super(),this.observer=void 0,this.observer=t}resetInitSegment(t,n,s,_){super.resetInitSegment(t,n,s,_),this._audioTrack={container:"audio/ac-3",type:"audio",id:2,pid:-1,sequenceNumber:0,segmentCodec:"ac3",samples:[],manifestCodec:n,duration:_,inputTimeScale:9e4,dropped:0}}canParse(t,n){return n+64<t.length}appendFrame(t,n,s){const _=wt(t,n,s,this.basePTS,this.frameIndex);if(_!==-1)return{sample:t.samples[t.samples.length-1],length:_,missing:0}}static probe(t){if(!t)return!1;const n=ca(t,0);if(!n)return!1;const s=n.length;return t[s]===11&&t[s+1]===119&&Jr(n)!==void 0&&we(t,s)<16}}function wt(D,t,n,s,_){if(n+8>t.length||t[n]!==11||t[n+1]!==119)return-1;const E=t[n+4]>>6;if(E>=3)return-1;const U=[48e3,44100,32e3][E],Q=t[n+4]&63,ue=[64,69,96,64,70,96,80,87,120,80,88,120,96,104,144,96,105,144,112,121,168,112,122,168,128,139,192,128,140,192,160,174,240,160,175,240,192,208,288,192,209,288,224,243,336,224,244,336,256,278,384,256,279,384,320,348,480,320,349,480,384,417,576,384,418,576,448,487,672,448,488,672,512,557,768,512,558,768,640,696,960,640,697,960,768,835,1152,768,836,1152,896,975,1344,896,976,1344,1024,1114,1536,1024,1115,1536,1152,1253,1728,1152,1254,1728,1280,1393,1920,1280,1394,1920][Q*3+E]*2;if(n+ue>t.length)return-1;const de=t[n+6]>>5;let be=0;de===2?be+=2:(de&1&&de!==1&&(be+=2),de&4&&(be+=2));const Re=(t[n+6]<<8|t[n+7])>>12-be&1,at=[2,1,2,3,3,4,4,5][de]+Re,it=t[n+5]>>3,Qt=t[n+5]&7,ir=new Uint8Array([E<<6|it<<1|Qt>>2,(Qt&3)<<6|de<<3|Re<<2|Q>>4,Q<<4&224]),ur=1536/U*9e4,Ar=s+_*ur,Ur=t.subarray(n,n+ue);return D.config=ir,D.channelCount=at,D.samplerate=U,D.samples.push({unit:Ur,pts:Ar}),ue}class $t extends ui{resetInitSegment(t,n,s,_){super.resetInitSegment(t,n,s,_),this._audioTrack={container:"audio/mpeg",type:"audio",id:2,pid:-1,sequenceNumber:0,segmentCodec:"mp3",samples:[],manifestCodec:n,duration:_,inputTimeScale:9e4,dropped:0}}static probe(t){if(!t)return!1;const n=ca(t,0);let s=(n==null?void 0:n.length)||0;if(n&&t[s]===11&&t[s+1]===119&&Jr(n)!==void 0&&we(t,s)<=16)return!1;for(let _=t.length;s<_;s++)if(te(t,s))return W.log("MPEG Audio sync word found !"),!0;return!1}canParse(t,n){return Y(t,n)}appendFrame(t,n,s){if(this.basePTS!==null)return wu(t,n,s,this.basePTS,this.frameIndex)}}const cr=/\/emsg[-/]ID3/i;class Ir{constructor(t,n){this.remainderData=null,this.timeOffset=0,this.config=void 0,this.videoTrack=void 0,this.audioTrack=void 0,this.id3Track=void 0,this.txtTrack=void 0,this.config=n}resetTimeStamp(){}resetInitSegment(t,n,s,_){const E=this.videoTrack=Xi("video",1),I=this.audioTrack=Xi("audio",1),U=this.txtTrack=Xi("text",1);if(this.id3Track=Xi("id3",1),this.timeOffset=0,!(t!=null&&t.byteLength))return;const Q=Je(t);if(Q.video){const{id:G,timescale:ue,codec:de,supplemental:be}=Q.video;E.id=G,E.timescale=U.timescale=ue,E.codec=de,E.supplemental=be}if(Q.audio){const{id:G,timescale:ue,codec:de}=Q.audio;I.id=G,I.timescale=ue,I.codec=de}U.id=Zt.text,E.sampleDuration=0,E.duration=I.duration=_}resetContiguity(){this.remainderData=null}static probe(t){return et(t)}demux(t,n){this.timeOffset=n;let s=t;const _=this.videoTrack,E=this.txtTrack;if(this.config.progressive){this.remainderData&&(s=Yt(this.remainderData,t));const U=tt(s);this.remainderData=U.remainder,_.samples=U.valid||new Uint8Array}else _.samples=s;const I=this.extractID3Track(_,n);return E.samples=Ot(n,_),{videoTrack:_,audioTrack:this.audioTrack,id3Track:I,textTrack:this.txtTrack}}flush(){const t=this.timeOffset,n=this.videoTrack,s=this.txtTrack;n.samples=this.remainderData||new Uint8Array,this.remainderData=null;const _=this.extractID3Track(n,this.timeOffset);return s.samples=Ot(t,n),{videoTrack:n,audioTrack:Xi(),id3Track:_,textTrack:Xi()}}extractID3Track(t,n){const s=this.id3Track;if(t.samples.length){const _=ft(t.samples,["emsg"]);_&&_.forEach(E=>{const I=Ce(E);if(cr.test(I.schemeIdUri)){const U=Yr(I,n);let Q=I.eventDuration===4294967295?Number.POSITIVE_INFINITY:I.eventDuration/I.timeScale;Q<=.001&&(Q=Number.POSITIVE_INFINITY);const G=I.payload;s.samples.push({data:G,len:G.byteLength,dts:U,pts:U,type:gn.emsg,duration:Q})}else if(this.config.enableEmsgKLVMetadata&&I.schemeIdUri.startsWith("urn:misb:KLV:bin:1910.1")){const U=Yr(I,n);s.samples.push({data:I.payload,len:I.payload.byteLength,dts:U,pts:U,type:gn.misbklv,duration:Number.POSITIVE_INFINITY})}})}return s}demuxSampleAes(t,n,s){return Promise.reject(new Error("The MP4 demuxer does not support SAMPLE-AES decryption"))}destroy(){this.config=null,this.remainderData=null,this.videoTrack=this.audioTrack=this.id3Track=this.txtTrack=void 0}}function Yr(D,t){return r(D.presentationTime)?D.presentationTime/D.timeScale:t+D.presentationTimeDelta/D.timeScale}class fn{constructor(t,n,s){this.keyData=void 0,this.decrypter=void 0,this.keyData=s,this.decrypter=new as(n,{removePKCS7Padding:!1})}decryptBuffer(t){return this.decrypter.decrypt(t,this.keyData.key.buffer,this.keyData.iv.buffer,kn.cbc)}decryptAacSample(t,n,s){const _=t[n].unit;if(_.length<=16)return;const E=_.subarray(16,_.length-_.length%16),I=E.buffer.slice(E.byteOffset,E.byteOffset+E.length);this.decryptBuffer(I).then(U=>{const Q=new Uint8Array(U);_.set(Q,16),this.decrypter.isSync()||this.decryptAacSamples(t,n+1,s)}).catch(s)}decryptAacSamples(t,n,s){for(;;n++){if(n>=t.length){s();return}if(!(t[n].unit.length<32)&&(this.decryptAacSample(t,n,s),!this.decrypter.isSync()))return}}getAvcEncryptedData(t){const n=Math.floor((t.length-48)/160)*16+16,s=new Int8Array(n);let _=0;for(let E=32;E<t.length-16;E+=160,_+=16)s.set(t.subarray(E,E+16),_);return s}getAvcDecryptedUnit(t,n){const s=new Uint8Array(n);let _=0;for(let E=32;E<t.length-16;E+=160,_+=16)t.set(s.subarray(_,_+16),E);return t}decryptAvcSample(t,n,s,_,E){const I=Wt(E.data),U=this.getAvcEncryptedData(I);this.decryptBuffer(U.buffer).then(Q=>{E.data=this.getAvcDecryptedUnit(I,Q),this.decrypter.isSync()||this.decryptAvcSamples(t,n,s+1,_)}).catch(_)}decryptAvcSamples(t,n,s,_){if(t instanceof Uint8Array)throw new Error("Cannot decrypt samples of type Uint8Array");for(;;n++,s=0){if(n>=t.length){_();return}const E=t[n].units;for(;!(s>=E.length);s++){const I=E[s];if(!(I.data.length<=48||I.type!==1&&I.type!==5)&&(this.decryptAvcSample(t,n,s,_,I),!this.decrypter.isSync()))return}}}}class Cn{constructor(){this.VideoSample=null}createVideoSample(t,n,s){return{key:t,frame:!1,pts:n,dts:s,units:[],length:0}}getLastNalUnit(t){var n;let s=this.VideoSample,_;if((!s||s.units.length===0)&&(s=t[t.length-1]),(n=s)!=null&&n.units){const E=s.units;_=E[E.length-1]}return _}pushAccessUnit(t,n){if(t.units.length&&t.frame){if(t.pts===void 0){const s=n.samples,_=s.length;if(_){const E=s[_-1];t.pts=E.pts,t.dts=E.dts}else{n.dropped++;return}}n.samples.push(t)}}parseNALu(t,n,s){const _=n.byteLength;let E=t.naluState||0;const I=E,U=[];let Q=0,G,ue,de,be=-1,Re=0;for(E===-1&&(be=0,Re=this.getNALuType(n,0),E=0,Q=1);Q<_;){if(G=n[Q++],!E){E=G?0:1;continue}if(E===1){E=G?0:2;continue}if(!G)E=3;else if(G===1){if(ue=Q-E-1,be>=0){const Le={data:n.subarray(be,ue),type:Re};U.push(Le)}else{const Le=this.getLastNalUnit(t.samples);Le&&(I&&Q<=4-I&&Le.state&&(Le.data=Le.data.subarray(0,Le.data.byteLength-I)),ue>0&&(Le.data=Yt(Le.data,n.subarray(0,ue)),Le.state=0))}Q<_?(de=this.getNALuType(n,Q),be=Q,Re=de,E=0):E=-1}else E=0}if(be>=0&&E>=0){const Le={data:n.subarray(be,_),type:Re,state:E};U.push(Le)}if(U.length===0){const Le=this.getLastNalUnit(t.samples);Le&&(Le.data=Yt(Le.data,n))}return t.naluState=E,U}}class Wn{constructor(t){this.data=void 0,this.bytesAvailable=void 0,this.word=void 0,this.bitsAvailable=void 0,this.data=t,this.bytesAvailable=t.byteLength,this.word=0,this.bitsAvailable=0}loadWord(){const t=this.data,n=this.bytesAvailable,s=t.byteLength-n,_=new Uint8Array(4),E=Math.min(4,n);if(E===0)throw new Error("no bytes available");_.set(t.subarray(s,s+E)),this.word=new DataView(_.buffer).getUint32(0),this.bitsAvailable=E*8,this.bytesAvailable-=E}skipBits(t){let n;t=Math.min(t,this.bytesAvailable*8+this.bitsAvailable),this.bitsAvailable>t?(this.word<<=t,this.bitsAvailable-=t):(t-=this.bitsAvailable,n=t>>3,t-=n<<3,this.bytesAvailable-=n,this.loadWord(),this.word<<=t,this.bitsAvailable-=t)}readBits(t){let n=Math.min(this.bitsAvailable,t);const s=this.word>>>32-n;if(t>32&&W.error("Cannot read more than 32 bits at a time"),this.bitsAvailable-=n,this.bitsAvailable>0)this.word<<=n;else if(this.bytesAvailable>0)this.loadWord();else throw new Error("no bits available");return n=t-n,n>0&&this.bitsAvailable?s<<n|this.readBits(n):s}skipLZ(){let t;for(t=0;t<this.bitsAvailable;++t)if(this.word&2147483648>>>t)return this.word<<=t,this.bitsAvailable-=t,t;return this.loadWord(),t+this.skipLZ()}skipUEG(){this.skipBits(1+this.skipLZ())}skipEG(){this.skipBits(1+this.skipLZ())}readUEG(){const t=this.skipLZ();return this.readBits(t+1)-1}readEG(){const t=this.readUEG();return 1&t?1+t>>>1:-1*(t>>>1)}readBoolean(){return this.readBits(1)===1}readUByte(){return this.readBits(8)}readUShort(){return this.readBits(16)}readUInt(){return this.readBits(32)}}class qn extends Cn{parsePES(t,n,s,_){const E=this.parseNALu(t,s.data,_);let I=this.VideoSample,U,Q=!1;s.data=null,I&&E.length&&!t.audFound&&(this.pushAccessUnit(I,t),I=this.VideoSample=this.createVideoSample(!1,s.pts,s.dts)),E.forEach(G=>{var ue,de;switch(G.type){case 1:{let at=!1;U=!0;const it=G.data;if(Q&&it.length>4){const Qt=this.readSliceType(it);(Qt===2||Qt===4||Qt===7||Qt===9)&&(at=!0)}if(at){var be;(be=I)!=null&&be.frame&&!I.key&&(this.pushAccessUnit(I,t),I=this.VideoSample=null)}I||(I=this.VideoSample=this.createVideoSample(!0,s.pts,s.dts)),I.frame=!0,I.key=at;break}case 5:U=!0,(ue=I)!=null&&ue.frame&&!I.key&&(this.pushAccessUnit(I,t),I=this.VideoSample=null),I||(I=this.VideoSample=this.createVideoSample(!0,s.pts,s.dts)),I.key=!0,I.frame=!0;break;case 6:{U=!0,lr(G.data,1,s.pts,n.samples);break}case 7:{var Re,Le;U=!0,Q=!0;const at=G.data,it=this.readSPS(at);if(!t.sps||t.width!==it.width||t.height!==it.height||((Re=t.pixelRatio)==null?void 0:Re[0])!==it.pixelRatio[0]||((Le=t.pixelRatio)==null?void 0:Le[1])!==it.pixelRatio[1]){t.width=it.width,t.height=it.height,t.pixelRatio=it.pixelRatio,t.sps=[at];const Qt=at.subarray(1,4);let ir="avc1.";for(let ur=0;ur<3;ur++){let Ar=Qt[ur].toString(16);Ar.length<2&&(Ar="0"+Ar),ir+=Ar}t.codec=ir}break}case 8:U=!0,t.pps=[G.data];break;case 9:U=!0,t.audFound=!0,(de=I)!=null&&de.frame&&(this.pushAccessUnit(I,t),I=null),I||(I=this.VideoSample=this.createVideoSample(!1,s.pts,s.dts));break;case 12:U=!0;break;default:U=!1;break}I&&U&&I.units.push(G)}),_&&I&&(this.pushAccessUnit(I,t),this.VideoSample=null)}getNALuType(t,n){return t[n]&31}readSliceType(t){const n=new Wn(t);return n.readUByte(),n.readUEG(),n.readUEG()}skipScalingList(t,n){let s=8,_=8,E;for(let I=0;I<t;I++)_!==0&&(E=n.readEG(),_=(s+E+256)%256),s=_===0?s:_}readSPS(t){const n=new Wn(t);let s=0,_=0,E=0,I=0,U,Q,G;const ue=n.readUByte.bind(n),de=n.readBits.bind(n),be=n.readUEG.bind(n),Re=n.readBoolean.bind(n),Le=n.skipBits.bind(n),at=n.skipEG.bind(n),it=n.skipUEG.bind(n),Qt=this.skipScalingList.bind(this);ue();const ir=ue();if(de(5),Le(3),ue(),it(),ir===100||ir===110||ir===122||ir===244||ir===44||ir===83||ir===86||ir===118||ir===128){const ln=be();if(ln===3&&Le(1),it(),it(),Le(1),Re())for(Q=ln!==3?8:12,G=0;G<Q;G++)Re()&&(G<6?Qt(16,n):Qt(64,n))}it();const ur=be();if(ur===0)be();else if(ur===1)for(Le(1),at(),at(),U=be(),G=0;G<U;G++)at();it(),Le(1);const Ar=be(),Ur=be(),mn=de(1);mn===0&&Le(1),Le(1),Re()&&(s=be(),_=be(),E=be(),I=be());let zr=[1,1];if(Re()&&Re())switch(ue()){case 1:zr=[1,1];break;case 2:zr=[12,11];break;case 3:zr=[10,11];break;case 4:zr=[16,11];break;case 5:zr=[40,33];break;case 6:zr=[24,11];break;case 7:zr=[20,11];break;case 8:zr=[32,11];break;case 9:zr=[80,33];break;case 10:zr=[18,11];break;case 11:zr=[15,11];break;case 12:zr=[64,33];break;case 13:zr=[160,99];break;case 14:zr=[4,3];break;case 15:zr=[3,2];break;case 16:zr=[2,1];break;case 255:{zr=[ue()<<8|ue(),ue()<<8|ue()];break}}return{width:Math.ceil((Ar+1)*16-s*2-_*2),height:(2-mn)*(Ur+1)*16-(mn?2:4)*(E+I),pixelRatio:zr}}}class Di extends Cn{constructor(...t){super(...t),this.initVPS=null}parsePES(t,n,s,_){const E=this.parseNALu(t,s.data,_);let I=this.VideoSample,U,Q=!1;s.data=null,I&&E.length&&!t.audFound&&(this.pushAccessUnit(I,t),I=this.VideoSample=this.createVideoSample(!1,s.pts,s.dts)),E.forEach(G=>{var ue,de;switch(G.type){case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:case 8:case 9:I||(I=this.VideoSample=this.createVideoSample(!1,s.pts,s.dts)),I.frame=!0,U=!0;break;case 16:case 17:case 18:case 21:if(U=!0,Q){var be;(be=I)!=null&&be.frame&&!I.key&&(this.pushAccessUnit(I,t),I=this.VideoSample=null)}I||(I=this.VideoSample=this.createVideoSample(!0,s.pts,s.dts)),I.key=!0,I.frame=!0;break;case 19:case 20:U=!0,(ue=I)!=null&&ue.frame&&!I.key&&(this.pushAccessUnit(I,t),I=this.VideoSample=null),I||(I=this.VideoSample=this.createVideoSample(!0,s.pts,s.dts)),I.key=!0,I.frame=!0;break;case 39:U=!0,lr(G.data,2,s.pts,n.samples);break;case 32:U=!0,t.vps||(typeof t.params!="object"&&(t.params={}),t.params=y(t.params,this.readVPS(G.data)),this.initVPS=G.data),t.vps=[G.data];break;case 33:if(U=!0,Q=!0,t.vps!==void 0&&t.vps[0]!==this.initVPS&&t.sps!==void 0&&!this.matchSPS(t.sps[0],G.data)&&(this.initVPS=t.vps[0],t.sps=t.pps=void 0),!t.sps){const Re=this.readSPS(G.data);t.width=Re.width,t.height=Re.height,t.pixelRatio=Re.pixelRatio,t.codec=Re.codecString,t.sps=[],typeof t.params!="object"&&(t.params={});for(const Le in Re.params)t.params[Le]=Re.params[Le]}this.pushParameterSet(t.sps,G.data,t.vps),I||(I=this.VideoSample=this.createVideoSample(!0,s.pts,s.dts)),I.key=!0;break;case 34:if(U=!0,typeof t.params=="object"){if(!t.pps){t.pps=[];const Re=this.readPPS(G.data);for(const Le in Re)t.params[Le]=Re[Le]}this.pushParameterSet(t.pps,G.data,t.vps)}break;case 35:U=!0,t.audFound=!0,(de=I)!=null&&de.frame&&(this.pushAccessUnit(I,t),I=null),I||(I=this.VideoSample=this.createVideoSample(!1,s.pts,s.dts));break;default:U=!1;break}I&&U&&I.units.push(G)}),_&&I&&(this.pushAccessUnit(I,t),this.VideoSample=null)}pushParameterSet(t,n,s){(s&&s[0]===this.initVPS||!s&&!t.length)&&t.push(n)}getNALuType(t,n){return(t[n]&126)>>>1}ebsp2rbsp(t){const n=new Uint8Array(t.byteLength);let s=0;for(let _=0;_<t.byteLength;_++)_>=2&&t[_]===3&&t[_-1]===0&&t[_-2]===0||(n[s]=t[_],s++);return new Uint8Array(n.buffer,0,s)}pushAccessUnit(t,n){super.pushAccessUnit(t,n),this.initVPS&&(this.initVPS=null)}readVPS(t){const n=new Wn(t);n.readUByte(),n.readUByte(),n.readBits(4),n.skipBits(2),n.readBits(6);const s=n.readBits(3),_=n.readBoolean();return{numTemporalLayers:s+1,temporalIdNested:_}}readSPS(t){const n=new Wn(this.ebsp2rbsp(t));n.readUByte(),n.readUByte(),n.readBits(4);const s=n.readBits(3);n.readBoolean();const _=n.readBits(2),E=n.readBoolean(),I=n.readBits(5),U=n.readUByte(),Q=n.readUByte(),G=n.readUByte(),ue=n.readUByte(),de=n.readUByte(),be=n.readUByte(),Re=n.readUByte(),Le=n.readUByte(),at=n.readUByte(),it=n.readUByte(),Qt=n.readUByte(),ir=[],ur=[];for(let so=0;so<s;so++)ir.push(n.readBoolean()),ur.push(n.readBoolean());if(s>0)for(let so=s;so<8;so++)n.readBits(2);for(let so=0;so<s;so++)ir[so]&&(n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte(),n.readUByte()),ur[so]&&n.readUByte();n.readUEG();const Ar=n.readUEG();Ar==3&&n.skipBits(1);const Ur=n.readUEG(),mn=n.readUEG(),zr=n.readBoolean();let ln=0,on=0,Qr=0,Dn=0;zr&&(ln+=n.readUEG(),on+=n.readUEG(),Qr+=n.readUEG(),Dn+=n.readUEG());const Ei=n.readUEG(),Ki=n.readUEG(),da=n.readUEG(),Vi=n.readBoolean();for(let so=Vi?0:s;so<=s;so++)n.skipUEG(),n.skipUEG(),n.skipUEG();if(n.skipUEG(),n.skipUEG(),n.skipUEG(),n.skipUEG(),n.skipUEG(),n.skipUEG(),n.readBoolean()&&n.readBoolean())for(let cl=0;cl<4;cl++)for(let ic=0;ic<(cl===3?2:6);ic++)if(!n.readBoolean())n.readUEG();else{const xc=Math.min(64,1<<4+(cl<<1));cl>1&&n.readEG();for(let Ol=0;Ol<xc;Ol++)n.readEG()}n.readBoolean(),n.readBoolean(),n.readBoolean()&&(n.readUByte(),n.skipUEG(),n.skipUEG(),n.readBoolean());const ki=n.readUEG();let ua=0;for(let so=0;so<ki;so++){let cl=!1;if(so!==0&&(cl=n.readBoolean()),cl){so===ki&&n.readUEG(),n.readBoolean(),n.readUEG();let ic=0;for(let df=0;df<=ua;df++){const xc=n.readBoolean();let Ol=!1;xc||(Ol=n.readBoolean()),(xc||Ol)&&ic++}ua=ic}else{const ic=n.readUEG(),df=n.readUEG();ua=ic+df;for(let xc=0;xc<ic;xc++)n.readUEG(),n.readBoolean();for(let xc=0;xc<df;xc++)n.readUEG(),n.readBoolean()}}if(n.readBoolean()){const so=n.readUEG();for(let cl=0;cl<so;cl++){for(let ic=0;ic<da+4;ic++)n.readBits(1);n.readBits(1)}}let bi=0,xi=1,ys=1,bs=!0,Ss=1,Ks=0;n.readBoolean(),n.readBoolean();let pu=!1;if(n.readBoolean()){if(n.readBoolean()){const Of=n.readUByte(),Xf=[1,12,10,16,40,24,20,32,80,18,15,64,160,4,3,2],$o=[1,11,11,11,33,11,11,11,33,11,11,33,99,3,2,1];Of>0&&Of<16?(xi=Xf[Of-1],ys=$o[Of-1]):Of===255&&(xi=n.readBits(16),ys=n.readBits(16))}if(n.readBoolean()&&n.readBoolean(),n.readBoolean()&&(n.readBits(3),n.readBoolean(),n.readBoolean()&&(n.readUByte(),n.readUByte(),n.readUByte())),n.readBoolean()&&(n.readUEG(),n.readUEG()),n.readBoolean(),n.readBoolean(),n.readBoolean(),pu=n.readBoolean(),pu&&(n.skipUEG(),n.skipUEG(),n.skipUEG(),n.skipUEG()),n.readBoolean()&&(Ss=n.readBits(32),Ks=n.readBits(32),n.readBoolean()&&n.readUEG(),n.readBoolean())){const $o=n.readBoolean(),cu=n.readBoolean();let Gf=!1;($o||cu)&&(Gf=n.readBoolean(),Gf&&(n.readUByte(),n.readBits(5),n.readBoolean(),n.readBits(5)),n.readBits(4),n.readBits(4),Gf&&n.readBits(4),n.readBits(5),n.readBits(5),n.readBits(5));for(let yd=0;yd<=s;yd++){bs=n.readBoolean();const Dd=bs||n.readBoolean();let bd=!1;Dd?n.readEG():bd=n.readBoolean();const xd=bd?1:n.readUEG()+1;if($o)for(let Jf=0;Jf<xd;Jf++)n.readUEG(),n.readUEG(),Gf&&(n.readUEG(),n.readUEG()),n.skipBits(1);if(cu)for(let Jf=0;Jf<xd;Jf++)n.readUEG(),n.readUEG(),Gf&&(n.readUEG(),n.readUEG()),n.skipBits(1)}}n.readBoolean()&&(n.readBoolean(),n.readBoolean(),n.readBoolean(),bi=n.readUEG())}let nc=Ur,lu=mn;if(zr){let so=1,cl=1;Ar===1?so=cl=2:Ar==2&&(so=2),nc=Ur-so*on-so*ln,lu=mn-cl*Dn-cl*Qr}const Lo=_?["A","B","C"][_]:"",Od=U<<24|Q<<16|G<<8|ue;let Zc=0;for(let so=0;so<32;so++)Zc=(Zc|(Od>>so&1)<<31-so)>>>0;let fd=Zc.toString(16);return I===1&&fd==="2"&&(fd="6"),{codecString:`hvc1.${Lo}${I}.${fd}.${E?"H":"L"}${Qt}.B0`,params:{general_tier_flag:E,general_profile_idc:I,general_profile_space:_,general_profile_compatibility_flags:[U,Q,G,ue],general_constraint_indicator_flags:[de,be,Re,Le,at,it],general_level_idc:Qt,bit_depth:Ei+8,bit_depth_luma_minus8:Ei,bit_depth_chroma_minus8:Ki,min_spatial_segmentation_idc:bi,chroma_format_idc:Ar,frame_rate:{fixed:bs,fps:Ks/Ss}},width:nc,height:lu,pixelRatio:[xi,ys]}}readPPS(t){const n=new Wn(this.ebsp2rbsp(t));n.readUByte(),n.readUByte(),n.skipUEG(),n.skipUEG(),n.skipBits(2),n.skipBits(3),n.skipBits(2),n.skipUEG(),n.skipUEG(),n.skipEG(),n.skipBits(2),n.readBoolean()&&n.skipUEG(),n.skipEG(),n.skipEG(),n.skipBits(4);const _=n.readBoolean(),E=n.readBoolean();let I=1;return E&&_?I=0:E?I=3:_&&(I=2),{parallelismType:I}}matchSPS(t,n){return String.fromCharCode.apply(null,t).substr(3)===String.fromCharCode.apply(null,n).substr(3)}}const Fi=188;class aa{constructor(t,n,s,_){this.logger=void 0,this.observer=void 0,this.config=void 0,this.typeSupported=void 0,this.sampleAes=null,this.pmtParsed=!1,this.audioCodec=void 0,this.videoCodec=void 0,this._pmtId=-1,this._videoTrack=void 0,this._audioTrack=void 0,this._id3Track=void 0,this._txtTrack=void 0,this.aacOverFlow=null,this.remainderData=null,this.videoParser=void 0,this.observer=t,this.config=n,this.typeSupported=s,this.logger=_,this.videoParser=null}static probe(t,n){const s=aa.syncOffset(t);return s>0&&n.warn(`MPEG2-TS detected but first sync word found @ offset ${s}`),s!==-1}static syncOffset(t){const n=t.length;let s=Math.min(Fi*5,n-Fi)+1,_=0;for(;_<s;){let E=!1,I=-1,U=0;for(let Q=_;Q<n;Q+=Fi)if(t[Q]===71&&(n-Q===Fi||t[Q+Fi]===71)){if(U++,I===-1&&(I=Q,I!==0&&(s=Math.min(I+Fi*99,t.length-Fi)+1)),E||(E=ba(t,Q)===0),E&&U>1&&(I===0&&U>2||Q+Fi>s))return I}else{if(U)return-1;break}_++}return-1}static createTrack(t,n){return{container:t==="video"||t==="audio"?"video/mp2t":void 0,type:t,id:Zt[t],pid:-1,inputTimeScale:9e4,sequenceNumber:0,samples:[],dropped:0,duration:t==="audio"?n:void 0}}resetInitSegment(t,n,s,_){this.pmtParsed=!1,this._pmtId=-1,this._videoTrack=aa.createTrack("video"),this._videoTrack.duration=_,this._audioTrack=aa.createTrack("audio",_),this._id3Track=aa.createTrack("id3"),this._txtTrack=aa.createTrack("text"),this._audioTrack.segmentCodec="aac",this.videoParser=null,this.aacOverFlow=null,this.remainderData=null,this.audioCodec=n,this.videoCodec=s}resetTimeStamp(){}resetContiguity(){const{_audioTrack:t,_videoTrack:n,_id3Track:s}=this;t&&(t.pesData=null),n&&(n.pesData=null),s&&(s.pesData=null),this.aacOverFlow=null,this.remainderData=null}demux(t,n,s=!1,_=!1){s||(this.sampleAes=null);let E;const I=this._videoTrack,U=this._audioTrack,Q=this._id3Track,G=this._txtTrack;let ue=I.pid,de=I.pesData,be=U.pid,Re=Q.pid,Le=U.pesData,at=Q.pesData,it=null,Qt=this.pmtParsed,ir=this._pmtId,ur=t.length;if(this.remainderData&&(t=Yt(this.remainderData,t),ur=t.length,this.remainderData=null),ur<Fi&&!_)return this.remainderData=t,{audioTrack:U,videoTrack:I,id3Track:Q,textTrack:G};const Ar=Math.max(0,aa.syncOffset(t));ur-=(ur-Ar)%Fi,ur<t.byteLength&&!_&&(this.remainderData=new Uint8Array(t.buffer,ur,t.buffer.byteLength-ur));let Ur=0;for(let zr=Ar;zr<ur;zr+=Fi)if(t[zr]===71){const ln=!!(t[zr+1]&64),on=ba(t,zr),Qr=(t[zr+3]&48)>>4;let Dn;if(Qr>1){if(Dn=zr+5+t[zr+4],Dn===zr+Fi)continue}else Dn=zr+4;switch(on){case ue:ln&&(de&&(E=Oa(de,this.logger))&&(this.readyVideoParser(I.segmentCodec),this.videoParser!==null&&this.videoParser.parsePES(I,G,E,!1)),de={data:[],size:0}),de&&(de.data.push(t.subarray(Dn,zr+Fi)),de.size+=zr+Fi-Dn);break;case be:if(ln){if(Le&&(E=Oa(Le,this.logger)))switch(U.segmentCodec){case"aac":this.parseAACPES(U,E);break;case"mp3":this.parseMPEGPES(U,E);break;case"ac3":this.parseAC3PES(U,E);break}Le={data:[],size:0}}Le&&(Le.data.push(t.subarray(Dn,zr+Fi)),Le.size+=zr+Fi-Dn);break;case Re:ln&&(at&&(E=Oa(at,this.logger))&&this.parseID3PES(Q,E),at={data:[],size:0}),at&&(at.data.push(t.subarray(Dn,zr+Fi)),at.size+=zr+Fi-Dn);break;case 0:ln&&(Dn+=t[Dn]+1),ir=this._pmtId=Ts(t,Dn);break;case ir:{ln&&(Dn+=t[Dn]+1);const Ei=Fs(t,Dn,this.typeSupported,s,this.observer,this.logger);ue=Ei.videoPid,ue>0&&(I.pid=ue,I.segmentCodec=Ei.segmentVideoCodec),be=Ei.audioPid,be>0&&(U.pid=be,U.segmentCodec=Ei.segmentAudioCodec),Re=Ei.id3Pid,Re>0&&(Q.pid=Re),it!==null&&!Qt&&(this.logger.warn(`MPEG-TS PMT found at ${zr} after unknown PID '${it}'. Backtracking to sync byte @${Ar} to parse all TS packets.`),it=null,zr=Ar-188),Qt=this.pmtParsed=!0;break}case 17:case 8191:break;default:it=on;break}}else Ur++;Ur>0&&js(this.observer,new Error(`Found ${Ur} TS packet/s that do not start with 0x47`),void 0,this.logger),I.pesData=de,U.pesData=Le,Q.pesData=at;const mn={audioTrack:U,videoTrack:I,id3Track:Q,textTrack:G};return _&&this.extractRemainingSamples(mn),mn}flush(){const{remainderData:t}=this;this.remainderData=null;let n;return t?n=this.demux(t,-1,!1,!0):n={videoTrack:this._videoTrack,audioTrack:this._audioTrack,id3Track:this._id3Track,textTrack:this._txtTrack},this.extractRemainingSamples(n),this.sampleAes?this.decrypt(n,this.sampleAes):n}extractRemainingSamples(t){const{audioTrack:n,videoTrack:s,id3Track:_,textTrack:E}=t,I=s.pesData,U=n.pesData,Q=_.pesData;let G;if(I&&(G=Oa(I,this.logger))?(this.readyVideoParser(s.segmentCodec),this.videoParser!==null&&(this.videoParser.parsePES(s,E,G,!0),s.pesData=null)):s.pesData=I,U&&(G=Oa(U,this.logger))){switch(n.segmentCodec){case"aac":this.parseAACPES(n,G);break;case"mp3":this.parseMPEGPES(n,G);break;case"ac3":this.parseAC3PES(n,G);break}n.pesData=null}else U!=null&&U.size&&this.logger.log("last AAC PES packet truncated,might overlap between fragments"),n.pesData=U;Q&&(G=Oa(Q,this.logger))?(this.parseID3PES(_,G),_.pesData=null):_.pesData=Q}demuxSampleAes(t,n,s){const _=this.demux(t,s,!0,!this.config.progressive),E=this.sampleAes=new fn(this.observer,this.config,n);return this.decrypt(_,E)}readyVideoParser(t){this.videoParser===null&&(t==="avc"?this.videoParser=new qn:t==="hevc"&&(this.videoParser=new Di))}decrypt(t,n){return new Promise(s=>{const{audioTrack:_,videoTrack:E}=t;_.samples&&_.segmentCodec==="aac"?n.decryptAacSamples(_.samples,0,()=>{E.samples?n.decryptAvcSamples(E.samples,0,0,()=>{s(t)}):s(t)}):E.samples&&n.decryptAvcSamples(E.samples,0,0,()=>{s(t)})})}destroy(){this.observer&&this.observer.removeAllListeners(),this.config=this.logger=this.observer=null,this.aacOverFlow=this.videoParser=this.remainderData=this.sampleAes=null,this._videoTrack=this._audioTrack=this._id3Track=this._txtTrack=void 0}parseAACPES(t,n){let s=0;const _=this.aacOverFlow;let E=n.data;if(_){this.aacOverFlow=null;const de=_.missing,be=_.sample.unit.byteLength;if(de===-1)E=Yt(_.sample.unit,E);else{const Re=be-de;_.sample.unit.set(E.subarray(0,de),Re),t.samples.push(_.sample),s=_.missing}}let I,U;for(I=s,U=E.length;I<U-1&&!_s(E,I);I++);if(I!==s){let de;const be=I<U-1;if(be?de=`AAC PES did not start with ADTS header,offset:${I}`:de="No ADTS header found in AAC PES",js(this.observer,new Error(de),be,this.logger),!be)return}Ls(t,this.observer,E,I,this.audioCodec);let Q;if(n.pts!==void 0)Q=n.pts;else if(_){const de=ao(t.samplerate);Q=_.sample.pts+de}else{this.logger.warn("[tsdemuxer]: AAC PES unknown PTS");return}let G=0,ue;for(;I<U;)if(ue=pa(t,E,I,Q,G),I+=ue.length,ue.missing){this.aacOverFlow=ue;break}else for(G++;I<U-1&&!_s(E,I);I++);}parseMPEGPES(t,n){const s=n.data,_=s.length;let E=0,I=0;const U=n.pts;if(U===void 0){this.logger.warn("[tsdemuxer]: MPEG PES unknown PTS");return}for(;I<_;)if(Z(s,I)){const Q=wu(t,s,I,U,E);if(Q)I+=Q.length,E++;else break}else I++}parseAC3PES(t,n){{const s=n.data,_=n.pts;if(_===void 0){this.logger.warn("[tsdemuxer]: AC3 PES unknown PTS");return}const E=s.length;let I=0,U=0,Q;for(;U<E&&(Q=wt(t,s,U,_,I++))>0;)U+=Q}}parseID3PES(t,n){if(n.pts===void 0){this.logger.warn("[tsdemuxer]: ID3 PES unknown PTS");return}const s=y({},n,{type:this._videoTrack?gn.emsg:gn.audioId3,duration:Number.POSITIVE_INFINITY});t.samples.push(s)}}function ba(D,t){return((D[t+1]&31)<<8)+D[t+2]}function Ts(D,t){return(D[t+10]&31)<<8|D[t+11]}function Fs(D,t,n,s,_,E){const I={audioPid:-1,videoPid:-1,id3Pid:-1,segmentVideoCodec:"avc",segmentAudioCodec:"aac"},U=(D[t+1]&15)<<8|D[t+2],Q=t+3+U-4,G=(D[t+10]&15)<<8|D[t+11];for(t+=12+G;t<Q;){const ue=ba(D,t),de=(D[t+3]&15)<<8|D[t+4];switch(D[t]){case 207:if(!s){vs("ADTS AAC",E);break}case 15:I.audioPid===-1&&(I.audioPid=ue);break;case 21:I.id3Pid===-1&&(I.id3Pid=ue);break;case 219:if(!s){vs("H.264",E);break}case 27:I.videoPid===-1&&(I.videoPid=ue);break;case 3:case 4:!n.mpeg&&!n.mp3?E.log("MPEG audio found, not supported in this browser"):I.audioPid===-1&&(I.audioPid=ue,I.segmentAudioCodec="mp3");break;case 193:if(!s){vs("AC-3",E);break}case 129:n.ac3?I.audioPid===-1&&(I.audioPid=ue,I.segmentAudioCodec="ac3"):E.log("AC-3 audio found, not supported in this browser");break;case 6:if(I.audioPid===-1&&de>0){let be=t+5,Re=de;for(;Re>2;){switch(D[be]){case 106:n.ac3!==!0?E.log("AC-3 audio found, not supported in this browser for now"):(I.audioPid=ue,I.segmentAudioCodec="ac3");break}const at=D[be+1]+2;be+=at,Re-=at}}break;case 194:case 135:return js(_,new Error("Unsupported EC-3 in M2TS found"),void 0,E),I;case 36:I.videoPid===-1&&(I.videoPid=ue,I.segmentVideoCodec="hevc",E.log("HEVC in M2TS found"));break}t+=de+5}return I}function js(D,t,n,s){s.warn(`parsing error: ${t.message}`),D.emit(o.ERROR,o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_PARSING_ERROR,fatal:!1,levelRetry:n,error:t,reason:t.message})}function vs(D,t){t.log(`${D} with AES-128-CBC encryption found in unencrypted stream`)}function Oa(D,t){let n=0,s,_,E,I,U;const Q=D.data;if(!D||D.size===0)return null;for(;Q[0].length<19&&Q.length>1;)Q[0]=Yt(Q[0],Q[1]),Q.splice(1,1);if(s=Q[0],(s[0]<<16)+(s[1]<<8)+s[2]===1){if(_=(s[4]<<8)+s[5],_&&_>D.size-6)return null;const ue=s[7];ue&192&&(I=(s[9]&14)*536870912+(s[10]&255)*4194304+(s[11]&254)*16384+(s[12]&255)*128+(s[13]&254)/2,ue&64?(U=(s[14]&14)*536870912+(s[15]&255)*4194304+(s[16]&254)*16384+(s[17]&255)*128+(s[18]&254)/2,I-U>54e5&&(t.warn(`${Math.round((I-U)/9e4)}s delta between PTS and DTS, align them`),I=U)):U=I),E=s[8];let de=E+9;if(D.size<=de)return null;D.size-=de;const be=new Uint8Array(D.size);for(let Re=0,Le=Q.length;Re<Le;Re++){s=Q[Re];let at=s.byteLength;if(de)if(de>at){de-=at;continue}else s=s.subarray(de),at-=de,de=0;be.set(s,n),n+=at}return _&&(_-=E+3),{data:be,pts:I,dts:U,len:_}}return null}class fo{static getSilentFrame(t,n){switch(t){case"mp4a.40.2":if(n===1)return new Uint8Array([0,200,0,128,35,128]);if(n===2)return new Uint8Array([33,0,73,144,2,25,0,35,128]);if(n===3)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,142]);if(n===4)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,128,44,128,8,2,56]);if(n===5)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,130,48,4,153,0,33,144,2,56]);if(n===6)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,130,48,4,153,0,33,144,2,0,178,0,32,8,224]);break;default:if(n===1)return new Uint8Array([1,64,34,128,163,78,230,128,186,8,0,0,0,28,6,241,193,10,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,94]);if(n===2)return new Uint8Array([1,64,34,128,163,94,230,128,186,8,0,0,0,0,149,0,6,241,161,10,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,94]);if(n===3)return new Uint8Array([1,64,34,128,163,94,230,128,186,8,0,0,0,0,149,0,6,241,161,10,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,94]);break}}}const ws=Math.pow(2,32)-1;class yr{static init(){yr.types={avc1:[],avcC:[],hvc1:[],hvcC:[],btrt:[],dinf:[],dref:[],esds:[],ftyp:[],hdlr:[],mdat:[],mdhd:[],mdia:[],mfhd:[],minf:[],moof:[],moov:[],mp4a:[],".mp3":[],dac3:[],"ac-3":[],mvex:[],mvhd:[],pasp:[],sdtp:[],stbl:[],stco:[],stsc:[],stsd:[],stsz:[],stts:[],tfdt:[],tfhd:[],traf:[],trak:[],trun:[],trex:[],tkhd:[],vmhd:[],smhd:[]};let t;for(t in yr.types)yr.types.hasOwnProperty(t)&&(yr.types[t]=[t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2),t.charCodeAt(3)]);const n=new Uint8Array([0,0,0,0,0,0,0,0,118,105,100,101,0,0,0,0,0,0,0,0,0,0,0,0,86,105,100,101,111,72,97,110,100,108,101,114,0]),s=new Uint8Array([0,0,0,0,0,0,0,0,115,111,117,110,0,0,0,0,0,0,0,0,0,0,0,0,83,111,117,110,100,72,97,110,100,108,101,114,0]);yr.HDLR_TYPES={video:n,audio:s};const _=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,12,117,114,108,32,0,0,0,1]),E=new Uint8Array([0,0,0,0,0,0,0,0]);yr.STTS=yr.STSC=yr.STCO=E,yr.STSZ=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0]),yr.VMHD=new Uint8Array([0,0,0,1,0,0,0,0,0,0,0,0]),yr.SMHD=new Uint8Array([0,0,0,0,0,0,0,0]),yr.STSD=new Uint8Array([0,0,0,0,0,0,0,1]);const I=new Uint8Array([105,115,111,109]),U=new Uint8Array([97,118,99,49]),Q=new Uint8Array([0,0,0,1]);yr.FTYP=yr.box(yr.types.ftyp,I,Q,I,U),yr.DINF=yr.box(yr.types.dinf,yr.box(yr.types.dref,_))}static box(t,...n){let s=8,_=n.length;const E=_;for(;_--;)s+=n[_].byteLength;const I=new Uint8Array(s);for(I[0]=s>>24&255,I[1]=s>>16&255,I[2]=s>>8&255,I[3]=s&255,I.set(t,4),_=0,s=8;_<E;_++)I.set(n[_],s),s+=n[_].byteLength;return I}static hdlr(t){return yr.box(yr.types.hdlr,yr.HDLR_TYPES[t])}static mdat(t){return yr.box(yr.types.mdat,t)}static mdhd(t,n){n*=t;const s=Math.floor(n/(ws+1)),_=Math.floor(n%(ws+1));return yr.box(yr.types.mdhd,new Uint8Array([1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,t>>24&255,t>>16&255,t>>8&255,t&255,s>>24,s>>16&255,s>>8&255,s&255,_>>24,_>>16&255,_>>8&255,_&255,85,196,0,0]))}static mdia(t){return yr.box(yr.types.mdia,yr.mdhd(t.timescale||0,t.duration||0),yr.hdlr(t.type),yr.minf(t))}static mfhd(t){return yr.box(yr.types.mfhd,new Uint8Array([0,0,0,0,t>>24,t>>16&255,t>>8&255,t&255]))}static minf(t){return t.type==="audio"?yr.box(yr.types.minf,yr.box(yr.types.smhd,yr.SMHD),yr.DINF,yr.stbl(t)):yr.box(yr.types.minf,yr.box(yr.types.vmhd,yr.VMHD),yr.DINF,yr.stbl(t))}static moof(t,n,s){return yr.box(yr.types.moof,yr.mfhd(t),yr.traf(s,n))}static moov(t){let n=t.length;const s=[];for(;n--;)s[n]=yr.trak(t[n]);return yr.box.apply(null,[yr.types.moov,yr.mvhd(t[0].timescale||0,t[0].duration||0)].concat(s).concat(yr.mvex(t)))}static mvex(t){let n=t.length;const s=[];for(;n--;)s[n]=yr.trex(t[n]);return yr.box.apply(null,[yr.types.mvex,...s])}static mvhd(t,n){n*=t;const s=Math.floor(n/(ws+1)),_=Math.floor(n%(ws+1)),E=new Uint8Array([1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,t>>24&255,t>>16&255,t>>8&255,t&255,s>>24,s>>16&255,s>>8&255,s&255,_>>24,_>>16&255,_>>8&255,_&255,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255]);return yr.box(yr.types.mvhd,E)}static sdtp(t){const n=t.samples||[],s=new Uint8Array(4+n.length);let _,E;for(_=0;_<n.length;_++)E=n[_].flags,s[_+4]=E.dependsOn<<4|E.isDependedOn<<2|E.hasRedundancy;return yr.box(yr.types.sdtp,s)}static stbl(t){return yr.box(yr.types.stbl,yr.stsd(t),yr.box(yr.types.stts,yr.STTS),yr.box(yr.types.stsc,yr.STSC),yr.box(yr.types.stsz,yr.STSZ),yr.box(yr.types.stco,yr.STCO))}static avc1(t){let n=[],s=[],_,E,I;for(_=0;_<t.sps.length;_++)E=t.sps[_],I=E.byteLength,n.push(I>>>8&255),n.push(I&255),n=n.concat(Array.prototype.slice.call(E));for(_=0;_<t.pps.length;_++)E=t.pps[_],I=E.byteLength,s.push(I>>>8&255),s.push(I&255),s=s.concat(Array.prototype.slice.call(E));const U=yr.box(yr.types.avcC,new Uint8Array([1,n[3],n[4],n[5],255,224|t.sps.length].concat(n).concat([t.pps.length]).concat(s))),Q=t.width,G=t.height,ue=t.pixelRatio[0],de=t.pixelRatio[1];return yr.box(yr.types.avc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Q>>8&255,Q&255,G>>8&255,G&255,0,72,0,0,0,72,0,0,0,0,0,0,0,1,18,100,97,105,108,121,109,111,116,105,111,110,47,104,108,115,46,106,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),U,yr.box(yr.types.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192])),yr.box(yr.types.pasp,new Uint8Array([ue>>24,ue>>16&255,ue>>8&255,ue&255,de>>24,de>>16&255,de>>8&255,de&255])))}static esds(t){const n=t.config;return new Uint8Array([0,0,0,0,3,25,0,1,0,4,17,64,21,0,0,0,0,0,0,0,0,0,0,0,5,2,...n,6,1,2])}static audioStsd(t){const n=t.samplerate||0;return new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,t.channelCount||0,0,16,0,0,0,0,n>>8&255,n&255,0,0])}static mp4a(t){return yr.box(yr.types.mp4a,yr.audioStsd(t),yr.box(yr.types.esds,yr.esds(t)))}static mp3(t){return yr.box(yr.types[".mp3"],yr.audioStsd(t))}static ac3(t){return yr.box(yr.types["ac-3"],yr.audioStsd(t),yr.box(yr.types.dac3,t.config))}static stsd(t){const{segmentCodec:n}=t;if(t.type==="audio"){if(n==="aac")return yr.box(yr.types.stsd,yr.STSD,yr.mp4a(t));if(n==="ac3"&&t.config)return yr.box(yr.types.stsd,yr.STSD,yr.ac3(t));if(n==="mp3"&&t.codec==="mp3")return yr.box(yr.types.stsd,yr.STSD,yr.mp3(t))}else if(t.pps&&t.sps){if(n==="avc")return yr.box(yr.types.stsd,yr.STSD,yr.avc1(t));if(n==="hevc"&&t.vps)return yr.box(yr.types.stsd,yr.STSD,yr.hvc1(t))}else throw new Error("video track missing pps or sps");throw new Error(`unsupported ${t.type} segment codec (${n}/${t.codec})`)}static tkhd(t){const n=t.id,s=(t.duration||0)*(t.timescale||0),_=t.width||0,E=t.height||0,I=Math.floor(s/(ws+1)),U=Math.floor(s%(ws+1));return yr.box(yr.types.tkhd,new Uint8Array([1,0,0,7,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,n>>24&255,n>>16&255,n>>8&255,n&255,0,0,0,0,I>>24,I>>16&255,I>>8&255,I&255,U>>24,U>>16&255,U>>8&255,U&255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,_>>8&255,_&255,0,0,E>>8&255,E&255,0,0]))}static traf(t,n){const s=yr.sdtp(t),_=t.id,E=Math.floor(n/(ws+1)),I=Math.floor(n%(ws+1));return yr.box(yr.types.traf,yr.box(yr.types.tfhd,new Uint8Array([0,0,0,0,_>>24,_>>16&255,_>>8&255,_&255])),yr.box(yr.types.tfdt,new Uint8Array([1,0,0,0,E>>24,E>>16&255,E>>8&255,E&255,I>>24,I>>16&255,I>>8&255,I&255])),yr.trun(t,s.length+16+20+8+16+8+8),s)}static trak(t){return t.duration=t.duration||4294967295,yr.box(yr.types.trak,yr.tkhd(t),yr.mdia(t))}static trex(t){const n=t.id;return yr.box(yr.types.trex,new Uint8Array([0,0,0,0,n>>24,n>>16&255,n>>8&255,n&255,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1]))}static trun(t,n){const s=t.samples||[],_=s.length,E=12+16*_,I=new Uint8Array(E);let U,Q,G,ue,de,be;for(n+=8+E,I.set([t.type==="video"?1:0,0,15,1,_>>>24&255,_>>>16&255,_>>>8&255,_&255,n>>>24&255,n>>>16&255,n>>>8&255,n&255],0),U=0;U<_;U++)Q=s[U],G=Q.duration,ue=Q.size,de=Q.flags,be=Q.cts,I.set([G>>>24&255,G>>>16&255,G>>>8&255,G&255,ue>>>24&255,ue>>>16&255,ue>>>8&255,ue&255,de.isLeading<<2|de.dependsOn,de.isDependedOn<<6|de.hasRedundancy<<4|de.paddingValue<<1|de.isNonSync,de.degradPrio&61440,de.degradPrio&15,be>>>24&255,be>>>16&255,be>>>8&255,be&255],12+16*U);return yr.box(yr.types.trun,I)}static initSegment(t){yr.types||yr.init();const n=yr.moov(t);return Yt(yr.FTYP,n)}static hvc1(t){const n=t.params,s=[t.vps,t.sps,t.pps],_=4,E=new Uint8Array([1,n.general_profile_space<<6|(n.general_tier_flag?32:0)|n.general_profile_idc,n.general_profile_compatibility_flags[0],n.general_profile_compatibility_flags[1],n.general_profile_compatibility_flags[2],n.general_profile_compatibility_flags[3],n.general_constraint_indicator_flags[0],n.general_constraint_indicator_flags[1],n.general_constraint_indicator_flags[2],n.general_constraint_indicator_flags[3],n.general_constraint_indicator_flags[4],n.general_constraint_indicator_flags[5],n.general_level_idc,240|n.min_spatial_segmentation_idc>>8,255&n.min_spatial_segmentation_idc,252|n.parallelismType,252|n.chroma_format_idc,248|n.bit_depth_luma_minus8,248|n.bit_depth_chroma_minus8,0,parseInt(n.frame_rate.fps),_-1|n.temporal_id_nested<<2|n.num_temporal_layers<<3|(n.frame_rate.fixed?64:0),s.length]);let I=E.length;for(let Le=0;Le<s.length;Le+=1){I+=3;for(let at=0;at<s[Le].length;at+=1)I+=2+s[Le][at].length}const U=new Uint8Array(I);U.set(E,0),I=E.length;const Q=s.length-1;for(let Le=0;Le<s.length;Le+=1){U.set(new Uint8Array([32+Le|(Le===Q?128:0),0,s[Le].length]),I),I+=3;for(let at=0;at<s[Le].length;at+=1)U.set(new Uint8Array([s[Le][at].length>>8,s[Le][at].length&255]),I),I+=2,U.set(s[Le][at],I),I+=s[Le][at].length}const G=yr.box(yr.types.hvcC,U),ue=t.width,de=t.height,be=t.pixelRatio[0],Re=t.pixelRatio[1];return yr.box(yr.types.hvc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ue>>8&255,ue&255,de>>8&255,de&255,0,72,0,0,0,72,0,0,0,0,0,0,0,1,18,100,97,105,108,121,109,111,116,105,111,110,47,104,108,115,46,106,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),G,yr.box(yr.types.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192])),yr.box(yr.types.pasp,new Uint8Array([be>>24,be>>16&255,be>>8&255,be&255,Re>>24,Re>>16&255,Re>>8&255,Re&255])))}}yr.types=void 0,yr.HDLR_TYPES=void 0,yr.STTS=void 0,yr.STSC=void 0,yr.STCO=void 0,yr.STSZ=void 0,yr.VMHD=void 0,yr.SMHD=void 0,yr.STSD=void 0,yr.FTYP=void 0,yr.DINF=void 0;const ko=9e4;function Uo(D,t,n=1,s=!1){const _=D*t*n;return s?Math.round(_):_}function Su(D,t,n=1,s=!1){return Uo(D,t,1/n,s)}function Ws(D,t=!1){return Uo(D,1e3,1/ko,t)}function qo(D,t=1){return Uo(D,ko,1/t)}function yo(D){const{baseTime:t,timescale:n,trackId:s}=D;return`${t/n} (${t}/${n}) trackId: ${s}`}const oc=10*1e3,wl=1024,Sl=1152,nl=1536;let Hs=null,Gu=null;function Ku(D,t,n,s){return{duration:t,size:n,cts:s,flags:{isLeading:0,isDependedOn:0,hasRedundancy:0,degradPrio:0,dependsOn:D?2:1,isNonSync:D?0:1}}}class Ro extends R{constructor(t,n,s,_){if(super("mp4-remuxer",_),this.observer=void 0,this.config=void 0,this.typeSupported=void 0,this.ISGenerated=!1,this._initPTS=null,this._initDTS=null,this.nextVideoTs=null,this.nextAudioTs=null,this.videoSampleDuration=null,this.isAudioContiguous=!1,this.isVideoContiguous=!1,this.videoTrackConfig=void 0,this.observer=t,this.config=n,this.typeSupported=s,this.ISGenerated=!1,Hs===null){const I=(navigator.userAgent||"").match(/Chrome\/(\d+)/i);Hs=I?parseInt(I[1]):0}if(Gu===null){const E=navigator.userAgent.match(/Safari\/(\d+)/i);Gu=E?parseInt(E[1]):0}}destroy(){this.config=this.videoTrackConfig=this._initPTS=this._initDTS=null}resetTimeStamp(t){const n=this._initPTS;(!n||!t||t.trackId!==n.trackId||t.baseTime!==n.baseTime||t.timescale!==n.timescale)&&this.log(`Reset initPTS: ${n&&yo(n)} > ${t&&yo(t)}`),this._initPTS=this._initDTS=t}resetNextTimestamp(){this.log("reset next timestamp"),this.isVideoContiguous=!1,this.isAudioContiguous=!1}resetInitSegment(){this.log("ISGenerated flag reset"),this.ISGenerated=!1,this.videoTrackConfig=void 0}getVideoStartPts(t){let n=!1;const s=t[0].pts,_=t.reduce((E,I)=>{let U=I.pts,Q=U-E;return Q<-4294967296&&(n=!0,U=eu(U,s),Q=U-E),Q>0?E:U},s);return n&&this.debug("PTS rollover detected"),_}remux(t,n,s,_,E,I,U,Q){let G,ue,de,be,Re,Le,at=E,it=E;const Qt=t.pid>-1,ir=n.pid>-1,ur=n.samples.length,Ar=t.samples.length>0,Ur=U&&ur>0||ur>1;if((!Qt||Ar)&&(!ir||Ur)||this.ISGenerated||U){if(this.ISGenerated){var zr,ln,on,Qr;const da=this.videoTrackConfig;(da&&(n.width!==da.width||n.height!==da.height||((zr=n.pixelRatio)==null?void 0:zr[0])!==((ln=da.pixelRatio)==null?void 0:ln[0])||((on=n.pixelRatio)==null?void 0:on[1])!==((Qr=da.pixelRatio)==null?void 0:Qr[1]))||!da&&Ur||this.nextAudioTs===null&&Ar)&&this.resetInitSegment()}this.ISGenerated||(de=this.generateIS(t,n,E,I));const Dn=this.isVideoContiguous;let Ei=-1,Ki;if(Ur&&(Ei=zl(n.samples),!Dn&&this.config.forceKeyFrameOnDiscontinuity))if(Le=!0,Ei>0){this.warn(`Dropped ${Ei} out of ${ur} video samples due to a missing keyframe`);const da=this.getVideoStartPts(n.samples);n.samples=n.samples.slice(Ei),n.dropped+=Ei,it+=(n.samples[0].pts-da)/n.inputTimeScale,Ki=it}else Ei===-1&&(this.warn(`No keyframe found out of ${ur} video samples`),Le=!1);if(this.ISGenerated){if(Ar&&Ur){const da=this.getVideoStartPts(n.samples),fi=(eu(t.samples[0].pts,da)-da)/n.inputTimeScale;at+=Math.max(0,fi),it+=Math.max(0,-fi)}if(Ar){if(t.samplerate||(this.warn("regenerate InitSegment as audio detected"),de=this.generateIS(t,n,E,I)),ue=this.remuxAudio(t,at,this.isAudioContiguous,I,ir||Ur||Q===u.AUDIO?it:void 0),Ur){const da=ue?ue.endPTS-ue.startPTS:0;n.inputTimeScale||(this.warn("regenerate InitSegment as video detected"),de=this.generateIS(t,n,E,I)),G=this.remuxVideo(n,it,Dn,da)}}else Ur&&(G=this.remuxVideo(n,it,Dn,0));G&&(G.firstKeyFrame=Ei,G.independent=Ei!==-1,G.firstKeyFramePTS=Ki)}}return this.ISGenerated&&this._initPTS&&this._initDTS&&(s.samples.length&&(Re=bu(s,E,this._initPTS,this._initDTS)),_.samples.length&&(be=Zl(_,E,this._initPTS))),{audio:ue,video:G,initSegment:de,independent:Le,text:be,id3:Re}}computeInitPts(t,n,s,_){const E=Math.round(s*n);let I=eu(t,E);if(I<E+n)for(this.log(`Adjusting PTS for rollover in timeline near ${(E-I)/n} ${_}`);I<E+n;)I+=8589934592;return I-E}generateIS(t,n,s,_){const E=t.samples,I=n.samples,U=this.typeSupported,Q={},G=this._initPTS;let ue=!G||_,de="audio/mp4",be,Re,Le,at=-1;if(ue&&(be=Re=1/0),t.config&&E.length){switch(t.timescale=t.samplerate,t.segmentCodec){case"mp3":U.mpeg?(de="audio/mpeg",t.codec=""):U.mp3&&(t.codec="mp3");break;case"ac3":t.codec="ac-3";break}Q.audio={id:"audio",container:de,codec:t.codec,initSegment:t.segmentCodec==="mp3"&&U.mpeg?new Uint8Array(0):yr.initSegment([t]),metadata:{channelCount:t.channelCount}},ue&&(at=t.id,Le=t.inputTimeScale,!G||Le!==G.timescale?be=Re=this.computeInitPts(E[0].pts,Le,s,"audio"):ue=!1)}if(n.sps&&n.pps&&I.length){if(n.timescale=n.inputTimeScale,Q.video={id:"main",container:"video/mp4",codec:n.codec,initSegment:yr.initSegment([n]),metadata:{width:n.width,height:n.height}},ue)if(at=n.id,Le=n.inputTimeScale,!G||Le!==G.timescale){const it=this.getVideoStartPts(I),Qt=eu(I[0].dts,it),ir=this.computeInitPts(Qt,Le,s,"video"),ur=this.computeInitPts(it,Le,s,"video");Re=Math.min(Re,ir),be=Math.min(be,ur)}else ue=!1;this.videoTrackConfig={width:n.width,height:n.height,pixelRatio:n.pixelRatio}}if(Object.keys(Q).length)return this.ISGenerated=!0,ue?(G&&this.warn(`Timestamps at playlist time: ${_?"":"~"}${s} ${be/Le} != initPTS: ${G.baseTime/G.timescale} (${G.baseTime}/${G.timescale}) trackId: ${G.trackId}`),this.log(`Found initPTS at playlist time: ${s} offset: ${be/Le} (${be}/${Le}) trackId: ${at}`),this._initPTS={baseTime:be,timescale:Le,trackId:at},this._initDTS={baseTime:Re,timescale:Le,trackId:at}):be=Le=void 0,{tracks:Q,initPTS:be,timescale:Le,trackId:at}}remuxVideo(t,n,s,_){const E=t.inputTimeScale,I=t.samples,U=[],Q=I.length,G=this._initPTS,ue=G.baseTime*E/G.timescale;let de=this.nextVideoTs,be=8,Re=this.videoSampleDuration,Le,at,it=Number.POSITIVE_INFINITY,Qt=Number.NEGATIVE_INFINITY,ir=!1;if(!s||de===null){const bi=ue+n*E,xi=I[0].pts-eu(I[0].dts,I[0].pts);Hs&&de!==null&&Math.abs(bi-xi-(de+ue))<15e3?s=!0:de=bi-xi-ue}const ur=de+ue;for(let bi=0;bi<Q;bi++){const xi=I[bi];xi.pts=eu(xi.pts,ur),xi.dts=eu(xi.dts,ur),xi.dts<I[bi>0?bi-1:bi].dts&&(ir=!0)}ir&&I.sort(function(bi,xi){const ys=bi.dts-xi.dts,bs=bi.pts-xi.pts;return ys||bs}),Le=I[0].dts,at=I[I.length-1].dts;const Ar=at-Le,Ur=Ar?Math.round(Ar/(Q-1)):Re||t.inputTimeScale/30;if(s){const bi=Le-ur,xi=bi>Ur,ys=bi<-1;if((xi||ys)&&(xi?this.warn(`${(t.segmentCodec||"").toUpperCase()}: ${Ws(bi,!0)} ms (${bi}dts) hole between fragments detected at ${n.toFixed(3)}`):this.warn(`${(t.segmentCodec||"").toUpperCase()}: ${Ws(-bi,!0)} ms (${bi}dts) overlapping between fragments detected at ${n.toFixed(3)}`),!ys||ur>=I[0].pts||Hs)){Le=ur;const bs=I[0].pts-bi;if(xi)I[0].dts=Le,I[0].pts=bs;else{let Ss=!0;for(let Ks=0;Ks<I.length&&!(I[Ks].dts>bs&&Ss);Ks++){const pu=I[Ks].pts;if(I[Ks].dts-=bi,I[Ks].pts-=bi,Ks<I.length-1){const ma=I[Ks+1].pts,nc=I[Ks].pts,lu=ma<=nc,Lo=ma<=pu;Ss=lu==Lo}}}this.log(`Video: Initial PTS/DTS adjusted: ${Ws(bs,!0)}/${Ws(Le,!0)}, delta: ${Ws(bi,!0)} ms`)}}Le=Math.max(0,Le);let mn=0,zr=0,ln=Le;for(let bi=0;bi<Q;bi++){const xi=I[bi],ys=xi.units,bs=ys.length;let Ss=0;for(let Ks=0;Ks<bs;Ks++)Ss+=ys[Ks].data.length;zr+=Ss,mn+=bs,xi.length=Ss,xi.dts<ln?(xi.dts=ln,ln+=Ur/4|0||1):ln=xi.dts,it=Math.min(xi.pts,it),Qt=Math.max(xi.pts,Qt)}at=I[Q-1].dts;const on=zr+4*mn+8;let Qr;try{Qr=new Uint8Array(on)}catch(bi){this.observer.emit(o.ERROR,o.ERROR,{type:c.MUX_ERROR,details:f.REMUX_ALLOC_ERROR,fatal:!1,error:bi,bytes:on,reason:`fail allocating video mdat ${on}`});return}const Dn=new DataView(Qr.buffer);Dn.setUint32(0,on),Qr.set(yr.types.mdat,4);let Ei=!1,Ki=Number.POSITIVE_INFINITY,da=Number.POSITIVE_INFINITY,Vi=Number.NEGATIVE_INFINITY,fi=Number.NEGATIVE_INFINITY;for(let bi=0;bi<Q;bi++){const xi=I[bi],ys=xi.units;let bs=0;for(let pu=0,ma=ys.length;pu<ma;pu++){const nc=ys[pu],lu=nc.data,Lo=nc.data.byteLength;Dn.setUint32(be,Lo),be+=4,Qr.set(lu,be),be+=Lo,bs+=4+Lo}let Ss;if(bi<Q-1)Re=I[bi+1].dts-xi.dts,Ss=I[bi+1].pts-xi.pts;else{const pu=this.config,ma=bi>0?xi.dts-I[bi-1].dts:Ur;if(Ss=bi>0?xi.pts-I[bi-1].pts:Ur,pu.stretchShortVideoTrack&&this.nextAudioTs!==null){const nc=Math.floor(pu.maxBufferHole*E),lu=(_?it+_*E:this.nextAudioTs+ue)-xi.pts;lu>nc?(Re=lu-ma,Re<0?Re=ma:Ei=!0,this.log(`It is approximately ${lu/90} ms to the next segment; using duration ${Re/90} ms for the last video frame.`)):Re=ma}else Re=ma}const Ks=Math.round(xi.pts-xi.dts);Ki=Math.min(Ki,Re),Vi=Math.max(Vi,Re),da=Math.min(da,Ss),fi=Math.max(fi,Ss),U.push(Ku(xi.key,Re,bs,Ks))}if(U.length){if(Hs){if(Hs<70){const bi=U[0].flags;bi.dependsOn=2,bi.isNonSync=0}}else if(Gu&&fi-da<Vi-Ki&&Ur/Vi<.025&&U[0].cts===0){this.warn("Found irregular gaps in sample duration. Using PTS instead of DTS to determine MP4 sample duration.");let bi=Le;for(let xi=0,ys=U.length;xi<ys;xi++){const bs=bi+U[xi].duration,Ss=bi+U[xi].cts;if(xi<ys-1){const Ks=bs+U[xi+1].cts;U[xi].duration=Ks-Ss}else U[xi].duration=xi?U[xi-1].duration:Ur;U[xi].cts=0,bi=bs}}}Re=Ei||!Re?Ur:Re;const qi=at+Re;this.nextVideoTs=de=qi-ue,this.videoSampleDuration=Re,this.isVideoContiguous=!0;const Fa={data1:yr.moof(t.sequenceNumber++,Le,y(t,{samples:U})),data2:Qr,startPTS:(it-ue)/E,endPTS:(Qt+Re-ue)/E,startDTS:(Le-ue)/E,endDTS:de/E,type:"video",hasAudio:!1,hasVideo:!0,nb:U.length,dropped:t.dropped};return t.samples=[],t.dropped=0,Fa}getSamplesPerFrame(t){switch(t.segmentCodec){case"mp3":return Sl;case"ac3":return nl;default:return wl}}remuxAudio(t,n,s,_,E){const I=t.inputTimeScale,U=t.samplerate?t.samplerate:I,Q=I/U,G=this.getSamplesPerFrame(t),ue=G*Q,de=this._initPTS,be=t.segmentCodec==="mp3"&&this.typeSupported.mpeg,Re=[],Le=E!==void 0;let at=t.samples,it=be?0:8,Qt=this.nextAudioTs||-1;const ir=de.baseTime*I/de.timescale,ur=ir+n*I;if(this.isAudioContiguous=s=s||at.length&&Qt>0&&(_&&Math.abs(ur-(Qt+ir))<9e3||Math.abs(eu(at[0].pts,ur)-(Qt+ir))<20*ue),at.forEach(function(fi){fi.pts=eu(fi.pts,ur)}),!s||Qt<0){const fi=at.length;if(at=at.filter(qi=>qi.pts>=0),fi!==at.length&&this.warn(`Removed ${at.length-fi} of ${fi} samples (initPTS ${ir} / ${I})`),!at.length)return;E===0?Qt=0:_&&!Le?Qt=Math.max(0,ur-ir):Qt=at[0].pts-ir}if(t.segmentCodec==="aac"){const fi=this.config.maxAudioFramesDrift;for(let qi=0,ki=Qt+ir;qi<at.length;qi++){const ua=at[qi],Fa=ua.pts,bi=Fa-ki,xi=Math.abs(1e3*bi/I);if(bi<=-fi*ue&&Le)qi===0&&(this.warn(`Audio frame @ ${(Fa/I).toFixed(3)}s overlaps marker by ${Math.round(1e3*bi/I)} ms.`),this.nextAudioTs=Qt=Fa-ir,ki=Fa);else if(bi>=fi*ue&&xi<oc&&Le){let ys=Math.round(bi/ue);for(ki=Fa-ys*ue;ki<0&&ys&&ue;)ys--,ki+=ue;qi===0&&(this.nextAudioTs=Qt=ki-ir),this.warn(`Injecting ${ys} audio frames @ ${((ki-ir)/I).toFixed(3)}s due to ${Math.round(1e3*bi/I)} ms gap.`);for(let bs=0;bs<ys;bs++){let Ss=fo.getSilentFrame(t.parsedCodec||t.manifestCodec||t.codec,t.channelCount);Ss||(this.log("Unable to get silent frame for given audio codec; duplicating last frame instead."),Ss=ua.unit.subarray()),at.splice(qi,0,{unit:Ss,pts:ki}),ki+=ue,qi++}}ua.pts=ki,ki+=ue}}let Ar=null,Ur=null,mn,zr=0,ln=at.length;for(;ln--;)zr+=at[ln].unit.byteLength;for(let fi=0,qi=at.length;fi<qi;fi++){const ki=at[fi],ua=ki.unit;let Fa=ki.pts;if(Ur!==null){const xi=Re[fi-1];xi.duration=Math.round((Fa-Ur)/Q)}else if(s&&t.segmentCodec==="aac"&&(Fa=Qt+ir),Ar=Fa,zr>0){zr+=it;try{mn=new Uint8Array(zr)}catch(xi){this.observer.emit(o.ERROR,o.ERROR,{type:c.MUX_ERROR,details:f.REMUX_ALLOC_ERROR,fatal:!1,error:xi,bytes:zr,reason:`fail allocating audio mdat ${zr}`});return}be||(new DataView(mn.buffer).setUint32(0,zr),mn.set(yr.types.mdat,4))}else return;mn.set(ua,it);const bi=ua.byteLength;it+=bi,Re.push(Ku(!0,G,bi,0)),Ur=Fa}const on=Re.length;if(!on)return;const Qr=Re[Re.length-1];Qt=Ur-ir,this.nextAudioTs=Qt+Q*Qr.duration;const Dn=be?new Uint8Array(0):yr.moof(t.sequenceNumber++,Ar/Q,y({},t,{samples:Re}));t.samples=[];const Ei=(Ar-ir)/I,Ki=Qt/I,Vi={data1:Dn,data2:mn,startPTS:Ei,endPTS:Ki,startDTS:Ei,endDTS:Ki,type:"audio",hasAudio:!0,hasVideo:!1,nb:on};return this.isAudioContiguous=!0,Vi}}function eu(D,t){let n;if(t===null)return D;for(t<D?n=-8589934592:n=8589934592;Math.abs(D-t)>4294967296;)D+=n;return D}function zl(D){for(let t=0;t<D.length;t++)if(D[t].key)return t;return-1}function bu(D,t,n,s){const _=D.samples.length;if(!_)return;const E=D.inputTimeScale;for(let U=0;U<_;U++){const Q=D.samples[U];Q.pts=eu(Q.pts-n.baseTime*E/n.timescale,t*E)/E,Q.dts=eu(Q.dts-s.baseTime*E/s.timescale,t*E)/E}const I=D.samples;return D.samples=[],{samples:I}}function Zl(D,t,n){const s=D.samples.length;if(!s)return;const _=D.inputTimeScale;for(let I=0;I<s;I++){const U=D.samples[I];U.pts=eu(U.pts-n.baseTime*_/n.timescale,t*_)/_}D.samples.sort((I,U)=>I.pts-U.pts);const E=D.samples;return D.samples=[],{samples:E}}class So extends R{constructor(t,n,s,_){super("passthrough-remuxer",_),this.emitInitSegment=!1,this.audioCodec=void 0,this.videoCodec=void 0,this.initData=void 0,this.initPTS=null,this.initTracks=void 0,this.lastEndTime=null,this.isVideoContiguous=!1}destroy(){}resetTimeStamp(t){this.lastEndTime=null;const n=this.initPTS;n&&t&&n.baseTime===t.baseTime&&n.timescale===t.timescale||(this.initPTS=t)}resetNextTimestamp(){this.isVideoContiguous=!1,this.lastEndTime=null}resetInitSegment(t,n,s,_){this.audioCodec=n,this.videoCodec=s,this.generateInitSegment(t,_),this.emitInitSegment=!0}generateInitSegment(t,n){let{audioCodec:s,videoCodec:_}=this;if(!(t!=null&&t.byteLength)){this.initTracks=void 0,this.initData=void 0;return}const{audio:E,video:I}=this.initData=Je(t);if(n)ut(t,n);else{const Q=E||I;Q!=null&&Q.encrypted&&this.warn(`Init segment with encrypted track with has no key ("${Q.codec}")!`)}E&&(s=Wl(E,ie.AUDIO,this)),I&&(_=Wl(I,ie.VIDEO,this));const U={};E&&I?U.audiovideo={container:"video/mp4",codec:s+","+_,supplemental:I.supplemental,encrypted:I.encrypted,initSegment:t,id:"main"}:E?U.audio={container:"audio/mp4",codec:s,encrypted:E.encrypted,initSegment:t,id:"audio"}:I?U.video={container:"video/mp4",codec:_,supplemental:I.supplemental,encrypted:I.encrypted,initSegment:t,id:"main"}:this.warn("initSegment does not contain moov or trak boxes."),this.initTracks=U}remux(t,n,s,_,E,I){var U,Q;let{initPTS:G,lastEndTime:ue}=this;const de={audio:void 0,video:void 0,text:_,id3:s,initSegment:void 0};r(ue)||(ue=this.lastEndTime=E||0);const be=n.samples;if(!be.length)return de;const Re={initPTS:void 0,timescale:void 0,trackId:void 0};let Le=this.initData;if((U=Le)!=null&&U.length||(this.generateInitSegment(be),Le=this.initData),!((Q=Le)!=null&&Q.length))return this.warn("Failed to generate initSegment."),de;this.emitInitSegment&&(Re.tracks=this.initTracks,this.emitInitSegment=!1);const at=Me(be,Le,this),it=Le.audio?at[Le.audio.id]:null,Qt=Le.video?at[Le.video.id]:null,ir=au(Qt,1/0),ur=au(it,1/0),Ar=au(Qt,0,!0),Ur=au(it,0,!0);let mn=E,zr=0;const ln=it&&(!Qt||!G&&ur<ir||G&&G.trackId===Le.audio.id),on=ln?it:Qt;if(on){const ki=on.timescale,ua=on.start-E*ki,Fa=ln?Le.audio.id:Le.video.id;mn=on.start/ki,zr=ln?Ur-ur:Ar-ir,(I||!G)&&(hl(G,mn,E,zr)||ki!==G.timescale)&&(G&&this.warn(`Timestamps at playlist time: ${I?"":"~"}${E} ${ua/ki} != initPTS: ${G.baseTime/G.timescale} (${G.baseTime}/${G.timescale}) trackId: ${G.trackId}`),this.log(`Found initPTS at playlist time: ${E} offset: ${mn-E} (${ua}/${ki}) trackId: ${Fa}`),G=null,Re.initPTS=ua,Re.timescale=ki,Re.trackId=Fa)}else this.warn(`No audio or video samples found for initPTS at playlist time: ${E}`);G?(Re.initPTS=G.baseTime,Re.timescale=G.timescale,Re.trackId=G.trackId):((!Re.timescale||Re.trackId===void 0||Re.initPTS===void 0)&&(this.warn("Could not set initPTS"),Re.initPTS=mn,Re.timescale=1,Re.trackId=-1),this.initPTS=G={baseTime:Re.initPTS,timescale:Re.timescale,trackId:Re.trackId});const Qr=mn-G.baseTime/G.timescale,Dn=Qr+zr;zr>0?this.lastEndTime=Dn:(this.warn("Duration parsed from mp4 should be greater than zero"),this.resetNextTimestamp());const Ei=!!Le.audio,Ki=!!Le.video;let da="";Ei&&(da+="audio"),Ki&&(da+="video");const Vi=(Le.audio?Le.audio.encrypted:!1)||(Le.video?Le.video.encrypted:!1),fi={data1:be,startPTS:Qr,startDTS:Qr,endPTS:Dn,endDTS:Dn,type:da,hasAudio:Ei,hasVideo:Ki,nb:1,dropped:0,encrypted:Vi};de.audio=Ei&&!Ki?fi:void 0,de.video=Ki?fi:void 0;const qi=Qt==null?void 0:Qt.sampleCount;if(qi){const ki=Qt.keyFrameIndex,ua=ki!==-1;fi.nb=qi,fi.dropped=ki===0||this.isVideoContiguous?0:ua?ki:qi,fi.independent=ua,fi.firstKeyFrame=ki,ua&&Qt.keyFrameStart&&(fi.firstKeyFramePTS=(Qt.keyFrameStart-G.baseTime)/G.timescale),this.isVideoContiguous||(de.independent=ua),this.isVideoContiguous||(this.isVideoContiguous=ua),fi.dropped&&this.warn(`fmp4 does not start with IDR: firstIDR ${ki}/${qi} dropped: ${fi.dropped} start: ${fi.firstKeyFramePTS||"NA"}`)}return de.initSegment=Re,de.id3=bu(s,E,G,G),_.samples.length&&(de.text=Zl(_,E,G)),de}}function au(D,t,n=!1){return(D==null?void 0:D.start)!==void 0?(D.start+(n?D.duration:0))/D.timescale:t}function hl(D,t,n,s){if(D===null)return!0;const _=Math.max(s,1),E=t-D.baseTime/D.timescale;return Math.abs(E-n)>_}function Wl(D,t,n){const s=D.codec;return s&&s.length>4?s:t===ie.AUDIO?s==="ec-3"||s==="ac-3"||s==="alac"?s:s==="fLaC"||s==="Opus"?mt(s,!1):(n.warn(`Unhandled audio codec "${s}" in mp4 MAP`),s||"mp4a"):(n.warn(`Unhandled video codec "${s}" in mp4 MAP`),s||"avc1")}let tu;try{tu=self.performance.now.bind(self.performance)}catch(D){tu=Date.now}const Hl=[{demux:Ir,remux:So},{demux:aa,remux:Ro},{demux:he,remux:Ro},{demux:$t,remux:Ro}];Hl.splice(2,0,{demux:Ye,remux:Ro});class Gl{constructor(t,n,s,_,E,I){this.asyncResult=!1,this.logger=void 0,this.observer=void 0,this.typeSupported=void 0,this.config=void 0,this.id=void 0,this.demuxer=void 0,this.remuxer=void 0,this.decrypter=void 0,this.probe=void 0,this.decryptionPromise=null,this.transmuxConfig=void 0,this.currentTransmuxState=void 0,this.observer=t,this.typeSupported=n,this.config=s,this.id=E,this.logger=I}configure(t){this.transmuxConfig=t,this.decrypter&&this.decrypter.reset()}push(t,n,s,_){const E=s.transmuxing;E.executeStart=tu();let I=new Uint8Array(t);const{currentTransmuxState:U,transmuxConfig:Q}=this;_&&(this.currentTransmuxState=_);const{contiguous:G,discontinuity:ue,trackSwitch:de,accurateTimeOffset:be,timeOffset:Re,initSegmentChange:Le}=_||U,{audioCodec:at,videoCodec:it,defaultInitPts:Qt,duration:ir,initSegmentData:ur}=Q,Ar=li(I,n);if(Ar&&Oo(Ar.method)){const ln=this.getDecrypter(),on=nu(Ar.method);if(ln.isSync()){let Qr=ln.softwareDecrypt(I,Ar.key.buffer,Ar.iv.buffer,on);if(s.part>-1){const Ei=ln.flush();Qr=Ei&&Ei.buffer}if(!Qr)return E.executeEnd=tu(),uc(s);I=new Uint8Array(Qr)}else return this.asyncResult=!0,this.decryptionPromise=ln.webCryptoDecrypt(I,Ar.key.buffer,Ar.iv.buffer,on).then(Qr=>{const Dn=this.push(Qr,null,s);return this.decryptionPromise=null,Dn}),this.decryptionPromise}const Ur=this.needsProbing(ue,de);if(Ur){const ln=this.configureTransmuxer(I);if(ln)return this.logger.warn(`[transmuxer] ${ln.message}`),this.observer.emit(o.ERROR,o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_PARSING_ERROR,fatal:!1,error:ln,reason:ln.message}),E.executeEnd=tu(),uc(s)}(ue||de||Le||Ur)&&this.resetInitSegment(ur,at,it,ir,n),(ue||Le||Ur)&&this.resetInitialTimestamp(Qt),G||this.resetContiguity();const mn=this.transmux(I,Ar,Re,be,s);this.asyncResult=ho(mn);const zr=this.currentTransmuxState;return zr.contiguous=!0,zr.discontinuity=!1,zr.trackSwitch=!1,E.executeEnd=tu(),mn}flush(t){const n=t.transmuxing;n.executeStart=tu();const{decrypter:s,currentTransmuxState:_,decryptionPromise:E}=this;if(E)return this.asyncResult=!0,E.then(()=>this.flush(t));const I=[],{timeOffset:U}=_;if(s){const de=s.flush();de&&I.push(this.push(de.buffer,null,t))}const{demuxer:Q,remuxer:G}=this;if(!Q||!G){n.executeEnd=tu();const de=[uc(t)];return this.asyncResult?Promise.resolve(de):de}const ue=Q.flush(U);return ho(ue)?(this.asyncResult=!0,ue.then(de=>(this.flushRemux(I,de,t),I))):(this.flushRemux(I,ue,t),this.asyncResult?Promise.resolve(I):I)}flushRemux(t,n,s){const{audioTrack:_,videoTrack:E,id3Track:I,textTrack:U}=n,{accurateTimeOffset:Q,timeOffset:G}=this.currentTransmuxState;this.logger.log(`[transmuxer.ts]: Flushed ${this.id} sn: ${s.sn}${s.part>-1?" part: "+s.part:""} of ${this.id===u.MAIN?"level":"track"} ${s.level}`);const ue=this.remuxer.remux(_,E,I,U,G,Q,!0,this.id);t.push({remuxResult:ue,chunkMeta:s}),s.transmuxing.executeEnd=tu()}resetInitialTimestamp(t){const{demuxer:n,remuxer:s}=this;!n||!s||(n.resetTimeStamp(t),s.resetTimeStamp(t))}resetContiguity(){const{demuxer:t,remuxer:n}=this;!t||!n||(t.resetContiguity(),n.resetNextTimestamp())}resetInitSegment(t,n,s,_,E){const{demuxer:I,remuxer:U}=this;!I||!U||(I.resetInitSegment(t,n,s,_),U.resetInitSegment(t,n,s,E))}destroy(){this.demuxer&&(this.demuxer.destroy(),this.demuxer=void 0),this.remuxer&&(this.remuxer.destroy(),this.remuxer=void 0)}transmux(t,n,s,_,E){let I;return n&&n.method==="SAMPLE-AES"?I=this.transmuxSampleAes(t,n,s,_,E):I=this.transmuxUnencrypted(t,s,_,E),I}transmuxUnencrypted(t,n,s,_){const{audioTrack:E,videoTrack:I,id3Track:U,textTrack:Q}=this.demuxer.demux(t,n,!1,!this.config.progressive);return{remuxResult:this.remuxer.remux(E,I,U,Q,n,s,!1,this.id),chunkMeta:_}}transmuxSampleAes(t,n,s,_,E){return this.demuxer.demuxSampleAes(t,n,s).then(I=>({remuxResult:this.remuxer.remux(I.audioTrack,I.videoTrack,I.id3Track,I.textTrack,s,_,!1,this.id),chunkMeta:E}))}configureTransmuxer(t){const{config:n,observer:s,typeSupported:_}=this;let E;for(let de=0,be=Hl.length;de<be;de++){var I;if((I=Hl[de].demux)!=null&&I.probe(t,this.logger)){E=Hl[de];break}}if(!E)return new Error("Failed to find demuxer by probing fragment data");const U=this.demuxer,Q=this.remuxer,G=E.remux,ue=E.demux;(!Q||!(Q instanceof G))&&(this.remuxer=new G(s,n,_,this.logger)),(!U||!(U instanceof ue))&&(this.demuxer=new ue(s,n,_,this.logger),this.probe=ue.probe)}needsProbing(t,n){return!this.demuxer||!this.remuxer||t||n}getDecrypter(){let t=this.decrypter;return t||(t=this.decrypter=new as(this.config)),t}}function li(D,t){let n=null;return D.byteLength>0&&(t==null?void 0:t.key)!=null&&t.iv!==null&&t.method!=null&&(n=t),n}const uc=D=>({remuxResult:{},chunkMeta:D});function ho(D){return"then"in D&&D.then instanceof Function}class Hc{constructor(t,n,s,_,E){this.audioCodec=void 0,this.videoCodec=void 0,this.initSegmentData=void 0,this.duration=void 0,this.defaultInitPts=void 0,this.audioCodec=t,this.videoCodec=n,this.initSegmentData=s,this.duration=_,this.defaultInitPts=E||null}}class $u{constructor(t,n,s,_,E,I){this.discontinuity=void 0,this.contiguous=void 0,this.accurateTimeOffset=void 0,this.trackSwitch=void 0,this.timeOffset=void 0,this.initSegmentChange=void 0,this.discontinuity=t,this.contiguous=n,this.accurateTimeOffset=s,this.trackSwitch=_,this.timeOffset=E,this.initSegmentChange=I}}let pl=0;class il{constructor(t,n,s,_){this.error=null,this.hls=void 0,this.id=void 0,this.instanceNo=pl++,this.observer=void 0,this.frag=null,this.part=null,this.useWorker=void 0,this.workerContext=null,this.transmuxer=null,this.onTransmuxComplete=void 0,this.onFlush=void 0,this.onWorkerMessage=Q=>{const G=Q.data,ue=this.hls;if(!(!ue||!(G!=null&&G.event)||G.instanceNo!==this.instanceNo))switch(G.event){case"init":{var de;const be=(de=this.workerContext)==null?void 0:de.objectURL;be&&self.URL.revokeObjectURL(be);break}case"transmuxComplete":{this.handleTransmuxComplete(G.data);break}case"flush":{this.onFlush(G.data);break}case"workerLog":{ue.logger[G.data.logType]&&ue.logger[G.data.logType](G.data.message);break}default:{G.data=G.data||{},G.data.frag=this.frag,G.data.part=this.part,G.data.id=this.id,ue.trigger(G.event,G.data);break}}},this.onWorkerError=Q=>{if(!this.hls)return;const G=new Error(`${Q.message} (${Q.filename}:${Q.lineno})`);this.hls.config.enableWorker=!1,this.hls.logger.warn(`Error in "${this.id}" Web Worker, fallback to inline`),this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.INTERNAL_EXCEPTION,fatal:!1,event:"demuxerWorker",error:G})};const E=t.config;this.hls=t,this.id=n,this.useWorker=!!E.enableWorker,this.onTransmuxComplete=s,this.onFlush=_;const I=(Q,G)=>{G=G||{},G.frag=this.frag||void 0,Q===o.ERROR&&(G=G,G.parent=this.id,G.part=this.part,this.error=G.error),this.hls.trigger(Q,G)};this.observer=new ri,this.observer.on(o.FRAG_DECRYPTED,I),this.observer.on(o.ERROR,I);const U=Xt(E.preferManagedMediaSource);if(this.useWorker&&typeof Worker!="undefined"){const Q=this.hls.logger;if(E.workerPath||Li()){try{E.workerPath?(Q.log(`loading Web Worker ${E.workerPath} for "${n}"`),this.workerContext=Wi(E.workerPath)):(Q.log(`injecting Web Worker for "${n}"`),this.workerContext=na());const{worker:ue}=this.workerContext;ue.addEventListener("message",this.onWorkerMessage),ue.addEventListener("error",this.onWorkerError),ue.postMessage({instanceNo:this.instanceNo,cmd:"init",typeSupported:U,id:n,config:Yi(E)})}catch(ue){Q.warn(`Error setting up "${n}" Web Worker, fallback to inline`,ue),this.terminateWorker(),this.error=null,this.transmuxer=new Gl(this.observer,U,E,"",n,t.logger)}return}}this.transmuxer=new Gl(this.observer,U,E,"",n,t.logger)}reset(){if(this.frag=null,this.part=null,this.workerContext){const t=this.instanceNo;this.instanceNo=pl++;const n=this.hls.config,s=Xt(n.preferManagedMediaSource);this.workerContext.worker.postMessage({instanceNo:this.instanceNo,cmd:"reset",resetNo:t,typeSupported:s,id:this.id,config:Yi(n)})}}terminateWorker(){if(this.workerContext){const{worker:t}=this.workerContext;this.workerContext=null,t.removeEventListener("message",this.onWorkerMessage),t.removeEventListener("error",this.onWorkerError),Ci(this.hls.config.workerPath)}}destroy(){if(this.workerContext)this.terminateWorker(),this.onWorkerMessage=this.onWorkerError=null;else{const n=this.transmuxer;n&&(n.destroy(),this.transmuxer=null)}const t=this.observer;t&&t.removeAllListeners(),this.frag=null,this.part=null,this.observer=null,this.hls=null}push(t,n,s,_,E,I,U,Q,G,ue){var de,be;G.transmuxing.start=self.performance.now();const{instanceNo:Re,transmuxer:Le}=this,at=I?I.start:E.start,it=E.decryptdata,Qt=this.frag,ir=!(Qt&&E.cc===Qt.cc),ur=!(Qt&&G.level===Qt.level),Ar=Qt?G.sn-Qt.sn:-1,Ur=this.part?G.part-this.part.index:-1,mn=Ar===0&&G.id>1&&G.id===(Qt==null?void 0:Qt.stats.chunkCount),zr=!ur&&(Ar===1||Ar===0&&(Ur===1||mn&&Ur<=0)),ln=self.performance.now();(ur||Ar||E.stats.parsing.start===0)&&(E.stats.parsing.start=ln),I&&(Ur||!zr)&&(I.stats.parsing.start=ln);const on=!(Qt&&((de=E.initSegment)==null?void 0:de.url)===((be=Qt.initSegment)==null?void 0:be.url)),Qr=new $u(ir,zr,Q,ur,at,on);if(!zr||ir||on){this.hls.logger.log(`[transmuxer-interface]: Starting new transmux session for ${E.type} sn: ${G.sn}${G.part>-1?" part: "+G.part:""} ${this.id===u.MAIN?"level":"track"}: ${G.level} id: ${G.id}
discontinuity: ${ir}
trackSwitch: ${ur}
contiguous: ${zr}
accurateTimeOffset: ${Q}
timeOffset: ${at}
initSegmentChange: ${on}`);const Dn=new Hc(s,_,n,U,ue);this.configureTransmuxer(Dn)}if(this.frag=E,this.part=I,this.workerContext)this.workerContext.worker.postMessage({instanceNo:Re,cmd:"demux",data:t,decryptdata:it,chunkMeta:G,state:Qr},t instanceof ArrayBuffer?[t]:[]);else if(Le){const Dn=Le.push(t,it,G,Qr);ho(Dn)?Dn.then(Ei=>{this.handleTransmuxComplete(Ei)}).catch(Ei=>{this.transmuxerError(Ei,G,"transmuxer-interface push error")}):this.handleTransmuxComplete(Dn)}}flush(t){t.transmuxing.start=self.performance.now();const{instanceNo:n,transmuxer:s}=this;if(this.workerContext)this.workerContext.worker.postMessage({instanceNo:n,cmd:"flush",chunkMeta:t});else if(s){const _=s.flush(t);ho(_)?_.then(E=>{this.handleFlushResult(E,t)}).catch(E=>{this.transmuxerError(E,t,"transmuxer-interface flush error")}):this.handleFlushResult(_,t)}}transmuxerError(t,n,s){this.hls&&(this.error=t,this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_PARSING_ERROR,chunkMeta:n,frag:this.frag||void 0,part:this.part||void 0,fatal:!1,error:t,err:t,reason:s}))}handleFlushResult(t,n){t.forEach(s=>{this.handleTransmuxComplete(s)}),this.onFlush(n)}configureTransmuxer(t){const{instanceNo:n,transmuxer:s}=this;this.workerContext?this.workerContext.worker.postMessage({instanceNo:n,cmd:"configure",config:t}):s&&s.configure(t)}handleTransmuxComplete(t){t.chunkMeta.transmuxing.end=self.performance.now(),this.onTransmuxComplete(t)}}const Ac=100;class Gc extends Ft{constructor(t,n,s){super(t,n,s,"audio-stream-controller",u.AUDIO),this.mainAnchor=null,this.mainFragLoading=null,this.audioOnly=!1,this.bufferedTrack=null,this.switchingTrack=null,this.trackId=-1,this.waitingData=null,this.mainDetails=null,this.flushing=!1,this.bufferFlushed=!1,this.cachedTrackLoadedData=null,this.registerListeners()}onHandlerDestroying(){this.unregisterListeners(),super.onHandlerDestroying(),this.resetItem()}resetItem(){this.mainDetails=this.mainAnchor=this.mainFragLoading=this.bufferedTrack=this.switchingTrack=this.waitingData=this.cachedTrackLoadedData=null}registerListeners(){super.registerListeners();const{hls:t}=this;t.on(o.LEVEL_LOADED,this.onLevelLoaded,this),t.on(o.AUDIO_TRACKS_UPDATED,this.onAudioTracksUpdated,this),t.on(o.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.on(o.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.on(o.BUFFER_RESET,this.onBufferReset,this),t.on(o.BUFFER_CREATED,this.onBufferCreated,this),t.on(o.BUFFER_FLUSHING,this.onBufferFlushing,this),t.on(o.BUFFER_FLUSHED,this.onBufferFlushed,this),t.on(o.INIT_PTS_FOUND,this.onInitPtsFound,this),t.on(o.FRAG_LOADING,this.onFragLoading,this),t.on(o.FRAG_BUFFERED,this.onFragBuffered,this)}unregisterListeners(){const{hls:t}=this;t&&(super.unregisterListeners(),t.off(o.LEVEL_LOADED,this.onLevelLoaded,this),t.off(o.AUDIO_TRACKS_UPDATED,this.onAudioTracksUpdated,this),t.off(o.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.off(o.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.off(o.BUFFER_RESET,this.onBufferReset,this),t.off(o.BUFFER_CREATED,this.onBufferCreated,this),t.off(o.BUFFER_FLUSHING,this.onBufferFlushing,this),t.off(o.BUFFER_FLUSHED,this.onBufferFlushed,this),t.off(o.INIT_PTS_FOUND,this.onInitPtsFound,this),t.off(o.FRAG_LOADING,this.onFragLoading,this),t.off(o.FRAG_BUFFERED,this.onFragBuffered,this))}onInitPtsFound(t,{frag:n,id:s,initPTS:_,timescale:E,trackId:I}){if(s===u.MAIN){const U=n.cc,Q=this.fragCurrent;if(this.initPTS[U]={baseTime:_,timescale:E,trackId:I},this.log(`InitPTS for cc: ${U} found from main: ${_/E} (${_}/${E}) trackId: ${I}`),this.mainAnchor=n,this.state===Pe.WAITING_INIT_PTS){const G=this.waitingData;(!G&&!this.loadingParts||G&&G.frag.cc!==U)&&this.syncWithAnchor(n,G==null?void 0:G.frag)}else!this.hls.hasEnoughToStart&&Q&&Q.cc!==U?(Q.abortRequests(),this.syncWithAnchor(n,Q)):this.state===Pe.IDLE&&this.tick()}}getLoadPosition(){return!this.startFragRequested&&this.nextLoadPosition>=0?this.nextLoadPosition:super.getLoadPosition()}syncWithAnchor(t,n){var s;const _=((s=this.mainFragLoading)==null?void 0:s.frag)||null;if(n&&(_==null?void 0:_.cc)===n.cc)return;const E=(_||t).cc,I=this.getLevelDetails(),U=this.getLoadPosition(),Q=en(I,E,U);Q&&(this.log(`Syncing with main frag at ${Q.start} cc ${Q.cc}`),this.startFragRequested=!1,this.nextLoadPosition=Q.start,this.resetLoadingState(),this.state===Pe.IDLE&&this.doTickIdle())}startLoad(t,n){if(!this.levels){this.startPosition=t,this.state=Pe.STOPPED;return}const s=this.lastCurrentTime;this.stopLoad(),this.setInterval(Ac),s>0&&t===-1?(this.log(`Override startPosition with lastCurrentTime @${s.toFixed(3)}`),t=s,this.state=Pe.IDLE):this.state=Pe.WAITING_TRACK,this.nextLoadPosition=this.lastCurrentTime=t+this.timelineOffset,this.startPosition=n?-1:t,this.tick()}doTick(){switch(this.state){case Pe.IDLE:this.doTickIdle();break;case Pe.WAITING_TRACK:{const{levels:t,trackId:n}=this,s=t==null?void 0:t[n],_=s==null?void 0:s.details;if(_&&!this.waitForLive(s)){if(this.waitForCdnTuneIn(_))break;this.state=Pe.WAITING_INIT_PTS}break}case Pe.FRAG_LOADING_WAITING_RETRY:{this.checkRetryDate();break}case Pe.WAITING_INIT_PTS:{const t=this.waitingData;if(t){const{frag:n,part:s,cache:_,complete:E}=t,I=this.mainAnchor;if(this.initPTS[n.cc]!==void 0){this.waitingData=null,this.state=Pe.FRAG_LOADING;const U=_.flush().buffer,Q={frag:n,part:s,payload:U,networkDetails:null};this._handleFragmentLoadProgress(Q),E&&super._handleFragmentLoadComplete(Q)}else I&&I.cc!==t.frag.cc&&this.syncWithAnchor(I,t.frag)}else this.state=Pe.IDLE}}this.onTickEnd()}resetLoadingState(){const t=this.waitingData;t&&(this.fragmentTracker.removeFragment(t.frag),this.waitingData=null),super.resetLoadingState()}onTickEnd(){const{media:t}=this;t!=null&&t.readyState&&(this.lastCurrentTime=t.currentTime)}doTickIdle(){var t;const{hls:n,levels:s,media:_,trackId:E}=this,I=n.config;if(!this.buffering||!_&&!this.primaryPrefetch&&(this.startFragRequested||!I.startFragPrefetch)||!(s!=null&&s[E]))return;const U=s[E],Q=U.details;if(!Q||this.waitForLive(U)||this.waitForCdnTuneIn(Q)){this.state=Pe.WAITING_TRACK,this.startFragRequested=!1;return}const G=this.mediaBuffer?this.mediaBuffer:this.media;this.bufferFlushed&&G&&(this.bufferFlushed=!1,this.afterBufferFlushed(G,ie.AUDIO,u.AUDIO));const ue=this.getFwdBufferInfo(G,u.AUDIO);if(ue===null)return;if(!this.switchingTrack&&this._streamEnded(ue,Q)){n.trigger(o.BUFFER_EOS,{type:"audio"}),this.state=Pe.ENDED;return}const de=ue.len,be=n.maxBufferLength,Re=Q.fragments,Le=Re[0].start,at=this.getLoadPosition(),it=this.flushing?at:ue.end;if(this.switchingTrack&&_){const ur=at;Q.PTSKnown&&ur<Le&&(ue.end>Le||ue.nextStart)&&(this.log("Alt audio track ahead of main track, seek to start of alt audio track"),_.currentTime=Le+.05)}if(de>=be&&!this.switchingTrack&&it<Re[Re.length-1].start)return;let Qt=this.getNextFragment(it,Q);if(Qt&&this.isLoopLoading(Qt,it)&&(Qt=this.getNextFragmentLoopLoading(Qt,Q,ue,u.MAIN,be)),!Qt){this.bufferFlushed=!0;return}let ir=((t=this.mainFragLoading)==null?void 0:t.frag)||null;if(!this.audioOnly&&this.startFragRequested&&ir&&Se(Qt)&&!Qt.endList&&(!Q.live||!this.loadingParts&&it<this.hls.liveSyncPosition)&&(this.fragmentTracker.getState(ir)===hn.OK&&(this.mainFragLoading=ir=null),ir&&Se(ir))){if(Qt.start>ir.end){const Ar=this.fragmentTracker.getFragAtPos(it,u.MAIN);Ar&&Ar.end>ir.end&&(ir=Ar,this.mainFragLoading={frag:Ar,targetBufferTime:null})}if(Qt.start>ir.end)return}this.loadFragment(Qt,U,it)}onMediaDetaching(t,n){this.bufferFlushed=this.flushing=!1,super.onMediaDetaching(t,n)}onAudioTracksUpdated(t,{audioTracks:n}){this.resetTransmuxer(),this.levels=n.map(s=>new $i(s))}onAudioTrackSwitching(t,n){const s=!!n.url;this.trackId=n.id;const{fragCurrent:_}=this;_&&(_.abortRequests(),this.removeUnbufferedFrags(_.start)),this.resetLoadingState(),s?(this.switchingTrack=n,this.flushAudioIfNeeded(n),this.state!==Pe.STOPPED&&(this.setInterval(Ac),this.state=Pe.IDLE,this.tick())):(this.resetTransmuxer(),this.switchingTrack=null,this.bufferedTrack=n,this.clearInterval())}onManifestLoading(){super.onManifestLoading(),this.bufferFlushed=this.flushing=this.audioOnly=!1,this.resetItem(),this.trackId=-1}onLevelLoaded(t,n){this.mainDetails=n.details;const s=this.cachedTrackLoadedData;s&&(this.cachedTrackLoadedData=null,this.onAudioTrackLoaded(o.AUDIO_TRACK_LOADED,s))}onAudioTrackLoaded(t,n){var s;const{levels:_}=this,{details:E,id:I,groupId:U,track:Q}=n;if(!_){this.warn(`Audio tracks reset while loading track ${I} "${Q.name}" of "${U}"`);return}const G=this.mainDetails;if(!G||E.endCC>G.endCC||G.expired){this.cachedTrackLoadedData=n,this.state!==Pe.STOPPED&&(this.state=Pe.WAITING_TRACK);return}this.cachedTrackLoadedData=null,this.log(`Audio track ${I} "${Q.name}" of "${U}" loaded [${E.startSN},${E.endSN}]${E.lastPartSn?`[part-${E.lastPartSn}-${E.lastPartIndex}]`:""},duration:${E.totalduration}`);const ue=_[I];let de=0;if(E.live||(s=ue.details)!=null&&s.live){if(this.checkLiveUpdate(E),E.deltaUpdateFailed)return;if(ue.details){var be;de=this.alignPlaylists(E,ue.details,(be=this.levelLastLoaded)==null?void 0:be.details)}E.alignedSliding||(ts(E,G),E.alignedSliding||cs(E,G),de=E.fragmentStart)}ue.details=E,this.levelLastLoaded=ue,this.startFragRequested||this.setStartPosition(G,de),this.hls.trigger(o.AUDIO_TRACK_UPDATED,{details:E,id:I,groupId:n.groupId}),this.state===Pe.WAITING_TRACK&&!this.waitForCdnTuneIn(E)&&(this.state=Pe.IDLE),this.tick()}_handleFragmentLoadProgress(t){var n;const s=t.frag,{part:_,payload:E}=t,{config:I,trackId:U,levels:Q}=this;if(!Q){this.warn(`Audio tracks were reset while fragment load was in progress. Fragment ${s.sn} of level ${s.level} will not be buffered`);return}const G=Q[U];if(!G){this.warn("Audio track is undefined on fragment load progress");return}const ue=G.details;if(!ue){this.warn("Audio track details undefined on fragment load progress"),this.removeUnbufferedFrags(s.start);return}const de=I.defaultAudioCodec||G.audioCodec||"mp4a.40.2";let be=this.transmuxer;be||(be=this.transmuxer=new il(this.hls,u.AUDIO,this._handleTransmuxComplete.bind(this),this._handleTransmuxerFlush.bind(this)));const Re=this.initPTS[s.cc],Le=(n=s.initSegment)==null?void 0:n.data;if(Re!==void 0){const it=_?_.index:-1,Qt=it!==-1,ir=new zo(s.level,s.sn,s.stats.chunkCount,E.byteLength,it,Qt);be.push(E,Le,de,"",s,_,ue.totalduration,!1,ir,Re)}else{this.log(`Unknown video PTS for cc ${s.cc}, waiting for video PTS before demuxing audio frag ${s.sn} of [${ue.startSN} ,${ue.endSN}],track ${U}`);const{cache:at}=this.waitingData=this.waitingData||{frag:s,part:_,cache:new Sr,complete:!1};at.push(new Uint8Array(E)),this.state!==Pe.STOPPED&&(this.state=Pe.WAITING_INIT_PTS)}}_handleFragmentLoadComplete(t){if(this.waitingData){this.waitingData.complete=!0;return}super._handleFragmentLoadComplete(t)}onBufferReset(){this.mediaBuffer=null}onBufferCreated(t,n){this.bufferFlushed=this.flushing=!1;const s=n.tracks.audio;s&&(this.mediaBuffer=s.buffer||null)}onFragLoading(t,n){!this.audioOnly&&n.frag.type===u.MAIN&&Se(n.frag)&&(this.mainFragLoading=n,this.state===Pe.IDLE&&this.tick())}onFragBuffered(t,n){const{frag:s,part:_}=n;if(s.type!==u.AUDIO){!this.audioOnly&&s.type===u.MAIN&&!s.elementaryStreams.video&&!s.elementaryStreams.audiovideo&&(this.audioOnly=!0,this.mainFragLoading=null);return}if(this.fragContextChanged(s)){this.warn(`Fragment ${s.sn}${_?" p: "+_.index:""} of level ${s.level} finished buffering, but was aborted. state: ${this.state}, audioSwitch: ${this.switchingTrack?this.switchingTrack.name:"false"}`);return}if(Se(s)){this.fragPrevious=s;const E=this.switchingTrack;E&&(this.bufferedTrack=E,this.switchingTrack=null,this.hls.trigger(o.AUDIO_TRACK_SWITCHED,b({},E)))}this.fragBufferedComplete(s,_),this.media&&this.tick()}onError(t,n){var s;if(n.fatal){this.state=Pe.ERROR;return}switch(n.details){case f.FRAG_GAP:case f.FRAG_PARSING_ERROR:case f.FRAG_DECRYPT_ERROR:case f.FRAG_LOAD_ERROR:case f.FRAG_LOAD_TIMEOUT:case f.KEY_LOAD_ERROR:case f.KEY_LOAD_TIMEOUT:this.onFragmentOrKeyLoadError(u.AUDIO,n);break;case f.AUDIO_TRACK_LOAD_ERROR:case f.AUDIO_TRACK_LOAD_TIMEOUT:case f.LEVEL_PARSING_ERROR:!n.levelRetry&&this.state===Pe.WAITING_TRACK&&((s=n.context)==null?void 0:s.type)===h.AUDIO_TRACK&&(this.state=Pe.IDLE);break;case f.BUFFER_ADD_CODEC_ERROR:case f.BUFFER_APPEND_ERROR:if(n.parent!=="audio")return;this.reduceLengthAndFlushBuffer(n)||this.resetLoadingState();break;case f.BUFFER_FULL_ERROR:if(n.parent!=="audio")return;this.reduceLengthAndFlushBuffer(n)&&(this.bufferedTrack=null,super.flushMainBuffer(0,Number.POSITIVE_INFINITY,"audio"));break;case f.INTERNAL_EXCEPTION:this.recoverWorkerError(n);break}}onBufferFlushing(t,{type:n}){n!==ie.VIDEO&&(this.flushing=!0)}onBufferFlushed(t,{type:n}){if(n!==ie.VIDEO){this.flushing=!1,this.bufferFlushed=!0,this.state===Pe.ENDED&&(this.state=Pe.IDLE);const s=this.mediaBuffer||this.media;s&&(this.afterBufferFlushed(s,n,u.AUDIO),this.tick())}}_handleTransmuxComplete(t){var n;const s="audio",{hls:_}=this,{remuxResult:E,chunkMeta:I}=t,U=this.getCurrentContext(I);if(!U){this.resetWhenMissingContext(I);return}const{frag:Q,part:G,level:ue}=U,{details:de}=ue,{audio:be,text:Re,id3:Le,initSegment:at}=E;if(this.fragContextChanged(Q)||!de){this.fragmentTracker.removeFragment(Q);return}if(this.state=Pe.PARSING,this.switchingTrack&&be&&this.completeAudioSwitch(this.switchingTrack),at!=null&&at.tracks){const it=Q.initSegment||Q;if(this.unhandledEncryptionError(at,Q))return;this._bufferInitSegment(ue,at.tracks,it,I),_.trigger(o.FRAG_PARSING_INIT_SEGMENT,{frag:it,id:s,tracks:at.tracks})}if(be){const{startPTS:it,endPTS:Qt,startDTS:ir,endDTS:ur}=be;G&&(G.elementaryStreams[ie.AUDIO]={startPTS:it,endPTS:Qt,startDTS:ir,endDTS:ur}),Q.setElementaryStreamInfo(ie.AUDIO,it,Qt,ir,ur),this.bufferFragmentData(be,Q,G,I)}if(Le!=null&&(n=Le.samples)!=null&&n.length){const it=y({id:s,frag:Q,details:de},Le);_.trigger(o.FRAG_PARSING_METADATA,it)}if(Re){const it=y({id:s,frag:Q,details:de},Re);_.trigger(o.FRAG_PARSING_USERDATA,it)}}_bufferInitSegment(t,n,s,_){if(this.state!==Pe.PARSING||(n.video&&delete n.video,n.audiovideo&&delete n.audiovideo,!n.audio))return;const E=n.audio;E.id=u.AUDIO;const I=t.audioCodec;this.log(`Init audio buffer, container:${E.container}, codecs[level/parsed]=[${I}/${E.codec}]`),I&&I.split(",").length===1&&(E.levelCodec=I),this.hls.trigger(o.BUFFER_CODECS,n);const U=E.initSegment;if(U!=null&&U.byteLength){const Q={type:"audio",frag:s,part:null,chunkMeta:_,parent:s.type,data:U};this.hls.trigger(o.BUFFER_APPENDING,Q)}this.tickImmediate()}loadFragment(t,n,s){const _=this.fragmentTracker.getState(t);if(this.switchingTrack||_===hn.NOT_LOADED||_===hn.PARTIAL){var E;if(!Se(t))this._loadInitSegment(t,n);else if((E=n.details)!=null&&E.live&&!this.initPTS[t.cc]){this.log(`Waiting for video PTS in continuity counter ${t.cc} of live stream before loading audio fragment ${t.sn} of level ${this.trackId}`),this.state=Pe.WAITING_INIT_PTS;const I=this.mainDetails;I&&I.fragmentStart!==n.details.fragmentStart&&cs(n.details,I)}else super.loadFragment(t,n,s)}else this.clearTrackerIfNeeded(t)}flushAudioIfNeeded(t){if(this.media&&this.bufferedTrack){const{name:n,lang:s,assocLang:_,characteristics:E,audioCodec:I,channels:U}=this.bufferedTrack;_i({name:n,lang:s,assocLang:_,characteristics:E,audioCodec:I,channels:U},t,ei)||(nt(t.url,this.hls)?(this.log("Switching audio track : flushing all audio"),super.flushMainBuffer(0,Number.POSITIVE_INFINITY,"audio"),this.bufferedTrack=null):this.bufferedTrack=t)}}completeAudioSwitch(t){const{hls:n}=this;this.flushAudioIfNeeded(t),this.bufferedTrack=t,this.switchingTrack=null,n.trigger(o.AUDIO_TRACK_SWITCHED,b({},t))}}class Ao extends R{constructor(t,n){super(n,t.logger),this.hls=void 0,this.canLoad=!1,this.timer=-1,this.hls=t}destroy(){this.clearTimer(),this.hls=this.log=this.warn=null}clearTimer(){this.timer!==-1&&(self.clearTimeout(this.timer),this.timer=-1)}startLoad(){this.canLoad=!0,this.loadPlaylist()}stopLoad(){this.canLoad=!1,this.clearTimer()}switchParams(t,n,s){const _=n==null?void 0:n.renditionReports;if(_){let E=-1;for(let I=0;I<_.length;I++){const U=_[I];let Q;try{Q=new self.URL(U.URI,n.url).href}catch(G){this.warn(`Could not construct new URL for Rendition Report: ${G}`),Q=U.URI||""}if(Q===t){E=I;break}else Q===t.substring(0,Q.length)&&(E=I)}if(E!==-1){const I=_[E],U=parseInt(I["LAST-MSN"])||n.lastPartSn;let Q=parseInt(I["LAST-PART"])||n.lastPartIndex;if(this.hls.config.lowLatencyMode){const ue=Math.min(n.age-n.partTarget,n.targetduration);Q>=0&&ue>n.partTarget&&(Q+=1)}const G=s&&ci(s);return new Oi(U,Q>=0?Q:void 0,G)}}}loadPlaylist(t){this.clearTimer()}loadingPlaylist(t,n){this.clearTimer()}shouldLoadPlaylist(t){return this.canLoad&&!!t&&!!t.url&&(!t.details||t.details.live)}getUrlWithDirectives(t,n){if(n)try{return n.addDirectives(t)}catch(s){this.warn(`Could not construct new URL with HLS Delivery Directives: ${s}`)}return t}playlistLoaded(t,n,s){const{details:_,stats:E}=n,I=self.performance.now(),U=E.loading.first?Math.max(0,I-E.loading.first):0;_.advancedDateTime=Date.now()-U;const Q=this.hls.config.timelineOffset;if(Q!==_.appliedTimelineOffset){const ue=Math.max(Q||0,0);_.appliedTimelineOffset=ue,_.fragments.forEach(de=>{de.setStart(de.playlistOffset+ue)})}if(_.live||s!=null&&s.live){const ue="levelInfo"in n?n.levelInfo:n.track;if(_.reloaded(s),s&&_.fragments.length>0){Tn(s,_,this);const ir=_.playlistParsingError;if(ir){this.warn(ir);const ur=this.hls;if(!ur.config.ignorePlaylistParsingErrors){var G;const{networkDetails:Ar}=n;ur.trigger(o.ERROR,{type:c.NETWORK_ERROR,details:f.LEVEL_PARSING_ERROR,fatal:!1,url:_.url,error:ir,reason:ir.message,level:n.level||void 0,parent:(G=_.fragments[0])==null?void 0:G.type,networkDetails:Ar,stats:E});return}_.playlistParsingError=null}}_.requestScheduled===-1&&(_.requestScheduled=E.loading.start);const de=this.hls.mainForwardBufferInfo,be=de?de.end-de.len:0,Re=(_.edge-be)*1e3,Le=gi(_,Re);if(_.requestScheduled+Le<I?_.requestScheduled=I:_.requestScheduled+=Le,this.log(`live playlist ${t} ${_.advanced?"REFRESHED "+_.lastPartSn+"-"+_.lastPartIndex:_.updated?"UPDATED":"MISSED"}`),!this.canLoad||!_.live)return;let at,it,Qt;if(_.canBlockReload&&_.endSN&&_.advanced){const ir=this.hls.config.lowLatencyMode,ur=_.lastPartSn,Ar=_.endSN,Ur=_.lastPartIndex,mn=Ur!==-1,zr=ur===Ar;mn?zr?(it=Ar+1,Qt=ir?0:Ur):(it=ur,Qt=ir?Ur+1:_.maxPartIndex):it=Ar+1;const ln=_.age,on=ln+_.ageHeader;let Qr=Math.min(on-_.partTarget,_.targetduration*1.5);if(Qr>0){if(on>_.targetduration*3)this.log(`Playlist last advanced ${ln.toFixed(2)}s ago. Omitting segment and part directives.`),it=void 0,Qt=void 0;else if(s!=null&&s.tuneInGoal&&on-_.partTarget>s.tuneInGoal)this.warn(`CDN Tune-in goal increased from: ${s.tuneInGoal} to: ${Qr} with playlist age: ${_.age}`),Qr=0;else{const Dn=Math.floor(Qr/_.targetduration);if(it+=Dn,Qt!==void 0){const Ei=Math.round(Qr%_.targetduration/_.partTarget);Qt+=Ei}this.log(`CDN Tune-in age: ${_.ageHeader}s last advanced ${ln.toFixed(2)}s goal: ${Qr} skip sn ${Dn} to part ${Qt}`)}_.tuneInGoal=Qr}if(at=this.getDeliveryDirectives(_,n.deliveryDirectives,it,Qt),ir||!zr){_.requestScheduled=I,this.loadingPlaylist(ue,at);return}}else(_.canBlockReload||_.canSkipUntil)&&(at=this.getDeliveryDirectives(_,n.deliveryDirectives,it,Qt));at&&it!==void 0&&_.canBlockReload&&(_.requestScheduled=E.loading.first+Math.max(Le-U*2,Le/2)),this.scheduleLoading(ue,at,_)}else this.clearTimer()}scheduleLoading(t,n,s){const _=s||t.details;if(!_){this.loadingPlaylist(t,n);return}const E=self.performance.now(),I=_.requestScheduled;if(E>=I){this.loadingPlaylist(t,n);return}const U=I-E;this.log(`reload live playlist ${t.name||t.bitrate+"bps"} in ${Math.round(U)} ms`),this.clearTimer(),this.timer=self.setTimeout(()=>this.loadingPlaylist(t,n),U)}getDeliveryDirectives(t,n,s,_){let E=ci(t);return n!=null&&n.skip&&t.deltaUpdateFailed&&(s=n.msn,_=n.part,E=Gn.No),new Oi(s,_,E)}checkRetry(t){const n=t.details,s=Nr(t),_=t.errorAction,{action:E,retryCount:I=0,retryConfig:U}=_||{},Q=!!_&&!!U&&(E===nr.RetryRequest||!_.resolved&&E===nr.SendAlternateToPenaltyBox);if(Q){var G;if(I>=U.maxNumRetry)return!1;if(s&&(G=t.context)!=null&&G.deliveryDirectives)this.warn(`Retrying playlist loading ${I+1}/${U.maxNumRetry} after "${n}" without delivery-directives`),this.loadPlaylist();else{const ue=Qn(U,I);this.clearTimer(),this.timer=self.setTimeout(()=>this.loadPlaylist(),ue),this.warn(`Retrying playlist loading ${I+1}/${U.maxNumRetry} after "${n}" in ${ue}ms`)}t.levelRetry=!0,_.resolved=!0}return Q}}function Kc(D,t){if(D.length!==t.length)return!1;for(let n=0;n<D.length;n++)if(!Kl(D[n].attrs,t[n].attrs))return!1;return!0}function Kl(D,t,n){const s=D["STABLE-RENDITION-ID"];return s&&!n?s===t["STABLE-RENDITION-ID"]:!(n||["LANGUAGE","NAME","CHARACTERISTICS","AUTOSELECT","DEFAULT","FORCED","ASSOC-LANGUAGE"]).some(_=>D[_]!==t[_])}function lc(D,t){return t.label.toLowerCase()===D.name.toLowerCase()&&(!t.language||t.language.toLowerCase()===(D.lang||"").toLowerCase())}class Dl extends Ao{constructor(t){super(t,"audio-track-controller"),this.tracks=[],this.groupIds=null,this.tracksInGroup=[],this.trackId=-1,this.currentTrack=null,this.selectDefaultTrack=!0,this.registerListeners()}registerListeners(){const{hls:t}=this;t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_PARSED,this.onManifestParsed,this),t.on(o.LEVEL_LOADING,this.onLevelLoading,this),t.on(o.LEVEL_SWITCHING,this.onLevelSwitching,this),t.on(o.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.on(o.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_PARSED,this.onManifestParsed,this),t.off(o.LEVEL_LOADING,this.onLevelLoading,this),t.off(o.LEVEL_SWITCHING,this.onLevelSwitching,this),t.off(o.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.off(o.ERROR,this.onError,this)}destroy(){this.unregisterListeners(),this.tracks.length=0,this.tracksInGroup.length=0,this.currentTrack=null,super.destroy()}onManifestLoading(){this.tracks=[],this.tracksInGroup=[],this.groupIds=null,this.currentTrack=null,this.trackId=-1,this.selectDefaultTrack=!0}onManifestParsed(t,n){this.tracks=n.audioTracks||[]}onAudioTrackLoaded(t,n){const{id:s,groupId:_,details:E}=n,I=this.tracksInGroup[s];if(!I||I.groupId!==_){this.warn(`Audio track with id:${s} and group:${_} not found in active group ${I==null?void 0:I.groupId}`);return}const U=I.details;I.details=n.details,this.log(`Audio track ${s} "${I.name}" lang:${I.lang} group:${_} loaded [${E.startSN}-${E.endSN}]`),s===this.trackId&&this.playlistLoaded(s,n,U)}onLevelLoading(t,n){this.switchLevel(n.level)}onLevelSwitching(t,n){this.switchLevel(n.level)}switchLevel(t){const n=this.hls.levels[t];if(!n)return;const s=n.audioGroups||null,_=this.groupIds;let E=this.currentTrack;if(!s||(_==null?void 0:_.length)!==(s==null?void 0:s.length)||s!=null&&s.some(U=>(_==null?void 0:_.indexOf(U))===-1)){this.groupIds=s,this.trackId=-1,this.currentTrack=null;const U=this.tracks.filter(be=>!s||s.indexOf(be.groupId)!==-1);if(U.length)this.selectDefaultTrack&&!U.some(be=>be.default)&&(this.selectDefaultTrack=!1),U.forEach((be,Re)=>{be.id=Re});else if(!E&&!this.tracksInGroup.length)return;this.tracksInGroup=U;const Q=this.hls.config.audioPreference;if(!E&&Q){const be=Zi(Q,U,ei);if(be>-1)E=U[be];else{const Re=Zi(Q,this.tracks);E=this.tracks[Re]}}let G=this.findTrackId(E);G===-1&&E&&(G=this.findTrackId(null));const ue={audioTracks:U};this.log(`Updating audio tracks, ${U.length} track(s) found in group(s): ${s==null?void 0:s.join(",")}`),this.hls.trigger(o.AUDIO_TRACKS_UPDATED,ue);const de=this.trackId;if(G!==-1&&de===-1)this.setAudioTrack(G);else if(U.length&&de===-1){var I;const be=new Error(`No audio track selected for current audio group-ID(s): ${(I=this.groupIds)==null?void 0:I.join(",")} track count: ${U.length}`);this.warn(be.message),this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.AUDIO_TRACK_LOAD_ERROR,fatal:!0,error:be})}}}onError(t,n){n.fatal||!n.context||n.context.type===h.AUDIO_TRACK&&n.context.id===this.trackId&&(!this.groupIds||this.groupIds.indexOf(n.context.groupId)!==-1)&&this.checkRetry(n)}get allAudioTracks(){return this.tracks}get audioTracks(){return this.tracksInGroup}get audioTrack(){return this.trackId}set audioTrack(t){this.selectDefaultTrack=!1,this.setAudioTrack(t)}setAudioOption(t){const n=this.hls;if(n.config.audioPreference=t,t){const s=this.allAudioTracks;if(this.selectDefaultTrack=!1,s.length){const _=this.currentTrack;if(_&&_i(t,_,ei))return _;const E=Zi(t,this.tracksInGroup,ei);if(E>-1){const I=this.tracksInGroup[E];return this.setAudioTrack(E),I}else if(_){let I=n.loadLevel;I===-1&&(I=n.firstAutoLevel);const U=$n(t,n.levels,s,I,ei);if(U===-1)return null;n.nextLoadLevel=U}if(t.channels||t.audioCodec){const I=Zi(t,s);if(I>-1)return s[I]}}}return null}setAudioTrack(t){const n=this.tracksInGroup;if(t<0||t>=n.length){this.warn(`Invalid audio track id: ${t}`);return}this.selectDefaultTrack=!1;const s=this.currentTrack,_=n[t],E=_.details&&!_.details.live;if(t===this.trackId&&_===s&&E||(this.log(`Switching to audio-track ${t} "${_.name}" lang:${_.lang} group:${_.groupId} channels:${_.channels}`),this.trackId=t,this.currentTrack=_,this.hls.trigger(o.AUDIO_TRACK_SWITCHING,b({},_)),E))return;const I=this.switchParams(_.url,s==null?void 0:s.details,_.details);this.loadPlaylist(I)}findTrackId(t){const n=this.tracksInGroup;for(let s=0;s<n.length;s++){const _=n[s];if(!(this.selectDefaultTrack&&!_.default)&&(!t||_i(t,_,ei)))return s}if(t){const{name:s,lang:_,assocLang:E,characteristics:I,audioCodec:U,channels:Q}=t;for(let G=0;G<n.length;G++){const ue=n[G];if(_i({name:s,lang:_,assocLang:E,characteristics:I,audioCodec:U,channels:Q},ue,ei))return G}for(let G=0;G<n.length;G++){const ue=n[G];if(Kl(t.attrs,ue.attrs,["LANGUAGE","ASSOC-LANGUAGE","CHARACTERISTICS"]))return G}for(let G=0;G<n.length;G++){const ue=n[G];if(Kl(t.attrs,ue.attrs,["LANGUAGE"]))return G}}return-1}loadPlaylist(t){super.loadPlaylist();const n=this.currentTrack;this.shouldLoadPlaylist(n)&&nt(n.url,this.hls)&&this.scheduleLoading(n,t)}loadingPlaylist(t,n){super.loadingPlaylist(t,n);const s=t.id,_=t.groupId,E=this.getUrlWithDirectives(t.url,n),I=t.details,U=I==null?void 0:I.age;this.log(`Loading audio-track ${s} "${t.name}" lang:${t.lang} group:${_}${(n==null?void 0:n.msn)!==void 0?" at sn "+n.msn+" part "+n.part:""}${U&&I.live?" age "+U.toFixed(1)+(I.type?" "+I.type||0:""):""} ${E}`),this.hls.trigger(o.AUDIO_TRACK_LOADING,{url:E,id:s,groupId:_,deliveryDirectives:n||null,track:t})}}class Vc{constructor(t){this.tracks=void 0,this.queues={video:[],audio:[],audiovideo:[]},this.tracks=t}destroy(){this.tracks=this.queues=null}append(t,n,s){if(this.queues===null||this.tracks===null)return;const _=this.queues[n];_.push(t),_.length===1&&!s&&this.executeNext(n)}appendBlocker(t){return new Promise(n=>{const s={label:"async-blocker",execute:n,onStart:()=>{},onComplete:()=>{},onError:()=>{}};this.append(s,t)})}prependBlocker(t){return new Promise(n=>{if(this.queues){const s={label:"async-blocker-prepend",execute:n,onStart:()=>{},onComplete:()=>{},onError:()=>{}};this.queues[t].unshift(s)}})}removeBlockers(){this.queues!==null&&[this.queues.video,this.queues.audio,this.queues.audiovideo].forEach(t=>{var n;const s=(n=t[0])==null?void 0:n.label;(s==="async-blocker"||s==="async-blocker-prepend")&&(t[0].execute(),t.splice(0,1))})}unblockAudio(t){if(this.queues===null)return;this.queues.audio[0]===t&&this.shiftAndExecuteNext("audio")}executeNext(t){if(this.queues===null||this.tracks===null)return;const n=this.queues[t];if(n.length){const _=n[0];try{_.execute()}catch(E){var s;if(_.onError(E),this.queues===null||this.tracks===null)return;const I=(s=this.tracks[t])==null?void 0:s.buffer;I!=null&&I.updating||this.shiftAndExecuteNext(t)}}}shiftAndExecuteNext(t){this.queues!==null&&(this.queues[t].shift(),this.executeNext(t))}current(t){var n;return((n=this.queues)==null?void 0:n[t][0])||null}toString(){const{queues:t,tracks:n}=this;return t===null||n===null?"<destroyed>":`
${this.list("video")}
${this.list("audio")}
${this.list("audiovideo")}}`}list(t){var n,s;return(n=this.queues)!=null&&n[t]||(s=this.tracks)!=null&&s[t]?`${t}: (${this.listSbInfo(t)}) ${this.listOps(t)}`:""}listSbInfo(t){var n;const s=(n=this.tracks)==null?void 0:n[t],_=s==null?void 0:s.buffer;return _?`SourceBuffer${_.updating?" updating":""}${s.ended?" ended":""}${s.ending?" ending":""}`:"none"}listOps(t){var n;return((n=this.queues)==null?void 0:n[t].map(s=>s.label).join(", "))||""}}const kl=/(avc[1234]|hvc1|hev1|dvh[1e]|vp09|av01)(?:\.[^.,]+)+/,Ou="HlsJsTrackRemovedError";class Vl extends Error{constructor(t){super(t),this.name=Ou}}class mo extends R{constructor(t,n){super("buffer-controller",t.logger),this.hls=void 0,this.fragmentTracker=void 0,this.details=null,this._objectUrl=null,this.operationQueue=null,this.bufferCodecEventsTotal=0,this.media=null,this.mediaSource=null,this.lastMpegAudioChunk=null,this.blockedAudioAppend=null,this.lastVideoAppendEnd=0,this.appendSource=void 0,this.transferData=void 0,this.overrides=void 0,this.appendErrors={audio:0,video:0,audiovideo:0},this.tracks={},this.sourceBuffers=[[null,null],[null,null]],this._onEndStreaming=s=>{var _;this.hls&&((_=this.mediaSource)==null?void 0:_.readyState)==="open"&&this.hls.pauseBuffering()},this._onStartStreaming=s=>{this.hls&&this.hls.resumeBuffering()},this._onMediaSourceOpen=s=>{const{media:_,mediaSource:E}=this;s&&this.log("Media source opened"),!(!_||!E)&&(E.removeEventListener("sourceopen",this._onMediaSourceOpen),_.removeEventListener("emptied",this._onMediaEmptied),this.updateDuration(),this.hls.trigger(o.MEDIA_ATTACHED,{media:_,mediaSource:E}),this.mediaSource!==null&&this.checkPendingTracks())},this._onMediaSourceClose=()=>{this.log("Media source closed")},this._onMediaSourceEnded=()=>{this.log("Media source ended")},this._onMediaEmptied=()=>{const{mediaSrc:s,_objectUrl:_}=this;s!==_&&this.error(`Media element src was set while attaching MediaSource (${_} > ${s})`)},this.hls=t,this.fragmentTracker=n,this.appendSource=ne(ae(t.config.preferManagedMediaSource)),this.initTracks(),this.registerListeners()}hasSourceTypes(){return Object.keys(this.tracks).length>0}destroy(){this.unregisterListeners(),this.details=null,this.lastMpegAudioChunk=this.blockedAudioAppend=null,this.transferData=this.overrides=void 0,this.operationQueue&&(this.operationQueue.destroy(),this.operationQueue=null),this.hls=this.fragmentTracker=null,this._onMediaSourceOpen=this._onMediaSourceClose=null,this._onMediaSourceEnded=null,this._onStartStreaming=this._onEndStreaming=null}registerListeners(){const{hls:t}=this;t.on(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_PARSED,this.onManifestParsed,this),t.on(o.BUFFER_RESET,this.onBufferReset,this),t.on(o.BUFFER_APPENDING,this.onBufferAppending,this),t.on(o.BUFFER_CODECS,this.onBufferCodecs,this),t.on(o.BUFFER_EOS,this.onBufferEos,this),t.on(o.BUFFER_FLUSHING,this.onBufferFlushing,this),t.on(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.on(o.FRAG_PARSED,this.onFragParsed,this),t.on(o.FRAG_CHANGED,this.onFragChanged,this),t.on(o.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t.off(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_PARSED,this.onManifestParsed,this),t.off(o.BUFFER_RESET,this.onBufferReset,this),t.off(o.BUFFER_APPENDING,this.onBufferAppending,this),t.off(o.BUFFER_CODECS,this.onBufferCodecs,this),t.off(o.BUFFER_EOS,this.onBufferEos,this),t.off(o.BUFFER_FLUSHING,this.onBufferFlushing,this),t.off(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.off(o.FRAG_PARSED,this.onFragParsed,this),t.off(o.FRAG_CHANGED,this.onFragChanged,this),t.off(o.ERROR,this.onError,this)}transferMedia(){const{media:t,mediaSource:n}=this;if(!t)return null;const s={};if(this.operationQueue){const E=this.isUpdating();E||this.operationQueue.removeBlockers();const I=this.isQueued();(E||I)&&this.warn(`Transfering MediaSource with${I?" operations in queue":""}${E?" updating SourceBuffer(s)":""} ${this.operationQueue}`),this.operationQueue.destroy()}const _=this.transferData;return!this.sourceBufferCount&&_&&_.mediaSource===n?y(s,_.tracks):this.sourceBuffers.forEach(E=>{const[I]=E;I&&(s[I]=y({},this.tracks[I]),this.removeBuffer(I)),E[0]=E[1]=null}),{media:t,mediaSource:n,tracks:s}}initTracks(){const t={};this.sourceBuffers=[[null,null],[null,null]],this.tracks=t,this.resetQueue(),this.resetAppendErrors(),this.lastMpegAudioChunk=this.blockedAudioAppend=null,this.lastVideoAppendEnd=0}onManifestLoading(){this.bufferCodecEventsTotal=0,this.details=null}onManifestParsed(t,n){var s;let _=2;(n.audio&&!n.video||!n.altAudio)&&(_=1),this.bufferCodecEventsTotal=_,this.log(`${_} bufferCodec event(s) expected.`),(s=this.transferData)!=null&&s.mediaSource&&this.sourceBufferCount&&_&&this.bufferCreated()}onMediaAttaching(t,n){const s=this.media=n.media;this.transferData=this.overrides=void 0;const _=ae(this.appendSource);if(_){const E=!!n.mediaSource;(E||n.overrides)&&(this.transferData=n,this.overrides=n.overrides);const I=this.mediaSource=n.mediaSource||new _;if(this.assignMediaSource(I),E)this._objectUrl=s.src,this.attachTransferred();else{const U=this._objectUrl=self.URL.createObjectURL(I);if(this.appendSource)try{s.removeAttribute("src");const Q=self.ManagedMediaSource;s.disableRemotePlayback=s.disableRemotePlayback||Q&&I instanceof Q,ru(s),fu(s,U),s.load()}catch(Q){s.src=U}else s.src=U}s.addEventListener("emptied",this._onMediaEmptied)}}assignMediaSource(t){var n,s;this.log(`${((n=this.transferData)==null?void 0:n.mediaSource)===t?"transferred":"created"} media source: ${(s=t.constructor)==null?void 0:s.name}`),t.addEventListener("sourceopen",this._onMediaSourceOpen),t.addEventListener("sourceended",this._onMediaSourceEnded),t.addEventListener("sourceclose",this._onMediaSourceClose),this.appendSource&&(t.addEventListener("startstreaming",this._onStartStreaming),t.addEventListener("endstreaming",this._onEndStreaming))}attachTransferred(){const t=this.media,n=this.transferData;if(!n||!t)return;const s=this.tracks,_=n.tracks,E=_?Object.keys(_):null,I=E?E.length:0,U=()=>{Promise.resolve().then(()=>{this.media&&this.mediaSourceOpenOrEnded&&this._onMediaSourceOpen()})};if(_&&E&&I){if(!this.tracksReady){this.hls.config.startFragPrefetch=!0,this.log("attachTransferred: waiting for SourceBuffer track info");return}if(this.log(`attachTransferred: (bufferCodecEventsTotal ${this.bufferCodecEventsTotal})
required tracks: ${Yi(s,(Q,G)=>Q==="initSegment"?void 0:G)};
transfer tracks: ${Yi(_,(Q,G)=>Q==="initSegment"?void 0:G)}}`),!oe(_,s)){n.mediaSource=null,n.tracks=void 0;const Q=t.currentTime,G=this.details,ue=Math.max(Q,(G==null?void 0:G.fragments[0].start)||0);if(ue-Q>1){this.log(`attachTransferred: waiting for playback to reach new tracks start time ${Q} -> ${ue}`);return}this.warn(`attachTransferred: resetting MediaSource for incompatible tracks ("${Object.keys(_)}"->"${Object.keys(s)}") start time: ${ue} currentTime: ${Q}`),this.onMediaDetaching(o.MEDIA_DETACHING,{}),this.onMediaAttaching(o.MEDIA_ATTACHING,n),t.currentTime=ue;return}this.transferData=void 0,E.forEach(Q=>{const G=Q,ue=_[G];if(ue){const de=ue.buffer;if(de){const be=this.fragmentTracker,Re=ue.id;if(be.hasFragments(Re)||be.hasParts(Re)){const it=di.getBuffered(de);be.detectEvictedFragments(G,it,Re,null,!0)}const Le=Yl(G),at=[G,de];this.sourceBuffers[Le]=at,de.updating&&this.operationQueue&&this.operationQueue.prependBlocker(G),this.trackSourceBuffer(G,ue)}}}),U(),this.bufferCreated()}else this.log("attachTransferred: MediaSource w/o SourceBuffers"),U()}get mediaSourceOpenOrEnded(){var t;const n=(t=this.mediaSource)==null?void 0:t.readyState;return n==="open"||n==="ended"}onMediaDetaching(t,n){const s=!!n.transferMedia;this.transferData=this.overrides=void 0;const{media:_,mediaSource:E,_objectUrl:I}=this;if(E){if(this.log(`media source ${s?"transferring":"detaching"}`),s)this.sourceBuffers.forEach(([U])=>{U&&this.removeBuffer(U)}),this.resetQueue();else{if(this.mediaSourceOpenOrEnded){const U=E.readyState==="open";try{const Q=E.sourceBuffers;for(let G=Q.length;G--;)U&&Q[G].abort(),E.removeSourceBuffer(Q[G]);U&&E.endOfStream()}catch(Q){this.warn(`onMediaDetaching: ${Q.message} while calling endOfStream`)}}this.sourceBufferCount&&this.onBufferReset()}E.removeEventListener("sourceopen",this._onMediaSourceOpen),E.removeEventListener("sourceended",this._onMediaSourceEnded),E.removeEventListener("sourceclose",this._onMediaSourceClose),this.appendSource&&(E.removeEventListener("startstreaming",this._onStartStreaming),E.removeEventListener("endstreaming",this._onEndStreaming)),this.mediaSource=null,this._objectUrl=null}_&&(_.removeEventListener("emptied",this._onMediaEmptied),s||(I&&self.URL.revokeObjectURL(I),this.mediaSrc===I?(_.removeAttribute("src"),this.appendSource&&ru(_),_.load()):this.warn("media|source.src was changed by a third party - skip cleanup")),this.media=null),this.hls.trigger(o.MEDIA_DETACHED,n)}onBufferReset(){this.sourceBuffers.forEach(([t])=>{t&&this.resetBuffer(t)}),this.initTracks()}resetBuffer(t){var n;const s=(n=this.tracks[t])==null?void 0:n.buffer;if(this.removeBuffer(t),s)try{var _;(_=this.mediaSource)!=null&&_.sourceBuffers.length&&this.mediaSource.removeSourceBuffer(s)}catch(E){this.warn(`onBufferReset ${t}`,E)}delete this.tracks[t]}removeBuffer(t){this.removeBufferListeners(t),this.sourceBuffers[Yl(t)]=[null,null];const n=this.tracks[t];n&&(n.buffer=void 0)}resetQueue(){this.operationQueue&&this.operationQueue.destroy(),this.operationQueue=new Vc(this.tracks)}onBufferCodecs(t,n){var s;const _=this.tracks,E=Object.keys(n);this.log(`BUFFER_CODECS: "${E}" (current SB count ${this.sourceBufferCount})`);const I="audiovideo"in n&&(_.audio||_.video)||_.audiovideo&&("audio"in n||"video"in n),U=!I&&this.sourceBufferCount&&this.media&&E.some(Q=>!_[Q]);if(I||U){this.warn(`Unsupported transition between "${Object.keys(_)}" and "${E}" SourceBuffers`);return}E.forEach(Q=>{var G,ue;const de=n[Q],{id:be,codec:Re,levelCodec:Le,container:at,metadata:it,supplemental:Qt}=de;let ir=_[Q];const ur=(G=this.transferData)==null||(G=G.tracks)==null?void 0:G[Q],Ar=ur!=null&&ur.buffer?ur:ir,Ur=(Ar==null?void 0:Ar.pendingCodec)||(Ar==null?void 0:Ar.codec),mn=Ar==null?void 0:Ar.levelCodec;ir||(ir=_[Q]={buffer:void 0,listeners:[],codec:Re,supplemental:Qt,container:at,levelCodec:Le,metadata:it,id:be});const zr=an(Ur,mn),ln=zr==null?void 0:zr.replace(kl,"$1");let on=an(Re,Le);const Qr=(ue=on)==null?void 0:ue.replace(kl,"$1");on&&zr&&ln!==Qr&&(Q.slice(0,5)==="audio"&&(on=mt(on,this.appendSource)),this.log(`switching codec ${Ur} to ${on}`),on!==(ir.pendingCodec||ir.codec)&&(ir.pendingCodec=on),ir.container=at,this.appendChangeType(Q,at,on))}),(this.tracksReady||this.sourceBufferCount)&&(n.tracks=this.sourceBufferTracks),!this.sourceBufferCount&&(this.bufferCodecEventsTotal>1&&!this.tracks.video&&!n.video&&((s=n.audio)==null?void 0:s.id)==="main"&&(this.log("Main audio-only"),this.bufferCodecEventsTotal=1),this.mediaSourceOpenOrEnded&&this.checkPendingTracks())}get sourceBufferTracks(){return Object.keys(this.tracks).reduce((t,n)=>{const s=this.tracks[n];return t[n]={id:s.id,container:s.container,codec:s.codec,levelCodec:s.levelCodec},t},{})}appendChangeType(t,n,s){const _=`${n};codecs=${s}`,E={label:`change-type=${_}`,execute:()=>{const I=this.tracks[t];if(I){const U=I.buffer;U!=null&&U.changeType&&(this.log(`changing ${t} sourceBuffer type to ${_}`),U.changeType(_),I.codec=s,I.container=n)}this.shiftAndExecuteNext(t)},onStart:()=>{},onComplete:()=>{},onError:I=>{this.warn(`Failed to change ${t} SourceBuffer type`,I)}};this.append(E,t,this.isPending(this.tracks[t]))}blockAudio(t){var n;const s=t.start,_=s+t.duration*.05;if(((n=this.fragmentTracker.getAppendedFrag(s,u.MAIN))==null?void 0:n.gap)===!0)return;const I={label:"block-audio",execute:()=>{var U;const Q=this.tracks.video;(this.lastVideoAppendEnd>_||Q!=null&&Q.buffer&&di.isBuffered(Q.buffer,_)||((U=this.fragmentTracker.getAppendedFrag(_,u.MAIN))==null?void 0:U.gap)===!0)&&(this.blockedAudioAppend=null,this.shiftAndExecuteNext("audio"))},onStart:()=>{},onComplete:()=>{},onError:U=>{this.warn("Error executing block-audio operation",U)}};this.blockedAudioAppend={op:I,frag:t},this.append(I,"audio",!0)}unblockAudio(){const{blockedAudioAppend:t,operationQueue:n}=this;t&&n&&(this.blockedAudioAppend=null,n.unblockAudio(t.op))}onBufferAppending(t,n){const{tracks:s}=this,{data:_,type:E,parent:I,frag:U,part:Q,chunkMeta:G,offset:ue}=n,de=G.buffering[E],{sn:be,cc:Re}=U,Le=self.performance.now();de.start=Le;const at=U.stats.buffering,it=Q?Q.stats.buffering:null;at.start===0&&(at.start=Le),it&&it.start===0&&(it.start=Le);const Qt=s.audio;let ir=!1;E==="audio"&&(Qt==null?void 0:Qt.container)==="audio/mpeg"&&(ir=!this.lastMpegAudioChunk||G.id===1||this.lastMpegAudioChunk.sn!==G.sn,this.lastMpegAudioChunk=G);const ur=s.video,Ar=ur==null?void 0:ur.buffer;if(Ar&&be!=="initSegment"){const zr=Q||U,ln=this.blockedAudioAppend;if(E==="audio"&&I!=="main"&&!this.blockedAudioAppend&&!(ur.ending||ur.ended)){const Qr=zr.start+zr.duration*.05,Dn=Ar.buffered,Ei=this.currentOp("video");!Dn.length&&!Ei?this.blockAudio(zr):!Ei&&!di.isBuffered(Ar,Qr)&&this.lastVideoAppendEnd<Qr&&this.blockAudio(zr)}else if(E==="video"){const on=zr.end;if(ln){const Qr=ln.frag.start;(on>Qr||on<this.lastVideoAppendEnd||di.isBuffered(Ar,Qr))&&this.unblockAudio()}this.lastVideoAppendEnd=on}}const Ur=(Q||U).start,mn={label:`append-${E}`,execute:()=>{var zr;de.executeStart=self.performance.now();const ln=(zr=this.tracks[E])==null?void 0:zr.buffer;ln&&(ir?this.updateTimestampOffset(ln,Ur,.1,E,be,Re):ue!==void 0&&r(ue)&&this.updateTimestampOffset(ln,ue,1e-6,E,be,Re)),this.appendExecutor(_,E)},onStart:()=>{},onComplete:()=>{const zr=self.performance.now();de.executeEnd=de.end=zr,at.first===0&&(at.first=zr),it&&it.first===0&&(it.first=zr);const ln={};this.sourceBuffers.forEach(([on,Qr])=>{on&&(ln[on]=di.getBuffered(Qr))}),this.appendErrors[E]=0,E==="audio"||E==="video"?this.appendErrors.audiovideo=0:(this.appendErrors.audio=0,this.appendErrors.video=0),this.hls.trigger(o.BUFFER_APPENDED,{type:E,frag:U,part:Q,chunkMeta:G,parent:U.type,timeRanges:ln})},onError:zr=>{var ln;const on={type:c.MEDIA_ERROR,parent:U.type,details:f.BUFFER_APPEND_ERROR,sourceBufferName:E,frag:U,part:Q,chunkMeta:G,error:zr,err:zr,fatal:!1},Qr=(ln=this.media)==null?void 0:ln.error;if(zr.code===DOMException.QUOTA_EXCEEDED_ERR||zr.name=="QuotaExceededError"||"quota"in zr)on.details=f.BUFFER_FULL_ERROR;else if(zr.code===DOMException.INVALID_STATE_ERR&&this.mediaSourceOpenOrEnded&&!Qr)on.errorAction=Zr(!0);else if(zr.name===Ou&&this.sourceBufferCount===0)on.errorAction=Zr(!0);else{const Dn=++this.appendErrors[E];this.warn(`Failed ${Dn}/${this.hls.config.appendErrorMaxRetry} times to append segment in "${E}" sourceBuffer (${Qr||"no media error"})`),(Dn>=this.hls.config.appendErrorMaxRetry||Qr)&&(on.fatal=!0)}this.hls.trigger(o.ERROR,on)}};this.log(`queuing "${E}" append sn: ${be}${Q?" p: "+Q.index:""} of ${U.type===u.MAIN?"level":"track"} ${U.level} cc: ${Re}`),this.append(mn,E,this.isPending(this.tracks[E]))}getFlushOp(t,n,s){return this.log(`queuing "${t}" remove ${n}-${s}`),{label:"remove",execute:()=>{this.removeExecutor(t,n,s)},onStart:()=>{},onComplete:()=>{this.hls.trigger(o.BUFFER_FLUSHED,{type:t})},onError:_=>{this.warn(`Failed to remove ${n}-${s} from "${t}" SourceBuffer`,_)}}}onBufferFlushing(t,n){const{type:s,startOffset:_,endOffset:E}=n;s?this.append(this.getFlushOp(s,_,E),s):this.sourceBuffers.forEach(([I])=>{I&&this.append(this.getFlushOp(I,_,E),I)})}onFragParsed(t,n){const{frag:s,part:_}=n,E=[],I=_?_.elementaryStreams:s.elementaryStreams;I[ie.AUDIOVIDEO]?E.push("audiovideo"):(I[ie.AUDIO]&&E.push("audio"),I[ie.VIDEO]&&E.push("video"));const U=()=>{const Q=self.performance.now();s.stats.buffering.end=Q,_&&(_.stats.buffering.end=Q);const G=_?_.stats:s.stats;this.hls.trigger(o.FRAG_BUFFERED,{frag:s,part:_,stats:G,id:s.type})};E.length===0&&this.warn(`Fragments must have at least one ElementaryStreamType set. type: ${s.type} level: ${s.level} sn: ${s.sn}`),this.blockBuffers(U,E).catch(Q=>{this.warn(`Fragment buffered callback ${Q}`),this.stepOperationQueue(this.sourceBufferTypes)})}onFragChanged(t,n){this.trimBuffers()}get bufferedToEnd(){return this.sourceBufferCount>0&&!this.sourceBuffers.some(([t])=>{if(t){const n=this.tracks[t];if(n)return!n.ended||n.ending}return!1})}onBufferEos(t,n){var s;this.sourceBuffers.forEach(([I])=>{if(I){const U=this.tracks[I];(!n.type||n.type===I)&&(U.ending=!0,U.ended||(U.ended=!0,this.log(`${I} buffer reached EOS`)))}});const _=((s=this.overrides)==null?void 0:s.endOfStream)!==!1;this.sourceBufferCount>0&&!this.sourceBuffers.some(([I])=>{var U;return I&&!((U=this.tracks[I])!=null&&U.ended)})?_?(this.log("Queueing EOS"),this.blockUntilOpen(()=>{this.tracksEnded();const{mediaSource:I}=this;if(!I||I.readyState!=="open"){I&&this.log(`Could not call mediaSource.endOfStream(). mediaSource.readyState: ${I.readyState}`);return}this.log("Calling mediaSource.endOfStream()"),I.endOfStream(),this.hls.trigger(o.BUFFERED_TO_END,void 0)})):(this.tracksEnded(),this.hls.trigger(o.BUFFERED_TO_END,void 0)):n.type==="video"&&this.unblockAudio()}tracksEnded(){this.sourceBuffers.forEach(([t])=>{if(t!==null){const n=this.tracks[t];n&&(n.ending=!1)}})}onLevelUpdated(t,{details:n}){n.fragments.length&&(this.details=n,this.updateDuration())}updateDuration(){this.blockUntilOpen(()=>{const t=this.getDurationAndRange();t&&this.updateMediaSource(t)})}onError(t,n){if(n.details===f.BUFFER_APPEND_ERROR&&n.frag){var s;const _=(s=n.errorAction)==null?void 0:s.nextAutoLevel;r(_)&&_!==n.frag.level&&this.resetAppendErrors()}}resetAppendErrors(){this.appendErrors={audio:0,video:0,audiovideo:0}}trimBuffers(){const{hls:t,details:n,media:s}=this;if(!s||n===null||!this.sourceBufferCount)return;const _=t.config,E=s.currentTime,I=n.levelTargetDuration,U=n.live&&_.liveBackBufferLength!==null?_.liveBackBufferLength:_.backBufferLength;if(r(U)&&U>=0){const G=Math.max(U,I),ue=Math.floor(E/I)*I-G;this.flushBackBuffer(E,I,ue)}const Q=_.frontBufferFlushThreshold;if(r(Q)&&Q>0){const G=Math.max(_.maxBufferLength,Q),ue=Math.max(G,I),de=Math.floor(E/I)*I+ue;this.flushFrontBuffer(E,I,de)}}flushBackBuffer(t,n,s){this.sourceBuffers.forEach(([_,E])=>{if(E){const U=di.getBuffered(E);if(U.length>0&&s>U.start(0)){var I;this.hls.trigger(o.BACK_BUFFER_REACHED,{bufferEnd:s});const Q=this.tracks[_];if((I=this.details)!=null&&I.live)this.hls.trigger(o.LIVE_BACK_BUFFER_REACHED,{bufferEnd:s});else if(Q!=null&&Q.ended){this.log(`Cannot flush ${_} back buffer while SourceBuffer is in ended state`);return}this.hls.trigger(o.BUFFER_FLUSHING,{startOffset:0,endOffset:s,type:_})}}})}flushFrontBuffer(t,n,s){this.sourceBuffers.forEach(([_,E])=>{if(E){const I=di.getBuffered(E),U=I.length;if(U<2)return;const Q=I.start(U-1),G=I.end(U-1);if(s>Q||t>=Q&&t<=G)return;this.hls.trigger(o.BUFFER_FLUSHING,{startOffset:Q,endOffset:1/0,type:_})}})}getDurationAndRange(){var t;const{details:n,mediaSource:s}=this;if(!n||!this.media||(s==null?void 0:s.readyState)!=="open")return null;const _=n.edge;if(n.live&&this.hls.config.liveDurationInfinity){if(n.fragments.length&&s.setLiveSeekableRange){const G=Math.max(0,n.fragmentStart),ue=Math.max(G,_);return{duration:1/0,start:G,end:ue}}return{duration:1/0}}const E=(t=this.overrides)==null?void 0:t.duration;if(E)return r(E)?{duration:E}:null;const I=this.media.duration,U=r(s.duration)?s.duration:0;return _>U&&_>I||!r(I)?{duration:_}:null}updateMediaSource({duration:t,start:n,end:s}){const _=this.mediaSource;!this.media||!_||_.readyState!=="open"||(_.duration!==t&&(r(t)&&this.log(`Updating MediaSource duration to ${t.toFixed(3)}`),_.duration=t),n!==void 0&&s!==void 0&&(this.log(`MediaSource duration is set to ${_.duration}. Setting seekable range to ${n}-${s}.`),_.setLiveSeekableRange(n,s)))}get tracksReady(){const t=this.pendingTrackCount;return t>0&&(t>=this.bufferCodecEventsTotal||this.isPending(this.tracks.audiovideo))}checkPendingTracks(){const{bufferCodecEventsTotal:t,pendingTrackCount:n,tracks:s}=this;if(this.log(`checkPendingTracks (pending: ${n} codec events expected: ${t}) ${Yi(s)}`),this.tracksReady){var _;const E=(_=this.transferData)==null?void 0:_.tracks;E&&Object.keys(E).length?this.attachTransferred():this.createSourceBuffers()}}bufferCreated(){if(this.sourceBufferCount){const t={};this.sourceBuffers.forEach(([n,s])=>{if(n){const _=this.tracks[n];t[n]={buffer:s,container:_.container,codec:_.codec,supplemental:_.supplemental,levelCodec:_.levelCodec,id:_.id,metadata:_.metadata}}}),this.hls.trigger(o.BUFFER_CREATED,{tracks:t}),this.log(`SourceBuffers created. Running queue: ${this.operationQueue}`),this.sourceBuffers.forEach(([n])=>{this.executeNext(n)})}else{const t=new Error("could not create source buffer for media codec(s)");this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_INCOMPATIBLE_CODECS_ERROR,fatal:!0,error:t,reason:t.message})}}createSourceBuffers(){const{tracks:t,sourceBuffers:n,mediaSource:s}=this;if(!s)throw new Error("createSourceBuffers called when mediaSource was null");for(const E in t){const I=E,U=t[I];if(this.isPending(U)){const Q=this.getTrackCodec(U,I),G=`${U.container};codecs=${Q}`;U.codec=Q,this.log(`creating sourceBuffer(${G})${this.currentOp(I)?" Queued":""} ${Yi(U)}`);try{const ue=s.addSourceBuffer(G),de=Yl(I),be=[I,ue];n[de]=be,U.buffer=ue}catch(ue){var _;this.error(`error while trying to add sourceBuffer: ${ue.message}`),this.shiftAndExecuteNext(I),(_=this.operationQueue)==null||_.removeBlockers(),delete this.tracks[I],this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_ADD_CODEC_ERROR,fatal:!1,error:ue,sourceBufferName:I,mimeType:G,parent:U.id});return}this.trackSourceBuffer(I,U)}}this.bufferCreated()}getTrackCodec(t,n){const s=t.supplemental;let _=t.codec;s&&(n==="video"||n==="audiovideo")&&Te(s,"video")&&(_=qr(_,s));const E=an(_,t.levelCodec);return E?n.slice(0,5)==="audio"?mt(E,this.appendSource):E:""}trackSourceBuffer(t,n){const s=n.buffer;if(!s)return;const _=this.getTrackCodec(n,t);this.tracks[t]={buffer:s,codec:_,container:n.container,levelCodec:n.levelCodec,supplemental:n.supplemental,metadata:n.metadata,id:n.id,listeners:[]},this.removeBufferListeners(t),this.addBufferListener(t,"updatestart",this.onSBUpdateStart),this.addBufferListener(t,"updateend",this.onSBUpdateEnd),this.addBufferListener(t,"error",this.onSBUpdateError),this.appendSource&&this.addBufferListener(t,"bufferedchange",(E,I)=>{const U=I.removedRanges;U!=null&&U.length&&this.hls.trigger(o.BUFFER_FLUSHED,{type:E})})}get mediaSrc(){var t,n;const s=((t=this.media)==null||(n=t.querySelector)==null?void 0:n.call(t,"source"))||this.media;return s==null?void 0:s.src}onSBUpdateStart(t){const n=this.currentOp(t);n&&n.onStart()}onSBUpdateEnd(t){var n;if(((n=this.mediaSource)==null?void 0:n.readyState)==="closed"){this.resetBuffer(t);return}const s=this.currentOp(t);s&&(s.onComplete(),this.shiftAndExecuteNext(t))}onSBUpdateError(t,n){var s;const _=new Error(`${t} SourceBuffer error. MediaSource readyState: ${(s=this.mediaSource)==null?void 0:s.readyState}`);this.error(`${_}`,n),this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_APPENDING_ERROR,sourceBufferName:t,error:_,fatal:!1});const E=this.currentOp(t);E&&E.onError(_)}updateTimestampOffset(t,n,s,_,E,I){const U=n-t.timestampOffset;Math.abs(U)>=s&&(this.log(`Updating ${_} SourceBuffer timestampOffset to ${n} (sn: ${E} cc: ${I})`),t.timestampOffset=n)}removeExecutor(t,n,s){const{media:_,mediaSource:E}=this,I=this.tracks[t],U=I==null?void 0:I.buffer;if(!_||!E||!U){this.warn(`Attempting to remove from the ${t} SourceBuffer, but it does not exist`),this.shiftAndExecuteNext(t);return}const Q=r(_.duration)?_.duration:1/0,G=r(E.duration)?E.duration:1/0,ue=Math.max(0,n),de=Math.min(s,Q,G);de>ue&&(!I.ending||I.ended)?(I.ended=!1,this.log(`Removing [${ue},${de}] from the ${t} SourceBuffer`),U.remove(ue,de)):this.shiftAndExecuteNext(t)}appendExecutor(t,n){const s=this.tracks[n],_=s==null?void 0:s.buffer;if(!_)throw new Vl(`Attempting to append to the ${n} SourceBuffer, but it does not exist`);s.ending=!1,s.ended=!1,_.appendBuffer(t)}blockUntilOpen(t){if(this.isUpdating()||this.isQueued())this.blockBuffers(t).catch(n=>{this.warn(`SourceBuffer blocked callback ${n}`),this.stepOperationQueue(this.sourceBufferTypes)});else try{t()}catch(n){this.warn(`Callback run without blocking ${this.operationQueue} ${n}`)}}isUpdating(){return this.sourceBuffers.some(([t,n])=>t&&n.updating)}isQueued(){return this.sourceBuffers.some(([t])=>t&&!!this.currentOp(t))}isPending(t){return!!t&&!t.buffer}blockBuffers(t,n=this.sourceBufferTypes){if(!n.length)return this.log("Blocking operation requested, but no SourceBuffers exist"),Promise.resolve().then(t);const{operationQueue:s}=this,_=n.map(I=>this.appendBlocker(I));return n.length>1&&!!this.blockedAudioAppend&&this.unblockAudio(),Promise.all(_).then(I=>{s===this.operationQueue&&(t(),this.stepOperationQueue(this.sourceBufferTypes))})}stepOperationQueue(t){t.forEach(n=>{var s;const _=(s=this.tracks[n])==null?void 0:s.buffer;!_||_.updating||this.shiftAndExecuteNext(n)})}append(t,n,s){this.operationQueue&&this.operationQueue.append(t,n,s)}appendBlocker(t){if(this.operationQueue)return this.operationQueue.appendBlocker(t)}currentOp(t){return this.operationQueue?this.operationQueue.current(t):null}executeNext(t){t&&this.operationQueue&&this.operationQueue.executeNext(t)}shiftAndExecuteNext(t){this.operationQueue&&this.operationQueue.shiftAndExecuteNext(t)}get pendingTrackCount(){return Object.keys(this.tracks).reduce((t,n)=>t+(this.isPending(this.tracks[n])?1:0),0)}get sourceBufferCount(){return this.sourceBuffers.reduce((t,[n])=>t+(n?1:0),0)}get sourceBufferTypes(){return this.sourceBuffers.map(([t])=>t).filter(t=>!!t)}addBufferListener(t,n,s){const _=this.tracks[t];if(!_)return;const E=_.buffer;if(!E)return;const I=s.bind(this,t);_.listeners.push({event:n,listener:I}),E.addEventListener(n,I)}removeBufferListeners(t){const n=this.tracks[t];if(!n)return;const s=n.buffer;s&&(n.listeners.forEach(_=>{s.removeEventListener(_.event,_.listener)}),n.listeners.length=0)}}function ru(D){const t=D.querySelectorAll("source");[].slice.call(t).forEach(n=>{D.removeChild(n)})}function fu(D,t){const n=self.document.createElement("source");n.type="video/mp4",n.src=t,D.appendChild(n)}function Yl(D){return D==="audio"?1:0}class Al{constructor(t){this.hls=void 0,this.autoLevelCapping=void 0,this.firstLevel=void 0,this.media=void 0,this.restrictedLevels=void 0,this.timer=void 0,this.clientRect=void 0,this.streamController=void 0,this.hls=t,this.autoLevelCapping=Number.POSITIVE_INFINITY,this.firstLevel=-1,this.media=null,this.restrictedLevels=[],this.timer=void 0,this.clientRect=null,this.registerListeners()}setStreamController(t){this.streamController=t}destroy(){this.hls&&this.unregisterListener(),this.timer&&this.stopCapping(),this.media=null,this.clientRect=null,this.hls=this.streamController=null}registerListeners(){const{hls:t}=this;t.on(o.FPS_DROP_LEVEL_CAPPING,this.onFpsDropLevelCapping,this),t.on(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(o.MANIFEST_PARSED,this.onManifestParsed,this),t.on(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.on(o.BUFFER_CODECS,this.onBufferCodecs,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this)}unregisterListener(){const{hls:t}=this;t.off(o.FPS_DROP_LEVEL_CAPPING,this.onFpsDropLevelCapping,this),t.off(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(o.MANIFEST_PARSED,this.onManifestParsed,this),t.off(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.off(o.BUFFER_CODECS,this.onBufferCodecs,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this)}onFpsDropLevelCapping(t,n){const s=this.hls.levels[n.droppedLevel];this.isLevelAllowed(s)&&this.restrictedLevels.push({bitrate:s.bitrate,height:s.height,width:s.width})}onMediaAttaching(t,n){this.media=n.media instanceof HTMLVideoElement?n.media:null,this.clientRect=null,this.timer&&this.hls.levels.length&&this.detectPlayerSize()}onManifestParsed(t,n){const s=this.hls;this.restrictedLevels=[],this.firstLevel=n.firstLevel,s.config.capLevelToPlayerSize&&n.video&&this.startCapping()}onLevelsUpdated(t,n){this.timer&&r(this.autoLevelCapping)&&this.detectPlayerSize()}onBufferCodecs(t,n){this.hls.config.capLevelToPlayerSize&&n.video&&this.startCapping()}onMediaDetaching(){this.stopCapping(),this.media=null}detectPlayerSize(){if(this.media){if(this.mediaHeight<=0||this.mediaWidth<=0){this.clientRect=null;return}const t=this.hls.levels;if(t.length){const n=this.hls,s=this.getMaxLevel(t.length-1);s!==this.autoLevelCapping&&n.logger.log(`Setting autoLevelCapping to ${s}: ${t[s].height}p@${t[s].bitrate} for media ${this.mediaWidth}x${this.mediaHeight}`),n.autoLevelCapping=s,n.autoLevelEnabled&&n.autoLevelCapping>this.autoLevelCapping&&this.streamController&&this.streamController.nextLevelSwitch(),this.autoLevelCapping=n.autoLevelCapping}}}getMaxLevel(t){const n=this.hls.levels;if(!n.length)return-1;const s=n.filter((_,E)=>this.isLevelAllowed(_)&&E<=t);return this.clientRect=null,Al.getMaxLevelByMediaSize(s,this.mediaWidth,this.mediaHeight)}startCapping(){this.timer||(this.autoLevelCapping=Number.POSITIVE_INFINITY,self.clearInterval(this.timer),this.timer=self.setInterval(this.detectPlayerSize.bind(this),1e3),this.detectPlayerSize())}stopCapping(){this.restrictedLevels=[],this.firstLevel=-1,this.autoLevelCapping=Number.POSITIVE_INFINITY,this.timer&&(self.clearInterval(this.timer),this.timer=void 0)}getDimensions(){if(this.clientRect)return this.clientRect;const t=this.media,n={width:0,height:0};if(t){const s=t.getBoundingClientRect();n.width=s.width,n.height=s.height,!n.width&&!n.height&&(n.width=s.right-s.left||t.width||0,n.height=s.bottom-s.top||t.height||0)}return this.clientRect=n,n}get mediaWidth(){return this.getDimensions().width*this.contentScaleFactor}get mediaHeight(){return this.getDimensions().height*this.contentScaleFactor}get contentScaleFactor(){let t=1;if(!this.hls.config.ignoreDevicePixelRatio)try{t=self.devicePixelRatio}catch(n){}return Math.min(t,this.hls.config.maxDevicePixelRatio)}isLevelAllowed(t){return!this.restrictedLevels.some(s=>t.bitrate===s.bitrate&&t.width===s.width&&t.height===s.height)}static getMaxLevelByMediaSize(t,n,s){if(!(t!=null&&t.length))return-1;const _=(U,Q)=>Q?U.width!==Q.width||U.height!==Q.height:!0;let E=t.length-1;const I=Math.max(n,s);for(let U=0;U<t.length;U+=1){const Q=t[U];if((Q.width>=I||Q.height>=I)&&_(Q,t[U+1])){E=U;break}}return E}}const du={MANIFEST:"m",AUDIO:"a",VIDEO:"v",MUXED:"av",INIT:"i",CAPTION:"c",TIMED_TEXT:"tt",KEY:"k",OTHER:"o"},Du={HLS:"h"};class xu{constructor(t,n){Array.isArray(t)&&(t=t.map(s=>s instanceof xu?s:new xu(s))),this.value=t,this.params=n}}const Vu="Dict";function Tc(D){return Array.isArray(D)?JSON.stringify(D):D instanceof Map?"Map{}":D instanceof Set?"Set{}":typeof D=="object"?JSON.stringify(D):String(D)}function Rl(D,t,n,s){return new Error(`failed to ${D} "${Tc(t)}" as ${n}`,{cause:s})}function Ta(D,t,n){return Rl("serialize",D,t,n)}class mf{constructor(t){this.description=t}}const Yc="Bare Item",ml="Boolean";function Qc(D){if(typeof D!="boolean")throw Ta(D,ml);return D?"?1":"?0"}function Df(D){return btoa(String.fromCharCode(...D))}const Cc="Byte Sequence";function ku(D){if(ArrayBuffer.isView(D)===!1)throw Ta(D,Cc);return`:${Df(D)}:`}const _f="Integer";function Ic(D){return D<-999999999999999||999999999999999<D}function Ql(D){if(Ic(D))throw Ta(D,_f);return D.toString()}function vf(D){return`@${Ql(D.getTime()/1e3)}`}function Pc(D,t){if(D<0)return-Pc(-D,t);const n=Math.pow(10,t);if(Math.abs(D*n%1-.5)<Number.EPSILON){const _=Math.floor(D*n);return(_%2===0?_:_+1)/n}else return Math.round(D*n)/n}const Ru="Decimal";function _l(D){const t=Pc(D,3);if(Math.floor(Math.abs(t)).toString().length>12)throw Ta(D,Ru);const n=t.toString();return n.includes(".")?n:`${n}.0`}const Oc="String",vl=/[\x00-\x1f\x7f]+/;function Xc(D){if(vl.test(D))throw Ta(D,Oc);return`"${D.replace(/\\/g,"\\\\").replace(/"/g,'\\"')}"`}function gf(D){return D.description||D.toString().slice(7,-1)}const cc="Token";function To(D){const t=gf(D);if(/^([a-zA-Z*])([!#$%&'*+\-.^_`|~\w:/]*)$/.test(t)===!1)throw Ta(t,cc);return t}function Dc(D){switch(typeof D){case"number":if(!r(D))throw Ta(D,Yc);return Number.isInteger(D)?Ql(D):_l(D);case"string":return Xc(D);case"symbol":return To(D);case"boolean":return Qc(D);case"object":if(D instanceof Date)return vf(D);if(D instanceof Uint8Array)return ku(D);if(D instanceof mf)return To(D);default:throw Ta(D,Yc)}}const Jc="Key";function gl(D){if(/^[a-z*][a-z0-9\-_.*]*$/.test(D)===!1)throw Ta(D,Jc);return D}function Zu(D){return D==null?"":Object.entries(D).map(([t,n])=>n===!0?`;${gl(t)}`:`;${gl(t)}=${Dc(n)}`).join("")}function Co(D){return D instanceof xu?`${Dc(D.value)}${Zu(D.params)}`:Dc(D)}function Ll(D){return`(${D.value.map(Co).join(" ")})${Zu(D.params)}`}function kf(D,t={whitespace:!0}){if(typeof D!="object"||D==null)throw Ta(D,Vu);const n=D instanceof Map?D.entries():Object.entries(D),s=t!=null&&t.whitespace?" ":"";return Array.from(n).map(([_,E])=>{E instanceof xu||(E=new xu(E));let I=gl(_);return E.value===!0?I+=Zu(E.params):(I+="=",Array.isArray(E.value)?I+=Ll(E):I+=Co(E)),I}).join(`,${s}`)}function kc(D,t){return kf(D,t)}const Yu="CMCD-Object",Xs="CMCD-Request",bo="CMCD-Session",Lu="CMCD-Status",Ue={br:Yu,ab:Yu,d:Yu,ot:Yu,tb:Yu,tpb:Yu,lb:Yu,tab:Yu,lab:Yu,url:Yu,pb:Xs,bl:Xs,tbl:Xs,dl:Xs,ltc:Xs,mtp:Xs,nor:Xs,nrr:Xs,rc:Xs,sn:Xs,sta:Xs,su:Xs,ttfb:Xs,ttfbb:Xs,ttlb:Xs,cmsdd:Xs,cmsds:Xs,smrt:Xs,df:Xs,cs:Xs,ts:Xs,cid:bo,pr:bo,sf:bo,sid:bo,st:bo,v:bo,msd:bo,bs:Lu,bsd:Lu,cdn:Lu,rtp:Lu,bg:Lu,pt:Lu,ec:Lu,e:Lu},Qu={REQUEST:Xs};function Au(D){return Object.keys(D).reduce((t,n)=>{var s;return(s=D[n])===null||s===void 0||s.forEach(_=>t[_]=n),t},{})}function fc(D,t){const n={};if(!D)return n;const s=Object.keys(D),_=t?Au(t):{};return s.reduce((E,I)=>{var U;const Q=Ue[I]||_[I]||Qu.REQUEST,G=(U=E[Q])!==null&&U!==void 0?U:E[Q]={};return G[I]=D[I],E},n)}function hu(D){return["ot","sf","st","e","sta"].includes(D)}function Xu(D){return typeof D=="number"?r(D):D!=null&&D!==""&&D!==!1}const dc="event";function hc(D,t){const n=new URL(D),s=new URL(t);if(n.origin!==s.origin)return D;const _=n.pathname.split("/").slice(1),E=s.pathname.split("/").slice(1,-1);for(;_[0]===E[0];)_.shift(),E.shift();for(;E.length;)E.shift(),_.unshift("..");return _.join("/")+n.search+n.hash}const al=D=>Math.round(D),sl=(D,t)=>Array.isArray(D)?D.map(n=>sl(n,t)):D instanceof xu&&typeof D.value=="string"?new xu(sl(D.value,t),D.params):(t.baseUrl&&(D=hc(D,t.baseUrl)),t.version===1?encodeURIComponent(D):D),Mu=D=>al(D/100)*100,pc={br:al,d:al,bl:Mu,dl:Mu,mtp:Mu,nor:(D,t)=>{let n=D;return t.version>=2&&(D instanceof xu&&typeof D.value=="string"?n=new xu([D]):typeof D=="string"&&(n=[D])),sl(n,t)},rtp:Mu,tb:al},Tu="request",yl="response",Fu=["ab","bg","bl","br","bs","bsd","cdn","cid","cs","df","ec","lab","lb","ltc","msd","mtp","pb","pr","pt","sf","sid","sn","st","sta","tab","tb","tbl","tpb","ts","v"],$f=["e"],qc=/^[a-zA-Z0-9-.]+-[a-zA-Z0-9-.]+$/;function Vo(D){return qc.test(D)}function Ml(D){return Fu.includes(D)||$f.includes(D)||Vo(D)}const Rc=["d","dl","nor","ot","rtp","su"];function mc(D){return Fu.includes(D)||Rc.includes(D)||Vo(D)}const _c=["cmsdd","cmsds","rc","smrt","ttfb","ttfbb","ttlb","url"];function vc(D){return Fu.includes(D)||Rc.includes(D)||_c.includes(D)||Vo(D)}const gc=["bl","br","bs","cid","d","dl","mtp","nor","nrr","ot","pr","rtp","sf","sid","st","su","tb","v"];function Rf(D){return gc.includes(D)||Vo(D)}const Lc={[yl]:vc,[dc]:Ml,[Tu]:mc};function Xl(D,t={}){const n={};if(D==null||typeof D!="object")return n;const s=t.version||D.v||1,_=t.reportingMode||Tu,E=s===1?Rf:Lc[_];let I=Object.keys(D).filter(E);const U=t.filter;typeof U=="function"&&(I=I.filter(U));const Q=_===yl||_===dc;Q&&!I.includes("ts")&&I.push("ts"),s>1&&!I.includes("v")&&I.push("v");const G=y({},pc,t.formatters),ue={version:s,reportingMode:_,baseUrl:t.baseUrl};return I.sort().forEach(de=>{let be=D[de];const Re=G[de];if(typeof Re=="function"&&(be=Re(be,ue)),de==="v"){if(s===1)return;be=s}de=="pr"&&be===1||(Q&&de==="ts"&&!r(be)&&(be=Date.now()),Xu(be)&&(hu(de)&&typeof be=="string"&&(be=new mf(be)),n[de]=be))}),n}function Jl(D,t={}){const n={};if(!D)return n;const s=Xl(D,t),_=fc(s,t==null?void 0:t.customHeaderMap);return Object.entries(_).reduce((E,[I,U])=>{const Q=kc(U,{whitespace:!1});return Q&&(E[I]=Q),E},n)}function bf(D,t,n){return y(D,Jl(t,n))}const ef="CMCD";function ol(D,t={}){return D?kc(Xl(D,t),{whitespace:!1}):""}function yc(D,t={}){if(!D)return"";const n=ol(D,t);return encodeURIComponent(n)}function bc(D,t={}){if(!D)return"";const n=yc(D,t);return`${ef}=${n}`}const Mc=/CMCD=[^&#]+/;function Fc(D,t,n){const s=bc(t,n);if(!s)return D;if(Mc.test(D))return D.replace(Mc,s);const _=D.includes("?")?"&":"?";return`${D}${_}${s}`}class xf{constructor(t){this.hls=void 0,this.config=void 0,this.media=void 0,this.sid=void 0,this.cid=void 0,this.useHeaders=!1,this.includeKeys=void 0,this.initialized=!1,this.starved=!1,this.buffering=!0,this.audioBuffer=void 0,this.videoBuffer=void 0,this.onWaiting=()=>{this.initialized&&(this.starved=!0),this.buffering=!0},this.onPlaying=()=>{this.initialized||(this.initialized=!0),this.buffering=!1},this.applyPlaylistData=_=>{try{this.apply(_,{ot:du.MANIFEST,su:!this.initialized})}catch(E){this.hls.logger.warn("Could not generate manifest CMCD data.",E)}},this.applyFragmentData=_=>{try{const{frag:E,part:I}=_,U=this.hls.levels[E.level],Q=this.getObjectType(E),G={d:(I||E).duration*1e3,ot:Q};(Q===du.VIDEO||Q===du.AUDIO||Q==du.MUXED)&&(G.br=U.bitrate/1e3,G.tb=this.getTopBandwidth(Q)/1e3,G.bl=this.getBufferLength(Q));const ue=I?this.getNextPart(I):this.getNextFrag(E);ue!=null&&ue.url&&ue.url!==E.url&&(G.nor=ue.url),this.apply(_,G)}catch(E){this.hls.logger.warn("Could not generate segment CMCD data.",E)}},this.hls=t;const n=this.config=t.config,{cmcd:s}=n;s!=null&&(n.pLoader=this.createPlaylistLoader(),n.fLoader=this.createFragmentLoader(),this.sid=s.sessionId||t.sessionId,this.cid=s.contentId,this.useHeaders=s.useHeaders===!0,this.includeKeys=s.includeKeys,this.registerListeners())}registerListeners(){const t=this.hls;t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHED,this.onMediaDetached,this),t.on(o.BUFFER_CREATED,this.onBufferCreated,this)}unregisterListeners(){const t=this.hls;t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHED,this.onMediaDetached,this),t.off(o.BUFFER_CREATED,this.onBufferCreated,this)}destroy(){this.unregisterListeners(),this.onMediaDetached(),this.hls=this.config=this.audioBuffer=this.videoBuffer=null,this.onWaiting=this.onPlaying=this.media=null}onMediaAttached(t,n){this.media=n.media,this.media.addEventListener("waiting",this.onWaiting),this.media.addEventListener("playing",this.onPlaying)}onMediaDetached(){this.media&&(this.media.removeEventListener("waiting",this.onWaiting),this.media.removeEventListener("playing",this.onPlaying),this.media=null)}onBufferCreated(t,n){var s,_;this.audioBuffer=(s=n.tracks.audio)==null?void 0:s.buffer,this.videoBuffer=(_=n.tracks.video)==null?void 0:_.buffer}createData(){var t;return{v:1,sf:Du.HLS,sid:this.sid,cid:this.cid,pr:(t=this.media)==null?void 0:t.playbackRate,mtp:this.hls.bandwidthEstimate/1e3}}apply(t,n={}){y(n,this.createData());const s=n.ot===du.INIT||n.ot===du.VIDEO||n.ot===du.MUXED;this.starved&&s&&(n.bs=!0,n.su=!0,this.starved=!1),n.su==null&&(n.su=this.buffering);const{includeKeys:_}=this;_&&(n=Object.keys(n).reduce((I,U)=>(_.includes(U)&&(I[U]=n[U]),I),{}));const E={baseUrl:t.url};this.useHeaders?(t.headers||(t.headers={}),bf(t.headers,n,E)):t.url=Fc(t.url,n,E)}getNextFrag(t){var n;const s=(n=this.hls.levels[t.level])==null?void 0:n.details;if(s){const _=t.sn-s.startSN;return s.fragments[_+1]}}getNextPart(t){var n;const{index:s,fragment:_}=t,E=(n=this.hls.levels[_.level])==null||(n=n.details)==null?void 0:n.partList;if(E){const{sn:I}=_;for(let U=E.length-1;U>=0;U--){const Q=E[U];if(Q.index===s&&Q.fragment.sn===I)return E[U+1]}}}getObjectType(t){const{type:n}=t;if(n==="subtitle")return du.TIMED_TEXT;if(t.sn==="initSegment")return du.INIT;if(n==="audio")return du.AUDIO;if(n==="main")return this.hls.audioTracks.length?du.VIDEO:du.MUXED}getTopBandwidth(t){let n=0,s;const _=this.hls;if(t===du.AUDIO)s=_.audioTracks;else{const E=_.maxAutoLevel,I=E>-1?E+1:_.levels.length;s=_.levels.slice(0,I)}return s.forEach(E=>{E.bitrate>n&&(n=E.bitrate)}),n>0?n:NaN}getBufferLength(t){const n=this.media,s=t===du.AUDIO?this.audioBuffer:this.videoBuffer;return!s||!n?NaN:di.bufferInfo(s,n.currentTime,this.config.maxBufferHole).len*1e3}createPlaylistLoader(){const{pLoader:t}=this.config,n=this.applyPlaylistData,s=t||this.config.loader;return class{constructor(E){this.loader=void 0,this.loader=new s(E)}get stats(){return this.loader.stats}get context(){return this.loader.context}destroy(){this.loader.destroy()}abort(){this.loader.abort()}load(E,I,U){n(E),this.loader.load(E,I,U)}}}createFragmentLoader(){const{fLoader:t}=this.config,n=this.applyFragmentData,s=t||this.config.loader;return class{constructor(E){this.loader=void 0,this.loader=new s(E)}get stats(){return this.loader.stats}get context(){return this.loader.context}destroy(){this.loader.destroy()}abort(){this.loader.abort()}load(E,I,U){n(E),this.loader.load(E,I,U)}}}}const C=3e5;class O extends R{constructor(t){super("content-steering",t.logger),this.hls=void 0,this.loader=null,this.uri=null,this.pathwayId=".",this._pathwayPriority=null,this.timeToLoad=300,this.reloadTimer=-1,this.updated=0,this.started=!1,this.enabled=!0,this.levels=null,this.audioTracks=null,this.subtitleTracks=null,this.penalizedPathways={},this.hls=t,this.registerListeners()}registerListeners(){const t=this.hls;t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(o.MANIFEST_PARSED,this.onManifestParsed,this),t.on(o.ERROR,this.onError,this)}unregisterListeners(){const t=this.hls;t&&(t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(o.MANIFEST_PARSED,this.onManifestParsed,this),t.off(o.ERROR,this.onError,this))}pathways(){return(this.levels||[]).reduce((t,n)=>(t.indexOf(n.pathwayId)===-1&&t.push(n.pathwayId),t),[])}get pathwayPriority(){return this._pathwayPriority}set pathwayPriority(t){this.updatePathwayPriority(t)}startLoad(){if(this.started=!0,this.clearTimeout(),this.enabled&&this.uri){if(this.updated){const t=this.timeToLoad*1e3-(performance.now()-this.updated);if(t>0){this.scheduleRefresh(this.uri,t);return}}this.loadSteeringManifest(this.uri)}}stopLoad(){this.started=!1,this.loader&&(this.loader.destroy(),this.loader=null),this.clearTimeout()}clearTimeout(){this.reloadTimer!==-1&&(self.clearTimeout(this.reloadTimer),this.reloadTimer=-1)}destroy(){this.unregisterListeners(),this.stopLoad(),this.hls=null,this.levels=this.audioTracks=this.subtitleTracks=null}removeLevel(t){const n=this.levels;n&&(this.levels=n.filter(s=>s!==t))}onManifestLoading(){this.stopLoad(),this.enabled=!0,this.timeToLoad=300,this.updated=0,this.uri=null,this.pathwayId=".",this.levels=this.audioTracks=this.subtitleTracks=null}onManifestLoaded(t,n){const{contentSteering:s}=n;s!==null&&(this.pathwayId=s.pathwayId,this.uri=s.uri,this.started&&this.startLoad())}onManifestParsed(t,n){this.audioTracks=n.audioTracks,this.subtitleTracks=n.subtitleTracks}onError(t,n){const{errorAction:s}=n;if((s==null?void 0:s.action)===nr.SendAlternateToPenaltyBox&&s.flags===kr.MoveAllAlternatesMatchingHost){const _=this.levels;let E=this._pathwayPriority,I=this.pathwayId;if(n.context){const{groupId:U,pathwayId:Q,type:G}=n.context;U&&_?I=this.getPathwayForGroupId(U,G,I):Q&&(I=Q)}I in this.penalizedPathways||(this.penalizedPathways[I]=performance.now()),!E&&_&&(E=this.pathways()),E&&E.length>1&&(this.updatePathwayPriority(E),s.resolved=this.pathwayId!==I),n.details===f.BUFFER_APPEND_ERROR&&!n.fatal?s.resolved=!0:s.resolved||this.warn(`Could not resolve ${n.details} ("${n.error.message}") with content-steering for Pathway: ${I} levels: ${_&&_.length} priorities: ${Yi(E)} penalized: ${Yi(this.penalizedPathways)}`)}}filterParsedLevels(t){this.levels=t;let n=this.getLevelsForPathway(this.pathwayId);if(n.length===0){const s=t[0].pathwayId;this.log(`No levels found in Pathway ${this.pathwayId}. Setting initial Pathway to "${s}"`),n=this.getLevelsForPathway(s),this.pathwayId=s}return n.length!==t.length&&this.log(`Found ${n.length}/${t.length} levels in Pathway "${this.pathwayId}"`),n}getLevelsForPathway(t){return this.levels===null?[]:this.levels.filter(n=>t===n.pathwayId)}updatePathwayPriority(t){this._pathwayPriority=t;let n;const s=this.penalizedPathways,_=performance.now();Object.keys(s).forEach(E=>{_-s[E]>C&&delete s[E]});for(let E=0;E<t.length;E++){const I=t[E];if(I in s)continue;if(I===this.pathwayId)return;const U=this.hls.nextLoadLevel,Q=this.hls.levels[U];if(n=this.getLevelsForPathway(I),n.length>0){this.log(`Setting Pathway to "${I}"`),this.pathwayId=I,Ra(n),this.hls.trigger(o.LEVELS_UPDATED,{levels:n});const G=this.hls.levels[U];Q&&G&&this.levels&&(G.attrs["STABLE-VARIANT-ID"]!==Q.attrs["STABLE-VARIANT-ID"]&&G.bitrate!==Q.bitrate&&this.log(`Unstable Pathways change from bitrate ${Q.bitrate} to ${G.bitrate}`),this.hls.nextLoadLevel=U);break}}}getPathwayForGroupId(t,n,s){const _=this.getLevelsForPathway(s).concat(this.levels||[]);for(let E=0;E<_.length;E++)if(n===h.AUDIO_TRACK&&_[E].hasAudioGroup(t)||n===h.SUBTITLE_TRACK&&_[E].hasSubtitleGroup(t))return _[E].pathwayId;return s}clonePathways(t){const n=this.levels;if(!n)return;const s={},_={};t.forEach(E=>{const{ID:I,"BASE-ID":U,"URI-REPLACEMENT":Q}=E;if(n.some(ue=>ue.pathwayId===I))return;const G=this.getLevelsForPathway(U).map(ue=>{const de=new Ni(ue.attrs);de["PATHWAY-ID"]=I;const be=de.AUDIO&&`${de.AUDIO}_clone_${I}`,Re=de.SUBTITLES&&`${de.SUBTITLES}_clone_${I}`;be&&(s[de.AUDIO]=be,de.AUDIO=be),Re&&(_[de.SUBTITLES]=Re,de.SUBTITLES=Re);const Le=_e(ue.uri,de["STABLE-VARIANT-ID"],"PER-VARIANT-URIS",Q),at=new $i({attrs:de,audioCodec:ue.audioCodec,bitrate:ue.bitrate,height:ue.height,name:ue.name,url:Le,videoCodec:ue.videoCodec,width:ue.width});if(ue.audioGroups)for(let it=1;it<ue.audioGroups.length;it++)at.addGroupId("audio",`${ue.audioGroups[it]}_clone_${I}`);if(ue.subtitleGroups)for(let it=1;it<ue.subtitleGroups.length;it++)at.addGroupId("text",`${ue.subtitleGroups[it]}_clone_${I}`);return at});n.push(...G),L(this.audioTracks,s,Q,I),L(this.subtitleTracks,_,Q,I)})}loadSteeringManifest(t){const n=this.hls.config,s=n.loader;this.loader&&this.loader.destroy(),this.loader=new s(n);let _;try{_=new self.URL(t)}catch(ue){this.enabled=!1,this.log(`Failed to parse Steering Manifest URI: ${t}`);return}if(_.protocol!=="data:"){const ue=(this.hls.bandwidthEstimate||n.abrEwmaDefaultEstimate)|0;_.searchParams.set("_HLS_pathway",this.pathwayId),_.searchParams.set("_HLS_throughput",""+ue)}const E={responseType:"json",url:_.href},I=n.steeringManifestLoadPolicy.default,U=I.errorRetry||I.timeoutRetry||{},Q={loadPolicy:I,timeout:I.maxLoadTimeMs,maxRetry:U.maxNumRetry||0,retryDelay:U.retryDelayMs||0,maxRetryDelay:U.maxRetryDelayMs||0},G={onSuccess:(ue,de,be,Re)=>{this.log(`Loaded steering manifest: "${_}"`);const Le=ue.data;if((Le==null?void 0:Le.VERSION)!==1){this.log(`Steering VERSION ${Le.VERSION} not supported!`);return}this.updated=performance.now(),this.timeToLoad=Le.TTL;const{"RELOAD-URI":at,"PATHWAY-CLONES":it,"PATHWAY-PRIORITY":Qt}=Le;if(at)try{this.uri=new self.URL(at,_).href}catch(ur){this.enabled=!1,this.log(`Failed to parse Steering Manifest RELOAD-URI: ${at}`);return}this.scheduleRefresh(this.uri||be.url),it&&this.clonePathways(it);const ir={steeringManifest:Le,url:_.toString()};this.hls.trigger(o.STEERING_MANIFEST_LOADED,ir),Qt&&this.updatePathwayPriority(Qt)},onError:(ue,de,be,Re)=>{if(this.log(`Error loading steering manifest: ${ue.code} ${ue.text} (${de.url})`),this.stopLoad(),ue.code===410){this.enabled=!1,this.log(`Steering manifest ${de.url} no longer available`);return}let Le=this.timeToLoad*1e3;if(ue.code===429){const at=this.loader;if(typeof(at==null?void 0:at.getResponseHeader)=="function"){const it=at.getResponseHeader("Retry-After");it&&(Le=parseFloat(it)*1e3)}this.log(`Steering manifest ${de.url} rate limited`);return}this.scheduleRefresh(this.uri||de.url,Le)},onTimeout:(ue,de,be)=>{this.log(`Timeout loading steering manifest (${de.url})`),this.scheduleRefresh(this.uri||de.url)}};this.log(`Requesting steering manifest: ${_}`),this.loader.load(E,Q,G)}scheduleRefresh(t,n=this.timeToLoad*1e3){this.clearTimeout(),this.reloadTimer=self.setTimeout(()=>{var s;const _=(s=this.hls)==null?void 0:s.media;if(_&&!_.ended){this.loadSteeringManifest(t);return}this.scheduleRefresh(t,this.timeToLoad*1e3)},n)}}function L(D,t,n,s){D&&Object.keys(t).forEach(_=>{const E=D.filter(I=>I.groupId===_).map(I=>{const U=y({},I);return U.details=void 0,U.attrs=new Ni(U.attrs),U.url=U.attrs.URI=_e(I.url,I.attrs["STABLE-RENDITION-ID"],"PER-RENDITION-URIS",n),U.groupId=U.attrs["GROUP-ID"]=t[_],U.attrs["PATHWAY-ID"]=s,U});D.push(...E)})}function _e(D,t,n,s){const{HOST:_,PARAMS:E,[n]:I}=s;let U;t&&(U=I==null?void 0:I[t],U&&(D=U));const Q=new self.URL(D);return _&&!U&&(Q.host=_),E&&Object.keys(E).sort().forEach(G=>{G&&Q.searchParams.set(G,E[G])}),Q.href}class Oe extends R{constructor(t){super("eme",t.logger),this.hls=void 0,this.config=void 0,this.media=null,this.keyFormatPromise=null,this.keySystemAccessPromises={},this._requestLicenseFailureCount=0,this.mediaKeySessions=[],this.keyIdToKeySessionPromise={},this.mediaKeys=null,this.setMediaKeysQueue=Oe.CDMCleanupPromise?[Oe.CDMCleanupPromise]:[],this.bannedKeyIds={},this.onMediaEncrypted=n=>{const{initDataType:s,initData:_}=n,E=`"${n.type}" event: init data type: "${s}"`;if(this.debug(E),_!==null){if(!this.keyFormatPromise){let I=Object.keys(this.keySystemAccessPromises);I.length||(I=Mo(this.config));const U=I.map(ks).filter(Q=>!!Q);this.keyFormatPromise=this.getKeyFormatPromise(U)}this.keyFormatPromise.then(I=>{const U=Jo(I);if(s!=="sinf"||U!==Wa.FAIRPLAY){this.log(`Ignoring "${n.type}" event with init data type: "${s}" for selected key-system ${U}`);return}let Q;try{const Re=Rt(new Uint8Array(_)),Le=Xo(JSON.parse(Re).sinf),at=tr(Le);if(!at)throw new Error("'schm' box missing or not cbcs/cenc with schi > tenc");Q=new Uint8Array(at.subarray(8,24))}catch(Re){this.warn(`${E} Failed to parse sinf: ${Re}`);return}const G=X(Q),{keyIdToKeySessionPromise:ue,mediaKeySessions:de}=this;let be=ue[G];for(let Re=0;Re<de.length;Re++){const Le=de[Re],at=Le.decryptdata;if(!at.keyId)continue;const it=X(at.keyId);if(vo(Q,at.keyId)||at.uri.replace(/-/g,"").indexOf(G)!==-1){if(be=ue[it],!be)continue;if(at.pssh)break;delete ue[it],at.pssh=new Uint8Array(_),at.keyId=Q,be=ue[G]=be.then(()=>this.generateRequestWithPreferredKeySession(Le,s,_,"encrypted-event-key-match")),be.catch(Qt=>this.handleError(Qt));break}}be||this.handleError(new Error(`Key ID ${G} not encountered in playlist. Key-system sessions ${de.length}.`))}).catch(I=>this.handleError(I))}},this.onWaitingForKey=n=>{this.log(`"${n.type}" event`)},this.hls=t,this.config=t.config,this.registerListeners()}destroy(){this.onDestroying(),this.onMediaDetached();const t=this.config;t.requestMediaKeySystemAccessFunc=null,t.licenseXhrSetup=t.licenseResponseCallback=void 0,t.drmSystems=t.drmSystemOptions={},this.hls=this.config=this.keyIdToKeySessionPromise=null,this.onMediaEncrypted=this.onWaitingForKey=null}registerListeners(){this.hls.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),this.hls.on(o.MEDIA_DETACHED,this.onMediaDetached,this),this.hls.on(o.MANIFEST_LOADING,this.onManifestLoading,this),this.hls.on(o.MANIFEST_LOADED,this.onManifestLoaded,this),this.hls.on(o.DESTROYING,this.onDestroying,this)}unregisterListeners(){this.hls.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),this.hls.off(o.MEDIA_DETACHED,this.onMediaDetached,this),this.hls.off(o.MANIFEST_LOADING,this.onManifestLoading,this),this.hls.off(o.MANIFEST_LOADED,this.onManifestLoaded,this),this.hls.off(o.DESTROYING,this.onDestroying,this)}getLicenseServerUrl(t){const{drmSystems:n,widevineLicenseUrl:s}=this.config,_=n==null?void 0:n[t];if(_)return _.licenseUrl;if(t===Wa.WIDEVINE&&s)return s}getLicenseServerUrlOrThrow(t){const n=this.getLicenseServerUrl(t);if(n===void 0)throw new Error(`no license server URL configured for key-system "${t}"`);return n}getServerCertificateUrl(t){const{drmSystems:n}=this.config,s=n==null?void 0:n[t];if(s)return s.serverCertificateUrl;this.log(`No Server Certificate in config.drmSystems["${t}"]`)}attemptKeySystemAccess(t){const n=this.hls.levels,s=(I,U,Q)=>!!I&&Q.indexOf(I)===U,_=n.map(I=>I.audioCodec).filter(s),E=n.map(I=>I.videoCodec).filter(s);return _.length+E.length===0&&E.push("avc1.42e01e"),new Promise((I,U)=>{const Q=G=>{const ue=G.shift();this.getMediaKeysPromise(ue,_,E).then(de=>I({keySystem:ue,mediaKeys:de})).catch(de=>{G.length?Q(G):de instanceof pn?U(de):U(new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_NO_ACCESS,error:de,fatal:!0},de.message))})};Q(t)})}requestMediaKeySystemAccess(t,n){const{requestMediaKeySystemAccessFunc:s}=this.config;if(typeof s!="function"){let _=`Configured requestMediaKeySystemAccess is not a function ${s}`;return Eu===null&&self.location.protocol==="http:"&&(_=`navigator.requestMediaKeySystemAccess is not available over insecure protocol ${location.protocol}`),Promise.reject(new Error(_))}return s(t,n)}getMediaKeysPromise(t,n,s){var _;const E=Pu(t,n,s,this.config.drmSystemOptions||{});let I=this.keySystemAccessPromises[t],U=(_=I)==null?void 0:_.keySystemAccess;if(!U){this.log(`Requesting encrypted media "${t}" key-system access with config: ${Yi(E)}`),U=this.requestMediaKeySystemAccess(t,E);const Q=I=this.keySystemAccessPromises[t]={keySystemAccess:U};return U.catch(G=>{this.log(`Failed to obtain access to key-system "${t}": ${G}`)}),U.then(G=>{this.log(`Access for key-system "${G.keySystem}" obtained`);const ue=this.fetchServerCertificate(t);this.log(`Create media-keys for "${t}"`);const de=Q.mediaKeys=G.createMediaKeys().then(be=>(this.log(`Media-keys created for "${t}"`),Q.hasMediaKeys=!0,ue.then(Re=>Re?this.setMediaKeysServerCertificate(be,t,Re):be)));return de.catch(be=>{this.error(`Failed to create media-keys for "${t}"}: ${be}`)}),de})}return U.then(()=>I.mediaKeys)}createMediaKeySessionContext({decryptdata:t,keySystem:n,mediaKeys:s}){this.log(`Creating key-system session "${n}" keyId: ${X(t.keyId||[])} keyUri: ${t.uri}`);const _=s.createSession(),E={decryptdata:t,keySystem:n,mediaKeys:s,mediaKeysSession:_,keyStatus:"status-pending"};return this.mediaKeySessions.push(E),E}renewKeySession(t){const n=t.decryptdata;if(n.pssh){const s=this.createMediaKeySessionContext(t),_=dn(n),E="cenc";this.keyIdToKeySessionPromise[_]=this.generateRequestWithPreferredKeySession(s,E,n.pssh.buffer,"expired")}else this.warn("Could not renew expired session. Missing pssh initData.");this.removeSession(t)}updateKeySession(t,n){const s=t.mediaKeysSession;return this.log(`Updating key-session "${s.sessionId}" for keyId ${X(t.decryptdata.keyId||[])}
} (data length: ${n.byteLength})`),s.update(n)}getSelectedKeySystemFormats(){return Object.keys(this.keySystemAccessPromises).map(t=>({keySystem:t,hasMediaKeys:this.keySystemAccessPromises[t].hasMediaKeys})).filter(({hasMediaKeys:t})=>!!t).map(({keySystem:t})=>ks(t)).filter(t=>!!t)}getKeySystemAccess(t){return this.getKeySystemSelectionPromise(t).then(({keySystem:n,mediaKeys:s})=>this.attemptSetMediaKeys(n,s))}selectKeySystem(t){return new Promise((n,s)=>{this.getKeySystemSelectionPromise(t).then(({keySystem:_})=>{const E=ks(_);E?n(E):s(new Error(`Unable to find format for key-system "${_}"`))}).catch(s)})}selectKeySystemFormat(t){const n=Object.keys(t.levelkeys||{});return this.keyFormatPromise||(this.log(`Selecting key-system from fragment (sn: ${t.sn} ${t.type}: ${t.level}) key formats ${n.join(", ")}`),this.keyFormatPromise=this.getKeyFormatPromise(n)),this.keyFormatPromise}getKeyFormatPromise(t){const n=Mo(this.config),s=t.map(Jo).filter(_=>!!_&&n.indexOf(_)!==-1);return this.selectKeySystem(s)}getKeyStatus(t){const{mediaKeySessions:n}=this;for(let s=0;s<n.length;s++){const _=Pn(t,n[s]);if(_)return _}}loadKey(t){const n=t.keyInfo.decryptdata,s=dn(n),_=this.bannedKeyIds[s];if(_||this.getKeyStatus(n)==="internal-error"){const U=Mi(_||"internal-error",n);return this.handleError(U,t.frag),Promise.reject(U)}const E=`(keyId: ${s} format: "${n.keyFormat}" method: ${n.method} uri: ${n.uri})`;this.log(`Starting session for key ${E}`);const I=this.keyIdToKeySessionPromise[s];if(!I){const U=this.getKeySystemForKeyPromise(n).then(({keySystem:Q,mediaKeys:G})=>(this.throwIfDestroyed(),this.log(`Handle encrypted media sn: ${t.frag.sn} ${t.frag.type}: ${t.frag.level} using key ${E}`),this.attemptSetMediaKeys(Q,G).then(()=>(this.throwIfDestroyed(),this.createMediaKeySessionContext({keySystem:Q,mediaKeys:G,decryptdata:n}))))).then(Q=>{const G="cenc",ue=n.pssh?n.pssh.buffer:null;return this.generateRequestWithPreferredKeySession(Q,G,ue,"playlist-key")});return U.catch(Q=>this.handleError(Q,t.frag)),this.keyIdToKeySessionPromise[s]=U,U}return I.catch(U=>{if(U instanceof pn){const Q=b({},U.data);this.getKeyStatus(n)==="internal-error"&&(Q.decryptdata=n);const G=new pn(Q,U.message);this.handleError(G,t.frag)}}),I}throwIfDestroyed(t="Invalid state"){if(!this.hls)throw new Error("invalid state")}handleError(t,n){if(this.hls)if(t instanceof pn){n&&(t.data.frag=n);const s=t.data.decryptdata;this.error(`${t.message}${s?` (${X(s.keyId||[])})`:""}`),this.hls.trigger(o.ERROR,t.data)}else this.error(t.message),this.hls.trigger(o.ERROR,{type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_NO_KEYS,error:t,fatal:!0})}getKeySystemForKeyPromise(t){const n=dn(t),s=this.keyIdToKeySessionPromise[n];if(!s){const _=Jo(t.keyFormat),E=_?[_]:Mo(this.config);return this.attemptKeySystemAccess(E)}return s}getKeySystemSelectionPromise(t){if(t.length||(t=Mo(this.config)),t.length===0)throw new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_NO_CONFIGURED_LICENSE,fatal:!0},`Missing key-system license configuration options ${Yi({drmSystems:this.config.drmSystems})}`);return this.attemptKeySystemAccess(t)}attemptSetMediaKeys(t,n){if(this.mediaKeys===n)return Promise.resolve();const s=this.setMediaKeysQueue.slice();this.log(`Setting media-keys for "${t}"`);const _=Promise.all(s).then(()=>{if(!this.media)throw this.mediaKeys=null,new Error("Attempted to set mediaKeys without media element attached");return this.media.setMediaKeys(n)});return this.mediaKeys=n,this.setMediaKeysQueue.push(_),_.then(()=>{this.log(`Media-keys set for "${t}"`),s.push(_),this.setMediaKeysQueue=this.setMediaKeysQueue.filter(E=>s.indexOf(E)===-1)})}generateRequestWithPreferredKeySession(t,n,s,_){var E;const I=(E=this.config.drmSystems)==null||(E=E[t.keySystem])==null?void 0:E.generateRequest;if(I)try{const Le=I.call(this.hls,n,s,t);if(!Le)throw new Error("Invalid response from configured generateRequest filter");n=Le.initDataType,s=Le.initData?Le.initData:null,t.decryptdata.pssh=s?new Uint8Array(s):null}catch(Le){if(this.warn(Le.message),this.hls&&this.hls.config.debug)throw Le}if(s===null)return this.log(`Skipping key-session request for "${_}" (no initData)`),Promise.resolve(t);const U=dn(t.decryptdata),Q=t.decryptdata.uri;this.log(`Generating key-session request for "${_}" keyId: ${U} URI: ${Q} (init data type: ${n} length: ${s.byteLength})`);const G=new ri,ue=t._onmessage=Le=>{const at=t.mediaKeysSession;if(!at){G.emit("error",new Error("invalid state"));return}const{messageType:it,message:Qt}=Le;this.log(`"${it}" message event for session "${at.sessionId}" message size: ${Qt.byteLength}`),it==="license-request"||it==="license-renewal"?this.renewLicense(t,Qt).catch(ir=>{G.eventNames().length?G.emit("error",ir):this.handleError(ir)}):it==="license-release"?t.keySystem===Wa.FAIRPLAY&&this.updateKeySession(t,hi("acknowledged")).then(()=>this.removeSession(t)).catch(ir=>this.handleError(ir)):this.warn(`unhandled media key message type "${it}"`)},de=(Le,at)=>{at.keyStatus=Le;let it;Le.startsWith("usable")?G.emit("resolved"):Le==="internal-error"||Le==="output-restricted"||Le==="output-downscaled"?it=Mi(Le,at.decryptdata):Le==="expired"?it=new Error(`key expired (keyId: ${U})`):Le==="released"?it=new Error("key released"):Le==="status-pending"||this.warn(`unhandled key status change "${Le}" (keyId: ${U})`),it&&(G.eventNames().length?G.emit("error",it):this.handleError(it))},be=t._onkeystatuseschange=Le=>{if(!t.mediaKeysSession){G.emit("error",new Error("invalid state"));return}const it=this.getKeyStatuses(t);if(!Object.keys(it).some(Ar=>it[Ar]!=="status-pending"))return;if(it[U]==="expired"){this.log(`Expired key ${Yi(it)} in key-session "${t.mediaKeysSession.sessionId}"`),this.renewKeySession(t);return}let ir=it[U];if(ir)de(ir,t);else{var ur;t.keyStatusTimeouts||(t.keyStatusTimeouts={}),(ur=t.keyStatusTimeouts)[U]||(ur[U]=self.setTimeout(()=>{if(!t.mediaKeysSession||!this.mediaKeys)return;const Ur=this.getKeyStatus(t.decryptdata);if(Ur&&Ur!=="status-pending")return this.log(`No status for keyId ${U} in key-session "${t.mediaKeysSession.sessionId}". Using session key-status ${Ur} from other session.`),de(Ur,t);this.log(`key status for ${U} in key-session "${t.mediaKeysSession.sessionId}" timed out after 1000ms`),ir="internal-error",de(ir,t)},1e3)),this.log(`No status for keyId ${U} (${Yi(it)}).`)}};ja(t.mediaKeysSession,"message",ue),ja(t.mediaKeysSession,"keystatuseschange",be);const Re=new Promise((Le,at)=>{G.on("error",at),G.on("resolved",Le)});return t.mediaKeysSession.generateRequest(n,s).then(()=>{this.log(`Request generated for key-session "${t.mediaKeysSession.sessionId}" keyId: ${U} URI: ${Q}`)}).catch(Le=>{throw new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_NO_SESSION,error:Le,decryptdata:t.decryptdata,fatal:!1},`Error generating key-session request: ${Le}`)}).then(()=>Re).catch(Le=>(G.removeAllListeners(),this.removeSession(t).then(()=>{throw Le}))).then(()=>(G.removeAllListeners(),t))}getKeyStatuses(t){const n={};return t.mediaKeysSession.keyStatuses.forEach((s,_)=>{if(typeof _=="string"&&typeof s=="object"){const U=_;_=s,s=U}const E="buffer"in _?new Uint8Array(_.buffer,_.byteOffset,_.byteLength):new Uint8Array(_);t.keySystem===Wa.PLAYREADY&&E.length===16&&qa(E);const I=X(E);s==="internal-error"&&(this.bannedKeyIds[I]=s),this.log(`key status change "${s}" for keyStatuses keyId: ${I} key-session "${t.mediaKeysSession.sessionId}"`),n[I]=s}),n}fetchServerCertificate(t){const n=this.config,s=n.loader,_=new s(n),E=this.getServerCertificateUrl(t);return E?(this.log(`Fetching server certificate for "${t}"`),new Promise((I,U)=>{const Q={responseType:"arraybuffer",url:E},G=n.certLoadPolicy.default,ue={loadPolicy:G,timeout:G.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0},de={onSuccess:(be,Re,Le,at)=>{I(be.data)},onError:(be,Re,Le,at)=>{U(new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_SERVER_CERTIFICATE_REQUEST_FAILED,fatal:!0,networkDetails:Le,response:b({url:Q.url,data:void 0},be)},`"${t}" certificate request failed (${E}). Status: ${be.code} (${be.text})`))},onTimeout:(be,Re,Le)=>{U(new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_SERVER_CERTIFICATE_REQUEST_FAILED,fatal:!0,networkDetails:Le,response:{url:Q.url,data:void 0}},`"${t}" certificate request timed out (${E})`))},onAbort:(be,Re,Le)=>{U(new Error("aborted"))}};_.load(Q,ue,de)})):Promise.resolve()}setMediaKeysServerCertificate(t,n,s){return new Promise((_,E)=>{t.setServerCertificate(s).then(I=>{this.log(`setServerCertificate ${I?"success":"not supported by CDM"} (${s.byteLength}) on "${n}"`),_(t)}).catch(I=>{E(new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_SERVER_CERTIFICATE_UPDATE_FAILED,error:I,fatal:!0},I.message))})})}renewLicense(t,n){return this.requestLicense(t,new Uint8Array(n)).then(s=>this.updateKeySession(t,new Uint8Array(s)).catch(_=>{throw new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_SESSION_UPDATE_FAILED,decryptdata:t.decryptdata,error:_,fatal:!1},_.message)}))}unpackPlayReadyKeyMessage(t,n){const s=String.fromCharCode.apply(null,new Uint16Array(n.buffer));if(!s.includes("PlayReadyKeyMessage"))return t.setRequestHeader("Content-Type","text/xml; charset=utf-8"),n;const _=new DOMParser().parseFromString(s,"application/xml"),E=_.querySelectorAll("HttpHeader");if(E.length>0){let ue;for(let de=0,be=E.length;de<be;de++){var I,U;ue=E[de];const Re=(I=ue.querySelector("name"))==null?void 0:I.textContent,Le=(U=ue.querySelector("value"))==null?void 0:U.textContent;Re&&Le&&t.setRequestHeader(Re,Le)}}const Q=_.querySelector("Challenge"),G=Q==null?void 0:Q.textContent;if(!G)throw new Error("Cannot find <Challenge> in key message");return hi(atob(G))}setupLicenseXHR(t,n,s,_){const E=this.config.licenseXhrSetup;return E?Promise.resolve().then(()=>{if(!s.decryptdata)throw new Error("Key removed");return E.call(this.hls,t,n,s,_)}).catch(I=>{if(!s.decryptdata)throw I;return t.open("POST",n,!0),E.call(this.hls,t,n,s,_)}).then(I=>(t.readyState||t.open("POST",n,!0),{xhr:t,licenseChallenge:I||_})):(t.open("POST",n,!0),Promise.resolve({xhr:t,licenseChallenge:_}))}requestLicense(t,n){const s=this.config.keyLoadPolicy.default;return new Promise((_,E)=>{const I=this.getLicenseServerUrlOrThrow(t.keySystem);this.log(`Sending license request to URL: ${I}`);const U=new XMLHttpRequest;U.responseType="arraybuffer",U.onreadystatechange=()=>{if(!this.hls||!t.mediaKeysSession)return E(new Error("invalid state"));if(U.readyState===4)if(U.status===200){this._requestLicenseFailureCount=0;let Q=U.response;this.log(`License received ${Q instanceof ArrayBuffer?Q.byteLength:Q}`);const G=this.config.licenseResponseCallback;if(G)try{Q=G.call(this.hls,U,I,t)}catch(ue){this.error(ue)}_(Q)}else{const Q=s.errorRetry,G=Q?Q.maxNumRetry:0;if(this._requestLicenseFailureCount++,this._requestLicenseFailureCount>G||U.status>=400&&U.status<500)E(new pn({type:c.KEY_SYSTEM_ERROR,details:f.KEY_SYSTEM_LICENSE_REQUEST_FAILED,decryptdata:t.decryptdata,fatal:!0,networkDetails:U,response:{url:I,data:void 0,code:U.status,text:U.statusText}},`License Request XHR failed (${I}). Status: ${U.status} (${U.statusText})`));else{const ue=G-this._requestLicenseFailureCount+1;this.warn(`Retrying license request, ${ue} attempts left`),this.requestLicense(t,n).then(_,E)}}},t.licenseXhr&&t.licenseXhr.readyState!==XMLHttpRequest.DONE&&t.licenseXhr.abort(),t.licenseXhr=U,this.setupLicenseXHR(U,I,t,n).then(({xhr:Q,licenseChallenge:G})=>{t.keySystem==Wa.PLAYREADY&&(G=this.unpackPlayReadyKeyMessage(Q,G)),Q.send(G)}).catch(E)})}onDestroying(){this.unregisterListeners(),this._clear()}onMediaAttached(t,n){if(!this.config.emeEnabled)return;const s=n.media;this.media=s,ja(s,"encrypted",this.onMediaEncrypted),ja(s,"waitingforkey",this.onWaitingForKey)}onMediaDetached(){const t=this.media;t&&(os(t,"encrypted",this.onMediaEncrypted),os(t,"waitingforkey",this.onWaitingForKey),this.media=null,this.mediaKeys=null)}_clear(){var t;if(this._requestLicenseFailureCount=0,this.keyIdToKeySessionPromise={},this.bannedKeyIds={},!this.mediaKeys&&!this.mediaKeySessions.length)return;const n=this.media,s=this.mediaKeySessions.slice();this.mediaKeySessions=[],this.mediaKeys=null,Ho.clearKeyUriToKeyIdMap();const _=s.length;Oe.CDMCleanupPromise=Promise.all(s.map(E=>this.removeSession(E)).concat((n==null||(t=n.setMediaKeys(null))==null?void 0:t.catch(E=>{this.log(`Could not clear media keys: ${E}`),this.hls&&this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.KEY_SYSTEM_DESTROY_MEDIA_KEYS_ERROR,fatal:!1,error:new Error(`Could not clear media keys: ${E}`)})}))||Promise.resolve())).catch(E=>{this.log(`Could not close sessions and clear media keys: ${E}`),this.hls&&this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.KEY_SYSTEM_DESTROY_CLOSE_SESSION_ERROR,fatal:!1,error:new Error(`Could not close sessions and clear media keys: ${E}`)})}).then(()=>{_&&this.log("finished closing key sessions and clearing media keys")})}onManifestLoading(){this.keyFormatPromise=null,this.bannedKeyIds={}}onManifestLoaded(t,{sessionKeys:n}){if(!(!n||!this.config.emeEnabled)&&!this.keyFormatPromise){const s=n.reduce((_,E)=>(_.indexOf(E.keyFormat)===-1&&_.push(E.keyFormat),_),[]);this.log(`Selecting key-system from session-keys ${s.join(", ")}`),this.keyFormatPromise=this.getKeyFormatPromise(s)}}removeSession(t){const{mediaKeysSession:n,licenseXhr:s,decryptdata:_}=t;if(n){this.log(`Remove licenses and keys and close session "${n.sessionId}" keyId: ${X((_==null?void 0:_.keyId)||[])}`),t._onmessage&&(n.removeEventListener("message",t._onmessage),t._onmessage=void 0),t._onkeystatuseschange&&(n.removeEventListener("keystatuseschange",t._onkeystatuseschange),t._onkeystatuseschange=void 0),s&&s.readyState!==XMLHttpRequest.DONE&&s.abort(),t.mediaKeysSession=t.decryptdata=t.licenseXhr=void 0;const E=this.mediaKeySessions.indexOf(t);E>-1&&this.mediaKeySessions.splice(E,1);const{keyStatusTimeouts:I}=t;I&&Object.keys(I).forEach(G=>self.clearTimeout(I[G]));const{drmSystemOptions:U}=this.config;return(dl(U)?new Promise((G,ue)=>{self.setTimeout(()=>ue(new Error("MediaKeySession.remove() timeout")),8e3),n.remove().then(G).catch(ue)}):Promise.resolve()).catch(G=>{this.log(`Could not remove session: ${G}`),this.hls&&this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.KEY_SYSTEM_DESTROY_REMOVE_SESSION_ERROR,fatal:!1,error:new Error(`Could not remove session: ${G}`)})}).then(()=>n.close()).catch(G=>{this.log(`Could not close session: ${G}`),this.hls&&this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.KEY_SYSTEM_DESTROY_CLOSE_SESSION_ERROR,fatal:!1,error:new Error(`Could not close session: ${G}`)})})}return Promise.resolve()}}Oe.CDMCleanupPromise=void 0;function dn(D){if(!D)throw new Error("Could not read keyId of undefined decryptdata");if(D.keyId===null)throw new Error("keyId is null");return X(D.keyId)}function Pn(D,t){if(D.keyId&&t.mediaKeysSession.keyStatuses.has(D.keyId))return t.mediaKeysSession.keyStatuses.get(D.keyId);if(D.matches(t.decryptdata))return t.keyStatus}class pn extends Error{constructor(t,n){super(n),this.data=void 0,t.error||(t.error=new Error(n)),this.data=t,t.err=t.error}}function Mi(D,t){const n=D==="output-restricted",s=n?f.KEY_SYSTEM_STATUS_OUTPUT_RESTRICTED:f.KEY_SYSTEM_STATUS_INTERNAL_ERROR;return new pn({type:c.KEY_SYSTEM_ERROR,details:s,fatal:!1,decryptdata:t},n?"HDCP level output restricted":`key status changed to "${D}"`)}class ds{constructor(t){this.hls=void 0,this.isVideoPlaybackQualityAvailable=!1,this.timer=void 0,this.media=null,this.lastTime=void 0,this.lastDroppedFrames=0,this.lastDecodedFrames=0,this.streamController=void 0,this.hls=t,this.registerListeners()}setStreamController(t){this.streamController=t}registerListeners(){this.hls.on(o.MEDIA_ATTACHING,this.onMediaAttaching,this),this.hls.on(o.MEDIA_DETACHING,this.onMediaDetaching,this)}unregisterListeners(){this.hls.off(o.MEDIA_ATTACHING,this.onMediaAttaching,this),this.hls.off(o.MEDIA_DETACHING,this.onMediaDetaching,this)}destroy(){this.timer&&clearInterval(this.timer),this.unregisterListeners(),this.isVideoPlaybackQualityAvailable=!1,this.media=null}onMediaAttaching(t,n){const s=this.hls.config;if(s.capLevelOnFPSDrop){const _=n.media instanceof self.HTMLVideoElement?n.media:null;this.media=_,_&&typeof _.getVideoPlaybackQuality=="function"&&(this.isVideoPlaybackQualityAvailable=!0),self.clearInterval(this.timer),this.timer=self.setInterval(this.checkFPSInterval.bind(this),s.fpsDroppedMonitoringPeriod)}}onMediaDetaching(){this.media=null}checkFPS(t,n,s){const _=performance.now();if(n){if(this.lastTime){const E=_-this.lastTime,I=s-this.lastDroppedFrames,U=n-this.lastDecodedFrames,Q=1e3*I/E,G=this.hls;if(G.trigger(o.FPS_DROP,{currentDropped:I,currentDecoded:U,totalDroppedFrames:s}),Q>0&&I>G.config.fpsDroppedMonitoringThreshold*U){let ue=G.currentLevel;G.logger.warn("drop FPS ratio greater than max allowed value for currentLevel: "+ue),ue>0&&(G.autoLevelCapping===-1||G.autoLevelCapping>=ue)&&(ue=ue-1,G.trigger(o.FPS_DROP_LEVEL_CAPPING,{level:ue,droppedLevel:G.currentLevel}),G.autoLevelCapping=ue,this.streamController.nextLevelSwitch())}}this.lastTime=_,this.lastDroppedFrames=s,this.lastDecodedFrames=n}}checkFPSInterval(){const t=this.media;if(t)if(this.isVideoPlaybackQualityAvailable){const n=t.getVideoPlaybackQuality();this.checkFPS(t,n.totalVideoFrames,n.droppedVideoFrames)}else this.checkFPS(t,t.webkitDecodedFrameCount,t.webkitDroppedFrameCount)}}function Ga(D,t){let n;try{n=new Event("addtrack")}catch(s){n=document.createEvent("Event"),n.initEvent("addtrack",!1,!1)}n.track=D,t.dispatchEvent(n)}function Yo(D,t){const n=D.mode;if(n==="disabled"&&(D.mode="hidden"),D.cues&&!D.cues.getCueById(t.id))try{if(D.addCue(t),!D.cues.getCueById(t.id))throw new Error(`addCue is failed for: ${t}`)}catch(s){W.debug(`[texttrack-utils]: ${s}`);try{const _=new self.TextTrackCue(t.startTime,t.endTime,t.text);_.id=t.id,D.addCue(_)}catch(_){W.debug(`[texttrack-utils]: Legacy TextTrackCue fallback failed: ${_}`)}}n==="disabled"&&(D.mode=n)}function is(D,t){const n=D.mode;if(n==="disabled"&&(D.mode="hidden"),D.cues)for(let s=D.cues.length;s--;)t&&D.cues[s].removeEventListener("enter",t),D.removeCue(D.cues[s]);n==="disabled"&&(D.mode=n)}function Io(D,t,n,s){const _=D.mode;if(_==="disabled"&&(D.mode="hidden"),D.cues&&D.cues.length>0){const E=tf(D.cues,t,n);for(let I=0;I<E.length;I++)(!s||s(E[I]))&&D.removeCue(E[I])}_==="disabled"&&(D.mode=_)}function Gs(D,t){if(t<=D[0].startTime)return 0;const n=D.length-1;if(t>D[n].endTime)return-1;let s=0,_=n,E;for(;s<=_;)if(E=Math.floor((_+s)/2),t<D[E].startTime)_=E-1;else if(t>D[E].startTime&&s<n)s=E+1;else return E;return D[s].startTime-t<t-D[_].startTime?s:_}function tf(D,t,n){const s=[],_=Gs(D,t);if(_>-1)for(let E=_,I=D.length;E<I;E++){const U=D[E];if(U.startTime>=t&&U.endTime<=n)s.push(U);else if(U.startTime>n)return s}return s}function ql(D){const t=[];for(let n=0;n<D.length;n++){const s=D[n];(s.kind==="subtitles"||s.kind==="captions")&&s.label&&t.push(D[n])}return t}class Bc extends Ao{constructor(t){super(t,"subtitle-track-controller"),this.media=null,this.tracks=[],this.groupIds=null,this.tracksInGroup=[],this.trackId=-1,this.currentTrack=null,this.selectDefaultTrack=!0,this.queuedDefaultTrack=-1,this.useTextTrackPolling=!1,this.subtitlePollingInterval=-1,this._subtitleDisplay=!0,this.asyncPollTrackChange=()=>this.pollTrackChange(0),this.onTextTracksChanged=()=>{if(this.useTextTrackPolling||self.clearInterval(this.subtitlePollingInterval),!this.media||!this.hls.config.renderTextTracksNatively)return;let n=null;const s=ql(this.media.textTracks);for(let E=0;E<s.length;E++)if(s[E].mode==="hidden")n=s[E];else if(s[E].mode==="showing"){n=s[E];break}const _=this.findTrackForTextTrack(n);this.subtitleTrack!==_&&this.setSubtitleTrack(_)},this.registerListeners()}destroy(){this.unregisterListeners(),this.tracks.length=0,this.tracksInGroup.length=0,this.currentTrack=null,this.onTextTracksChanged=this.asyncPollTrackChange=null,super.destroy()}get subtitleDisplay(){return this._subtitleDisplay}set subtitleDisplay(t){this._subtitleDisplay=t,this.trackId>-1&&this.toggleTrackModes()}registerListeners(){const{hls:t}=this;t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_PARSED,this.onManifestParsed,this),t.on(o.LEVEL_LOADING,this.onLevelLoading,this),t.on(o.LEVEL_SWITCHING,this.onLevelSwitching,this),t.on(o.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.on(o.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_PARSED,this.onManifestParsed,this),t.off(o.LEVEL_LOADING,this.onLevelLoading,this),t.off(o.LEVEL_SWITCHING,this.onLevelSwitching,this),t.off(o.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.off(o.ERROR,this.onError,this)}onMediaAttached(t,n){this.media=n.media,this.media&&(this.queuedDefaultTrack>-1&&(this.subtitleTrack=this.queuedDefaultTrack,this.queuedDefaultTrack=-1),this.useTextTrackPolling=!(this.media.textTracks&&"onchange"in this.media.textTracks),this.useTextTrackPolling?this.pollTrackChange(500):this.media.textTracks.addEventListener("change",this.asyncPollTrackChange))}pollTrackChange(t){self.clearInterval(this.subtitlePollingInterval),this.subtitlePollingInterval=self.setInterval(this.onTextTracksChanged,t)}onMediaDetaching(t,n){const s=this.media;if(!s)return;const _=!!n.transferMedia;if(self.clearInterval(this.subtitlePollingInterval),this.useTextTrackPolling||s.textTracks.removeEventListener("change",this.asyncPollTrackChange),this.trackId>-1&&(this.queuedDefaultTrack=this.trackId),this.subtitleTrack=-1,this.media=null,_)return;ql(s.textTracks).forEach(I=>{is(I)})}onManifestLoading(){this.tracks=[],this.groupIds=null,this.tracksInGroup=[],this.trackId=-1,this.currentTrack=null,this.selectDefaultTrack=!0}onManifestParsed(t,n){this.tracks=n.subtitleTracks}onSubtitleTrackLoaded(t,n){const{id:s,groupId:_,details:E}=n,I=this.tracksInGroup[s];if(!I||I.groupId!==_){this.warn(`Subtitle track with id:${s} and group:${_} not found in active group ${I==null?void 0:I.groupId}`);return}const U=I.details;I.details=n.details,this.log(`Subtitle track ${s} "${I.name}" lang:${I.lang} group:${_} loaded [${E.startSN}-${E.endSN}]`),s===this.trackId&&this.playlistLoaded(s,n,U)}onLevelLoading(t,n){this.switchLevel(n.level)}onLevelSwitching(t,n){this.switchLevel(n.level)}switchLevel(t){const n=this.hls.levels[t];if(!n)return;const s=n.subtitleGroups||null,_=this.groupIds;let E=this.currentTrack;if(!s||(_==null?void 0:_.length)!==(s==null?void 0:s.length)||s!=null&&s.some(I=>(_==null?void 0:_.indexOf(I))===-1)){this.groupIds=s,this.trackId=-1,this.currentTrack=null;const I=this.tracks.filter(ue=>!s||s.indexOf(ue.groupId)!==-1);if(I.length)this.selectDefaultTrack&&!I.some(ue=>ue.default)&&(this.selectDefaultTrack=!1),I.forEach((ue,de)=>{ue.id=de});else if(!E&&!this.tracksInGroup.length)return;this.tracksInGroup=I;const U=this.hls.config.subtitlePreference;if(!E&&U){this.selectDefaultTrack=!1;const ue=Zi(U,I);if(ue>-1)E=I[ue];else{const de=Zi(U,this.tracks);E=this.tracks[de]}}let Q=this.findTrackId(E);Q===-1&&E&&(Q=this.findTrackId(null));const G={subtitleTracks:I};this.log(`Updating subtitle tracks, ${I.length} track(s) found in "${s==null?void 0:s.join(",")}" group-id`),this.hls.trigger(o.SUBTITLE_TRACKS_UPDATED,G),Q!==-1&&this.trackId===-1&&this.setSubtitleTrack(Q)}}findTrackId(t){const n=this.tracksInGroup,s=this.selectDefaultTrack;for(let _=0;_<n.length;_++){const E=n[_];if(!(s&&!E.default||!s&&!t)&&(!t||_i(E,t)))return _}if(t){for(let _=0;_<n.length;_++){const E=n[_];if(Kl(t.attrs,E.attrs,["LANGUAGE","ASSOC-LANGUAGE","CHARACTERISTICS"]))return _}for(let _=0;_<n.length;_++){const E=n[_];if(Kl(t.attrs,E.attrs,["LANGUAGE"]))return _}}return-1}findTrackForTextTrack(t){if(t){const n=this.tracksInGroup;for(let s=0;s<n.length;s++){const _=n[s];if(lc(_,t))return s}}return-1}onError(t,n){n.fatal||!n.context||n.context.type===h.SUBTITLE_TRACK&&n.context.id===this.trackId&&(!this.groupIds||this.groupIds.indexOf(n.context.groupId)!==-1)&&this.checkRetry(n)}get allSubtitleTracks(){return this.tracks}get subtitleTracks(){return this.tracksInGroup}get subtitleTrack(){return this.trackId}set subtitleTrack(t){this.selectDefaultTrack=!1,this.setSubtitleTrack(t)}setSubtitleOption(t){if(this.hls.config.subtitlePreference=t,t){if(t.id===-1)return this.setSubtitleTrack(-1),null;const n=this.allSubtitleTracks;if(this.selectDefaultTrack=!1,n.length){const s=this.currentTrack;if(s&&_i(t,s))return s;const _=Zi(t,this.tracksInGroup);if(_>-1){const E=this.tracksInGroup[_];return this.setSubtitleTrack(_),E}else{if(s)return null;{const E=Zi(t,n);if(E>-1)return n[E]}}}}return null}loadPlaylist(t){super.loadPlaylist(),this.shouldLoadPlaylist(this.currentTrack)&&this.scheduleLoading(this.currentTrack,t)}loadingPlaylist(t,n){super.loadingPlaylist(t,n);const s=t.id,_=t.groupId,E=this.getUrlWithDirectives(t.url,n),I=t.details,U=I==null?void 0:I.age;this.log(`Loading subtitle ${s} "${t.name}" lang:${t.lang} group:${_}${(n==null?void 0:n.msn)!==void 0?" at sn "+n.msn+" part "+n.part:""}${U&&I.live?" age "+U.toFixed(1)+(I.type?" "+I.type||0:""):""} ${E}`),this.hls.trigger(o.SUBTITLE_TRACK_LOADING,{url:E,id:s,groupId:_,deliveryDirectives:n||null,track:t})}toggleTrackModes(){const{media:t}=this;if(!t)return;const n=ql(t.textTracks),s=this.currentTrack;let _;if(s&&(_=n.filter(E=>lc(s,E))[0],_||this.warn(`Unable to find subtitle TextTrack with name "${s.name}" and language "${s.lang}"`)),[].slice.call(n).forEach(E=>{E.mode!=="disabled"&&E!==_&&(E.mode="disabled")}),_){const E=this.subtitleDisplay?"showing":"hidden";_.mode!==E&&(_.mode=E)}}setSubtitleTrack(t){const n=this.tracksInGroup;if(!this.media){this.queuedDefaultTrack=t;return}if(t<-1||t>=n.length||!r(t)){this.warn(`Invalid subtitle track id: ${t}`);return}this.selectDefaultTrack=!1;const s=this.currentTrack,_=n[t]||null;if(this.trackId=t,this.currentTrack=_,this.toggleTrackModes(),!_){this.hls.trigger(o.SUBTITLE_TRACK_SWITCH,{id:t});return}const E=!!_.details&&!_.details.live;if(t===this.trackId&&_===s&&E)return;this.log(`Switching to subtitle-track ${t}`+(_?` "${_.name}" lang:${_.lang} group:${_.groupId}`:""));const{id:I,groupId:U="",name:Q,type:G,url:ue}=_;this.hls.trigger(o.SUBTITLE_TRACK_SWITCH,{id:I,groupId:U,name:Q,type:G,url:ue});const de=this.switchParams(_.url,s==null?void 0:s.details,_.details);this.loadPlaylist(de)}}function rf(){try{return crypto.randomUUID()}catch(D){try{const t=URL.createObjectURL(new Blob),n=t.toString();return URL.revokeObjectURL(t),n.slice(n.lastIndexOf("/")+1)}catch(t){let n=new Date().getTime();return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,_=>{const E=(n+Math.random()*16)%16|0;return n=Math.floor(n/16),(_=="x"?E:E&3|8).toString(16)})}}}function Ju(D){let t=5381,n=D.length;for(;n;)t=t*33^D.charCodeAt(--n);return(t>>>0).toString()}const Ti=.025;let Tl=function(D){return D[D.Point=0]="Point",D[D.Range=1]="Range",D}({});function Nc(D,t,n){return`${D.identifier}-${n+1}-${Ju(t)}`}class su{constructor(t,n){this.base=void 0,this._duration=null,this._timelineStart=null,this.appendInPlaceDisabled=void 0,this.appendInPlaceStarted=void 0,this.dateRange=void 0,this.hasPlayed=!1,this.cumulativeDuration=0,this.resumeOffset=NaN,this.playoutLimit=NaN,this.restrictions={skip:!1,jump:!1},this.snapOptions={out:!1,in:!1},this.assetList=[],this.assetListLoader=void 0,this.assetListResponse=null,this.resumeAnchor=void 0,this.error=void 0,this.resetOnResume=void 0,this.base=n,this.dateRange=t,this.setDateRange(t)}setDateRange(t){this.dateRange=t,this.resumeOffset=t.attr.optionalFloat("X-RESUME-OFFSET",this.resumeOffset),this.playoutLimit=t.attr.optionalFloat("X-PLAYOUT-LIMIT",this.playoutLimit),this.restrictions=t.attr.enumeratedStringList("X-RESTRICT",this.restrictions),this.snapOptions=t.attr.enumeratedStringList("X-SNAP",this.snapOptions)}reset(){var t;this.appendInPlaceStarted=!1,(t=this.assetListLoader)==null||t.destroy(),this.assetListLoader=void 0,this.supplementsPrimary||(this.assetListResponse=null,this.assetList=[],this._duration=null)}isAssetPastPlayoutLimit(t){var n;if(t>0&&t>=this.assetList.length)return!0;const s=this.playoutLimit;return t<=0||isNaN(s)?!1:s===0?!0:(((n=this.assetList[t])==null?void 0:n.startOffset)||0)>s}findAssetIndex(t){return this.assetList.indexOf(t)}get identifier(){return this.dateRange.id}get startDate(){return this.dateRange.startDate}get startTime(){const t=this.dateRange.startTime;if(this.snapOptions.out){const n=this.dateRange.tagAnchor;if(n)return _o(t,n)}return t}get startOffset(){return this.cue.pre?0:this.startTime}get startIsAligned(){if(this.startTime===0||this.snapOptions.out)return!0;const t=this.dateRange.tagAnchor;if(t){const n=this.dateRange.startTime,s=_o(n,t);return n-s<.1}return!1}get resumptionOffset(){const t=this.resumeOffset,n=r(t)?t:this.duration;return this.cumulativeDuration+n}get resumeTime(){const t=this.startOffset+this.resumptionOffset;if(this.snapOptions.in){const n=this.resumeAnchor;if(n)return _o(t,n)}return t}get appendInPlace(){return this.appendInPlaceStarted?!0:this.appendInPlaceDisabled?!1:!!(!this.cue.once&&!this.cue.pre&&this.startIsAligned&&(isNaN(this.playoutLimit)&&isNaN(this.resumeOffset)||this.resumeOffset&&this.duration&&Math.abs(this.resumeOffset-this.duration)<Ti))}set appendInPlace(t){if(this.appendInPlaceStarted){this.resetOnResume=!t;return}this.appendInPlaceDisabled=!t}get timelineStart(){return this._timelineStart!==null?this._timelineStart:this.startTime}set timelineStart(t){this._timelineStart=t}get duration(){const t=this.playoutLimit;let n;return this._duration!==null?n=this._duration:this.dateRange.duration?n=this.dateRange.duration:n=this.dateRange.plannedDuration||0,!isNaN(t)&&t<n&&(n=t),n}set duration(t){this._duration=t}get cue(){return this.dateRange.cue}get timelineOccupancy(){return this.dateRange.attr["X-TIMELINE-OCCUPIES"]==="RANGE"?Tl.Range:Tl.Point}get supplementsPrimary(){return this.dateRange.attr["X-TIMELINE-STYLE"]==="PRIMARY"}get contentMayVary(){return this.dateRange.attr["X-CONTENT-MAY-VARY"]!=="NO"}get assetUrl(){return this.dateRange.attr["X-ASSET-URI"]}get assetListUrl(){return this.dateRange.attr["X-ASSET-LIST"]}get baseUrl(){return this.base.url}get assetListLoaded(){return this.assetList.length>0||this.assetListResponse!==null}toString(){return ec(this)}}function _o(D,t){return D-t.start<t.duration/2&&!(Math.abs(D-(t.start+t.duration))<Ti)?t.start:t.start+t.duration}function gs(D,t,n){const s=new self.URL(D,n);return s.protocol!=="data:"&&s.searchParams.set("_HLS_primary_id",t),s}function bl(D,t){for(;(n=D.assetList[++t])!=null&&n.error;)var n;return t}function ec(D){return`["${D.identifier}" ${D.cue.pre?"<pre>":D.cue.post?"<post>":""}${D.timelineStart.toFixed(2)}-${D.resumeTime.toFixed(2)}]`}function xl(D){const t=D.timelineStart,n=D.duration||0;return`["${D.identifier}" ${t.toFixed(2)}-${(t+n).toFixed(2)}]`}class Fl{constructor(t,n,s,_){this.hls=void 0,this.interstitial=void 0,this.assetItem=void 0,this.tracks=null,this.hasDetails=!1,this.mediaAttached=null,this._currentTime=void 0,this._bufferedEosTime=void 0,this.checkPlayout=()=>{this.reachedPlayout(this.currentTime)&&this.hls&&this.hls.trigger(o.PLAYOUT_LIMIT_REACHED,{})};const E=this.hls=new t(n);this.interstitial=s,this.assetItem=_;const I=()=>{this.hasDetails=!0};E.once(o.LEVEL_LOADED,I),E.once(o.AUDIO_TRACK_LOADED,I),E.once(o.SUBTITLE_TRACK_LOADED,I),E.on(o.MEDIA_ATTACHING,(U,{media:Q})=>{this.removeMediaListeners(),this.mediaAttached=Q,this.interstitial.playoutLimit&&(Q.addEventListener("timeupdate",this.checkPlayout),this.appendInPlace&&E.on(o.BUFFER_APPENDED,()=>{const ue=this.bufferedEnd;this.reachedPlayout(ue)&&(this._bufferedEosTime=ue,E.trigger(o.BUFFERED_TO_END,void 0))}))})}get appendInPlace(){return this.interstitial.appendInPlace}loadSource(){const t=this.hls;if(t)if(t.url)t.levels.length&&!t.started&&t.startLoad(-1,!0);else{let n=this.assetItem.uri;try{n=gs(n,t.config.primarySessionId||"").href}catch(s){}t.loadSource(n)}}bufferedInPlaceToEnd(t){var n;if(!this.appendInPlace)return!1;if((n=this.hls)!=null&&n.bufferedToEnd)return!0;if(!t)return!1;const s=Math.min(this._bufferedEosTime||1/0,this.duration),_=this.timelineOffset,E=di.bufferInfo(t,_,0);return this.getAssetTime(E.end)>=s-.02}reachedPlayout(t){const s=this.interstitial.playoutLimit;return this.startOffset+t>=s}get destroyed(){var t;return!((t=this.hls)!=null&&t.userConfig)}get assetId(){return this.assetItem.identifier}get interstitialId(){return this.assetItem.parentIdentifier}get media(){var t;return((t=this.hls)==null?void 0:t.media)||null}get bufferedEnd(){const t=this.media||this.mediaAttached;if(!t)return this._bufferedEosTime?this._bufferedEosTime:this.currentTime;const n=di.bufferInfo(t,t.currentTime,.001);return this.getAssetTime(n.end)}get currentTime(){const t=this.media||this.mediaAttached;return t?this.getAssetTime(t.currentTime):this._currentTime||0}get duration(){const t=this.assetItem.duration;if(!t)return 0;const n=this.interstitial.playoutLimit;if(n){const s=n-this.startOffset;if(s>0&&s<t)return s}return t}get remaining(){const t=this.duration;return t?Math.max(0,t-this.currentTime):0}get startOffset(){return this.assetItem.startOffset}get timelineOffset(){var t;return((t=this.hls)==null?void 0:t.config.timelineOffset)||0}set timelineOffset(t){const n=this.timelineOffset;if(t!==n){const s=t-n;if(Math.abs(s)>11111111111111112e-21&&this.hls){if(this.hasDetails)throw new Error("Cannot set timelineOffset after playlists are loaded");this.hls.config.timelineOffset=t}}}getAssetTime(t){const n=this.timelineOffset,s=this.duration;return Math.min(Math.max(0,t-n),s)}removeMediaListeners(){const t=this.mediaAttached;t&&(this._currentTime=t.currentTime,this.bufferSnapShot(),t.removeEventListener("timeupdate",this.checkPlayout))}bufferSnapShot(){if(this.mediaAttached){var t;(t=this.hls)!=null&&t.bufferedToEnd&&(this._bufferedEosTime=this.bufferedEnd)}}destroy(){this.removeMediaListeners(),this.hls&&this.hls.destroy(),this.hls=null,this.tracks=this.mediaAttached=this.checkPlayout=null}attachMedia(t){var n;this.loadSource(),(n=this.hls)==null||n.attachMedia(t)}detachMedia(){var t;this.removeMediaListeners(),this.mediaAttached=null,(t=this.hls)==null||t.detachMedia()}resumeBuffering(){var t;(t=this.hls)==null||t.resumeBuffering()}pauseBuffering(){var t;(t=this.hls)==null||t.pauseBuffering()}transferMedia(){var t;return this.bufferSnapShot(),((t=this.hls)==null?void 0:t.transferMedia())||null}resetDetails(){const t=this.hls;if(t&&this.hasDetails){t.stopLoad();const n=s=>delete s.details;t.levels.forEach(n),t.allAudioTracks.forEach(n),t.allSubtitleTracks.forEach(n),this.hasDetails=!1}}on(t,n,s){var _;(_=this.hls)==null||_.on(t,n)}once(t,n,s){var _;(_=this.hls)==null||_.once(t,n)}off(t,n,s){var _;(_=this.hls)==null||_.off(t,n)}toString(){var t;return`HlsAssetPlayer: ${xl(this.assetItem)} ${(t=this.hls)==null?void 0:t.sessionId} ${this.appendInPlace?"append-in-place":""}`}}const Cl=.033;class Ef extends R{constructor(t,n){super("interstitials-sched",n),this.onScheduleUpdate=void 0,this.eventMap={},this.events=null,this.items=null,this.durations={primary:0,playout:0,integrated:0},this.onScheduleUpdate=t}destroy(){this.reset(),this.onScheduleUpdate=null}reset(){this.eventMap={},this.setDurations(0,0,0),this.events&&this.events.forEach(t=>t.reset()),this.events=this.items=null}resetErrorsInRange(t,n){return this.events?this.events.reduce((s,_)=>t<=_.startOffset&&n>_.startOffset?(delete _.error,s+1):s,0):0}get duration(){const t=this.items;return t?t[t.length-1].end:0}get length(){return this.items?this.items.length:0}getEvent(t){return t&&this.eventMap[t]||null}hasEvent(t){return t in this.eventMap}findItemIndex(t,n){if(t.event)return this.findEventIndex(t.event.identifier);let s=-1;t.nextEvent?s=this.findEventIndex(t.nextEvent.identifier)-1:t.previousEvent&&(s=this.findEventIndex(t.previousEvent.identifier)+1);const _=this.items;if(_)for(_[s]||(n===void 0&&(n=t.start),s=this.findItemIndexAtTime(n));s>=0&&(E=_[s])!=null&&E.event;){var E;s--}return s}findItemIndexAtTime(t,n){const s=this.items;if(s)for(let _=0;_<s.length;_++){let E=s[_];if(n&&n!=="primary"&&(E=E[n]),t===E.start||t>E.start&&t<E.end)return _}return-1}findJumpRestrictedIndex(t,n){const s=this.items;if(s)for(let _=t;_<=n&&s[_];_++){const E=s[_].event;if(E!=null&&E.restrictions.jump&&!E.appendInPlace)return _}return-1}findEventIndex(t){const n=this.items;if(n)for(let _=n.length;_--;){var s;if(((s=n[_].event)==null?void 0:s.identifier)===t)return _}return-1}findAssetIndex(t,n){const s=t.assetList,_=s.length;if(_>1)for(let E=0;E<_;E++){const I=s[E];if(!I.error){const U=I.timelineStart;if(n===U||n>U&&(n<U+(I.duration||0)||E===_-1))return E}}return 0}get assetIdAtEnd(){var t;const n=(t=this.items)==null||(t=t[this.length-1])==null?void 0:t.event;if(n){const s=n.assetList,_=s[s.length-1];if(_)return _.identifier}return null}parseInterstitialDateRanges(t,n){const s=t.main.details,{dateRanges:_}=s,E=this.events,I=this.parseDateRanges(_,{url:s.url},n),U=Object.keys(_),Q=E?E.filter(G=>!U.includes(G.identifier)):[];I.length&&I.sort((G,ue)=>{const de=G.cue.pre,be=G.cue.post,Re=ue.cue.pre,Le=ue.cue.post;if(de&&!Re)return-1;if(Re&&!de||be&&!Le)return 1;if(Le&&!be)return-1;if(!de&&!Re&&!be&&!Le){const at=G.startTime,it=ue.startTime;if(at!==it)return at-it}return G.dateRange.tagOrder-ue.dateRange.tagOrder}),this.events=I,Q.forEach(G=>{this.removeEvent(G)}),this.updateSchedule(t,Q)}updateSchedule(t,n=[],s=!1){const _=this.events||[];if(_.length||n.length||this.length<2){const E=this.items,I=this.parseSchedule(_,t);(s||n.length||(E==null?void 0:E.length)!==I.length||I.some((Q,G)=>Math.abs(Q.playout.start-E[G].playout.start)>.005||Math.abs(Q.playout.end-E[G].playout.end)>.005))&&(this.items=I,this.onScheduleUpdate(n,E))}}parseDateRanges(t,n,s){const _=[],E=Object.keys(t);for(let I=0;I<E.length;I++){const U=E[I],Q=t[U];if(Q.isInterstitial){let G=this.eventMap[U];G?G.setDateRange(Q):(G=new su(Q,n),this.eventMap[U]=G,s===!1&&(G.appendInPlace=s)),_.push(G)}}return _}parseSchedule(t,n){const s=[],_=n.main.details,E=_.live?1/0:_.edge;let I=0;if(t=t.filter(Q=>!Q.error&&!(Q.cue.once&&Q.hasPlayed)),t.length){this.resolveOffsets(t,n);let Q=0,G=0;if(t.forEach((ue,de)=>{const be=ue.cue.pre,Re=ue.cue.post,Le=t[de-1]||null,at=ue.appendInPlace,it=Re?E:ue.startOffset,Qt=ue.duration,ir=ue.timelineOccupancy===Tl.Range?Qt:0,ur=ue.resumptionOffset,Ar=(Le==null?void 0:Le.startTime)===it,Ur=it+ue.cumulativeDuration;let mn=at?Ur+Qt:it+ur;if(be||!Re&&it<=0){const ln=G;G+=ir,ue.timelineStart=Ur;const on=I;I+=Qt,s.push({event:ue,start:Ur,end:mn,playout:{start:on,end:I},integrated:{start:ln,end:G}})}else if(it<=E){if(!Ar){const Qr=it-Q;if(Qr>Cl){const Dn=Q,Ei=G;G+=Qr;const Ki=I;I+=Qr;const da={previousEvent:t[de-1]||null,nextEvent:ue,start:Dn,end:Dn+Qr,playout:{start:Ki,end:I},integrated:{start:Ei,end:G}};s.push(da)}else Qr>0&&Le&&(Le.cumulativeDuration+=Qr,s[s.length-1].end=it)}Re&&(mn=Ur),ue.timelineStart=Ur;const ln=G;G+=ir;const on=I;I+=Qt,s.push({event:ue,start:Ur,end:mn,playout:{start:on,end:I},integrated:{start:ln,end:G}})}else return;const zr=ue.resumeTime;Re||zr>E?Q=E:Q=zr}),Q<E){var U;const ue=Q,de=G,be=E-Q;G+=be;const Re=I;I+=be,s.push({previousEvent:((U=s[s.length-1])==null?void 0:U.event)||null,nextEvent:null,start:Q,end:ue+be,playout:{start:Re,end:I},integrated:{start:de,end:G}})}this.setDurations(E,I,G)}else s.push({previousEvent:null,nextEvent:null,start:0,end:E,playout:{start:0,end:E},integrated:{start:0,end:E}}),this.setDurations(E,E,E);return s}setDurations(t,n,s){this.durations={primary:t,playout:n,integrated:s}}resolveOffsets(t,n){const s=n.main.details,_=s.live?1/0:s.edge;let E=0,I=-1;t.forEach((U,Q)=>{const G=U.cue.pre,ue=U.cue.post,de=G?0:ue?_:U.startTime;this.updateAssetDurations(U),I===de?U.cumulativeDuration=E:(E=0,I=de),!ue&&U.snapOptions.in&&(U.resumeAnchor=hr(null,s.fragments,U.startOffset+U.resumptionOffset,0,0)||void 0),U.appendInPlace&&!U.appendInPlaceStarted&&(this.primaryCanResumeInPlaceAt(U,n)||(U.appendInPlace=!1)),!U.appendInPlace&&Q+1<t.length&&t[Q+1].startTime-t[Q].resumeTime<Cl&&(t[Q+1].appendInPlace=!1,t[Q+1].appendInPlace&&this.warn(`Could not change append strategy for abutting event ${U}`));const Re=r(U.resumeOffset)?U.resumeOffset:U.duration;E+=Re})}primaryCanResumeInPlaceAt(t,n){const s=t.resumeTime,_=t.startTime+t.resumptionOffset;return Math.abs(s-_)>Ti?(this.log(`"${t.identifier}" resumption ${s} not aligned with estimated timeline end ${_}`),!1):!Object.keys(n).some(I=>{const U=n[I].details,Q=U.edge;if(s>=Q)return this.log(`"${t.identifier}" resumption ${s} past ${I} playlist end ${Q}`),!1;const G=hr(null,U.fragments,s);if(!G)return this.log(`"${t.identifier}" resumption ${s} does not align with any fragments in ${I} playlist (${U.fragStart}-${U.fragmentEnd})`),!0;const ue=I==="audio"?.175:0;return Math.abs(G.start-s)<Ti+ue||Math.abs(G.end-s)<Ti+ue?!1:(this.log(`"${t.identifier}" resumption ${s} not aligned with ${I} fragment bounds (${G.start}-${G.end} sn: ${G.sn} cc: ${G.cc})`),!0)})}updateAssetDurations(t){if(!t.assetListLoaded)return;const n=t.timelineStart;let s=0,_=!1,E=!1;for(let I=0;I<t.assetList.length;I++){const U=t.assetList[I],Q=n+s;U.startOffset=s,U.timelineStart=Q,_||(_=U.duration===null),E||(E=!!U.error);const G=U.error?0:U.duration||0;s+=G}_&&!E?t.duration=Math.max(s,t.duration):t.duration=s}removeEvent(t){t.reset(),delete this.eventMap[t.identifier]}}function Bu(D){return`[${D.event?'"'+D.event.identifier+'"':"primary"}: ${D.start.toFixed(2)}-${D.end.toFixed(2)}]`}class Bl{constructor(t){this.hls=void 0,this.hls=t}destroy(){this.hls=null}loadAssetList(t,n){const s=t.assetListUrl;let _;try{_=gs(s,this.hls.sessionId,t.baseUrl)}catch(be){const Re=this.assignAssetListError(t,f.ASSET_LIST_LOAD_ERROR,be,s);this.hls.trigger(o.ERROR,Re);return}n&&_.protocol!=="data:"&&_.searchParams.set("_HLS_start_offset",""+n);const E=this.hls.config,I=E.loader,U=new I(E),Q={responseType:"json",url:_.href},G=E.interstitialAssetListLoadPolicy.default,ue={loadPolicy:G,timeout:G.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0},de={onSuccess:(be,Re,Le,at)=>{const it=be.data,Qt=it==null?void 0:it.ASSETS;if(!Array.isArray(Qt)){const ir=this.assignAssetListError(t,f.ASSET_LIST_PARSING_ERROR,new Error("Invalid interstitial asset list"),Le.url,Re,at);this.hls.trigger(o.ERROR,ir);return}t.assetListResponse=it,this.hls.trigger(o.ASSET_LIST_LOADED,{event:t,assetListResponse:it,networkDetails:at})},onError:(be,Re,Le,at)=>{const it=this.assignAssetListError(t,f.ASSET_LIST_LOAD_ERROR,new Error(`Error loading X-ASSET-LIST: HTTP status ${be.code} ${be.text} (${Re.url})`),Re.url,at,Le);this.hls.trigger(o.ERROR,it)},onTimeout:(be,Re,Le)=>{const at=this.assignAssetListError(t,f.ASSET_LIST_LOAD_TIMEOUT,new Error(`Timeout loading X-ASSET-LIST (${Re.url})`),Re.url,be,Le);this.hls.trigger(o.ERROR,at)}};return U.load(Q,ue,de),this.hls.trigger(o.ASSET_LIST_LOADING,{event:t}),U}assignAssetListError(t,n,s,_,E,I){return t.error=s,{type:c.NETWORK_ERROR,details:n,fatal:!1,interstitial:t,url:_,error:s,networkDetails:I,stats:E}}}function nf(D){D==null||D.play().catch(()=>{})}function Nl(D,t){return`[${D}] Advancing timeline position to ${t}`}class wf extends R{constructor(t,n){super("interstitials",t.logger),this.HlsPlayerClass=void 0,this.hls=void 0,this.assetListLoader=void 0,this.mediaSelection=null,this.altSelection=null,this.media=null,this.detachedData=null,this.requiredTracks=null,this.manager=null,this.playerQueue=[],this.bufferedPos=-1,this.timelinePos=-1,this.schedule=void 0,this.playingItem=null,this.bufferingItem=null,this.waitingItem=null,this.endedItem=null,this.playingAsset=null,this.endedAsset=null,this.bufferingAsset=null,this.shouldPlay=!1,this.onPlay=()=>{this.shouldPlay=!0},this.onPause=()=>{this.shouldPlay=!1},this.onSeeking=()=>{const s=this.currentTime;if(s===void 0||this.playbackDisabled||!this.schedule)return;const _=s-this.timelinePos;if(Math.abs(_)<1/7056e5)return;const I=_<=-.01;this.timelinePos=s,this.bufferedPos=s;const U=this.playingItem;if(!U){this.checkBuffer();return}if(I&&this.schedule.resetErrorsInRange(s,s-_)&&this.updateSchedule(!0),this.checkBuffer(),I&&s<U.start||s>=U.end){var Q;const Re=this.findItemIndex(U);let Le=this.schedule.findItemIndexAtTime(s);if(Le===-1&&(Le=Re+(I?-1:1),this.log(`seeked ${I?"back ":""}to position not covered by schedule ${s} (resolving from ${Re} to ${Le})`)),!this.isInterstitial(U)&&(Q=this.media)!=null&&Q.paused&&(this.shouldPlay=!1),!I&&Le>Re){const at=this.schedule.findJumpRestrictedIndex(Re+1,Le);if(at>Re){this.setSchedulePosition(at);return}}this.setSchedulePosition(Le);return}const G=this.playingAsset;if(!G){if(this.playingLastItem&&this.isInterstitial(U)){const Re=U.event.assetList[0];Re&&(this.endedItem=this.playingItem,this.playingItem=null,this.setScheduleToAssetAtTime(s,Re))}return}const ue=G.timelineStart,de=G.duration||0;if(I&&s<ue||s>=ue+de){var be;(be=U.event)!=null&&be.appendInPlace&&(this.clearInterstitial(U.event,U),this.flushFrontBuffer(s)),this.setScheduleToAssetAtTime(s,G)}},this.onTimeupdate=()=>{const s=this.currentTime;if(s===void 0||this.playbackDisabled)return;if(s>this.timelinePos)this.timelinePos=s,s>this.bufferedPos&&this.checkBuffer();else return;const _=this.playingItem;if(!_||this.playingLastItem)return;if(s>=_.end){this.timelinePos=_.end;const U=this.findItemIndex(_);this.setSchedulePosition(U+1)}const E=this.playingAsset;if(!E)return;const I=E.timelineStart+(E.duration||0);s>=I&&this.setScheduleToAssetAtTime(s,E)},this.onScheduleUpdate=(s,_)=>{const E=this.schedule;if(!E)return;const I=this.playingItem,U=E.events||[],Q=E.items||[],G=E.durations,ue=s.map(at=>at.identifier),de=!!(U.length||ue.length);(de||_)&&this.log(`INTERSTITIALS_UPDATED (${U.length}): ${U}
Schedule: ${Q.map(at=>Bu(at))} pos: ${this.timelinePos}`),ue.length&&this.log(`Removed events ${ue}`);let be=null,Re=null;I&&(be=this.updateItem(I,this.timelinePos),this.itemsMatch(I,be)?this.playingItem=be:this.waitingItem=this.endedItem=null),this.waitingItem=this.updateItem(this.waitingItem),this.endedItem=this.updateItem(this.endedItem);const Le=this.bufferingItem;if(Le&&(Re=this.updateItem(Le,this.bufferedPos),this.itemsMatch(Le,Re)?this.bufferingItem=Re:Le.event&&(this.bufferingItem=this.playingItem,this.clearInterstitial(Le.event,null))),s.forEach(at=>{at.assetList.forEach(it=>{this.clearAssetPlayer(it.identifier,null)})}),this.playerQueue.forEach(at=>{if(at.interstitial.appendInPlace){const it=at.assetItem.timelineStart,Qt=at.timelineOffset-it;if(Qt)try{at.timelineOffset=it}catch(ir){Math.abs(Qt)>Ti&&this.warn(`${ir} ("${at.assetId}" ${at.timelineOffset}->${it})`)}}}),de||_){if(this.hls.trigger(o.INTERSTITIALS_UPDATED,{events:U.slice(0),schedule:Q.slice(0),durations:G,removedIds:ue}),this.isInterstitial(I)&&ue.includes(I.event.identifier)){this.warn(`Interstitial "${I.event.identifier}" removed while playing`),this.primaryFallback(I.event);return}I&&this.trimInPlace(be,I),Le&&Re!==be&&this.trimInPlace(Re,Le),this.checkBuffer()}},this.hls=t,this.HlsPlayerClass=n,this.assetListLoader=new Bl(t),this.schedule=new Ef(this.onScheduleUpdate,t.logger),this.registerListeners()}registerListeners(){const t=this.hls;t&&(t.on(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.on(o.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.on(o.AUDIO_TRACK_UPDATED,this.onAudioTrackUpdated,this),t.on(o.SUBTITLE_TRACK_SWITCH,this.onSubtitleTrackSwitch,this),t.on(o.SUBTITLE_TRACK_UPDATED,this.onSubtitleTrackUpdated,this),t.on(o.EVENT_CUE_ENTER,this.onInterstitialCueEnter,this),t.on(o.ASSET_LIST_LOADED,this.onAssetListLoaded,this),t.on(o.BUFFER_APPENDED,this.onBufferAppended,this),t.on(o.BUFFER_FLUSHED,this.onBufferFlushed,this),t.on(o.BUFFERED_TO_END,this.onBufferedToEnd,this),t.on(o.MEDIA_ENDED,this.onMediaEnded,this),t.on(o.ERROR,this.onError,this),t.on(o.DESTROYING,this.onDestroying,this))}unregisterListeners(){const t=this.hls;t&&(t.off(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.off(o.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.off(o.AUDIO_TRACK_UPDATED,this.onAudioTrackUpdated,this),t.off(o.SUBTITLE_TRACK_SWITCH,this.onSubtitleTrackSwitch,this),t.off(o.SUBTITLE_TRACK_UPDATED,this.onSubtitleTrackUpdated,this),t.off(o.EVENT_CUE_ENTER,this.onInterstitialCueEnter,this),t.off(o.ASSET_LIST_LOADED,this.onAssetListLoaded,this),t.off(o.BUFFER_CODECS,this.onBufferCodecs,this),t.off(o.BUFFER_APPENDED,this.onBufferAppended,this),t.off(o.BUFFER_FLUSHED,this.onBufferFlushed,this),t.off(o.BUFFERED_TO_END,this.onBufferedToEnd,this),t.off(o.MEDIA_ENDED,this.onMediaEnded,this),t.off(o.ERROR,this.onError,this),t.off(o.DESTROYING,this.onDestroying,this))}startLoad(){this.resumeBuffering()}stopLoad(){this.pauseBuffering()}resumeBuffering(){var t;(t=this.getBufferingPlayer())==null||t.resumeBuffering()}pauseBuffering(){var t;(t=this.getBufferingPlayer())==null||t.pauseBuffering()}destroy(){this.unregisterListeners(),this.stopLoad(),this.assetListLoader&&this.assetListLoader.destroy(),this.emptyPlayerQueue(),this.clearScheduleState(),this.schedule&&this.schedule.destroy(),this.media=this.detachedData=this.mediaSelection=this.requiredTracks=this.altSelection=this.schedule=this.manager=null,this.hls=this.HlsPlayerClass=this.log=null,this.assetListLoader=null,this.onPlay=this.onPause=this.onSeeking=this.onTimeupdate=null,this.onScheduleUpdate=null}onDestroying(){const t=this.primaryMedia||this.media;t&&this.removeMediaListeners(t)}removeMediaListeners(t){os(t,"play",this.onPlay),os(t,"pause",this.onPause),os(t,"seeking",this.onSeeking),os(t,"timeupdate",this.onTimeupdate)}onMediaAttaching(t,n){const s=this.media=n.media;ja(s,"seeking",this.onSeeking),ja(s,"timeupdate",this.onTimeupdate),ja(s,"play",this.onPlay),ja(s,"pause",this.onPause)}onMediaAttached(t,n){const s=this.effectivePlayingItem,_=this.detachedData;if(this.detachedData=null,s===null)this.checkStart();else if(!_){this.clearScheduleState();const E=this.findItemIndex(s);this.setSchedulePosition(E)}}clearScheduleState(){this.log("clear schedule state"),this.playingItem=this.bufferingItem=this.waitingItem=this.endedItem=this.playingAsset=this.endedAsset=this.bufferingAsset=null}onMediaDetaching(t,n){const s=!!n.transferMedia,_=this.media;if(this.media=null,!s&&(_&&this.removeMediaListeners(_),this.detachedData)){const E=this.getBufferingPlayer();E&&(this.log(`Removing schedule state for detachedData and ${E}`),this.playingAsset=this.endedAsset=this.bufferingAsset=this.bufferingItem=this.waitingItem=this.detachedData=null,E.detachMedia()),this.shouldPlay=!1}}get interstitialsManager(){if(!this.hls)return null;if(this.manager)return this.manager;const t=this,n=()=>t.bufferingItem||t.waitingItem,s=de=>de&&t.getAssetPlayer(de.identifier),_=(de,be,Re,Le,at)=>{if(de){let it=de[be].start;const Qt=de.event;if(Qt){if(be==="playout"||Qt.timelineOccupancy!==Tl.Point){const ir=s(Re);(ir==null?void 0:ir.interstitial)===Qt&&(it+=ir.assetItem.startOffset+ir[at])}}else{const ir=Le==="bufferedPos"?I():t[Le];it+=ir-de.start}return it}return 0},E=(de,be)=>{var Re;if(de!==0&&be!=="primary"&&(Re=t.schedule)!=null&&Re.length){var Le;const at=t.schedule.findItemIndexAtTime(de),it=(Le=t.schedule.items)==null?void 0:Le[at];if(it){const Qt=it[be].start-it.start;return de+Qt}}return de},I=()=>{const de=t.bufferedPos;return de===Number.MAX_VALUE?U("primary"):Math.max(de,0)},U=de=>{var be,Re;return(be=t.primaryDetails)!=null&&be.live?t.primaryDetails.edge:((Re=t.schedule)==null?void 0:Re.durations[de])||0},Q=(de,be)=>{var Re,Le;const at=t.effectivePlayingItem;if(at!=null&&(Re=at.event)!=null&&Re.restrictions.skip||!t.schedule)return;t.log(`seek to ${de} "${be}"`);const it=t.effectivePlayingItem,Qt=t.schedule.findItemIndexAtTime(de,be),ir=(Le=t.schedule.items)==null?void 0:Le[Qt],ur=t.getBufferingPlayer(),Ar=ur==null?void 0:ur.interstitial,Ur=Ar==null?void 0:Ar.appendInPlace,mn=it&&t.itemsMatch(it,ir);if(it&&(Ur||mn)){const zr=s(t.playingAsset),ln=(zr==null?void 0:zr.media)||t.primaryMedia;if(ln){const on=be==="primary"?ln.currentTime:_(it,be,t.playingAsset,"timelinePos","currentTime"),Qr=de-on,Dn=(Ur?on:ln.currentTime)+Qr;if(Dn>=0&&(!zr||Ur||Dn<=zr.duration)){ln.currentTime=Dn;return}}}if(ir){let zr=de;if(be!=="primary"){const on=ir[be].start,Qr=de-on;zr=ir.start+Qr}const ln=!t.isInterstitial(ir);if((!t.isInterstitial(it)||it.event.appendInPlace)&&(ln||ir.event.appendInPlace)){const on=t.media||(Ur?ur==null?void 0:ur.media:null);on&&(on.currentTime=zr)}else if(it){const on=t.findItemIndex(it);if(Qt>on){const Dn=t.schedule.findJumpRestrictedIndex(on+1,Qt);if(Dn>on){t.setSchedulePosition(Dn);return}}let Qr=0;if(ln)t.timelinePos=zr,t.checkBuffer();else{const Dn=ir.event.assetList,Ei=de-(ir[be]||ir).start;for(let Ki=Dn.length;Ki--;){const da=Dn[Ki];if(da.duration&&Ei>=da.startOffset&&Ei<da.startOffset+da.duration){Qr=Ki;break}}}t.setSchedulePosition(Qt,Qr)}}},G=()=>{const de=t.effectivePlayingItem;if(t.isInterstitial(de))return de;const be=n();return t.isInterstitial(be)?be:null},ue={get bufferedEnd(){const de=n(),be=t.bufferingItem;if(be&&be===de){var Re;return _(be,"playout",t.bufferingAsset,"bufferedPos","bufferedEnd")-be.playout.start||((Re=t.bufferingAsset)==null?void 0:Re.startOffset)||0}return 0},get currentTime(){const de=G(),be=t.effectivePlayingItem;return be&&be===de?_(be,"playout",t.effectivePlayingAsset,"timelinePos","currentTime")-be.playout.start:0},set currentTime(de){const be=G(),Re=t.effectivePlayingItem;Re&&Re===be&&Q(de+Re.playout.start,"playout")},get duration(){const de=G();return de?de.playout.end-de.playout.start:0},get assetPlayers(){var de;const be=(de=G())==null?void 0:de.event.assetList;return be?be.map(Re=>t.getAssetPlayer(Re.identifier)):[]},get playingIndex(){var de;const be=(de=G())==null?void 0:de.event;return be&&t.effectivePlayingAsset?be.findAssetIndex(t.effectivePlayingAsset):-1},get scheduleItem(){return G()}};return this.manager={get events(){var de;return((de=t.schedule)==null||(de=de.events)==null?void 0:de.slice(0))||[]},get schedule(){var de;return((de=t.schedule)==null||(de=de.items)==null?void 0:de.slice(0))||[]},get interstitialPlayer(){return G()?ue:null},get playerQueue(){return t.playerQueue.slice(0)},get bufferingAsset(){return t.bufferingAsset},get bufferingItem(){return n()},get bufferingIndex(){const de=n();return t.findItemIndex(de)},get playingAsset(){return t.effectivePlayingAsset},get playingItem(){return t.effectivePlayingItem},get playingIndex(){const de=t.effectivePlayingItem;return t.findItemIndex(de)},primary:{get bufferedEnd(){return I()},get currentTime(){const de=t.timelinePos;return de>0?de:0},set currentTime(de){Q(de,"primary")},get duration(){return U("primary")},get seekableStart(){var de;return((de=t.primaryDetails)==null?void 0:de.fragmentStart)||0}},integrated:{get bufferedEnd(){return _(n(),"integrated",t.bufferingAsset,"bufferedPos","bufferedEnd")},get currentTime(){return _(t.effectivePlayingItem,"integrated",t.effectivePlayingAsset,"timelinePos","currentTime")},set currentTime(de){Q(de,"integrated")},get duration(){return U("integrated")},get seekableStart(){var de;return E(((de=t.primaryDetails)==null?void 0:de.fragmentStart)||0,"integrated")}},skip:()=>{const de=t.effectivePlayingItem,be=de==null?void 0:de.event;if(be&&!be.restrictions.skip){const Re=t.findItemIndex(de);if(be.appendInPlace){const Le=de.playout.start+de.event.duration;Q(Le+.001,"playout")}else t.advanceAfterAssetEnded(be,Re,1/0)}}}}get effectivePlayingItem(){return this.waitingItem||this.playingItem||this.endedItem}get effectivePlayingAsset(){return this.playingAsset||this.endedAsset}get playingLastItem(){var t;const n=this.playingItem,s=(t=this.schedule)==null?void 0:t.items;return!this.playbackStarted||!n||!s?!1:this.findItemIndex(n)===s.length-1}get playbackStarted(){return this.effectivePlayingItem!==null}get currentTime(){var t,n;if(this.mediaSelection===null)return;const s=this.waitingItem||this.playingItem;if(this.isInterstitial(s)&&!s.event.appendInPlace)return;let _=this.media;!_&&(t=this.bufferingItem)!=null&&(t=t.event)!=null&&t.appendInPlace&&(_=this.primaryMedia);const E=(n=_)==null?void 0:n.currentTime;if(!(E===void 0||!r(E)))return E}get primaryMedia(){var t;return this.media||((t=this.detachedData)==null?void 0:t.media)||null}isInterstitial(t){return!!(t!=null&&t.event)}retreiveMediaSource(t,n){const s=this.getAssetPlayer(t);s&&this.transferMediaFromPlayer(s,n)}transferMediaFromPlayer(t,n){const s=t.interstitial.appendInPlace,_=t.media;if(s&&_===this.primaryMedia){if(this.bufferingAsset=null,(!n||this.isInterstitial(n)&&!n.event.appendInPlace)&&n&&_){this.detachedData={media:_};return}const E=t.transferMedia();this.log(`transfer MediaSource from ${t} ${Yi(E)}`),this.detachedData=E}else n&&_&&(this.shouldPlay||(this.shouldPlay=!_.paused))}transferMediaTo(t,n){var s,_;if(t.media===n)return;let E=null;const I=this.hls,U=t!==I,Q=U&&t.interstitial.appendInPlace,G=(s=this.detachedData)==null?void 0:s.mediaSource;let ue;if(I.media)Q&&(E=I.transferMedia(),this.detachedData=E),ue="Primary";else if(G){const Le=this.getBufferingPlayer();Le?(E=Le.transferMedia(),ue=`${Le}`):ue="detached MediaSource"}else ue="detached media";if(!E){if(G)E=this.detachedData,this.log(`using detachedData: MediaSource ${Yi(E)}`);else if(!this.detachedData||I.media===n){const Le=this.playerQueue;Le.length>1&&Le.forEach(at=>{if(U&&at.interstitial.appendInPlace!==Q){const it=at.interstitial;this.clearInterstitial(at.interstitial,null),it.appendInPlace=!1,it.appendInPlace&&this.warn(`Could not change append strategy for queued assets ${it}`)}}),this.hls.detachMedia(),this.detachedData={media:n}}}const de=E&&"mediaSource"in E&&((_=E.mediaSource)==null?void 0:_.readyState)!=="closed",be=de&&E?E:n;this.log(`${de?"transfering MediaSource":"attaching media"} to ${U?t:"Primary"} from ${ue} (media.currentTime: ${n.currentTime})`);const Re=this.schedule;if(be===E&&Re){const Le=U&&t.assetId===Re.assetIdAtEnd;be.overrides={duration:Re.duration,endOfStream:!U||Le,cueRemoval:!U}}t.attachMedia(be)}onInterstitialCueEnter(){this.onTimeupdate()}checkStart(){const t=this.schedule,n=t==null?void 0:t.events;if(!n||this.playbackDisabled||!this.media)return;this.bufferedPos===-1&&(this.bufferedPos=0);const s=this.timelinePos,_=this.effectivePlayingItem;if(s===-1){const E=this.hls.startPosition;if(this.log(Nl("checkStart",E)),this.timelinePos=E,n.length&&n[0].cue.pre){const I=t.findEventIndex(n[0].identifier);this.setSchedulePosition(I)}else if(E>=0||!this.primaryLive){const I=this.timelinePos=E>0?E:0,U=t.findItemIndexAtTime(I);this.setSchedulePosition(U)}}else if(_&&!this.playingItem){const E=t.findItemIndex(_);this.setSchedulePosition(E)}}advanceAssetBuffering(t,n){const s=t.event,_=s.findAssetIndex(n),E=bl(s,_);if(!s.isAssetPastPlayoutLimit(E))this.bufferedToEvent(t,E);else if(this.schedule){var I;const U=(I=this.schedule.items)==null?void 0:I[this.findItemIndex(t)+1];U&&this.bufferedToItem(U)}}advanceAfterAssetEnded(t,n,s){const _=bl(t,s);if(t.isAssetPastPlayoutLimit(_)){if(this.schedule){const E=this.schedule.items;if(E){const I=n+1,U=E.length;if(I>=U){this.setSchedulePosition(-1);return}const Q=t.resumeTime;this.timelinePos<Q&&(this.log(Nl("advanceAfterAssetEnded",Q)),this.timelinePos=Q,t.appendInPlace&&this.advanceInPlace(Q),this.checkBuffer(this.bufferedPos<Q)),this.setSchedulePosition(I)}}}else{if(t.appendInPlace){const E=t.assetList[_];E&&this.advanceInPlace(E.timelineStart)}this.setSchedulePosition(n,_)}}setScheduleToAssetAtTime(t,n){const s=this.schedule;if(!s)return;const _=n.parentIdentifier,E=s.getEvent(_);if(E){const I=s.findEventIndex(_),U=s.findAssetIndex(E,t);this.advanceAfterAssetEnded(E,I,U-1)}}setSchedulePosition(t,n){var s;const _=(s=this.schedule)==null?void 0:s.items;if(!_||this.playbackDisabled)return;const E=t>=0?_[t]:null;this.log(`setSchedulePosition ${t}, ${n} (${E&&Bu(E)}) pos: ${this.timelinePos}`);const I=this.waitingItem||this.playingItem,U=this.playingLastItem;if(this.isInterstitial(I)){const ue=I.event,de=this.playingAsset,be=de==null?void 0:de.identifier,Re=be?this.getAssetPlayer(be):null;if(Re&&be&&(!this.eventItemsMatch(I,E)||n!==void 0&&be!==ue.assetList[n].identifier)){var Q;const Le=ue.findAssetIndex(de);if(this.log(`INTERSTITIAL_ASSET_ENDED ${Le+1}/${ue.assetList.length} ${xl(de)}`),this.endedAsset=de,this.playingAsset=null,this.hls.trigger(o.INTERSTITIAL_ASSET_ENDED,{asset:de,assetListIndex:Le,event:ue,schedule:_.slice(0),scheduleIndex:t,player:Re}),I!==this.playingItem){this.itemsMatch(I,this.playingItem)&&!this.playingAsset&&this.advanceAfterAssetEnded(ue,this.findItemIndex(this.playingItem),Le);return}this.retreiveMediaSource(be,E),Re.media&&!((Q=this.detachedData)!=null&&Q.mediaSource)&&Re.detachMedia()}if(!this.eventItemsMatch(I,E)&&(this.endedItem=I,this.playingItem=null,this.log(`INTERSTITIAL_ENDED ${ue} ${Bu(I)}`),ue.hasPlayed=!0,this.hls.trigger(o.INTERSTITIAL_ENDED,{event:ue,schedule:_.slice(0),scheduleIndex:t}),ue.cue.once)){var G;this.updateSchedule();const Le=(G=this.schedule)==null?void 0:G.items;if(E&&Le){const at=this.findItemIndex(E);this.advanceSchedule(at,Le,n,I,U)}return}}this.advanceSchedule(t,_,n,I,U)}advanceSchedule(t,n,s,_,E){const I=this.schedule;if(!I)return;const U=n[t]||null,Q=this.primaryMedia,G=this.playerQueue;if(G.length&&G.forEach(ue=>{const de=ue.interstitial,be=I.findEventIndex(de.identifier);(be<t||be>t+1)&&this.clearInterstitial(de,U)}),this.isInterstitial(U)){this.timelinePos=Math.min(Math.max(this.timelinePos,U.start),U.end);const ue=U.event;if(s===void 0){s=I.findAssetIndex(ue,this.timelinePos);const Le=bl(ue,s-1);if(ue.isAssetPastPlayoutLimit(Le)||ue.appendInPlace&&this.timelinePos===U.end){this.advanceAfterAssetEnded(ue,t,s);return}s=Le}const de=this.waitingItem;this.assetsBuffered(U,Q)||this.setBufferingItem(U);let be=this.preloadAssets(ue,s);if(this.eventItemsMatch(U,de||_)||(this.waitingItem=U,this.log(`INTERSTITIAL_STARTED ${Bu(U)} ${ue.appendInPlace?"append in place":""}`),this.hls.trigger(o.INTERSTITIAL_STARTED,{event:ue,schedule:n.slice(0),scheduleIndex:t})),!ue.assetListLoaded){this.log(`Waiting for ASSET-LIST to complete loading ${ue}`);return}if(ue.assetListLoader&&(ue.assetListLoader.destroy(),ue.assetListLoader=void 0),!Q){this.log(`Waiting for attachMedia to start Interstitial ${ue}`);return}this.waitingItem=this.endedItem=null,this.playingItem=U;const Re=ue.assetList[s];if(!Re){this.advanceAfterAssetEnded(ue,t,s||0);return}if(be||(be=this.getAssetPlayer(Re.identifier)),be===null||be.destroyed){const Le=ue.assetList.length;this.warn(`asset ${s+1}/${Le} player destroyed ${ue}`),be=this.createAssetPlayer(ue,Re,s),be.loadSource()}if(!this.eventItemsMatch(U,this.bufferingItem)&&ue.appendInPlace&&this.isAssetBuffered(Re))return;this.startAssetPlayer(be,s,n,t,Q),this.shouldPlay&&nf(be.media)}else U?(this.resumePrimary(U,t,_),this.shouldPlay&&nf(this.hls.media)):E&&this.isInterstitial(_)&&(this.endedItem=null,this.playingItem=_,_.event.appendInPlace||this.attachPrimary(I.durations.primary,null))}get playbackDisabled(){return this.hls.config.enableInterstitialPlayback===!1}get primaryDetails(){var t;return(t=this.mediaSelection)==null?void 0:t.main.details}get primaryLive(){var t;return!!((t=this.primaryDetails)!=null&&t.live)}resumePrimary(t,n,s){var _,E;if(this.playingItem=t,this.playingAsset=this.endedAsset=null,this.waitingItem=this.endedItem=null,this.bufferedToItem(t),this.log(`resuming ${Bu(t)}`),!((_=this.detachedData)!=null&&_.mediaSource)){let U=this.timelinePos;(U<t.start||U>=t.end)&&(U=this.getPrimaryResumption(t,n),this.log(Nl("resumePrimary",U)),this.timelinePos=U),this.attachPrimary(U,t)}if(!s)return;const I=(E=this.schedule)==null?void 0:E.items;I&&(this.log(`INTERSTITIALS_PRIMARY_RESUMED ${Bu(t)}`),this.hls.trigger(o.INTERSTITIALS_PRIMARY_RESUMED,{schedule:I.slice(0),scheduleIndex:n}),this.checkBuffer())}getPrimaryResumption(t,n){const s=t.start;if(this.primaryLive){const _=this.primaryDetails;if(n===0)return this.hls.startPosition;if(_&&(s<_.fragmentStart||s>_.edge))return this.hls.liveSyncPosition||-1}return s}isAssetBuffered(t){const n=this.getAssetPlayer(t.identifier);return n!=null&&n.hls?n.hls.bufferedToEnd:di.bufferInfo(this.primaryMedia,this.timelinePos,0).end+1>=t.timelineStart+(t.duration||0)}attachPrimary(t,n,s){n?this.setBufferingItem(n):this.bufferingItem=this.playingItem,this.bufferingAsset=null;const _=this.primaryMedia;if(!_)return;const E=this.hls;E.media?this.checkBuffer():(this.transferMediaTo(E,_),s&&this.startLoadingPrimaryAt(t,s)),s||(this.log(Nl("attachPrimary",t)),this.timelinePos=t,this.startLoadingPrimaryAt(t,s))}startLoadingPrimaryAt(t,n){var s;const _=this.hls;!_.loadingEnabled||!_.media||Math.abs((((s=_.mainForwardBufferInfo)==null?void 0:s.start)||_.media.currentTime)-t)>.5?_.startLoad(t,n):_.bufferingEnabled||_.resumeBuffering()}onManifestLoading(){var t;this.stopLoad(),(t=this.schedule)==null||t.reset(),this.emptyPlayerQueue(),this.clearScheduleState(),this.shouldPlay=!1,this.bufferedPos=this.timelinePos=-1,this.mediaSelection=this.altSelection=this.manager=this.requiredTracks=null,this.hls.off(o.BUFFER_CODECS,this.onBufferCodecs,this),this.hls.on(o.BUFFER_CODECS,this.onBufferCodecs,this)}onLevelUpdated(t,n){if(n.level===-1||!this.schedule)return;const s=this.hls.levels[n.level];if(!s.details)return;const _=b(b({},this.mediaSelection||this.altSelection),{},{main:s});this.mediaSelection=_,this.schedule.parseInterstitialDateRanges(_,this.hls.config.interstitialAppendInPlace),!this.effectivePlayingItem&&this.schedule.items&&this.checkStart()}onAudioTrackUpdated(t,n){const s=this.hls.audioTracks[n.id],_=this.mediaSelection;if(!_){this.altSelection=b(b({},this.altSelection),{},{audio:s});return}const E=b(b({},_),{},{audio:s});this.mediaSelection=E}onSubtitleTrackUpdated(t,n){const s=this.hls.subtitleTracks[n.id],_=this.mediaSelection;if(!_){this.altSelection=b(b({},this.altSelection),{},{subtitles:s});return}const E=b(b({},_),{},{subtitles:s});this.mediaSelection=E}onAudioTrackSwitching(t,n){const s=xa(n);this.playerQueue.forEach(({hls:_})=>_&&(_.setAudioOption(n)||_.setAudioOption(s)))}onSubtitleTrackSwitch(t,n){const s=xa(n);this.playerQueue.forEach(({hls:_})=>_&&(_.setSubtitleOption(n)||n.id!==-1&&_.setSubtitleOption(s)))}onBufferCodecs(t,n){const s=n.tracks;s&&(this.requiredTracks=s)}onBufferAppended(t,n){this.checkBuffer()}onBufferFlushed(t,n){const s=this.playingItem;if(s&&!this.itemsMatch(s,this.bufferingItem)&&!this.isInterstitial(s)){const _=this.timelinePos;this.bufferedPos=_,this.checkBuffer()}}onBufferedToEnd(t){if(!this.schedule)return;const n=this.schedule.events;if(this.bufferedPos<Number.MAX_VALUE&&n){for(let _=0;_<n.length;_++){const E=n[_];if(E.cue.post){var s;const I=this.schedule.findEventIndex(E.identifier),U=(s=this.schedule.items)==null?void 0:s[I];this.isInterstitial(U)&&this.eventItemsMatch(U,this.bufferingItem)&&this.bufferedToItem(U,0);break}}this.bufferedPos=Number.MAX_VALUE}}onMediaEnded(t){const n=this.playingItem;if(!this.playingLastItem&&n){const s=this.findItemIndex(n);this.setSchedulePosition(s+1)}else this.shouldPlay=!1}updateItem(t,n){var s;const _=(s=this.schedule)==null?void 0:s.items;if(t&&_){const E=this.findItemIndex(t,n);return _[E]||null}return null}trimInPlace(t,n){if(this.isInterstitial(t)&&t.event.appendInPlace&&n.end-t.end>.25){t.event.assetList.forEach((E,I)=>{t.event.isAssetPastPlayoutLimit(I)&&this.clearAssetPlayer(E.identifier,null)});const s=t.end+.25,_=di.bufferInfo(this.primaryMedia,s,0);(_.end>s||(_.nextStart||0)>s)&&(this.log(`trim buffered interstitial ${Bu(t)} (was ${Bu(n)})`),this.attachPrimary(s,null,!0),this.flushFrontBuffer(s))}}itemsMatch(t,n){return!!n&&(t===n||t.event&&n.event&&this.eventItemsMatch(t,n)||!t.event&&!n.event&&this.findItemIndex(t)===this.findItemIndex(n))}eventItemsMatch(t,n){var s;return!!n&&(t===n||t.event.identifier===((s=n.event)==null?void 0:s.identifier))}findItemIndex(t,n){return t&&this.schedule?this.schedule.findItemIndex(t,n):-1}updateSchedule(t=!1){var n;const s=this.mediaSelection;s&&((n=this.schedule)==null||n.updateSchedule(s,[],t))}checkBuffer(t){var n;const s=(n=this.schedule)==null?void 0:n.items;if(!s)return;const _=di.bufferInfo(this.primaryMedia,this.timelinePos,0);t&&(this.bufferedPos=this.timelinePos),t||(t=_.len<1),this.updateBufferedPos(_.end,s,t)}updateBufferedPos(t,n,s){const _=this.schedule,E=this.bufferingItem;if(this.bufferedPos>t||!_)return;if(n.length===1&&this.itemsMatch(n[0],E)){this.bufferedPos=t;return}const I=this.playingItem,U=this.findItemIndex(I);let Q=_.findItemIndexAtTime(t);if(this.bufferedPos<t){var G;const ue=this.findItemIndex(E),de=Math.min(ue+1,n.length-1),be=n[de];if((Q===-1&&E&&t>=E.end||(G=be.event)!=null&&G.appendInPlace&&t+.01>=be.start)&&(Q=de),this.isInterstitial(E)){const Re=E.event;if(de-U>1&&Re.appendInPlace===!1||Re.assetList.length===0&&Re.assetListLoader)return}if(this.bufferedPos=t,Q>ue&&Q>U)this.bufferedToItem(be);else{const Re=this.primaryDetails;this.primaryLive&&Re&&t>Re.edge-Re.targetduration&&be.start<Re.edge+this.hls.config.interstitialLiveLookAhead&&this.isInterstitial(be)&&this.preloadAssets(be.event,0)}}else s&&I&&!this.itemsMatch(I,E)&&(Q===U?this.bufferedToItem(I):Q===U+1&&this.bufferedToItem(n[Q]))}assetsBuffered(t,n){return t.event.assetList.length===0?!1:!t.event.assetList.some(_=>{const E=this.getAssetPlayer(_.identifier);return!(E!=null&&E.bufferedInPlaceToEnd(n))})}setBufferingItem(t){const n=this.bufferingItem,s=this.schedule;if(!this.itemsMatch(t,n)&&s){const{items:_,events:E}=s;if(!_||!E)return n;const I=this.isInterstitial(t),U=this.getBufferingPlayer();this.bufferingItem=t,this.bufferedPos=Math.max(t.start,Math.min(t.end,this.timelinePos));const Q=U?U.remaining:n?n.end-this.timelinePos:0;if(this.log(`INTERSTITIALS_BUFFERED_TO_BOUNDARY ${Bu(t)}`+(n?` (${Q.toFixed(2)} remaining)`:"")),!this.playbackDisabled)if(I){const G=s.findAssetIndex(t.event,this.bufferedPos);t.event.assetList.forEach((ue,de)=>{const be=this.getAssetPlayer(ue.identifier);be&&(de===G&&be.loadSource(),be.resumeBuffering())})}else this.hls.resumeBuffering(),this.playerQueue.forEach(G=>G.pauseBuffering());this.hls.trigger(o.INTERSTITIALS_BUFFERED_TO_BOUNDARY,{events:E.slice(0),schedule:_.slice(0),bufferingIndex:this.findItemIndex(t),playingIndex:this.findItemIndex(this.playingItem)})}else this.bufferingItem!==t&&(this.bufferingItem=t);return n}bufferedToItem(t,n=0){const s=this.setBufferingItem(t);if(!this.playbackDisabled){if(this.isInterstitial(t))this.bufferedToEvent(t,n);else if(s!==null){this.bufferingAsset=null;const _=this.detachedData;_?_.mediaSource?this.attachPrimary(t.start,t,!0):this.preloadPrimary(t):this.preloadPrimary(t)}}}preloadPrimary(t){const n=this.findItemIndex(t),s=this.getPrimaryResumption(t,n);this.startLoadingPrimaryAt(s)}bufferedToEvent(t,n){const s=t.event,_=s.assetList.length===0&&!s.assetListLoader,E=s.cue.once;if(_||!E){const I=this.preloadAssets(s,n);if(I!=null&&I.interstitial.appendInPlace){const U=this.primaryMedia;U&&this.bufferAssetPlayer(I,U)}}}preloadAssets(t,n){const s=t.assetUrl,_=t.assetList.length,E=_===0&&!t.assetListLoader,I=t.cue.once;if(E){const Q=t.timelineStart;if(t.appendInPlace){var U;const be=this.playingItem;!this.isInterstitial(be)&&(be==null||(U=be.nextEvent)==null?void 0:U.identifier)===t.identifier&&this.flushFrontBuffer(Q+.25)}let G,ue=0;if(!this.playingItem&&this.primaryLive&&(ue=this.hls.startPosition,ue===-1&&(ue=this.hls.liveSyncPosition||0)),ue&&!(t.cue.pre||t.cue.post)){const be=ue-Q;be>0&&(G=Math.round(be*1e3)/1e3)}if(this.log(`Load interstitial asset ${n+1}/${s?1:_} ${t}${G?` live-start: ${ue} start-offset: ${G}`:""}`),s)return this.createAsset(t,0,0,Q,t.duration,s);const de=this.assetListLoader.loadAssetList(t,G);de&&(t.assetListLoader=de)}else if(!I&&_){for(let G=n;G<_;G++){const ue=t.assetList[G],de=this.getAssetPlayerQueueIndex(ue.identifier);(de===-1||this.playerQueue[de].destroyed)&&!ue.error&&this.createAssetPlayer(t,ue,G)}const Q=t.assetList[n];if(Q){const G=this.getAssetPlayer(Q.identifier);return G&&G.loadSource(),G}}return null}flushFrontBuffer(t){const n=this.requiredTracks;if(!n)return;this.log(`Removing front buffer starting at ${t}`),Object.keys(n).forEach(_=>{this.hls.trigger(o.BUFFER_FLUSHING,{startOffset:t,endOffset:1/0,type:_})})}getAssetPlayerQueueIndex(t){const n=this.playerQueue;for(let s=0;s<n.length;s++)if(t===n[s].assetId)return s;return-1}getAssetPlayer(t){const n=this.getAssetPlayerQueueIndex(t);return this.playerQueue[n]||null}getBufferingPlayer(){const{playerQueue:t,primaryMedia:n}=this;if(n){for(let s=0;s<t.length;s++)if(t[s].media===n)return t[s]}return null}createAsset(t,n,s,_,E,I){const U={parentIdentifier:t.identifier,identifier:Nc(t,I,n),duration:E,startOffset:s,timelineStart:_,uri:I};return this.createAssetPlayer(t,U,n)}createAssetPlayer(t,n,s){const _=this.hls,E=_.userConfig;let I=E.videoPreference;const U=_.loadLevelObj||_.levels[_.currentLevel];(I||U)&&(I=y({},I),U.videoCodec&&(I.videoCodec=U.videoCodec),U.videoRange&&(I.allowedVideoRanges=[U.videoRange]));const Q=_.audioTracks[_.audioTrack],G=_.subtitleTracks[_.subtitleTrack];let ue=0;if(this.primaryLive||t.appendInPlace){const Ar=this.timelinePos-n.timelineStart;if(Ar>1){const Ur=n.duration;Ur&&Ar<Ur&&(ue=Ar)}}const de=n.identifier,be=b(b({},E),{},{maxMaxBufferLength:Math.min(180,_.config.maxMaxBufferLength),autoStartLoad:!0,startFragPrefetch:!0,primarySessionId:_.sessionId,assetPlayerId:de,abrEwmaDefaultEstimate:_.bandwidthEstimate,interstitialsController:void 0,startPosition:ue,liveDurationInfinity:!1,testBandwidth:!1,videoPreference:I,audioPreference:Q||E.audioPreference,subtitlePreference:G||E.subtitlePreference});t.appendInPlace&&(t.appendInPlaceStarted=!0,n.timelineStart&&(be.timelineOffset=n.timelineStart));const Re=be.cmcd;Re!=null&&Re.sessionId&&Re.contentId&&(be.cmcd=y({},Re,{contentId:Ju(n.uri)})),this.getAssetPlayer(de)&&this.warn(`Duplicate date range identifier ${t} and asset ${de}`);const Le=new Fl(this.HlsPlayerClass,be,t,n);this.playerQueue.push(Le),t.assetList[s]=n;let at=!0;const it=Ar=>{if(Ar.live){var Ur;const ln=new Error(`Interstitials MUST be VOD assets ${t}`),on={fatal:!0,type:c.OTHER_ERROR,details:f.INTERSTITIAL_ASSET_ITEM_ERROR,error:ln},Qr=((Ur=this.schedule)==null?void 0:Ur.findEventIndex(t.identifier))||-1;this.handleAssetItemError(on,t,Qr,s,ln.message);return}const mn=Ar.edge-Ar.fragmentStart,zr=n.duration;(at||zr===null||mn>zr)&&(at=!1,this.log(`Interstitial asset "${de}" duration change ${zr} > ${mn}`),n.duration=mn,this.updateSchedule())};Le.on(o.LEVEL_UPDATED,(Ar,{details:Ur})=>it(Ur)),Le.on(o.LEVEL_PTS_UPDATED,(Ar,{details:Ur})=>it(Ur)),Le.on(o.EVENT_CUE_ENTER,()=>this.onInterstitialCueEnter());const Qt=(Ar,Ur)=>{const mn=this.getAssetPlayer(de);if(mn&&Ur.tracks){mn.off(o.BUFFER_CODECS,Qt),mn.tracks=Ur.tracks;const zr=this.primaryMedia;this.bufferingAsset===mn.assetItem&&zr&&!mn.media&&this.bufferAssetPlayer(mn,zr)}};Le.on(o.BUFFER_CODECS,Qt);const ir=()=>{var Ar;const Ur=this.getAssetPlayer(de);if(this.log(`buffered to end of asset ${Ur}`),!Ur||!this.schedule)return;const mn=this.schedule.findEventIndex(t.identifier),zr=(Ar=this.schedule.items)==null?void 0:Ar[mn];this.isInterstitial(zr)&&this.advanceAssetBuffering(zr,n)};Le.on(o.BUFFERED_TO_END,ir);const ur=Ar=>()=>{if(!this.getAssetPlayer(de)||!this.schedule)return;this.shouldPlay=!0;const mn=this.schedule.findEventIndex(t.identifier);this.advanceAfterAssetEnded(t,mn,Ar)};return Le.once(o.MEDIA_ENDED,ur(s)),Le.once(o.PLAYOUT_LIMIT_REACHED,ur(1/0)),Le.on(o.ERROR,(Ar,Ur)=>{if(!this.schedule)return;const mn=this.getAssetPlayer(de);if(Ur.details===f.BUFFER_STALLED_ERROR){if(mn!=null&&mn.appendInPlace){this.handleInPlaceStall(t);return}this.onTimeupdate(),this.checkBuffer(!0);return}this.handleAssetItemError(Ur,t,this.schedule.findEventIndex(t.identifier),s,`Asset player error ${Ur.error} ${t}`)}),Le.on(o.DESTROYING,()=>{if(!this.getAssetPlayer(de)||!this.schedule)return;const Ur=new Error(`Asset player destroyed unexpectedly ${de}`),mn={fatal:!0,type:c.OTHER_ERROR,details:f.INTERSTITIAL_ASSET_ITEM_ERROR,error:Ur};this.handleAssetItemError(mn,t,this.schedule.findEventIndex(t.identifier),s,Ur.message)}),this.log(`INTERSTITIAL_ASSET_PLAYER_CREATED ${xl(n)}`),this.hls.trigger(o.INTERSTITIAL_ASSET_PLAYER_CREATED,{asset:n,assetListIndex:s,event:t,player:Le}),Le}clearInterstitial(t,n){t.assetList.forEach(s=>{this.clearAssetPlayer(s.identifier,n)}),t.reset()}resetAssetPlayer(t){const n=this.getAssetPlayerQueueIndex(t);if(n!==-1){this.log(`reset asset player "${t}" after error`);const s=this.playerQueue[n];this.transferMediaFromPlayer(s,null),s.resetDetails()}}clearAssetPlayer(t,n){const s=this.getAssetPlayerQueueIndex(t);if(s!==-1){const _=this.playerQueue[s];this.log(`clear ${_} toSegment: ${n&&Bu(n)}`),this.transferMediaFromPlayer(_,n),this.playerQueue.splice(s,1),_.destroy()}}emptyPlayerQueue(){let t;for(;t=this.playerQueue.pop();)t.destroy();this.playerQueue=[]}startAssetPlayer(t,n,s,_,E){const{interstitial:I,assetItem:U,assetId:Q}=t,G=I.assetList.length,ue=this.playingAsset;this.endedAsset=null,this.playingAsset=U,(!ue||ue.identifier!==Q)&&(ue&&(this.clearAssetPlayer(ue.identifier,s[_]),delete ue.error),this.log(`INTERSTITIAL_ASSET_STARTED ${n+1}/${G} ${xl(U)}`),this.hls.trigger(o.INTERSTITIAL_ASSET_STARTED,{asset:U,assetListIndex:n,event:I,schedule:s.slice(0),scheduleIndex:_,player:t})),this.bufferAssetPlayer(t,E)}bufferAssetPlayer(t,n){var s,_;if(!this.schedule)return;const{interstitial:E,assetItem:I}=t,U=this.schedule.findEventIndex(E.identifier),Q=(s=this.schedule.items)==null?void 0:s[U];if(!Q)return;t.loadSource(),this.setBufferingItem(Q),this.bufferingAsset=I;const G=this.getBufferingPlayer();if(G===t)return;const ue=E.appendInPlace;if(ue&&(G==null?void 0:G.interstitial.appendInPlace)===!1)return;const de=(G==null?void 0:G.tracks)||((_=this.detachedData)==null?void 0:_.tracks)||this.requiredTracks;if(ue&&I!==this.playingAsset){if(!t.tracks){this.log(`Waiting for track info before buffering ${t}`);return}if(de&&!oe(de,t.tracks)){const be=new Error(`Asset ${xl(I)} SourceBuffer tracks ('${Object.keys(t.tracks)}') are not compatible with primary content tracks ('${Object.keys(de)}')`),Re={fatal:!0,type:c.OTHER_ERROR,details:f.INTERSTITIAL_ASSET_ITEM_ERROR,error:be},Le=E.findAssetIndex(I);this.handleAssetItemError(Re,E,U,Le,be.message);return}}this.transferMediaTo(t,n)}handleInPlaceStall(t){const n=this.schedule,s=this.primaryMedia;if(!n||!s)return;const _=s.currentTime,E=n.findAssetIndex(t,_),I=t.assetList[E];if(I){const U=this.getAssetPlayer(I.identifier);if(U){const Q=U.currentTime||_-I.timelineStart,G=U.duration-Q;if(this.warn(`Stalled at ${Q} of ${Q+G} in ${U} ${t} (media.currentTime: ${_})`),Q&&(G/s.playbackRate<.5||U.bufferedInPlaceToEnd(s))&&U.hls){const ue=n.findEventIndex(t.identifier);this.advanceAfterAssetEnded(t,ue,E)}}}}advanceInPlace(t){const n=this.primaryMedia;n&&n.currentTime<t&&(n.currentTime=t)}handleAssetItemError(t,n,s,_,E){if(t.details===f.BUFFER_STALLED_ERROR)return;const I=n.assetList[_]||null;if(this.warn(`INTERSTITIAL_ASSET_ERROR ${I&&xl(I)} ${t.error}`),!this.schedule)return;const U=(I==null?void 0:I.identifier)||"",Q=this.getAssetPlayerQueueIndex(U),G=this.playerQueue[Q]||null,ue=this.schedule.items,de=y({},t,{fatal:!1,errorAction:Zr(!0),asset:I,assetListIndex:_,event:n,schedule:ue,scheduleIndex:s,player:G});if(this.hls.trigger(o.INTERSTITIAL_ASSET_ERROR,de),!t.fatal)return;const be=this.playingAsset,Re=this.bufferingAsset,Le=new Error(E);if(I&&(this.clearAssetPlayer(U,null),I.error=Le),!n.assetList.some(at=>!at.error))n.error=Le;else for(let at=_;at<n.assetList.length;at++)this.resetAssetPlayer(n.assetList[at].identifier);this.updateSchedule(!0),n.error?this.primaryFallback(n):be&&be.identifier===U?this.advanceAfterAssetEnded(n,s,_):Re&&Re.identifier===U&&this.isInterstitial(this.bufferingItem)&&this.advanceAssetBuffering(this.bufferingItem,Re)}primaryFallback(t){const n=t.timelineStart,s=this.effectivePlayingItem;if(s){this.log(`Fallback to primary from event "${t.identifier}" start: ${n} pos: ${this.timelinePos} playing: ${Bu(s)} error: ${t.error}`);let _=this.timelinePos;_===-1&&(_=this.hls.startPosition);const E=this.updateItem(s,_);if(this.itemsMatch(s,E)&&this.clearInterstitial(t,null),t.appendInPlace&&(this.attachPrimary(n,null),this.flushFrontBuffer(n)),!this.schedule)return;const I=this.schedule.findItemIndexAtTime(_);this.setSchedulePosition(I)}else this.checkStart()}onAssetListLoaded(t,n){var s,_;const E=n.event,I=E.identifier,U=n.assetListResponse.ASSETS;if(!((s=this.schedule)!=null&&s.hasEvent(I)))return;const Q=E.timelineStart,G=E.duration;let ue=0;U.forEach((at,it)=>{const Qt=parseFloat(at.DURATION);this.createAsset(E,it,ue,Q+ue,Qt,at.URI),ue+=Qt}),E.duration=ue,this.log(`Loaded asset-list with duration: ${ue} (was: ${G}) ${E}`);const de=this.waitingItem,be=(de==null?void 0:de.event.identifier)===I;this.updateSchedule();const Re=(_=this.bufferingItem)==null?void 0:_.event;if(be){var Le;const at=this.schedule.findEventIndex(I),it=(Le=this.schedule.items)==null?void 0:Le[at];if(it){if(!this.playingItem&&this.timelinePos>it.end&&this.schedule.findItemIndexAtTime(this.timelinePos)!==at){E.error=new Error(`Interstitial no longer within playback range ${this.timelinePos} ${E}`),this.updateSchedule(!0),this.primaryFallback(E);return}this.setBufferingItem(it)}this.setSchedulePosition(at)}else if((Re==null?void 0:Re.identifier)===I){const at=E.assetList[0];if(at){const it=this.getAssetPlayer(at.identifier);if(Re.appendInPlace){const Qt=this.primaryMedia;it&&Qt&&this.bufferAssetPlayer(it,Qt)}else it&&it.loadSource()}}}onError(t,n){if(this.schedule)switch(n.details){case f.ASSET_LIST_PARSING_ERROR:case f.ASSET_LIST_LOAD_ERROR:case f.ASSET_LIST_LOAD_TIMEOUT:{const s=n.interstitial;s&&(this.updateSchedule(!0),this.primaryFallback(s));break}case f.BUFFER_STALLED_ERROR:{const s=this.endedItem||this.waitingItem||this.playingItem;if(this.isInterstitial(s)&&s.event.appendInPlace){this.handleInPlaceStall(s.event);return}this.log(`Primary player stall @${this.timelinePos} bufferedPos: ${this.bufferedPos}`),this.onTimeupdate(),this.checkBuffer(!0);break}}}}const Nu=500;class Il extends Ft{constructor(t,n,s){super(t,n,s,"subtitle-stream-controller",u.SUBTITLE),this.currentTrackId=-1,this.tracksBuffered=[],this.mainDetails=null,this.registerListeners()}onHandlerDestroying(){this.unregisterListeners(),super.onHandlerDestroying(),this.mainDetails=null}registerListeners(){super.registerListeners();const{hls:t}=this;t.on(o.LEVEL_LOADED,this.onLevelLoaded,this),t.on(o.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.on(o.SUBTITLE_TRACK_SWITCH,this.onSubtitleTrackSwitch,this),t.on(o.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.on(o.SUBTITLE_FRAG_PROCESSED,this.onSubtitleFragProcessed,this),t.on(o.BUFFER_FLUSHING,this.onBufferFlushing,this)}unregisterListeners(){super.unregisterListeners();const{hls:t}=this;t.off(o.LEVEL_LOADED,this.onLevelLoaded,this),t.off(o.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.off(o.SUBTITLE_TRACK_SWITCH,this.onSubtitleTrackSwitch,this),t.off(o.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.off(o.SUBTITLE_FRAG_PROCESSED,this.onSubtitleFragProcessed,this),t.off(o.BUFFER_FLUSHING,this.onBufferFlushing,this)}startLoad(t,n){this.stopLoad(),this.state=Pe.IDLE,this.setInterval(Nu),this.nextLoadPosition=this.lastCurrentTime=t+this.timelineOffset,this.startPosition=n?-1:t,this.tick()}onManifestLoading(){super.onManifestLoading(),this.mainDetails=null}onMediaDetaching(t,n){this.tracksBuffered=[],super.onMediaDetaching(t,n)}onLevelLoaded(t,n){this.mainDetails=n.details}onSubtitleFragProcessed(t,n){const{frag:s,success:_}=n;if(this.fragContextChanged(s)||(Se(s)&&(this.fragPrevious=s),this.state=Pe.IDLE),!_)return;const E=this.tracksBuffered[this.currentTrackId];if(!E)return;let I;const U=s.start;for(let G=0;G<E.length;G++)if(U>=E[G].start&&U<=E[G].end){I=E[G];break}const Q=s.start+s.duration;I?I.end=Q:(I={start:U,end:Q},E.push(I)),this.fragmentTracker.fragBuffered(s),this.fragBufferedComplete(s,null),this.media&&this.tick()}onBufferFlushing(t,n){const{startOffset:s,endOffset:_}=n;if(s===0&&_!==Number.POSITIVE_INFINITY){const E=_-1;if(E<=0)return;n.endOffsetSubtitles=Math.max(0,E),this.tracksBuffered.forEach(I=>{for(let U=0;U<I.length;){if(I[U].end<=E){I.shift();continue}else if(I[U].start<E)I[U].start=E;else break;U++}}),this.fragmentTracker.removeFragmentsInRange(s,E,u.SUBTITLE)}}onError(t,n){const s=n.frag;(s==null?void 0:s.type)===u.SUBTITLE&&(n.details===f.FRAG_GAP&&this.fragmentTracker.fragBuffered(s,!0),this.fragCurrent&&this.fragCurrent.abortRequests(),this.state!==Pe.STOPPED&&(this.state=Pe.IDLE))}onSubtitleTracksUpdated(t,{subtitleTracks:n}){if(this.levels&&Kc(this.levels,n)){this.levels=n.map(s=>new $i(s));return}this.tracksBuffered=[],this.levels=n.map(s=>{const _=new $i(s);return this.tracksBuffered[_.id]=[],_}),this.fragmentTracker.removeFragmentsInRange(0,Number.POSITIVE_INFINITY,u.SUBTITLE),this.fragPrevious=null,this.mediaBuffer=null}onSubtitleTrackSwitch(t,n){var s;if(this.currentTrackId=n.id,!((s=this.levels)!=null&&s.length)||this.currentTrackId===-1){this.clearInterval();return}const _=this.levels[this.currentTrackId];_!=null&&_.details?this.mediaBuffer=this.mediaBufferTimeRanges:this.mediaBuffer=null,_&&this.state!==Pe.STOPPED&&this.setInterval(Nu)}onSubtitleTrackLoaded(t,n){var s;const{currentTrackId:_,levels:E}=this,{details:I,id:U}=n;if(!E){this.warn(`Subtitle tracks were reset while loading level ${U}`);return}const Q=E[U];if(U>=E.length||!Q)return;this.log(`Subtitle track ${U} loaded [${I.startSN},${I.endSN}]${I.lastPartSn?`[part-${I.lastPartSn}-${I.lastPartIndex}]`:""},duration:${I.totalduration}`),this.mediaBuffer=this.mediaBufferTimeRanges;let G=0;if(I.live||(s=Q.details)!=null&&s.live){if(I.deltaUpdateFailed)return;const de=this.mainDetails;if(!de){this.startFragRequested=!1;return}const be=de.fragments[0];if(!Q.details)I.hasProgramDateTime&&de.hasProgramDateTime?(cs(I,de),G=I.fragmentStart):be&&(G=be.start,ra(I,G));else{var ue;G=this.alignPlaylists(I,Q.details,(ue=this.levelLastLoaded)==null?void 0:ue.details),G===0&&be&&(G=be.start,ra(I,G))}de&&!this.startFragRequested&&this.setStartPosition(de,G)}Q.details=I,this.levelLastLoaded=Q,U===_&&(this.hls.trigger(o.SUBTITLE_TRACK_UPDATED,{details:I,id:U,groupId:n.groupId}),this.tick(),I.live&&!this.fragCurrent&&this.media&&this.state===Pe.IDLE&&(hr(null,I.fragments,this.media.currentTime,0)||(this.warn("Subtitle playlist not aligned with playback"),Q.details=void 0)))}_handleFragmentLoadComplete(t){const{frag:n,payload:s}=t,_=n.decryptdata,E=this.hls;if(!this.fragContextChanged(n)&&s&&s.byteLength>0&&_!=null&&_.key&&_.iv&&Oo(_.method)){const I=performance.now();this.decrypter.decrypt(new Uint8Array(s),_.key.buffer,_.iv.buffer,nu(_.method)).catch(U=>{throw E.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.FRAG_DECRYPT_ERROR,fatal:!1,error:U,reason:U.message,frag:n}),U}).then(U=>{const Q=performance.now();E.trigger(o.FRAG_DECRYPTED,{frag:n,payload:U,stats:{tstart:I,tdecrypt:Q}})}).catch(U=>{this.warn(`${U.name}: ${U.message}`),this.state=Pe.IDLE})}}doTick(){if(!this.media){this.state=Pe.IDLE;return}if(this.state===Pe.IDLE){const{currentTrackId:t,levels:n}=this,s=n==null?void 0:n[t];if(!s||!n.length||!s.details||this.waitForLive(s))return;const{config:_}=this,E=this.getLoadPosition(),I=di.bufferedInfo(this.tracksBuffered[this.currentTrackId]||[],E,_.maxBufferHole),{end:U,len:Q}=I,G=s.details,ue=this.hls.maxBufferLength+G.levelTargetDuration;if(Q>ue)return;const de=G.fragments,be=de.length,Re=G.edge;let Le=null;const at=this.fragPrevious;if(U<Re){const ir=_.maxFragLookUpTolerance,ur=U>Re-ir?0:ir;Le=hr(at,de,Math.max(de[0].start,U),ur),!Le&&at&&at.start<de[0].start&&(Le=de[0])}else Le=de[be-1];if(Le=this.filterReplacedPrimary(Le,s.details),!Le)return;const it=Le.sn-G.startSN,Qt=de[it-1];if(Qt&&Qt.cc===Le.cc&&this.fragmentTracker.getState(Qt)===hn.NOT_LOADED&&(Le=Qt),this.fragmentTracker.getState(Le)===hn.NOT_LOADED){const ir=this.mapToInitFragWhenRequired(Le);ir&&this.loadFragment(ir,s,U)}}}loadFragment(t,n,s){Se(t)?super.loadFragment(t,n,s):this._loadInitSegment(t,n)}get mediaBufferTimeRanges(){return new tc(this.tracksBuffered[this.currentTrackId]||[])}}class tc{constructor(t){this.buffered=void 0;const n=(s,_,E)=>{if(_=_>>>0,_>E-1)throw new DOMException(`Failed to execute '${s}' on 'TimeRanges': The index provided (${_}) is greater than the maximum bound (${E})`);return t[_][s]};this.buffered={get length(){return t.length},end(s){return n("end",s,t.length)},start(s){return n("start",s,t.length)}}}}const jc={42:225,92:233,94:237,95:243,96:250,123:231,124:247,125:209,126:241,127:9608,128:174,129:176,130:189,131:191,132:8482,133:162,134:163,135:9834,136:224,137:32,138:232,139:226,140:234,141:238,142:244,143:251,144:193,145:201,146:211,147:218,148:220,149:252,150:8216,151:161,152:42,153:8217,154:9473,155:169,156:8480,157:8226,158:8220,159:8221,160:192,161:194,162:199,163:200,164:202,165:203,166:235,167:206,168:207,169:239,170:212,171:217,172:249,173:219,174:171,175:187,176:195,177:227,178:205,179:204,180:236,181:210,182:242,183:213,184:245,185:123,186:125,187:92,188:94,189:95,190:124,191:8764,192:196,193:228,194:214,195:246,196:223,197:165,198:164,199:9475,200:197,201:229,202:216,203:248,204:9487,205:9491,206:9495,207:9499},Wu=D=>String.fromCharCode(jc[D]||D),Cu=15,Iu=100,Mn={17:1,18:3,21:5,22:7,23:9,16:11,19:12,20:14},ti={17:2,18:4,21:6,22:8,23:10,19:13,20:15},Gi={25:1,26:3,29:5,30:7,31:9,24:11,27:12,28:14},Ma={25:2,26:4,29:6,30:8,31:10,27:13,28:15},sa=["white","green","blue","cyan","red","yellow","magenta","black","transparent"];class wa{constructor(){this.time=null,this.verboseLevel=0}log(t,n){if(this.verboseLevel>=t){const s=typeof n=="function"?n():n;W.log(`${this.time} [${t}] ${s}`)}}}const va=function(t){const n=[];for(let s=0;s<t.length;s++)n.push(t[s].toString(16));return n};class Bs{constructor(){this.foreground="white",this.underline=!1,this.italics=!1,this.background="black",this.flash=!1}reset(){this.foreground="white",this.underline=!1,this.italics=!1,this.background="black",this.flash=!1}setStyles(t){const n=["foreground","underline","italics","background","flash"];for(let s=0;s<n.length;s++){const _=n[s];t.hasOwnProperty(_)&&(this[_]=t[_])}}isDefault(){return this.foreground==="white"&&!this.underline&&!this.italics&&this.background==="black"&&!this.flash}equals(t){return this.foreground===t.foreground&&this.underline===t.underline&&this.italics===t.italics&&this.background===t.background&&this.flash===t.flash}copy(t){this.foreground=t.foreground,this.underline=t.underline,this.italics=t.italics,this.background=t.background,this.flash=t.flash}toString(){return"color="+this.foreground+", underline="+this.underline+", italics="+this.italics+", background="+this.background+", flash="+this.flash}}class oa{constructor(){this.uchar=" ",this.penState=new Bs}reset(){this.uchar=" ",this.penState.reset()}setChar(t,n){this.uchar=t,this.penState.copy(n)}setPenState(t){this.penState.copy(t)}equals(t){return this.uchar===t.uchar&&this.penState.equals(t.penState)}copy(t){this.uchar=t.uchar,this.penState.copy(t.penState)}isEmpty(){return this.uchar===" "&&this.penState.isDefault()}}class Us{constructor(t){this.chars=[],this.pos=0,this.currPenState=new Bs,this.cueStartTime=null,this.logger=void 0;for(let n=0;n<Iu;n++)this.chars.push(new oa);this.logger=t}equals(t){for(let n=0;n<Iu;n++)if(!this.chars[n].equals(t.chars[n]))return!1;return!0}copy(t){for(let n=0;n<Iu;n++)this.chars[n].copy(t.chars[n])}isEmpty(){let t=!0;for(let n=0;n<Iu;n++)if(!this.chars[n].isEmpty()){t=!1;break}return t}setCursor(t){this.pos!==t&&(this.pos=t),this.pos<0?(this.logger.log(3,"Negative cursor position "+this.pos),this.pos=0):this.pos>Iu&&(this.logger.log(3,"Too large cursor position "+this.pos),this.pos=Iu)}moveCursor(t){const n=this.pos+t;if(t>1)for(let s=this.pos+1;s<n+1;s++)this.chars[s].setPenState(this.currPenState);this.setCursor(n)}backSpace(){this.moveCursor(-1),this.chars[this.pos].setChar(" ",this.currPenState)}insertChar(t){t>=144&&this.backSpace();const n=Wu(t);if(this.pos>=Iu){this.logger.log(0,()=>"Cannot insert "+t.toString(16)+" ("+n+") at position "+this.pos+". Skipping it!");return}this.chars[this.pos].setChar(n,this.currPenState),this.moveCursor(1)}clearFromPos(t){let n;for(n=t;n<Iu;n++)this.chars[n].reset()}clear(){this.clearFromPos(0),this.pos=0,this.currPenState.reset()}clearToEndOfRow(){this.clearFromPos(this.pos)}getTextString(){const t=[];let n=!0;for(let s=0;s<Iu;s++){const _=this.chars[s].uchar;_!==" "&&(n=!1),t.push(_)}return n?"":t.join("")}setPenStyles(t){this.currPenState.setStyles(t),this.chars[this.pos].setPenState(this.currPenState)}}class qu{constructor(t){this.rows=[],this.currRow=Cu-1,this.nrRollUpRows=null,this.lastOutputScreen=null,this.logger=void 0;for(let n=0;n<Cu;n++)this.rows.push(new Us(t));this.logger=t}reset(){for(let t=0;t<Cu;t++)this.rows[t].clear();this.currRow=Cu-1}equals(t){let n=!0;for(let s=0;s<Cu;s++)if(!this.rows[s].equals(t.rows[s])){n=!1;break}return n}copy(t){for(let n=0;n<Cu;n++)this.rows[n].copy(t.rows[n])}isEmpty(){let t=!0;for(let n=0;n<Cu;n++)if(!this.rows[n].isEmpty()){t=!1;break}return t}backSpace(){this.rows[this.currRow].backSpace()}clearToEndOfRow(){this.rows[this.currRow].clearToEndOfRow()}insertChar(t){this.rows[this.currRow].insertChar(t)}setPen(t){this.rows[this.currRow].setPenStyles(t)}moveCursor(t){this.rows[this.currRow].moveCursor(t)}setCursor(t){this.logger.log(2,"setCursor: "+t),this.rows[this.currRow].setCursor(t)}setPAC(t){this.logger.log(2,()=>"pacData = "+Yi(t));let n=t.row-1;if(this.nrRollUpRows&&n<this.nrRollUpRows-1&&(n=this.nrRollUpRows-1),this.nrRollUpRows&&this.currRow!==n){for(let U=0;U<Cu;U++)this.rows[U].clear();const E=this.currRow+1-this.nrRollUpRows,I=this.lastOutputScreen;if(I){const U=I.rows[E].cueStartTime,Q=this.logger.time;if(U!==null&&Q!==null&&U<Q)for(let G=0;G<this.nrRollUpRows;G++)this.rows[n-this.nrRollUpRows+G+1].copy(I.rows[E+G])}}this.currRow=n;const s=this.rows[this.currRow];if(t.indent!==null){const E=t.indent,I=Math.max(E-1,0);s.setCursor(t.indent),t.color=s.chars[I].penState.foreground}const _={foreground:t.color,underline:t.underline,italics:t.italics,background:"black",flash:!1};this.setPen(_)}setBkgData(t){this.logger.log(2,()=>"bkgData = "+Yi(t)),this.backSpace(),this.setPen(t),this.insertChar(32)}setRollUpRows(t){this.nrRollUpRows=t}rollUp(){if(this.nrRollUpRows===null){this.logger.log(3,"roll_up but nrRollUpRows not set yet");return}this.logger.log(1,()=>this.getDisplayText());const t=this.currRow+1-this.nrRollUpRows,n=this.rows.splice(t,1)[0];n.clear(),this.rows.splice(this.currRow,0,n),this.logger.log(2,"Rolling up")}getDisplayText(t){t=t||!1;const n=[];let s="",_=-1;for(let E=0;E<Cu;E++){const I=this.rows[E].getTextString();I&&(_=E+1,t?n.push("Row "+_+": '"+I+"'"):n.push(I.trim()))}return n.length>0&&(t?s="["+n.join(" | ")+"]":s=n.join(`
`)),s}getTextAndFormat(){return this.rows}}class ul{constructor(t,n,s){this.chNr=void 0,this.outputFilter=void 0,this.mode=void 0,this.verbose=void 0,this.displayedMemory=void 0,this.nonDisplayedMemory=void 0,this.lastOutputScreen=void 0,this.currRollUpRow=void 0,this.writeScreen=void 0,this.cueStartTime=void 0,this.logger=void 0,this.chNr=t,this.outputFilter=n,this.mode=null,this.verbose=0,this.displayedMemory=new qu(s),this.nonDisplayedMemory=new qu(s),this.lastOutputScreen=new qu(s),this.currRollUpRow=this.displayedMemory.rows[Cu-1],this.writeScreen=this.displayedMemory,this.mode=null,this.cueStartTime=null,this.logger=s}reset(){this.mode=null,this.displayedMemory.reset(),this.nonDisplayedMemory.reset(),this.lastOutputScreen.reset(),this.outputFilter.reset(),this.currRollUpRow=this.displayedMemory.rows[Cu-1],this.writeScreen=this.displayedMemory,this.mode=null,this.cueStartTime=null}getHandler(){return this.outputFilter}setHandler(t){this.outputFilter=t}setPAC(t){this.writeScreen.setPAC(t)}setBkgData(t){this.writeScreen.setBkgData(t)}setMode(t){t!==this.mode&&(this.mode=t,this.logger.log(2,()=>"MODE="+t),this.mode==="MODE_POP-ON"?this.writeScreen=this.nonDisplayedMemory:(this.writeScreen=this.displayedMemory,this.writeScreen.reset()),this.mode!=="MODE_ROLL-UP"&&(this.displayedMemory.nrRollUpRows=null,this.nonDisplayedMemory.nrRollUpRows=null),this.mode=t)}insertChars(t){for(let s=0;s<t.length;s++)this.writeScreen.insertChar(t[s]);const n=this.writeScreen===this.displayedMemory?"DISP":"NON_DISP";this.logger.log(2,()=>n+": "+this.writeScreen.getDisplayText(!0)),(this.mode==="MODE_PAINT-ON"||this.mode==="MODE_ROLL-UP")&&(this.logger.log(1,()=>"DISPLAYED: "+this.displayedMemory.getDisplayText(!0)),this.outputDataUpdate())}ccRCL(){this.logger.log(2,"RCL - Resume Caption Loading"),this.setMode("MODE_POP-ON")}ccBS(){this.logger.log(2,"BS - BackSpace"),this.mode!=="MODE_TEXT"&&(this.writeScreen.backSpace(),this.writeScreen===this.displayedMemory&&this.outputDataUpdate())}ccAOF(){}ccAON(){}ccDER(){this.logger.log(2,"DER- Delete to End of Row"),this.writeScreen.clearToEndOfRow(),this.outputDataUpdate()}ccRU(t){this.logger.log(2,"RU("+t+") - Roll Up"),this.writeScreen=this.displayedMemory,this.setMode("MODE_ROLL-UP"),this.writeScreen.setRollUpRows(t)}ccFON(){this.logger.log(2,"FON - Flash On"),this.writeScreen.setPen({flash:!0})}ccRDC(){this.logger.log(2,"RDC - Resume Direct Captioning"),this.setMode("MODE_PAINT-ON")}ccTR(){this.logger.log(2,"TR"),this.setMode("MODE_TEXT")}ccRTD(){this.logger.log(2,"RTD"),this.setMode("MODE_TEXT")}ccEDM(){this.logger.log(2,"EDM - Erase Displayed Memory"),this.displayedMemory.reset(),this.outputDataUpdate(!0)}ccCR(){this.logger.log(2,"CR - Carriage Return"),this.writeScreen.rollUp(),this.outputDataUpdate(!0)}ccENM(){this.logger.log(2,"ENM - Erase Non-displayed Memory"),this.nonDisplayedMemory.reset()}ccEOC(){if(this.logger.log(2,"EOC - End Of Caption"),this.mode==="MODE_POP-ON"){const t=this.displayedMemory;this.displayedMemory=this.nonDisplayedMemory,this.nonDisplayedMemory=t,this.writeScreen=this.nonDisplayedMemory,this.logger.log(1,()=>"DISP: "+this.displayedMemory.getDisplayText())}this.outputDataUpdate(!0)}ccTO(t){this.logger.log(2,"TO("+t+") - Tab Offset"),this.writeScreen.moveCursor(t)}ccMIDROW(t){const n={flash:!1};if(n.underline=t%2===1,n.italics=t>=46,n.italics)n.foreground="white";else{const s=Math.floor(t/2)-16,_=["white","green","blue","cyan","red","yellow","magenta"];n.foreground=_[s]}this.logger.log(2,"MIDROW: "+Yi(n)),this.writeScreen.setPen(n)}outputDataUpdate(t=!1){const n=this.logger.time;n!==null&&this.outputFilter&&(this.cueStartTime===null&&!this.displayedMemory.isEmpty()?this.cueStartTime=n:this.displayedMemory.equals(this.lastOutputScreen)||(this.outputFilter.newCue(this.cueStartTime,n,this.lastOutputScreen),t&&this.outputFilter.dispatchCue&&this.outputFilter.dispatchCue(),this.cueStartTime=this.displayedMemory.isEmpty()?null:n),this.lastOutputScreen.copy(this.displayedMemory))}cueSplitAtTime(t){this.outputFilter&&(this.displayedMemory.isEmpty()||(this.outputFilter.newCue&&this.outputFilter.newCue(this.cueStartTime,t,this.displayedMemory),this.cueStartTime=t))}}class El{constructor(t,n,s){this.channels=void 0,this.currentChannel=0,this.cmdHistory=Kf(),this.logger=void 0;const _=this.logger=new wa;this.channels=[null,new ul(t,n,_),new ul(t+1,s,_)]}getHandler(t){return this.channels[t].getHandler()}setHandler(t,n){this.channels[t].setHandler(n)}addData(t,n){this.logger.time=t;for(let s=0;s<n.length;s+=2){const _=n[s]&127,E=n[s+1]&127;let I=!1,U=null;if(_===0&&E===0)continue;this.logger.log(3,()=>"["+va([n[s],n[s+1]])+"] -> ("+va([_,E])+")");const Q=this.cmdHistory;if(_>=16&&_<=31){if(jl(_,E,Q)){el(null,null,Q),this.logger.log(3,()=>"Repeated command ("+va([_,E])+") is dropped");continue}el(_,E,this.cmdHistory),I=this.parseCmd(_,E),I||(I=this.parseMidrow(_,E)),I||(I=this.parsePAC(_,E)),I||(I=this.parseBackgroundAttributes(_,E))}else el(null,null,Q);if(!I&&(U=this.parseChars(_,E),U)){const ue=this.currentChannel;ue&&ue>0?this.channels[ue].insertChars(U):this.logger.log(2,"No channel found yet. TEXT-MODE?")}!I&&!U&&this.logger.log(2,()=>"Couldn't parse cleaned data "+va([_,E])+" orig: "+va([n[s],n[s+1]]))}}parseCmd(t,n){const s=(t===20||t===28||t===21||t===29)&&n>=32&&n<=47,_=(t===23||t===31)&&n>=33&&n<=35;if(!(s||_))return!1;const E=t===20||t===21||t===23?1:2,I=this.channels[E];return t===20||t===21||t===28||t===29?n===32?I.ccRCL():n===33?I.ccBS():n===34?I.ccAOF():n===35?I.ccAON():n===36?I.ccDER():n===37?I.ccRU(2):n===38?I.ccRU(3):n===39?I.ccRU(4):n===40?I.ccFON():n===41?I.ccRDC():n===42?I.ccTR():n===43?I.ccRTD():n===44?I.ccEDM():n===45?I.ccCR():n===46?I.ccENM():n===47&&I.ccEOC():I.ccTO(n-32),this.currentChannel=E,!0}parseMidrow(t,n){let s=0;if((t===17||t===25)&&n>=32&&n<=47){if(t===17?s=1:s=2,s!==this.currentChannel)return this.logger.log(0,"Mismatch channel in midrow parsing"),!1;const _=this.channels[s];return _?(_.ccMIDROW(n),this.logger.log(3,()=>"MIDROW ("+va([t,n])+")"),!0):!1}return!1}parsePAC(t,n){let s;const _=(t>=17&&t<=23||t>=25&&t<=31)&&n>=64&&n<=127,E=(t===16||t===24)&&n>=64&&n<=95;if(!(_||E))return!1;const I=t<=23?1:2;n>=64&&n<=95?s=I===1?Mn[t]:Gi[t]:s=I===1?ti[t]:Ma[t];const U=this.channels[I];return U?(U.setPAC(this.interpretPAC(s,n)),this.currentChannel=I,!0):!1}interpretPAC(t,n){let s;const _={color:null,italics:!1,indent:null,underline:!1,row:t};return n>95?s=n-96:s=n-64,_.underline=(s&1)===1,s<=13?_.color=["white","green","blue","cyan","red","yellow","magenta","white"][Math.floor(s/2)]:s<=15?(_.italics=!0,_.color="white"):_.indent=Math.floor((s-16)/2)*4,_}parseChars(t,n){let s,_=null,E=null;if(t>=25?(s=2,E=t-8):(s=1,E=t),E>=17&&E<=19){let I;E===17?I=n+80:E===18?I=n+112:I=n+144,this.logger.log(2,()=>"Special char '"+Wu(I)+"' in channel "+s),_=[I]}else t>=32&&t<=127&&(_=n===0?[t]:[t,n]);return _&&this.logger.log(3,()=>"Char codes = "+va(_).join(",")),_}parseBackgroundAttributes(t,n){const s=(t===16||t===24)&&n>=32&&n<=47,_=(t===23||t===31)&&n>=45&&n<=47;if(!(s||_))return!1;let E;const I={};t===16||t===24?(E=Math.floor((n-32)/2),I.background=sa[E],n%2===1&&(I.background=I.background+"_semi")):n===45?I.background="transparent":(I.foreground="black",n===47&&(I.underline=!0));const U=t<=23?1:2;return this.channels[U].setBkgData(I),!0}reset(){for(let t=0;t<Object.keys(this.channels).length;t++){const n=this.channels[t];n&&n.reset()}el(null,null,this.cmdHistory)}cueSplitAtTime(t){for(let n=0;n<this.channels.length;n++){const s=this.channels[n];s&&s.cueSplitAtTime(t)}}}function el(D,t,n){n.a=D,n.b=t}function jl(D,t,n){return n.a===D&&n.b===t}function Kf(){return{a:null,b:null}}var Sf=function(){if(es!=null&&es.VTTCue)return self.VTTCue;const D=["","lr","rl"],t=["start","middle","end","left","right"];function n(U,Q){if(typeof Q!="string"||!Array.isArray(U))return!1;const G=Q.toLowerCase();return~U.indexOf(G)?G:!1}function s(U){return n(D,U)}function _(U){return n(t,U)}function E(U,...Q){let G=1;for(;G<arguments.length;G++){const ue=arguments[G];for(const de in ue)U[de]=ue[de]}return U}function I(U,Q,G){const ue=this,de={enumerable:!0};ue.hasBeenReset=!1;let be="",Re=!1,Le=U,at=Q,it=G,Qt=null,ir="",ur=!0,Ar="auto",Ur="start",mn=50,zr="middle",ln=50,on="middle";Object.defineProperty(ue,"id",E({},de,{get:function(){return be},set:function(Qr){be=""+Qr}})),Object.defineProperty(ue,"pauseOnExit",E({},de,{get:function(){return Re},set:function(Qr){Re=!!Qr}})),Object.defineProperty(ue,"startTime",E({},de,{get:function(){return Le},set:function(Qr){if(typeof Qr!="number")throw new TypeError("Start time must be set to a number.");Le=Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"endTime",E({},de,{get:function(){return at},set:function(Qr){if(typeof Qr!="number")throw new TypeError("End time must be set to a number.");at=Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"text",E({},de,{get:function(){return it},set:function(Qr){it=""+Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"region",E({},de,{get:function(){return Qt},set:function(Qr){Qt=Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"vertical",E({},de,{get:function(){return ir},set:function(Qr){const Dn=s(Qr);if(Dn===!1)throw new SyntaxError("An invalid or illegal string was specified.");ir=Dn,this.hasBeenReset=!0}})),Object.defineProperty(ue,"snapToLines",E({},de,{get:function(){return ur},set:function(Qr){ur=!!Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"line",E({},de,{get:function(){return Ar},set:function(Qr){if(typeof Qr!="number"&&Qr!=="auto")throw new SyntaxError("An invalid number or illegal string was specified.");Ar=Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"lineAlign",E({},de,{get:function(){return Ur},set:function(Qr){const Dn=_(Qr);if(!Dn)throw new SyntaxError("An invalid or illegal string was specified.");Ur=Dn,this.hasBeenReset=!0}})),Object.defineProperty(ue,"position",E({},de,{get:function(){return mn},set:function(Qr){if(Qr<0||Qr>100)throw new Error("Position must be between 0 and 100.");mn=Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"positionAlign",E({},de,{get:function(){return zr},set:function(Qr){const Dn=_(Qr);if(!Dn)throw new SyntaxError("An invalid or illegal string was specified.");zr=Dn,this.hasBeenReset=!0}})),Object.defineProperty(ue,"size",E({},de,{get:function(){return ln},set:function(Qr){if(Qr<0||Qr>100)throw new Error("Size must be between 0 and 100.");ln=Qr,this.hasBeenReset=!0}})),Object.defineProperty(ue,"align",E({},de,{get:function(){return on},set:function(Qr){const Dn=_(Qr);if(!Dn)throw new SyntaxError("An invalid or illegal string was specified.");on=Dn,this.hasBeenReset=!0}})),ue.displayState=void 0}return I.prototype.getCueAsHTML=function(){return self.WebVTT.convertCueToDOMTree(self,this.text)},I}();class rc{decode(t,n){if(!t)return"";if(typeof t!="string")throw new Error("Error - expected string data.");return decodeURIComponent(encodeURIComponent(t))}}function Lf(D){function t(s,_,E,I){return(s|0)*3600+(_|0)*60+(E|0)+parseFloat(I||0)}const n=D.match(/^(?:(\d+):)?(\d{2}):(\d{2})(\.\d+)?/);return n?parseFloat(n[2])>59?t(n[2],n[3],0,n[4]):t(n[1],n[2],n[3],n[4]):null}class af{constructor(){this.values=Object.create(null)}set(t,n){!this.get(t)&&n!==""&&(this.values[t]=n)}get(t,n,s){return s?this.has(t)?this.values[t]:n[s]:this.has(t)?this.values[t]:n}has(t){return t in this.values}alt(t,n,s){for(let _=0;_<s.length;++_)if(n===s[_]){this.set(t,n);break}}integer(t,n){/^-?\d+$/.test(n)&&this.set(t,parseInt(n,10))}percent(t,n){if(/^([\d]{1,3})(\.[\d]*)?%$/.test(n)){const s=parseFloat(n);if(s>=0&&s<=100)return this.set(t,s),!0}return!1}}function sf(D,t,n,s){const _=s?D.split(s):[D];for(const E in _){if(typeof _[E]!="string")continue;const I=_[E].split(n);if(I.length!==2)continue;const U=I[0],Q=I[1];t(U,Q)}}const of=new Sf(0,0,""),tl=of.align==="middle"?"middle":"center";function Vf(D,t,n){const s=D;function _(){const U=Lf(D);if(U===null)throw new Error("Malformed timestamp: "+s);return D=D.replace(/^[^\sa-zA-Z-]+/,""),U}function E(U,Q){const G=new af;sf(U,function(be,Re){let Le;switch(be){case"region":for(let at=n.length-1;at>=0;at--)if(n[at].id===Re){G.set(be,n[at].region);break}break;case"vertical":G.alt(be,Re,["rl","lr"]);break;case"line":Le=Re.split(","),G.integer(be,Le[0]),G.percent(be,Le[0])&&G.set("snapToLines",!1),G.alt(be,Le[0],["auto"]),Le.length===2&&G.alt("lineAlign",Le[1],["start",tl,"end"]);break;case"position":Le=Re.split(","),G.percent(be,Le[0]),Le.length===2&&G.alt("positionAlign",Le[1],["start",tl,"end","line-left","line-right","auto"]);break;case"size":G.percent(be,Re);break;case"align":G.alt(be,Re,["start",tl,"end","left","right"]);break}},/:/,/\s/),Q.region=G.get("region",null),Q.vertical=G.get("vertical","");let ue=G.get("line","auto");ue==="auto"&&of.line===-1&&(ue=-1),Q.line=ue,Q.lineAlign=G.get("lineAlign","start"),Q.snapToLines=G.get("snapToLines",!0),Q.size=G.get("size",100),Q.align=G.get("align",tl);let de=G.get("position","auto");de==="auto"&&of.position===50&&(de=Q.align==="start"||Q.align==="left"?0:Q.align==="end"||Q.align==="right"?100:50),Q.position=de}function I(){D=D.replace(/^\s+/,"")}if(I(),t.startTime=_(),I(),D.slice(0,3)!=="-->")throw new Error("Malformed time stamp (time stamps must be separated by '-->'): "+s);D=D.slice(3),I(),t.endTime=_(),I(),E(D,t)}function ll(D){return D.replace(/<br(?: \/)?>/gi,`
`)}class uf{constructor(){this.state="INITIAL",this.buffer="",this.decoder=new rc,this.regionList=[],this.cue=null,this.oncue=void 0,this.onparsingerror=void 0,this.onflush=void 0}parse(t){const n=this;t&&(n.buffer+=n.decoder.decode(t,{stream:!0}));function s(){let E=n.buffer,I=0;for(E=ll(E);I<E.length&&E[I]!=="\r"&&E[I]!==`
`;)++I;const U=E.slice(0,I);return E[I]==="\r"&&++I,E[I]===`
`&&++I,n.buffer=E.slice(I),U}function _(E){sf(E,function(I,U){},/:/)}try{let E="";if(n.state==="INITIAL"){if(!/\r\n|\n/.test(n.buffer))return this;E=s();const U=E.match(/^()?WEBVTT([ \t].*)?$/);if(!(U!=null&&U[0]))throw new Error("Malformed WebVTT signature.");n.state="HEADER"}let I=!1;for(;n.buffer;){if(!/\r\n|\n/.test(n.buffer))return this;switch(I?I=!1:E=s(),n.state){case"HEADER":/:/.test(E)?_(E):E||(n.state="ID");continue;case"NOTE":E||(n.state="ID");continue;case"ID":if(/^NOTE($|[ \t])/.test(E)){n.state="NOTE";break}if(!E)continue;if(n.cue=new Sf(0,0,""),n.state="CUE",E.indexOf("-->")===-1){n.cue.id=E;continue}case"CUE":if(!n.cue){n.state="BADCUE";continue}try{Vf(E,n.cue,n.regionList)}catch(U){n.cue=null,n.state="BADCUE";continue}n.state="CUETEXT";continue;case"CUETEXT":{const U=E.indexOf("-->")!==-1;if(!E||U&&(I=!0)){n.oncue&&n.cue&&n.oncue(n.cue),n.cue=null,n.state="ID";continue}if(n.cue===null)continue;n.cue.text&&(n.cue.text+=`
`),n.cue.text+=E}continue;case"BADCUE":E||(n.state="ID")}}}catch(E){n.state==="CUETEXT"&&n.cue&&n.oncue&&n.oncue(n.cue),n.cue=null,n.state=n.state==="INITIAL"?"BADWEBVTT":"BADCUE"}return this}flush(){const t=this;try{if((t.cue||t.state==="HEADER")&&(t.buffer+=`
`,t.parse()),t.state==="INITIAL"||t.state==="BADWEBVTT")throw new Error("Malformed WebVTT signature.")}catch(n){t.onparsingerror&&t.onparsingerror(n)}return t.onflush&&t.onflush(),this}}const Mf=/\r\n|\n\r|\n|\r/g,ou=function(t,n,s=0){return t.slice(s,s+n.length)===n},Af=function(t){let n=parseInt(t.slice(-3));const s=parseInt(t.slice(-6,-4)),_=parseInt(t.slice(-9,-7)),E=t.length>9?parseInt(t.substring(0,t.indexOf(":"))):0;if(!r(n)||!r(s)||!r(_)||!r(E))throw Error(`Malformed X-TIMESTAMP-MAP: Local:${t}`);return n+=1e3*s,n+=60*1e3*_,n+=60*60*1e3*E,n};function lf(D,t,n){return Ju(D.toString())+Ju(t.toString())+Ju(n)}const Pl=function(t,n,s){let _=t[n],E=t[_.prevCC];if(!E||!E.new&&_.new){t.ccOffset=t.presentationOffset=_.start,_.new=!1;return}for(;(I=E)!=null&&I.new;){var I;t.ccOffset+=_.start-E.start,_.new=!1,_=E,E=t[_.prevCC]}t.presentationOffset=s};function Uc(D,t,n,s,_,E,I){const U=new uf,Q=q(new Uint8Array(D)).trim().replace(Mf,`
`).split(`
`),G=[],ue=t?qo(t.baseTime,t.timescale):0;let de="00:00.000",be=0,Re=0,Le,at=!0;U.oncue=function(it){const Qt=n[s];let ir=n.ccOffset;const ur=(be-ue)/9e4;if(Qt!=null&&Qt.new&&(Re!==void 0?ir=n.ccOffset=Qt.start:Pl(n,s,ur)),ur){if(!t){Le=new Error("Missing initPTS for VTT MPEGTS");return}ir=ur-n.presentationOffset}const Ar=it.endTime-it.startTime,Ur=eu((it.startTime+ir-Re)*9e4,_*9e4)/9e4;it.startTime=Math.max(Ur,0),it.endTime=Math.max(Ur+Ar,0);const mn=it.text.trim();it.text=decodeURIComponent(encodeURIComponent(mn)),it.id||(it.id=lf(it.startTime,it.endTime,mn)),it.endTime>0&&G.push(it)},U.onparsingerror=function(it){Le=it},U.onflush=function(){if(Le){I(Le);return}E(G)},Q.forEach(it=>{if(at)if(ou(it,"X-TIMESTAMP-MAP=")){at=!1,it.slice(16).split(",").forEach(Qt=>{ou(Qt,"LOCAL:")?de=Qt.slice(6):ou(Qt,"MPEGTS:")&&(be=parseInt(Qt.slice(7)))});try{Re=Af(de)/1e3}catch(Qt){Le=Qt}return}else it===""&&(at=!1);U.parse(it+`
`)}),U.flush()}const uu="stpp.ttml.im1t",Tf=/^(\d{2,}):(\d{2}):(\d{2}):(\d{2})\.?(\d+)?$/,Cf=/^(\d*(?:\.\d*)?)(h|m|s|ms|f|t)$/,cf={left:"start",center:"center",right:"end",start:"start",end:"end"};function $c(D,t,n,s){const _=ft(new Uint8Array(D),["mdat"]);if(_.length===0){s(new Error("Could not parse IMSC1 mdat"));return}const E=_.map(U=>q(U)),I=Su(t.baseTime,1,t.timescale);try{E.forEach(U=>n(Ff(U,I)))}catch(U){s(U)}}function Ff(D,t){const _=new DOMParser().parseFromString(D,"text/xml").getElementsByTagName("tt")[0];if(!_)throw new Error("Invalid ttml");const E={frameRate:30,subFrameRate:1,frameRateMultiplier:0,tickRate:0},I=Object.keys(E).reduce((de,be)=>(de[be]=_.getAttribute(`ttp:${be}`)||E[be],de),{}),U=_.getAttribute("xml:space")!=="preserve",Q=zf(zc(_,"styling","style")),G=zf(zc(_,"layout","region")),ue=zc(_,"body","[begin]");return[].map.call(ue,de=>{const be=Yf(de,U);if(!be||!de.hasAttribute("begin"))return null;const Re=ff(de.getAttribute("begin"),I),Le=ff(de.getAttribute("dur"),I);let at=ff(de.getAttribute("end"),I);if(Re===null)throw Zf(de);if(at===null){if(Le===null)throw Zf(de);at=Re+Le}const it=new Sf(Re-t,at-t,be);it.id=lf(it.startTime,it.endTime,it.text);const Qt=G[de.getAttribute("region")],ir=Q[de.getAttribute("style")],ur=Bf(Qt,ir,Q),{textAlign:Ar}=ur;if(Ar){const Ur=cf[Ar];Ur&&(it.lineAlign=Ur),it.align=Ar}return y(it,ur),it}).filter(de=>de!==null)}function zc(D,t,n){const s=D.getElementsByTagName(t)[0];return s?[].slice.call(s.querySelectorAll(n)):[]}function zf(D){return D.reduce((t,n)=>{const s=n.getAttribute("xml:id");return s&&(t[s]=n),t},{})}function Yf(D,t){return[].slice.call(D.childNodes).reduce((n,s,_)=>{var E;return s.nodeName==="br"&&_?n+`
`:(E=s.childNodes)!=null&&E.length?Yf(s,t):t?n+s.textContent.trim().replace(/\s+/g," "):n+s.textContent},"")}function Bf(D,t,n){const s="http://www.w3.org/ns/ttml#styling";let _=null;const E=["displayAlign","textAlign","color","backgroundColor","fontSize","fontFamily"],I=D!=null&&D.hasAttribute("style")?D.getAttribute("style"):null;return I&&n.hasOwnProperty(I)&&(_=n[I]),E.reduce((U,Q)=>{const G=Qf(t,s,Q)||Qf(D,s,Q)||Qf(_,s,Q);return G&&(U[Q]=G),U},{})}function Qf(D,t,n){return D&&D.hasAttributeNS(t,n)?D.getAttributeNS(t,n):null}function Zf(D){return new Error(`Could not parse ttml timestamp ${D}`)}function ff(D,t){if(!D)return null;let n=Lf(D);return n===null&&(Tf.test(D)?n=id(D,t):Cf.test(D)&&(n=Wf(D,t))),n}function id(D,t){const n=Tf.exec(D),s=(n[4]|0)+(n[5]|0)/t.subFrameRate;return(n[1]|0)*3600+(n[2]|0)*60+(n[3]|0)+s/t.frameRate}function Wf(D,t){const n=Cf.exec(D),s=Number(n[1]);switch(n[2]){case"h":return s*3600;case"m":return s*60;case"ms":return s*1e3;case"f":return s/t.frameRate;case"t":return s/t.tickRate}return s}class Nf{constructor(t,n){this.timelineController=void 0,this.cueRanges=[],this.trackName=void 0,this.startTime=null,this.endTime=null,this.screen=null,this.timelineController=t,this.trackName=n}dispatchCue(){this.startTime!==null&&(this.timelineController.addCues(this.trackName,this.startTime,this.endTime,this.screen,this.cueRanges),this.startTime=null)}newCue(t,n,s){(this.startTime===null||this.startTime>t)&&(this.startTime=t),this.endTime=n,this.screen=s,this.timelineController.createCaptionsTrack(this.trackName)}reset(){this.cueRanges=[],this.startTime=null}}class ad{constructor(t){this.hls=void 0,this.media=null,this.config=void 0,this.enabled=!0,this.Cues=void 0,this.textTracks=[],this.tracks=[],this.initPTS=[],this.unparsedVttFrags=[],this.captionsTracks={},this.nonNativeCaptionsTracks={},this.cea608Parser1=void 0,this.cea608Parser2=void 0,this.lastCc=-1,this.lastSn=-1,this.lastPartIndex=-1,this.prevCC=-1,this.vttCCs=g(),this.captionsProperties=void 0,this.hls=t,this.config=t.config,this.Cues=t.config.cueHandler,this.captionsProperties={textTrack1:{label:this.config.captionsTextTrack1Label,languageCode:this.config.captionsTextTrack1LanguageCode},textTrack2:{label:this.config.captionsTextTrack2Label,languageCode:this.config.captionsTextTrack2LanguageCode},textTrack3:{label:this.config.captionsTextTrack3Label,languageCode:this.config.captionsTextTrack3LanguageCode},textTrack4:{label:this.config.captionsTextTrack4Label,languageCode:this.config.captionsTextTrack4LanguageCode}},t.on(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(o.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.on(o.FRAG_LOADING,this.onFragLoading,this),t.on(o.FRAG_LOADED,this.onFragLoaded,this),t.on(o.FRAG_PARSING_USERDATA,this.onFragParsingUserdata,this),t.on(o.FRAG_DECRYPTED,this.onFragDecrypted,this),t.on(o.INIT_PTS_FOUND,this.onInitPtsFound,this),t.on(o.SUBTITLE_TRACKS_CLEARED,this.onSubtitleTracksCleared,this),t.on(o.BUFFER_FLUSHING,this.onBufferFlushing,this)}destroy(){const{hls:t}=this;t.off(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(o.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.off(o.FRAG_LOADING,this.onFragLoading,this),t.off(o.FRAG_LOADED,this.onFragLoaded,this),t.off(o.FRAG_PARSING_USERDATA,this.onFragParsingUserdata,this),t.off(o.FRAG_DECRYPTED,this.onFragDecrypted,this),t.off(o.INIT_PTS_FOUND,this.onInitPtsFound,this),t.off(o.SUBTITLE_TRACKS_CLEARED,this.onSubtitleTracksCleared,this),t.off(o.BUFFER_FLUSHING,this.onBufferFlushing,this),this.hls=this.config=this.media=null,this.cea608Parser1=this.cea608Parser2=void 0}initCea608Parsers(){const t=new Nf(this,"textTrack1"),n=new Nf(this,"textTrack2"),s=new Nf(this,"textTrack3"),_=new Nf(this,"textTrack4");this.cea608Parser1=new El(1,t,n),this.cea608Parser2=new El(3,s,_)}addCues(t,n,s,_,E){let I=!1;for(let U=E.length;U--;){const Q=E[U],G=Hf(Q[0],Q[1],n,s);if(G>=0&&(Q[0]=Math.min(Q[0],n),Q[1]=Math.max(Q[1],s),I=!0,G/(s-n)>.5))return}if(I||E.push([n,s]),this.config.renderTextTracksNatively){const U=this.captionsTracks[t];this.Cues.newCue(U,n,s,_)}else{const U=this.Cues.newCue(null,n,s,_);this.hls.trigger(o.CUES_PARSED,{type:"captions",cues:U,track:t})}}onInitPtsFound(t,{frag:n,id:s,initPTS:_,timescale:E,trackId:I}){const{unparsedVttFrags:U}=this;s===u.MAIN&&(this.initPTS[n.cc]={baseTime:_,timescale:E,trackId:I}),U.length&&(this.unparsedVttFrags=[],U.forEach(Q=>{this.initPTS[Q.frag.cc]?this.onFragLoaded(o.FRAG_LOADED,Q):this.hls.trigger(o.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:Q.frag,error:new Error("Subtitle discontinuity domain does not match main")})}))}getExistingTrack(t,n){const{media:s}=this;if(s)for(let _=0;_<s.textTracks.length;_++){const E=s.textTracks[_];if(qf(E,{name:t,lang:n,characteristics:"transcribes-spoken-dialog,describes-music-and-sound"}))return E}return null}createCaptionsTrack(t){this.config.renderTextTracksNatively?this.createNativeTrack(t):this.createNonNativeTrack(t)}createNativeTrack(t){if(this.captionsTracks[t])return;const{captionsProperties:n,captionsTracks:s,media:_}=this,{label:E,languageCode:I}=n[t],U=this.getExistingTrack(E,I);if(U)s[t]=U,is(s[t]),Ga(s[t],_);else{const Q=this.createTextTrack("captions",E,I);Q&&(Q[t]=!0,s[t]=Q)}}createNonNativeTrack(t){if(this.nonNativeCaptionsTracks[t])return;const n=this.captionsProperties[t];if(!n)return;const s=n.label,_={_id:t,label:s,kind:"captions",default:n.media?!!n.media.default:!1,closedCaptions:n.media};this.nonNativeCaptionsTracks[t]=_,this.hls.trigger(o.NON_NATIVE_TEXT_TRACKS_FOUND,{tracks:[_]})}createTextTrack(t,n,s){const _=this.media;if(_)return _.addTextTrack(t,n,s)}onMediaAttaching(t,n){this.media=n.media,n.mediaSource||this._cleanTracks()}onMediaDetaching(t,n){const s=!!n.transferMedia;if(this.media=null,s)return;const{captionsTracks:_}=this;Object.keys(_).forEach(E=>{is(_[E]),delete _[E]}),this.nonNativeCaptionsTracks={}}onManifestLoading(){this.lastCc=-1,this.lastSn=-1,this.lastPartIndex=-1,this.prevCC=-1,this.vttCCs=g(),this._cleanTracks(),this.tracks=[],this.captionsTracks={},this.nonNativeCaptionsTracks={},this.textTracks=[],this.unparsedVttFrags=[],this.initPTS=[],this.cea608Parser1&&this.cea608Parser2&&(this.cea608Parser1.reset(),this.cea608Parser2.reset())}_cleanTracks(){const{media:t}=this;if(!t)return;const n=t.textTracks;if(n)for(let s=0;s<n.length;s++)is(n[s])}onSubtitleTracksUpdated(t,n){const s=n.subtitleTracks||[],_=s.some(E=>E.textCodec===uu);if(this.config.enableWebVTT||_&&this.config.enableIMSC1){if(Kc(this.tracks,s)){this.tracks=s;return}if(this.textTracks=[],this.tracks=s,this.config.renderTextTracksNatively){const I=this.media,U=I?ql(I.textTracks):null;if(this.tracks.forEach((Q,G)=>{let ue;if(U){let de=null;for(let be=0;be<U.length;be++)if(U[be]&&qf(U[be],Q)){de=U[be],U[be]=null;break}de&&(ue=de)}if(ue)is(ue);else{const de=If(Q);ue=this.createTextTrack(de,Q.name,Q.lang),ue&&(ue.mode="disabled")}ue&&this.textTracks.push(ue)}),U!=null&&U.length){const Q=U.filter(G=>G!==null).map(G=>G.label);Q.length&&this.hls.logger.warn(`Media element contains unused subtitle tracks: ${Q.join(", ")}. Replace media element for each source to clear TextTracks and captions menu.`)}}else if(this.tracks.length){const I=this.tracks.map(U=>({label:U.name,kind:U.type.toLowerCase(),default:U.default,subtitleTrack:U}));this.hls.trigger(o.NON_NATIVE_TEXT_TRACKS_FOUND,{tracks:I})}}}onManifestLoaded(t,n){this.config.enableCEA708Captions&&n.captions&&n.captions.forEach(s=>{const _=/(?:CC|SERVICE)([1-4])/.exec(s.instreamId);if(!_)return;const E=`textTrack${_[1]}`,I=this.captionsProperties[E];I&&(I.label=s.name,s.lang&&(I.languageCode=s.lang),I.media=s)})}closedCaptionsForLevel(t){const n=this.hls.levels[t.level];return n==null?void 0:n.attrs["CLOSED-CAPTIONS"]}onFragLoading(t,n){if(this.enabled&&n.frag.type===u.MAIN){var s,_;const{cea608Parser1:E,cea608Parser2:I,lastSn:U}=this,{cc:Q,sn:G}=n.frag,ue=(s=(_=n.part)==null?void 0:_.index)!=null?s:-1;E&&I&&(G!==U+1||G===U&&ue!==this.lastPartIndex+1||Q!==this.lastCc)&&(E.reset(),I.reset()),this.lastCc=Q,this.lastSn=G,this.lastPartIndex=ue}}onFragLoaded(t,n){const{frag:s,payload:_}=n;if(s.type===u.SUBTITLE)if(_.byteLength){const E=s.decryptdata,I="stats"in n;if(E==null||!E.encrypted||I){const U=this.tracks[s.level],Q=this.vttCCs;Q[s.cc]||(Q[s.cc]={start:s.start,prevCC:this.prevCC,new:!0},this.prevCC=s.cc),U&&U.textCodec===uu?this._parseIMSC1(s,_):this._parseVTTs(n)}}else this.hls.trigger(o.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:s,error:new Error("Empty subtitle payload")})}_parseIMSC1(t,n){const s=this.hls;$c(n,this.initPTS[t.cc],_=>{this._appendCues(_,t.level),s.trigger(o.SUBTITLE_FRAG_PROCESSED,{success:!0,frag:t})},_=>{s.logger.log(`Failed to parse IMSC1: ${_}`),s.trigger(o.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:t,error:_})})}_parseVTTs(t){var n;const{frag:s,payload:_}=t,{initPTS:E,unparsedVttFrags:I}=this,U=E.length-1;if(!E[s.cc]&&U===-1){I.push(t);return}const Q=this.hls,G=(n=s.initSegment)!=null&&n.data?Yt(s.initSegment.data,new Uint8Array(_)).buffer:_;Uc(G,this.initPTS[s.cc],this.vttCCs,s.cc,s.start,ue=>{this._appendCues(ue,s.level),Q.trigger(o.SUBTITLE_FRAG_PROCESSED,{success:!0,frag:s})},ue=>{const de=ue.message==="Missing initPTS for VTT MPEGTS";de?I.push(t):this._fallbackToIMSC1(s,_),Q.logger.log(`Failed to parse VTT cue: ${ue}`),!(de&&U>s.cc)&&Q.trigger(o.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:s,error:ue})})}_fallbackToIMSC1(t,n){const s=this.tracks[t.level];s.textCodec||$c(n,this.initPTS[t.cc],()=>{s.textCodec=uu,this._parseIMSC1(t,n)},()=>{s.textCodec="wvtt"})}_appendCues(t,n){const s=this.hls;if(this.config.renderTextTracksNatively){const _=this.textTracks[n];if(!_||_.mode==="disabled")return;t.forEach(E=>Yo(_,E))}else{const _=this.tracks[n];if(!_)return;const E=_.default?"default":"subtitles"+n;s.trigger(o.CUES_PARSED,{type:"subtitles",cues:t,track:E})}}onFragDecrypted(t,n){const{frag:s}=n;s.type===u.SUBTITLE&&this.onFragLoaded(o.FRAG_LOADED,n)}onSubtitleTracksCleared(){this.tracks=[],this.captionsTracks={}}onFragParsingUserdata(t,n){if(!this.enabled||!this.config.enableCEA708Captions)return;const{frag:s,samples:_}=n;if(!(s.type===u.MAIN&&this.closedCaptionsForLevel(s)==="NONE"))for(let E=0;E<_.length;E++){const I=_[E].bytes;if(I){this.cea608Parser1||this.initCea608Parsers();const U=this.extractCea608Data(I);this.cea608Parser1.addData(_[E].pts,U[0]),this.cea608Parser2.addData(_[E].pts,U[1])}}}onBufferFlushing(t,{startOffset:n,endOffset:s,endOffsetSubtitles:_,type:E}){const{media:I}=this;if(!(!I||I.currentTime<s)){if(!E||E==="video"){const{captionsTracks:U}=this;Object.keys(U).forEach(Q=>Io(U[Q],n,s))}if(this.config.renderTextTracksNatively&&n===0&&_!==void 0){const{textTracks:U}=this;Object.keys(U).forEach(Q=>Io(U[Q],n,_))}}}extractCea608Data(t){const n=[[],[]],s=t[0]&31;let _=2;for(let E=0;E<s;E++){const I=t[_++],U=127&t[_++],Q=127&t[_++];if(U===0&&Q===0)continue;if((4&I)!==0){const ue=3&I;(ue===0||ue===1)&&(n[ue].push(U),n[ue].push(Q))}}return n}}function If(D){return D.characteristics&&/transcribes-spoken-dialog/gi.test(D.characteristics)&&/describes-music-and-sound/gi.test(D.characteristics)?"captions":"subtitles"}function qf(D,t){return!!D&&D.kind===If(t)&&lc(t,D)}function Hf(D,t,n,s){return Math.min(t,s)-Math.max(D,n)}function g(){return{ccOffset:0,presentationOffset:0,0:{start:0,prevCC:-1,new:!0}}}const T=/\s/,$={newCue(D,t,n,s){const _=[];let E,I,U,Q,G;const ue=self.VTTCue||self.TextTrackCue;for(let be=0;be<s.rows.length;be++)if(E=s.rows[be],U=!0,Q=0,G="",!E.isEmpty()){var de;for(let at=0;at<E.chars.length;at++)T.test(E.chars[at].uchar)&&U?Q++:(G+=E.chars[at].uchar,U=!1);E.cueStartTime=t,t===n&&(n+=1e-4),Q>=16?Q--:Q++;const Re=ll(G.trim()),Le=lf(t,n,Re);D!=null&&(de=D.cues)!=null&&de.getCueById(Le)||(I=new ue(t,n,Re),I.id=Le,I.line=be+1,I.align="left",I.position=10+Math.min(80,Math.floor(Q*8/32)*10),_.push(I))}return D&&_.length&&(_.sort((be,Re)=>be.line==="auto"||Re.line==="auto"?0:be.line>8&&Re.line>8?Re.line-be.line:be.line-Re.line),_.forEach(be=>Yo(D,be))),_}};function ve(){if(self.fetch&&self.AbortController&&self.ReadableStream&&self.Request)try{return new self.ReadableStream({}),!0}catch(D){}return!1}const De=/(\d+)-(\d+)\/(\d+)/;class rt{constructor(t){this.fetchSetup=void 0,this.requestTimeout=void 0,this.request=null,this.response=null,this.controller=void 0,this.context=null,this.config=null,this.callbacks=null,this.stats=void 0,this.loader=null,this.fetchSetup=t.fetchSetup||vn,this.controller=new self.AbortController,this.stats=new j}destroy(){this.loader=this.callbacks=this.context=this.config=this.request=null,this.abortInternal(),this.response=null,this.fetchSetup=this.controller=this.stats=null}abortInternal(){this.controller&&!this.stats.loading.end&&(this.stats.aborted=!0,this.controller.abort())}abort(){var t;this.abortInternal(),(t=this.callbacks)!=null&&t.onAbort&&this.callbacks.onAbort(this.stats,this.context,this.response)}load(t,n,s){const _=this.stats;if(_.loading.start)throw new Error("Loader can only be used once.");_.loading.start=self.performance.now();const E=Ut(t,this.controller.signal),I=t.responseType==="arraybuffer",U=I?"byteLength":"length",{maxTimeToFirstByteMs:Q,maxLoadTimeMs:G}=n.loadPolicy;this.context=t,this.config=n,this.callbacks=s,this.request=this.fetchSetup(t,E),self.clearTimeout(this.requestTimeout),n.timeout=Q&&r(Q)?Q:G,this.requestTimeout=self.setTimeout(()=>{this.callbacks&&(this.abortInternal(),this.callbacks.onTimeout(_,t,this.response))},n.timeout),(ho(this.request)?this.request.then(self.fetch):self.fetch(this.request)).then(de=>{var be;this.response=this.loader=de;const Re=Math.max(self.performance.now(),_.loading.start);if(self.clearTimeout(this.requestTimeout),n.timeout=G,this.requestTimeout=self.setTimeout(()=>{this.callbacks&&(this.abortInternal(),this.callbacks.onTimeout(_,t,this.response))},G-(Re-_.loading.start)),!de.ok){const{status:at,statusText:it}=de;throw new Pi(it||"fetch, bad network response",at,de)}_.loading.first=Re,_.total=Dr(de.headers)||_.total;const Le=(be=this.callbacks)==null?void 0:be.onProgress;return Le&&r(n.highWaterMark)?this.loadProgressively(de,_,t,n.highWaterMark,Le):I?de.arrayBuffer():t.responseType==="json"?de.json():de.text()}).then(de=>{var be,Re;const Le=this.response;if(!Le)throw new Error("loader destroyed");self.clearTimeout(this.requestTimeout),_.loading.end=Math.max(self.performance.now(),_.loading.first);const at=de[U];at&&(_.loaded=_.total=at);const it={url:Le.url,data:de,code:Le.status},Qt=(be=this.callbacks)==null?void 0:be.onProgress;Qt&&!r(n.highWaterMark)&&Qt(_,t,de,Le),(Re=this.callbacks)==null||Re.onSuccess(it,_,t,Le)}).catch(de=>{var be;if(self.clearTimeout(this.requestTimeout),_.aborted)return;const Re=de&&de.code||0,Le=de?de.message:null;(be=this.callbacks)==null||be.onError({code:Re,text:Le},t,de?de.details:null,_)})}getCacheAge(){let t=null;if(this.response){const n=this.response.headers.get("age");t=n?parseFloat(n):null}return t}getResponseHeader(t){return this.response?this.response.headers.get(t):null}loadProgressively(t,n,s,_=0,E){const I=new Sr,U=t.body.getReader(),Q=()=>U.read().then(G=>{if(G.done)return I.dataLength&&E(n,s,I.flush().buffer,t),Promise.resolve(new ArrayBuffer(0));const ue=G.value,de=ue.length;return n.loaded+=de,de<_||I.dataLength?(I.push(ue),I.dataLength>=_&&E(n,s,I.flush().buffer,t)):E(n,s,ue.buffer,t),Q()}).catch(()=>Promise.reject());return Q()}}function Ut(D,t){const n={method:"GET",mode:"cors",credentials:"same-origin",signal:t,headers:new self.Headers(y({},D.headers))};return D.rangeEnd&&n.headers.set("Range","bytes="+D.rangeStart+"-"+String(D.rangeEnd-1)),n}function fr(D){const t=De.exec(D);if(t)return parseInt(t[2])-parseInt(t[1])+1}function Dr(D){const t=D.get("Content-Range");if(t){const s=fr(t);if(r(s))return s}const n=D.get("Content-Length");if(n)return parseInt(n)}function vn(D,t){return new self.Request(D.url,t)}class Pi extends Error{constructor(t,n,s){super(t),this.code=void 0,this.details=void 0,this.code=n,this.details=s}}const Ua=/^age:\s*[\d.]+\s*$/im;class Kn{constructor(t){this.xhrSetup=void 0,this.requestTimeout=void 0,this.retryTimeout=void 0,this.retryDelay=void 0,this.config=null,this.callbacks=null,this.context=null,this.loader=null,this.stats=void 0,this.xhrSetup=t&&t.xhrSetup||null,this.stats=new j,this.retryDelay=0}destroy(){this.callbacks=null,this.abortInternal(),this.loader=null,this.config=null,this.context=null,this.xhrSetup=null}abortInternal(){const t=this.loader;self.clearTimeout(this.requestTimeout),self.clearTimeout(this.retryTimeout),t&&(t.onreadystatechange=null,t.onprogress=null,t.readyState!==4&&(this.stats.aborted=!0,t.abort()))}abort(){var t;this.abortInternal(),(t=this.callbacks)!=null&&t.onAbort&&this.callbacks.onAbort(this.stats,this.context,this.loader)}load(t,n,s){if(this.stats.loading.start)throw new Error("Loader can only be used once.");this.stats.loading.start=self.performance.now(),this.context=t,this.config=n,this.callbacks=s,this.loadInternal()}loadInternal(){const{config:t,context:n}=this;if(!t||!n)return;const s=this.loader=new self.XMLHttpRequest,_=this.stats;_.loading.first=0,_.loaded=0,_.aborted=!1;const E=this.xhrSetup;E?Promise.resolve().then(()=>{if(!(this.loader!==s||this.stats.aborted))return E(s,n.url)}).catch(I=>{if(!(this.loader!==s||this.stats.aborted))return s.open("GET",n.url,!0),E(s,n.url)}).then(()=>{this.loader!==s||this.stats.aborted||this.openAndSendXhr(s,n,t)}).catch(I=>{var U;(U=this.callbacks)==null||U.onError({code:s.status,text:I.message},n,s,_)}):this.openAndSendXhr(s,n,t)}openAndSendXhr(t,n,s){t.readyState||t.open("GET",n.url,!0);const _=n.headers,{maxTimeToFirstByteMs:E,maxLoadTimeMs:I}=s.loadPolicy;if(_)for(const U in _)t.setRequestHeader(U,_[U]);n.rangeEnd&&t.setRequestHeader("Range","bytes="+n.rangeStart+"-"+(n.rangeEnd-1)),t.onreadystatechange=this.readystatechange.bind(this),t.onprogress=this.loadprogress.bind(this),t.responseType=n.responseType,self.clearTimeout(this.requestTimeout),s.timeout=E&&r(E)?E:I,this.requestTimeout=self.setTimeout(this.loadtimeout.bind(this),s.timeout),t.send()}readystatechange(){const{context:t,loader:n,stats:s}=this;if(!t||!n)return;const _=n.readyState,E=this.config;if(!s.aborted&&_>=2&&(s.loading.first===0&&(s.loading.first=Math.max(self.performance.now(),s.loading.start),E.timeout!==E.loadPolicy.maxLoadTimeMs&&(self.clearTimeout(this.requestTimeout),E.timeout=E.loadPolicy.maxLoadTimeMs,this.requestTimeout=self.setTimeout(this.loadtimeout.bind(this),E.loadPolicy.maxLoadTimeMs-(s.loading.first-s.loading.start)))),_===4)){self.clearTimeout(this.requestTimeout),n.onreadystatechange=null,n.onprogress=null;const G=n.status,ue=n.responseType==="text"?n.responseText:null;if(G>=200&&G<300){const Le=ue!=null?ue:n.response;if(Le!=null){var I,U;s.loading.end=Math.max(self.performance.now(),s.loading.first);const at=n.responseType==="arraybuffer"?Le.byteLength:Le.length;s.loaded=s.total=at,s.bwEstimate=s.total*8e3/(s.loading.end-s.loading.first);const it=(I=this.callbacks)==null?void 0:I.onProgress;it&&it(s,t,Le,n);const Qt={url:n.responseURL,data:Le,code:G};(U=this.callbacks)==null||U.onSuccess(Qt,s,t,n);return}}const de=E.loadPolicy.errorRetry,be=s.retry,Re={url:t.url,data:void 0,code:G};if(ct(de,be,!1,Re))this.retry(de);else{var Q;W.error(`${G} while loading ${t.url}`),(Q=this.callbacks)==null||Q.onError({code:G,text:n.statusText},t,n,s)}}}loadtimeout(){if(!this.config)return;const t=this.config.loadPolicy.timeoutRetry,n=this.stats.retry;if(ct(t,n,!0))this.retry(t);else{var s;W.warn(`timeout while loading ${(s=this.context)==null?void 0:s.url}`);const _=this.callbacks;_&&(this.abortInternal(),_.onTimeout(this.stats,this.context,this.loader))}}retry(t){const{context:n,stats:s}=this;this.retryDelay=Qn(t,s.retry),s.retry++,W.warn(`${status?"HTTP Status "+status:"Timeout"} while loading ${n==null?void 0:n.url}, retrying ${s.retry}/${t.maxNumRetry} in ${this.retryDelay}ms`),this.abortInternal(),this.loader=null,self.clearTimeout(this.retryTimeout),this.retryTimeout=self.setTimeout(this.loadInternal.bind(this),this.retryDelay)}loadprogress(t){const n=this.stats;n.loaded=t.loaded,t.lengthComputable&&(n.total=t.total)}getCacheAge(){let t=null;if(this.loader&&Ua.test(this.loader.getAllResponseHeaders())){const n=this.loader.getResponseHeader("age");t=n?parseFloat(n):null}return t}getResponseHeader(t){return this.loader&&new RegExp(`^${t}:\\s*[\\d.]+\\s*$`,"im").test(this.loader.getAllResponseHeaders())?this.loader.getResponseHeader(t):null}}const la={maxTimeToFirstByteMs:8e3,maxLoadTimeMs:2e4,timeoutRetry:null,errorRetry:null},$a=b(b({autoStartLoad:!0,startPosition:-1,defaultAudioCodec:void 0,debug:!1,capLevelOnFPSDrop:!1,capLevelToPlayerSize:!1,ignoreDevicePixelRatio:!1,maxDevicePixelRatio:Number.POSITIVE_INFINITY,preferManagedMediaSource:!0,initialLiveManifestSize:1,maxBufferLength:30,backBufferLength:1/0,frontBufferFlushThreshold:1/0,startOnSegmentBoundary:!1,maxBufferSize:60*1e3*1e3,maxFragLookUpTolerance:.25,maxBufferHole:.1,detectStallWithCurrentTimeMs:1250,highBufferWatchdogPeriod:2,nudgeOffset:.1,nudgeMaxRetry:3,nudgeOnVideoHole:!0,liveSyncMode:"edge",liveSyncDurationCount:3,liveSyncOnStallIncrease:1,liveMaxLatencyDurationCount:1/0,liveSyncDuration:void 0,liveMaxLatencyDuration:void 0,maxLiveSyncPlaybackRate:1,liveDurationInfinity:!1,liveBackBufferLength:null,maxMaxBufferLength:600,enableWorker:!0,workerPath:null,enableSoftwareAES:!0,startLevel:void 0,startFragPrefetch:!1,fpsDroppedMonitoringPeriod:5e3,fpsDroppedMonitoringThreshold:.2,appendErrorMaxRetry:3,ignorePlaylistParsingErrors:!1,loader:Kn,fLoader:void 0,pLoader:void 0,xhrSetup:void 0,licenseXhrSetup:void 0,licenseResponseCallback:void 0,abrController:qe,bufferController:mo,capLevelController:Al,errorController:Hr,fpsController:ds,stretchShortVideoTrack:!1,maxAudioFramesDrift:1,forceKeyFrameOnDiscontinuity:!0,abrEwmaFastLive:3,abrEwmaSlowLive:9,abrEwmaFastVoD:3,abrEwmaSlowVoD:9,abrEwmaDefaultEstimate:5e5,abrEwmaDefaultEstimateMax:5e6,abrBandWidthFactor:.95,abrBandWidthUpFactor:.7,abrMaxWithRealBitrate:!1,maxStarvationDelay:4,maxLoadingDelay:4,minAutoBitrate:0,emeEnabled:!1,widevineLicenseUrl:void 0,drmSystems:{},drmSystemOptions:{},requestMediaKeySystemAccessFunc:Eu,requireKeySystemAccessOnStart:!1,testBandwidth:!0,progressive:!1,lowLatencyMode:!0,cmcd:void 0,enableDateRangeMetadataCues:!0,enableEmsgMetadataCues:!0,enableEmsgKLVMetadata:!1,enableID3MetadataCues:!0,enableInterstitialPlayback:!0,interstitialAppendInPlace:!0,interstitialLiveLookAhead:10,useMediaCapabilities:!0,preserveManualLevelOnError:!1,certLoadPolicy:{default:la},keyLoadPolicy:{default:{maxTimeToFirstByteMs:8e3,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:1,retryDelayMs:1e3,maxRetryDelayMs:2e4,backoff:"linear"},errorRetry:{maxNumRetry:8,retryDelayMs:1e3,maxRetryDelayMs:2e4,backoff:"linear"}}},manifestLoadPolicy:{default:{maxTimeToFirstByteMs:1/0,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:2,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:1,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},playlistLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:2,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:2,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},fragLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:12e4,timeoutRetry:{maxNumRetry:4,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:6,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},steeringManifestLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:2,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:1,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},interstitialAssetListLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:3e4,timeoutRetry:{maxNumRetry:0,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:0,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},manifestLoadingTimeOut:1e4,manifestLoadingMaxRetry:1,manifestLoadingRetryDelay:1e3,manifestLoadingMaxRetryTimeout:64e3,levelLoadingTimeOut:1e4,levelLoadingMaxRetry:4,levelLoadingRetryDelay:1e3,levelLoadingMaxRetryTimeout:64e3,fragLoadingTimeOut:2e4,fragLoadingMaxRetry:6,fragLoadingRetryDelay:1e3,fragLoadingMaxRetryTimeout:64e3},ka()),{},{subtitleStreamController:Il,subtitleTrackController:Bc,timelineController:ad,audioStreamController:Gc,audioTrackController:Dl,emeController:Oe,cmcdController:xf,contentSteeringController:O,interstitialsController:wf});function ka(){return{cueHandler:$,enableWebVTT:!0,enableIMSC1:!0,enableCEA708Captions:!0,captionsTextTrack1Label:"English",captionsTextTrack1LanguageCode:"en",captionsTextTrack2Label:"Spanish",captionsTextTrack2LanguageCode:"es",captionsTextTrack3Label:"Unknown CC",captionsTextTrack3LanguageCode:"",captionsTextTrack4Label:"Unknown CC",captionsTextTrack4LanguageCode:"",renderTextTracksNatively:!0}}function nn(D,t,n){if((t.liveSyncDurationCount||t.liveMaxLatencyDurationCount)&&(t.liveSyncDuration||t.liveMaxLatencyDuration))throw new Error("Illegal hls.js config: don't mix up liveSyncDurationCount/liveMaxLatencyDurationCount and liveSyncDuration/liveMaxLatencyDuration");if(t.liveMaxLatencyDurationCount!==void 0&&(t.liveSyncDurationCount===void 0||t.liveMaxLatencyDurationCount<=t.liveSyncDurationCount))throw new Error('Illegal hls.js config: "liveMaxLatencyDurationCount" must be greater than "liveSyncDurationCount"');if(t.liveMaxLatencyDuration!==void 0&&(t.liveSyncDuration===void 0||t.liveMaxLatencyDuration<=t.liveSyncDuration))throw new Error('Illegal hls.js config: "liveMaxLatencyDuration" must be greater than "liveSyncDuration"');const s=jr(D),_=["manifest","level","frag"],E=["TimeOut","MaxRetry","RetryDelay","MaxRetryTimeout"];return _.forEach(I=>{const U=`${I==="level"?"playlist":I}LoadPolicy`,Q=t[U]===void 0,G=[];E.forEach(ue=>{const de=`${I}Loading${ue}`,be=t[de];if(be!==void 0&&Q){G.push(de);const Re=s[U].default;switch(t[U]={default:Re},ue){case"TimeOut":Re.maxLoadTimeMs=be,Re.maxTimeToFirstByteMs=be;break;case"MaxRetry":Re.errorRetry.maxNumRetry=be,Re.timeoutRetry.maxNumRetry=be;break;case"RetryDelay":Re.errorRetry.retryDelayMs=be,Re.timeoutRetry.retryDelayMs=be;break;case"MaxRetryTimeout":Re.errorRetry.maxRetryDelayMs=be,Re.timeoutRetry.maxRetryDelayMs=be;break}}}),G.length&&n.warn(`hls.js config: "${G.join('", "')}" setting(s) are deprecated, use "${U}": ${Yi(t[U])}`)}),b(b({},s),t)}function jr(D){return D&&typeof D=="object"?Array.isArray(D)?D.map(jr):Object.keys(D).reduce((t,n)=>(t[n]=jr(D[n]),t),{}):D}function rn(D,t){const n=D.loader;n!==rt&&n!==Kn?(t.log("[config]: Custom loader detected, cannot enable progressive streaming"),D.progressive=!1):ve()&&(D.loader=rt,D.progressive=!0,D.enableSoftwareAES=!0,t.log("[config]: Progressive streaming enabled, using FetchLoader"))}const On=2,Un=.1,Ya=.05,Ui=100;class Qa extends to{constructor(t,n){super("gap-controller",t.logger),this.hls=void 0,this.fragmentTracker=void 0,this.media=null,this.mediaSource=void 0,this.nudgeRetry=0,this.stallReported=!1,this.stalled=null,this.moved=!1,this.seeking=!1,this.buffered={},this.lastCurrentTime=0,this.ended=0,this.waiting=0,this.onMediaPlaying=()=>{this.ended=0,this.waiting=0},this.onMediaWaiting=()=>{var s;(s=this.media)!=null&&s.seeking||(this.waiting=self.performance.now(),this.tick())},this.onMediaEnded=()=>{if(this.hls){var s;this.ended=((s=this.media)==null?void 0:s.currentTime)||1,this.hls.trigger(o.MEDIA_ENDED,{stalled:!1})}},this.hls=t,this.fragmentTracker=n,this.registerListeners()}registerListeners(){const{hls:t}=this;t&&(t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.BUFFER_APPENDED,this.onBufferAppended,this))}unregisterListeners(){const{hls:t}=this;t&&(t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.BUFFER_APPENDED,this.onBufferAppended,this))}destroy(){super.destroy(),this.unregisterListeners(),this.media=this.hls=this.fragmentTracker=null,this.mediaSource=void 0}onMediaAttached(t,n){this.setInterval(Ui),this.mediaSource=n.mediaSource;const s=this.media=n.media;ja(s,"playing",this.onMediaPlaying),ja(s,"waiting",this.onMediaWaiting),ja(s,"ended",this.onMediaEnded)}onMediaDetaching(t,n){this.clearInterval();const{media:s}=this;s&&(os(s,"playing",this.onMediaPlaying),os(s,"waiting",this.onMediaWaiting),os(s,"ended",this.onMediaEnded),this.media=null),this.mediaSource=void 0}onBufferAppended(t,n){this.buffered=n.timeRanges}get hasBuffered(){return Object.keys(this.buffered).length>0}tick(){var t;if(!((t=this.media)!=null&&t.readyState)||!this.hasBuffered)return;const n=this.media.currentTime;this.poll(n,this.lastCurrentTime),this.lastCurrentTime=n}poll(t,n){var s,_;const E=(s=this.hls)==null?void 0:s.config;if(!E)return;const I=this.media;if(!I)return;const{seeking:U}=I,Q=this.seeking&&!U,G=!this.seeking&&U,ue=I.paused&&!U||I.ended||I.playbackRate===0;if(this.seeking=U,t!==n){n&&(this.ended=0),this.moved=!0,U||(this.nudgeRetry=0,E.nudgeOnVideoHole&&!ue&&t>n&&this.nudgeOnVideoHole(t,n)),this.waiting===0&&this.stallResolved(t);return}if(G||Q){Q&&this.stallResolved(t);return}if(ue){this.nudgeRetry=0,this.stallResolved(t),!this.ended&&I.ended&&this.hls&&(this.ended=t||1,this.hls.trigger(o.MEDIA_ENDED,{stalled:!1}));return}if(!di.getBuffered(I).length){this.nudgeRetry=0;return}const de=di.bufferInfo(I,t,0),be=de.nextStart||0,Re=this.fragmentTracker;if(U&&Re&&this.hls){const mn=hs(this.hls.inFlightFragments,t),zr=de.len>On,ln=!be||mn||be-t>On&&!Re.getPartialFragment(t);if(zr||ln)return;this.moved=!1}const Le=(_=this.hls)==null?void 0:_.latestLevelDetails;if(!this.moved&&this.stalled!==null&&Re){if(!(de.len>0)&&!be)return;const zr=Math.max(be,de.start||0)-t,on=!!(Le!=null&&Le.live)?Le.targetduration*2:On,Qr=Ul(t,Re);if(zr>0&&(zr<=on||Qr)){I.paused||this._trySkipBufferHole(Qr);return}}const at=E.detectStallWithCurrentTimeMs,it=self.performance.now(),Qt=this.waiting;let ir=this.stalled;if(ir===null)if(Qt>0&&it-Qt<at)ir=this.stalled=Qt;else{this.stalled=it;return}const ur=it-ir;if(!U&&(ur>=at||Qt)&&this.hls){var Ar;if(((Ar=this.mediaSource)==null?void 0:Ar.readyState)==="ended"&&!(Le!=null&&Le.live)&&Math.abs(t-((Le==null?void 0:Le.edge)||0))<1){if(this.ended)return;this.ended=t||1,this.hls.trigger(o.MEDIA_ENDED,{stalled:!0});return}if(this._reportStall(de),!this.media||!this.hls)return}const Ur=di.bufferInfo(I,t,E.maxBufferHole);this._tryFixBufferStall(Ur,ur,t)}stallResolved(t){const n=this.stalled;if(n&&this.hls&&(this.stalled=null,this.stallReported)){const s=self.performance.now()-n;this.log(`playback not stuck anymore @${t}, after ${Math.round(s)}ms`),this.stallReported=!1,this.waiting=0,this.hls.trigger(o.STALL_RESOLVED,{})}}nudgeOnVideoHole(t,n){var s;const _=this.buffered.video;if(this.hls&&this.media&&this.fragmentTracker&&(s=this.buffered.audio)!=null&&s.length&&_&&_.length>1&&t>_.end(0)){const E=di.bufferedInfo(di.timeRangesToArray(this.buffered.audio),t,0);if(E.len>1&&n>=E.start){const I=di.timeRangesToArray(_),U=di.bufferedInfo(I,n,0).bufferedIndex;if(U>-1&&U<I.length-1){const Q=di.bufferedInfo(I,t,0).bufferedIndex,G=I[U].end,ue=I[U+1].start;if((Q===-1||Q>U)&&ue-G<1&&t-G<2){const de=new Error(`nudging playhead to flush pipeline after video hole. currentTime: ${t} hole: ${G} -> ${ue} buffered index: ${Q}`);this.warn(de.message),this.media.currentTime+=1e-6;let be=Ul(t,this.fragmentTracker);be&&"fragment"in be?be=be.fragment:be||(be=void 0);const Re=di.bufferInfo(this.media,t,0);this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_SEEK_OVER_HOLE,fatal:!1,error:de,reason:de.message,frag:be,buffer:Re.len,bufferInfo:Re})}}}}}_tryFixBufferStall(t,n,s){var _,E;const{fragmentTracker:I,media:U}=this,Q=(_=this.hls)==null?void 0:_.config;if(!U||!I||!Q)return;const G=(E=this.hls)==null?void 0:E.latestLevelDetails,ue=Ul(s,I);if((ue||G!=null&&G.live&&s<G.fragmentStart)&&(this._trySkipBufferHole(ue)||!this.media))return;const de=t.buffered,be=this.adjacentTraversal(t,s);(de&&de.length>1&&t.len>Q.maxBufferHole||t.nextStart&&(t.nextStart-s<Q.maxBufferHole||be))&&(n>Q.highBufferWatchdogPeriod*1e3||this.waiting)&&(this.warn("Trying to nudge playhead over buffer-hole"),this._tryNudgeBuffer(t))}adjacentTraversal(t,n){const s=this.fragmentTracker,_=t.nextStart;if(s&&_){const E=s.getFragAtPos(n,u.MAIN),I=s.getFragAtPos(_,u.MAIN);if(E&&I)return I.sn-E.sn<2}return!1}_reportStall(t){const{hls:n,media:s,stallReported:_,stalled:E}=this;if(!_&&E!==null&&s&&n){this.stallReported=!0;const I=new Error(`Playback stalling at @${s.currentTime} due to low buffer (${Yi(t)})`);this.warn(I.message),n.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_STALLED_ERROR,fatal:!1,error:I,buffer:t.len,bufferInfo:t,stalled:{start:E}})}}_trySkipBufferHole(t){var n;const{fragmentTracker:s,media:_}=this,E=(n=this.hls)==null?void 0:n.config;if(!_||!s||!E)return 0;const I=_.currentTime,U=di.bufferInfo(_,I,0),Q=I<U.start?U.start:U.nextStart;if(Q&&this.hls){const ue=U.len<=E.maxBufferHole,de=U.len>0&&U.len<1&&_.readyState<3,be=Q-I;if(be>0&&(ue||de)){if(be>E.maxBufferHole){let Le=!1;if(I===0){const at=s.getAppendedFrag(0,u.MAIN);at&&Q<at.end&&(Le=!0)}if(!Le&&t){var G;if(!((G=this.hls.loadLevelObj)!=null&&G.details)||hs(this.hls.inFlightFragments,Q))return 0;let it=!1,Qt=t.end;for(;Qt<Q;){const ir=Ul(Qt,s);if(ir)Qt+=ir.duration;else{it=!0;break}}if(it)return 0}}const Re=Math.max(Q+Ya,I+Un);if(this.warn(`skipping hole, adjusting currentTime from ${I} to ${Re}`),this.moved=!0,_.currentTime=Re,!(t!=null&&t.gap)){const Le=new Error(`fragment loaded with buffer holes, seeking from ${I} to ${Re}`),at={type:c.MEDIA_ERROR,details:f.BUFFER_SEEK_OVER_HOLE,fatal:!1,error:Le,reason:Le.message,buffer:U.len,bufferInfo:U};t&&("fragment"in t?at.part=t:at.frag=t),this.hls.trigger(o.ERROR,at)}return Re}}return 0}_tryNudgeBuffer(t){const{hls:n,media:s,nudgeRetry:_}=this,E=n==null?void 0:n.config;if(!s||!E)return 0;const I=s.currentTime;if(this.nudgeRetry++,_<E.nudgeMaxRetry){const U=I+(_+1)*E.nudgeOffset,Q=new Error(`Nudging 'currentTime' from ${I} to ${U}`);this.warn(Q.message),s.currentTime=U,n.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_NUDGE_ON_STALL,error:Q,fatal:!1,buffer:t.len,bufferInfo:t})}else{const U=new Error(`Playhead still not moving while enough data buffered @${I} after ${E.nudgeMaxRetry} nudges`);this.error(U.message),n.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.BUFFER_STALLED_ERROR,error:U,fatal:!0,buffer:t.len,bufferInfo:t})}}}function hs(D,t){const n=Ja(D.main);if(n&&n.start<=t)return n;const s=Ja(D.audio);return s&&s.start<=t?s:null}function Ja(D){if(!D)return null;switch(D.state){case Pe.IDLE:case Pe.STOPPED:case Pe.ENDED:case Pe.ERROR:return null}return D.frag}function Ul(D,t){return t.getAppendedFrag(D,u.MAIN)||t.getPartialFragment(D)}const sd=.25;function od(){if(typeof self!="undefined")return self.VTTCue||self.TextTrackCue}function ud(D,t,n,s,_){let E=new D(t,n,"");try{E.value=s,_&&(E.type=_)}catch(I){E=new D(t,n,Yi(_?b({type:_},s):s))}return E}const ed=(()=>{const D=od();try{D&&new D(0,Number.POSITIVE_INFINITY,"")}catch(t){return Number.MAX_VALUE}return Number.POSITIVE_INFINITY})();class Sd{constructor(t){this.hls=void 0,this.id3Track=null,this.media=null,this.dateRangeCuesAppended={},this.removeCues=!0,this.assetCue=void 0,this.onEventCueEnter=()=>{this.hls&&this.hls.trigger(o.EVENT_CUE_ENTER,{})},this.hls=t,this._registerListeners()}destroy(){this._unregisterListeners(),this.id3Track=null,this.media=null,this.dateRangeCuesAppended={},this.hls=this.onEventCueEnter=null}_registerListeners(){const{hls:t}=this;t&&(t.on(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.FRAG_PARSING_METADATA,this.onFragParsingMetadata,this),t.on(o.BUFFER_FLUSHING,this.onBufferFlushing,this),t.on(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.on(o.LEVEL_PTS_UPDATED,this.onLevelPtsUpdated,this))}_unregisterListeners(){const{hls:t}=this;t&&(t.off(o.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.FRAG_PARSING_METADATA,this.onFragParsingMetadata,this),t.off(o.BUFFER_FLUSHING,this.onBufferFlushing,this),t.off(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.off(o.LEVEL_PTS_UPDATED,this.onLevelPtsUpdated,this))}onMediaAttaching(t,n){var s;this.media=n.media,((s=n.overrides)==null?void 0:s.cueRemoval)===!1&&(this.removeCues=!1)}onMediaAttached(){var t;const n=(t=this.hls)==null?void 0:t.latestLevelDetails;n&&this.updateDateRangeCues(n)}onMediaDetaching(t,n){this.media=null,!n.transferMedia&&(this.id3Track&&(this.removeCues&&is(this.id3Track,this.onEventCueEnter),this.id3Track=null),this.dateRangeCuesAppended={})}onManifestLoading(){this.dateRangeCuesAppended={}}createTrack(t){const n=this.getID3Track(t.textTracks);return n.mode="hidden",n}getID3Track(t){if(this.media){for(let n=0;n<t.length;n++){const s=t[n];if(s.kind==="metadata"&&s.label==="id3")return Ga(s,this.media),s}return this.media.addTextTrack("metadata","id3")}}onFragParsingMetadata(t,n){if(!this.media||!this.hls)return;const{enableEmsgMetadataCues:s,enableID3MetadataCues:_}=this.hls.config;if(!s&&!_)return;const{samples:E}=n;this.id3Track||(this.id3Track=this.createTrack(this.media));const I=od();if(I)for(let U=0;U<E.length;U++){const Q=E[U].type;if(Q===gn.emsg&&!s||!_)continue;const G=jt(E[U].data),ue=E[U].pts;let de=ue+E[U].duration;de>ed&&(de=ed),de-ue<=0&&(de=ue+sd);for(let Re=0;Re<G.length;Re++){const Le=G[Re];if(!wr(Le)){this.updateId3CueEnds(ue,Q);const at=ud(I,ue,de,Le,Q);at&&this.id3Track.addCue(at)}}}}updateId3CueEnds(t,n){var s;const _=(s=this.id3Track)==null?void 0:s.cues;if(_)for(let E=_.length;E--;){const I=_[E];I.type===n&&I.startTime<t&&I.endTime===ed&&(I.endTime=t)}}onBufferFlushing(t,{startOffset:n,endOffset:s,type:_}){const{id3Track:E,hls:I}=this;if(!I)return;const{config:{enableEmsgMetadataCues:U,enableID3MetadataCues:Q}}=I;if(E&&(U||Q)){let G;_==="audio"?G=ue=>ue.type===gn.audioId3&&Q:_==="video"?G=ue=>ue.type===gn.emsg&&U:G=ue=>ue.type===gn.audioId3&&Q||ue.type===gn.emsg&&U,Io(E,n,s,G)}}onLevelUpdated(t,{details:n}){this.updateDateRangeCues(n,!0)}onLevelPtsUpdated(t,n){Math.abs(n.drift)>.01&&this.updateDateRangeCues(n.details)}updateDateRangeCues(t,n){if(!this.hls||!this.media)return;const{assetPlayerId:s,timelineOffset:_,enableDateRangeMetadataCues:E,interstitialsController:I}=this.hls.config;if(!E)return;const U=od();if(s&&_&&!I){const{fragmentStart:at,fragmentEnd:it}=t;let Qt=this.assetCue;Qt?(Qt.startTime=at,Qt.endTime=it):U&&(Qt=this.assetCue=ud(U,at,it,{assetPlayerId:this.hls.config.assetPlayerId},"hlsjs.interstitial.asset"),Qt&&(Qt.id=s,this.id3Track||(this.id3Track=this.createTrack(this.media)),this.id3Track.addCue(Qt),Qt.addEventListener("enter",this.onEventCueEnter)))}if(!t.hasProgramDateTime)return;const{id3Track:Q}=this,{dateRanges:G}=t,ue=Object.keys(G);let de=this.dateRangeCuesAppended;if(Q&&n){var be;if((be=Q.cues)!=null&&be.length){const at=Object.keys(de).filter(it=>!ue.includes(it));for(let it=at.length;it--;){var Re;const Qt=at[it],ir=(Re=de[Qt])==null?void 0:Re.cues;delete de[Qt],ir&&Object.keys(ir).forEach(ur=>{const Ar=ir[ur];if(Ar){Ar.removeEventListener("enter",this.onEventCueEnter);try{Q.removeCue(Ar)}catch(Ur){}}})}}else de=this.dateRangeCuesAppended={}}const Le=t.fragments[t.fragments.length-1];if(!(ue.length===0||!r(Le==null?void 0:Le.programDateTime))){this.id3Track||(this.id3Track=this.createTrack(this.media));for(let at=0;at<ue.length;at++){const it=ue[at],Qt=G[it],ir=Qt.startTime,ur=de[it],Ar=(ur==null?void 0:ur.cues)||{};let Ur=(ur==null?void 0:ur.durationKnown)||!1,mn=ed;const{duration:zr,endDate:ln}=Qt;if(ln&&zr!==null)mn=ir+zr,Ur=!0;else if(Qt.endOnNext&&!Ur){const Qr=ue.reduce((Dn,Ei)=>{if(Ei!==Qt.id){const Ki=G[Ei];if(Ki.class===Qt.class&&Ki.startDate>Qt.startDate&&(!Dn||Qt.startDate<Dn.startDate))return Ki}return Dn},null);Qr&&(mn=Qr.startTime,Ur=!0)}const on=Object.keys(Qt.attr);for(let Qr=0;Qr<on.length;Qr++){const Dn=on[Qr];if(!xo(Dn))continue;const Ei=Ar[Dn];if(Ei)Ur&&!(ur!=null&&ur.durationKnown)?Ei.endTime=mn:Math.abs(Ei.startTime-ir)>.01&&(Ei.startTime=ir,Ei.endTime=mn);else if(U){let Ki=Qt.attr[Dn];Zo(Dn)&&(Ki=V(Ki));const Vi=ud(U,ir,mn,{key:Dn,data:Ki},gn.dateRange);Vi&&(Vi.id=it,this.id3Track.addCue(Vi),Ar[Dn]=Vi,I&&(Dn==="X-ASSET-LIST"||Dn==="X-ASSET-URL")&&Vi.addEventListener("enter",this.onEventCueEnter))}}de[it]={cues:Ar,dateRange:Qt,durationKnown:Ur}}}}}class Ad{constructor(t){this.hls=void 0,this.config=void 0,this.media=null,this.currentTime=0,this.stallCount=0,this._latency=null,this._targetLatencyUpdated=!1,this.onTimeupdate=()=>{const{media:n}=this,s=this.levelDetails;if(!n||!s)return;this.currentTime=n.currentTime;const _=this.computeLatency();if(_===null)return;this._latency=_;const{lowLatencyMode:E,maxLiveSyncPlaybackRate:I}=this.config;if(!E||I===1||!s.live)return;const U=this.targetLatency;if(U===null)return;const Q=_-U,G=Math.min(this.maxLatency,U+s.targetduration);if(Q<G&&Q>.05&&this.forwardBufferLength>1){const de=Math.min(2,Math.max(1,I)),be=Math.round(2/(1+Math.exp(-.75*Q-this.edgeStalled))*20)/20,Re=Math.min(de,Math.max(1,be));this.changeMediaPlaybackRate(n,Re)}else n.playbackRate!==1&&n.playbackRate!==0&&this.changeMediaPlaybackRate(n,1)},this.hls=t,this.config=t.config,this.registerListeners()}get levelDetails(){var t;return((t=this.hls)==null?void 0:t.latestLevelDetails)||null}get latency(){return this._latency||0}get maxLatency(){const{config:t}=this;if(t.liveMaxLatencyDuration!==void 0)return t.liveMaxLatencyDuration;const n=this.levelDetails;return n?t.liveMaxLatencyDurationCount*n.targetduration:0}get targetLatency(){const t=this.levelDetails;if(t===null||this.hls===null)return null;const{holdBack:n,partHoldBack:s,targetduration:_}=t,{liveSyncDuration:E,liveSyncDurationCount:I,lowLatencyMode:U}=this.config,Q=this.hls.userConfig;let G=U&&s||n;(this._targetLatencyUpdated||Q.liveSyncDuration||Q.liveSyncDurationCount||G===0)&&(G=E!==void 0?E:I*_);const ue=_;return G+Math.min(this.stallCount*this.config.liveSyncOnStallIncrease,ue)}set targetLatency(t){this.stallCount=0,this.config.liveSyncDuration=t,this._targetLatencyUpdated=!0}get liveSyncPosition(){const t=this.estimateLiveEdge(),n=this.targetLatency;if(t===null||n===null)return null;const s=this.levelDetails;if(s===null)return null;const _=s.edge,E=t-n-this.edgeStalled,I=_-s.totalduration,U=_-(this.config.lowLatencyMode&&s.partTarget||s.targetduration);return Math.min(Math.max(I,E),U)}get drift(){const t=this.levelDetails;return t===null?1:t.drift}get edgeStalled(){const t=this.levelDetails;if(t===null)return 0;const n=(this.config.lowLatencyMode&&t.partTarget||t.targetduration)*3;return Math.max(t.age-n,0)}get forwardBufferLength(){const{media:t}=this,n=this.levelDetails;if(!t||!n)return 0;const s=t.buffered.length;return(s?t.buffered.end(s-1):n.edge)-this.currentTime}destroy(){this.unregisterListeners(),this.onMediaDetaching(),this.hls=null}registerListeners(){const{hls:t}=this;t&&(t.on(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.on(o.ERROR,this.onError,this))}unregisterListeners(){const{hls:t}=this;t&&(t.off(o.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(o.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.LEVEL_UPDATED,this.onLevelUpdated,this),t.off(o.ERROR,this.onError,this))}onMediaAttached(t,n){this.media=n.media,this.media.addEventListener("timeupdate",this.onTimeupdate)}onMediaDetaching(){this.media&&(this.media.removeEventListener("timeupdate",this.onTimeupdate),this.media=null)}onManifestLoading(){this._latency=null,this.stallCount=0}onLevelUpdated(t,{details:n}){n.advanced&&this.onTimeupdate(),!n.live&&this.media&&this.media.removeEventListener("timeupdate",this.onTimeupdate)}onError(t,n){var s;n.details===f.BUFFER_STALLED_ERROR&&(this.stallCount++,this.hls&&(s=this.levelDetails)!=null&&s.live&&this.hls.logger.warn("[latency-controller]: Stall detected, adjusting target latency"))}changeMediaPlaybackRate(t,n){var s,_;t.playbackRate!==n&&((s=this.hls)==null||s.logger.debug(`[latency-controller]: latency=${this.latency.toFixed(3)}, targetLatency=${(_=this.targetLatency)==null?void 0:_.toFixed(3)}, forwardBufferLength=${this.forwardBufferLength.toFixed(3)}: adjusting playback rate from ${t.playbackRate} to ${n}`),t.playbackRate=n)}estimateLiveEdge(){const t=this.levelDetails;return t===null?null:t.edge+t.age}computeLatency(){const t=this.estimateLiveEdge();return t===null?null:t-this.currentTime}}class Td extends Ao{constructor(t,n){super(t,"level-controller"),this._levels=[],this._firstLevel=-1,this._maxAutoLevel=-1,this._startLevel=void 0,this.currentLevel=null,this.currentLevelIndex=-1,this.manualLevelIndex=-1,this.steering=void 0,this.onParsedComplete=void 0,this.steering=n,this._registerListeners()}_registerListeners(){const{hls:t}=this;t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(o.LEVEL_LOADED,this.onLevelLoaded,this),t.on(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.on(o.FRAG_BUFFERED,this.onFragBuffered,this),t.on(o.ERROR,this.onError,this)}_unregisterListeners(){const{hls:t}=this;t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(o.LEVEL_LOADED,this.onLevelLoaded,this),t.off(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.off(o.FRAG_BUFFERED,this.onFragBuffered,this),t.off(o.ERROR,this.onError,this)}destroy(){this._unregisterListeners(),this.steering=null,this.resetLevels(),super.destroy()}stopLoad(){this._levels.forEach(n=>{n.loadError=0,n.fragmentError=0}),super.stopLoad()}resetLevels(){this._startLevel=void 0,this.manualLevelIndex=-1,this.currentLevelIndex=-1,this.currentLevel=null,this._levels=[],this._maxAutoLevel=-1}onManifestLoading(t,n){this.resetLevels()}onManifestLoaded(t,n){const s=this.hls.config.preferManagedMediaSource,_=[],E={},I={};let U=!1,Q=!1,G=!1;n.levels.forEach(ue=>{const de=ue.attrs;let{audioCodec:be,videoCodec:Re}=ue;be&&(ue.audioCodec=be=mt(be,s)||void 0),Re&&(Re=ue.videoCodec=qt(Re));const{width:Le,height:at,unknownCodecs:it}=ue,Qt=(it==null?void 0:it.length)||0;if(U||(U=!!(Le&&at)),Q||(Q=!!Re),G||(G=!!be),Qt||be&&!this.isAudioSupported(be)||Re&&!this.isVideoSupported(Re)){this.log(`Some or all CODECS not supported "${de.CODECS}"`);return}const{CODECS:ir,"FRAME-RATE":ur,"HDCP-LEVEL":Ar,"PATHWAY-ID":Ur,RESOLUTION:mn,"VIDEO-RANGE":zr}=de,on=`${`${Ur||"."}-`}${ue.bitrate}-${mn}-${ur}-${ir}-${zr}-${Ar}`;if(E[on])if(E[on].uri!==ue.url&&!ue.attrs["PATHWAY-ID"]){const Qr=I[on]+=1;ue.attrs["PATHWAY-ID"]=new Array(Qr+1).join(".");const Dn=this.createLevel(ue);E[on]=Dn,_.push(Dn)}else E[on].addGroupId("audio",de.AUDIO),E[on].addGroupId("text",de.SUBTITLES);else{const Qr=this.createLevel(ue);E[on]=Qr,I[on]=1,_.push(Qr)}}),this.filterAndSortMediaOptions(_,n,U,Q,G)}createLevel(t){const n=new $i(t),s=t.supplemental;if(s!=null&&s.videoCodec&&!this.isVideoSupported(s.videoCodec)){const _=new Error(`SUPPLEMENTAL-CODECS not supported "${s.videoCodec}"`);this.log(_.message),n.supportedResult=Bt(_,[])}return n}isAudioSupported(t){return Te(t,"audio",this.hls.config.preferManagedMediaSource)}isVideoSupported(t){return Te(t,"video",this.hls.config.preferManagedMediaSource)}filterAndSortMediaOptions(t,n,s,_,E){var I;let U=[],Q=[],G=t;const ue=((I=n.stats)==null?void 0:I.parsing)||{};if((s||_)&&E&&(G=G.filter(({videoCodec:ir,videoRange:ur,width:Ar,height:Ur})=>(!!ir||!!(Ar&&Ur))&&Bi(ur))),G.length===0){Promise.resolve().then(()=>{if(this.hls){let ir="no level with compatible codecs found in manifest",ur=ir;n.levels.length&&(ur=`one or more CODECS in variant not supported: ${Yi(n.levels.map(Ur=>Ur.attrs.CODECS).filter((Ur,mn,zr)=>zr.indexOf(Ur)===mn))}`,this.warn(ur),ir+=` (${ur})`);const Ar=new Error(ir);this.hls.trigger(o.ERROR,{type:c.MEDIA_ERROR,details:f.MANIFEST_INCOMPATIBLE_CODECS_ERROR,fatal:!0,url:n.url,error:Ar,reason:ur})}}),ue.end=performance.now();return}n.audioTracks&&(U=n.audioTracks.filter(ir=>!ir.audioCodec||this.isAudioSupported(ir.audioCodec)),hd(U)),n.subtitles&&(Q=n.subtitles,hd(Q));const de=G.slice(0);G.sort((ir,ur)=>{if(ir.attrs["HDCP-LEVEL"]!==ur.attrs["HDCP-LEVEL"])return(ir.attrs["HDCP-LEVEL"]||"")>(ur.attrs["HDCP-LEVEL"]||"")?1:-1;if(s&&ir.height!==ur.height)return ir.height-ur.height;if(ir.frameRate!==ur.frameRate)return ir.frameRate-ur.frameRate;if(ir.videoRange!==ur.videoRange)return ii.indexOf(ir.videoRange)-ii.indexOf(ur.videoRange);if(ir.videoCodec!==ur.videoCodec){const Ar=xe(ir.videoCodec),Ur=xe(ur.videoCodec);if(Ar!==Ur)return Ur-Ar}if(ir.uri===ur.uri&&ir.codecSet!==ur.codecSet){const Ar=dt(ir.codecSet),Ur=dt(ur.codecSet);if(Ar!==Ur)return Ur-Ar}return ir.averageBitrate!==ur.averageBitrate?ir.averageBitrate-ur.averageBitrate:0});let be=de[0];if(this.steering&&(G=this.steering.filterParsedLevels(G),G.length!==de.length)){for(let ir=0;ir<de.length;ir++)if(de[ir].pathwayId===G[0].pathwayId){be=de[ir];break}}this._levels=G;for(let ir=0;ir<G.length;ir++)if(G[ir]===be){var Re;this._firstLevel=ir;const ur=be.bitrate,Ar=this.hls.bandwidthEstimate;if(this.log(`manifest loaded, ${G.length} level(s) found, first bitrate: ${ur}`),((Re=this.hls.userConfig)==null?void 0:Re.abrEwmaDefaultEstimate)===void 0){const Ur=Math.min(ur,this.hls.config.abrEwmaDefaultEstimateMax);Ur>Ar&&Ar===this.hls.abrEwmaDefaultEstimate&&(this.hls.bandwidthEstimate=Ur)}break}const Le=E&&!_,at=this.hls.config,it=!!(at.audioStreamController&&at.audioTrackController),Qt={levels:G,audioTracks:U,subtitleTracks:Q,sessionData:n.sessionData,sessionKeys:n.sessionKeys,firstLevel:this._firstLevel,stats:n.stats,audio:E,video:_,altAudio:it&&!Le&&U.some(ir=>!!ir.url)};ue.end=performance.now(),this.hls.trigger(o.MANIFEST_PARSED,Qt)}get levels(){return this._levels.length===0?null:this._levels}get loadLevelObj(){return this.currentLevel}get level(){return this.currentLevelIndex}set level(t){const n=this._levels;if(n.length===0)return;if(t<0||t>=n.length){const ue=new Error("invalid level idx"),de=t<0;if(this.hls.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.LEVEL_SWITCH_ERROR,level:t,fatal:de,error:ue,reason:ue.message}),de)return;t=Math.min(t,n.length-1)}const s=this.currentLevelIndex,_=this.currentLevel,E=_?_.attrs["PATHWAY-ID"]:void 0,I=n[t],U=I.attrs["PATHWAY-ID"];if(this.currentLevelIndex=t,this.currentLevel=I,s===t&&_&&E===U)return;this.log(`Switching to level ${t} (${I.height?I.height+"p ":""}${I.videoRange?I.videoRange+" ":""}${I.codecSet?I.codecSet+" ":""}@${I.bitrate})${U?" with Pathway "+U:""} from level ${s}${E?" with Pathway "+E:""}`);const Q={level:t,attrs:I.attrs,details:I.details,bitrate:I.bitrate,averageBitrate:I.averageBitrate,maxBitrate:I.maxBitrate,realBitrate:I.realBitrate,width:I.width,height:I.height,codecSet:I.codecSet,audioCodec:I.audioCodec,videoCodec:I.videoCodec,audioGroups:I.audioGroups,subtitleGroups:I.subtitleGroups,loaded:I.loaded,loadError:I.loadError,fragmentError:I.fragmentError,name:I.name,id:I.id,uri:I.uri,url:I.url,urlId:0,audioGroupIds:I.audioGroupIds,textGroupIds:I.textGroupIds};this.hls.trigger(o.LEVEL_SWITCHING,Q);const G=I.details;if(!G||G.live){const ue=this.switchParams(I.uri,_==null?void 0:_.details,G);this.loadPlaylist(ue)}}get manualLevel(){return this.manualLevelIndex}set manualLevel(t){this.manualLevelIndex=t,this._startLevel===void 0&&(this._startLevel=t),t!==-1&&(this.level=t)}get firstLevel(){return this._firstLevel}set firstLevel(t){this._firstLevel=t}get startLevel(){if(this._startLevel===void 0){const t=this.hls.config.startLevel;return t!==void 0?t:this.hls.firstAutoLevel}return this._startLevel}set startLevel(t){this._startLevel=t}get pathways(){return this.steering?this.steering.pathways():[]}get pathwayPriority(){return this.steering?this.steering.pathwayPriority:null}set pathwayPriority(t){if(this.steering){const n=this.steering.pathways(),s=t.filter(_=>n.indexOf(_)!==-1);if(t.length<1){this.warn(`pathwayPriority ${t} should contain at least one pathway from list: ${n}`);return}this.steering.pathwayPriority=s}}onError(t,n){n.fatal||!n.context||n.context.type===h.LEVEL&&n.context.level===this.level&&this.checkRetry(n)}onFragBuffered(t,{frag:n}){if(n!==void 0&&n.type===u.MAIN){const s=n.elementaryStreams;if(!Object.keys(s).some(E=>!!s[E]))return;const _=this._levels[n.level];_!=null&&_.loadError&&(this.log(`Resetting level error count of ${_.loadError} on frag buffered`),_.loadError=0)}}onLevelLoaded(t,n){var s;const{level:_,details:E}=n,I=n.levelInfo;if(!I){var U;this.warn(`Invalid level index ${_}`),(U=n.deliveryDirectives)!=null&&U.skip&&(E.deltaUpdateFailed=!0);return}if(I===this.currentLevel||n.withoutMultiVariant){I.fragmentError===0&&(I.loadError=0);let Q=I.details;Q===n.details&&Q.advanced&&(Q=void 0),this.playlistLoaded(_,n,Q)}else(s=n.deliveryDirectives)!=null&&s.skip&&(E.deltaUpdateFailed=!0)}loadPlaylist(t){super.loadPlaylist(),this.shouldLoadPlaylist(this.currentLevel)&&this.scheduleLoading(this.currentLevel,t)}loadingPlaylist(t,n){super.loadingPlaylist(t,n);const s=this.getUrlWithDirectives(t.uri,n),_=this.currentLevelIndex,E=t.attrs["PATHWAY-ID"],I=t.details,U=I==null?void 0:I.age;this.log(`Loading level index ${_}${(n==null?void 0:n.msn)!==void 0?" at sn "+n.msn+" part "+n.part:""}${E?" Pathway "+E:""}${U&&I.live?" age "+U.toFixed(1)+(I.type?" "+I.type||0:""):""} ${s}`),this.hls.trigger(o.LEVEL_LOADING,{url:s,level:_,levelInfo:t,pathwayId:t.attrs["PATHWAY-ID"],id:0,deliveryDirectives:n||null})}get nextLoadLevel(){return this.manualLevelIndex!==-1?this.manualLevelIndex:this.hls.nextAutoLevel}set nextLoadLevel(t){this.level=t,this.manualLevelIndex===-1&&(this.hls.nextAutoLevel=t)}removeLevel(t){var n;if(this._levels.length===1)return;const s=this._levels.filter((E,I)=>I!==t?!0:(this.steering&&this.steering.removeLevel(E),E===this.currentLevel&&(this.currentLevel=null,this.currentLevelIndex=-1,E.details&&E.details.fragments.forEach(U=>U.level=-1)),!1));Ra(s),this._levels=s,this.currentLevelIndex>-1&&(n=this.currentLevel)!=null&&n.details&&(this.currentLevelIndex=this.currentLevel.details.fragments[0].level),this.manualLevelIndex>-1&&(this.manualLevelIndex=this.currentLevelIndex);const _=s.length-1;this._firstLevel=Math.min(this._firstLevel,_),this._startLevel&&(this._startLevel=Math.min(this._startLevel,_)),this.hls.trigger(o.LEVELS_UPDATED,{levels:s})}onLevelsUpdated(t,{levels:n}){this._levels=n}checkMaxAutoUpdated(){const{autoLevelCapping:t,maxAutoLevel:n,maxHdcpLevel:s}=this.hls;this._maxAutoLevel!==n&&(this._maxAutoLevel=n,this.hls.trigger(o.MAX_AUTO_LEVEL_UPDATED,{autoLevelCapping:t,levels:this.levels,maxAutoLevel:n,minAutoLevel:this.hls.minAutoLevel,maxHdcpLevel:s}))}}function hd(D){const t={};D.forEach(n=>{const s=n.groupId||"";n.id=t[s]=t[s]||0,t[s]++})}function pd(){return self.SourceBuffer||self.WebKitSourceBuffer}function md(){if(!ae())return!1;const t=pd();return!t||t.prototype&&typeof t.prototype.appendBuffer=="function"&&typeof t.prototype.remove=="function"}function Cd(){if(!md())return!1;const D=ae();return typeof(D==null?void 0:D.isTypeSupported)=="function"&&(["avc1.42E01E,mp4a.40.2","av01.0.01M.08","vp09.00.50.08"].some(t=>D.isTypeSupported(ze(t,"video")))||["mp4a.40.2","fLaC"].some(t=>D.isTypeSupported(ze(t,"audio"))))}function Id(){var D;const t=pd();return typeof(t==null||(D=t.prototype)==null?void 0:D.changeType)=="function"}const _d=100;class vd extends Ft{constructor(t,n,s){super(t,n,s,"stream-controller",u.MAIN),this.audioCodecSwap=!1,this.level=-1,this._forceStartLoad=!1,this._hasEnoughToStart=!1,this.altAudio=0,this.audioOnly=!1,this.fragPlaying=null,this.fragLastKbps=0,this.couldBacktrack=!1,this.backtrackFragment=null,this.audioCodecSwitch=!1,this.videoBuffer=null,this.onMediaPlaying=()=>{this.tick()},this.onMediaSeeked=()=>{const _=this.media,E=_?_.currentTime:null;if(E===null||!r(E)||(this.log(`Media seeked to ${E.toFixed(3)}`),!this.getBufferedFrag(E)))return;const I=this.getFwdBufferInfoAtPos(_,E,u.MAIN,0);if(I===null||I.len===0){this.warn(`Main forward buffer length at ${E} on "seeked" event ${I?I.len:"empty"})`);return}this.tick()},this.registerListeners()}registerListeners(){super.registerListeners();const{hls:t}=this;t.on(o.MANIFEST_PARSED,this.onManifestParsed,this),t.on(o.LEVEL_LOADING,this.onLevelLoading,this),t.on(o.LEVEL_LOADED,this.onLevelLoaded,this),t.on(o.FRAG_LOAD_EMERGENCY_ABORTED,this.onFragLoadEmergencyAborted,this),t.on(o.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.on(o.AUDIO_TRACK_SWITCHED,this.onAudioTrackSwitched,this),t.on(o.BUFFER_CREATED,this.onBufferCreated,this),t.on(o.BUFFER_FLUSHED,this.onBufferFlushed,this),t.on(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.on(o.FRAG_BUFFERED,this.onFragBuffered,this)}unregisterListeners(){super.unregisterListeners();const{hls:t}=this;t.off(o.MANIFEST_PARSED,this.onManifestParsed,this),t.off(o.LEVEL_LOADED,this.onLevelLoaded,this),t.off(o.FRAG_LOAD_EMERGENCY_ABORTED,this.onFragLoadEmergencyAborted,this),t.off(o.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.off(o.AUDIO_TRACK_SWITCHED,this.onAudioTrackSwitched,this),t.off(o.BUFFER_CREATED,this.onBufferCreated,this),t.off(o.BUFFER_FLUSHED,this.onBufferFlushed,this),t.off(o.LEVELS_UPDATED,this.onLevelsUpdated,this),t.off(o.FRAG_BUFFERED,this.onFragBuffered,this)}onHandlerDestroying(){this.onMediaPlaying=this.onMediaSeeked=null,this.unregisterListeners(),super.onHandlerDestroying()}startLoad(t,n){if(this.levels){const{lastCurrentTime:s,hls:_}=this;if(this.stopLoad(),this.setInterval(_d),this.level=-1,!this.startFragRequested){let E=_.startLevel;E===-1&&(_.config.testBandwidth&&this.levels.length>1?(E=0,this.bitrateTest=!0):E=_.firstAutoLevel),_.nextLoadLevel=E,this.level=_.loadLevel,this._hasEnoughToStart=!!n}s>0&&t===-1&&!n&&(this.log(`Override startPosition with lastCurrentTime @${s.toFixed(3)}`),t=s),this.state=Pe.IDLE,this.nextLoadPosition=this.lastCurrentTime=t+this.timelineOffset,this.startPosition=n?-1:t,this.tick()}else this._forceStartLoad=!0,this.state=Pe.STOPPED}stopLoad(){this._forceStartLoad=!1,super.stopLoad()}doTick(){switch(this.state){case Pe.WAITING_LEVEL:{const{levels:t,level:n}=this,s=t==null?void 0:t[n],_=s==null?void 0:s.details;if(_&&(!_.live||this.levelLastLoaded===s&&!this.waitForLive(s))){if(this.waitForCdnTuneIn(_))break;this.state=Pe.IDLE;break}else if(this.hls.nextLoadLevel!==this.level){this.state=Pe.IDLE;break}break}case Pe.FRAG_LOADING_WAITING_RETRY:this.checkRetryDate();break}this.state===Pe.IDLE&&this.doTickIdle(),this.onTickEnd()}onTickEnd(){var t;super.onTickEnd(),(t=this.media)!=null&&t.readyState&&this.media.seeking===!1&&(this.lastCurrentTime=this.media.currentTime),this.checkFragmentChanged()}doTickIdle(){const{hls:t,levelLastLoaded:n,levels:s,media:_}=this;if(n===null||!_&&!this.primaryPrefetch&&(this.startFragRequested||!t.config.startFragPrefetch)||this.altAudio&&this.audioOnly)return;const E=this.buffering?t.nextLoadLevel:t.loadLevel;if(!(s!=null&&s[E]))return;const I=s[E],U=this.getMainFwdBufferInfo();if(U===null)return;const Q=this.getLevelDetails();if(Q&&this._streamEnded(U,Q)){const at={};this.altAudio===2&&(at.type="video"),this.hls.trigger(o.BUFFER_EOS,at),this.state=Pe.ENDED;return}if(!this.buffering)return;t.loadLevel!==E&&t.manualLevel===-1&&this.log(`Adapting to level ${E} from level ${this.level}`),this.level=t.nextLoadLevel=E;const G=I.details;if(!G||this.state===Pe.WAITING_LEVEL||this.waitForLive(I)){this.level=E,this.state=Pe.WAITING_LEVEL,this.startFragRequested=!1;return}const ue=U.len,de=this.getMaxBufferLength(I.maxBitrate);if(ue>=de)return;this.backtrackFragment&&this.backtrackFragment.start>U.end&&(this.backtrackFragment=null);const be=this.backtrackFragment?this.backtrackFragment.start:U.end;let Re=this.getNextFragment(be,G);if(this.couldBacktrack&&!this.fragPrevious&&Re&&Se(Re)&&this.fragmentTracker.getState(Re)!==hn.OK){var Le;const it=((Le=this.backtrackFragment)!=null?Le:Re).sn-G.startSN,Qt=G.fragments[it-1];Qt&&Re.cc===Qt.cc&&(Re=Qt,this.fragmentTracker.removeFragment(Qt))}else this.backtrackFragment&&U.len&&(this.backtrackFragment=null);if(Re&&this.isLoopLoading(Re,be)){if(!Re.gap){const it=this.audioOnly&&!this.altAudio?ie.AUDIO:ie.VIDEO,Qt=(it===ie.VIDEO?this.videoBuffer:this.mediaBuffer)||this.media;Qt&&this.afterBufferFlushed(Qt,it,u.MAIN)}Re=this.getNextFragmentLoopLoading(Re,G,U,u.MAIN,de)}Re&&(Re.initSegment&&!Re.initSegment.data&&!this.bitrateTest&&(Re=Re.initSegment),this.loadFragment(Re,I,be))}loadFragment(t,n,s){const _=this.fragmentTracker.getState(t);_===hn.NOT_LOADED||_===hn.PARTIAL?Se(t)?this.bitrateTest?(this.log(`Fragment ${t.sn} of level ${t.level} is being downloaded to test bitrate and will not be buffered`),this._loadBitrateTestFrag(t,n)):super.loadFragment(t,n,s):this._loadInitSegment(t,n):this.clearTrackerIfNeeded(t)}getBufferedFrag(t){return this.fragmentTracker.getBufferedFrag(t,u.MAIN)}followingBufferedFrag(t){return t?this.getBufferedFrag(t.end+.5):null}immediateLevelSwitch(){this.abortCurrentFrag(),this.flushMainBuffer(0,Number.POSITIVE_INFINITY)}nextLevelSwitch(){const{levels:t,media:n}=this;if(n!=null&&n.readyState){let s;const _=this.getAppendedFrag(n.currentTime);_&&_.start>1&&this.flushMainBuffer(0,_.start-1);const E=this.getLevelDetails();if(E!=null&&E.live){const U=this.getMainFwdBufferInfo();if(!U||U.len<E.targetduration*2)return}if(!n.paused&&t){const U=this.hls.nextLoadLevel,Q=t[U],G=this.fragLastKbps;G&&this.fragCurrent?s=this.fragCurrent.duration*Q.maxBitrate/(1e3*G)+1:s=0}else s=0;const I=this.getBufferedFrag(n.currentTime+s);if(I){const U=this.followingBufferedFrag(I);if(U){this.abortCurrentFrag();const Q=U.maxStartPTS?U.maxStartPTS:U.start,G=U.duration,ue=Math.max(I.end,Q+Math.min(Math.max(G-this.config.maxFragLookUpTolerance,G*(this.couldBacktrack?.5:.125)),G*(this.couldBacktrack?.75:.25)));this.flushMainBuffer(ue,Number.POSITIVE_INFINITY)}}}}abortCurrentFrag(){const t=this.fragCurrent;switch(this.fragCurrent=null,this.backtrackFragment=null,t&&(t.abortRequests(),this.fragmentTracker.removeFragment(t)),this.state){case Pe.KEY_LOADING:case Pe.FRAG_LOADING:case Pe.FRAG_LOADING_WAITING_RETRY:case Pe.PARSING:case Pe.PARSED:this.state=Pe.IDLE;break}this.nextLoadPosition=this.getLoadPosition()}flushMainBuffer(t,n){super.flushMainBuffer(t,n,this.altAudio===2?"video":null)}onMediaAttached(t,n){super.onMediaAttached(t,n);const s=n.media;ja(s,"playing",this.onMediaPlaying),ja(s,"seeked",this.onMediaSeeked)}onMediaDetaching(t,n){const{media:s}=this;s&&(os(s,"playing",this.onMediaPlaying),os(s,"seeked",this.onMediaSeeked)),this.videoBuffer=null,this.fragPlaying=null,super.onMediaDetaching(t,n),!n.transferMedia&&(this._hasEnoughToStart=!1)}onManifestLoading(){super.onManifestLoading(),this.log("Trigger BUFFER_RESET"),this.hls.trigger(o.BUFFER_RESET,void 0),this.couldBacktrack=!1,this.fragLastKbps=0,this.fragPlaying=this.backtrackFragment=null,this.altAudio=0,this.audioOnly=!1}onManifestParsed(t,n){let s=!1,_=!1;for(let E=0;E<n.levels.length;E++){const I=n.levels[E].audioCodec;I&&(s=s||I.indexOf("mp4a.40.2")!==-1,_=_||I.indexOf("mp4a.40.5")!==-1)}this.audioCodecSwitch=s&&_&&!Id(),this.audioCodecSwitch&&this.log("Both AAC/HE-AAC audio found in levels; declaring level codec as HE-AAC"),this.levels=n.levels,this.startFragRequested=!1}onLevelLoading(t,n){const{levels:s}=this;if(!s||this.state!==Pe.IDLE)return;const _=n.levelInfo;(!_.details||_.details.live&&(this.levelLastLoaded!==_||_.details.expired)||this.waitForCdnTuneIn(_.details))&&(this.state=Pe.WAITING_LEVEL)}onLevelLoaded(t,n){var s;const{levels:_,startFragRequested:E}=this,I=n.level,U=n.details,Q=U.totalduration;if(!_){this.warn(`Levels were reset while loading level ${I}`);return}this.log(`Level ${I} loaded [${U.startSN},${U.endSN}]${U.lastPartSn?`[part-${U.lastPartSn}-${U.lastPartIndex}]`:""}, cc [${U.startCC}, ${U.endCC}] duration:${Q}`);const G=n.levelInfo,ue=this.fragCurrent;ue&&(this.state===Pe.FRAG_LOADING||this.state===Pe.FRAG_LOADING_WAITING_RETRY)&&ue.level!==n.level&&ue.loader&&this.abortCurrentFrag();let de=0;if(U.live||(s=G.details)!=null&&s.live){var be;if(this.checkLiveUpdate(U),U.deltaUpdateFailed)return;de=this.alignPlaylists(U,G.details,(be=this.levelLastLoaded)==null?void 0:be.details)}if(G.details=U,this.levelLastLoaded=G,E||this.setStartPosition(U,de),this.hls.trigger(o.LEVEL_UPDATED,{details:U,level:I}),this.state===Pe.WAITING_LEVEL){if(this.waitForCdnTuneIn(U))return;this.state=Pe.IDLE}E&&U.live&&this.synchronizeToLiveEdge(U),this.tick()}synchronizeToLiveEdge(t){const{config:n,media:s}=this;if(!s)return;const _=this.hls.liveSyncPosition,E=this.getLoadPosition(),I=t.fragmentStart,U=t.edge,Q=E>=I-n.maxFragLookUpTolerance&&E<=U;if(_!==null&&s.duration>_&&(E<_||!Q)){const ue=n.liveMaxLatencyDuration!==void 0?n.liveMaxLatencyDuration:n.liveMaxLatencyDurationCount*t.targetduration;if((!Q&&s.readyState<4||E<U-ue)&&(this._hasEnoughToStart||(this.nextLoadPosition=_),s.readyState))if(this.warn(`Playback: ${E.toFixed(3)} is located too far from the end of live sliding playlist: ${U}, reset currentTime to : ${_.toFixed(3)}`),this.config.liveSyncMode==="buffered"){var G;const de=di.bufferInfo(s,_,0);if(!((G=de.buffered)!=null&&G.length)){s.currentTime=_;return}if(de.start<=E){s.currentTime=_;return}const{nextStart:Re}=di.bufferedInfo(de.buffered,E,0);Re&&(s.currentTime=Re)}else s.currentTime=_}}_handleFragmentLoadProgress(t){var n;const s=t.frag,{part:_,payload:E}=t,{levels:I}=this;if(!I){this.warn(`Levels were reset while fragment load was in progress. Fragment ${s.sn} of level ${s.level} will not be buffered`);return}const U=I[s.level];if(!U){this.warn(`Level ${s.level} not found on progress`);return}const Q=U.details;if(!Q){this.warn(`Dropping fragment ${s.sn} of level ${s.level} after level details were reset`),this.fragmentTracker.removeFragment(s);return}const G=U.videoCodec,ue=Q.PTSKnown||!Q.live,de=(n=s.initSegment)==null?void 0:n.data,be=this._getAudioCodec(U),Re=this.transmuxer=this.transmuxer||new il(this.hls,u.MAIN,this._handleTransmuxComplete.bind(this),this._handleTransmuxerFlush.bind(this)),Le=_?_.index:-1,at=Le!==-1,it=new zo(s.level,s.sn,s.stats.chunkCount,E.byteLength,Le,at),Qt=this.initPTS[s.cc];Re.push(E,de,be,G,s,_,Q.totalduration,ue,it,Qt)}onAudioTrackSwitching(t,n){const s=this.hls,_=this.altAudio===2;if(nt(n.url,s))this.altAudio=1;else{if(this.mediaBuffer!==this.media){this.log("Switching on main audio, use media.buffered to schedule main fragment loading"),this.mediaBuffer=this.media;const I=this.fragCurrent;I&&(this.log("Switching to main audio track, cancel main fragment load"),I.abortRequests(),this.fragmentTracker.removeFragment(I)),this.resetTransmuxer(),this.resetLoadingState()}else this.audioOnly&&this.resetTransmuxer();if(_){this.fragmentTracker.removeAllFragments(),s.once(o.BUFFER_FLUSHED,()=>{this.hls&&this.hls.trigger(o.AUDIO_TRACK_SWITCHED,n)}),s.trigger(o.BUFFER_FLUSHING,{startOffset:0,endOffset:Number.POSITIVE_INFINITY,type:null});return}s.trigger(o.AUDIO_TRACK_SWITCHED,n)}}onAudioTrackSwitched(t,n){const s=nt(n.url,this.hls);if(s){const _=this.videoBuffer;_&&this.mediaBuffer!==_&&(this.log("Switching on alternate audio, use video.buffered to schedule main fragment loading"),this.mediaBuffer=_)}this.altAudio=s?2:0,this.tick()}onBufferCreated(t,n){const s=n.tracks;let _,E,I=!1;for(const U in s){const Q=s[U];if(Q.id==="main"){if(E=U,_=Q,U==="video"){const G=s[U];G&&(this.videoBuffer=G.buffer)}}else I=!0}I&&_?(this.log(`Alternate track found, use ${E}.buffered to schedule main fragment loading`),this.mediaBuffer=_.buffer):this.mediaBuffer=this.media}onFragBuffered(t,n){const{frag:s,part:_}=n,E=s.type===u.MAIN;if(E){if(this.fragContextChanged(s)){this.warn(`Fragment ${s.sn}${_?" p: "+_.index:""} of level ${s.level} finished buffering, but was aborted. state: ${this.state}`),this.state===Pe.PARSED&&(this.state=Pe.IDLE);return}const U=_?_.stats:s.stats;this.fragLastKbps=Math.round(8*U.total/(U.buffering.end-U.loading.first)),Se(s)&&(this.fragPrevious=s),this.fragBufferedComplete(s,_)}const I=this.media;I&&(!this._hasEnoughToStart&&di.getBuffered(I).length&&(this._hasEnoughToStart=!0,this.seekToStartPos()),E&&this.tick())}get hasEnoughToStart(){return this._hasEnoughToStart}onError(t,n){var s;if(n.fatal){this.state=Pe.ERROR;return}switch(n.details){case f.FRAG_GAP:case f.FRAG_PARSING_ERROR:case f.FRAG_DECRYPT_ERROR:case f.FRAG_LOAD_ERROR:case f.FRAG_LOAD_TIMEOUT:case f.KEY_LOAD_ERROR:case f.KEY_LOAD_TIMEOUT:this.onFragmentOrKeyLoadError(u.MAIN,n);break;case f.LEVEL_LOAD_ERROR:case f.LEVEL_LOAD_TIMEOUT:case f.LEVEL_PARSING_ERROR:!n.levelRetry&&this.state===Pe.WAITING_LEVEL&&((s=n.context)==null?void 0:s.type)===h.LEVEL&&(this.state=Pe.IDLE);break;case f.BUFFER_ADD_CODEC_ERROR:case f.BUFFER_APPEND_ERROR:if(n.parent!=="main")return;this.reduceLengthAndFlushBuffer(n)&&this.resetLoadingState();break;case f.BUFFER_FULL_ERROR:if(n.parent!=="main")return;this.reduceLengthAndFlushBuffer(n)&&(!this.config.interstitialsController&&this.config.assetPlayerId?this._hasEnoughToStart=!0:this.flushMainBuffer(0,Number.POSITIVE_INFINITY));break;case f.INTERNAL_EXCEPTION:this.recoverWorkerError(n);break}}onFragLoadEmergencyAborted(){this.state=Pe.IDLE,this._hasEnoughToStart||(this.startFragRequested=!1,this.nextLoadPosition=this.lastCurrentTime),this.tickImmediate()}onBufferFlushed(t,{type:n}){if(n!==ie.AUDIO||!this.altAudio){const s=(n===ie.VIDEO?this.videoBuffer:this.mediaBuffer)||this.media;s&&(this.afterBufferFlushed(s,n,u.MAIN),this.tick())}}onLevelsUpdated(t,n){this.level>-1&&this.fragCurrent&&(this.level=this.fragCurrent.level,this.level===-1&&this.resetWhenMissingContext(this.fragCurrent)),this.levels=n.levels}swapAudioCodec(){this.audioCodecSwap=!this.audioCodecSwap}seekToStartPos(){const{media:t}=this;if(!t)return;const n=t.currentTime;let s=this.startPosition;if(s>=0&&n<s){if(t.seeking){this.log(`could not seek to ${s}, already seeking at ${n}`);return}const _=this.timelineOffset;_&&s&&(s+=_);const E=this.getLevelDetails(),I=di.getBuffered(t),U=I.length?I.start(0):0,Q=U-s,G=Math.max(this.config.maxBufferHole,this.config.maxFragLookUpTolerance);(this.config.startOnSegmentBoundary||Q>0&&(Q<G||this.loadingParts&&Q<2*((E==null?void 0:E.partTarget)||0)))&&(this.log(`adjusting start position by ${Q} to match buffer start`),s+=Q,this.startPosition=s),n<s&&(this.log(`seek to target start position ${s} from current time ${n} buffer start ${U}`),t.currentTime=s)}}_getAudioCodec(t){let n=this.config.defaultAudioCodec||t.audioCodec;return this.audioCodecSwap&&n&&(this.log("Swapping audio codec"),n.indexOf("mp4a.40.5")!==-1?n="mp4a.40.2":n="mp4a.40.5"),n}_loadBitrateTestFrag(t,n){t.bitrateTest=!0,this._doFragLoad(t,n).then(s=>{const{hls:_}=this,E=s==null?void 0:s.frag;if(!E||this.fragContextChanged(E))return;n.fragmentError=0,this.state=Pe.IDLE,this.startFragRequested=!1,this.bitrateTest=!1;const I=E.stats;I.parsing.start=I.parsing.end=I.buffering.start=I.buffering.end=self.performance.now(),_.trigger(o.FRAG_LOADED,s),E.bitrateTest=!1}).catch(s=>{this.state===Pe.STOPPED||this.state===Pe.ERROR||(this.warn(s),this.resetFragmentLoading(t))})}_handleTransmuxComplete(t){const n=this.playlistType,{hls:s}=this,{remuxResult:_,chunkMeta:E}=t,I=this.getCurrentContext(E);if(!I){this.resetWhenMissingContext(E);return}const{frag:U,part:Q,level:G}=I,{video:ue,text:de,id3:be,initSegment:Re}=_,{details:Le}=G,at=this.altAudio?void 0:_.audio;if(this.fragContextChanged(U)){this.fragmentTracker.removeFragment(U);return}if(this.state=Pe.PARSING,Re){const it=Re.tracks;if(it){const Ar=U.initSegment||U;if(this.unhandledEncryptionError(Re,U))return;this._bufferInitSegment(G,it,Ar,E),s.trigger(o.FRAG_PARSING_INIT_SEGMENT,{frag:Ar,id:n,tracks:it})}const Qt=Re.initPTS,ir=Re.timescale,ur=this.initPTS[U.cc];if(r(Qt)&&(!ur||ur.baseTime!==Qt||ur.timescale!==ir)){const Ar=Re.trackId;this.initPTS[U.cc]={baseTime:Qt,timescale:ir,trackId:Ar},s.trigger(o.INIT_PTS_FOUND,{frag:U,id:n,initPTS:Qt,timescale:ir,trackId:Ar})}}if(ue&&Le){at&&ue.type==="audiovideo"&&this.logMuxedErr(U);const it=Le.fragments[U.sn-1-Le.startSN],Qt=U.sn===Le.startSN,ir=!it||U.cc>it.cc;if(_.independent!==!1){const{startPTS:ur,endPTS:Ar,startDTS:Ur,endDTS:mn}=ue;if(Q)Q.elementaryStreams[ue.type]={startPTS:ur,endPTS:Ar,startDTS:Ur,endDTS:mn};else if(ue.firstKeyFrame&&ue.independent&&E.id===1&&!ir&&(this.couldBacktrack=!0),ue.dropped&&ue.independent){const zr=this.getMainFwdBufferInfo(),ln=(zr?zr.end:this.getLoadPosition())+this.config.maxBufferHole,on=ue.firstKeyFramePTS?ue.firstKeyFramePTS:ur;if(!Qt&&ln<on-this.config.maxBufferHole&&!ir){this.backtrack(U);return}else ir&&(U.gap=!0);U.setElementaryStreamInfo(ue.type,U.start,Ar,U.start,mn,!0)}else Qt&&ur-(Le.appliedTimelineOffset||0)>On&&(U.gap=!0);U.setElementaryStreamInfo(ue.type,ur,Ar,Ur,mn),this.backtrackFragment&&(this.backtrackFragment=U),this.bufferFragmentData(ue,U,Q,E,Qt||ir)}else if(Qt||ir)U.gap=!0;else{this.backtrack(U);return}}if(at){const{startPTS:it,endPTS:Qt,startDTS:ir,endDTS:ur}=at;Q&&(Q.elementaryStreams[ie.AUDIO]={startPTS:it,endPTS:Qt,startDTS:ir,endDTS:ur}),U.setElementaryStreamInfo(ie.AUDIO,it,Qt,ir,ur),this.bufferFragmentData(at,U,Q,E)}if(Le&&be!=null&&be.samples.length){const it={id:n,frag:U,details:Le,samples:be.samples};s.trigger(o.FRAG_PARSING_METADATA,it)}if(Le&&de){const it={id:n,frag:U,details:Le,samples:de.samples};s.trigger(o.FRAG_PARSING_USERDATA,it)}}logMuxedErr(t){this.warn(`${Se(t)?"Media":"Init"} segment with muxed audiovideo where only video expected: ${t.url}`)}_bufferInitSegment(t,n,s,_){if(this.state!==Pe.PARSING)return;this.audioOnly=!!n.audio&&!n.video,this.altAudio&&!this.audioOnly&&(delete n.audio,n.audiovideo&&this.logMuxedErr(s));const{audio:E,video:I,audiovideo:U}=n;if(E){const G=t.audioCodec;let ue=an(E.codec,G);ue==="mp4a"&&(ue="mp4a.40.5");const de=navigator.userAgent.toLowerCase();if(this.audioCodecSwitch){ue&&(ue.indexOf("mp4a.40.5")!==-1?ue="mp4a.40.2":ue="mp4a.40.5");const be=E.metadata;be&&"channelCount"in be&&(be.channelCount||1)!==1&&de.indexOf("firefox")===-1&&(ue="mp4a.40.5")}ue&&ue.indexOf("mp4a.40.5")!==-1&&de.indexOf("android")!==-1&&E.container!=="audio/mpeg"&&(ue="mp4a.40.2",this.log(`Android: force audio codec to ${ue}`)),G&&G!==ue&&this.log(`Swapping manifest audio codec "${G}" for "${ue}"`),E.levelCodec=ue,E.id=u.MAIN,this.log(`Init audio buffer, container:${E.container}, codecs[selected/level/parsed]=[${ue||""}/${G||""}/${E.codec}]`),delete n.audiovideo}if(I){I.levelCodec=t.videoCodec,I.id=u.MAIN;const G=I.codec;if((G==null?void 0:G.length)===4)switch(G){case"hvc1":case"hev1":I.codec="hvc1.1.6.L120.90";break;case"av01":I.codec="av01.0.04M.08";break;case"avc1":I.codec="avc1.42e01e";break}this.log(`Init video buffer, container:${I.container}, codecs[level/parsed]=[${t.videoCodec||""}/${G}]${I.codec!==G?" parsed-corrected="+I.codec:""}${I.supplemental?" supplemental="+I.supplemental:""}`),delete n.audiovideo}U&&(this.log(`Init audiovideo buffer, container:${U.container}, codecs[level/parsed]=[${t.codecs}/${U.codec}]`),delete n.video,delete n.audio);const Q=Object.keys(n);if(Q.length){if(this.hls.trigger(o.BUFFER_CODECS,n),!this.hls)return;Q.forEach(G=>{const de=n[G].initSegment;de!=null&&de.byteLength&&this.hls.trigger(o.BUFFER_APPENDING,{type:G,data:de,frag:s,part:null,chunkMeta:_,parent:s.type})})}this.tickImmediate()}getMainFwdBufferInfo(){const t=this.mediaBuffer&&this.altAudio===2?this.mediaBuffer:this.media;return this.getFwdBufferInfo(t,u.MAIN)}get maxBufferLength(){const{levels:t,level:n}=this,s=t==null?void 0:t[n];return s?this.getMaxBufferLength(s.maxBitrate):this.config.maxBufferLength}backtrack(t){this.couldBacktrack=!0,this.backtrackFragment=t,this.resetTransmuxer(),this.flushBufferGap(t),this.fragmentTracker.removeFragment(t),this.fragPrevious=null,this.nextLoadPosition=t.start,this.state=Pe.IDLE}checkFragmentChanged(){const t=this.media;let n=null;if(t&&t.readyState>1&&t.seeking===!1){const s=t.currentTime;if(di.isBuffered(t,s)?n=this.getAppendedFrag(s):di.isBuffered(t,s+.1)&&(n=this.getAppendedFrag(s+.1)),n){this.backtrackFragment=null;const _=this.fragPlaying,E=n.level;(!_||n.sn!==_.sn||_.level!==E)&&(this.fragPlaying=n,this.hls.trigger(o.FRAG_CHANGED,{frag:n}),(!_||_.level!==E)&&this.hls.trigger(o.LEVEL_SWITCHED,{level:E}))}}}get nextLevel(){const t=this.nextBufferedFrag;return t?t.level:-1}get currentFrag(){var t;if(this.fragPlaying)return this.fragPlaying;const n=((t=this.media)==null?void 0:t.currentTime)||this.lastCurrentTime;return r(n)?this.getAppendedFrag(n):null}get currentProgramDateTime(){var t;const n=((t=this.media)==null?void 0:t.currentTime)||this.lastCurrentTime;if(r(n)){const s=this.getLevelDetails(),_=this.currentFrag||(s?hr(null,s.fragments,n):null);if(_){const E=_.programDateTime;if(E!==null){const I=E+(n-_.start)*1e3;return new Date(I)}}}return null}get currentLevel(){const t=this.currentFrag;return t?t.level:-1}get nextBufferedFrag(){const t=this.currentFrag;return t?this.followingBufferedFrag(t):null}get forceStartLoad(){return this._forceStartLoad}}class Pd extends R{constructor(t,n){super("key-loader",n),this.config=void 0,this.keyIdToKeyInfo={},this.emeController=null,this.config=t}abort(t){for(const s in this.keyIdToKeyInfo){const _=this.keyIdToKeyInfo[s].loader;if(_){var n;if(t&&t!==((n=_.context)==null?void 0:n.frag.type))return;_.abort()}}}detach(){for(const t in this.keyIdToKeyInfo){const n=this.keyIdToKeyInfo[t];(n.mediaKeySessionContext||n.decryptdata.isCommonEncryption)&&delete this.keyIdToKeyInfo[t]}}destroy(){this.detach();for(const t in this.keyIdToKeyInfo){const n=this.keyIdToKeyInfo[t].loader;n&&n.destroy()}this.keyIdToKeyInfo={}}createKeyLoadError(t,n=f.KEY_LOAD_ERROR,s,_,E){return new Ji({type:c.NETWORK_ERROR,details:n,fatal:!1,frag:t,response:E,error:s,networkDetails:_})}loadClear(t,n,s){if(this.emeController&&this.config.emeEnabled&&!this.emeController.getSelectedKeySystemFormats().length){if(n.length)for(let _=0,E=n.length;_<E;_++){const I=n[_];if(t.cc<=I.cc&&(!Se(t)||!Se(I)||t.sn<I.sn)||!s&&_==E-1)return this.emeController.selectKeySystemFormat(I).then(U=>{if(!this.emeController)return;I.setKeyFormat(U);const Q=Jo(U);if(Q)return this.emeController.getKeySystemAccess([Q])})}if(this.config.requireKeySystemAccessOnStart){const _=Mo(this.config);if(_.length)return this.emeController.getKeySystemAccess(_)}}return null}load(t){return!t.decryptdata&&t.encrypted&&this.emeController&&this.config.emeEnabled?this.emeController.selectKeySystemFormat(t).then(n=>this.loadInternal(t,n)):this.loadInternal(t)}loadInternal(t,n){var s,_;n&&t.setKeyFormat(n);const E=t.decryptdata;if(!E){const G=new Error(n?`Expected frag.decryptdata to be defined after setting format ${n}`:`Missing decryption data on fragment in onKeyLoading (emeEnabled with controller: ${this.emeController&&this.config.emeEnabled})`);return Promise.reject(this.createKeyLoadError(t,f.KEY_LOAD_ERROR,G))}const I=E.uri;if(!I)return Promise.reject(this.createKeyLoadError(t,f.KEY_LOAD_ERROR,new Error(`Invalid key URI: "${I}"`)));const U=ld(E);let Q=this.keyIdToKeyInfo[U];if((s=Q)!=null&&s.decryptdata.key)return E.key=Q.decryptdata.key,Promise.resolve({frag:t,keyInfo:Q});if(this.emeController&&(_=Q)!=null&&_.keyLoadPromise)switch(this.emeController.getKeyStatus(Q.decryptdata)){case"usable":case"usable-in-future":return Q.keyLoadPromise.then(ue=>{const{keyInfo:de}=ue;return E.key=de.decryptdata.key,{frag:t,keyInfo:de}})}switch(this.log(`${this.keyIdToKeyInfo[U]?"Rel":"L"}oading${E.keyId?" keyId: "+X(E.keyId):""} URI: ${E.uri} from ${t.type} ${t.level}`),Q=this.keyIdToKeyInfo[U]={decryptdata:E,keyLoadPromise:null,loader:null,mediaKeySessionContext:null},E.method){case"SAMPLE-AES":case"SAMPLE-AES-CENC":case"SAMPLE-AES-CTR":return E.keyFormat==="identity"?this.loadKeyHTTP(Q,t):this.loadKeyEME(Q,t);case"AES-128":case"AES-256":case"AES-256-CTR":return this.loadKeyHTTP(Q,t);default:return Promise.reject(this.createKeyLoadError(t,f.KEY_LOAD_ERROR,new Error(`Key supplied with unsupported METHOD: "${E.method}"`)))}}loadKeyEME(t,n){const s={frag:n,keyInfo:t};if(this.emeController&&this.config.emeEnabled){var _;if(!t.decryptdata.keyId&&(_=n.initSegment)!=null&&_.data){const I=pt(n.initSegment.data);if(I.length){const U=I[0];U.some(Q=>Q!==0)&&(this.log(`Using keyId found in init segment ${X(U)}`),t.decryptdata.keyId=U,Ho.setKeyIdForUri(t.decryptdata.uri,U))}}const E=this.emeController.loadKey(s);return(t.keyLoadPromise=E.then(I=>(t.mediaKeySessionContext=I,s))).catch(I=>{throw t.keyLoadPromise=null,"data"in I&&(I.data.frag=n),I})}return Promise.resolve(s)}loadKeyHTTP(t,n){const s=this.config,_=s.loader,E=new _(s);return n.keyLoader=t.loader=E,t.keyLoadPromise=new Promise((I,U)=>{const Q={keyInfo:t,frag:n,responseType:"arraybuffer",url:t.decryptdata.uri},G=s.keyLoadPolicy.default,ue={loadPolicy:G,timeout:G.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0},de={onSuccess:(be,Re,Le,at)=>{const{frag:it,keyInfo:Qt}=Le,ir=ld(Qt.decryptdata);if(!it.decryptdata||Qt!==this.keyIdToKeyInfo[ir])return U(this.createKeyLoadError(it,f.KEY_LOAD_ERROR,new Error("after key load, decryptdata unset or changed"),at));Qt.decryptdata.key=it.decryptdata.key=new Uint8Array(be.data),it.keyLoader=null,Qt.loader=null,I({frag:it,keyInfo:Qt})},onError:(be,Re,Le,at)=>{this.resetLoader(Re),U(this.createKeyLoadError(n,f.KEY_LOAD_ERROR,new Error(`HTTP Error ${be.code} loading key ${be.text}`),Le,b({url:Q.url,data:void 0},be)))},onTimeout:(be,Re,Le)=>{this.resetLoader(Re),U(this.createKeyLoadError(n,f.KEY_LOAD_TIMEOUT,new Error("key loading timed out"),Le))},onAbort:(be,Re,Le)=>{this.resetLoader(Re),U(this.createKeyLoadError(n,f.INTERNAL_ABORTED,new Error("key loading aborted"),Le))}};E.load(Q,ue,de)})}resetLoader(t){const{frag:n,keyInfo:s,url:_}=t,E=s.loader;n.keyLoader===E&&(n.keyLoader=null,s.loader=null);const I=ld(s.decryptdata)||_;delete this.keyIdToKeyInfo[I],E&&E.destroy()}}function ld(D){if(D.keyFormat!==ms.FAIRPLAY){const t=D.keyId;if(t)return X(t)}return D.uri}function gd(D){const{type:t}=D;switch(t){case h.AUDIO_TRACK:return u.AUDIO;case h.SUBTITLE_TRACK:return u.SUBTITLE;default:return u.MAIN}}function cd(D,t){let n=D.url;return(n===void 0||n.indexOf("data:")===0)&&(n=t.url),n}class td{constructor(t){this.hls=void 0,this.loaders=Object.create(null),this.variableList=null,this.onManifestLoaded=this.checkAutostartLoad,this.hls=t,this.registerListeners()}startLoad(t){}stopLoad(){this.destroyInternalLoaders()}registerListeners(){const{hls:t}=this;t.on(o.MANIFEST_LOADING,this.onManifestLoading,this),t.on(o.LEVEL_LOADING,this.onLevelLoading,this),t.on(o.AUDIO_TRACK_LOADING,this.onAudioTrackLoading,this),t.on(o.SUBTITLE_TRACK_LOADING,this.onSubtitleTrackLoading,this),t.on(o.LEVELS_UPDATED,this.onLevelsUpdated,this)}unregisterListeners(){const{hls:t}=this;t.off(o.MANIFEST_LOADING,this.onManifestLoading,this),t.off(o.LEVEL_LOADING,this.onLevelLoading,this),t.off(o.AUDIO_TRACK_LOADING,this.onAudioTrackLoading,this),t.off(o.SUBTITLE_TRACK_LOADING,this.onSubtitleTrackLoading,this),t.off(o.LEVELS_UPDATED,this.onLevelsUpdated,this)}createInternalLoader(t){const n=this.hls.config,s=n.pLoader,_=n.loader,E=s||_,I=new E(n);return this.loaders[t.type]=I,I}getInternalLoader(t){return this.loaders[t.type]}resetInternalLoader(t){this.loaders[t]&&delete this.loaders[t]}destroyInternalLoaders(){for(const t in this.loaders){const n=this.loaders[t];n&&n.destroy(),this.resetInternalLoader(t)}}destroy(){this.variableList=null,this.unregisterListeners(),this.destroyInternalLoaders()}onManifestLoading(t,n){const{url:s}=n;this.variableList=null,this.load({id:null,level:0,responseType:"text",type:h.MANIFEST,url:s,deliveryDirectives:null,levelOrTrack:null})}onLevelLoading(t,n){const{id:s,level:_,pathwayId:E,url:I,deliveryDirectives:U,levelInfo:Q}=n;this.load({id:s,level:_,pathwayId:E,responseType:"text",type:h.LEVEL,url:I,deliveryDirectives:U,levelOrTrack:Q})}onAudioTrackLoading(t,n){const{id:s,groupId:_,url:E,deliveryDirectives:I,track:U}=n;this.load({id:s,groupId:_,level:null,responseType:"text",type:h.AUDIO_TRACK,url:E,deliveryDirectives:I,levelOrTrack:U})}onSubtitleTrackLoading(t,n){const{id:s,groupId:_,url:E,deliveryDirectives:I,track:U}=n;this.load({id:s,groupId:_,level:null,responseType:"text",type:h.SUBTITLE_TRACK,url:E,deliveryDirectives:I,levelOrTrack:U})}onLevelsUpdated(t,n){const s=this.loaders[h.LEVEL];if(s){const _=s.context;_&&!n.levels.some(E=>E===_.levelOrTrack)&&(s.abort(),delete this.loaders[h.LEVEL])}}load(t){var n;const s=this.hls.config;let _=this.getInternalLoader(t);if(_){const G=this.hls.logger,ue=_.context;if(ue&&ue.levelOrTrack===t.levelOrTrack&&(ue.url===t.url||ue.deliveryDirectives&&!t.deliveryDirectives)){ue.url===t.url?G.log(`[playlist-loader]: ignore ${t.url} ongoing request`):G.log(`[playlist-loader]: ignore ${t.url} in favor of ${ue.url}`);return}G.log(`[playlist-loader]: aborting previous loader for type: ${t.type}`),_.abort()}let E;if(t.type===h.MANIFEST?E=s.manifestLoadPolicy.default:E=y({},s.playlistLoadPolicy.default,{timeoutRetry:null,errorRetry:null}),_=this.createInternalLoader(t),r((n=t.deliveryDirectives)==null?void 0:n.part)){let G;if(t.type===h.LEVEL&&t.level!==null?G=this.hls.levels[t.level].details:t.type===h.AUDIO_TRACK&&t.id!==null?G=this.hls.audioTracks[t.id].details:t.type===h.SUBTITLE_TRACK&&t.id!==null&&(G=this.hls.subtitleTracks[t.id].details),G){const ue=G.partTarget,de=G.targetduration;if(ue&&de){const be=Math.max(ue*3,de*.8)*1e3;E=y({},E,{maxTimeToFirstByteMs:Math.min(be,E.maxTimeToFirstByteMs),maxLoadTimeMs:Math.min(be,E.maxTimeToFirstByteMs)})}}}const I=E.errorRetry||E.timeoutRetry||{},U={loadPolicy:E,timeout:E.maxLoadTimeMs,maxRetry:I.maxNumRetry||0,retryDelay:I.retryDelayMs||0,maxRetryDelay:I.maxRetryDelayMs||0},Q={onSuccess:(G,ue,de,be)=>{const Re=this.getInternalLoader(de);this.resetInternalLoader(de.type);const Le=G.data;ue.parsing.start=performance.now(),Ko.isMediaPlaylist(Le)||de.type!==h.MANIFEST?this.handleTrackOrLevelPlaylist(G,ue,de,be||null,Re):this.handleMasterPlaylist(G,ue,de,be)},onError:(G,ue,de,be)=>{this.handleNetworkError(ue,de,!1,G,be)},onTimeout:(G,ue,de)=>{this.handleNetworkError(ue,de,!0,void 0,G)}};_.load(t,U,Q)}checkAutostartLoad(){if(!this.hls)return;const{config:{autoStartLoad:t,startPosition:n},forceStartLoad:s}=this.hls;(t||s)&&(this.hls.logger.log(`${t?"auto":"force"} startLoad with configured startPosition ${n}`),this.hls.startLoad(n))}handleMasterPlaylist(t,n,s,_){const E=this.hls,I=t.data,U=cd(t,s),Q=Ko.parseMasterPlaylist(I,U);if(Q.playlistParsingError){n.parsing.end=performance.now(),this.handleManifestParsingError(t,s,Q.playlistParsingError,_,n);return}const{contentSteering:G,levels:ue,sessionData:de,sessionKeys:be,startTimeOffset:Re,variableList:Le}=Q;this.variableList=Le,ue.forEach(ir=>{const{unknownCodecs:ur}=ir;if(ur){const{preferManagedMediaSource:Ar}=this.hls.config;let{audioCodec:Ur,videoCodec:mn}=ir;for(let zr=ur.length;zr--;){const ln=ur[zr];Te(ln,"audio",Ar)?(ir.audioCodec=Ur=Ur?`${Ur},${ln}`:ln,Gt.audio[Ur.substring(0,4)]=2,ur.splice(zr,1)):Te(ln,"video",Ar)&&(ir.videoCodec=mn=mn?`${mn},${ln}`:ln,Gt.video[mn.substring(0,4)]=2,ur.splice(zr,1))}}});const{AUDIO:at=[],SUBTITLES:it,"CLOSED-CAPTIONS":Qt}=Ko.parseMasterPlaylistMedia(I,U,Q);at.length&&!at.some(ur=>!ur.url)&&ue[0].audioCodec&&!ue[0].attrs.AUDIO&&(this.hls.logger.log("[playlist-loader]: audio codec signaled in quality level, but no embedded audio track signaled, create one"),at.unshift({type:"main",name:"main",groupId:"main",default:!1,autoselect:!1,forced:!1,id:-1,attrs:new Ni({}),bitrate:0,url:""})),E.trigger(o.MANIFEST_LOADED,{levels:ue,audioTracks:at,subtitles:it,captions:Qt,contentSteering:G,url:U,stats:n,networkDetails:_,sessionData:de,sessionKeys:be,startTimeOffset:Re,variableList:Le})}handleTrackOrLevelPlaylist(t,n,s,_,E){const I=this.hls,{id:U,level:Q,type:G}=s,ue=cd(t,s),de=r(Q)?Q:r(U)?U:0,be=gd(s),Re=Ko.parseLevelPlaylist(t.data,ue,de,be,0,this.variableList);if(G===h.MANIFEST){const Le={attrs:new Ni({}),bitrate:0,details:Re,name:"",url:ue};Re.requestScheduled=n.loading.start+gi(Re,0),I.trigger(o.MANIFEST_LOADED,{levels:[Le],audioTracks:[],url:ue,stats:n,networkDetails:_,sessionData:null,sessionKeys:null,contentSteering:null,startTimeOffset:null,variableList:null})}n.parsing.end=performance.now(),s.levelDetails=Re,this.handlePlaylistLoaded(Re,t,n,s,_,E)}handleManifestParsingError(t,n,s,_,E){this.hls.trigger(o.ERROR,{type:c.NETWORK_ERROR,details:f.MANIFEST_PARSING_ERROR,fatal:n.type===h.MANIFEST,url:t.url,err:s,error:s,reason:s.message,response:t,context:n,networkDetails:_,stats:E})}handleNetworkError(t,n,s=!1,_,E){let I=`A network ${s?"timeout":"error"+(_?" (status "+_.code+")":"")} occurred while loading ${t.type}`;t.type===h.LEVEL?I+=`: ${t.level} id: ${t.id}`:(t.type===h.AUDIO_TRACK||t.type===h.SUBTITLE_TRACK)&&(I+=` id: ${t.id} group-id: "${t.groupId}"`);const U=new Error(I);this.hls.logger.warn(`[playlist-loader]: ${I}`);let Q=f.UNKNOWN,G=!1;const ue=this.getInternalLoader(t);switch(t.type){case h.MANIFEST:Q=s?f.MANIFEST_LOAD_TIMEOUT:f.MANIFEST_LOAD_ERROR,G=!0;break;case h.LEVEL:Q=s?f.LEVEL_LOAD_TIMEOUT:f.LEVEL_LOAD_ERROR,G=!1;break;case h.AUDIO_TRACK:Q=s?f.AUDIO_TRACK_LOAD_TIMEOUT:f.AUDIO_TRACK_LOAD_ERROR,G=!1;break;case h.SUBTITLE_TRACK:Q=s?f.SUBTITLE_TRACK_LOAD_TIMEOUT:f.SUBTITLE_LOAD_ERROR,G=!1;break}ue&&this.resetInternalLoader(t.type);const de={type:c.NETWORK_ERROR,details:Q,fatal:G,url:t.url,loader:ue,context:t,error:U,networkDetails:n,stats:E};if(_){const be=(n==null?void 0:n.url)||t.url;de.response=b({url:be,data:void 0},_)}this.hls.trigger(o.ERROR,de)}handlePlaylistLoaded(t,n,s,_,E,I){const U=this.hls,{type:Q,level:G,levelOrTrack:ue,id:de,groupId:be,deliveryDirectives:Re}=_,Le=cd(n,_),at=gd(_);let it=typeof _.level=="number"&&at===u.MAIN?G:void 0;const Qt=t.playlistParsingError;if(Qt){if(this.hls.logger.warn(`${Qt} ${t.url}`),!U.config.ignorePlaylistParsingErrors){U.trigger(o.ERROR,{type:c.NETWORK_ERROR,details:f.LEVEL_PARSING_ERROR,fatal:!1,url:Le,error:Qt,reason:Qt.message,response:n,context:_,level:it,parent:at,networkDetails:E,stats:s});return}t.playlistParsingError=null}if(!t.fragments.length){const ir=t.playlistParsingError=new Error("No Segments found in Playlist");U.trigger(o.ERROR,{type:c.NETWORK_ERROR,details:f.LEVEL_EMPTY_ERROR,fatal:!1,url:Le,error:ir,reason:ir.message,response:n,context:_,level:it,parent:at,networkDetails:E,stats:s});return}switch(t.live&&I&&(I.getCacheAge&&(t.ageHeader=I.getCacheAge()||0),(!I.getCacheAge||isNaN(t.ageHeader))&&(t.ageHeader=0)),Q){case h.MANIFEST:case h.LEVEL:if(it){if(!ue)it=0;else if(ue!==U.levels[it]){const ir=U.levels.indexOf(ue);ir>-1&&(it=ir)}}U.trigger(o.LEVEL_LOADED,{details:t,levelInfo:ue||U.levels[0],level:it||0,id:de||0,stats:s,networkDetails:E,deliveryDirectives:Re,withoutMultiVariant:Q===h.MANIFEST});break;case h.AUDIO_TRACK:U.trigger(o.AUDIO_TRACK_LOADED,{details:t,track:ue,id:de||0,groupId:be||"",stats:s,networkDetails:E,deliveryDirectives:Re});break;case h.SUBTITLE_TRACK:U.trigger(o.SUBTITLE_TRACK_LOADED,{details:t,track:ue,id:de||0,groupId:be||"",stats:s,networkDetails:E,deliveryDirectives:Re});break}}}class Pf{static get version(){return ni}static isMSESupported(){return md()}static isSupported(){return Cd()}static getMediaSource(){return ae()}static get Events(){return o}static get MetadataSchema(){return gn}static get ErrorTypes(){return c}static get ErrorDetails(){return f}static get DefaultConfig(){return Pf.defaultConfig?Pf.defaultConfig:$a}static set DefaultConfig(t){Pf.defaultConfig=t}constructor(t={}){this.config=void 0,this.userConfig=void 0,this.logger=void 0,this.coreComponents=void 0,this.networkControllers=void 0,this._emitter=new ri,this._autoLevelCapping=-1,this._maxHdcpLevel=null,this.abrController=void 0,this.bufferController=void 0,this.capLevelController=void 0,this.latencyController=void 0,this.levelController=void 0,this.streamController=void 0,this.audioStreamController=void 0,this.subtititleStreamController=void 0,this.audioTrackController=void 0,this.subtitleTrackController=void 0,this.interstitialsController=void 0,this.gapController=void 0,this.emeController=void 0,this.cmcdController=void 0,this._media=null,this._url=null,this._sessionId=void 0,this.triggeringException=void 0,this.started=!1;const n=this.logger=H(t.debug||!1,"Hls instance",t.assetPlayerId),s=this.config=nn(Pf.DefaultConfig,t,n);this.userConfig=t,s.progressive&&rn(s,n);const{abrController:_,bufferController:E,capLevelController:I,errorController:U,fpsController:Q}=s,G=new U(this),ue=this.abrController=new _(this),de=new Si(this),be=s.interstitialsController,Re=be?this.interstitialsController=new be(this,Pf):null,Le=this.bufferController=new E(this,de),at=this.capLevelController=new I(this),it=new Q(this),Qt=new td(this),ir=s.contentSteeringController,ur=ir?new ir(this):null,Ar=this.levelController=new Td(this,ur),Ur=new Sd(this),mn=new Pd(this.config,this.logger),zr=this.streamController=new vd(this,de,mn),ln=this.gapController=new Qa(this,de);at.setStreamController(zr),it.setStreamController(zr);const on=[Qt,Ar,zr];Re&&on.splice(1,0,Re),ur&&on.splice(1,0,ur),this.networkControllers=on;const Qr=[ue,Le,ln,at,it,Ur,de];this.audioTrackController=this.createController(s.audioTrackController,on);const Dn=s.audioStreamController;Dn&&on.push(this.audioStreamController=new Dn(this,de,mn)),this.subtitleTrackController=this.createController(s.subtitleTrackController,on);const Ei=s.subtitleStreamController;Ei&&on.push(this.subtititleStreamController=new Ei(this,de,mn)),this.createController(s.timelineController,Qr),mn.emeController=this.emeController=this.createController(s.emeController,Qr),this.cmcdController=this.createController(s.cmcdController,Qr),this.latencyController=this.createController(Ad,Qr),this.coreComponents=Qr,on.push(G);const Ki=G.onErrorOut;typeof Ki=="function"&&this.on(o.ERROR,Ki,G),this.on(o.MANIFEST_LOADED,Qt.onManifestLoaded,Qt)}createController(t,n){if(t){const s=new t(this);return n&&n.push(s),s}return null}on(t,n,s=this){this._emitter.on(t,n,s)}once(t,n,s=this){this._emitter.once(t,n,s)}removeAllListeners(t){this._emitter.removeAllListeners(t)}off(t,n,s=this,_){this._emitter.off(t,n,s,_)}listeners(t){return this._emitter.listeners(t)}emit(t,n,s){return this._emitter.emit(t,n,s)}trigger(t,n){if(this.config.debug)return this.emit(t,t,n);try{return this.emit(t,t,n)}catch(s){if(this.logger.error("An internal error happened while handling event "+t+'. Error message: "'+s.message+'". Here is a stacktrace:',s),!this.triggeringException){this.triggeringException=!0;const _=t===o.ERROR;this.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.INTERNAL_EXCEPTION,fatal:_,event:t,error:s}),this.triggeringException=!1}}return!1}listenerCount(t){return this._emitter.listenerCount(t)}destroy(){this.logger.log("destroy"),this.trigger(o.DESTROYING,void 0),this.detachMedia(),this.removeAllListeners(),this._autoLevelCapping=-1,this._url=null,this.networkControllers.forEach(n=>n.destroy()),this.networkControllers.length=0,this.coreComponents.forEach(n=>n.destroy()),this.coreComponents.length=0;const t=this.config;t.xhrSetup=t.fetchSetup=void 0,this.userConfig=null}attachMedia(t){if(!t||"media"in t&&!t.media){const E=new Error(`attachMedia failed: invalid argument (${t})`);this.trigger(o.ERROR,{type:c.OTHER_ERROR,details:f.ATTACH_MEDIA_ERROR,fatal:!0,error:E});return}this.logger.log("attachMedia"),this._media&&(this.logger.warn("media must be detached before attaching"),this.detachMedia());const n="media"in t,s=n?t.media:t,_=n?t:{media:s};this._media=s,this.trigger(o.MEDIA_ATTACHING,_)}detachMedia(){this.logger.log("detachMedia"),this.trigger(o.MEDIA_DETACHING,{}),this._media=null}transferMedia(){this._media=null;const t=this.bufferController.transferMedia();return this.trigger(o.MEDIA_DETACHING,{transferMedia:t}),t}loadSource(t){this.stopLoad();const n=this.media,s=this._url,_=this._url=z.buildAbsoluteURL(self.location.href,t,{alwaysNormalize:!0});this._autoLevelCapping=-1,this._maxHdcpLevel=null,this.logger.log(`loadSource:${_}`),n&&s&&(s!==_||this.bufferController.hasSourceTypes())&&(this.detachMedia(),this.attachMedia(n)),this.trigger(o.MANIFEST_LOADING,{url:t})}get url(){return this._url}get hasEnoughToStart(){return this.streamController.hasEnoughToStart}get startPosition(){return this.streamController.startPositionValue}startLoad(t=-1,n){this.logger.log(`startLoad(${t+(n?", <skip seek to start>":"")})`),this.started=!0,this.resumeBuffering();for(let s=0;s<this.networkControllers.length&&(this.networkControllers[s].startLoad(t,n),!(!this.started||!this.networkControllers));s++);}stopLoad(){this.logger.log("stopLoad"),this.started=!1;for(let t=0;t<this.networkControllers.length&&(this.networkControllers[t].stopLoad(),!(this.started||!this.networkControllers));t++);}get loadingEnabled(){return this.started}get bufferingEnabled(){return this.streamController.bufferingEnabled}resumeBuffering(){this.bufferingEnabled||(this.logger.log("resume buffering"),this.networkControllers.forEach(t=>{t.resumeBuffering&&t.resumeBuffering()}))}pauseBuffering(){this.bufferingEnabled&&(this.logger.log("pause buffering"),this.networkControllers.forEach(t=>{t.pauseBuffering&&t.pauseBuffering()}))}get inFlightFragments(){const t={[u.MAIN]:this.streamController.inFlightFrag};return this.audioStreamController&&(t[u.AUDIO]=this.audioStreamController.inFlightFrag),this.subtititleStreamController&&(t[u.SUBTITLE]=this.subtititleStreamController.inFlightFrag),t}swapAudioCodec(){this.logger.log("swapAudioCodec"),this.streamController.swapAudioCodec()}recoverMediaError(){this.logger.log("recoverMediaError");const t=this._media,n=t==null?void 0:t.currentTime;this.detachMedia(),t&&(this.attachMedia(t),n&&this.startLoad(n))}removeLevel(t){this.levelController.removeLevel(t)}get sessionId(){let t=this._sessionId;return t||(t=this._sessionId=rf()),t}get levels(){const t=this.levelController.levels;return t||[]}get latestLevelDetails(){return this.streamController.getLevelDetails()||null}get loadLevelObj(){return this.levelController.loadLevelObj}get currentLevel(){return this.streamController.currentLevel}set currentLevel(t){this.logger.log(`set currentLevel:${t}`),this.levelController.manualLevel=t,this.streamController.immediateLevelSwitch()}get nextLevel(){return this.streamController.nextLevel}set nextLevel(t){this.logger.log(`set nextLevel:${t}`),this.levelController.manualLevel=t,this.streamController.nextLevelSwitch()}get loadLevel(){return this.levelController.level}set loadLevel(t){this.logger.log(`set loadLevel:${t}`),this.levelController.manualLevel=t}get nextLoadLevel(){return this.levelController.nextLoadLevel}set nextLoadLevel(t){this.levelController.nextLoadLevel=t}get firstLevel(){return Math.max(this.levelController.firstLevel,this.minAutoLevel)}set firstLevel(t){this.logger.log(`set firstLevel:${t}`),this.levelController.firstLevel=t}get startLevel(){const t=this.levelController.startLevel;return t===-1&&this.abrController.forcedAutoLevel>-1?this.abrController.forcedAutoLevel:t}set startLevel(t){this.logger.log(`set startLevel:${t}`),t!==-1&&(t=Math.max(t,this.minAutoLevel)),this.levelController.startLevel=t}get capLevelToPlayerSize(){return this.config.capLevelToPlayerSize}set capLevelToPlayerSize(t){const n=!!t;n!==this.config.capLevelToPlayerSize&&(n?this.capLevelController.startCapping():(this.capLevelController.stopCapping(),this.autoLevelCapping=-1,this.streamController.nextLevelSwitch()),this.config.capLevelToPlayerSize=n)}get autoLevelCapping(){return this._autoLevelCapping}get bandwidthEstimate(){const{bwEstimator:t}=this.abrController;return t?t.getEstimate():NaN}set bandwidthEstimate(t){this.abrController.resetEstimator(t)}get abrEwmaDefaultEstimate(){const{bwEstimator:t}=this.abrController;return t?t.defaultEstimate:NaN}get ttfbEstimate(){const{bwEstimator:t}=this.abrController;return t?t.getEstimateTTFB():NaN}set autoLevelCapping(t){this._autoLevelCapping!==t&&(this.logger.log(`set autoLevelCapping:${t}`),this._autoLevelCapping=t,this.levelController.checkMaxAutoUpdated())}get maxHdcpLevel(){return this._maxHdcpLevel}set maxHdcpLevel(t){Vr(t)&&this._maxHdcpLevel!==t&&(this._maxHdcpLevel=t,this.levelController.checkMaxAutoUpdated())}get autoLevelEnabled(){return this.levelController.manualLevel===-1}get manualLevel(){return this.levelController.manualLevel}get minAutoLevel(){const{levels:t,config:{minAutoBitrate:n}}=this;if(!t)return 0;const s=t.length;for(let _=0;_<s;_++)if(t[_].maxBitrate>=n)return _;return 0}get maxAutoLevel(){const{levels:t,autoLevelCapping:n,maxHdcpLevel:s}=this;let _;if(n===-1&&t!=null&&t.length?_=t.length-1:_=n,s)for(let E=_;E--;){const I=t[E].attrs["HDCP-LEVEL"];if(I&&I<=s)return E}return _}get firstAutoLevel(){return this.abrController.firstAutoLevel}get nextAutoLevel(){return this.abrController.nextAutoLevel}set nextAutoLevel(t){this.abrController.nextAutoLevel=t}get playingDate(){return this.streamController.currentProgramDateTime}get mainForwardBufferInfo(){return this.streamController.getMainFwdBufferInfo()}get maxBufferLength(){return this.streamController.maxBufferLength}setAudioOption(t){var n;return((n=this.audioTrackController)==null?void 0:n.setAudioOption(t))||null}setSubtitleOption(t){var n;return((n=this.subtitleTrackController)==null?void 0:n.setSubtitleOption(t))||null}get allAudioTracks(){const t=this.audioTrackController;return t?t.allAudioTracks:[]}get audioTracks(){const t=this.audioTrackController;return t?t.audioTracks:[]}get audioTrack(){const t=this.audioTrackController;return t?t.audioTrack:-1}set audioTrack(t){const n=this.audioTrackController;n&&(n.audioTrack=t)}get allSubtitleTracks(){const t=this.subtitleTrackController;return t?t.allSubtitleTracks:[]}get subtitleTracks(){const t=this.subtitleTrackController;return t?t.subtitleTracks:[]}get subtitleTrack(){const t=this.subtitleTrackController;return t?t.subtitleTrack:-1}get media(){return this._media}set subtitleTrack(t){const n=this.subtitleTrackController;n&&(n.subtitleTrack=t)}get subtitleDisplay(){const t=this.subtitleTrackController;return t?t.subtitleDisplay:!1}set subtitleDisplay(t){const n=this.subtitleTrackController;n&&(n.subtitleDisplay=t)}get lowLatencyMode(){return this.config.lowLatencyMode}set lowLatencyMode(t){this.config.lowLatencyMode=t}get liveSyncPosition(){return this.latencyController.liveSyncPosition}get latency(){return this.latencyController.latency}get maxLatency(){return this.latencyController.maxLatency}get targetLatency(){return this.latencyController.targetLatency}set targetLatency(t){this.latencyController.targetLatency=t}get drift(){return this.latencyController.drift}get forceStartLoad(){return this.streamController.forceStartLoad}get pathways(){return this.levelController.pathways}get pathwayPriority(){return this.levelController.pathwayPriority}set pathwayPriority(t){this.levelController.pathwayPriority=t}get bufferedToEnd(){var t;return!!((t=this.bufferController)!=null&&t.bufferedToEnd)}get interstitialsManager(){var t;return((t=this.interstitialsController)==null?void 0:t.interstitialsManager)||null}getMediaDecodingInfo(t,n=this.allAudioTracks){const s=Ca(n);return br(t,s,navigator.mediaCapabilities)}}Pf.defaultConfig=void 0},53280:function(d,v,e){"use strict";e.d(v,{D:function(){return i}});function r(l,c,f){var o=f||{},h=o.noTrailing,u=h===void 0?!1:h,a=o.noLeading,x=a===void 0?!1:a,p=o.debounceMode,y=p===void 0?void 0:p,m,b=!1,S=0;function k(){m&&clearTimeout(m)}function R(P){var M=P||{},B=M.upcomingOnly,N=B===void 0?!1:B;k(),b=!N}function A(){for(var P=arguments.length,M=new Array(P),B=0;B<P;B++)M[B]=arguments[B];var N=this,K=Date.now()-S;if(b)return;function H(){S=Date.now(),c.apply(N,M)}function W(){m=void 0}!x&&y&&!m&&H(),k(),y===void 0&&K>l?x?(S=Date.now(),u||(m=setTimeout(y?W:H,l))):H():u!==!0&&(m=setTimeout(y?W:H,y===void 0?l-K:l))}return A.cancel=R,A}function i(l,c,f){var o=f||{},h=o.atBegin,u=h===void 0?!1:h;return r(l,c,{debounceMode:u!==!1})}}},__webpack_module_cache__={};function __webpack_require__(d){var v=__webpack_module_cache__[d];if(v!==void 0)return v.exports;var e=__webpack_module_cache__[d]={id:d,loaded:!1,exports:{}};return __webpack_modules__[d].call(e.exports,e,e.exports,__webpack_require__),e.loaded=!0,e.exports}__webpack_require__.m=__webpack_modules__,function(){__webpack_require__.amdO={}}(),function(){__webpack_require__.n=function(d){var v=d&&d.__esModule?function(){return d.default}:function(){return d};return __webpack_require__.d(v,{a:v}),v}}(),function(){var d=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},v;__webpack_require__.t=function(e,r){if(r&1&&(e=this(e)),r&8||typeof e=="object"&&e&&(r&4&&e.__esModule||r&16&&typeof e.then=="function"))return e;var i=Object.create(null);__webpack_require__.r(i);var l={};v=v||[null,d({}),d([]),d(d)];for(var c=r&2&&e;typeof c=="object"&&!~v.indexOf(c);c=d(c))Object.getOwnPropertyNames(c).forEach(function(f){l[f]=function(){return e[f]}});return l.default=function(){return e},__webpack_require__.d(i,l),i}}(),function(){__webpack_require__.d=function(d,v){for(var e in v)__webpack_require__.o(v,e)&&!__webpack_require__.o(d,e)&&Object.defineProperty(d,e,{enumerable:!0,get:v[e]})}}(),function(){__webpack_require__.f={},__webpack_require__.e=function(d){return Promise.all(Object.keys(__webpack_require__.f).reduce(function(v,e){return __webpack_require__.f[e](d,v),v},[]))}}(),function(){__webpack_require__.u=function(d){return""+({26:"p__Classrooms__Lists__Graduation__Tasks__Edit__index",67:"p__Message__index",109:"p__Classrooms__Lists__ShixunHomeworks__Detail__components__CodeReview__Detail__index",119:"p__User__ThemeChange__Paths",195:"p__Classrooms__Lists__GroupHomework__Detail__index",201:"p__Classrooms__ThemeChange__Students",264:"p__User__Detail__Order__pages__orderPay__index",292:"p__Classrooms__Lists__Exercise__Add__index",337:"p__Paperlibrary__Random__PreviewEdit__index",446:"p__IntelligentTools__index",479:"p__Classrooms__Lists__GroupHomework__EditWork__index",485:"p__Question__AddOrEdit__BatchAdd__index",508:"p__Forums__Detail__id",518:"p__Shixuns__Detail__Settings__ThemeChange__index",532:"p__ExcellentCourse__index",533:"p__Classrooms__Lists__Video__Statistics__Detail__index",547:"p__Account__index",556:"p__User__Detail__Order__pages__invoice__index",559:"layouts__virtualDetail__index",570:"p__Home__Detail__OnlineNum__index",576:"p__Account__Profile__Edit__index",643:"p__Classrooms__Lists__Polls__QuestionnaireInfo__index",680:"p__Innovation__index",700:"p__tasks__Jupyter__index",737:"p__Classrooms__Lists__CommonHomework__Detail__components__CodeReview__Detail__index",799:"p__User__Detail__Topics__Poll__Detail__index",879:"p__User__ThemeChange__AccountInfo",895:"p__Classrooms__Lists__Video__Items__videoInfo__index",900:"p__User__ThemeChange__Classrooms",906:"p__User__ThemeChange__CareerCertification",921:"p__Classrooms__Lists__Exercise__CodeDetails__index",928:"p__RestFul__Edit__index",1006:"p__RestFul__index",1043:"p__Classrooms__Lists__Graduation__Tasks__index",1045:"p__virtualSpaces__Lists__Knowledge__AddAndEdit__index",1048:"p__Classrooms__Lists__ProgramHomework__Detail__Ranking__index",1070:"p__Innovation__PublicMirror__index",1077:"p__User__ThemeTwoLogin__index",1211:"p__Classrooms__Lists__CommonHomework__EditWork__index",1253:"p__Graduations__Lists__Gradingsummary__index",1257:"p__Classrooms__Lists__ResourceRecommend__index",1276:"p__MoopCases__Success__index",1343:"p__User__Detail__ResourceAllocation__index",1423:"p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index",1427:"p__Classrooms__Lists__Statistics__index",1450:"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index",1461:"p__Graduations__Lists__Topics__index",1470:"p__User__Register__index",1475:"p__Shixuns__Detail__Dataset__JupyterData__index",1477:"p__Classrooms__ThemeChange__Assistant",1482:"p__Classrooms__Lists__Graduation__Topics__Edit__index",1512:"p__Classrooms__Lists__Exercise__AnswerCheck__index",1520:"p__Engineering__Lists__StudentList__index",1545:"p__Paperlibrary__Random__ExchangeFromProblemSet__index",1578:"p__Classrooms__Lists__Graduation__Topics__Detail__index",1581:"p__Problemset__Preview__index",1582:"p__Classrooms__Lists__GroupHomework__Add__index",1651:"p__Paths__ThemeChange__Statistics",1657:"p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index",1660:"p__User__QQLogin__index",1674:"p__Classrooms__ClassicCases__index",1678:"p__Classrooms__ThemeChange__Attachment",1713:"p__virtualSpaces__Lists__Settings__index",1717:"layouts__index",1727:"p__Classrooms__Lists__CourseGroup__NotList__index",1754:"p__Classrooms__ThemeChange__Video",1783:"p__virtualSpaces__Lists__Experiment__index",1798:"p__Classrooms__ThemeChange__GroupHomework",1799:"p__Competitions__Entered__Assembly__TeamDateil",1831:"p__Graduations__Index__index",1836:"p__Classrooms__Lists__Attendance__Webview__Teacher__index",1855:"p__MoopCases__InfoPanel__index",1880:"p__User__Detail__Order__pages__apply__index",1897:"p__User__ThemeChange__ClassManagement",1939:"p__User__Detail__Order__index",1953:"p__Problemset__NewItem__index",1962:"p__Classrooms__Lists__Engineering__index",1993:"p__Shixuns__Detail__Dataset__ThemeChange__index",2045:"p__Engineering__Lists__TeacherList__index",2099:"p__Paperlibrary__ThemeChange__index",2102:"p__Classrooms__Lists__Board__Edit__index",2130:"p__Shixuns__Detail__Repository__UploadFile__ThemeChange__index",2141:"p__Shixuns__Detail__Split__index",2203:"p__Classrooms__ThemeChange__ShixunHomeworks",2216:"p__DataSet__Index__index",2240:"p__User__Detail__Videos__Upload__index",2281:"p__Paths__ThemeChange__Detail",2300:"p__Api__index",2303:"p__Classrooms__Lists__CommonHomework__Comment__index",2307:"p__Report__index",2338:"p__Classrooms__Lists__CommonHomework__Review__index",2339:"p__virtualSpaces__Lists__Plan__Detail__index",2396:"p__User__Detail__ResourcesCenter__index",2404:"p__Classrooms__Lists__Template__teacher__index",2412:"p__User__Detail__Videos__index",2425:"p__Classrooms__Lists__Board__Detail__index",2443:"p__Graduations__Lists__StageModule__index",2476:"p__Colleges__index",2501:"p__Search__index",2539:"p__Graduations__Review__index",2548:"p__Engineering__Norm__Detail__index",2570:"p__Competitions__Detail__index",2603:"p__Classrooms__Lists__ProgramHomework__Detail__answer__Add__index",2659:"p__User__Detail__UserPortrait__index",2707:"p__Innovation__MyDataSet__index",2806:"p__User__Detail__Topics__Exercise__Detail__index",2819:"p__Classrooms__Lists__Template__detail__index",2823:"p__Engineering__Navigation__Home__index",2829:"p__Messages__Private__index",2862:"p__User__ThemeChange__ExperImentImg",2865:"p__Innovation__MyMirror__index",2884:"p__Classrooms__Lists__ProgramHomework__Comment__index",3006:"p__Engineering__index",3086:"p__Shixuns__Detail__ForkList__ThemeChange__index",3141:"p__Innovation__Detail__index",3157:"p__User__Detail__ExperImentImg__Add__index",3183:"p__Engineering__Lists__GraduationIndex__index",3212:"p__MoopCases__index",3247:"p__Paperlibrary__See__index",3260:"p__Paperlibrary__Add__index",3276:"p__Classrooms__Lists__Statistics__UserportraitStatistics__index",3317:"p__Classrooms__Lists__Graduation__Topics__Add__index",3391:"p__Classrooms__Lists__ProgramHomework__Detail__components__CodeReview__Detail__index",3433:"p__Classrooms__Lists__Exercise__Sumup__Edit__index",3442:"p__Classrooms__Lists__Board__Add__index",3447:"p__User__Detail__Order__pages__orderInformation__index",3451:"p__Classrooms__Lists__Statistics__StudentStatistics__Detail__index",3509:"p__HttpStatus__SixActivities",3581:"p__Shixuns__Detail__Collaborators__ThemeChange__index",3585:"p__Classrooms__Lists__Statistics__StudentSituation__index",3668:"p__Classrooms__Lists__CommonHomework__Detail__index",3747:"p__virtualSpaces__Lists__Homepage__index",3784:"p__Paperlibrary__Random__Detail__index",3831:"p__User__ThemeChange__VirtualSpaces",3832:"p__Paths__Detail__components__AIknowledge__index",3862:"p__HttpStatus__403",3873:"p__virtualSpaces__Lists__Lesson__index",3910:"p__HttpStatus__introduction",3951:"p__Classrooms__Lists__ProgramHomework__Detail__index",4017:"p__Classrooms__Lists__PlaceholderPage__index",4030:"p__Classrooms__Lists__ProgramHomework__AddAndEdit__index",4048:"p__Forums__ThemeChange__index",4056:"p__IntrainCourse__index",4058:"p__Demo__index",4078:"p__Messages__Tidings__index",4093:"p__Classrooms__Lists__Attendance__Detail__index",4105:"p__Classrooms__Lists__Exercise__Answer__index",4144:"p__Problemset__Preview__New__index",4164:"p__Classrooms__Lists__Exercise__Detail__index",4216:"p__Classrooms__Lists__ProgramHomework__Detail__answer__Edit__index",4217:"p__Classrooms__Lists__Video__Statistics__index",4227:"p__Paths__Overview__index",4259:"p__User__Detail__Order__pages__result__index",4264:"p__Forums__New__index",4297:"p__Classrooms__ThemeChange__Polls",4378:"p__SmartTool__index",4449:"p__Competitions__Exports__index",4492:"p__Graduations__Lists__StudentSelection__index",4496:"p__HttpStatus__HpcCourse",4498:"p__Shixuns__Edit__body__Level__Challenges__NewPractice__index",4504:"p__virtualSpaces__Lists__Survey__index",4514:"p__Account__Results__index",4520:"p__Account__Secure__index",4546:"p__Engineering__Lists__TrainingProgram__Add__index",4565:"p__HttpStatus__500",4572:"p__Classrooms__Lists__ExportList__index",4599:"p__Problemset__index",4610:"p__User__Detail__LearningPath__index",4621:"p__Administration__Profession__index",4662:"p__Classrooms__Lists__GroupHomework__Review__index",4715:"p__virtualSpaces__Lists__Material__Detail__index",4736:"p__User__Detail__Projects__index",4741:"p__Problems__OjForm__NewEdit__index",4757:"p__virtualSpaces__Lists__Workplace__index",4766:"p__Administration__index",4770:"p__Classrooms__Lists__ProgramHomework__Detail__answer__index",4795:"p__Classrooms__Lists__Graduation__Tasks__Add__index",4800:"p__Engineering__Lists__GraduatedMatrix__index",4889:"p__Classrooms__Lists__Exercise__ImitateAnswer__index",4928:"p__Classrooms__Lists__LearningPath__index",4973:"p__Engineering__Evaluate__List__index",4994:"p__Problems__OjForm__index",5022:"p__Graduations__Lists__Settings__index",5043:"p__User__Detail__Topics__Poll__Edit__index",5048:"p__Classrooms__Lists__Graduation__Topics__index",5096:"p__Shixuns__Detail__AuditSituation__index",5111:"p__Terminal__index",5117:"p__User__ThemeChange__Certificate",5125:"p__Classrooms__Lists__Exercise__DetailedAnalysis__index",5148:"p__Classrooms__Lists__Polls__Answer__index",5165:"p__User__ThemeChange__Topics",5176:"p__User__Detail__Videos__Protocol__index",5177:"p__Classrooms__ThemeChange__Teachers",5179:"p__Administration__Student__Edit__index",5186:"p__Classrooms__Overview__index",5230:"p__Shixuns__Detail__Repository__AddFile__ThemeChange__index",5238:"p__virtualSpaces__Lists__Material__index",5244:"p__ResourceManagement__index",5297:"p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index",5307:"p__Shixuns__ThemeChange__New",5319:"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index",5330:"p__Classrooms__ThemeChange__ShixunHomeworksComment",5335:"p__Engineering__Lists__CourseMatrix__index",5357:"p__Engineering__Lists__TrainingProgram__Edit__index",5359:"p__Messages__Detail__index",5382:"p__DataSet__Detail__index",5402:"p__User__Detail__Topics__Detail__index",5466:"p__Classrooms__ThemeChange__LiveVideo",5518:"p__Classrooms__Lists__Template__index",5549:"p__Shixuns__New__CreateImg__index",5572:"p__Paths__HigherVocationalEducation__index",5573:"p__Shixuns__Detail__Merge__index",5624:"p__Graduations__Lists__Index__index",5650:"p__Competitions__Update__index",5694:"p__Classrooms__ThemeChange__ShixunHomeworksDetail",5705:"p__virtualSpaces__Lists__Construction__index",5729:"p__Help__Index",5775:"p__Engineering__Lists__Document__index",5776:"p__User__ThemeChange__RealNameCertification",5786:"layouts__LoginAndRegister__index",5798:"p__Classrooms__Lists__Video__Statistics__UserDetail__index",5800:"p__User__ThemeChange__Competitions",5816:"p__Paperlibrary__Random__Edit__index",5839:"p__Paths__Detail__components__AIagent__index",5888:"p__Classrooms__Lists__CommonHomework__Add__index",5891:"p__virtualSpaces__Lists__Resources__index",5894:"p__Shixuns__Detail__Repository__Commit__ThemeChange__index",5902:"p__Classrooms__Lists__Exercise__Sumup__index",5915:"p__knowledgegraph__Detail__Statistics__index",5972:"layouts__user__index",5992:"p__Classrooms__Lists__Exercise__ReviewGroup__index",6029:"p__Administration__Student__index",6034:"p__HttpStatus__UserAgents",6063:"p__Graduations__Lists__Personmanage__index",6069:"p__virtualSpaces__Lists__Lesson__Detail__index",6080:"p__Paths__ThemeChange__New",6127:"p__Classrooms__Lists__ProgramHomework__Ranking__index",6170:"p__HttpStatus__downloadStudent",6185:"p__Classrooms__ThemeChange__Announcement",6205:"p__Classrooms__ThemeChange__VideoUpload",6265:"p__virtualSpaces__Lists__Discussion__index",6270:"p__MyProblem__index",6282:"p__Classrooms__ThemeChange__ProgramHomework",6328:"p__Shixuns__Edit__body__Warehouse__index",6366:"p__Innovation__PublicProject__index",6434:"p__User__Detail__Order__pages__records__index",6444:"p__Video__Detail__id",6451:"p__Shixuns__Detail__RankingList__ThemeChange__index",6452:"p__Innovation__PublicDataSet__index",6531:"p__HttpStatus__404",6583:"p__User__Detail__Classrooms__index",6587:"p__User__Detail__Videos__Protocol__resource",6634:"p__Innovation__Tasks__index",6637:"p__Shixuns__Detail__Repository__ThemeChange__index",6651:"p__Engineering__Evaluate__Detail__index",6682:"p__User__ThemeChange__Shixuns",6685:"p__Classrooms__Index__index",6729:"p__Classrooms__Lists__GroupHomework__Edit__index",6741:"p__Engineering__Norm__List__index",6776:"p__Classrooms__ThemeChange__Exercise",6784:"p__Innovation__Edit__index",6788:"p__Home__Detail__ShixunContext__Detail__index",6789:"p__Classrooms__ThemeChange__index",6796:"p__virtualSpaces__Lists__Announcement__Detail__index",6820:"p__User__Detail__Topics__Normal__index",6882:"p__Classrooms__New__StartClass__index",6904:"p__MoopCases__FormPanel__index",6913:"p__Question__AddOrEdit__index",6963:"p__Classrooms__Lists__Engineering__Detail__index",7043:"p__User__Detail__Topics__Exercise__Edit__index",7045:"p__Classrooms__Lists__CommonHomework__SubmitWork__index",7058:"p__virtualSpaces__Lists__Survey__Detail__index",7062:"layouts__SimpleLayouts",7099:"p__Competitions__ThemeChange__index",7178:"p__User__BindAccount__index",7182:"p__User__ResetPassword__index",7224:"p__StatsDashboard__index",7242:"p__Innovation__MyProject__index",7260:"p__Account__Certification__index",7289:"p__tasks__ThemeChange__index",7322:"layouts__ThemeChange__ShixunDetail",7323:"p__Classrooms__ThemeChange__New",7329:"p__Classrooms__ThemeChange__Attendance",7333:"p__User__WechatLogin__index",7395:"p__Classrooms__Lists__Statistics__StudentDetail__index",7402:"p__User__ThemeChange__OtherResources",7460:"p__Question__OjProblem__index",7477:"p__virtualSpaces__Lists__Announcement__index",7482:"p__Classrooms__Lists__Exercise__Notice__index",7527:"p__MyProblem__RecordDetail__index",7545:"p__Graduations__Lists__Archives__index",7560:"p__Administration__College__index",7589:"p__virtualSpaces__Lists__DigitalTopics__index",7614:"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index",7622:"p__Classrooms__Lists__Polls__Detail__index",7806:"p__Classrooms__Lists__Statistics__StatisticsQuality__index",7835:"p__Problemset__ThemeChange__index",7855:"p__User__Detail__ResourcesCenter__Detail__index",7857:"p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index",7883:"p__Classrooms__Lists__Exercise__WrongAnswer__index",7884:"p__Shixuns__Exports__index",7901:"p__Guidance__ThemeChange",7922:"p__Classrooms__Lists__CourseGroup__Detail__index",8062:"p__User__Detail__Topicbank__index",8072:"p__Classrooms__Lists__GroupHomework__SubmitWork__index",8085:"p__Classrooms__Lists__Exercise__Review__index",8115:"p__User__ThemeChange__DataSet",8143:"layouts__GraduationsDetail__index",8145:"p__User__ThemeChange__ClassManagementItem",8155:"p__Shixuns__Overview__index",8217:"p__User__ThemeChange__AccountInfoEdit",8237:"p__User__Detail__Order__pages__view__index",8241:"p__virtualSpaces__Lists__Plan__index",8286:"p__User__ThemeChange__ExperImentImgDetail",8332:"p__User__ThemeChange__Detail",8340:"p__Classrooms__Lists__Attendance__Webview__Student__index",8365:"p__Home__Detail__ShixunContext__index",8398:"p__virtualSpaces__Lists__Resources__Detail__index",8431:"p__Classrooms__Lists__Exercise__Export__index",8435:"p__Classrooms__Lists__Attendance__index",8447:"p__virtualSpaces__Lists__Knowledge__index",8458:"p__Classrooms__ThemeChange__CommonHomework",8479:"p__User__ThemeChange__TeachGroup",8517:"p__User__Detail__Topics__Group__index",8552:"p__Shixuns__ThemeChange__index",8563:"p__virtualSpaces__Lists__Discussion__Detail__index",8579:"p__Competitions__ThemeChange__Edit",8639:"p__Forums__Index__redirect",8665:"p__Engineering__Lists__TrainingObjectives__index",8688:"p__Shixuns__Detail__Repository__index",8689:"p__Classrooms__Lists__Statistics__VideoStatistics__index",8723:"p__Classrooms__Lists__Polls__Edit__index",8787:"p__Competitions__Entered__index",8823:"p__knowledgegraph__Detail__id",8827:"p__Classrooms__Lists__OnlineLearning__index",8866:"p__index",8882:"p__Classrooms__Lists__Graduation__Tasks__Detail__index",8885:"p__Classrooms__Lists__Statistics__StudentStatistics__index",8965:"p__Shixuns__Detail__Discuss__ThemeChange__index",8999:"p__Three__index",9039:"p__Classrooms__ThemeChange__CourseGroup",9076:"p__Account__Binding__index",9205:"p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index",9366:"p__User__Login__index",9391:"p__Engineering__Lists__CurseSetting__index",9404:"monaco-editor",9406:"p__Classrooms__ThemeChange__Board",9416:"p__Graduations__Lists__Tasks__index",9417:"p__Shixuns__ThemeOne__Detail__SkillTags__index",9449:"p__Shixuns__ThemeChange__Detail",9487:"p__LargeScreen__index",9489:"p__Engineering__Lists__CourseList__index",9507:"p__User__Detail__ResourceGuarantee__index",9511:"p__Shixuns__ThemeChange__Edit",9647:"p__Question__Index__index",9649:"p__Engineering__Lists__TrainingProgram__index",9674:"p__Shixuns__New__ImagePreview__index",9677:"p__virtualSpaces__Lists__Announcement__AddAndEdit__index",9695:"p__Classrooms__Lists__Polls__Add__index",9715:"p__Classrooms__Lists__CommonHomework__Edit__index",9716:"p__Question__OjProblem__RecordDetail__index",9785:"p__Classrooms__Lists__Template__student__index",9788:"p__Account__Profile__index",9814:"p__Shixuns__Detail__Challenges__ThemeChange__index",9891:"p__User__Detail__Videos__Success__index",9906:"p__Paths__ThemeChange__index",9921:"p__Classrooms__ExamList__index",9922:"p__Classrooms__Lists__Statistics__StudentVideo__index",9944:"p__Classrooms__Lists__Video__Statistics__StudentDetail__index"}[d]||d)+"."+{26:"25ebdfe0",67:"c99b88fb",109:"6a25bf91",119:"d5922214",195:"3e4caffc",201:"7d567d57",264:"1fdb6cd8",292:"cdf511aa",316:"1f60ada6",337:"e641e306",354:"d4d139cf",446:"317f8f18",479:"872bbac2",485:"9713ca9c",508:"551ead5d",518:"c2129616",532:"aad07f35",533:"49b7022a",547:"7044d2ce",556:"f2b2b97c",559:"bb8ab840",570:"4dfa917f",576:"53db91d0",629:"44a1d9a5",643:"ce2308b8",671:"4a609b8d",680:"0fae6afb",700:"2dedfcef",737:"df799e7f",741:"ac5fd360",799:"576f58c1",879:"b83b38c3",895:"954da3fe",900:"fab2a395",906:"0d150543",910:"c5531cd1",921:"5e6233b2",928:"9fc8fdd0",981:"24da50c7",1006:"fe894cef",1043:"0b56369a",1045:"9e1221f6",1048:"37dded57",1070:"b90680fa",1077:"9ecc3731",1144:"c90eccaf",1154:"8cb80842",1211:"c75c70d1",1253:"dc27de11",1257:"a57f3277",1274:"5f6ea65a",1276:"aa37a179",1343:"b16ecc96",1423:"cd0c2233",1427:"a319599d",1450:"b476b65d",1461:"68954a46",1462:"fcf08abc",1470:"b43f46c5",1475:"b186a387",1477:"a1f65654",1482:"f397612c",1512:"a230b5ef",1520:"b9f991ca",1545:"a608ea29",1578:"fe91fd31",1581:"8810e0bd",1582:"6a5a12a1",1646:"e6e27b60",1651:"f75f2fe5",1657:"21f42ada",1660:"4647fdda",1674:"fe12608b",1678:"cc02613f",1713:"a0d79116",1717:"bc76c797",1727:"0a1c9d8f",1750:"b9876391",1754:"d9930a78",1783:"4dc96f96",1798:"d8177914",1799:"bd3ecf70",1831:"695dc4c5",1836:"c873953e",1855:"fbdd023d",1880:"79ef8439",1897:"2899ebba",1939:"ec981d89",1953:"3bd92df5",1962:"cfd37d77",1993:"735bf317",2011:"59d51f98",2045:"4f50f609",2099:"15b57b04",2102:"193efe41",2130:"df9c5253",2141:"f0eda501",2203:"278ee9b0",2216:"ccbaa042",2240:"8cee454c",2249:"f4830452",2281:"d6d258eb",2300:"83840044",2303:"c7eddf23",2307:"7e010f3c",2338:"fc15656d",2339:"fa4a78d5",2386:"192e235c",2396:"3d555efe",2404:"9b463199",2412:"4696993f",2425:"557a0c9e",2443:"d30a2773",2460:"d013417e",2476:"f0b636f3",2494:"ceb762c3",2501:"b6ea97c3",2538:"de4a3723",2539:"31fee4c0",2548:"0b12947c",2570:"c0dc8510",2594:"e87d3761",2603:"6c070ea1",2659:"2d97a5de",2707:"e0a7a155",2763:"099acd60",2806:"c11edfdc",2819:"a2afd093",2823:"29bd2909",2829:"37efc31b",2837:"54a82605",2862:"f6537848",2865:"2a2e4654",2884:"eadfca2e",2969:"ab3357d7",3006:"9976d75c",3086:"0e8562e8",3133:"9bf3f89c",3141:"4b7c9759",3157:"d06c679d",3183:"ace2a4c2",3198:"8e655451",3212:"58701c02",3247:"71796403",3260:"b56b4bcb",3276:"51ad7042",3317:"43f5a812",3391:"630bf4cd",3433:"3168d908",3442:"4cb0c435",3447:"54b5dd1f",3451:"a1705398",3509:"53aefe1f",3550:"3dc83156",3581:"7c48b075",3585:"3f7a76f6",3668:"d88a7070",3697:"481a10d9",3747:"34b8643c",3754:"dfb1c29c",3777:"d5b0f2f1",3784:"e9cc2a97",3805:"9dbcb95e",3831:"3e73f256",3832:"7df4be30",3861:"cf2f3073",3862:"7cc7474a",3873:"bbe145ab",3885:"f87f7f15",3910:"622aa34b",3951:"c4e191eb",3987:"5cecd51b",4014:"27a8e97c",4017:"43ee7c85",4030:"2d873efa",4048:"c61fe3e0",4056:"6aa34634",4058:"a6ef0500",4078:"42445e83",4088:"236723f3",4093:"737c90f5",4105:"183b87ee",4144:"672af668",4164:"6e42aa6f",4216:"bcd3b1e1",4217:"76cba1c3",4227:"54bba644",4259:"14fbd765",4264:"766d6d47",4297:"3f11c457",4347:"ce21ef2e",4354:"140899b7",4360:"cf5efa52",4378:"f748977c",4449:"f07362e4",4492:"25e15b88",4496:"11e9fce8",4498:"94184960",4504:"90baabda",4514:"8e37600d",4520:"e9efd903",4546:"e44a0470",4565:"cd70a302",4572:"c946a4f7",4599:"61def4cb",4610:"bcb1e77d",4621:"dc5bdc2c",4628:"ece2c60c",4662:"7d36c749",4685:"c33f1528",4715:"989887a1",4736:"005420b3",4741:"dbe1cc4f",4757:"0c0aed58",4766:"93d0b6de",4770:"e30d4dc9",4790:"619413e4",4795:"5bff3cb2",4797:"a24e92db",4800:"c6566bd2",4850:"1edda4b7",4889:"5527ab07",4928:"dc391264",4973:"041411a5",4994:"5eba7bc9",5022:"2e3d7afe",5043:"4fbe7ab3",5048:"a272d0d9",5060:"85dafcc6",5096:"24165ead",5111:"6c03ca16",5117:"f23091d7",5125:"87ae98d7",5148:"c3066eef",5165:"76f42992",5176:"2025b09b",5177:"e46eaf3a",5179:"6b940689",5186:"d3d30d5e",5230:"def743f6",5238:"8e46bb49",5244:"a0e84a39",5290:"5dabcdc2",5297:"ea1e7944",5307:"42d3972e",5319:"5c075be0",5321:"1163c84e",5330:"13b452df",5335:"0d226e4f",5354:"7ae70604",5357:"4831e247",5359:"5db5f145",5382:"c3ad59b3",5402:"089008eb",5416:"454536b7",5434:"38b302a6",5466:"5edc0e04",5494:"d89549c4",5518:"0ce78aff",5549:"d50d3317",5572:"5e3b67fe",5573:"68f68fc2",5624:"17f9d78c",5631:"e00d3d36",5650:"fdd0c3e0",5679:"4a090bef",5694:"09edd5b2",5705:"9e2bd49b",5729:"17c6258e",5764:"e0d7e586",5775:"cab13a22",5776:"096d1c43",5786:"7612e65f",5798:"ff73e342",5800:"5bedccad",5816:"669e5994",5839:"90f25dec",5876:"5eded409",5888:"faa1801c",5891:"37257bb8",5894:"c5c5778f",5902:"e1640ece",5915:"b2156125",5972:"c87684a8",5992:"d4f74d40",6029:"b0e31374",6034:"376602a8",6045:"d268f87f",6047:"3ce45acd",6063:"399a57e6",6069:"d0af52e0",6080:"2c4354ef",6126:"99519171",6127:"f2b0a653",6170:"0026c6ec",6185:"959c2f96",6205:"327c0ad2",6265:"d0f28492",6270:"78b39bd8",6282:"615df7a1",6328:"a030f412",6366:"259d92db",6378:"7f3a946a",6393:"a11588b8",6411:"3b971528",6434:"8a09734f",6442:"1b7c21c3",6444:"672ab86a",6451:"e811924f",6452:"5c1f8f77",6531:"1e4cd45d",6583:"d98e3a78",6587:"73574cb0",6634:"8c9dc809",6637:"494dc421",6651:"52e4c497",6682:"3ec508e4",6685:"46d08b80",6729:"a6b37871",6741:"41450099",6774:"59d4d618",6776:"6f3cea24",6784:"2f136a53",6788:"cbfe997e",6789:"8d5db1a7",6796:"6bc7b374",6820:"e7a7a304",6840:"abbb1cc1",6882:"e0dcfcb0",6904:"f9a0b70f",6913:"3987c41f",6963:"a49191f9",6985:"6abb4311",7043:"c25e767a",7045:"b11ea690",7058:"1aaf9ee4",7062:"006dfd08",7084:"46ccce72",7099:"b11e5e36",7156:"e7466006",7178:"d6dfdd98",7182:"8b56c91b",7224:"fd58f5b4",7242:"e9e130d0",7260:"b5c374bc",7289:"e7cbe95c",7322:"89f8eae6",7323:"e37887b6",7329:"1f09fcda",7333:"a86d1864",7365:"1005464f",7395:"c9a165b9",7402:"0fb11126",7460:"f83ba928",7477:"ca0722d8",7482:"eebcfa2f",7527:"11cb9f97",7545:"a332f853",7560:"87225818",7573:"97f85034",7589:"db319d32",7591:"c8233ce9",7614:"1b422242",7622:"af06f02e",7686:"4fcec9f9",7706:"c2a79e40",7806:"afa78b72",7835:"b8060f9d",7855:"896f6f12",7857:"88c2af3d",7883:"a2992699",7884:"24273397",7901:"d7a70cd0",7922:"63475d32",7964:"29aed9a1",8062:"573963bc",8072:"cb4e4ce9",8085:"7064780b",8089:"d536b13a",8115:"19367d02",8143:"77d463cc",8145:"e926cb6c",8155:"7eec0b00",8161:"83c5fa9a",8217:"69accac9",8229:"a9fc770f",8237:"e53b8b3d",8241:"733bfa01",8286:"2bd5e5da",8302:"55794970",8332:"230e45e0",8340:"d6a1e60b",8350:"07df8a75",8365:"6f2cb33c",8398:"29af427c",8431:"f276f265",8435:"29ffda57",8447:"ebc77bd7",8458:"653b8481",8479:"b17d9b6f",8517:"43660dc2",8552:"989ecf04",8561:"333e8ec9",8563:"b887da1e",8579:"bce2d306",8639:"21c350a0",8665:"5005d459",8688:"c43698bc",8689:"4cb113fc",8723:"4fe2afb6",8737:"ce7dad23",8776:"0ad26240",8787:"6f3a8d79",8807:"5fda29ff",8823:"f6dcc1ce",8827:"c8cebe0c",8842:"9f25a3e2",8866:"8ab69a06",8882:"fa19fa55",8885:"924f2f37",8898:"d002bcd8",8909:"414b305a",8920:"7f82440c",8963:"790aecdd",8965:"e455d5b3",8999:"2d156215",9039:"fd03a0ec",9076:"e4c10d9f",9104:"bbcb2345",9205:"5a3dfcd9",9219:"70616e53",9252:"0d791a59",9260:"cf5f8140",9366:"1a31fd23",9391:"f51f2e8b",9404:"9fcc3d3e",9406:"c7f96a54",9416:"0f9a6f40",9417:"66c183bb",9449:"dc489a74",9487:"781d2475",9489:"9b6af9e0",9507:"0079c074",9511:"fd78f4ba",9554:"ed358e7b",9559:"f794af19",9647:"6240e4d6",9649:"29b9c5fc",9674:"11c274a5",9677:"dd7858fc",9695:"c821b527",9715:"90612066",9716:"40121ad7",9724:"2f674bad",9785:"234d891c",9788:"5d511ce1",9814:"9c294be2",9891:"60f02702",9895:"b8e31ff2",9906:"df04d419",9921:"32e35155",9922:"0145f8b7",9928:"5989f5e0",9944:"5ca0bb39",9950:"74f6dfb2",9968:"17466785"}[d]+".async.js"}}(),function(){__webpack_require__.miniCssF=function(d){return""+({26:"p__Classrooms__Lists__Graduation__Tasks__Edit__index",67:"p__Message__index",109:"p__Classrooms__Lists__ShixunHomeworks__Detail__components__CodeReview__Detail__index",119:"p__User__ThemeChange__Paths",195:"p__Classrooms__Lists__GroupHomework__Detail__index",201:"p__Classrooms__ThemeChange__Students",264:"p__User__Detail__Order__pages__orderPay__index",292:"p__Classrooms__Lists__Exercise__Add__index",337:"p__Paperlibrary__Random__PreviewEdit__index",479:"p__Classrooms__Lists__GroupHomework__EditWork__index",485:"p__Question__AddOrEdit__BatchAdd__index",508:"p__Forums__Detail__id",518:"p__Shixuns__Detail__Settings__ThemeChange__index",532:"p__ExcellentCourse__index",533:"p__Classrooms__Lists__Video__Statistics__Detail__index",547:"p__Account__index",556:"p__User__Detail__Order__pages__invoice__index",559:"layouts__virtualDetail__index",576:"p__Account__Profile__Edit__index",643:"p__Classrooms__Lists__Polls__QuestionnaireInfo__index",680:"p__Innovation__index",700:"p__tasks__Jupyter__index",737:"p__Classrooms__Lists__CommonHomework__Detail__components__CodeReview__Detail__index",799:"p__User__Detail__Topics__Poll__Detail__index",879:"p__User__ThemeChange__AccountInfo",895:"p__Classrooms__Lists__Video__Items__videoInfo__index",900:"p__User__ThemeChange__Classrooms",906:"p__User__ThemeChange__CareerCertification",921:"p__Classrooms__Lists__Exercise__CodeDetails__index",928:"p__RestFul__Edit__index",1006:"p__RestFul__index",1043:"p__Classrooms__Lists__Graduation__Tasks__index",1045:"p__virtualSpaces__Lists__Knowledge__AddAndEdit__index",1048:"p__Classrooms__Lists__ProgramHomework__Detail__Ranking__index",1070:"p__Innovation__PublicMirror__index",1077:"p__User__ThemeTwoLogin__index",1211:"p__Classrooms__Lists__CommonHomework__EditWork__index",1253:"p__Graduations__Lists__Gradingsummary__index",1257:"p__Classrooms__Lists__ResourceRecommend__index",1276:"p__MoopCases__Success__index",1343:"p__User__Detail__ResourceAllocation__index",1423:"p__Shixuns__Edit__body__Level__Challenges__EditPracticeAnswer__index",1427:"p__Classrooms__Lists__Statistics__index",1450:"p__Classrooms__Lists__ShixunHomeworks__Commitsummary__index",1461:"p__Graduations__Lists__Topics__index",1470:"p__User__Register__index",1475:"p__Shixuns__Detail__Dataset__JupyterData__index",1477:"p__Classrooms__ThemeChange__Assistant",1482:"p__Classrooms__Lists__Graduation__Topics__Edit__index",1512:"p__Classrooms__Lists__Exercise__AnswerCheck__index",1520:"p__Engineering__Lists__StudentList__index",1545:"p__Paperlibrary__Random__ExchangeFromProblemSet__index",1578:"p__Classrooms__Lists__Graduation__Topics__Detail__index",1581:"p__Problemset__Preview__index",1582:"p__Classrooms__Lists__GroupHomework__Add__index",1651:"p__Paths__ThemeChange__Statistics",1657:"p__Shixuns__Edit__body__Level__Challenges__EditQuestion__index",1674:"p__Classrooms__ClassicCases__index",1678:"p__Classrooms__ThemeChange__Attachment",1713:"p__virtualSpaces__Lists__Settings__index",1717:"layouts__index",1727:"p__Classrooms__Lists__CourseGroup__NotList__index",1754:"p__Classrooms__ThemeChange__Video",1783:"p__virtualSpaces__Lists__Experiment__index",1798:"p__Classrooms__ThemeChange__GroupHomework",1831:"p__Graduations__Index__index",1836:"p__Classrooms__Lists__Attendance__Webview__Teacher__index",1855:"p__MoopCases__InfoPanel__index",1880:"p__User__Detail__Order__pages__apply__index",1897:"p__User__ThemeChange__ClassManagement",1939:"p__User__Detail__Order__index",1953:"p__Problemset__NewItem__index",1962:"p__Classrooms__Lists__Engineering__index",1993:"p__Shixuns__Detail__Dataset__ThemeChange__index",2045:"p__Engineering__Lists__TeacherList__index",2099:"p__Paperlibrary__ThemeChange__index",2102:"p__Classrooms__Lists__Board__Edit__index",2130:"p__Shixuns__Detail__Repository__UploadFile__ThemeChange__index",2141:"p__Shixuns__Detail__Split__index",2203:"p__Classrooms__ThemeChange__ShixunHomeworks",2216:"p__DataSet__Index__index",2240:"p__User__Detail__Videos__Upload__index",2281:"p__Paths__ThemeChange__Detail",2303:"p__Classrooms__Lists__CommonHomework__Comment__index",2307:"p__Report__index",2338:"p__Classrooms__Lists__CommonHomework__Review__index",2339:"p__virtualSpaces__Lists__Plan__Detail__index",2396:"p__User__Detail__ResourcesCenter__index",2404:"p__Classrooms__Lists__Template__teacher__index",2412:"p__User__Detail__Videos__index",2425:"p__Classrooms__Lists__Board__Detail__index",2443:"p__Graduations__Lists__StageModule__index",2476:"p__Colleges__index",2501:"p__Search__index",2539:"p__Graduations__Review__index",2548:"p__Engineering__Norm__Detail__index",2570:"p__Competitions__Detail__index",2603:"p__Classrooms__Lists__ProgramHomework__Detail__answer__Add__index",2659:"p__User__Detail__UserPortrait__index",2707:"p__Innovation__MyDataSet__index",2806:"p__User__Detail__Topics__Exercise__Detail__index",2819:"p__Classrooms__Lists__Template__detail__index",2823:"p__Engineering__Navigation__Home__index",2829:"p__Messages__Private__index",2862:"p__User__ThemeChange__ExperImentImg",2865:"p__Innovation__MyMirror__index",2884:"p__Classrooms__Lists__ProgramHomework__Comment__index",3006:"p__Engineering__index",3086:"p__Shixuns__Detail__ForkList__ThemeChange__index",3141:"p__Innovation__Detail__index",3157:"p__User__Detail__ExperImentImg__Add__index",3183:"p__Engineering__Lists__GraduationIndex__index",3212:"p__MoopCases__index",3247:"p__Paperlibrary__See__index",3260:"p__Paperlibrary__Add__index",3276:"p__Classrooms__Lists__Statistics__UserportraitStatistics__index",3317:"p__Classrooms__Lists__Graduation__Topics__Add__index",3391:"p__Classrooms__Lists__ProgramHomework__Detail__components__CodeReview__Detail__index",3433:"p__Classrooms__Lists__Exercise__Sumup__Edit__index",3442:"p__Classrooms__Lists__Board__Add__index",3447:"p__User__Detail__Order__pages__orderInformation__index",3451:"p__Classrooms__Lists__Statistics__StudentStatistics__Detail__index",3509:"p__HttpStatus__SixActivities",3581:"p__Shixuns__Detail__Collaborators__ThemeChange__index",3585:"p__Classrooms__Lists__Statistics__StudentSituation__index",3668:"p__Classrooms__Lists__CommonHomework__Detail__index",3747:"p__virtualSpaces__Lists__Homepage__index",3784:"p__Paperlibrary__Random__Detail__index",3831:"p__User__ThemeChange__VirtualSpaces",3832:"p__Paths__Detail__components__AIknowledge__index",3873:"p__virtualSpaces__Lists__Lesson__index",3910:"p__HttpStatus__introduction",3951:"p__Classrooms__Lists__ProgramHomework__Detail__index",4030:"p__Classrooms__Lists__ProgramHomework__AddAndEdit__index",4048:"p__Forums__ThemeChange__index",4056:"p__IntrainCourse__index",4078:"p__Messages__Tidings__index",4093:"p__Classrooms__Lists__Attendance__Detail__index",4105:"p__Classrooms__Lists__Exercise__Answer__index",4144:"p__Problemset__Preview__New__index",4164:"p__Classrooms__Lists__Exercise__Detail__index",4216:"p__Classrooms__Lists__ProgramHomework__Detail__answer__Edit__index",4217:"p__Classrooms__Lists__Video__Statistics__index",4227:"p__Paths__Overview__index",4259:"p__User__Detail__Order__pages__result__index",4264:"p__Forums__New__index",4297:"p__Classrooms__ThemeChange__Polls",4449:"p__Competitions__Exports__index",4492:"p__Graduations__Lists__StudentSelection__index",4496:"p__HttpStatus__HpcCourse",4498:"p__Shixuns__Edit__body__Level__Challenges__NewPractice__index",4504:"p__virtualSpaces__Lists__Survey__index",4514:"p__Account__Results__index",4520:"p__Account__Secure__index",4546:"p__Engineering__Lists__TrainingProgram__Add__index",4572:"p__Classrooms__Lists__ExportList__index",4599:"p__Problemset__index",4610:"p__User__Detail__LearningPath__index",4621:"p__Administration__Profession__index",4662:"p__Classrooms__Lists__GroupHomework__Review__index",4715:"p__virtualSpaces__Lists__Material__Detail__index",4736:"p__User__Detail__Projects__index",4741:"p__Problems__OjForm__NewEdit__index",4757:"p__virtualSpaces__Lists__Workplace__index",4766:"p__Administration__index",4770:"p__Classrooms__Lists__ProgramHomework__Detail__answer__index",4795:"p__Classrooms__Lists__Graduation__Tasks__Add__index",4800:"p__Engineering__Lists__GraduatedMatrix__index",4889:"p__Classrooms__Lists__Exercise__ImitateAnswer__index",4928:"p__Classrooms__Lists__LearningPath__index",4973:"p__Engineering__Evaluate__List__index",4994:"p__Problems__OjForm__index",5022:"p__Graduations__Lists__Settings__index",5043:"p__User__Detail__Topics__Poll__Edit__index",5048:"p__Classrooms__Lists__Graduation__Topics__index",5096:"p__Shixuns__Detail__AuditSituation__index",5111:"p__Terminal__index",5117:"p__User__ThemeChange__Certificate",5125:"p__Classrooms__Lists__Exercise__DetailedAnalysis__index",5148:"p__Classrooms__Lists__Polls__Answer__index",5165:"p__User__ThemeChange__Topics",5176:"p__User__Detail__Videos__Protocol__index",5177:"p__Classrooms__ThemeChange__Teachers",5179:"p__Administration__Student__Edit__index",5186:"p__Classrooms__Overview__index",5230:"p__Shixuns__Detail__Repository__AddFile__ThemeChange__index",5238:"p__virtualSpaces__Lists__Material__index",5244:"p__ResourceManagement__index",5297:"p__Classrooms__Lists__Exercise__Detail__components__DuplicateChecking__CheckDetail__index",5307:"p__Shixuns__ThemeChange__New",5319:"p__Classrooms__Lists__ProgramHomework__Detail__answer__Detail__index",5330:"p__Classrooms__ThemeChange__ShixunHomeworksComment",5335:"p__Engineering__Lists__CourseMatrix__index",5357:"p__Engineering__Lists__TrainingProgram__Edit__index",5359:"p__Messages__Detail__index",5382:"p__DataSet__Detail__index",5402:"p__User__Detail__Topics__Detail__index",5466:"p__Classrooms__ThemeChange__LiveVideo",5518:"p__Classrooms__Lists__Template__index",5549:"p__Shixuns__New__CreateImg__index",5572:"p__Paths__HigherVocationalEducation__index",5573:"p__Shixuns__Detail__Merge__index",5624:"p__Graduations__Lists__Index__index",5650:"p__Competitions__Update__index",5694:"p__Classrooms__ThemeChange__ShixunHomeworksDetail",5705:"p__virtualSpaces__Lists__Construction__index",5729:"p__Help__Index",5775:"p__Engineering__Lists__Document__index",5776:"p__User__ThemeChange__RealNameCertification",5786:"layouts__LoginAndRegister__index",5798:"p__Classrooms__Lists__Video__Statistics__UserDetail__index",5800:"p__User__ThemeChange__Competitions",5816:"p__Paperlibrary__Random__Edit__index",5839:"p__Paths__Detail__components__AIagent__index",5888:"p__Classrooms__Lists__CommonHomework__Add__index",5891:"p__virtualSpaces__Lists__Resources__index",5894:"p__Shixuns__Detail__Repository__Commit__ThemeChange__index",5915:"p__knowledgegraph__Detail__Statistics__index",5972:"layouts__user__index",5992:"p__Classrooms__Lists__Exercise__ReviewGroup__index",6029:"p__Administration__Student__index",6063:"p__Graduations__Lists__Personmanage__index",6069:"p__virtualSpaces__Lists__Lesson__Detail__index",6080:"p__Paths__ThemeChange__New",6127:"p__Classrooms__Lists__ProgramHomework__Ranking__index",6185:"p__Classrooms__ThemeChange__Announcement",6205:"p__Classrooms__ThemeChange__VideoUpload",6265:"p__virtualSpaces__Lists__Discussion__index",6270:"p__MyProblem__index",6282:"p__Classrooms__ThemeChange__ProgramHomework",6328:"p__Shixuns__Edit__body__Warehouse__index",6366:"p__Innovation__PublicProject__index",6434:"p__User__Detail__Order__pages__records__index",6444:"p__Video__Detail__id",6451:"p__Shixuns__Detail__RankingList__ThemeChange__index",6452:"p__Innovation__PublicDataSet__index",6583:"p__User__Detail__Classrooms__index",6587:"p__User__Detail__Videos__Protocol__resource",6634:"p__Innovation__Tasks__index",6637:"p__Shixuns__Detail__Repository__ThemeChange__index",6651:"p__Engineering__Evaluate__Detail__index",6682:"p__User__ThemeChange__Shixuns",6685:"p__Classrooms__Index__index",6729:"p__Classrooms__Lists__GroupHomework__Edit__index",6741:"p__Engineering__Norm__List__index",6776:"p__Classrooms__ThemeChange__Exercise",6784:"p__Innovation__Edit__index",6789:"p__Classrooms__ThemeChange__index",6796:"p__virtualSpaces__Lists__Announcement__Detail__index",6820:"p__User__Detail__Topics__Normal__index",6882:"p__Classrooms__New__StartClass__index",6904:"p__MoopCases__FormPanel__index",6913:"p__Question__AddOrEdit__index",6963:"p__Classrooms__Lists__Engineering__Detail__index",7043:"p__User__Detail__Topics__Exercise__Edit__index",7045:"p__Classrooms__Lists__CommonHomework__SubmitWork__index",7058:"p__virtualSpaces__Lists__Survey__Detail__index",7062:"layouts__SimpleLayouts",7099:"p__Competitions__ThemeChange__index",7178:"p__User__BindAccount__index",7182:"p__User__ResetPassword__index",7224:"p__StatsDashboard__index",7242:"p__Innovation__MyProject__index",7260:"p__Account__Certification__index",7289:"p__tasks__ThemeChange__index",7322:"layouts__ThemeChange__ShixunDetail",7323:"p__Classrooms__ThemeChange__New",7329:"p__Classrooms__ThemeChange__Attendance",7395:"p__Classrooms__Lists__Statistics__StudentDetail__index",7402:"p__User__ThemeChange__OtherResources",7460:"p__Question__OjProblem__index",7477:"p__virtualSpaces__Lists__Announcement__index",7482:"p__Classrooms__Lists__Exercise__Notice__index",7527:"p__MyProblem__RecordDetail__index",7545:"p__Graduations__Lists__Archives__index",7560:"p__Administration__College__index",7589:"p__virtualSpaces__Lists__DigitalTopics__index",7614:"p__Shixuns__Edit__body__Level__Challenges__RankingSetting__index",7622:"p__Classrooms__Lists__Polls__Detail__index",7806:"p__Classrooms__Lists__Statistics__StatisticsQuality__index",7835:"p__Problemset__ThemeChange__index",7855:"p__User__Detail__ResourcesCenter__Detail__index",7857:"p__Shixuns__Edit__body__Level__Challenges__NewQuestion__index",7883:"p__Classrooms__Lists__Exercise__WrongAnswer__index",7884:"p__Shixuns__Exports__index",7901:"p__Guidance__ThemeChange",7922:"p__Classrooms__Lists__CourseGroup__Detail__index",8062:"p__User__Detail__Topicbank__index",8072:"p__Classrooms__Lists__GroupHomework__SubmitWork__index",8085:"p__Classrooms__Lists__Exercise__Review__index",8115:"p__User__ThemeChange__DataSet",8143:"layouts__GraduationsDetail__index",8145:"p__User__ThemeChange__ClassManagementItem",8155:"p__Shixuns__Overview__index",8217:"p__User__ThemeChange__AccountInfoEdit",8237:"p__User__Detail__Order__pages__view__index",8241:"p__virtualSpaces__Lists__Plan__index",8286:"p__User__ThemeChange__ExperImentImgDetail",8332:"p__User__ThemeChange__Detail",8398:"p__virtualSpaces__Lists__Resources__Detail__index",8431:"p__Classrooms__Lists__Exercise__Export__index",8435:"p__Classrooms__Lists__Attendance__index",8447:"p__virtualSpaces__Lists__Knowledge__index",8458:"p__Classrooms__ThemeChange__CommonHomework",8479:"p__User__ThemeChange__TeachGroup",8517:"p__User__Detail__Topics__Group__index",8552:"p__Shixuns__ThemeChange__index",8563:"p__virtualSpaces__Lists__Discussion__Detail__index",8579:"p__Competitions__ThemeChange__Edit",8665:"p__Engineering__Lists__TrainingObjectives__index",8688:"p__Shixuns__Detail__Repository__index",8689:"p__Classrooms__Lists__Statistics__VideoStatistics__index",8723:"p__Classrooms__Lists__Polls__Edit__index",8787:"p__Competitions__Entered__index",8823:"p__knowledgegraph__Detail__id",8827:"p__Classrooms__Lists__OnlineLearning__index",8866:"p__index",8882:"p__Classrooms__Lists__Graduation__Tasks__Detail__index",8885:"p__Classrooms__Lists__Statistics__StudentStatistics__index",8965:"p__Shixuns__Detail__Discuss__ThemeChange__index",8999:"p__Three__index",9039:"p__Classrooms__ThemeChange__CourseGroup",9076:"p__Account__Binding__index",9205:"p__Shixuns__Edit__body__Level__Challenges__EditPracticeSetting__index",9366:"p__User__Login__index",9391:"p__Engineering__Lists__CurseSetting__index",9404:"monaco-editor",9406:"p__Classrooms__ThemeChange__Board",9416:"p__Graduations__Lists__Tasks__index",9449:"p__Shixuns__ThemeChange__Detail",9487:"p__LargeScreen__index",9489:"p__Engineering__Lists__CourseList__index",9507:"p__User__Detail__ResourceGuarantee__index",9511:"p__Shixuns__ThemeChange__Edit",9647:"p__Question__Index__index",9649:"p__Engineering__Lists__TrainingProgram__index",9674:"p__Shixuns__New__ImagePreview__index",9677:"p__virtualSpaces__Lists__Announcement__AddAndEdit__index",9695:"p__Classrooms__Lists__Polls__Add__index",9715:"p__Classrooms__Lists__CommonHomework__Edit__index",9716:"p__Question__OjProblem__RecordDetail__index",9785:"p__Classrooms__Lists__Template__student__index",9788:"p__Account__Profile__index",9814:"p__Shixuns__Detail__Challenges__ThemeChange__index",9891:"p__User__Detail__Videos__Success__index",9906:"p__Paths__ThemeChange__index",9921:"p__Classrooms__ExamList__index",9922:"p__Classrooms__Lists__Statistics__StudentVideo__index",9944:"p__Classrooms__Lists__Video__Statistics__StudentDetail__index"}[d]||d)+"."+{26:"91ed81ab",67:"c44b8466",109:"1a7fc455",119:"e4c7e2f1",195:"d386d7f7",201:"b1d13471",264:"5fd9b3fc",292:"ebe1afd5",337:"81c7bcf1",479:"bba9e475",485:"d63578fe",508:"82593858",518:"34b0c56e",532:"c6ca2ade",533:"c1644c7c",547:"5581debc",556:"e5f3d709",559:"c49aa5ba",576:"e4f97d42",643:"22ded693",680:"e67e9e01",700:"ee8c01a6",737:"98eb2f74",799:"4268b4f4",879:"4f6733d4",895:"ad846737",900:"7153de4b",906:"34f821b3",921:"30cc7e9b",928:"0277270a",1006:"2263131d",1043:"e8c0878b",1045:"eef9af16",1048:"dafc3f4f",1070:"e67e9e01",1077:"b01f2633",1211:"bdb8faab",1253:"734b265a",1257:"d81e3117",1276:"bbc6eeec",1343:"c3cbc5c1",1423:"5c4a76fc",1427:"5fd8fb86",1450:"1edcc2ed",1461:"23e7395f",1470:"183c9793",1475:"ab45c0fd",1477:"34fa8cf4",1482:"d159af07",1512:"f3653a35",1520:"f7300d0e",1545:"6e070ccd",1578:"efcb0bdc",1581:"efffd7c0",1582:"8e45b6ff",1651:"7dcc5c2a",1657:"bf2e3c90",1674:"fdbc1e05",1678:"f4e337ee",1713:"92b84048",1717:"7f0f9d44",1727:"9b9c0d53",1754:"b9a7e185",1783:"16f8e8de",1798:"9cd34b53",1831:"d7f32e73",1836:"5f0d3f7f",1855:"b92cccb4",1880:"7ee8b2de",1897:"7fb27ff2",1939:"f4a1d6f4",1953:"f1fcd015",1962:"84e145fa",1993:"7cc7cf77",2045:"dcfad42d",2099:"4a79b819",2102:"ec61f9f0",2130:"50dfcc51",2141:"5eb2f330",2203:"678ac330",2216:"456413c6",2240:"e7cce869",2281:"12ff9ba8",2303:"694ac54f",2307:"b2c54321",2338:"11300415",2339:"85aab714",2396:"ff49002d",2404:"08d36549",2412:"24d9bc7b",2425:"47b23ee4",2443:"528d9052",2460:"03cdfb68",2476:"cf85a190",2501:"2441982c",2539:"7b64b340",2548:"75182034",2570:"8e83fa37",2603:"0277270a",2659:"f6071a36",2707:"cabcb16e",2806:"51be3283",2819:"9455b08a",2823:"a13b21fb",2829:"a5909474",2862:"d5a7abf2",2865:"6ef3cf6b",2884:"f7cd26b3",3006:"7fce4e74",3086:"d0ebac07",3141:"ca1e55b7",3157:"c49e5eea",3183:"b2253f40",3212:"ad1521c1",3247:"50105eb7",3260:"f799e068",3276:"7bbb651d",3317:"137440b7",3391:"f0e498fe",3433:"dea891c1",3442:"bdf7849c",3447:"1653d818",3451:"e3a31387",3509:"70043ca5",3581:"62ab37ff",3585:"5f288e7b",3668:"565097a1",3747:"1fe1a956",3784:"c81d4a51",3831:"8a046c27",3832:"9eb72082",3873:"8c99280c",3910:"658d457f",3951:"9b11b034",4030:"8ab3f800",4048:"f9582bef",4056:"10eacfff",4078:"aa54548e",4093:"a57004a6",4105:"7f9d4513",4144:"f10aa199",4164:"78e7a683",4216:"0277270a",4217:"387bf824",4227:"79c3b323",4259:"ebd953ac",4264:"36917df0",4297:"eb43a0a6",4449:"e68d8d58",4492:"5dcd294e",4496:"77babddd",4498:"b5b0070d",4504:"1ce5e755",4514:"887bdbb6",4520:"e86d61a1",4546:"4101a1f2",4572:"70e5675d",4599:"49e29582",4610:"687005a6",4621:"031fd326",4662:"8daa715e",4715:"0c96bb9d",4736:"4c22f453",4741:"42c75981",4757:"73b754d2",4766:"b5df5a8e",4770:"674b2d2a",4795:"939f9f81",4800:"f50302a4",4889:"a91da64a",4928:"c7dc34b1",4973:"129c56e8",4994:"d22f784b",5022:"81b1b86b",5043:"247e6954",5048:"aa08c681",5096:"4f6a4d00",5111:"5d09a39a",5117:"fdaa2096",5125:"57501e4a",5148:"572faeac",5165:"06682387",5176:"9c49e7fa",5177:"3e3db182",5179:"699b44a8",5186:"223c175f",5230:"94dfecf3",5238:"3d41700a",5244:"9813a7fb",5297:"5426028f",5307:"6a206a2f",5319:"34217c3f",5330:"df0d8819",5335:"fec6fd9f",5357:"1fbb7d24",5359:"b254a598",5382:"c9f583a7",5402:"dd9c9367",5466:"b006b427",5518:"9f425be3",5549:"39285664",5572:"c945fbf2",5573:"6ecf393c",5624:"21d24c4d",5650:"f8f63f4b",5694:"4e7337b3",5705:"df6bf207",5729:"46f9b5d4",5775:"8945cad2",5776:"9a4c33ea",5786:"37a81eaa",5798:"ce1cf7da",5800:"7ff197e0",5816:"d8989765",5839:"1b2dcf47",5888:"193a7f8f",5891:"cf59d862",5894:"4faa35bb",5915:"bc9c3e69",5972:"b54777df",5992:"419f5d2f",6029:"b96ca927",6063:"409f866a",6069:"5d9464e8",6080:"a1ed2d1c",6127:"f31505a8",6185:"4ef42bf1",6205:"6eef461f",6265:"17d0bef3",6270:"5496b206",6282:"7121c277",6328:"de2b9d62",6366:"079fc2d8",6434:"3a066af4",6444:"fd46d237",6451:"949d91e5",6452:"50a6d310",6583:"f21c9914",6587:"9c49e7fa",6634:"c19de934",6637:"c30f0739",6651:"b07fe216",6682:"e4cb6ca3",6685:"3f03e484",6729:"aea3b7f5",6741:"b838eb14",6776:"097d9733",6784:"1affe817",6789:"c4a23373",6796:"e3fb8191",6820:"cebdf1cf",6882:"c2d2eada",6904:"44afaa9b",6913:"739202fe",6963:"84e145fa",7043:"25478869",7045:"48f6fc4c",7058:"48a85e45",7062:"afbda890",7099:"53f27149",7178:"6e47d75d",7182:"183c9793",7224:"7caf9754",7242:"4f353f61",7260:"2c380d56",7289:"96a15d30",7322:"1bf64bcf",7323:"8fa389be",7329:"c73386cd",7395:"ff574c5d",7402:"c4a75cd4",7460:"dedd2038",7477:"70469c31",7482:"c37a3f01",7527:"a4765b7e",7545:"c9ceab07",7560:"d82e43ca",7589:"ad5bad71",7614:"de9ee12f",7622:"855a08f0",7806:"80b7b1d6",7835:"7638cf65",7855:"6dbc781b",7857:"13a29416",7883:"93cf27b2",7884:"1ca6cde0",7901:"9eee4420",7922:"5d949b1c",8062:"8e384b9f",8072:"540f746b",8085:"26ff8e0f",8115:"d6472906",8143:"983b546b",8145:"79fb0dfa",8155:"d345abd7",8217:"85da8372",8237:"4c91f44f",8241:"d61a6951",8286:"a28fb411",8332:"310dfb70",8398:"9b732ba8",8431:"289b326c",8435:"c0bafa10",8447:"a9a3e3da",8458:"0d397675",8479:"59f51473",8517:"cccfddad",8552:"a8e974fa",8563:"77e848b6",8579:"8d1b4779",8665:"c52575bc",8688:"c044db56",8689:"47e04ff7",8723:"0ae0f6a8",8787:"121de108",8823:"d2033159",8827:"4b78faa1",8866:"ff8f447a",8882:"f3e42f72",8885:"de905169",8965:"f169309d",8999:"448aa22f",9039:"5e16a436",9076:"6a501148",9205:"49a3e67d",9366:"4f511490",9391:"c11edda0",9404:"d8cf04f7",9406:"97ad6a44",9416:"e12bb792",9449:"808461f2",9487:"a73f5679",9489:"ee2bb5b7",9507:"dab3307c",9511:"ec69e958",9647:"dfac61d6",9649:"00fb4211",9674:"21ccd9ed",9677:"14be9c03",9695:"82d31883",9715:"b6c6645f",9716:"a5750e0d",9785:"08d36549",9788:"781a4d20",9814:"5929fede",9891:"512a9301",9906:"d90a75c3",9921:"e0db9101",9922:"33690872",9944:"1ba31055"}[d]+".chunk.css"}}(),function(){__webpack_require__.g=function(){if(typeof globalThis=="object")return globalThis;try{return this||new Function("return this")()}catch(d){if(typeof window=="object")return window}}()}(),function(){__webpack_require__.hmd=function(d){return d=Object.create(d),d.children||(d.children=[]),Object.defineProperty(d,"exports",{enumerable:!0,set:function(){throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+d.id)}}),d}}(),function(){__webpack_require__.o=function(d,v){return Object.prototype.hasOwnProperty.call(d,v)}}(),function(){var d={};__webpack_require__.l=function(v,e,r,i){if(d[v]){d[v].push(e);return}var l,c;if(r!==void 0)for(var f=document.getElementsByTagName("script"),o=0;o<f.length;o++){var h=f[o];if(h.getAttribute("src")==v){l=h;break}}l||(c=!0,l=document.createElement("script"),l.charset="utf-8",l.timeout=120,__webpack_require__.nc&&l.setAttribute("nonce",__webpack_require__.nc),l.src=v,l.src.indexOf(window.location.origin+"/")!==0&&(l.crossOrigin="anonymous")),d[v]=[e];var u=function(x,p){l.onerror=l.onload=null,clearTimeout(a);var y=d[v];if(delete d[v],l.parentNode&&l.parentNode.removeChild(l),y&&y.forEach(function(m){return m(p)}),x)return x(p)},a=setTimeout(u.bind(null,void 0,{type:"timeout",target:l}),12e4);l.onerror=u.bind(null,l.onerror),l.onload=u.bind(null,l.onload),c&&document.head.appendChild(l)}}(),function(){__webpack_require__.r=function(d){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(d,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(d,"__esModule",{value:!0})}}(),function(){__webpack_require__.nmd=function(d){return d.paths=[],d.children||(d.children=[]),d}}(),function(){__webpack_require__.p="/react/build/"}(),function(){if(typeof document!="undefined"){var d=function(i,l,c,f,o){var h=document.createElement("link");h.rel="stylesheet",h.type="text/css";var u=function(a){if(h.onerror=h.onload=null,a.type==="load")f();else{var x=a&&(a.type==="load"?"missing":a.type),p=a&&a.target&&a.target.href||l,y=new Error("Loading CSS chunk "+i+` failed.
(`+p+")");y.code="CSS_CHUNK_LOAD_FAILED",y.type=x,y.request=p,h.parentNode.removeChild(h),o(y)}};return h.onerror=h.onload=u,h.href=l,h.href.indexOf(window.location.origin+"/")!==0&&(h.crossOrigin="anonymous"),c?c.parentNode.insertBefore(h,c.nextSibling):document.head.appendChild(h),h},v=function(i,l){for(var c=document.getElementsByTagName("link"),f=0;f<c.length;f++){var o=c[f],h=o.getAttribute("data-href")||o.getAttribute("href");if(o.rel==="stylesheet"&&(h===i||h===l))return o}for(var u=document.getElementsByTagName("style"),f=0;f<u.length;f++){var o=u[f],h=o.getAttribute("data-href");if(h===i||h===l)return o}},e=function(i){return new Promise(function(l,c){var f=__webpack_require__.miniCssF(i),o=__webpack_require__.p+f;if(v(f,o))return l();d(i,o,null,l,c)})},r={4620:0};__webpack_require__.f.miniCss=function(i,l){var c={26:1,67:1,109:1,119:1,195:1,201:1,264:1,292:1,337:1,479:1,485:1,508:1,518:1,532:1,533:1,547:1,556:1,559:1,576:1,643:1,680:1,700:1,737:1,799:1,879:1,895:1,900:1,906:1,921:1,928:1,1006:1,1043:1,1045:1,1048:1,1070:1,1077:1,1211:1,1253:1,1257:1,1276:1,1343:1,1423:1,1427:1,1450:1,1461:1,1470:1,1475:1,1477:1,1482:1,1512:1,1520:1,1545:1,1578:1,1581:1,1582:1,1651:1,1657:1,1674:1,1678:1,1713:1,1717:1,1727:1,1754:1,1783:1,1798:1,1831:1,1836:1,1855:1,1880:1,1897:1,1939:1,1953:1,1962:1,1993:1,2045:1,2099:1,2102:1,2130:1,2141:1,2203:1,2216:1,2240:1,2281:1,2303:1,2307:1,2338:1,2339:1,2396:1,2404:1,2412:1,2425:1,2443:1,2460:1,2476:1,2501:1,2539:1,2548:1,2570:1,2603:1,2659:1,2707:1,2806:1,2819:1,2823:1,2829:1,2862:1,2865:1,2884:1,3006:1,3086:1,3141:1,3157:1,3183:1,3212:1,3247:1,3260:1,3276:1,3317:1,3391:1,3433:1,3442:1,3447:1,3451:1,3509:1,3581:1,3585:1,3668:1,3747:1,3784:1,3831:1,3832:1,3873:1,3910:1,3951:1,4030:1,4048:1,4056:1,4078:1,4093:1,4105:1,4144:1,4164:1,4216:1,4217:1,4227:1,4259:1,4264:1,4297:1,4449:1,4492:1,4496:1,4498:1,4504:1,4514:1,4520:1,4546:1,4572:1,4599:1,4610:1,4621:1,4662:1,4715:1,4736:1,4741:1,4757:1,4766:1,4770:1,4795:1,4800:1,4889:1,4928:1,4973:1,4994:1,5022:1,5043:1,5048:1,5096:1,5111:1,5117:1,5125:1,5148:1,5165:1,5176:1,5177:1,5179:1,5186:1,5230:1,5238:1,5244:1,5297:1,5307:1,5319:1,5330:1,5335:1,5357:1,5359:1,5382:1,5402:1,5466:1,5518:1,5549:1,5572:1,5573:1,5624:1,5650:1,5694:1,5705:1,5729:1,5775:1,5776:1,5786:1,5798:1,5800:1,5816:1,5839:1,5888:1,5891:1,5894:1,5915:1,5972:1,5992:1,6029:1,6063:1,6069:1,6080:1,6127:1,6185:1,6205:1,6265:1,6270:1,6282:1,6328:1,6366:1,6434:1,6444:1,6451:1,6452:1,6583:1,6587:1,6634:1,6637:1,6651:1,6682:1,6685:1,6729:1,6741:1,6776:1,6784:1,6789:1,6796:1,6820:1,6882:1,6904:1,6913:1,6963:1,7043:1,7045:1,7058:1,7062:1,7099:1,7178:1,7182:1,7224:1,7242:1,7260:1,7289:1,7322:1,7323:1,7329:1,7395:1,7402:1,7460:1,7477:1,7482:1,7527:1,7545:1,7560:1,7589:1,7614:1,7622:1,7806:1,7835:1,7855:1,7857:1,7883:1,7884:1,7901:1,7922:1,8062:1,8072:1,8085:1,8115:1,8143:1,8145:1,8155:1,8217:1,8237:1,8241:1,8286:1,8332:1,8398:1,8431:1,8435:1,8447:1,8458:1,8479:1,8517:1,8552:1,8563:1,8579:1,8665:1,8688:1,8689:1,8723:1,8787:1,8823:1,8827:1,8866:1,8882:1,8885:1,8965:1,8999:1,9039:1,9076:1,9205:1,9366:1,9391:1,9404:1,9406:1,9416:1,9449:1,9487:1,9489:1,9507:1,9511:1,9647:1,9649:1,9674:1,9677:1,9695:1,9715:1,9716:1,9785:1,9788:1,9814:1,9891:1,9906:1,9921:1,9922:1,9944:1};r[i]?l.push(r[i]):r[i]!==0&&c[i]&&l.push(r[i]=e(i).then(function(){r[i]=0},function(f){throw delete r[i],f}))}}}(),function(){__webpack_require__.b=document.baseURI||self.location.href;var d={4620:0};__webpack_require__.f.j=function(r,i){var l=__webpack_require__.o(d,r)?d[r]:void 0;if(l!==0)if(l)i.push(l[2]);else if(/^(4599|8435|9404)$/.test(r))d[r]=0;else{var c=new Promise(function(u,a){l=d[r]=[u,a]});i.push(l[2]=c);var f=__webpack_require__.p+__webpack_require__.u(r),o=new Error,h=function(u){if(__webpack_require__.o(d,r)&&(l=d[r],l!==0&&(d[r]=void 0),l)){var a=u&&(u.type==="load"?"missing":u.type),x=u&&u.target&&u.target.src;o.message="Loading chunk "+r+` failed.
(`+a+": "+x+")",o.name="ChunkLoadError",o.type=a,o.request=x,l[1](o)}};__webpack_require__.l(f,h,"chunk-"+r,r)}};var v=function(r,i){var l=i[0],c=i[1],f=i[2],o,h,u=0;if(l.some(function(x){return d[x]!==0})){for(o in c)__webpack_require__.o(c,o)&&(__webpack_require__.m[o]=c[o]);if(f)var a=f(__webpack_require__)}for(r&&r(i);u<l.length;u++)h=l[u],__webpack_require__.o(d,h)&&d[h]&&d[h][0](),d[h]=0},e=self.webpackChunk=self.webpackChunk||[];e.forEach(v.bind(null,0)),e.push=v.bind(null,e.push.bind(e))}();var __webpack_exports__={};(function(){"use strict";var d=__webpack_require__(68557),v=__webpack_require__(44852),e=__webpack_require__(64003),r=__webpack_require__(17898),i=__webpack_require__(40902),l=__webpack_require__(2259),c=__webpack_require__(14589),f=__webpack_require__(69811),o=__webpack_require__(18114),h=__webpack_require__(23844),u=__webpack_require__(39581),a=__webpack_require__(40632),x=__webpack_require__(22690),p=__webpack_require__(7786),y=__webpack_require__(99062),m=__webpack_require__(31808),b=__webpack_require__(99953),S=__webpack_require__(86357),k=__webpack_require__(93074),R=__webpack_require__(96331),A=__webpack_require__(2924),P=__webpack_require__(26425),M=__webpack_require__(32125),B=__webpack_require__(16137),N=__webpack_require__(48435),K=__webpack_require__(11553),H=__webpack_require__(70365),W=__webpack_require__(33717),ae=__webpack_require__(17482),ne=__webpack_require__(23708),oe=__webpack_require__(65033),q=__webpack_require__(52732),X=__webpack_require__(99382),V=__webpack_require__(88437),se=__webpack_require__(68440),ee=__webpack_require__(13412),J=__webpack_require__(11005),le=__webpack_require__(70348),z=__webpack_require__(19801),j=__webpack_require__(91550),ie=__webpack_require__(85223),me=__webpack_require__(7154),Se=__webpack_require__(67788),Ie=__webpack_require__(96009),He=__webpack_require__(9402),je=__webpack_require__(62489),Dt=__webpack_require__(80881),ht=__webpack_require__(62837),It=__webpack_require__(4705),Zt=__webpack_require__(13941),Rt=__webpack_require__(1148),ar=__webpack_require__(82445),$e=__webpack_require__(27267),gt=__webpack_require__(96353),Mt=__webpack_require__(90308),et=__webpack_require__(84818),ft=__webpack_require__(80585),ot=__webpack_require__(89170),Je=__webpack_require__(71012),Ne=__webpack_require__(84203),ye=__webpack_require__(22112),ke=__webpack_require__(81440),Ge=__webpack_require__(25430),We=__webpack_require__(70105),Xe=__webpack_require__(71390),ut=__webpack_require__(96844),pt=__webpack_require__(83578),or=__webpack_require__(69762),tr=__webpack_require__(76880),Me=__webpack_require__(65009),tt=__webpack_require__(28796),Yt=__webpack_require__(56450),Ot=__webpack_require__(78342),zt=__webpack_require__(13161),Ht=__webpack_require__(54226),lr=__webpack_require__(70201),Wt=__webpack_require__(34941),Ce=__webpack_require__(85671),ce=__webpack_require__(35152),pe=__webpack_require__(85660),Ct=__webpack_require__(80031),Ae=__webpack_require__(34434),st=__webpack_require__(83579),Gt=__webpack_require__(74307),bt=__webpack_require__(97423),Te=__webpack_require__(93321),yt=__webpack_require__(82277),ze=__webpack_require__(61425),xe=__webpack_require__(61873),dt=__webpack_require__(9307),Pt=__webpack_require__(8821),Be=__webpack_require__(64385),Or=__webpack_require__(64099),mt=__webpack_require__(62455),qr=__webpack_require__(79965),an=__webpack_require__(59118),Nt=__webpack_require__(275),qt=__webpack_require__(31919),Lt=__webpack_require__(51284),Xt=__webpack_require__(10177),Er=__webpack_require__(85690),Pr=__webpack_require__(92114),At=__webpack_require__(1017),Kt=__webpack_require__(14480),Bt=__webpack_require__(40516),Jt=__webpack_require__(76345),br=__webpack_require__(7282),Xr=__webpack_require__(58055),Wr=__webpack_require__(93547),jn=__webpack_require__(31237),wn=__webpack_require__(17954),Yn=__webpack_require__(58580),St=__webpack_require__(47146),Vr=__webpack_require__(40416),ii=__webpack_require__(7615),Bi=__webpack_require__(72820),Gn=__webpack_require__(86070),ci=__webpack_require__(23569),Oi=__webpack_require__(55639),$i=__webpack_require__(63046),Ai=__webpack_require__(464),ji=__webpack_require__(51082),ha=__webpack_require__(83850),ea=__webpack_require__(41990),Yi=__webpack_require__(15787),mi=__webpack_require__(55888),zi=__webpack_require__(53827),Ca=__webpack_require__(78143),xt=__webpack_require__(66419),xa=__webpack_require__(75765),Zi=__webpack_require__(14645),_i=__webpack_require__(71122),Da=__webpack_require__(42084),Hi=__webpack_require__(25070),ei=__webpack_require__(77140),$n=__webpack_require__(15954),Ee=__webpack_require__(4266),nt=__webpack_require__(49988),qe=__webpack_require__(38823),Tt=__webpack_require__(24627),lt=__webpack_require__(4045),hr=__webpack_require__(50747),pr=__webpack_require__(43595),Cr=__webpack_require__(92324),$r=__webpack_require__(23551),en=__webpack_require__(74521),Nr=__webpack_require__(57891),An=__webpack_require__(84138),_r=__webpack_require__(51832),Fn=__webpack_require__(37135),Qn=__webpack_require__(6474),Ke=__webpack_require__(40135),ct=__webpack_require__(7982),ge=__webpack_require__(14893),sr=__webpack_require__(49233),nr=__webpack_require__(92130),kr=__webpack_require__(42844),Hr=__webpack_require__(6536),Zr=__webpack_require__(27228),hn=__webpack_require__(62921),Si=__webpack_require__(44001),un=__webpack_require__(92262),yn=__webpack_require__(54744),Gr=__webpack_require__(38214),kn=__webpack_require__(12756),si=__webpack_require__(93379),Ea=__webpack_require__(62007),Js=__webpack_require__(90572),Ba=__webpack_require__(37343),$s=__webpack_require__(45945),Ns=__webpack_require__(75551),as=__webpack_require__(32493),oo=__webpack_require__(20852),Aa=__webpack_require__(46302),Is=__webpack_require__(18827),ps=__webpack_require__(76718),po=__webpack_require__(79172),Ji=__webpack_require__(32192),to=__webpack_require__(42828),zo=__webpack_require__(5658),Na=__webpack_require__(55629),zs=__webpack_require__(62925),di=__webpack_require__(9595),ro=__webpack_require__(58127),Rn=__webpack_require__(70917),ss=__webpack_require__(53427),Ps=__webpack_require__(70878),Os=__webpack_require__(49257),Qi=__webpack_require__(72910),Ka=__webpack_require__(34932),Ni=__webpack_require__(81046),Ds=__webpack_require__(85744),xo=__webpack_require__(13494),Zo=__webpack_require__(56338),Qo=__webpack_require__(66755),mu=__webpack_require__(68709),_u=__webpack_require__(4939),vo=__webpack_require__(81927),Wo=__webpack_require__(60462),Oo=__webpack_require__(72571),nu=__webpack_require__(71200),Xo=__webpack_require__(85767),hi=__webpack_require__(84432),vi=__webpack_require__(59022),qa=__webpack_require__(19363),ls=__webpack_require__(51054),es=__webpack_require__(60330),Wa=__webpack_require__(55234),ms=__webpack_require__(88104),Jo=__webpack_require__(64336),ks=__webpack_require__(63914),Mo=__webpack_require__(35246),Eu=__webpack_require__(83470),Pu=__webpack_require__(79641),rl=__webpack_require__(72397),dl=__webpack_require__(24860),Fo=__webpack_require__(19320),uo=__webpack_require__(56233),Ho=__webpack_require__(59419),Hu=__webpack_require__(64344),Bo=__webpack_require__(5316),Go=__webpack_require__(93744),Uu=__webpack_require__(19299),iu=__webpack_require__(15286),vu=__webpack_require__(91927),No=__webpack_require__(27730),gu=__webpack_require__(58707),Ko=__webpack_require__(41356),rr=__webpack_require__(51606),gr=__webpack_require__(8966),dr=__webpack_require__(38458),vr=__webpack_require__(71957),Tr=__webpack_require__(89466),bn=__webpack_require__(69653),zn=__webpack_require__(96519),Ln=__webpack_require__(95576),Zn=__webpack_require__(63079),ai=__webpack_require__(8995),Jn=__webpack_require__(23080),mr=__webpack_require__(74701),Fr=__webpack_require__(91809),Br=__webpack_require__(77517),Tn=__webpack_require__(30149),In=__webpack_require__(55410),oi=__webpack_require__(46161),wi=__webpack_require__(14800),Hn=__webpack_require__(91130),ta=__webpack_require__(2722),ra=__webpack_require__(55885),gi=__webpack_require__(39034),Et=__webpack_require__(8604),Xn=__webpack_require__(64963),Sa=__webpack_require__(25178),Ra=__webpack_require__(1905),Ys=__webpack_require__(94306),sn=__webpack_require__(11762),Do=__webpack_require__(93164),lo=__webpack_require__(88900),Rs=__webpack_require__(54815),no=__webpack_require__(81138),io=__webpack_require__(37252),ts=__webpack_require__(81673),cs=__webpack_require__(48966),ja=__webpack_require__(13015),os=__webpack_require__(78527),Qe=__webpack_require__(20511),Pe=__webpack_require__(78366),Ft=__webpack_require__(27427),_t=__webpack_require__(43890),Sr=__webpack_require__(55844),Mr=__webpack_require__(71361),Kr=__webpack_require__(44550),xn=__webpack_require__(413),cn=__webpack_require__(77464),Sn=__webpack_require__(77703),ri=__webpack_require__(93854),ni=__webpack_require__(962),yi=__webpack_require__(44169),Li=__webpack_require__(56272),na=__webpack_require__(43466),Wi=__webpack_require__(48156),Ci=__webpack_require__(93236),Ia=__webpack_require__(42212),Ii=__webpack_require__(63923),pi=__webpack_require__(2278),ca=__webpack_require__(36955),Eo=__webpack_require__(77326),Qs=__webpack_require__(53571),ia=__webpack_require__(28670),fs=__webpack_require__(31050),ya=__webpack_require__(25321),_s=__webpack_require__(96364),La=__webpack_require__(46304),rs=__webpack_require__(55163),Ls=__webpack_require__(78722),ao=__webpack_require__(35977),xs=__webpack_require__(81848),pa=__webpack_require__(52867),Ms=__webpack_require__(72211),jo=__webpack_require__(84862),qs=__webpack_require__(92381),Ha=__webpack_require__(19517),us=__webpack_require__(69667),co=__webpack_require__(80820),Va=__webpack_require__(87873),Vt=__webpack_require__(54609),kt=__webpack_require__(28566),Pa=__webpack_require__(51697),Zs=__webpack_require__(61872),_n=__webpack_require__(76077),En=__webpack_require__(9196),Ze=__webpack_require__(5369),jt=__webpack_require__(26259),wr=__webpack_require__(47736),Rr=__webpack_require__(28220),Jr=__webpack_require__(62060),gn=__webpack_require__(49350),Xi=__webpack_require__(20126),ui=__webpack_require__(18090),wo=__webpack_require__(14309),fa=__webpack_require__(17822),ns=__webpack_require__(83543),Xa=__webpack_require__(13853),Es=__webpack_require__(25188),go=__webpack_require__(10215),wu=__webpack_require__(3432),yu=__webpack_require__(90486),Ve=__webpack_require__(6736),Z=__webpack_require__(8774),Y=__webpack_require__(94065),te=__webpack_require__(93036),he=__webpack_require__(75708),we=__webpack_require__(84624),Ye=__webpack_require__(66233),wt=__webpack_require__(43710),$t=__webpack_require__(92762),cr=__webpack_require__(24467),Ir=__webpack_require__(68465),Yr=__webpack_require__(77004),fn=__webpack_require__(83925),Cn=__webpack_require__(51117),Wn=__webpack_require__(87236),qn=__webpack_require__(83733),Di=__webpack_require__(92044),Fi=__webpack_require__(29190),aa=__webpack_require__(10775),ba=__webpack_require__(19593),Ts=__webpack_require__(26502),Fs=__webpack_require__(10174),js=__webpack_require__(96378),vs=__webpack_require__(58216),Oa=__webpack_require__(41401),fo=__webpack_require__(79908),ws=__webpack_require__(82531),yr=__webpack_require__(79890),ko=__webpack_require__(88472),Uo=__webpack_require__(38944),Su=__webpack_require__(78423),Ws=__webpack_require__(65713),qo=__webpack_require__(22968),yo=__webpack_require__(17564),oc=__webpack_require__(1220),wl=__webpack_require__(44886),Sl=__webpack_require__(57019),nl=__webpack_require__(35295),Hs=__webpack_require__(80286),Gu=__webpack_require__(38487),Ku=__webpack_require__(29916),Ro=__webpack_require__(25541),eu=__webpack_require__(45612),zl=__webpack_require__(34926),bu=__webpack_require__(98080),Zl=__webpack_require__(68255),So=__webpack_require__(96351),au=__webpack_require__(16450),hl=__webpack_require__(60244),Wl=__webpack_require__(86921),tu=__webpack_require__(82928),Hl=__webpack_require__(42947),Gl=__webpack_require__(71568),li=__webpack_require__(94194),uc=__webpack_require__(30556),ho=__webpack_require__(32100),Hc=__webpack_require__(93102),$u=__webpack_require__(1821),pl=__webpack_require__(82074),il=__webpack_require__(13578),Ac=__webpack_require__(59348),Gc=__webpack_require__(62882),Ao=__webpack_require__(37457),Kc=__webpack_require__(70654),Kl=__webpack_require__(90252),lc=__webpack_require__(29482),Dl=__webpack_require__(51630),Vc=__webpack_require__(61933),kl=__webpack_require__(619),Ou=__webpack_require__(99675),Vl=__webpack_require__(52548),mo=__webpack_require__(53637),ru=__webpack_require__(57482),fu=__webpack_require__(59725),Yl=__webpack_require__(17610),Al=__webpack_require__(56966),zu=__webpack_require__(11507),du=__webpack_require__(16315),pf=__webpack_require__(60239),Du=__webpack_require__(49381),xu=__webpack_require__(17230),Vu=__webpack_require__(62720),Tc=__webpack_require__(57151),Rl=__webpack_require__(48732),Ta=__webpack_require__(18481),mf=__webpack_require__(55055),Yc=__webpack_require__(7195),ml=__webpack_require__(89179),Qc=__webpack_require__(90965),Df=__webpack_require__(67725),Cc=__webpack_require__(59884),ku=__webpack_require__(89202),_f=__webpack_require__(97815),Ic=__webpack_require__(11593),Ql=__webpack_require__(7597),vf=__webpack_require__(55182),Pc=__webpack_require__(34366),Ru=__webpack_require__(85425),_l=__webpack_require__(64522),Oc=__webpack_require__(41599),vl=__webpack_require__(86465),Xc=__webpack_require__(78437),gf=__webpack_require__(73624),cc=__webpack_require__(62059),To=__webpack_require__(10305),Dc=__webpack_require__(41208),Jc=__webpack_require__(25204),gl=__webpack_require__(40061),Zu=__webpack_require__(47803),Co=__webpack_require__(7893),Ll=__webpack_require__(4890),kf=__webpack_require__(5340),kc=__webpack_require__(61650),Yu=__webpack_require__(58246),Xs=__webpack_require__(65873),bo=__webpack_require__(63579),Lu=__webpack_require__(87296),Ue=__webpack_require__(59301),Qu=__webpack_require__(4676),Au=__webpack_require__(35338),fc=__webpack_require__(67704);function hu(Mn){var ti=Mn.id,Gi=Mn.basename,Ma=Mn.cb,sa=new URLSearchParams({route:ti,url:window.location.href}).toString(),wa="".concat(Xu(window.umiServerLoaderPath||Gi),"__serverLoader?").concat(sa);fetch(wa,{credentials:"include"}).then(function(va){return va.json()}).then(Ma).catch(console.error)}function Xu(){var Mn=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return Mn.endsWith("/")?Mn:"".concat(Mn,"/")}var dc=__webpack_require__(38127),hc=__webpack_require__(38329),al=__webpack_require__(8616),sl=["content"],Mu=["content"],yf=/^(http:|https:)?\/\//;function pc(Mn){return yf.test(Mn)||Mn.startsWith("/")&&!Mn.startsWith("/*")||Mn.startsWith("./")||Mn.startsWith("../")}var Tu=function(){return Ue.createElement("noscript",{dangerouslySetInnerHTML:{__html:"<b>Enable JavaScript to run this app.</b>"}})},yl=function(ti){var Gi,Ma=ti.loaderData,sa=ti.htmlPageOpts,wa=ti.manifest,va=(wa==null||(Gi=wa.assets)===null||Gi===void 0?void 0:Gi["umi.css"])||"";return Ue.createElement("script",{suppressHydrationWarning:!0,dangerouslySetInnerHTML:{__html:"window.__UMI_LOADER_DATA__ = ".concat(JSON.stringify(Ma||{}),"; window.__UMI_METADATA_LOADER_DATA__ = ").concat(JSON.stringify(sa||{}),"; window.__UMI_BUILD_ClIENT_CSS__ = '").concat(va,"'")}})};function Fu(Mn){var ti=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(typeof Mn=="string")return pc(Mn)?(0,bo.Z)({src:Mn},ti):{content:Mn};if((0,al.Z)(Mn)==="object")return(0,bo.Z)((0,bo.Z)({},Mn),ti);throw new Error("Invalid script type: ".concat((0,al.Z)(Mn)))}function $f(Mn){return pc(Mn)?{type:"link",href:Mn}:{type:"style",content:Mn}}var qc=function(ti){var Gi,Ma,sa,wa,va,Bs,oa=ti.htmlPageOpts;return Ue.createElement(Ue.Fragment,null,(oa==null?void 0:oa.title)&&Ue.createElement("title",null,oa.title),oa==null||(Gi=oa.favicons)===null||Gi===void 0?void 0:Gi.map(function(Us,qu){return Ue.createElement("link",{key:qu,rel:"shortcut icon",href:Us})}),(oa==null?void 0:oa.description)&&Ue.createElement("meta",{name:"description",content:oa.description}),(oa==null||(Ma=oa.keywords)===null||Ma===void 0?void 0:Ma.length)&&Ue.createElement("meta",{name:"keywords",content:oa.keywords.join(",")}),oa==null||(sa=oa.metas)===null||sa===void 0?void 0:sa.map(function(Us){return Ue.createElement("meta",{key:Us.name,name:Us.name,content:Us.content})}),oa==null||(wa=oa.links)===null||wa===void 0?void 0:wa.map(function(Us,qu){return Ue.createElement("link",(0,hc.Z)({key:qu},Us))}),oa==null||(va=oa.styles)===null||va===void 0?void 0:va.map(function(Us,qu){var ul=$f(Us),El=ul.type,el=ul.href,jl=ul.content;if(El==="link")return Ue.createElement("link",{key:qu,rel:"stylesheet",href:el});if(El==="style")return Ue.createElement("style",{key:qu},jl)}),oa==null||(Bs=oa.headScripts)===null||Bs===void 0?void 0:Bs.map(function(Us,qu){var ul=Fu(Us),El=ul.content,el=(0,dc.Z)(ul,sl);return Ue.createElement("script",(0,hc.Z)({dangerouslySetInnerHTML:{__html:El},key:qu},el))}))};function Vo(Mn){var ti,Gi=Mn.children,Ma=Mn.loaderData,sa=Mn.manifest,wa=Mn.htmlPageOpts,va=Mn.__INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Bs=Mn.mountElementId;if(va!=null&&va.pureHtml)return Ue.createElement("html",null,Ue.createElement("head",null,Ue.createElement(qc,{htmlPageOpts:wa})),Ue.createElement("body",null,Ue.createElement(Tu,null),Ue.createElement("div",{id:Bs},Gi),Ue.createElement(yl,{manifest:sa,loaderData:Ma,htmlPageOpts:wa})));if(va!=null&&va.pureApp)return Ue.createElement(Ue.Fragment,null,Gi);var oa=typeof window=="undefined"?sa==null?void 0:sa.assets["umi.css"]:window.__UMI_BUILD_ClIENT_CSS__;return Ue.createElement("html",{suppressHydrationWarning:!0,lang:(wa==null?void 0:wa.lang)||"en"},Ue.createElement("head",null,Ue.createElement("meta",{charSet:"utf-8"}),Ue.createElement("meta",{name:"viewport",content:"width=device-width, initial-scale=1"}),oa&&Ue.createElement("link",{suppressHydrationWarning:!0,rel:"stylesheet",href:oa}),Ue.createElement(qc,{htmlPageOpts:wa})),Ue.createElement("body",null,Ue.createElement(Tu,null),Ue.createElement("div",{id:Bs},Gi),Ue.createElement(yl,{manifest:sa,loaderData:Ma,htmlPageOpts:wa}),wa==null||(ti=wa.scripts)===null||ti===void 0?void 0:ti.map(function(Us,qu){var ul=Fu(Us),El=ul.content,el=(0,dc.Z)(ul,Mu);return Ue.createElement("script",(0,hc.Z)({dangerouslySetInnerHTML:{__html:El},key:qu},el))})))}var Ml=Ue.createContext(void 0);function Rc(){return Ue.useContext(Ml)}var mc=["redirect"];function _c(Mn){var ti=Mn.routesById,Gi=Mn.parentId,Ma=Mn.routeComponents,sa=Mn.useStream,wa=sa===void 0?!0:sa;return Object.keys(ti).filter(function(va){return ti[va].parentId===Gi}).map(function(va){var Bs=gc((0,bo.Z)((0,bo.Z)({route:ti[va],routeComponent:Ma[va],loadingComponent:Mn.loadingComponent,reactRouter5Compat:Mn.reactRouter5Compat},Mn.reactRouter5Compat&&{hasChildren:Object.keys(ti).filter(function(Us){return ti[Us].parentId===va}).length>0}),{},{useStream:wa})),oa=_c({routesById:ti,routeComponents:Ma,parentId:Bs.id,loadingComponent:Mn.loadingComponent,reactRouter5Compat:Mn.reactRouter5Compat,useStream:wa});return oa.length>0&&(Bs.children=oa,Bs.routes=oa),Bs})}function vc(Mn){var ti=(0,Au.UO)(),Gi=(0,Au.Gn)(Mn.to,ti),Ma=(0,fc.T$)(),sa=(0,Au.TH)();if(Ma!=null&&Ma.keepQuery){var wa=sa.search+sa.hash;Gi+=wa}var va=(0,bo.Z)((0,bo.Z)({},Mn),{},{to:Gi});return Ue.createElement(Au.Fg,(0,hc.Z)({replace:!0},va))}function gc(Mn){var ti=Mn.route,Gi=Mn.useStream,Ma=Gi===void 0?!0:Gi,sa=ti.redirect,wa=(0,dc.Z)(ti,mc),va=Mn.reactRouter5Compat?Lc:Xl;return(0,bo.Z)({element:sa?Ue.createElement(vc,{to:sa}):Ue.createElement(Ml.Provider,{value:{route:Mn.route}},Ue.createElement(va,{loader:Ue.memo(Mn.routeComponent),loadingComponent:Mn.loadingComponent||Rf,hasChildren:Mn.hasChildren,useStream:Ma}))},wa)}function Rf(){return Ue.createElement("div",null)}function Lc(Mn){var ti=Rc(),Gi=ti.route,Ma=(0,fc.Ov)(),sa=Ma.history,wa=Ma.clientRoutes,va=(0,Au.UO)(),Bs={params:va,isExact:!0,path:Gi.path,url:sa.location.pathname},oa=Mn.loader,Us={location:sa.location,match:Bs,history:sa,params:va,route:Gi,routes:wa};return Mn.useStream?Ue.createElement(Ue.Suspense,{fallback:Ue.createElement(Mn.loadingComponent,null)},Ue.createElement(oa,Us,Mn.hasChildren&&Ue.createElement(Au.j3,null))):Ue.createElement(oa,Us,Mn.hasChildren&&Ue.createElement(Au.j3,null))}function Xl(Mn){var ti=Mn.loader;return Mn.useStream?Ue.createElement(Ue.Suspense,{fallback:Ue.createElement(Mn.loadingComponent,null)},Ue.createElement(ti,null)):Ue.createElement(ti,null)}var Jl=null;function bf(){return Jl}function ef(Mn){var ti=Mn.history,Gi=Ue.useState({action:ti.action,location:ti.location}),Ma=(0,Lu.Z)(Gi,2),sa=Ma[0],wa=Ma[1];return(0,Ue.useLayoutEffect)(function(){return ti.listen(wa)},[ti]),(0,Ue.useLayoutEffect)(function(){function va(Bs){Mn.pluginManager.applyPlugins({key:"onRouteChange",type:"event",args:{routes:Mn.routes,clientRoutes:Mn.clientRoutes,location:Bs.location,action:Bs.action,basename:Mn.basename,isFirst:!!Bs.isFirst}})}return va({location:sa.location,action:sa.action,isFirst:!0}),ti.listen(va)},[ti,Mn.routes,Mn.clientRoutes]),Ue.createElement(Au.F0,{navigator:ti,location:sa.location,basename:Mn.basename},Mn.children)}function ol(){var Mn=(0,fc.Ov)(),ti=Mn.clientRoutes;return(0,Au.V$)(ti)}var yc=["innerProvider","i18nProvider","accessProvider","dataflowProvider","outerProvider","rootContainer"],bc=function(ti,Gi){var Ma=ti.basename||"/",sa=_c({routesById:ti.routes,routeComponents:ti.routeComponents,loadingComponent:ti.loadingComponent,reactRouter5Compat:ti.reactRouter5Compat,useStream:ti.useStream});ti.pluginManager.applyPlugins({key:"patchClientRoutes",type:"event",args:{routes:sa}});for(var wa=Ue.createElement(ef,{basename:Ma,pluginManager:ti.pluginManager,routes:ti.routes,clientRoutes:sa,history:ti.history},Gi),va=0,Bs=yc;va<Bs.length;va++){var oa=Bs[va];wa=ti.pluginManager.applyPlugins({type:"modify",key:oa,initialValue:wa,args:{routes:ti.routes,history:ti.history,plugin:ti.pluginManager}})}var Us=function(){var ul=(0,Ue.useState)({}),El=(0,Lu.Z)(ul,2),el=El[0],jl=El[1],Kf=(0,Ue.useState)(window.__UMI_LOADER_DATA__||{}),Sf=(0,Lu.Z)(Kf,2),rc=Sf[0],Lf=Sf[1],af=(0,Ue.useCallback)(function(sf,of){var tl,Vf=(((tl=(0,Au.fp)(sa,sf,Ma))===null||tl===void 0?void 0:tl.map(function(ll){return ll.route.id}))||[]).filter(Boolean);Vf.forEach(function(ll){var uf,Mf;if(window.__umi_route_prefetch__){var ou,Af=(ou=ti.routeComponents[ll])===null||ou===void 0||(ou=ou._payload)===null||ou===void 0?void 0:ou._result;typeof Af=="function"&&Af()}var lf=(uf=ti.routes[ll])===null||uf===void 0?void 0:uf.clientLoader,Pl=!!lf,Uc=(Mf=ti.routes[ll])===null||Mf===void 0?void 0:Mf.hasServerLoader;!of&&Uc&&!Pl&&!window.__UMI_LOADER_DATA__&&hu({id:ll,basename:Ma,cb:function($c){Ue.startTransition(function(){Lf(function(Ff){return(0,bo.Z)((0,bo.Z)({},Ff),{},(0,Xs.Z)({},ll,$c))})})}});var uu=!!el[ll],Tf=Pl&&lf.hydrate||!Uc,Cf=Uc&&!window.__UMI_LOADER_DATA__;Pl&&!uu&&(Tf||Cf)&&lf({serverLoader:function(){return hu({id:ll,basename:Ma,cb:function(Ff){Ue.startTransition(function(){Lf(function(zc){return(0,bo.Z)((0,bo.Z)({},zc),{},(0,Xs.Z)({},ll,Ff))})})}})}}).then(function(cf){jl(function($c){return(0,bo.Z)((0,bo.Z)({},$c),{},(0,Xs.Z)({},ll,cf))})})})},[el]);return(0,Ue.useEffect)(function(){return af(window.location.pathname,!0),ti.history.listen(function(sf){af(sf.location.pathname)})},[]),(0,Ue.useLayoutEffect)(function(){typeof ti.callback=="function"&&ti.callback()},[]),Ue.createElement(fc.Il.Provider,{value:{routes:ti.routes,routeComponents:ti.routeComponents,clientRoutes:sa,pluginManager:ti.pluginManager,rootElement:ti.rootElement,basename:Ma,clientLoaderData:el,serverLoaderData:rc,preloadRoute:af,history:ti.history}},wa)};return Us};function Mc(Mn){var ti=Mn.rootElement||document.getElementById("root"),Gi=bc(Mn,Ue.createElement(ol,null));if(Mn.components)return Gi;if(Mn.hydrate){var Ma=window.__UMI_LOADER_DATA__||{},sa=window.__UMI_METADATA_LOADER_DATA__||{},wa={metadata:sa,loaderData:Ma,mountElementId:Mn.mountElementId},va=Mn.__INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.pureApp||Mn.__INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.pureHtml;Qu.hydrateRoot(va?ti:document,va?Ue.createElement(Gi,null):Ue.createElement(Vo,wa,Ue.createElement(Gi,null)));return}if(Qu.createRoot){Jl=Qu.createRoot(ti),Jl.render(Ue.createElement(Gi,null));return}Qu.render(Ue.createElement(Gi,null),ti)}var Fc=(Mn,ti,Gi)=>new Promise((Ma,sa)=>{var wa=oa=>{try{Bs(Gi.next(oa))}catch(Us){sa(Us)}},va=oa=>{try{Bs(Gi.throw(oa))}catch(Us){sa(Us)}},Bs=oa=>oa.done?Ma(oa.value):Promise.resolve(oa.value).then(wa,va);Bs((Gi=Gi.apply(Mn,ti)).next())});function xf(){return Fc(this,null,function*(){return{routes:{1:{path:"/",parentId:"@@/global-layout",id:"1"},2:{path:"/paperlibrary",parentId:"1",id:"2"},3:{path:"/paperlibrary",parentId:"2",id:"3"},4:{path:"/paperlibrary/add",parentId:"2",id:"4"},5:{path:"/paperlibrary/add/:id",parentId:"2",id:"5"},6:{path:"/paperlibrary/see/:id",parentId:"2",id:"6"},7:{path:"/paperlibrary/edit_select/:id",parentId:"2",id:"7"},8:{path:"/paperlibrary/exchangequestion",parentId:"2",id:"8"},9:{path:"/paths",parentId:"1",id:"9"},10:{path:"/paths",parentId:"9",id:"10"},11:{path:"/paths/higherVocationalEducation",parentId:"9",id:"11"},12:{path:"/paths/new",parentId:"9",id:"12"},13:{path:"/paths/guidance",exact:!0,parentId:"9",id:"13"},14:{path:"/paths/:pathId",parentId:"9",id:"14"},15:{path:"/paths/:pathId/statistics",parentId:"9",id:"15"},16:{path:"/paths/:pathId/edit",parentId:"9",id:"16"},17:{path:"/paths/:pathId/:stageId/program_homework/:categoryId/add",parentId:"9",id:"17"},18:{path:"/paths/:pathId/:stageId/program_homework/:categoryId/edit",parentId:"9",id:"18"},19:{path:"/classrooms",parentId:"1",id:"19"},20:{path:"/classrooms",parentId:"19",id:"20"},21:{path:"/classrooms/examList",parentId:"19",id:"21"},22:{path:"/classrooms/classicCases",parentId:"19",id:"22"},23:{path:"/classrooms/index",parentId:"19",id:"23"},24:{path:"/classrooms/new",parentId:"19",id:"24"},25:{path:"/classrooms/:coursesId/edit",parentId:"19",id:"25"},26:{path:"/classrooms/news/:subjectid/newgold/:id",parentId:"19",id:"26"},27:{path:"/classrooms/:coursesId/newgolds/settings",parentId:"19",id:"27"},28:{path:"/classrooms/:coursesId/shixun_homework/:categoryId/review_detail/:userId",parentId:"19",id:"28"},29:{path:"/classrooms/:coursesId/common_homework/:categoryId/review_detail/:userId",parentId:"19",id:"29"},30:{path:"/classrooms/:coursesId/program_homework/:categoryId/review_detail/:userId",parentId:"19",id:"30"},31:{path:"/classrooms/:coursesId/shixun_homework/:categoryId/detail",parentId:"19",id:"31"},32:{path:"/classrooms/:coursesId/shixun_homework/:categoryId/:homeworkId/comment",parentId:"19",id:"32"},33:{path:"/classrooms/:coursesId/common_homework/:categoryId/:homeworkId/comment",parentId:"19",id:"33"},34:{path:"/classrooms/:coursesId/shixun_homework/:categoryId/:homeworkId/commitsummary",parentId:"19",id:"34"},35:{path:"/classrooms/:coursesId/group_homework/:categoryId/detail",parentId:"19",id:"35"},36:{path:"/classrooms/:coursesId/common_homework/:categoryId/detail",parentId:"19",id:"36"},37:{path:"/classrooms/:coursesId/common_homework/:categoryId/review/:userId",parentId:"19",id:"37"},38:{path:"/classrooms/:coursesId/group_homework/:commonHomeworkId/review/:userId",parentId:"19",id:"38"},39:{path:"/classrooms/:coursesId/group_homework/:commonHomeworkId/post",parentId:"19",id:"39"},40:{path:"/classrooms/:coursesId/group_homework/:commonHomeworkId/:homeworkId/edit",parentId:"19",id:"40"},41:{path:"/classrooms/:coursesId/exercise/:categoryId/detail/:userId/review_detail",parentId:"19",id:"41"},42:{path:"/classrooms/:coursesId/exercise/:categoryId/detail",parentId:"19",id:"42"},43:{path:"/classrooms/:coursesId/exercise/:categoryId/preview_select",parentId:"19",id:"43"},44:{path:"/classrooms/:coursesId/exercise/:categoryId/:login/initate_answer",parentId:"19",id:"44"},45:{path:"/classrooms/:coursesId/exercise/:categoryId/users/:login",parentId:"19",id:"45"},46:{path:"/classrooms/:coursesId/exercise/:categoryId/wrongAnswer/:login",parentId:"19",id:"46"},47:{path:"/classrooms/:coursesId/exercisenotice/:categoryId/users/:login",parentId:"19",id:"47"},48:{path:"/classrooms/:coursesId/exercise/:categoryId/random/edit",parentId:"19",id:"48"},49:{path:"/classrooms/:coursesId/exercise/:categoryId/random/preview",parentId:"19",id:"49"},50:{path:"/classrooms/:coursesId/exercise/add",parentId:"19",id:"50"},51:{path:"/classrooms/:coursesId/exercise/add/:exerciseId",parentId:"19",id:"51"},52:{path:"/classrooms/:coursesId/exercise/:exerciseId/reviews/group",parentId:"19",id:"52"},53:{path:"/classrooms/:coursesId/exercise/:exerciseId/review/:userId",parentId:"19",id:"53"},54:{path:"/classrooms/:coursesId/exercise/:exerciseId/centralizeReview/:userId",parentId:"19",id:"54"},55:{path:"/classrooms/:coursesId/exercise/:exerciseId/export_blank",parentId:"19",id:"55"},56:{path:"/classrooms/:coursesId/exercise/:exerciseId/sumup",parentId:"19",id:"56"},57:{path:"/classrooms/:coursesId/exercise/:exerciseId/sumup/edit",parentId:"19",id:"57"},58:{path:"/classrooms/:coursesId/exercise/:exerciseId/analysis/:studentId",parentId:"19",id:"58"},59:{path:"/classrooms/:coursesId/shixun_homework/:exerciseId/analysis/:studentId",parentId:"19",id:"59"},60:{path:"/classrooms/:coursesId/exercise/:exerciseId/analysis/:studentId/code",parentId:"19",id:"60"},61:{path:"/classrooms/:coursesId/shixun_homework/:exerciseId/analysis/:studentId/code",parentId:"19",id:"61"},62:{path:"/classrooms/:coursesId/graduation_topics/:categoryId/detail",parentId:"19",id:"62"},63:{path:"/classrooms/:coursesId/graduation_topics/:categoryId/add",parentId:"19",id:"63"},64:{path:"/classrooms/:coursesId/graduation_topics/:categoryId/edit",parentId:"19",id:"64"},65:{path:"/classrooms/:coursesId/graduation_tasks/:categoryId/add",parentId:"19",id:"65"},66:{path:"/classrooms/:coursesId/graduation_tasks/:categoryId/edit",parentId:"19",id:"66"},67:{path:"/classrooms/:coursesId/graduation_tasks/:categoryId/detail",parentId:"19",id:"67"},68:{path:"/classrooms/:coursesId/common_homework/:categoryId/add",parentId:"19",id:"68"},69:{path:"/classrooms/:coursesId/common_homework/:categoryId/edit",parentId:"19",id:"69"},70:{path:"/classrooms/:coursesId/common_homework/:commonHomeworkId/post",parentId:"19",id:"70"},71:{path:"/classrooms/:coursesId/common_homework/:commonHomeworkId/:homeworkId/edit",parentId:"19",id:"71"},72:{path:"/classrooms/:coursesId/group_homework/:categoryId/add",parentId:"19",id:"72"},73:{path:"/classrooms/:coursesId/group_homework/:categoryId/edit",parentId:"19",id:"73"},74:{path:"/classrooms/:coursesId/poll/:categoryId/add",parentId:"19",id:"74"},75:{path:"/classrooms/:coursesId/poll/:categoryId/edit",parentId:"19",id:"75"},76:{path:"/classrooms/:coursesId/poll/:categoryId/detail",parentId:"19",id:"76"},77:{path:"/classrooms/:coursesId/poll/:categoryId/users/:login",parentId:"19",id:"77"},78:{path:"/classrooms/:coursesId/poll/:categoryId/questionnaireInfo/:login",parentId:"19",id:"78"},79:{path:"/classrooms/:coursesId/board/:categoryId/Add",parentId:"19",id:"79"},80:{path:"/classrooms/:coursesId/board/:categoryId/Edit/:boardId",parentId:"19",id:"80"},81:{path:"/classrooms/:coursesId/board/:categoryId/Detail/:boardId",parentId:"19",id:"81"},82:{path:"/classrooms/:courseId/template/:templateId",parentId:"19",id:"82"},83:{path:"/classrooms/:courseId/common_homework/:homeworkId/lab-report/:reportId",parentId:"19",id:"83"},84:{path:"/classrooms/guidance",parentId:"19",id:"84"},85:{path:"/classrooms/:courseId/common_homework/:homeworkId/lab-report-view/:workId",parentId:"19",id:"85"},86:{path:"/classrooms/:coursesId/exercise/:categoryId/users/:login/check",parentId:"19",id:"86"},87:{path:"/classrooms/:coursesId/Studentdetail/:login",parentId:"19",id:"87"},88:{path:"/classrooms/:coursesId/StudentSituation/:categoryId/:login",parentId:"19",id:"88"},89:{path:"/classrooms/:coursesId/engineering/datail",parentId:"19",id:"89"},90:{path:"/classrooms/:coursesId/program_homework/:categoryId/add",parentId:"19",id:"90"},91:{path:"/classrooms/:coursesId/program_homework/:categoryId/edit",parentId:"19",id:"91"},92:{path:"/classrooms/:coursesId/program_homework/ranking",parentId:"19",id:"92"},93:{path:"/classrooms/:coursesId/program_homework/:categoryId/detail",parentId:"19",id:"93"},94:{path:"/classrooms/:coursesId/program_homework/:categoryId/:homeworkId/ranking",parentId:"19",id:"94"},95:{path:"/classrooms/:coursesId/program_homework/:categoryId/:homeworkId/:user_id/comment",parentId:"19",id:"95"},96:{path:"/classrooms/:coursesId/program_homework/:categoryId/answer",parentId:"19",id:"96"},97:{path:"/classrooms/:coursesId/program_homework/:categoryId/answer/add",parentId:"19",id:"97"},98:{path:"/classrooms/:coursesId/program_homework/:categoryId/answer/:answerid/edit",parentId:"19",id:"98"},99:{path:"/classrooms/:coursesId/program_homework/:categoryId/answer/:answerid/detail",parentId:"19",id:"99"},100:{path:"/classrooms/:videoId/video_info",parentId:"19",id:"100"},101:{path:"/classrooms/",parentId:"19",id:"101"},102:{path:"/classrooms/:coursesId/shixun_homework/:categoryId",parentId:"101",id:"102"},103:{path:"/classrooms/:coursesId/shixun_homework",parentId:"101",id:"103"},104:{path:"/classrooms/:coursesId/graduation_topics/:categoryId",parentId:"101",id:"104"},105:{path:"/classrooms/:coursesId/graduation_tasks/:categoryId",parentId:"101",id:"105"},106:{path:"/classrooms/:coursesId/graduation_tasks/:categoryId",parentId:"101",id:"106"},107:{path:"/classrooms/:coursesId/exercise/:categoryId",parentId:"101",id:"107"},108:{path:"/classrooms/:coursesId/exercise",parentId:"101",id:"108"},109:{path:"/classrooms/:coursesId/poll/:categoryId",parentId:"101",id:"109"},110:{path:"/classrooms/:coursesId/poll",parentId:"101",id:"110"},111:{path:"/classrooms/:coursesId/common_homework/:categoryId",parentId:"101",id:"111"},112:{path:"/classrooms/:coursesId/common_homework",parentId:"101",id:"112"},113:{path:"/classrooms/:coursesId/group_homework/:categoryId",parentId:"101",id:"113"},114:{path:"/classrooms/:coursesId/group_homework",parentId:"101",id:"114"},115:{path:"/classrooms/:coursesId/teachers",parentId:"101",id:"115"},116:{path:"/classrooms/:coursesId/students",parentId:"101",id:"116"},117:{path:"/classrooms/:coursesId/assistant",parentId:"101",id:"117"},118:{path:"/classrooms/:coursesId/program_homework",parentId:"101",id:"118"},119:{path:"/classrooms/:coursesId/program_homework/:categoryId",parentId:"101",id:"119"},120:{path:"/classrooms/:coursesId/engineering",parentId:"101",id:"120"},121:{path:"/classrooms/:coursesId/learning_path",parentId:"101",id:"121"},122:{path:"/classrooms/:coursesId/resource_recommend",parentId:"101",id:"122"},123:{path:"/classrooms/:coursesId/attendance",parentId:"101",id:"123"},124:{path:"/classrooms/:coursesId/attendance/StudetnSign",parentId:"101",id:"124"},125:{path:"/classrooms/:coursesId/attendance/:categoryId/:tabId/detail",parentId:"101",id:"125"},126:{path:"/classrooms/:coursesId/announcement",parentId:"101",id:"126"},127:{path:"/classrooms/:coursesId/announcement/:categoryId",parentId:"101",id:"127"},128:{path:"/classrooms/:coursesId/online_learning",parentId:"101",id:"128"},129:{path:"/classrooms/:coursesId/online_learning/:categoryId",parentId:"101",id:"129"},130:{path:"/classrooms/:coursesId/attachment/:categoryId",parentId:"101",id:"130"},131:{path:"/classrooms/:coursesId/attachment",parentId:"101",id:"131"},132:{path:"/classrooms/:coursesId/video",parentId:"101",id:"132"},133:{path:"/classrooms/:coursesId/video/:categoryId",parentId:"101",id:"133"},134:{path:"/classrooms/:coursesId/video/:categoryId/statistics",parentId:"101",id:"134"},135:{path:"/classrooms/:coursesId/video/:username/upload",parentId:"101",id:"135"},136:{path:"/classrooms/:coursesId/video/:categoryId/statistics/:videoId",parentId:"101",id:"136"},137:{path:"/classrooms/:coursesId/video/:categoryId/statistics/:videoId/:userId",parentId:"101",id:"137"},138:{path:"/classrooms/:coursesId/live_video/:categoryId",parentId:"101",id:"138"},139:{path:"/classrooms/:coursesId/live_video",parentId:"101",id:"139"},140:{path:"/classrooms/:coursesId/video/:categoryId/studentstatistics",parentId:"101",id:"140"},141:{path:"/classrooms/:coursesId/board/:categoryId",parentId:"101",id:"141"},142:{path:"/classrooms/:coursesId/board",parentId:"101",id:"142"},143:{path:"/classrooms/:coursesId/course_group",parentId:"101",id:"143"},144:{path:"/classrooms/:coursesId/course_group/:categoryId",parentId:"101",id:"144"},145:{path:"/classrooms/:coursesId/course_group/:categoryId/detail",parentId:"101",id:"145"},146:{path:"/classrooms/:coursesId/not_course_group/:categoryId",parentId:"101",id:"146"},147:{path:"/classrooms/:coursesId/not_course_group",parentId:"101",id:"147"},148:{path:"/classrooms/:coursesId/statistics/",parentId:"101",id:"148"},149:{path:"/classrooms/:coursesId/statistics/:categoryId",parentId:"101",id:"149"},150:{path:"/classrooms/:coursesId/statistics_video/:categoryId",parentId:"101",id:"150"},151:{path:"/classrooms/:coursesId/statistics_quality/:categoryId",parentId:"101",id:"151"},152:{path:"/classrooms/:coursesId/statistics_user_portrait/:categoryId",parentId:"101",id:"152"},153:{path:"/classrooms/:coursesId/student_statistics/:categoryId",parentId:"101",id:"153"},154:{path:"/classrooms/:coursesId/student_statistics/:categoryId/:listId/:type",parentId:"101",id:"154"},155:{path:"/classrooms/:coursesId/video_statistics/:categoryId/Student/:studentid",parentId:"101",id:"155"},156:{path:"/classrooms/:coursesId/exportlist/:type",parentId:"101",id:"156"},157:{path:"/classrooms/:coursesId",parentId:"101",id:"157"},158:{path:"/classrooms/:coursesId/template",parentId:"101",id:"158"},159:{path:"/competitions",parentId:"1",id:"159"},160:{path:"/competitions/index",parentId:"159",id:"160"},161:{path:"/competitions/:identifier/list",parentId:"159",id:"161"},162:{path:"/competitions/exports",parentId:"159",id:"162"},163:{path:"/competitions",parentId:"159",id:"163"},164:{path:"/competitions/:identifier",parentId:"159",id:"164"},165:{path:"/competitions/index/:identifier",parentId:"159",id:"165"},166:{path:"/competitions/:identifier/detail/enroll",parentId:"159",id:"166"},167:{path:"/competitions/:identifier/detail/UpdateTeanname/:Teannameid",parentId:"159",id:"167"},168:{path:"/competitions/:identifier/detail/teamDetail/:Teamid",parentId:"159",id:"168"},169:{path:"/competitions/detail/:identifier",parentId:"159",id:"169"},170:{path:"/forums",parentId:"1",id:"170"},171:{path:"/forums",parentId:"170",id:"171"},172:{path:"/forums/categories/:memoType",parentId:"170",id:"172"},173:{path:"/forums/new",parentId:"170",id:"173"},174:{path:"/forums/:memoId/edit",parentId:"170",id:"174"},175:{path:"/forums/:memoId",parentId:"170",id:"175"},176:{path:"/problemset",parentId:"1",id:"176"},177:{path:"/problemset",parentId:"176",id:"177"},178:{path:"/problemset/newitem",parentId:"176",id:"178"},179:{path:"/problemset/:type/:id",parentId:"176",id:"179"},180:{path:"/problemset/preview",parentId:"176",id:"180"},181:{path:"/problemset/preview_new",parentId:"176",id:"181"},182:{path:"/problemset/preview_select",parentId:"176",id:"182"},183:{path:"/shixuns",parentId:"1",id:"183"},184:{path:"/shixuns",parentId:"183",id:"184"},185:{path:"/shixuns/exports",parentId:"183",id:"185"},186:{path:"/shixuns/new",parentId:"183",id:"186"},187:{path:"/shixuns/new/CreateImg",parentId:"183",id:"187"},188:{path:"/shixuns/new/:id/imagepreview",parentId:"183",id:"188"},189:{path:"/shixuns/:id/Merge",parentId:"183",id:"189"},190:{path:"/shixuns/:id/Split",parentId:"183",id:"190"},191:{path:"/shixuns/:id/edit",parentId:"183",id:"191"},192:{path:"shixuns/:id/edit/warehouse",parentId:"191",id:"192"},193:{path:"/shixuns/:id/edit/newquestion",parentId:"191",id:"193"},194:{path:"/shixuns/:id/edit/:challengesId/editquestion",parentId:"191",id:"194"},195:{path:"/shixuns/:id/edit/:challengesId/editquestion/:questionId",parentId:"191",id:"195"},196:{path:"/shixuns/:id/edit/new",parentId:"191",id:"196"},197:{path:"/shixuns/:id/edit/:challengesId/editcheckpoint",parentId:"191",id:"197"},198:{path:"/shixuns/:id/edit/:challengesId/tab=2",parentId:"191",id:"198"},199:{path:"/shixuns/:id/edit/:challengesId/tab=3",parentId:"191",id:"199"},200:{path:"/shixuns/:id/edit/:challengesId/tab=4",parentId:"191",id:"200"},201:{path:"/shixuns/:id",parentId:"183",id:"201"},202:{path:"/shixuns/:id/challenges",parentId:"201",id:"202"},203:{path:"/shixuns/:id/repository",parentId:"201",id:"203"},204:{path:"/shixuns/:id/secret_repository",parentId:"201",id:"204"},205:{path:"/shixuns/:id/collaborators",parentId:"201",id:"205"},206:{path:"/shixuns/:id/dataset",parentId:"201",id:"206"},207:{path:"/shixuns/:id/dataset/jupyterEdit",parentId:"201",id:"207"},208:{path:"/shixuns/:id/shixun_discuss",parentId:"201",id:"208"},209:{path:"/shixuns/:id/ranking_list",parentId:"201",id:"209"},210:{path:"/shixuns/:id/settings",parentId:"201",id:"210"},211:{path:"/shixuns/:id/repository/:repoId/commits",parentId:"201",id:"211"},212:{path:"/shixuns/:id/secret_repository/:repoId/commits",parentId:"201",id:"212"},213:{path:"/shixuns/:id/repository/upload_file",parentId:"201",id:"213"},214:{path:"/shixuns/:id/secret_repository/upload_file",parentId:"201",id:"214"},215:{path:"/shixuns/:id/repository/add_file",parentId:"201",id:"215"},216:{path:"/shixuns/:id/secret_repository/add_file",parentId:"201",id:"216"},217:{path:"/shixuns/:id/repository/master/shixun_show/:fileId",exact:!1,parentId:"201",id:"217"},218:{path:"/shixuns/:id/secret_repository/master/shixun_show/:fileId",exact:!1,parentId:"201",id:"218"},219:{path:"/shixuns/:id/audit_situation",parentId:"201",id:"219"},220:{path:"/shixuns/:id/fork_list",parentId:"201",id:"220"},221:{path:"/shixuns/:id/skill_tags",parentId:"201",id:"221"},222:{path:"/users",parentId:"1",id:"222"},223:{path:"/users/:username/videos/protocol",parentId:"222",id:"223"},224:{path:"/users/:username/videos/resourceProtocol",parentId:"222",id:"224"},225:{path:"/users/:username/videos/success",parentId:"222",id:"225"},226:{path:"/users/:username/topicbank/:topicstype",parentId:"222",id:"226"},227:{path:"/users/:username/topics/:topicId/:topictype/normal/detail",parentId:"222",id:"227"},228:{path:"/users/:username/topics/:topicId/:topictype/group/detail",parentId:"222",id:"228"},229:{path:"/users/:username/topics/:topicId/:topictype/normal/edit",parentId:"222",id:"229"},230:{path:"/users/:username/topics/:topicId/:topictype/group/edit",parentId:"222",id:"230"},231:{path:"/users/:username/topics/:topicId/:topictype/exercise/edit",parentId:"222",id:"231"},232:{path:"/users/:username/topics/:topicId/:topictype/exercise/detail",parentId:"222",id:"232"},233:{path:"/users/:username/topics/:topicId/:topictype/poll/edit",parentId:"222",id:"233"},234:{path:"/users/:username/topics/:topicId/:topictype/poll/detail",parentId:"222",id:"234"},235:{path:"/users/:username/experiment-img/add",parentId:"222",id:"235"},236:{path:"/users/:username",parentId:"222",id:"236"},237:{path:"/users/:username",parentId:"236",id:"237"},238:{path:"/users/:username/baseInfo/edit",parentId:"236",id:"238"},239:{path:"/users/:username/baseInfo",parentId:"236",id:"239"},240:{path:"/users/:username/realNameCertification",parentId:"236",id:"240"},241:{path:"/users/:username/careerCertification",parentId:"236",id:"241"},242:{path:"/users/:username/classrooms",parentId:"236",id:"242"},243:{path:"/users/:username/shixuns",parentId:"236",id:"243"},244:{path:"/users/:username/dataSet",parentId:"236",id:"244"},245:{path:"/users/:username/userPortrait",parentId:"236",id:"245"},246:{path:"/users/:username/learningPath",parentId:"236",id:"246"},247:{path:"/users/:username/teach-group",parentId:"236",id:"247"},248:{path:"/users/:username/competitions",parentId:"236",id:"248"},249:{path:"/users/:username/experiment-img",parentId:"236",id:"249"},250:{path:"/users/:username/experiment-img/:experid/detail",parentId:"236",id:"250"},251:{path:"/users/:username/certificate",parentId:"236",id:"251"},252:{path:"/users/:username/otherResources",parentId:"236",id:"252"},253:{path:"/users/:username/classmanagement",parentId:"236",id:"253"},254:{path:"/users/:username/classmanagement/:couserid",parentId:"236",id:"254"},255:{path:"/users/:username/paths",parentId:"236",id:"255"},256:{path:"/users/:username/projects",parentId:"236",id:"256"},257:{path:"/users/:username/videos",parentId:"236",id:"257"},258:{path:"/users/:username/videos/upload",parentId:"236",id:"258"},259:{path:"/users/:username/topics/:topicstype",parentId:"236",id:"259"},260:{path:"/users/:username/vspaces",parentId:"236",id:"260"},261:{path:"/users/:username/resourcesCenter",parentId:"236",id:"261"},262:{path:"/users/:username/resourcesCenter/:id/detail",parentId:"236",id:"262"},263:{path:"/users/:username/resourceGuarantee",parentId:"236",id:"263"},264:{path:"/users/:username/resourceAllocation",parentId:"236",id:"264"},265:{parentId:"1",id:"265"},266:{path:"/problems",parentId:"265",id:"266"},267:{path:"/problems",parentId:"266",id:"267"},268:{path:"/problems/batchAdd",parentId:"266",id:"268"},269:{path:"/problems/newcreate",parentId:"265",id:"269"},270:{path:"/problems/newedit/:id",exact:!0,parentId:"265",id:"270"},271:{path:"/problems/:id/edit",exact:!0,parentId:"265",id:"271"},272:{path:"/problems/new",exact:!0,parentId:"265",id:"272"},273:{path:"/problems/:id/oj/:save_identifier",parentId:"265",id:"273"},274:{path:"/problems/:id/record-detail/:submitId",parentId:"265",id:"274"},275:{path:"/problems/add",parentId:"265",id:"275"},276:{path:"/problems/:id/ojedit",parentId:"265",id:"276"},277:{path:"/engineering",parentId:"1",id:"277"},278:{path:"/engineering",parentId:"277",id:"278"},279:{path:"/engineering/teacherList",parentId:"278",id:"279"},280:{path:"/engineering/studentList",parentId:"278",id:"280"},281:{path:"/engineering/training/program",parentId:"278",id:"281"},282:{path:"/engineering/training/program/add",parentId:"278",id:"282"},283:{path:"/engineering/training/program/edit",parentId:"278",id:"283"},284:{path:"/engineering/training/objectives",parentId:"278",id:"284"},285:{path:"/engineering/graduated/index",parentId:"278",id:"285"},286:{path:"/engineering/graduated/matrix",parentId:"278",id:"286"},287:{path:"/engineering/course/list",parentId:"278",id:"287"},288:{path:"/engineering/course/setting",parentId:"278",id:"288"},289:{path:"/engineering/course/matrix",parentId:"278",id:"289"},290:{path:"/engineering/navigation",parentId:"278",id:"290"},291:{path:"/engineering/evaluate/course",parentId:"278",id:"291"},292:{path:"/engineering/evaluate/course/:ec_year_id/:id",parentId:"278",id:"292"},293:{path:"/engineering/evaluate/norm",parentId:"278",id:"293"},294:{path:"/engineering/evaluate/document",parentId:"278",id:"294"},295:{path:"/engineering/evaluate/norm/:ec_year_id/:id",parentId:"278",id:"295"},296:{path:"/engineering/*",redirect:"/404",parentId:"278",id:"296"},297:{path:"/innovation",parentId:"1",id:"297"},298:{path:"/innovation/tasks/:taskId",parentId:"297",id:"298"},299:{path:"/innovation",parentId:"297",id:"299"},300:{path:"/innovation/project",parentId:"299",id:"300"},301:{path:"/innovation/dataset",parentId:"299",id:"301"},302:{path:"/innovation/mirror",parentId:"299",id:"302"},303:{path:"/innovation/my-project",parentId:"299",id:"303"},304:{path:"/innovation/my-dataset",parentId:"299",id:"304"},305:{path:"/innovation/my-mirror",parentId:"299",id:"305"},306:{path:"/innovation/project/create",parentId:"299",id:"306"},307:{path:"/innovation/project/edit/:id",parentId:"299",id:"307"},308:{path:"/innovation/project/detail/:taskId",parentId:"299",id:"308"},309:{path:"/tasks",parentId:"1",id:"309"},310:{path:"/tasks/:taskId",exact:!0,parentId:"309",id:"310"},311:{path:"/tasks/:identifier/jupyter/",exact:!0,parentId:"309",id:"311"},312:{path:"/tasks/:courseId/:homeworkId/:taskId",exact:!0,parentId:"309",id:"312"},313:{path:"/tasks/jupyter/:courseId/:homeworkId/:identifier",exact:!0,parentId:"309",id:"313"},314:{path:"/tasks/:courseId/:exerciseId/:taskId/exercise",exact:!0,parentId:"309",id:"314"},315:{path:"/myproblems",parentId:"1",id:"315"},316:{path:"/myproblems/:id/record-detail/:submitId",exact:!0,parentId:"315",id:"316"},317:{path:"/myproblems/:id",exact:!0,parentId:"315",id:"317"},318:{path:"/account",parentId:"1",id:"318"},319:{path:"/account",parentId:"318",id:"319"},320:{path:"/account/profile",parentId:"319",id:"320"},321:{path:"/account/profile/edit",parentId:"319",id:"321"},322:{path:"/account/certification",parentId:"319",id:"322"},323:{path:"/account/secure",parentId:"319",id:"323"},324:{path:"/account/binding",parentId:"319",id:"324"},325:{path:"/account/Results",parentId:"319",id:"325"},326:{path:"/ch",parentId:"1",id:"326"},327:{path:"/ch/rest/edit/:categoryId/:id",exact:!0,parentId:"326",id:"327"},328:{path:"/ch/rest/",exact:!0,parentId:"326",id:"328"},329:{path:"/ch/rest/:id",exact:!0,parentId:"326",id:"329"},330:{path:"/order",parentId:"1",id:"330"},331:{path:"/order",parentId:"330",id:"331"},332:{path:"/order/invoice",parentId:"330",id:"332"},333:{path:"/order/records",parentId:"330",id:"333"},334:{path:"/order/apply",parentId:"330",id:"334"},335:{path:"/order/view",parentId:"330",id:"335"},336:{path:"/order/:courseId/information",parentId:"330",id:"336"},337:{path:"/order/:courseId/pay",parentId:"330",id:"337"},338:{path:"/order/:orderNum/result",parentId:"330",id:"338"},339:{path:"/messages",parentId:"1",id:"339"},340:{path:"/messages/:userId/user_tidings",parentId:"339",id:"340"},341:{path:"/messages/:userId/private_messages",parentId:"339",id:"341"},342:{path:"/messages/:userId/message_detail",parentId:"339",id:"342"},343:{path:"/vtrs",parentId:"1",id:"343"},344:{path:"/vtrs/:virtual_spacesId",parentId:"343",id:"344"},345:{path:"/vtrs/:virtual_spacesId",exact:!0,parentId:"344",id:"345"},346:{path:"/vtrs/:virtual_spacesId/workplace",exact:!0,parentId:"344",id:"346"},347:{path:"/vtrs/:virtual_spacesId/experiment",parentId:"344",id:"347"},348:{path:"/vtrs/:virtual_spacesId/announcement",parentId:"344",id:"348"},349:{path:"/vtrs/:virtual_spacesId/announcement/add",parentId:"344",id:"349"},350:{path:"/vtrs/:virtual_spacesId/announcement/:id/edit",parentId:"344",id:"350"},351:{path:"/vtrs/:virtual_spacesId/announcement/:id/detail",parentId:"344",id:"351"},352:{path:"/vtrs/:virtual_spacesId/survey",parentId:"344",id:"352"},353:{path:"/vtrs/:virtual_spacesId/survey/:id/detail",parentId:"344",id:"353"},354:{path:"/vtrs/:virtual_spacesId/knowledge",parentId:"344",id:"354"},355:{path:"/vtrs/:virtual_spacesId/knowledge/add",parentId:"344",id:"355"},356:{path:"/vtrs/:virtual_spacesId/knowledge/:id/edit",parentId:"344",id:"356"},357:{path:"/vtrs/:virtual_spacesId/material",parentId:"344",id:"357"},358:{path:"/vtrs/:virtual_spacesId/material/:id/detail",parentId:"344",id:"358"},359:{path:"/vtrs/:virtual_spacesId/lesson",parentId:"344",id:"359"},360:{path:"/vtrs/:virtual_spacesId/lesson/:id/detail",parentId:"344",id:"360"},361:{path:"/vtrs/:virtual_spacesId/lesson/:id/detail/:fileid",parentId:"344",id:"361"},362:{path:"/vtrs/:virtual_spacesId/discussion",parentId:"344",id:"362"},363:{path:"/vtrs/:virtual_spacesId/discussion/:id/detail",parentId:"344",id:"363"},364:{path:"/vtrs/:virtual_spacesId/discussion/:id/detail/:fileid",parentId:"344",id:"364"},365:{path:"/vtrs/:virtual_spacesId/settings",parentId:"344",id:"365"},366:{path:"/vtrs/:virtual_spacesId/resources",parentId:"344",id:"366"},367:{path:"/vtrs/:virtual_spacesId/resources/:id/detail",parentId:"344",id:"367"},368:{path:"/vtrs/:virtual_spacesId/Plan",parentId:"344",id:"368"},369:{path:"/vtrs/:virtual_spacesId/plan/:id/detail",parentId:"344",id:"369"},370:{path:"/vtrs/:virtual_spacesId/digtal",parentId:"344",id:"370"},371:{path:"/vtrs/:virtual_spacesId/homepage",parentId:"344",id:"371"},372:{path:"/vtrs/:virtual_spacesId/*",parentId:"344",id:"372"},373:{path:"/101",parentId:"1",id:"373"},374:{path:"/101/:virtual_spacesId",parentId:"373",id:"374"},375:{path:"/101/:virtual_spacesId",exact:!0,parentId:"374",id:"375"},376:{path:"/101/:virtual_spacesId/workplace",exact:!0,parentId:"374",id:"376"},377:{path:"/101/:virtual_spacesId/experiment",parentId:"374",id:"377"},378:{path:"/101/:virtual_spacesId/announcement",parentId:"374",id:"378"},379:{path:"/101/:virtual_spacesId/announcement/add",parentId:"374",id:"379"},380:{path:"/101/:virtual_spacesId/announcement/:id/edit",parentId:"374",id:"380"},381:{path:"/101/:virtual_spacesId/announcement/:id/detail",parentId:"374",id:"381"},382:{path:"/101/:virtual_spacesId/survey",parentId:"374",id:"382"},383:{path:"/101/:virtual_spacesId/survey/:id/detail",parentId:"374",id:"383"},384:{path:"/101/:virtual_spacesId/knowledge",parentId:"374",id:"384"},385:{path:"/101/:virtual_spacesId/knowledge/add",parentId:"374",id:"385"},386:{path:"/101/:virtual_spacesId/knowledge/:id/edit",parentId:"374",id:"386"},387:{path:"/101/:virtual_spacesId/material",parentId:"374",id:"387"},388:{path:"/101/:virtual_spacesId/material/:id/detail",parentId:"374",id:"388"},389:{path:"/101/:virtual_spacesId/lesson",parentId:"374",id:"389"},390:{path:"/101/:virtual_spacesId/lesson/:id/detail",parentId:"374",id:"390"},391:{path:"/101/:virtual_spacesId/lesson/:id/detail/:fileid",parentId:"374",id:"391"},392:{path:"/101/:virtual_spacesId/discussion",parentId:"374",id:"392"},393:{path:"/101/:virtual_spacesId/discussion/:id/detail",parentId:"374",id:"393"},394:{path:"/101/:virtual_spacesId/discussion/:id/detail/:fileid",parentId:"374",id:"394"},395:{path:"/101/:virtual_spacesId/settings",parentId:"374",id:"395"},396:{path:"/101/:virtual_spacesId/resources",parentId:"374",id:"396"},397:{path:"/101/:virtual_spacesId/resources/:id/detail",parentId:"374",id:"397"},398:{path:"/101/:virtual_spacesId/Plan",parentId:"374",id:"398"},399:{path:"/101/:virtual_spacesId/plan/:id/detail",parentId:"374",id:"399"},400:{path:"/101/:virtual_spacesId/digtal",parentId:"374",id:"400"},401:{path:"/101/:virtual_spacesId/homepage",parentId:"374",id:"401"},402:{path:"/101/:virtual_spacesId/*",parentId:"374",id:"402"},403:{path:"/administration",parentId:"1",id:"403"},404:{path:"/administration",parentId:"403",id:"404"},405:{path:"/administration/college",parentId:"404",id:"405"},406:{path:"/administration/student",parentId:"404",id:"406"},407:{path:"/administration/student/:studentId/edit",parentId:"404",id:"407"},408:{path:"/administration/profession",parentId:"404",id:"408"},409:{path:"/graduations",parentId:"1",id:"409"},410:{path:"/graduations",exact:!0,parentId:"409",id:"410"},411:{path:"/graduations/:id/:moduleKey/:moduleId/review/:itemId",exact:!0,parentId:"409",id:"411"},412:{path:"/graduations/:id",parentId:"409",id:"412"},413:{path:"/graduations/:id/index",parentId:"412",id:"413"},414:{path:"/graduations/:id/topics",parentId:"412",id:"414"},415:{path:"/graduations/:id/student_selection",parentId:"412",id:"415"},416:{path:"/graduations/:id/tasks",parentId:"412",id:"416"},417:{path:"/graduations/:id/opening_report",parentId:"412",id:"417"},418:{path:"/graduations/:id/midterm_report",parentId:"412",id:"418"},419:{path:"/graduations/:id/thesis",parentId:"412",id:"419"},420:{path:"/graduations/:id/final_defense",parentId:"412",id:"420"},421:{path:"/graduations/:id/final_thesis",parentId:"412",id:"421"},422:{path:"/graduations/:id/settings",parentId:"412",id:"422"},423:{path:"/graduations/:id/teachers",parentId:"412",id:"423"},424:{path:"/graduations/:id/students",parentId:"412",id:"424"},425:{path:"/graduations/:id/archives",parentId:"412",id:"425"},426:{path:"/graduations/:id/grading_summary",parentId:"412",id:"426"},427:{path:"/dataset",parentId:"1",id:"427"},428:{path:"/dataset",exact:!0,parentId:"427",id:"428"},429:{path:"/dataset/:id/detail",exact:!0,parentId:"427",id:"429"},430:{path:"/knowledgegraph",parentId:"1",id:"430"},431:{path:"/knowledgegraph/:pathId",parentId:"430",id:"431"},432:{path:"/knowledgegraph/:pathId/statistics",parentId:"430",id:"432"},433:{path:"/userLogin",parentId:"1",id:"433"},434:{path:"/smartTool",parentId:"1",id:"434"},435:{path:"/intelligentTools",parentId:"1",id:"435"},436:{path:"/resourceManagement",parentId:"1",id:"436"},437:{path:"/resourceManagement",parentId:"436",id:"437"},438:{path:"/onlinenum",parentId:"1",id:"438"},439:{path:"/onlinenum",parentId:"438",id:"439"},440:{path:"/shixuncontext",parentId:"1",id:"440"},441:{path:"/shixuncontext",parentId:"440",id:"441"},442:{path:"/shixuncontext/:Id/detail",parentId:"440",id:"442"},443:{path:"/educoder-demo",exact:!0,parentId:"1",id:"443"},444:{path:"/aIknowledge",parentId:"1",id:"444"},445:{path:"/aIknowledge",parentId:"444",id:"445"},446:{path:"/aIagent",parentId:"1",id:"446"},447:{path:"/aIagent",parentId:"446",id:"447"},448:{path:"/training",parentId:"1",id:"448"},449:{name:"\u7CBE\u57F9\u8BFE\u7A0B",path:"/training",parentId:"448",id:"449"},450:{path:"/largeScreen",exact:!0,parentId:"1",id:"450"},451:{path:"/quality",parentId:"1",id:"451"},452:{name:"\u7CBE\u54C1\u8BFE\u7A0B",path:"/quality",parentId:"451",id:"452"},453:{path:"/otherlogin",exact:!0,parentId:"1",id:"453"},454:{path:"/otherloginqq",exact:!0,parentId:"1",id:"454"},455:{path:"/otherloginstart",exact:!0,parentId:"1",id:"455"},456:{path:"/pathsoverview",exact:!0,parentId:"1",id:"456"},457:{path:"/shixunsoverview",exact:!0,parentId:"1",id:"457"},458:{path:"/classroomsoverview",exact:!0,parentId:"1",id:"458"},459:{path:"/login",parentId:"1",id:"459"},460:{path:"/login",parentId:"459",id:"460"},461:{path:"/user",parentId:"1",id:"461"},462:{path:"/user/login",parentId:"461",id:"462"},463:{path:"/user/register",parentId:"461",id:"463"},464:{path:"/user/reset-password",parentId:"461",id:"464"},465:{path:"/colleges",parentId:"1",id:"465"},466:{path:"/colleges/:id/statistics",parentId:"465",id:"466"},467:{path:"/help",parentId:"1",id:"467"},468:{path:"/help/:id",parentId:"467",id:"468"},469:{path:"/video",parentId:"1",id:"469"},470:{path:"/video/:videoId",parentId:"469",id:"470"},471:{path:"/terminal",parentId:"1",id:"471"},472:{path:"/report/:taskId/:game_report_id",parentId:"1",id:"472"},473:{path:"/statsDashboard",parentId:"1",id:"473"},474:{path:"/",parentId:"1",id:"474"},475:{path:"/",exact:!0,parentId:"474",id:"475"},476:{path:"/api/*",exact:!0,parentId:"474",id:"476"},477:{path:"/search",exact:!0,parentId:"474",id:"477"},478:{path:"/moop_cases",exact:!0,parentId:"474",id:"478"},479:{path:"/moop_cases/new",exact:!0,parentId:"474",id:"479"},480:{path:"/moop_cases/:caseId",exact:!0,parentId:"474",id:"480"},481:{path:"/moop_cases/:caseId/edit",exact:!0,parentId:"474",id:"481"},482:{path:"/moop_cases/:caseId/publish-success",exact:!0,parentId:"474",id:"482"},483:{path:"/randompaper",exact:!0,parentId:"474",id:"483"},484:{path:"/randompaper/edit/:id",exact:!0,parentId:"474",id:"484"},485:{path:"/randompaper/detail/:id",exact:!0,parentId:"474",id:"485"},486:{path:"/403",parentId:"474",id:"486"},487:{path:"/500",parentId:"474",id:"487"},488:{path:"/404",parentId:"474",id:"488"},489:{path:"/download",parentId:"474",id:"489"},490:{path:"/iwce",parentId:"474",id:"490"},491:{path:"/classrooms/:coursesId/attendance/TeacherSign",parentId:"474",id:"491"},492:{path:"/classrooms/:coursesId/attendance/:categoryId",parentId:"474",id:"492"},493:{path:"/Activities",parentId:"474",id:"493"},494:{path:"/iwce/:itemname",parentId:"474",id:"494"},495:{path:"/hpc-course",parentId:"474",id:"495"},496:{path:"/user_agents",parentId:"474",id:"496"},497:{path:"/three",parentId:"474",id:"497"},498:{path:"/introduction",parentId:"474",id:"498"},499:{path:"/chatgpt",parentId:"474",id:"499"},500:{path:"/*",parentId:"474",id:"500"},"@@/global-layout":{id:"@@/global-layout",path:"/",isLayout:!0}},routeComponents:{1:Ue.lazy(()=>__webpack_require__.e(6985).then(__webpack_require__.bind(__webpack_require__,26985))),2:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),3:Ue.lazy(()=>Promise.all([__webpack_require__.e(2763),__webpack_require__.e(2099)]).then(__webpack_require__.bind(__webpack_require__,68807))),4:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(3260)]).then(__webpack_require__.bind(__webpack_require__,41332))),5:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(3260)]).then(__webpack_require__.bind(__webpack_require__,41332))),6:Ue.lazy(()=>__webpack_require__.e(3247).then(__webpack_require__.bind(__webpack_require__,79778))),7:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(4599)]).then(__webpack_require__.bind(__webpack_require__,30592))),8:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(1545)]).then(__webpack_require__.bind(__webpack_require__,34115))),9:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),10:Ue.lazy(()=>__webpack_require__.e(9906).then(__webpack_require__.bind(__webpack_require__,87434))),11:Ue.lazy(()=>__webpack_require__.e(5572).then(__webpack_require__.bind(__webpack_require__,92873))),12:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6080)]).then(__webpack_require__.bind(__webpack_require__,43809))),13:Ue.lazy(()=>__webpack_require__.e(7901).then(__webpack_require__.bind(__webpack_require__,44959))),14:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(2281)]).then(__webpack_require__.bind(__webpack_require__,22654))),15:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(1651)]).then(__webpack_require__.bind(__webpack_require__,7721))),16:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6080)]).then(__webpack_require__.bind(__webpack_require__,43809))),17:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(4599)]).then(__webpack_require__.bind(__webpack_require__,30592))),18:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(4599)]).then(__webpack_require__.bind(__webpack_require__,30592))),19:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),20:Ue.lazy(()=>__webpack_require__.e(6789).then(__webpack_require__.bind(__webpack_require__,28916))),21:Ue.lazy(()=>__webpack_require__.e(9921).then(__webpack_require__.bind(__webpack_require__,29251))),22:Ue.lazy(()=>__webpack_require__.e(1674).then(__webpack_require__.bind(__webpack_require__,77287))),23:Ue.lazy(()=>__webpack_require__.e(6685).then(__webpack_require__.bind(__webpack_require__,41216))),24:Ue.lazy(()=>__webpack_require__.e(7323).then(__webpack_require__.bind(__webpack_require__,9140))),25:Ue.lazy(()=>__webpack_require__.e(7323).then(__webpack_require__.bind(__webpack_require__,9140))),26:Ue.lazy(()=>__webpack_require__.e(6882).then(__webpack_require__.bind(__webpack_require__,85668))),27:Ue.lazy(()=>__webpack_require__.e(6882).then(__webpack_require__.bind(__webpack_require__,85668))),28:Ue.lazy(()=>__webpack_require__.e(109).then(__webpack_require__.bind(__webpack_require__,10660))),29:Ue.lazy(()=>__webpack_require__.e(737).then(__webpack_require__.bind(__webpack_require__,54193))),30:Ue.lazy(()=>__webpack_require__.e(3391).then(__webpack_require__.bind(__webpack_require__,99590))),31:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(5694)]).then(__webpack_require__.bind(__webpack_require__,12868))),32:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(5330)]).then(__webpack_require__.bind(__webpack_require__,19990))),33:Ue.lazy(()=>Promise.all([__webpack_require__.e(2763),__webpack_require__.e(2303)]).then(__webpack_require__.bind(__webpack_require__,26733))),34:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1450)]).then(__webpack_require__.bind(__webpack_require__,57993))),35:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(195)]).then(__webpack_require__.bind(__webpack_require__,75126))),36:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3668)]).then(__webpack_require__.bind(__webpack_require__,34246))),37:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(2338)]).then(__webpack_require__.bind(__webpack_require__,27880))),38:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4662)]).then(__webpack_require__.bind(__webpack_require__,65852))),39:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8072)]).then(__webpack_require__.bind(__webpack_require__,68466))),40:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(479)]).then(__webpack_require__.bind(__webpack_require__,66835))),41:Ue.lazy(()=>__webpack_require__.e(5297).then(__webpack_require__.bind(__webpack_require__,97835))),42:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(4164)]).then(__webpack_require__.bind(__webpack_require__,61418))),43:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(4599)]).then(__webpack_require__.bind(__webpack_require__,30592))),44:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8807),__webpack_require__.e(4889)]).then(__webpack_require__.bind(__webpack_require__,1810))),45:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8807),__webpack_require__.e(4105)]).then(__webpack_require__.bind(__webpack_require__,99573))),46:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7883)]).then(__webpack_require__.bind(__webpack_require__,38072))),47:Ue.lazy(()=>__webpack_require__.e(7482).then(__webpack_require__.bind(__webpack_require__,12258))),48:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5816)]).then(__webpack_require__.bind(__webpack_require__,87261))),49:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(337)]).then(__webpack_require__.bind(__webpack_require__,74768))),50:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(292)]).then(__webpack_require__.bind(__webpack_require__,16439))),51:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(292)]).then(__webpack_require__.bind(__webpack_require__,16439))),52:Ue.lazy(()=>__webpack_require__.e(5992).then(__webpack_require__.bind(__webpack_require__,31333))),53:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(8085)]).then(__webpack_require__.bind(__webpack_require__,91813))),54:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(8085)]).then(__webpack_require__.bind(__webpack_require__,91813))),55:Ue.lazy(()=>__webpack_require__.e(8431).then(__webpack_require__.bind(__webpack_require__,82643))),56:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5902)]).then(__webpack_require__.bind(__webpack_require__,59372))),57:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(3433)]).then(__webpack_require__.bind(__webpack_require__,31618))),58:Ue.lazy(()=>__webpack_require__.e(5125).then(__webpack_require__.bind(__webpack_require__,63084))),59:Ue.lazy(()=>__webpack_require__.e(5125).then(__webpack_require__.bind(__webpack_require__,63084))),60:Ue.lazy(()=>__webpack_require__.e(921).then(__webpack_require__.bind(__webpack_require__,4573))),61:Ue.lazy(()=>__webpack_require__.e(921).then(__webpack_require__.bind(__webpack_require__,4573))),62:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1578)]).then(__webpack_require__.bind(__webpack_require__,35507))),63:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3317)]).then(__webpack_require__.bind(__webpack_require__,43867))),64:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1482)]).then(__webpack_require__.bind(__webpack_require__,8180))),65:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4795)]).then(__webpack_require__.bind(__webpack_require__,82999))),66:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(26)]).then(__webpack_require__.bind(__webpack_require__,18379))),67:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8882)]).then(__webpack_require__.bind(__webpack_require__,69911))),68:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5888)]).then(__webpack_require__.bind(__webpack_require__,9324))),69:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9715)]).then(__webpack_require__.bind(__webpack_require__,80800))),70:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7045)]).then(__webpack_require__.bind(__webpack_require__,66206))),71:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1211)]).then(__webpack_require__.bind(__webpack_require__,4793))),72:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1582)]).then(__webpack_require__.bind(__webpack_require__,98519))),73:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6729)]).then(__webpack_require__.bind(__webpack_require__,70970))),74:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9695)]).then(__webpack_require__.bind(__webpack_require__,91235))),75:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8723)]).then(__webpack_require__.bind(__webpack_require__,88244))),76:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(7622)]).then(__webpack_require__.bind(__webpack_require__,1952))),77:Ue.lazy(()=>__webpack_require__.e(5148).then(__webpack_require__.bind(__webpack_require__,12116))),78:Ue.lazy(()=>__webpack_require__.e(643).then(__webpack_require__.bind(__webpack_require__,48862))),79:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3442)]).then(__webpack_require__.bind(__webpack_require__,6047))),80:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2102)]).then(__webpack_require__.bind(__webpack_require__,61571))),81:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2425)]).then(__webpack_require__.bind(__webpack_require__,12899))),82:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2404)]).then(__webpack_require__.bind(__webpack_require__,31191))),83:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9785)]).then(__webpack_require__.bind(__webpack_require__,31698))),84:Ue.lazy(()=>__webpack_require__.e(7901).then(__webpack_require__.bind(__webpack_require__,44959))),85:Ue.lazy(()=>__webpack_require__.e(2819).then(__webpack_require__.bind(__webpack_require__,52783))),86:Ue.lazy(()=>__webpack_require__.e(1512).then(__webpack_require__.bind(__webpack_require__,50826))),87:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(7395)]).then(__webpack_require__.bind(__webpack_require__,94322))),88:Ue.lazy(()=>__webpack_require__.e(3585).then(__webpack_require__.bind(__webpack_require__,73305))),89:Ue.lazy(()=>__webpack_require__.e(6963).then(__webpack_require__.bind(__webpack_require__,34158))),90:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4030)]).then(__webpack_require__.bind(__webpack_require__,64023))),91:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4030)]).then(__webpack_require__.bind(__webpack_require__,64023))),92:Ue.lazy(()=>__webpack_require__.e(6127).then(__webpack_require__.bind(__webpack_require__,13178))),93:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3951)]).then(__webpack_require__.bind(__webpack_require__,90907))),94:Ue.lazy(()=>__webpack_require__.e(1048).then(__webpack_require__.bind(__webpack_require__,69735))),95:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2884)]).then(__webpack_require__.bind(__webpack_require__,90880))),96:Ue.lazy(()=>__webpack_require__.e(4770).then(__webpack_require__.bind(__webpack_require__,15454))),97:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2603)]).then(__webpack_require__.bind(__webpack_require__,622))),98:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4216)]).then(__webpack_require__.bind(__webpack_require__,23891))),99:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5319)]).then(__webpack_require__.bind(__webpack_require__,20149))),100:Ue.lazy(()=>__webpack_require__.e(895).then(__webpack_require__.bind(__webpack_require__,36858))),101:Ue.lazy(()=>__webpack_require__.e(7322).then(__webpack_require__.bind(__webpack_require__,34558))),102:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(2203)]).then(__webpack_require__.bind(__webpack_require__,89869))),103:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(2203)]).then(__webpack_require__.bind(__webpack_require__,89869))),104:Ue.lazy(()=>__webpack_require__.e(5048).then(__webpack_require__.bind(__webpack_require__,71903))),105:Ue.lazy(()=>__webpack_require__.e(1043).then(__webpack_require__.bind(__webpack_require__,30383))),106:Ue.lazy(()=>__webpack_require__.e(1043).then(__webpack_require__.bind(__webpack_require__,30383))),107:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6776)]).then(__webpack_require__.bind(__webpack_require__,93711))),108:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6776)]).then(__webpack_require__.bind(__webpack_require__,93711))),109:Ue.lazy(()=>__webpack_require__.e(4297).then(__webpack_require__.bind(__webpack_require__,41066))),110:Ue.lazy(()=>__webpack_require__.e(4297).then(__webpack_require__.bind(__webpack_require__,41066))),111:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(8458)]).then(__webpack_require__.bind(__webpack_require__,94280))),112:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(8458)]).then(__webpack_require__.bind(__webpack_require__,94280))),113:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(1798)]).then(__webpack_require__.bind(__webpack_require__,77684))),114:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(1798)]).then(__webpack_require__.bind(__webpack_require__,77684))),115:Ue.lazy(()=>__webpack_require__.e(5177).then(__webpack_require__.bind(__webpack_require__,49906))),116:Ue.lazy(()=>__webpack_require__.e(201).then(__webpack_require__.bind(__webpack_require__,75789))),117:Ue.lazy(()=>__webpack_require__.e(1477).then(__webpack_require__.bind(__webpack_require__,58514))),118:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(6282)]).then(__webpack_require__.bind(__webpack_require__,5727))),119:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(910),__webpack_require__.e(6282)]).then(__webpack_require__.bind(__webpack_require__,5727))),120:Ue.lazy(()=>__webpack_require__.e(1962).then(__webpack_require__.bind(__webpack_require__,81914))),121:Ue.lazy(()=>__webpack_require__.e(4928).then(__webpack_require__.bind(__webpack_require__,47318))),122:Ue.lazy(()=>__webpack_require__.e(1257).then(__webpack_require__.bind(__webpack_require__,42786))),123:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(6393),__webpack_require__.e(7329)]).then(__webpack_require__.bind(__webpack_require__,14939))),124:Ue.lazy(()=>__webpack_require__.e(8340).then(__webpack_require__.bind(__webpack_require__,59364))),125:Ue.lazy(()=>__webpack_require__.e(4093).then(__webpack_require__.bind(__webpack_require__,68502))),126:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6185)]).then(__webpack_require__.bind(__webpack_require__,61805))),127:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6185)]).then(__webpack_require__.bind(__webpack_require__,61805))),128:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8827)]).then(__webpack_require__.bind(__webpack_require__,97630))),129:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8827)]).then(__webpack_require__.bind(__webpack_require__,97630))),130:Ue.lazy(()=>__webpack_require__.e(1678).then(__webpack_require__.bind(__webpack_require__,8772))),131:Ue.lazy(()=>__webpack_require__.e(1678).then(__webpack_require__.bind(__webpack_require__,8772))),132:Ue.lazy(()=>__webpack_require__.e(1754).then(__webpack_require__.bind(__webpack_require__,92261))),133:Ue.lazy(()=>__webpack_require__.e(1754).then(__webpack_require__.bind(__webpack_require__,92261))),134:Ue.lazy(()=>__webpack_require__.e(4217).then(__webpack_require__.bind(__webpack_require__,49271))),135:Ue.lazy(()=>__webpack_require__.e(6205).then(__webpack_require__.bind(__webpack_require__,89191))),136:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(533)]).then(__webpack_require__.bind(__webpack_require__,26658))),137:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5798)]).then(__webpack_require__.bind(__webpack_require__,82042))),138:Ue.lazy(()=>__webpack_require__.e(5466).then(__webpack_require__.bind(__webpack_require__,96557))),139:Ue.lazy(()=>__webpack_require__.e(5466).then(__webpack_require__.bind(__webpack_require__,96557))),140:Ue.lazy(()=>__webpack_require__.e(9944).then(__webpack_require__.bind(__webpack_require__,84943))),141:Ue.lazy(()=>__webpack_require__.e(9406).then(__webpack_require__.bind(__webpack_require__,77638))),142:Ue.lazy(()=>__webpack_require__.e(9406).then(__webpack_require__.bind(__webpack_require__,77638))),143:Ue.lazy(()=>__webpack_require__.e(9039).then(__webpack_require__.bind(__webpack_require__,10672))),144:Ue.lazy(()=>__webpack_require__.e(9039).then(__webpack_require__.bind(__webpack_require__,10672))),145:Ue.lazy(()=>__webpack_require__.e(7922).then(__webpack_require__.bind(__webpack_require__,74735))),146:Ue.lazy(()=>__webpack_require__.e(1727).then(__webpack_require__.bind(__webpack_require__,75949))),147:Ue.lazy(()=>__webpack_require__.e(1727).then(__webpack_require__.bind(__webpack_require__,75949))),148:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(1427)]).then(__webpack_require__.bind(__webpack_require__,62783))),149:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(1427)]).then(__webpack_require__.bind(__webpack_require__,62783))),150:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8689)]).then(__webpack_require__.bind(__webpack_require__,88860))),151:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(7806)]).then(__webpack_require__.bind(__webpack_require__,96640))),152:Ue.lazy(()=>__webpack_require__.e(3276).then(__webpack_require__.bind(__webpack_require__,44475))),153:Ue.lazy(()=>__webpack_require__.e(8885).then(__webpack_require__.bind(__webpack_require__,10402))),154:Ue.lazy(()=>__webpack_require__.e(3451).then(__webpack_require__.bind(__webpack_require__,521))),155:Ue.lazy(()=>__webpack_require__.e(9922).then(__webpack_require__.bind(__webpack_require__,38159))),156:Ue.lazy(()=>__webpack_require__.e(4572).then(__webpack_require__.bind(__webpack_require__,81844))),157:Ue.lazy(()=>__webpack_require__.e(4017).then(__webpack_require__.bind(__webpack_require__,49499))),158:Ue.lazy(()=>__webpack_require__.e(5518).then(__webpack_require__.bind(__webpack_require__,52576))),159:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),160:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8229),__webpack_require__.e(7099)]).then(__webpack_require__.bind(__webpack_require__,47058))),161:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8229),__webpack_require__.e(7099)]).then(__webpack_require__.bind(__webpack_require__,47058))),162:Ue.lazy(()=>__webpack_require__.e(4449).then(__webpack_require__.bind(__webpack_require__,25969))),163:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8229),__webpack_require__.e(7099)]).then(__webpack_require__.bind(__webpack_require__,47058))),164:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6840),__webpack_require__.e(2570)]).then(__webpack_require__.bind(__webpack_require__,68661))),165:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6840),__webpack_require__.e(2570)]).then(__webpack_require__.bind(__webpack_require__,68661))),166:Ue.lazy(()=>__webpack_require__.e(8787).then(__webpack_require__.bind(__webpack_require__,87019))),167:Ue.lazy(()=>__webpack_require__.e(5650).then(__webpack_require__.bind(__webpack_require__,80070))),168:Ue.lazy(()=>__webpack_require__.e(1799).then(__webpack_require__.bind(__webpack_require__,57754))),169:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6840),__webpack_require__.e(8579)]).then(__webpack_require__.bind(__webpack_require__,18064))),170:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),171:Ue.lazy(()=>__webpack_require__.e(8639).then(__webpack_require__.bind(__webpack_require__,6880))),172:Ue.lazy(()=>__webpack_require__.e(4048).then(__webpack_require__.bind(__webpack_require__,46713))),173:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4264)]).then(__webpack_require__.bind(__webpack_require__,75034))),174:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4264)]).then(__webpack_require__.bind(__webpack_require__,75034))),175:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(508)]).then(__webpack_require__.bind(__webpack_require__,7018))),176:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),177:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(7835)]).then(__webpack_require__.bind(__webpack_require__,37892))),178:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(1953)]).then(__webpack_require__.bind(__webpack_require__,41891))),179:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(1953)]).then(__webpack_require__.bind(__webpack_require__,41891))),180:Ue.lazy(()=>__webpack_require__.e(1581).then(__webpack_require__.bind(__webpack_require__,9488))),181:Ue.lazy(()=>__webpack_require__.e(4144).then(__webpack_require__.bind(__webpack_require__,68724))),182:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(9219),__webpack_require__.e(4599)]).then(__webpack_require__.bind(__webpack_require__,30592))),183:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),184:Ue.lazy(()=>__webpack_require__.e(8552).then(__webpack_require__.bind(__webpack_require__,84868))),185:Ue.lazy(()=>__webpack_require__.e(7884).then(__webpack_require__.bind(__webpack_require__,92439))),186:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5307)]).then(__webpack_require__.bind(__webpack_require__,66325))),187:Ue.lazy(()=>__webpack_require__.e(5549).then(__webpack_require__.bind(__webpack_require__,90232))),188:Ue.lazy(()=>__webpack_require__.e(9674).then(__webpack_require__.bind(__webpack_require__,96345))),189:Ue.lazy(()=>__webpack_require__.e(5573).then(__webpack_require__.bind(__webpack_require__,62538))),190:Ue.lazy(()=>__webpack_require__.e(2141).then(__webpack_require__.bind(__webpack_require__,88252))),191:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(6442),__webpack_require__.e(9511)]).then(__webpack_require__.bind(__webpack_require__,19375))),192:Ue.lazy(()=>__webpack_require__.e(6328).then(__webpack_require__.bind(__webpack_require__,19243))),193:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7857)]).then(__webpack_require__.bind(__webpack_require__,4415))),194:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(1657)]).then(__webpack_require__.bind(__webpack_require__,73443))),195:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(1657)]).then(__webpack_require__.bind(__webpack_require__,73443))),196:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(4498)]).then(__webpack_require__.bind(__webpack_require__,27798))),197:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2763),__webpack_require__.e(4498)]).then(__webpack_require__.bind(__webpack_require__,27798))),198:Ue.lazy(()=>__webpack_require__.e(9205).then(__webpack_require__.bind(__webpack_require__,17509))),199:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1423)]).then(__webpack_require__.bind(__webpack_require__,39995))),200:Ue.lazy(()=>__webpack_require__.e(7614).then(__webpack_require__.bind(__webpack_require__,56869))),201:Ue.lazy(()=>__webpack_require__.e(9449).then(__webpack_require__.bind(__webpack_require__,88480))),202:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(9814)]).then(__webpack_require__.bind(__webpack_require__,58257))),203:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(6637)]).then(__webpack_require__.bind(__webpack_require__,94242))),204:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(6637)]).then(__webpack_require__.bind(__webpack_require__,94242))),205:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(3581)]).then(__webpack_require__.bind(__webpack_require__,69032))),206:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(1993)]).then(__webpack_require__.bind(__webpack_require__,57703))),207:Ue.lazy(()=>Promise.all([__webpack_require__.e(6442),__webpack_require__.e(1475)]).then(__webpack_require__.bind(__webpack_require__,41666))),208:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(8965)]).then(__webpack_require__.bind(__webpack_require__,24405))),209:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(6451)]).then(__webpack_require__.bind(__webpack_require__,75829))),210:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(518)]).then(__webpack_require__.bind(__webpack_require__,39723))),211:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5894)]).then(__webpack_require__.bind(__webpack_require__,24718))),212:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5894)]).then(__webpack_require__.bind(__webpack_require__,24718))),213:Ue.lazy(()=>__webpack_require__.e(2130).then(__webpack_require__.bind(__webpack_require__,45641))),214:Ue.lazy(()=>__webpack_require__.e(2130).then(__webpack_require__.bind(__webpack_require__,45641))),215:Ue.lazy(()=>__webpack_require__.e(5230).then(__webpack_require__.bind(__webpack_require__,90587))),216:Ue.lazy(()=>__webpack_require__.e(5230).then(__webpack_require__.bind(__webpack_require__,90587))),217:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8688)]).then(__webpack_require__.bind(__webpack_require__,12460))),218:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8688)]).then(__webpack_require__.bind(__webpack_require__,12460))),219:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5096)]).then(__webpack_require__.bind(__webpack_require__,98613))),220:Ue.lazy(()=>__webpack_require__.e(3086).then(__webpack_require__.bind(__webpack_require__,84379))),221:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(9417)]).then(__webpack_require__.bind(__webpack_require__,35486))),222:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),223:Ue.lazy(()=>__webpack_require__.e(5176).then(__webpack_require__.bind(__webpack_require__,11448))),224:Ue.lazy(()=>__webpack_require__.e(6587).then(__webpack_require__.bind(__webpack_require__,14055))),225:Ue.lazy(()=>__webpack_require__.e(9891).then(__webpack_require__.bind(__webpack_require__,57229))),226:Ue.lazy(()=>__webpack_require__.e(8062).then(__webpack_require__.bind(__webpack_require__,87828))),227:Ue.lazy(()=>__webpack_require__.e(5402).then(__webpack_require__.bind(__webpack_require__,74985))),228:Ue.lazy(()=>__webpack_require__.e(5402).then(__webpack_require__.bind(__webpack_require__,74985))),229:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6820)]).then(__webpack_require__.bind(__webpack_require__,15925))),230:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8517)]).then(__webpack_require__.bind(__webpack_require__,4160))),231:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7043)]).then(__webpack_require__.bind(__webpack_require__,35924))),232:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2806)]).then(__webpack_require__.bind(__webpack_require__,33842))),233:Ue.lazy(()=>__webpack_require__.e(5043).then(__webpack_require__.bind(__webpack_require__,34440))),234:Ue.lazy(()=>__webpack_require__.e(799).then(__webpack_require__.bind(__webpack_require__,35305))),235:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3157)]).then(__webpack_require__.bind(__webpack_require__,1654))),236:Ue.lazy(()=>__webpack_require__.e(8332).then(__webpack_require__.bind(__webpack_require__,71059))),237:Ue.lazy(()=>__webpack_require__.e(6583).then(__webpack_require__.bind(__webpack_require__,26030))),238:Ue.lazy(()=>__webpack_require__.e(8217).then(__webpack_require__.bind(__webpack_require__,57730))),239:Ue.lazy(()=>__webpack_require__.e(879).then(__webpack_require__.bind(__webpack_require__,26211))),240:Ue.lazy(()=>__webpack_require__.e(5776).then(__webpack_require__.bind(__webpack_require__,89983))),241:Ue.lazy(()=>__webpack_require__.e(906).then(__webpack_require__.bind(__webpack_require__,43311))),242:Ue.lazy(()=>__webpack_require__.e(900).then(__webpack_require__.bind(__webpack_require__,39633))),243:Ue.lazy(()=>__webpack_require__.e(6682).then(__webpack_require__.bind(__webpack_require__,84339))),244:Ue.lazy(()=>__webpack_require__.e(8115).then(__webpack_require__.bind(__webpack_require__,28893))),245:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(2659)]).then(__webpack_require__.bind(__webpack_require__,24764))),246:Ue.lazy(()=>__webpack_require__.e(4610).then(__webpack_require__.bind(__webpack_require__,15467))),247:Ue.lazy(()=>__webpack_require__.e(8479).then(__webpack_require__.bind(__webpack_require__,88739))),248:Ue.lazy(()=>__webpack_require__.e(5800).then(__webpack_require__.bind(__webpack_require__,49227))),249:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2862)]).then(__webpack_require__.bind(__webpack_require__,9407))),250:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8286)]).then(__webpack_require__.bind(__webpack_require__,39069))),251:Ue.lazy(()=>__webpack_require__.e(5117).then(__webpack_require__.bind(__webpack_require__,80105))),252:Ue.lazy(()=>__webpack_require__.e(7402).then(__webpack_require__.bind(__webpack_require__,67433))),253:Ue.lazy(()=>__webpack_require__.e(1897).then(__webpack_require__.bind(__webpack_require__,82034))),254:Ue.lazy(()=>__webpack_require__.e(8145).then(__webpack_require__.bind(__webpack_require__,36922))),255:Ue.lazy(()=>__webpack_require__.e(119).then(__webpack_require__.bind(__webpack_require__,83743))),256:Ue.lazy(()=>__webpack_require__.e(4736).then(__webpack_require__.bind(__webpack_require__,79261))),257:Ue.lazy(()=>__webpack_require__.e(2412).then(__webpack_require__.bind(__webpack_require__,51405))),258:Ue.lazy(()=>__webpack_require__.e(2240).then(__webpack_require__.bind(__webpack_require__,66229))),259:Ue.lazy(()=>__webpack_require__.e(5165).then(__webpack_require__.bind(__webpack_require__,77830))),260:Ue.lazy(()=>__webpack_require__.e(3831).then(__webpack_require__.bind(__webpack_require__,2494))),261:Ue.lazy(()=>__webpack_require__.e(2396).then(__webpack_require__.bind(__webpack_require__,29449))),262:Ue.lazy(()=>__webpack_require__.e(7855).then(__webpack_require__.bind(__webpack_require__,49123))),263:Ue.lazy(()=>__webpack_require__.e(9507).then(__webpack_require__.bind(__webpack_require__,21605))),264:Ue.lazy(()=>__webpack_require__.e(1343).then(__webpack_require__.bind(__webpack_require__,22922))),265:Ue.lazy(()=>__webpack_require__.e(6985).then(__webpack_require__.bind(__webpack_require__,26985))),266:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),267:Ue.lazy(()=>__webpack_require__.e(9647).then(__webpack_require__.bind(__webpack_require__,80613))),268:Ue.lazy(()=>__webpack_require__.e(485).then(__webpack_require__.bind(__webpack_require__,3733))),269:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4741)]).then(__webpack_require__.bind(__webpack_require__,69427))),270:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4741)]).then(__webpack_require__.bind(__webpack_require__,69427))),271:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4994)]).then(__webpack_require__.bind(__webpack_require__,84805))),272:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4994)]).then(__webpack_require__.bind(__webpack_require__,84805))),273:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7460)]).then(__webpack_require__.bind(__webpack_require__,20620))),274:Ue.lazy(()=>__webpack_require__.e(9716).then(__webpack_require__.bind(__webpack_require__,16764))),275:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6913)]).then(__webpack_require__.bind(__webpack_require__,16040))),276:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6913)]).then(__webpack_require__.bind(__webpack_require__,16040))),277:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),278:Ue.lazy(()=>__webpack_require__.e(3006).then(__webpack_require__.bind(__webpack_require__,20444))),279:Ue.lazy(()=>__webpack_require__.e(2045).then(__webpack_require__.bind(__webpack_require__,78505))),280:Ue.lazy(()=>__webpack_require__.e(1520).then(__webpack_require__.bind(__webpack_require__,96176))),281:Ue.lazy(()=>__webpack_require__.e(9649).then(__webpack_require__.bind(__webpack_require__,12810))),282:Ue.lazy(()=>__webpack_require__.e(4546).then(__webpack_require__.bind(__webpack_require__,32034))),283:Ue.lazy(()=>__webpack_require__.e(5357).then(__webpack_require__.bind(__webpack_require__,87578))),284:Ue.lazy(()=>__webpack_require__.e(8665).then(__webpack_require__.bind(__webpack_require__,92012))),285:Ue.lazy(()=>__webpack_require__.e(3183).then(__webpack_require__.bind(__webpack_require__,2661))),286:Ue.lazy(()=>__webpack_require__.e(4800).then(__webpack_require__.bind(__webpack_require__,2905))),287:Ue.lazy(()=>__webpack_require__.e(9489).then(__webpack_require__.bind(__webpack_require__,38392))),288:Ue.lazy(()=>__webpack_require__.e(9391).then(__webpack_require__.bind(__webpack_require__,3233))),289:Ue.lazy(()=>__webpack_require__.e(5335).then(__webpack_require__.bind(__webpack_require__,14172))),290:Ue.lazy(()=>__webpack_require__.e(2823).then(__webpack_require__.bind(__webpack_require__,39352))),291:Ue.lazy(()=>__webpack_require__.e(4973).then(__webpack_require__.bind(__webpack_require__,855))),292:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(6651)]).then(__webpack_require__.bind(__webpack_require__,21263))),293:Ue.lazy(()=>__webpack_require__.e(6741).then(__webpack_require__.bind(__webpack_require__,63357))),294:Ue.lazy(()=>__webpack_require__.e(5775).then(__webpack_require__.bind(__webpack_require__,38164))),295:Ue.lazy(()=>__webpack_require__.e(2548).then(__webpack_require__.bind(__webpack_require__,22388))),296:Ue.lazy(()=>__webpack_require__.e(6985).then(__webpack_require__.bind(__webpack_require__,26985))),297:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),298:Ue.lazy(()=>__webpack_require__.e(6634).then(__webpack_require__.bind(__webpack_require__,47028))),299:Ue.lazy(()=>__webpack_require__.e(680).then(__webpack_require__.bind(__webpack_require__,94570))),300:Ue.lazy(()=>__webpack_require__.e(6366).then(__webpack_require__.bind(__webpack_require__,15421))),301:Ue.lazy(()=>__webpack_require__.e(6452).then(__webpack_require__.bind(__webpack_require__,7432))),302:Ue.lazy(()=>__webpack_require__.e(1070).then(__webpack_require__.bind(__webpack_require__,39788))),303:Ue.lazy(()=>__webpack_require__.e(7242).then(__webpack_require__.bind(__webpack_require__,53392))),304:Ue.lazy(()=>__webpack_require__.e(2707).then(__webpack_require__.bind(__webpack_require__,42555))),305:Ue.lazy(()=>__webpack_require__.e(2865).then(__webpack_require__.bind(__webpack_require__,6170))),306:Ue.lazy(()=>__webpack_require__.e(6784).then(__webpack_require__.bind(__webpack_require__,55263))),307:Ue.lazy(()=>__webpack_require__.e(6784).then(__webpack_require__.bind(__webpack_require__,55263))),308:Ue.lazy(()=>__webpack_require__.e(3141).then(__webpack_require__.bind(__webpack_require__,49423))),309:Ue.lazy(()=>__webpack_require__.e(6985).then(__webpack_require__.bind(__webpack_require__,26985))),310:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(7289)]).then(__webpack_require__.bind(__webpack_require__,72426))),311:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(700)]).then(__webpack_require__.bind(__webpack_require__,40605))),312:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(7289)]).then(__webpack_require__.bind(__webpack_require__,72426))),313:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(700)]).then(__webpack_require__.bind(__webpack_require__,40605))),314:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(2763),__webpack_require__.e(7289)]).then(__webpack_require__.bind(__webpack_require__,72426))),315:Ue.lazy(()=>__webpack_require__.e(6985).then(__webpack_require__.bind(__webpack_require__,26985))),316:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7527)]).then(__webpack_require__.bind(__webpack_require__,28475))),317:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6270)]).then(__webpack_require__.bind(__webpack_require__,56918))),318:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),319:Ue.lazy(()=>__webpack_require__.e(547).then(__webpack_require__.bind(__webpack_require__,60862))),320:Ue.lazy(()=>__webpack_require__.e(9788).then(__webpack_require__.bind(__webpack_require__,45356))),321:Ue.lazy(()=>__webpack_require__.e(576).then(__webpack_require__.bind(__webpack_require__,76202))),322:Ue.lazy(()=>__webpack_require__.e(7260).then(__webpack_require__.bind(__webpack_require__,22473))),323:Ue.lazy(()=>__webpack_require__.e(4520).then(__webpack_require__.bind(__webpack_require__,74058))),324:Ue.lazy(()=>__webpack_require__.e(9076).then(__webpack_require__.bind(__webpack_require__,53575))),325:Ue.lazy(()=>__webpack_require__.e(4514).then(__webpack_require__.bind(__webpack_require__,3668))),326:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),327:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(928)]).then(__webpack_require__.bind(__webpack_require__,23144))),328:Ue.lazy(()=>__webpack_require__.e(1006).then(__webpack_require__.bind(__webpack_require__,49366))),329:Ue.lazy(()=>__webpack_require__.e(1006).then(__webpack_require__.bind(__webpack_require__,49366))),330:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),331:Ue.lazy(()=>__webpack_require__.e(1939).then(__webpack_require__.bind(__webpack_require__,99048))),332:Ue.lazy(()=>__webpack_require__.e(556).then(__webpack_require__.bind(__webpack_require__,328))),333:Ue.lazy(()=>__webpack_require__.e(6434).then(__webpack_require__.bind(__webpack_require__,88025))),334:Ue.lazy(()=>__webpack_require__.e(1880).then(__webpack_require__.bind(__webpack_require__,50722))),335:Ue.lazy(()=>__webpack_require__.e(8237).then(__webpack_require__.bind(__webpack_require__,27460))),336:Ue.lazy(()=>__webpack_require__.e(3447).then(__webpack_require__.bind(__webpack_require__,81582))),337:Ue.lazy(()=>__webpack_require__.e(264).then(__webpack_require__.bind(__webpack_require__,2431))),338:Ue.lazy(()=>__webpack_require__.e(4259).then(__webpack_require__.bind(__webpack_require__,72918))),339:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),340:Ue.lazy(()=>__webpack_require__.e(4078).then(__webpack_require__.bind(__webpack_require__,34154))),341:Ue.lazy(()=>__webpack_require__.e(2829).then(__webpack_require__.bind(__webpack_require__,85551))),342:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5359)]).then(__webpack_require__.bind(__webpack_require__,24411))),343:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),344:Ue.lazy(()=>__webpack_require__.e(559).then(__webpack_require__.bind(__webpack_require__,82603))),345:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3747)]).then(__webpack_require__.bind(__webpack_require__,58868))),346:Ue.lazy(()=>__webpack_require__.e(4757).then(__webpack_require__.bind(__webpack_require__,99182))),347:Ue.lazy(()=>__webpack_require__.e(1783).then(__webpack_require__.bind(__webpack_require__,91162))),348:Ue.lazy(()=>__webpack_require__.e(7477).then(__webpack_require__.bind(__webpack_require__,72452))),349:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9677)]).then(__webpack_require__.bind(__webpack_require__,78572))),350:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9677)]).then(__webpack_require__.bind(__webpack_require__,78572))),351:Ue.lazy(()=>__webpack_require__.e(6796).then(__webpack_require__.bind(__webpack_require__,93726))),352:Ue.lazy(()=>__webpack_require__.e(4504).then(__webpack_require__.bind(__webpack_require__,4234))),353:Ue.lazy(()=>__webpack_require__.e(7058).then(__webpack_require__.bind(__webpack_require__,96652))),354:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8447)]).then(__webpack_require__.bind(__webpack_require__,12721))),355:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1045)]).then(__webpack_require__.bind(__webpack_require__,18457))),356:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1045)]).then(__webpack_require__.bind(__webpack_require__,18457))),357:Ue.lazy(()=>__webpack_require__.e(5238).then(__webpack_require__.bind(__webpack_require__,32833))),358:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4715)]).then(__webpack_require__.bind(__webpack_require__,28092))),359:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3873)]).then(__webpack_require__.bind(__webpack_require__,51829))),360:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6069)]).then(__webpack_require__.bind(__webpack_require__,90337))),361:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6069)]).then(__webpack_require__.bind(__webpack_require__,90337))),362:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6265)]).then(__webpack_require__.bind(__webpack_require__,5135))),363:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8563)]).then(__webpack_require__.bind(__webpack_require__,63506))),364:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8563)]).then(__webpack_require__.bind(__webpack_require__,63506))),365:Ue.lazy(()=>__webpack_require__.e(1713).then(__webpack_require__.bind(__webpack_require__,18784))),366:Ue.lazy(()=>__webpack_require__.e(5891).then(__webpack_require__.bind(__webpack_require__,24661))),367:Ue.lazy(()=>__webpack_require__.e(8398).then(__webpack_require__.bind(__webpack_require__,95111))),368:Ue.lazy(()=>__webpack_require__.e(8241).then(__webpack_require__.bind(__webpack_require__,38492))),369:Ue.lazy(()=>__webpack_require__.e(2339).then(__webpack_require__.bind(__webpack_require__,97154))),370:Ue.lazy(()=>__webpack_require__.e(7589).then(__webpack_require__.bind(__webpack_require__,70853))),371:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3747)]).then(__webpack_require__.bind(__webpack_require__,58868))),372:Ue.lazy(()=>__webpack_require__.e(5705).then(__webpack_require__.bind(__webpack_require__,81183))),373:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),374:Ue.lazy(()=>__webpack_require__.e(559).then(__webpack_require__.bind(__webpack_require__,82603))),375:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3747)]).then(__webpack_require__.bind(__webpack_require__,58868))),376:Ue.lazy(()=>__webpack_require__.e(4757).then(__webpack_require__.bind(__webpack_require__,99182))),377:Ue.lazy(()=>__webpack_require__.e(1783).then(__webpack_require__.bind(__webpack_require__,91162))),378:Ue.lazy(()=>__webpack_require__.e(7477).then(__webpack_require__.bind(__webpack_require__,72452))),379:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9677)]).then(__webpack_require__.bind(__webpack_require__,78572))),380:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9677)]).then(__webpack_require__.bind(__webpack_require__,78572))),381:Ue.lazy(()=>__webpack_require__.e(6796).then(__webpack_require__.bind(__webpack_require__,93726))),382:Ue.lazy(()=>__webpack_require__.e(4504).then(__webpack_require__.bind(__webpack_require__,4234))),383:Ue.lazy(()=>__webpack_require__.e(7058).then(__webpack_require__.bind(__webpack_require__,96652))),384:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8447)]).then(__webpack_require__.bind(__webpack_require__,12721))),385:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1045)]).then(__webpack_require__.bind(__webpack_require__,18457))),386:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1045)]).then(__webpack_require__.bind(__webpack_require__,18457))),387:Ue.lazy(()=>__webpack_require__.e(5238).then(__webpack_require__.bind(__webpack_require__,32833))),388:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4715)]).then(__webpack_require__.bind(__webpack_require__,28092))),389:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3873)]).then(__webpack_require__.bind(__webpack_require__,51829))),390:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6069)]).then(__webpack_require__.bind(__webpack_require__,90337))),391:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6069)]).then(__webpack_require__.bind(__webpack_require__,90337))),392:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6265)]).then(__webpack_require__.bind(__webpack_require__,5135))),393:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8563)]).then(__webpack_require__.bind(__webpack_require__,63506))),394:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8563)]).then(__webpack_require__.bind(__webpack_require__,63506))),395:Ue.lazy(()=>__webpack_require__.e(1713).then(__webpack_require__.bind(__webpack_require__,18784))),396:Ue.lazy(()=>__webpack_require__.e(5891).then(__webpack_require__.bind(__webpack_require__,24661))),397:Ue.lazy(()=>__webpack_require__.e(8398).then(__webpack_require__.bind(__webpack_require__,95111))),398:Ue.lazy(()=>__webpack_require__.e(8241).then(__webpack_require__.bind(__webpack_require__,38492))),399:Ue.lazy(()=>__webpack_require__.e(2339).then(__webpack_require__.bind(__webpack_require__,97154))),400:Ue.lazy(()=>__webpack_require__.e(7589).then(__webpack_require__.bind(__webpack_require__,70853))),401:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(3747)]).then(__webpack_require__.bind(__webpack_require__,58868))),402:Ue.lazy(()=>__webpack_require__.e(5705).then(__webpack_require__.bind(__webpack_require__,81183))),403:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),404:Ue.lazy(()=>__webpack_require__.e(4766).then(__webpack_require__.bind(__webpack_require__,47317))),405:Ue.lazy(()=>__webpack_require__.e(7560).then(__webpack_require__.bind(__webpack_require__,21484))),406:Ue.lazy(()=>__webpack_require__.e(6029).then(__webpack_require__.bind(__webpack_require__,86315))),407:Ue.lazy(()=>__webpack_require__.e(5179).then(__webpack_require__.bind(__webpack_require__,35153))),408:Ue.lazy(()=>__webpack_require__.e(4621).then(__webpack_require__.bind(__webpack_require__,97137))),409:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),410:Ue.lazy(()=>__webpack_require__.e(1831).then(__webpack_require__.bind(__webpack_require__,5202))),411:Ue.lazy(()=>__webpack_require__.e(2539).then(__webpack_require__.bind(__webpack_require__,2016))),412:Ue.lazy(()=>__webpack_require__.e(8143).then(__webpack_require__.bind(__webpack_require__,8306))),413:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5624)]).then(__webpack_require__.bind(__webpack_require__,52889))),414:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(1461)]).then(__webpack_require__.bind(__webpack_require__,85434))),415:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4492)]).then(__webpack_require__.bind(__webpack_require__,57858))),416:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(9416)]).then(__webpack_require__.bind(__webpack_require__,65334))),417:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2443)]).then(__webpack_require__.bind(__webpack_require__,59035))),418:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2443)]).then(__webpack_require__.bind(__webpack_require__,59035))),419:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2443)]).then(__webpack_require__.bind(__webpack_require__,59035))),420:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2443)]).then(__webpack_require__.bind(__webpack_require__,59035))),421:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(2443)]).then(__webpack_require__.bind(__webpack_require__,59035))),422:Ue.lazy(()=>__webpack_require__.e(5022).then(__webpack_require__.bind(__webpack_require__,31765))),423:Ue.lazy(()=>__webpack_require__.e(6063).then(__webpack_require__.bind(__webpack_require__,80415))),424:Ue.lazy(()=>__webpack_require__.e(6063).then(__webpack_require__.bind(__webpack_require__,80415))),425:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(7545)]).then(__webpack_require__.bind(__webpack_require__,4282))),426:Ue.lazy(()=>__webpack_require__.e(1253).then(__webpack_require__.bind(__webpack_require__,81285))),427:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),428:Ue.lazy(()=>__webpack_require__.e(2216).then(__webpack_require__.bind(__webpack_require__,94163))),429:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5382)]).then(__webpack_require__.bind(__webpack_require__,17734))),430:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),431:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6411),__webpack_require__.e(8823)]).then(__webpack_require__.bind(__webpack_require__,61559))),432:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5915)]).then(__webpack_require__.bind(__webpack_require__,32624))),433:Ue.lazy(()=>__webpack_require__.e(1077).then(__webpack_require__.bind(__webpack_require__,13492))),434:Ue.lazy(()=>__webpack_require__.e(4378).then(__webpack_require__.bind(__webpack_require__,79541))),435:Ue.lazy(()=>__webpack_require__.e(446).then(__webpack_require__.bind(__webpack_require__,25933))),436:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),437:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5244)]).then(__webpack_require__.bind(__webpack_require__,74633))),438:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),439:Ue.lazy(()=>__webpack_require__.e(570).then(__webpack_require__.bind(__webpack_require__,89288))),440:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),441:Ue.lazy(()=>__webpack_require__.e(8365).then(__webpack_require__.bind(__webpack_require__,91185))),442:Ue.lazy(()=>__webpack_require__.e(6788).then(__webpack_require__.bind(__webpack_require__,39066))),443:Ue.lazy(()=>__webpack_require__.e(4058).then(__webpack_require__.bind(__webpack_require__,4255))),444:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),445:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(3832)]).then(__webpack_require__.bind(__webpack_require__,15861))),446:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),447:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5839)]).then(__webpack_require__.bind(__webpack_require__,27105))),448:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),449:Ue.lazy(()=>__webpack_require__.e(4056).then(__webpack_require__.bind(__webpack_require__,20807))),450:Ue.lazy(()=>__webpack_require__.e(9487).then(__webpack_require__.bind(__webpack_require__,24693))),451:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),452:Ue.lazy(()=>__webpack_require__.e(532).then(__webpack_require__.bind(__webpack_require__,20146))),453:Ue.lazy(()=>__webpack_require__.e(7178).then(__webpack_require__.bind(__webpack_require__,95513))),454:Ue.lazy(()=>__webpack_require__.e(1660).then(__webpack_require__.bind(__webpack_require__,62465))),455:Ue.lazy(()=>__webpack_require__.e(7333).then(__webpack_require__.bind(__webpack_require__,54895))),456:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(4227)]).then(__webpack_require__.bind(__webpack_require__,27307))),457:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8155)]).then(__webpack_require__.bind(__webpack_require__,14781))),458:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(5186)]).then(__webpack_require__.bind(__webpack_require__,63601))),459:Ue.lazy(()=>__webpack_require__.e(5786).then(__webpack_require__.bind(__webpack_require__,32040))),460:Ue.lazy(()=>__webpack_require__.e(9366).then(__webpack_require__.bind(__webpack_require__,11881))),461:Ue.lazy(()=>__webpack_require__.e(5972).then(__webpack_require__.bind(__webpack_require__,85978))),462:Ue.lazy(()=>__webpack_require__.e(9366).then(__webpack_require__.bind(__webpack_require__,11881))),463:Ue.lazy(()=>__webpack_require__.e(1470).then(__webpack_require__.bind(__webpack_require__,465))),464:Ue.lazy(()=>__webpack_require__.e(7182).then(__webpack_require__.bind(__webpack_require__,75827))),465:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),466:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(2476)]).then(__webpack_require__.bind(__webpack_require__,7868))),467:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),468:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5729)]).then(__webpack_require__.bind(__webpack_require__,28432))),469:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),470:Ue.lazy(()=>__webpack_require__.e(6444).then(__webpack_require__.bind(__webpack_require__,90131))),471:Ue.lazy(()=>__webpack_require__.e(5111).then(__webpack_require__.bind(__webpack_require__,75499))),472:Ue.lazy(()=>__webpack_require__.e(2307).then(__webpack_require__.bind(__webpack_require__,53198))),473:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(7224)]).then(__webpack_require__.bind(__webpack_require__,98787))),474:Ue.lazy(()=>__webpack_require__.e(7062).then(__webpack_require__.bind(__webpack_require__,4336))),475:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(8229),__webpack_require__.e(8866)]).then(__webpack_require__.bind(__webpack_require__,28458))),476:Ue.lazy(()=>__webpack_require__.e(2300).then(__webpack_require__.bind(__webpack_require__,89609))),477:Ue.lazy(()=>__webpack_require__.e(2501).then(__webpack_require__.bind(__webpack_require__,74897))),478:Ue.lazy(()=>__webpack_require__.e(3212).then(__webpack_require__.bind(__webpack_require__,55700))),479:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6904)]).then(__webpack_require__.bind(__webpack_require__,99198))),480:Ue.lazy(()=>__webpack_require__.e(1855).then(__webpack_require__.bind(__webpack_require__,75243))),481:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(6904)]).then(__webpack_require__.bind(__webpack_require__,99198))),482:Ue.lazy(()=>__webpack_require__.e(1276).then(__webpack_require__.bind(__webpack_require__,3766))),483:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5816)]).then(__webpack_require__.bind(__webpack_require__,87261))),484:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(5816)]).then(__webpack_require__.bind(__webpack_require__,87261))),485:Ue.lazy(()=>__webpack_require__.e(3784).then(__webpack_require__.bind(__webpack_require__,49026))),486:Ue.lazy(()=>__webpack_require__.e(3862).then(__webpack_require__.bind(__webpack_require__,40085))),487:Ue.lazy(()=>__webpack_require__.e(4565).then(__webpack_require__.bind(__webpack_require__,58234))),488:Ue.lazy(()=>__webpack_require__.e(6531).then(__webpack_require__.bind(__webpack_require__,64770))),489:Ue.lazy(()=>__webpack_require__.e(6170).then(__webpack_require__.bind(__webpack_require__,65077))),490:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4496)]).then(__webpack_require__.bind(__webpack_require__,19730))),491:Ue.lazy(()=>__webpack_require__.e(1836).then(__webpack_require__.bind(__webpack_require__,73980))),492:Ue.lazy(()=>Promise.all([__webpack_require__.e(6411),__webpack_require__.e(6393),__webpack_require__.e(8435)]).then(__webpack_require__.bind(__webpack_require__,57984))),493:Ue.lazy(()=>__webpack_require__.e(3509).then(__webpack_require__.bind(__webpack_require__,83741))),494:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4496)]).then(__webpack_require__.bind(__webpack_require__,19730))),495:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(4496)]).then(__webpack_require__.bind(__webpack_require__,19730))),496:Ue.lazy(()=>__webpack_require__.e(6034).then(__webpack_require__.bind(__webpack_require__,75413))),497:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(8999)]).then(__webpack_require__.bind(__webpack_require__,4147))),498:Ue.lazy(()=>__webpack_require__.e(3910).then(__webpack_require__.bind(__webpack_require__,28637))),499:Ue.lazy(()=>Promise.all([__webpack_require__.e(9724),__webpack_require__.e(67)]).then(__webpack_require__.bind(__webpack_require__,10998))),500:Ue.lazy(()=>__webpack_require__.e(6531).then(__webpack_require__.bind(__webpack_require__,64770))),"@@/global-layout":Ue.lazy(()=>__webpack_require__.e(1717).then(__webpack_require__.bind(__webpack_require__,97147)))}}})}var C=__webpack_require__(7240),O=__webpack_require__(26243),L=__webpack_require__(71418),_e=__webpack_require__(41977),Oe=()=>Ue.createElement(L.Z,{size:"middle",className:_e.Z.loading}),dn=__webpack_require__(65582),Pn=__webpack_require__(56656),pn=__webpack_require__.n(Pn),Mi=__webpack_require__(91392),ds=__webpack_require__.n(Mi),Ga=__webpack_require__(29256),Yo=__webpack_require__.n(Ga),is=__webpack_require__(81626),Io=__webpack_require__.n(is),Gs=__webpack_require__(71912),tf=__webpack_require__.n(Gs),ql=__webpack_require__(48228),Bc=__webpack_require__.n(ql),rf=__webpack_require__(27112),Ju=__webpack_require__.n(rf),Ti=__webpack_require__(36867),Tl=__webpack_require__.n(Ti),Nc=__webpack_require__(53501),su=__webpack_require__.n(Nc),_o=__webpack_require__(22982),gs=__webpack_require__.n(_o),bl=__webpack_require__(54449),ec=__webpack_require__.n(bl),xl=__webpack_require__(10564),Fl=__webpack_require__.n(xl),Cl=__webpack_require__(92468),Ef=__webpack_require__.n(Cl),Bu=__webpack_require__(27082),Bl=__webpack_require__.n(Bu);pn().extend(Yo()),pn().extend(Io()),pn().extend(tf()),pn().extend(Bc()),pn().extend(Ju()),pn().extend(Tl()),pn().extend(su()),pn().extend(gs()),pn().extend(ec()),pn().extend(Fl()),pn().extend(Ef()),pn().extend(Bl()),pn().extend(ds());var nf=Object.defineProperty,Nl=Object.getOwnPropertySymbols,wf=Object.prototype.hasOwnProperty,Nu=Object.prototype.propertyIsEnumerable,Il=(Mn,ti,Gi)=>ti in Mn?nf(Mn,ti,{enumerable:!0,configurable:!0,writable:!0,value:Gi}):Mn[ti]=Gi,tc=(Mn,ti)=>{for(var Gi in ti||(ti={}))wf.call(ti,Gi)&&Il(Mn,Gi,ti[Gi]);if(Nl)for(var Gi of Nl(ti))Nu.call(ti,Gi)&&Il(Mn,Gi,ti[Gi]);return Mn},jc=(Mn,ti,Gi)=>new Promise((Ma,sa)=>{var wa=oa=>{try{Bs(Gi.next(oa))}catch(Us){sa(Us)}},va=oa=>{try{Bs(Gi.throw(oa))}catch(Us){sa(Us)}},Bs=oa=>oa.done?Ma(oa.value):Promise.resolve(oa.value).then(wa,va);Bs((Gi=Gi.apply(Mn,ti)).next())});const Wu="/react/build/",Cu=!1;function Iu(){return jc(this,null,function*(){const Mn=(0,C.gD)(),{routes:ti,routeComponents:Gi}=yield xf(Mn);yield Mn.applyPlugins({key:"patchRoutes",type:dn.ApplyPluginsType.event,args:{routes:ti,routeComponents:Gi}});const Ma=Mn.applyPlugins({key:"modifyContextOpts",type:dn.ApplyPluginsType.modify,initialValue:{}}),sa=Ma.basename||"/",wa=Ma.historyType||"browser",va=(0,O.fi)(tc({type:wa,basename:sa},Ma.historyOpts));return Mn.applyPlugins({key:"render",type:dn.ApplyPluginsType.compose,initialValue(){const Bs={useStream:!0,routes:ti,routeComponents:Gi,pluginManager:Mn,mountElementId:"root",rootElement:Ma.rootElement||document.getElementById("root"),loadingComponent:Oe,publicPath:Wu,runtimePublicPath:Cu,history:va,historyType:wa,basename:sa,__INTERNAL_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{pureApp:!1,pureHtml:!1},callback:Ma.callback},oa=Mn.applyPlugins({key:"modifyClientRenderOpts",type:dn.ApplyPluginsType.modify,initialValue:Bs});return Mc(oa)}})()})}Iu(),typeof window!="undefined"&&(window.g_umi={version:"4.5.3"})})()})();