diff --git a/DESCRIPTION b/DESCRIPTION index 11a6c31bf..c0bf4ebdd 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: shiny Type: Package Title: Web Application Framework for R -Version: 1.9.1.9000 +Version: 1.10.0 Authors@R: c( person("Winston", "Chang", role = c("aut", "cre"), email = "winston@posit.co", comment = c(ORCID = "0000-0002-1576-2126")), person("Joe", "Cheng", role = "aut", email = "joe@posit.co"), diff --git a/NEWS.md b/NEWS.md index 93bab763a..d7cc5e68d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,12 +1,12 @@ -# shiny (development version) +# shiny 1.10.0 ## New features and improvements -* Small improvements to the default pulse busy indicator to better blend with any background. It's also now slightly smaller by default. (#4122) +* When busy indicators are enabled (i.e., `useBusyIndicators()` is in the UI), Shiny now: + * Shows the pulse indicator when dynamic UI elements are recalculating and no other spinners are visible in the app. (#4137) + * Makes the pulse indicator slightly smaller by default and improves its appearance to better blend with any background. (#4122) -* When spinners and the pulse busy indicators are enabled, Shiny now shows the pulse indicator when dynamic UI elements are recalculating if no other spinners are present in the app. (#4137) - -* Improve collection of deep stack traces (stack traces that are tracked across steps in an async promise chain) with `coro` async generators such as `elmer` chat streams. Previously, Shiny treated each iteration of an async generator as a distinct deep stack, leading to pathologically long stack traces; now, Shiny only keeps/prints unique deep stack trace, discarding duplicates. (#4156) +* Improve collection of deep stack traces (stack traces that are tracked across steps in an async promise chain) with `{coro}` async generators such as `{elmer}` chat streams. Previously, Shiny treated each iteration of an async generator as a distinct deep stack, leading to pathologically long stack traces; now, Shiny only keeps/prints unique deep stack trace, discarding duplicates. (#4156) * Added an example to the `ExtendedTask` documentation. (@daattali #4087) @@ -16,17 +16,17 @@ * Fixed a bug with `sliderInput()` when used as a range slider that made it impossible to change the slider value when both handles were at the maximum value. (#4131) -* `dateInput` and `dateRangeInput` no longer send immediate updates to the server when the user is typing a date input. Instead, it waits until the user presses Enter or clicks out of the field to send the update, avoiding spurious and incorrect date values. Note that an update is still sent immediately when the field is cleared. (#3664) +* `dateInput()` and `dateRangeInput()` no longer send immediate updates to the server when the user is typing a date input. Instead, it waits until the user presses Enter or clicks out of the field to send the update, avoiding spurious and incorrect date values. Note that an update is still sent immediately when the field is cleared. (#3664) -* Fixed a bug in `onBookmark` hook that caused elements to not be excluded from URL bookmarking. (#3762) +* Fixed a bug in `onBookmark()` hook that caused elements to not be excluded from URL bookmarking. (#3762) -* Fixed a bug with stack trace capturing that caused reactives with very long async promise chains (hundreds/thousands of steps) to become extremely slow. Chains this long are unlikely to be written by hand, but {coro} async generators and {elmer} async streaming were easily creating problematically long chains. (#4155) +* Fixed a bug with stack trace capturing that caused reactives with very long async promise chains (hundreds/thousands of steps) to become extremely slow. Chains this long are unlikely to be written by hand, but `{coro}` async generators and `{elmer}` async streaming were easily creating problematically long chains. (#4155) -* Duplicate input and output IDs -- e.g. using `"debug"` for two inputs or two outputs -- or shared IDs -- e.g. using `"debug"` as the `inputID` for an input and an output -- now result in a console warning message, but not an error. When `devmode()` is enabled, an informative message is shown in the Shiny Client Console. We recommend all Shiny devs enable `devmode()` when developing Shiny apps locally. (#4101) +* Duplicate input and output IDs -- e.g. using `"debug"` for two inputs or two outputs -- or shared IDs -- e.g. using `"debug"` as the `inputId` for an input and an output -- now result in a console warning message, but not an error. When `devmode()` is enabled, an informative message is shown in the Shiny Client Console. We recommend all Shiny devs enable `devmode()` when developing Shiny apps locally. (#4101) * Updating the choices of a `selectizeInput()` via `updateSelectizeInput()` with `server = TRUE` no longer retains the selected choice as a deselected option if the current value is not part of the new choices. (@dvg-p4 #4142) -* Fixed a bug where stack traces from `observeEvent` were being stripped of stack frames too aggressively. +* Fixed a bug where stack traces from `observeEvent()` were being stripped of stack frames too aggressively. (#4163) # shiny 1.9.1 @@ -1050,7 +1050,7 @@ Shiny can now display notifications on the client browser by using the `showNoti notification

-[Here](https://shiny.rstudio.com/articles/notifications.html)'s our article about it, and the [reference documentation](https://shiny.rstudio.com/reference/shiny/latest/showNotification.html). +[Here](https://shiny.rstudio.com/articles/notifications.html)'s our article about it, and the [reference documentation](https://shiny.posit.co/r/reference/shiny/latest/shownotification.html). ## Progress indicators @@ -1059,7 +1059,7 @@ If your Shiny app contains computations that take a long time to complete, a pro **_Important note_:** > If you were already using progress bars and had customized them with your own CSS, you can add the `style = "old"` argument to your `withProgress()` call (or `Progress$new()`). This will result in the same appearance as before. You can also call `shinyOptions(progress.style = "old")` in your app's server function to make all progress indicators use the old styling. -To see new progress bars in action, see [this app](https://gallery.shinyapps.io/085-progress/) in the gallery. You can also learn more about this in [our article](https://shiny.rstudio.com/articles/progress.html) and in the reference documentation (either for the easier [`withProgress` functional API](https://shiny.rstudio.com/reference/shiny/latest/withProgress.html) or the more complicated, but more powerful, [`Progress` object-oriented API](https://shiny.rstudio.com/reference/shiny/latest/Progress.html). +To see new progress bars in action, see [this app](https://gallery.shinyapps.io/085-progress/) in the gallery. You can also learn more about this in [our article](https://shiny.rstudio.com/articles/progress.html) and in the reference documentation (either for the easier [`withProgress` functional API](https://shiny.posit.co/r/reference/shiny/latest/withprogress.html) or the more complicated, but more powerful, [`Progress` object-oriented API](https://shiny.posit.co/r/reference/shiny/latest/progress.html). ## Reconnection @@ -1073,7 +1073,7 @@ Shiny has now built-in support for displaying modal dialogs like the one below ( modal-dialog

-To learn more about this, read [our article](https://shiny.rstudio.com/articles/modal-dialogs.html) and the [reference documentation](https://shiny.rstudio.com/reference/shiny/latest/modalDialog.html). +To learn more about this, read [our article](https://shiny.rstudio.com/articles/modal-dialogs.html) and the [reference documentation](https://shiny.posit.co/r/reference/shiny/latest/modaldialog.html). ## `insertUI` and `removeUI` @@ -1081,7 +1081,7 @@ Sometimes in a Shiny app, arbitrary HTML UI may need to be created on-the-fly in See [this simple demo app](https://gallery.shinyapps.io/111-insert-ui/) of how one could use `insertUI` and `removeUI` to insert and remove text elements using a queue. Also see [this other app](https://gallery.shinyapps.io/insertUI/) that demonstrates how to insert and remove a few common Shiny input objects. Finally, [this app](https://gallery.shinyapps.io/insertUI-modules/) shows how to dynamically insert modules using `insertUI`. -For more, read [our article](https://shiny.rstudio.com/articles/dynamic-ui.html) about dynamic UI generation and the reference documentation about [`insertUI`](https://shiny.rstudio.com/reference/shiny/latest/insertUI.html) and [`removeUI`](https://shiny.rstudio.com/reference/shiny/latest/insertUI.html). +For more, read [our article](https://shiny.rstudio.com/articles/dynamic-ui.html) about dynamic UI generation and the reference documentation about [`insertUI`](https://shiny.posit.co/r/reference/shiny/latest/insertui.html) and [`removeUI`](https://shiny.posit.co/r/reference/shiny/latest/insertui.html). ## Documentation for connecting to an external database @@ -1115,7 +1115,7 @@ There are many more minor features, small improvements, and bug fixes than we ca render-table

- For more, read our [short article](https://shiny.rstudio.com/articles/render-table.html) about this update, experiment with all the new features in this [demo app](https://gallery.shinyapps.io/109-render-table/), or check out the [reference documentation](https://shiny.rstudio.com/reference/shiny/latest/renderTable.html). + For more, read our [short article](https://shiny.rstudio.com/articles/render-table.html) about this update, experiment with all the new features in this [demo app](https://gallery.shinyapps.io/109-render-table/), or check out the [reference documentation](https://shiny.posit.co/r/reference/shiny/latest/rendertable.html). ## Full changelog diff --git a/cran-comments.md b/cran-comments.md index e69de29bb..4fb4e4a5c 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -0,0 +1,40 @@ +## revdepcheck results + +We checked 1278 reverse dependencies (1277 from CRAN + 1 from Bioconductor), comparing R CMD check results across CRAN and dev versions of shiny. + + * We saw 2 new problems (NOTEs only) + * We failed to check 19 packages due to installation issues + +Issues with CRAN packages are summarised below. + +### New problems + +R CMD check displayed NOTEs for two packages, unrelated to changes in shiny. + +* HH + checking installed package size ... NOTE + +* PopED + checking installed package size ... NOTE + +### Failed to check + +* animalEKF +* AovBay +* Certara.VPCResults +* chipPCR +* ctsem +* dartR.sim +* diveR +* gap +* jsmodule +* loon.shiny +* robmedExtra +* rstanarm +* SensMap +* Seurat +* shinyTempSignal +* Signac +* statsr +* TestAnaAPP +* tidyvpc \ No newline at end of file diff --git a/inst/www/shared/busy-indicators/busy-indicators.css b/inst/www/shared/busy-indicators/busy-indicators.css index f29303d16..dbe856335 100644 --- a/inst/www/shared/busy-indicators/busy-indicators.css +++ b/inst/www/shared/busy-indicators/busy-indicators.css @@ -1,2 +1,2 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ :where([data-shiny-busy-spinners] .recalculating){position:relative}[data-shiny-busy-spinners] .recalculating:after{position:absolute;content:"";--_shiny-spinner-url: var(--shiny-spinner-url, url(spinners/ring.svg));--_shiny-spinner-color: var(--shiny-spinner-color, var(--bs-primary, #007bc2));--_shiny-spinner-size: var(--shiny-spinner-size, 32px);--_shiny-spinner-delay: var(--shiny-spinner-delay, 1s);background:var(--_shiny-spinner-color);width:var(--_shiny-spinner-size);height:var(--_shiny-spinner-size);inset:calc(50% - var(--_shiny-spinner-size) / 2);mask-image:var(--_shiny-spinner-url);-webkit-mask-image:var(--_shiny-spinner-url);opacity:0;animation-delay:var(--_shiny-spinner-delay);animation-name:fade-in;animation-duration:.25s;animation-fill-mode:forwards}[data-shiny-busy-spinners] .recalculating:has(>*),[data-shiny-busy-spinners] .recalculating:empty{opacity:1}[data-shiny-busy-spinners] .recalculating>*:not(.recalculating){opacity:var(--_shiny-fade-opacity);transition:opacity .25s ease var(--shiny-spinner-delay, 1s)}[data-shiny-busy-spinners] .recalculating.shiny-html-output:after{display:none}[data-shiny-busy-spinners][data-shiny-busy-pulse].shiny-busy:after{--_shiny-pulse-background: var( --shiny-pulse-background, linear-gradient( 120deg, transparent, var(--bs-indigo, #4b00c1), var(--bs-purple, #74149c), var(--bs-pink, #bf007f), transparent ) );--_shiny-pulse-height: var(--shiny-pulse-height, 3px);--_shiny-pulse-speed: var(--shiny-pulse-speed, 1.2s);position:fixed;top:0;left:0;height:var(--_shiny-pulse-height);background:var(--_shiny-pulse-background);z-index:9999;animation-name:busy-page-pulse;animation-duration:var(--_shiny-pulse-speed);animation-direction:alternate;animation-iteration-count:infinite;animation-timing-function:ease-in-out;content:""}[data-shiny-busy-spinners][data-shiny-busy-pulse].shiny-busy:has(.recalculating:not(.shiny-html-output)):after{display:none}[data-shiny-busy-spinners][data-shiny-busy-pulse].shiny-busy:has(#shiny-disconnected-overlay):after{display:none}[data-shiny-busy-pulse]:not([data-shiny-busy-spinners]).shiny-busy:after{--_shiny-pulse-background: var( --shiny-pulse-background, linear-gradient( 120deg, transparent, var(--bs-indigo, #4b00c1), var(--bs-purple, #74149c), var(--bs-pink, #bf007f), transparent ) );--_shiny-pulse-height: var(--shiny-pulse-height, 3px);--_shiny-pulse-speed: var(--shiny-pulse-speed, 1.2s);position:fixed;top:0;left:0;height:var(--_shiny-pulse-height);background:var(--_shiny-pulse-background);z-index:9999;animation-name:busy-page-pulse;animation-duration:var(--_shiny-pulse-speed);animation-direction:alternate;animation-iteration-count:infinite;animation-timing-function:ease-in-out;content:""}[data-shiny-busy-pulse]:not([data-shiny-busy-spinners]).shiny-busy:has(#shiny-disconnected-overlay):after{display:none}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes busy-page-pulse{0%{left:-14%;right:97%}45%{left:0%;right:14%}55%{left:14%;right:0%}to{left:97%;right:-14%}}.shiny-spinner-output-container{--shiny-spinner-size: 0px} diff --git a/inst/www/shared/shiny-autoreload.js b/inst/www/shared/shiny-autoreload.js index 131bc6e6a..f0bfc42e4 100644 --- a/inst/www/shared/shiny-autoreload.js +++ b/inst/www/shared/shiny-autoreload.js @@ -1,4 +1,4 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict";(function(){var Fl=Object.create;var li=Object.defineProperty;var $l=Object.getOwnPropertyDescriptor;var Ul=Object.getOwnPropertyNames;var Gl=Object.getPrototypeOf,Bl=Object.prototype.hasOwnProperty;var i=function(r,e){return function(){return e||r((e={exports:{}}).exports,e),e.exports}};var kl=function(r,e,t,n){if(e&&typeof e=="object"||typeof e=="function")for(var a=Ul(e),o=0,v=a.length,u;o0&&H[0]<4?1:+(H[0]+H[1]));!Ne&&Ft&&(H=Ft.match(/Edge\/(\d+)/),(!H||H[1]>=74)&&(H=Ft.match(/Chrome\/(\d+)/),H&&(Ne=+H[1])));Yi.exports=Ne});var pr=i(function(HI,Hi){var Wi=Qr(),fp=w();Hi.exports=!!Object.getOwnPropertySymbols&&!fp(function(){var r=Symbol();return!String(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&&Wi&&Wi<41})});var $t=i(function(JI,Ji){var lp=pr();Ji.exports=lp&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Zr=i(function(zI,zi){var pp=Y(),yp=P(),dp=_r(),qp=$t(),hp=Object;zi.exports=qp?function(r){return typeof r=="symbol"}:function(r){var e=pp("Symbol");return yp(e)&&dp(e.prototype,hp(r))}});var Cr=i(function(XI,Xi){var gp=String;Xi.exports=function(r){try{return gp(r)}catch(e){return"Object"}}});var rr=i(function(QI,Qi){var Sp=P(),bp=Cr(),mp=TypeError;Qi.exports=function(r){if(Sp(r))return r;throw mp(bp(r)+" is not a function")}});var re=i(function(ZI,Zi){var Op=rr(),Ep=xr();Zi.exports=function(r,e){var t=r[e];return Ep(t)?void 0:Op(t)}});var eo=i(function(rT,ro){var Ut=A(),Gt=P(),Bt=V(),Ip=TypeError;ro.exports=function(r,e){var t,n;if(e==="string"&&Gt(t=r.toString)&&!Bt(n=Ut(t,r))||Gt(t=r.valueOf)&&!Bt(n=Ut(t,r))||e!=="string"&&Gt(t=r.toString)&&!Bt(n=Ut(t,r)))return n;throw Ip("Can't convert object to primitive value")}});var z=i(function(eT,to){to.exports=!1});var Ae=i(function(tT,ao){var no=x(),Tp=Object.defineProperty;ao.exports=function(r,e){try{Tp(no,r,{value:e,configurable:!0,writable:!0})}catch(t){no[r]=e}return e}});var je=i(function(nT,oo){var Pp=x(),wp=Ae(),io="__core-js_shared__",Rp=Pp[io]||wp(io,{});oo.exports=Rp});var yr=i(function(aT,vo){var xp=z(),uo=je();(vo.exports=function(r,e){return uo[r]||(uo[r]=e!==void 0?e:{})})("versions",[]).push({version:"3.29.0",mode:xp?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var or=i(function(iT,so){var _p=zr(),Cp=Object;so.exports=function(r){return Cp(_p(r))}});var D=i(function(oT,co){var Np=R(),Ap=or(),jp=Np({}.hasOwnProperty);co.exports=Object.hasOwn||function(e,t){return jp(Ap(e),t)}});var De=i(function(uT,fo){var Dp=R(),Lp=0,Mp=Math.random(),Fp=Dp(1 .toString);fo.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+Fp(++Lp+Mp,36)}});var _=i(function(vT,po){var $p=x(),Up=yr(),lo=D(),Gp=De(),Bp=pr(),kp=$t(),Nr=$p.Symbol,kt=Up("wks"),Kp=kp?Nr.for||Nr:Nr&&Nr.withoutSetter||Gp;po.exports=function(r){return lo(kt,r)||(kt[r]=Bp&&lo(Nr,r)?Nr[r]:Kp("Symbol."+r)),kt[r]}});var go=i(function(sT,ho){var Vp=A(),yo=V(),qo=Zr(),Yp=re(),Wp=eo(),Hp=_(),Jp=TypeError,zp=Hp("toPrimitive");ho.exports=function(r,e){if(!yo(r)||qo(r))return r;var t=Yp(r,zp),n;if(t){if(e===void 0&&(e="default"),n=Vp(t,r,e),!yo(n)||qo(n))return n;throw Jp("Can't convert object to primitive value")}return e===void 0&&(e="number"),Wp(r,e)}});var ee=i(function(cT,So){var Xp=go(),Qp=Zr();So.exports=function(r){var e=Xp(r,"string");return Qp(e)?e:e+""}});var te=i(function(fT,mo){var Zp=x(),bo=V(),Kt=Zp.document,ry=bo(Kt)&&bo(Kt.createElement);mo.exports=function(r){return ry?Kt.createElement(r):{}}});var Vt=i(function(lT,Oo){var ey=M(),ty=w(),ny=te();Oo.exports=!ey&&!ty(function(){return Object.defineProperty(ny("div"),"a",{get:function(){return 7}}).a!=7})});var ne=i(function(Io){var ay=M(),iy=A(),oy=Ct(),uy=Rr(),vy=Z(),sy=ee(),cy=D(),fy=Vt(),Eo=Object.getOwnPropertyDescriptor;Io.f=ay?Eo:function(e,t){if(e=vy(e),t=sy(t),fy)try{return Eo(e,t)}catch(n){}if(cy(e,t))return uy(!iy(oy.f,e,t),e[t])}});var Yt=i(function(yT,To){var ly=M(),py=w();To.exports=ly&&py(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42})});var F=i(function(dT,Po){var yy=V(),dy=String,qy=TypeError;Po.exports=function(r){if(yy(r))return r;throw qy(dy(r)+" is not an object")}});var B=i(function(Ro){var hy=M(),gy=Vt(),Sy=Yt(),Le=F(),wo=ee(),by=TypeError,Wt=Object.defineProperty,my=Object.getOwnPropertyDescriptor,Ht="enumerable",Jt="configurable",zt="writable";Ro.f=hy?Sy?function(e,t,n){if(Le(e),t=wo(t),Le(n),typeof e=="function"&&t==="prototype"&&"value"in n&&zt in n&&!n[zt]){var a=my(e,t);a&&a[zt]&&(e[t]=n.value,n={configurable:Jt in n?n[Jt]:a[Jt],enumerable:Ht in n?n[Ht]:a[Ht],writable:!1})}return Wt(e,t,n)}:Wt:function(e,t,n){if(Le(e),t=wo(t),Le(n),gy)try{return Wt(e,t,n)}catch(a){}if("get"in n||"set"in n)throw by("Accessors not supported");return"value"in n&&(e[t]=n.value),e}});var dr=i(function(hT,xo){var Oy=M(),Ey=B(),Iy=Rr();xo.exports=Oy?function(r,e,t){return Ey.f(r,e,Iy(1,t))}:function(r,e,t){return r[e]=t,r}});var Me=i(function(gT,Co){var Xt=M(),Ty=D(),_o=Function.prototype,Py=Xt&&Object.getOwnPropertyDescriptor,Qt=Ty(_o,"name"),wy=Qt&&function(){}.name==="something",Ry=Qt&&(!Xt||Xt&&Py(_o,"name").configurable);Co.exports={EXISTS:Qt,PROPER:wy,CONFIGURABLE:Ry}});var Fe=i(function(ST,No){var xy=R(),_y=P(),Zt=je(),Cy=xy(Function.toString);_y(Zt.inspectSource)||(Zt.inspectSource=function(r){return Cy(r)});No.exports=Zt.inspectSource});var Do=i(function(bT,jo){var Ny=x(),Ay=P(),Ao=Ny.WeakMap;jo.exports=Ay(Ao)&&/native code/.test(String(Ao))});var ae=i(function(mT,Mo){var jy=yr(),Dy=De(),Lo=jy("keys");Mo.exports=function(r){return Lo[r]||(Lo[r]=Dy(r))}});var ie=i(function(OT,Fo){Fo.exports={}});var hr=i(function(ET,Go){var Ly=Do(),Uo=x(),My=V(),Fy=dr(),rn=D(),en=je(),$y=ae(),Uy=ie(),$o="Object already initialized",tn=Uo.TypeError,Gy=Uo.WeakMap,$e,oe,Ue,By=function(r){return Ue(r)?oe(r):$e(r,{})},ky=function(r){return function(e){var t;if(!My(e)||(t=oe(e)).type!==r)throw tn("Incompatible receiver, "+r+" required");return t}};Ly||en.state?(J=en.state||(en.state=new Gy),J.get=J.get,J.has=J.has,J.set=J.set,$e=function(r,e){if(J.has(r))throw tn($o);return e.facade=r,J.set(r,e),e},oe=function(r){return J.get(r)||{}},Ue=function(r){return J.has(r)}):(qr=$y("state"),Uy[qr]=!0,$e=function(r,e){if(rn(r,qr))throw tn($o);return e.facade=r,Fy(r,qr,e),e},oe=function(r){return rn(r,qr)?r[qr]:{}},Ue=function(r){return rn(r,qr)});var J,qr;Go.exports={set:$e,get:oe,has:Ue,enforce:By,getterFor:ky}});var on=i(function(IT,Ko){var an=R(),Ky=w(),Vy=P(),Ge=D(),nn=M(),Yy=Me().CONFIGURABLE,Wy=Fe(),ko=hr(),Hy=ko.enforce,Jy=ko.get,Bo=String,Be=Object.defineProperty,zy=an("".slice),Xy=an("".replace),Qy=an([].join),Zy=nn&&!Ky(function(){return Be(function(){},"length",{value:8}).length!==8}),rd=String(String).split("String"),ed=Ko.exports=function(r,e,t){zy(Bo(e),0,7)==="Symbol("&&(e="["+Xy(Bo(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(e="get "+e),t&&t.setter&&(e="set "+e),(!Ge(r,"name")||Yy&&r.name!==e)&&(nn?Be(r,"name",{value:e,configurable:!0}):r.name=e),Zy&&t&&Ge(t,"arity")&&r.length!==t.arity&&Be(r,"length",{value:t.arity});try{t&&Ge(t,"constructor")&&t.constructor?nn&&Be(r,"prototype",{writable:!1}):r.prototype&&(r.prototype=void 0)}catch(a){}var n=Hy(r);return Ge(n,"source")||(n.source=Qy(rd,typeof e=="string"?e:"")),r};Function.prototype.toString=ed(function(){return Vy(this)&&Jy(this).source||Wy(this)},"toString")});var X=i(function(TT,Vo){var td=P(),nd=B(),ad=on(),id=Ae();Vo.exports=function(r,e,t,n){n||(n={});var a=n.enumerable,o=n.name!==void 0?n.name:e;if(td(t)&&ad(t,o,n),n.global)a?r[e]=t:id(e,t);else{try{n.unsafe?r[e]&&(a=!0):delete r[e]}catch(v){}a?r[e]=t:nd.f(r,e,{value:t,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return r}});var Wo=i(function(PT,Yo){var od=Math.ceil,ud=Math.floor;Yo.exports=Math.trunc||function(e){var t=+e;return(t>0?ud:od)(t)}});var ue=i(function(wT,Ho){var vd=Wo();Ho.exports=function(r){var e=+r;return e!==e||e===0?0:vd(e)}});var ke=i(function(RT,Jo){var sd=ue(),cd=Math.max,fd=Math.min;Jo.exports=function(r,e){var t=sd(r);return t<0?cd(t+e,0):fd(t,e)}});var un=i(function(xT,zo){var ld=ue(),pd=Math.min;zo.exports=function(r){return r>0?pd(ld(r),9007199254740991):0}});var gr=i(function(_T,Xo){var yd=un();Xo.exports=function(r){return yd(r.length)}});var ru=i(function(CT,Zo){var dd=Z(),qd=ke(),hd=gr(),Qo=function(r){return function(e,t,n){var a=dd(e),o=hd(a),v=qd(n,o),u;if(r&&t!=t){for(;o>v;)if(u=a[v++],u!=u)return!0}else for(;o>v;v++)if((r||v in a)&&a[v]===t)return r||v||0;return!r&&-1}};Zo.exports={includes:Qo(!0),indexOf:Qo(!1)}});var sn=i(function(NT,tu){var gd=R(),vn=D(),Sd=Z(),bd=ru().indexOf,md=ie(),eu=gd([].push);tu.exports=function(r,e){var t=Sd(r),n=0,a=[],o;for(o in t)!vn(md,o)&&vn(t,o)&&eu(a,o);for(;e.length>n;)vn(t,o=e[n++])&&(~bd(a,o)||eu(a,o));return a}});var Ke=i(function(AT,nu){nu.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Ve=i(function(au){var Od=sn(),Ed=Ke(),Id=Ed.concat("length","prototype");au.f=Object.getOwnPropertyNames||function(e){return Od(e,Id)}});var Ye=i(function(iu){iu.f=Object.getOwnPropertySymbols});var uu=i(function(LT,ou){var Td=Y(),Pd=R(),wd=Ve(),Rd=Ye(),xd=F(),_d=Pd([].concat);ou.exports=Td("Reflect","ownKeys")||function(e){var t=wd.f(xd(e)),n=Rd.f;return n?_d(t,n(e)):t}});var cn=i(function(MT,su){var vu=D(),Cd=uu(),Nd=ne(),Ad=B();su.exports=function(r,e,t){for(var n=Cd(e),a=Ad.f,o=Nd.f,v=0;vv;)lq.f(e,u=a[v++],n[u]);return e}});var gn=i(function(WT,Ou){var qq=Y();Ou.exports=qq("document","documentElement")});var Ar=i(function(HT,xu){var hq=F(),gq=hn(),Eu=Ke(),Sq=ie(),bq=gn(),mq=te(),Oq=ae(),Iu=">",Tu="<",bn="prototype",mn="script",wu=Oq("IE_PROTO"),Sn=function(){},Ru=function(r){return Tu+mn+Iu+r+Tu+"/"+mn+Iu},Pu=function(r){r.write(Ru("")),r.close();var e=r.parentWindow.Object;return r=null,e},Eq=function(){var r=mq("iframe"),e="java"+mn+":",t;return r.style.display="none",bq.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(Ru("document.F=Object")),t.close(),t.F},Je,ze=function(){try{Je=new ActiveXObject("htmlfile")}catch(e){}ze=typeof document!="undefined"?document.domain&&Je?Pu(Je):Eq():Pu(Je);for(var r=Eu.length;r--;)delete ze[bn][Eu[r]];return ze()};Sq[wu]=!0;xu.exports=Object.create||function(e,t){var n;return e!==null?(Sn[bn]=hq(e),n=new Sn,Sn[bn]=null,n[wu]=e):n=ze(),t===void 0?n:gq.f(n,t)}});var Cu=i(function(JT,_u){var Iq=w(),Tq=x(),Pq=Tq.RegExp;_u.exports=Iq(function(){var r=Pq(".","s");return!(r.dotAll&&r.exec("\n")&&r.flags==="s")})});var Au=i(function(zT,Nu){var wq=w(),Rq=x(),xq=Rq.RegExp;Nu.exports=wq(function(){var r=xq("(?b)","g");return r.exec("b").groups.a!=="b"||"b".replace(r,"$c")!=="bc"})});var Ze=i(function(XT,Du){"use strict";var jr=A(),Qe=R(),_q=er(),Cq=hu(),Nq=Su(),Aq=yr(),jq=Ar(),Dq=hr().get,Lq=Cu(),Mq=Au(),Fq=Aq("native-string-replace",String.prototype.replace),Xe=RegExp.prototype.exec,En=Xe,$q=Qe("".charAt),Uq=Qe("".indexOf),Gq=Qe("".replace),On=Qe("".slice),In=function(){var r=/a/,e=/b*/g;return jr(Xe,r,"a"),jr(Xe,e,"a"),r.lastIndex!==0||e.lastIndex!==0}(),ju=Nq.BROKEN_CARET,Tn=/()??/.exec("")[1]!==void 0,Bq=In||Tn||ju||Lq||Mq;Bq&&(En=function(e){var t=this,n=Dq(t),a=_q(e),o=n.raw,v,u,c,f,y,S,m;if(o)return o.lastIndex=t.lastIndex,v=jr(En,o,a),t.lastIndex=o.lastIndex,v;var h=n.groups,O=ju&&t.sticky,I=jr(Cq,t),E=t.source,T=0,b=a;if(O&&(I=Gq(I,"y",""),Uq(I,"g")===-1&&(I+="g"),b=On(a,t.lastIndex),t.lastIndex>0&&(!t.multiline||t.multiline&&$q(a,t.lastIndex-1)!=="\n")&&(E="(?: "+E+")",b=" "+b,T++),u=new RegExp("^(?:"+E+")",I)),Tn&&(u=new RegExp("^"+E+"$(?!\\s)",I)),In&&(c=t.lastIndex),f=jr(Xe,O?u:t,b),O?f?(f.input=On(f.input,T),f[0]=On(f[0],T),f.index=t.lastIndex,t.lastIndex+=f[0].length):t.lastIndex=0:In&&f&&(t.lastIndex=t.global?f.index+f[0].length:c),Tn&&f&&f.length>1&&jr(Fq,f[0],u,function(){for(y=1;y=o?r?"":void 0:(v=Hu(n,a),v<55296||v>56319||a+1===o||(u=Hu(n,a+1))<56320||u>57343?r?Zq(n,a):v:r?rh(n,a,a+2):(v-55296<<10)+(u-56320)+65536)}};zu.exports={codeAt:Ju(!1),charAt:Ju(!0)}});var Qu=i(function(aP,Xu){"use strict";var eh=_n().charAt;Xu.exports=function(r,e,t){return e+(t?eh(r,e).length:1)}});var rv=i(function(iP,Zu){var An=R(),th=or(),nh=Math.floor,Cn=An("".charAt),ah=An("".replace),Nn=An("".slice),ih=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,oh=/\$([$&'`]|\d{1,2})/g;Zu.exports=function(r,e,t,n,a,o){var v=t+r.length,u=n.length,c=oh;return a!==void 0&&(a=th(a),c=ih),ah(o,c,function(f,y){var S;switch(Cn(y,0)){case"$":return"$";case"&":return r;case"`":return Nn(e,0,t);case"'":return Nn(e,v);case"<":S=a[Nn(y,1,-1)];break;default:var m=+y;if(m===0)return f;if(m>u){var h=nh(m/10);return h===0?f:h<=u?n[h-1]===void 0?Cn(y,1):n[h-1]+Cn(y,1):f}S=n[m-1]}return S===void 0?"":S})}});var nv=i(function(oP,tv){var ev=A(),uh=F(),vh=P(),sh=Q(),ch=Ze(),fh=TypeError;tv.exports=function(r,e){var t=r.exec;if(vh(t)){var n=ev(t,r,e);return n!==null&&uh(n),n}if(sh(r)==="RegExp")return ev(ch,r,e);throw fh("RegExp#exec called on incompatible receiver")}});var Lr=i(function(uP,vv){var Nh=Q();vv.exports=Array.isArray||function(e){return Nh(e)=="Array"}});var cv=i(function(vP,sv){var Ah=TypeError,jh=9007199254740991;sv.exports=function(r){if(r>jh)throw Ah("Maximum allowed index exceeded");return r}});var tt=i(function(sP,fv){"use strict";var Dh=ee(),Lh=B(),Mh=Rr();fv.exports=function(r,e,t){var n=Dh(e);n in r?Lh.f(r,n,Mh(0,t)):r[n]=t}});var nt=i(function(cP,qv){var Fh=R(),$h=w(),lv=P(),Uh=se(),Gh=Y(),Bh=Fe(),pv=function(){},kh=[],yv=Gh("Reflect","construct"),Ln=/^\s*(?:class|function)\b/,Kh=Fh(Ln.exec),Vh=!Ln.exec(pv),ce=function(e){if(!lv(e))return!1;try{return yv(pv,kh,e),!0}catch(t){return!1}},dv=function(e){if(!lv(e))return!1;switch(Uh(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Vh||!!Kh(Ln,Bh(e))}catch(t){return!0}};dv.sham=!0;qv.exports=!yv||$h(function(){var r;return ce(ce.call)||!ce(Object)||!ce(function(){r=!0})||r})?dv:ce});var bv=i(function(fP,Sv){var hv=Lr(),Yh=nt(),Wh=V(),Hh=_(),Jh=Hh("species"),gv=Array;Sv.exports=function(r){var e;return hv(r)&&(e=r.constructor,Yh(e)&&(e===gv||hv(e.prototype))?e=void 0:Wh(e)&&(e=e[Jh],e===null&&(e=void 0))),e===void 0?gv:e}});var Mn=i(function(lP,mv){var zh=bv();mv.exports=function(r,e){return new(zh(r))(e===0?0:e)}});var Fn=i(function(pP,Ov){var Xh=w(),Qh=_(),Zh=Qr(),rg=Qh("species");Ov.exports=function(r){return Zh>=51||!Xh(function(){var e=[],t=e.constructor={};return t[rg]=function(){return{foo:1}},e[r](Boolean).foo!==1})}});var wv=i(function(yP,Pv){"use strict";var yg=We(),dg=se();Pv.exports=yg?{}.toString:function(){return"[object "+dg(this)+"]"}});var fe=i(function(dP,Rv){var Sg=Q();Rv.exports=typeof process!="undefined"&&Sg(process)=="process"});var _v=i(function(qP,xv){var bg=R(),mg=rr();xv.exports=function(r,e,t){try{return bg(mg(Object.getOwnPropertyDescriptor(r,e)[t]))}catch(n){}}});var Nv=i(function(hP,Cv){var Og=P(),Eg=String,Ig=TypeError;Cv.exports=function(r){if(typeof r=="object"||Og(r))return r;throw Ig("Can't set "+Eg(r)+" as a prototype")}});var at=i(function(gP,Av){var Tg=_v(),Pg=F(),wg=Nv();Av.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r=!1,e={},t;try{t=Tg(Object.prototype,"__proto__","set"),t(e,[]),r=e instanceof Array}catch(n){}return function(a,o){return Pg(a),wg(o),r?t(a,o):a.__proto__=o,a}}():void 0)});var ur=i(function(SP,Dv){var Rg=B().f,xg=D(),_g=_(),jv=_g("toStringTag");Dv.exports=function(r,e,t){r&&!t&&(r=r.prototype),r&&!xg(r,jv)&&Rg(r,jv,{configurable:!0,value:e})}});var le=i(function(bP,Mv){var Lv=on(),Cg=B();Mv.exports=function(r,e,t){return t.get&&Lv(t.get,e,{getter:!0}),t.set&&Lv(t.set,e,{setter:!0}),Cg.f(r,e,t)}});var Uv=i(function(mP,$v){"use strict";var Ng=Y(),Ag=le(),jg=_(),Dg=M(),Fv=jg("species");$v.exports=function(r){var e=Ng(r);Dg&&e&&!e[Fv]&&Ag(e,Fv,{configurable:!0,get:function(){return this}})}});var Bv=i(function(OP,Gv){var Lg=_r(),Mg=TypeError;Gv.exports=function(r,e){if(Lg(e,r))return r;throw Mg("Incorrect invocation")}});var Kv=i(function(EP,kv){var Fg=nt(),$g=Cr(),Ug=TypeError;kv.exports=function(r){if(Fg(r))return r;throw Ug($g(r)+" is not a constructor")}});var Wv=i(function(IP,Yv){var Vv=F(),Gg=Kv(),Bg=xr(),kg=_(),Kg=kg("species");Yv.exports=function(r,e){var t=Vv(r).constructor,n;return t===void 0||Bg(n=Vv(t)[Kg])?e:Gg(n)}});var pe=i(function(TP,Jv){var Hv=wn(),Vg=rr(),Yg=Jr(),Wg=Hv(Hv.bind);Jv.exports=function(r,e){return Vg(r),e===void 0?r:Yg?Wg(r,e):function(){return r.apply(e,arguments)}}});var it=i(function(PP,zv){var Hg=R();zv.exports=Hg([].slice)});var Qv=i(function(wP,Xv){var Jg=TypeError;Xv.exports=function(r,e){if(rS;S++)if(h=T(r[S]),h&&cc(lc,h))return h;return new dt(!1)}f=Sb(r,y)}for(O=o?r.next:f.next;!(I=yb(O,f)).done;){try{h=T(I.value)}catch(b){fc(f,"throw",b)}if(typeof h=="object"&&h&&cc(lc,h))return h}return new dt(!1)}});var gc=i(function(JP,hc){var Ob=_(),dc=Ob("iterator"),qc=!1;try{yc=0,ya={next:function(){return{done:!!yc++}},return:function(){qc=!0}},ya[dc]=function(){return this},Array.from(ya,function(){throw 2})}catch(r){}var yc,ya;hc.exports=function(r,e){if(!e&&!qc)return!1;var t=!1;try{var n={};n[dc]=function(){return{next:function(){return{done:t=!0}}}},r(n)}catch(a){}return t}});var da=i(function(zP,Sc){var Eb=Fr(),Ib=gc(),Tb=$r().CONSTRUCTOR;Sc.exports=Tb||!Ib(function(r){Eb.all(r).then(void 0,function(){})})});var bc=i(function(){"use strict";var Pb=C(),wb=A(),Rb=rr(),xb=Ur(),_b=vt(),Cb=pa(),Nb=da();Pb({target:"Promise",stat:!0,forced:Nb},{all:function(e){var t=this,n=xb.f(t),a=n.resolve,o=n.reject,v=_b(function(){var u=Rb(t.resolve),c=[],f=0,y=1;Cb(e,function(S){var m=f++,h=!1;y++,wb(u,t,S).then(function(O){h||(h=!0,c[m]=O,--y||a(c))},o)}),--y||a(c)});return v.error&&o(v.value),n.promise}})});var Oc=i(function(){"use strict";var Ab=C(),jb=z(),Db=$r().CONSTRUCTOR,ha=Fr(),Lb=Y(),Mb=P(),Fb=X(),mc=ha&&ha.prototype;Ab({target:"Promise",proto:!0,forced:Db,real:!0},{catch:function(r){return this.then(void 0,r)}});!jb&&Mb(ha)&&(qa=Lb("Promise").prototype.catch,mc.catch!==qa&&Fb(mc,"catch",qa,{unsafe:!0}));var qa});var Ec=i(function(){"use strict";var $b=C(),Ub=A(),Gb=rr(),Bb=Ur(),kb=vt(),Kb=pa(),Vb=da();$b({target:"Promise",stat:!0,forced:Vb},{race:function(e){var t=this,n=Bb.f(t),a=n.reject,o=kb(function(){var v=Gb(t.resolve);Kb(e,function(u){Ub(v,t,u).then(n.resolve,a)})});return o.error&&a(o.value),n.promise}})});var Ic=i(function(){"use strict";var Yb=C(),Wb=A(),Hb=Ur(),Jb=$r().CONSTRUCTOR;Yb({target:"Promise",stat:!0,forced:Jb},{reject:function(e){var t=Hb.f(this);return Wb(t.reject,void 0,e),t.promise}})});var Pc=i(function(iw,Tc){var zb=F(),Xb=V(),Qb=Ur();Tc.exports=function(r,e){if(zb(r),Xb(e)&&e.constructor===r)return e;var t=Qb.f(r),n=t.resolve;return n(e),t.promise}});var xc=i(function(){"use strict";var Zb=C(),rm=Y(),wc=z(),em=Fr(),Rc=$r().CONSTRUCTOR,tm=Pc(),nm=rm("Promise"),am=wc&&!Rc;Zb({target:"Promise",stat:!0,forced:wc||Rc},{resolve:function(e){return tm(am&&this===nm?em:this,e)}})});var Ac=i(function(vw,Nc){var Cc=ke(),um=gr(),vm=tt(),sm=Array,cm=Math.max;Nc.exports=function(r,e,t){for(var n=um(r),a=Cc(e,n),o=Cc(t===void 0?n:t,n),v=sm(cm(o-a,0)),u=0;aE;E++)if((u||E in h)&&($=h[E],K=O($,E,m),r))if(e)b[E]=K;else if(K)switch(r){case 3:return!0;case 5:return $;case 6:return E;case 2:Vc(b,$)}else switch(r){case 4:return!1;case 7:Vc(b,$)}return o?-1:n||a?a:b}};Yc.exports={forEach:sr(0),map:sr(1),filter:sr(2),some:sr(3),every:sr(4),find:sr(5),findIndex:sr(6),filterReject:sr(7)}});var sf=i(function(){"use strict";var qt=C(),Ra=x(),xa=A(),_m=R(),Cm=z(),Yr=M(),Wr=pr(),Nm=w(),j=D(),Am=_r(),Ea=F(),ht=Z(),_a=ee(),jm=er(),Ia=Rr(),me=Ar(),Jc=qn(),Dm=Ve(),zc=Mc(),Lm=Ye(),Xc=ne(),Qc=B(),Mm=hn(),Zc=Ct(),ba=X(),Fm=le(),Ca=yr(),$m=ae(),rf=ie(),Wc=De(),Um=_(),Gm=ga(),Bm=Se(),km=Kc(),Km=ur(),ef=hr(),gt=Sa().forEach,G=$m("hidden"),St="Symbol",Oe="prototype",Vm=ef.set,Hc=ef.getterFor(St),W=Object[Oe],Er=Ra.Symbol,be=Er&&Er[Oe],Ym=Ra.TypeError,ma=Ra.QObject,tf=Xc.f,Or=Qc.f,nf=zc.f,Wm=Zc.f,af=_m([].push),tr=Ca("symbols"),Ee=Ca("op-symbols"),Hm=Ca("wks"),Ta=!ma||!ma[Oe]||!ma[Oe].findChild,Pa=Yr&&Nm(function(){return me(Or({},"a",{get:function(){return Or(this,"a",{value:7}).a}})).a!=7})?function(r,e,t){var n=tf(W,e);n&&delete W[e],Or(r,e,t),n&&r!==W&&Or(W,e,n)}:Or,Oa=function(r,e){var t=tr[r]=me(be);return Vm(t,{type:St,tag:r,description:e}),Yr||(t.description=e),t},bt=function(e,t,n){e===W&&bt(Ee,t,n),Ea(e);var a=_a(t);return Ea(n),j(tr,a)?(n.enumerable?(j(e,G)&&e[G][a]&&(e[G][a]=!1),n=me(n,{enumerable:Ia(0,!1)})):(j(e,G)||Or(e,G,Ia(1,{})),e[G][a]=!0),Pa(e,a,n)):Or(e,a,n)},Na=function(e,t){Ea(e);var n=ht(t),a=Jc(n).concat(vf(n));return gt(a,function(o){(!Yr||xa(wa,n,o))&&bt(e,o,n[o])}),e},Jm=function(e,t){return t===void 0?me(e):Na(me(e),t)},wa=function(e){var t=_a(e),n=xa(Wm,this,t);return this===W&&j(tr,t)&&!j(Ee,t)?!1:n||!j(this,t)||!j(tr,t)||j(this,G)&&this[G][t]?n:!0},of=function(e,t){var n=ht(e),a=_a(t);if(!(n===W&&j(tr,a)&&!j(Ee,a))){var o=tf(n,a);return o&&j(tr,a)&&!(j(n,G)&&n[G][a])&&(o.enumerable=!0),o}},uf=function(e){var t=nf(ht(e)),n=[];return gt(t,function(a){!j(tr,a)&&!j(rf,a)&&af(n,a)}),n},vf=function(r){var e=r===W,t=nf(e?Ee:ht(r)),n=[];return gt(t,function(a){j(tr,a)&&(!e||j(W,a))&&af(n,tr[a])}),n};Wr||(Er=function(){if(Am(be,this))throw Ym("Symbol is not a constructor");var e=!arguments.length||arguments[0]===void 0?void 0:jm(arguments[0]),t=Wc(e),n=function(a){this===W&&xa(n,Ee,a),j(this,G)&&j(this[G],t)&&(this[G][t]=!1),Pa(this,t,Ia(1,a))};return Yr&&Ta&&Pa(W,t,{configurable:!0,set:n}),Oa(t,e)},be=Er[Oe],ba(be,"toString",function(){return Hc(this).tag}),ba(Er,"withoutSetter",function(r){return Oa(Wc(r),r)}),Zc.f=wa,Qc.f=bt,Mm.f=Na,Xc.f=of,Dm.f=zc.f=uf,Lm.f=vf,Gm.f=function(r){return Oa(Um(r),r)},Yr&&(Fm(be,"description",{configurable:!0,get:function(){return Hc(this).description}}),Cm||ba(W,"propertyIsEnumerable",wa,{unsafe:!0})));qt({global:!0,constructor:!0,wrap:!0,forced:!Wr,sham:!Wr},{Symbol:Er});gt(Jc(Hm),function(r){Bm(r)});qt({target:St,stat:!0,forced:!Wr},{useSetter:function(){Ta=!0},useSimple:function(){Ta=!1}});qt({target:"Object",stat:!0,forced:!Wr,sham:!Yr},{create:Jm,defineProperty:bt,defineProperties:Na,getOwnPropertyDescriptor:of});qt({target:"Object",stat:!0,forced:!Wr},{getOwnPropertyNames:uf});km();Km(Er,St);rf[G]=!0});var Aa=i(function(hw,cf){var zm=pr();cf.exports=zm&&!!Symbol.for&&!!Symbol.keyFor});var lf=i(function(){var Xm=C(),Qm=Y(),Zm=D(),rO=er(),ff=yr(),eO=Aa(),ja=ff("string-to-symbol-registry"),tO=ff("symbol-to-string-registry");Xm({target:"Symbol",stat:!0,forced:!eO},{for:function(r){var e=rO(r);if(Zm(ja,e))return ja[e];var t=Qm("Symbol")(e);return ja[e]=t,tO[t]=e,t}})});var yf=i(function(){var nO=C(),aO=D(),iO=Zr(),oO=Cr(),uO=yr(),vO=Aa(),pf=uO("symbol-to-string-registry");nO({target:"Symbol",stat:!0,forced:!vO},{keyFor:function(e){if(!iO(e))throw TypeError(oO(e)+" is not a symbol");if(aO(pf,e))return pf[e]}})});var Sf=i(function(Ow,gf){var sO=R(),df=Lr(),cO=P(),qf=Q(),fO=er(),hf=sO([].push);gf.exports=function(r){if(cO(r))return r;if(!!df(r)){for(var e=r.length,t=[],n=0;n=e.length?(r.target=void 0,Pt(void 0,!0)):t=="keys"?Pt(n,!1):t=="values"?Pt(e[n],!1):Pt([n,e[n]],!1)},"values");var vl=ul.Arguments=ul.Array;Wa("keys");Wa("values");Wa("entries");if(!bE&&mE&&vl.name!=="values")try{gE(vl,"name",{value:"values"})}catch(r){}});var Ja=i(function(Dw,dl){dl.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}});var Xa=i(function(Lw,hl){var xE=te(),za=xE("span").classList,ql=za&&za.constructor&&za.constructor.prototype;hl.exports=ql===Object.prototype?void 0:ql});var Tl=i(function(Mw,Il){"use strict";var kE=w();Il.exports=function(r,e){var t=[][r];return!!t&&kE(function(){t.call(null,e||function(){return 1},1)})}});var ei=i(function(Fw,Pl){"use strict";var KE=Sa().forEach,VE=Tl(),YE=VE("forEach");Pl.exports=YE?[].forEach:function(e){return KE(this,e,arguments.length>1?arguments[1]:void 0)}});var $w=pi(Pn());var lh=rt(),av=A(),et=R(),ph=Wu(),yh=w(),dh=F(),qh=P(),hh=xr(),gh=ue(),Sh=un(),Dr=er(),bh=zr(),mh=Qu(),Oh=re(),Eh=rv(),Ih=nv(),Th=_(),Dn=Th("replace"),Ph=Math.max,wh=Math.min,Rh=et([].concat),jn=et([].push),iv=et("".indexOf),ov=et("".slice),xh=function(r){return r===void 0?r:String(r)},_h=function(){return"a".replace(/./,"$0")==="$0"}(),uv=function(){return/./[Dn]?/./[Dn]("a","$0")==="":!1}(),Ch=!yh(function(){var r=/./;return r.exec=function(){var e=[];return e.groups={a:"7"},e},"".replace(r,"$")!=="7"});ph("replace",function(r,e,t){var n=uv?"$":"$0";return[function(o,v){var u=bh(this),c=hh(o)?void 0:Oh(o,Dn);return c?av(c,o,u,v):av(e,Dr(u),o,v)},function(a,o){var v=dh(this),u=Dr(a);if(typeof o=="string"&&iv(o,n)===-1&&iv(o,"$<")===-1){var c=t(e,v,u,o);if(c.done)return c.value}var f=qh(o);f||(o=Dr(o));var y=v.global;if(y){var S=v.unicode;v.lastIndex=0}for(var m=[];;){var h=Ih(v,u);if(h===null||(jn(m,h),!y))break;var O=Dr(h[0]);O===""&&(v.lastIndex=mh(u,Sh(v.lastIndex),S))}for(var I="",E=0,T=0;T=E&&(I+=ov(u,E,$)+wr,E=$+b.length)}return I+ov(u,E)}]},!Ch||!_h||uv);var eg=C(),tg=w(),ng=Lr(),ag=V(),ig=or(),og=gr(),Ev=cv(),Iv=tt(),ug=Mn(),vg=Fn(),sg=_(),cg=Qr(),Tv=sg("isConcatSpreadable"),fg=cg>=51||!tg(function(){var r=[];return r[Tv]=!1,r.concat()[0]!==r}),lg=function(r){if(!ag(r))return!1;var e=r[Tv];return e!==void 0?!!e:ng(r)},pg=!fg||!vg("concat");eg({target:"Array",proto:!0,arity:1,forced:pg},{concat:function(e){var t=ig(this),n=ug(t,0),a=0,o,v,u,c,f;for(o=-1,u=arguments.length;o=t.length?ll(void 0,!0):(a=IE(t,n),e.index+=a.length,ll(a,!1))});var gl=x(),bl=Ja(),_E=Xa(),Re=Ha(),Qa=dr(),ml=_(),Za=ml("iterator"),Sl=ml("toStringTag"),ri=Re.values,Ol=function(r,e){if(r){if(r[Za]!==ri)try{Qa(r,Za,ri)}catch(n){r[Za]=ri}if(r[Sl]||Qa(r,Sl,e),bl[e]){for(var t in Re)if(r[t]!==Re[t])try{Qa(r,t,Re[t])}catch(n){r[t]=Re[t]}}}};for(wt in bl)Ol(gl[wt]&&gl[wt].prototype,wt);var wt;Ol(_E,"DOMTokenList");var CE=Se();CE("asyncIterator");var NE=Y(),AE=Se(),jE=ur();AE("toStringTag");jE(NE("Symbol"),"Symbol");var DE=x(),LE=ur();LE(DE.JSON,"JSON",!0);var ME=ur();ME(Math,"Math",!0);var FE=C(),$E=w(),UE=or(),El=Et(),GE=Fa(),BE=$E(function(){El(1)});FE({target:"Object",stat:!0,forced:BE,sham:!GE},{getPrototypeOf:function(e){return El(UE(e))}});var WE=C(),wl=ei();WE({target:"Array",proto:!0,forced:[].forEach!=wl},{forEach:wl});var Rl=x(),xl=Ja(),HE=Xa(),ti=ei(),JE=dr(),_l=function(r){if(r&&r.forEach!==ti)try{JE(r,"forEach",ti)}catch(e){r.forEach=ti}};for(Rt in xl)xl[Rt]&&_l(Rl[Rt]&&Rl[Rt].prototype);var Rt;_l(HE);var zE=M(),XE=Me().EXISTS,Cl=R(),QE=le(),Nl=Function.prototype,ZE=Cl(Nl.toString),Al=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,rI=Cl(Al.exec),eI="name";zE&&!XE&&QE(Nl,eI,{configurable:!0,get:function(){try{return rI(Al,ZE(this))[1]}catch(r){return""}}});var tI=C(),nI=at();tI({target:"Object",stat:!0},{setPrototypeOf:nI});var aI=C(),iI=R(),oI=Lr(),uI=iI([].reverse),jl=[1,2];aI({target:"Array",proto:!0,forced:String(jl)===String(jl.reverse())},{reverse:function(){return oI(this)&&(this.length=this.length),uI(this)}});var vI=C(),Dl=Lr(),sI=nt(),cI=V(),Ll=ke(),fI=gr(),lI=Z(),pI=tt(),yI=_(),dI=Fn(),qI=it(),hI=dI("slice"),gI=yI("species"),ni=Array,SI=Math.max;vI({target:"Array",proto:!0,forced:!hI},{slice:function(e,t){var n=lI(this),a=fI(n),o=Ll(e,a),v=Ll(t===void 0?a:t,a),u,c,f;if(Dl(n)&&(u=n.constructor,sI(u)&&(u===ni||Dl(u.prototype))?u=void 0:cI(u)&&(u=u[gI],u===null&&(u=void 0)),u===ni||u===void 0))return qI(n,o,v);for(c=new(u===void 0?ni:u)(SI(v-o,0)),f=0;o=0;--g){var q=this.tryEntries[g],N=q.completion;if(q.tryLoc==="root")return d("end");if(q.tryLoc<=this.prev){var L=t.call(q,"catchLoc"),U=t.call(q,"finallyLoc");if(L&&U){if(this.prev=0;--d){var g=this.tryEntries[d];if(g.tryLoc<=this.prev&&t.call(g,"finallyLoc")&&this.prev=0;--l){var d=this.tryEntries[l];if(d.finallyLoc===s)return this.complete(d.completion,d.afterLoc),wr(d),S}},catch:function(s){for(var l=this.tryEntries.length-1;l>=0;--l){var d=this.tryEntries[l];if(d.tryLoc===s){var g=d.completion;if(g.type==="throw"){var q=g.arg;wr(d)}return q}}throw new Error("illegal catch attempt")},delegateYield:function(s,l,d){return this.delegate={iterator:_t(s),resultName:l,nextLoc:d},this.method==="next"&&(this.arg=void 0),S}},r}function Ml(r,e,t,n,a,o,v){try{var u=r[o](v),c=u.value}catch(f){t(f);return}u.done?e(c):Promise.resolve(c).then(n,a)}function ci(r){return function(){var e=this,t=arguments;return new Promise(function(n,a){var o=r.apply(e,t);function v(c){Ml(o,n,a,v,u,"next",c)}function u(c){Ml(o,n,a,v,u,"throw",c)}v(void 0)})}}document.documentElement.classList.add("autoreload-enabled");var bI=window.location.protocol==="https:"?"wss:":"ws:",mI=window.location.pathname.replace(/\/?$/,"/")+"autoreload/",OI="".concat(bI,"//").concat(window.location.host).concat(mI),EI=((ai=document.currentScript)===null||ai===void 0||(ii=ai.dataset)===null||ii===void 0?void 0:ii.wsUrl)||OI;function II(r){return ui.apply(this,arguments)}function ui(){return ui=ci(Tr().mark(function r(e){var t,n;return Tr().wrap(function(o){for(;;)switch(o.prev=o.next){case 0:return t=new WebSocket(e),n=!1,o.abrupt("return",new Promise(function(v,u){t.onopen=function(){n=!0},t.onerror=function(c){u(c)},t.onclose=function(){n?v(!1):u(new Error("WebSocket connection failed"))},t.onmessage=function(c){c.data==="autoreload"&&v(!0)}}));case 3:case"end":return o.stop()}},r)})),ui.apply(this,arguments)}function TI(r){return vi.apply(this,arguments)}function vi(){return vi=ci(Tr().mark(function r(e){return Tr().wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.abrupt("return",new Promise(function(a){return setTimeout(a,e)}));case 1:case"end":return n.stop()}},r)})),vi.apply(this,arguments)}function PI(){return si.apply(this,arguments)}function si(){return si=ci(Tr().mark(function r(){return Tr().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=1,t.next=4,II(EI);case 4:if(!t.sent){t.next=7;break}return window.location.reload(),t.abrupt("return");case 7:t.next=13;break;case 9:return t.prev=9,t.t0=t.catch(1),console.debug("Giving up on autoreload"),t.abrupt("return");case 13:return t.next=15,TI(1e3);case 15:t.next=0;break;case 17:case"end":return t.stop()}},r,null,[[1,9]])})),si.apply(this,arguments)}PI().catch(function(r){console.error(r)});})(); /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ //# sourceMappingURL=shiny-autoreload.js.map diff --git a/inst/www/shared/shiny-showcase.css b/inst/www/shared/shiny-showcase.css index 977a407e9..871e20105 100644 --- a/inst/www/shared/shiny-showcase.css +++ b/inst/www/shared/shiny-showcase.css @@ -1,2 +1,2 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ #showcase-well{border-radius:0}.shiny-code{background-color:#fff;margin-bottom:0}.shiny-code code{font-family:Menlo,Consolas,Courier New,monospace}.shiny-code-container{margin-top:20px;clear:both}.shiny-code-container h3{display:inline;margin-right:15px}.showcase-header{font-size:16px;font-weight:400}.showcase-code-link{text-align:right;padding:15px}#showcase-app-container{vertical-align:top}#showcase-code-tabs{margin-right:15px}#showcase-code-tabs pre{border:none;line-height:1em}#showcase-code-tabs .nav,#showcase-code-tabs ul{margin-bottom:0}#showcase-code-tabs .tab-content{border-style:solid;border-color:#e5e5e5;border-width:0px 1px 1px 1px;overflow:auto;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#showcase-app-code{width:100%}#showcase-code-position-toggle{float:right}#showcase-sxs-code{padding-top:20px;vertical-align:top}.showcase-code-license{display:block;text-align:right}#showcase-code-content pre{background-color:#fff} diff --git a/inst/www/shared/shiny-showcase.js b/inst/www/shared/shiny-showcase.js index 790d8beda..2984963df 100644 --- a/inst/www/shared/shiny-showcase.js +++ b/inst/www/shared/shiny-showcase.js @@ -1,3 +1,3 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict";(function(){var ta=Object.create;var Re=Object.defineProperty;var na=Object.getOwnPropertyDescriptor;var ia=Object.getOwnPropertyNames;var aa=Object.getPrototypeOf,oa=Object.prototype.hasOwnProperty;var i=function(r,e){return function(){return e||r((e={exports:{}}).exports,e),e.exports}};var ua=function(r,e,t,n){if(e&&typeof e=="object"||typeof e=="function")for(var a=ia(e),o=0,l=a.length,u;o0&&b[0]<4?1:+(b[0]+b[1]));!V&&Ir&&(b=Ir.match(/Edge\/(\d+)/),(!b||b[1]>=74)&&(b=Ir.match(/Chrome\/(\d+)/),b&&(V=+b[1])));dt.exports=V});var wr=i(function(Sv,yt){var gt=pt(),Ra=g();yt.exports=!!Object.getOwnPropertySymbols&&!Ra(function(){var r=Symbol();return!String(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&>&><41})});var Tr=i(function(Ov,qt){var _a=wr();qt.exports=_a&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Pr=i(function(Iv,ht){var ja=X(),Na=y(),Da=at(),Aa=Tr(),Ba=Object;ht.exports=Aa?function(r){return typeof r=="symbol"}:function(r){var e=ja("Symbol");return Na(e)&&Da(e.prototype,Ba(r))}});var bt=i(function(wv,mt){var Ma=String;mt.exports=function(r){try{return Ma(r)}catch(e){return"Object"}}});var Et=i(function(Tv,xt){var $a=y(),Fa=bt(),La=TypeError;xt.exports=function(r){if($a(r))return r;throw La(Fa(r)+" is not a function")}});var Cr=i(function(Pv,St){var Ua=Et(),Ga=Y();St.exports=function(r,e){var t=r[e];return Ga(t)?void 0:Ua(t)}});var It=i(function(Cv,Ot){var Rr=C(),_r=y(),jr=_(),Ka=TypeError;Ot.exports=function(r,e){var t,n;if(e==="string"&&_r(t=r.toString)&&!jr(n=Rr(t,r))||_r(t=r.valueOf)&&!jr(n=Rr(t,r))||e!=="string"&&_r(t=r.toString)&&!jr(n=Rr(t,r)))return n;throw Ka("Can't convert object to primitive value")}});var Tt=i(function(Rv,wt){wt.exports=!1});var J=i(function(_v,Ct){var Pt=q(),ka=Object.defineProperty;Ct.exports=function(r,e){try{ka(Pt,r,{value:e,configurable:!0,writable:!0})}catch(t){Pt[r]=e}return e}});var Z=i(function(jv,_t){var Wa=q(),Ha=J(),Rt="__core-js_shared__",za=Wa[Rt]||Ha(Rt,{});_t.exports=za});var Q=i(function(Nv,Nt){var Ya=Tt(),jt=Z();(Nt.exports=function(r,e){return jt[r]||(jt[r]=e!==void 0?e:{})})("versions",[]).push({version:"3.29.0",mode:Ya?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Nr=i(function(Dv,Dt){var Xa=F(),Va=Object;Dt.exports=function(r){return Va(Xa(r))}});var I=i(function(Av,At){var Ja=p(),Za=Nr(),Qa=Ja({}.hasOwnProperty);At.exports=Object.hasOwn||function(e,t){return Qa(Za(e),t)}});var Dr=i(function(Bv,Bt){var ro=p(),eo=0,to=Math.random(),no=ro(1 .toString);Bt.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+no(++eo+to,36)}});var N=i(function(Mv,$t){var io=q(),ao=Q(),Mt=I(),oo=Dr(),uo=wr(),lo=Tr(),j=io.Symbol,Ar=ao("wks"),co=lo?j.for||j:j&&j.withoutSetter||oo;$t.exports=function(r){return Mt(Ar,r)||(Ar[r]=uo&&Mt(j,r)?j[r]:co("Symbol."+r)),Ar[r]}});var Gt=i(function($v,Ut){var vo=C(),Ft=_(),Lt=Pr(),so=Cr(),fo=It(),po=N(),go=TypeError,yo=po("toPrimitive");Ut.exports=function(r,e){if(!Ft(r)||Lt(r))return r;var t=so(r,yo),n;if(t){if(e===void 0&&(e="default"),n=vo(t,r,e),!Ft(n)||Lt(n))return n;throw go("Can't convert object to primitive value")}return e===void 0&&(e="number"),fo(r,e)}});var Br=i(function(Fv,Kt){var qo=Gt(),ho=Pr();Kt.exports=function(r){var e=qo(r,"string");return ho(e)?e:e+""}});var $r=i(function(Lv,Wt){var mo=q(),kt=_(),Mr=mo.document,bo=kt(Mr)&&kt(Mr.createElement);Wt.exports=function(r){return bo?Mr.createElement(r):{}}});var Fr=i(function(Uv,Ht){var xo=S(),Eo=g(),So=$r();Ht.exports=!xo&&!Eo(function(){return Object.defineProperty(So("div"),"a",{get:function(){return 7}}).a!=7})});var Lr=i(function(Yt){var Oo=S(),Io=C(),wo=Fe(),To=mr(),Po=L(),Co=Br(),Ro=I(),_o=Fr(),zt=Object.getOwnPropertyDescriptor;Yt.f=Oo?zt:function(e,t){if(e=Po(e),t=Co(t),_o)try{return zt(e,t)}catch(n){}if(Ro(e,t))return To(!Io(wo.f,e,t),e[t])}});var Ur=i(function(Kv,Xt){var jo=S(),No=g();Xt.exports=jo&&No(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42})});var w=i(function(kv,Vt){var Do=_(),Ao=String,Bo=TypeError;Vt.exports=function(r){if(Do(r))return r;throw Bo(Ao(r)+" is not an object")}});var U=i(function(Zt){var Mo=S(),$o=Fr(),Fo=Ur(),rr=w(),Jt=Br(),Lo=TypeError,Gr=Object.defineProperty,Uo=Object.getOwnPropertyDescriptor,Kr="enumerable",kr="configurable",Wr="writable";Zt.f=Mo?Fo?function(e,t,n){if(rr(e),t=Jt(t),rr(n),typeof e=="function"&&t==="prototype"&&"value"in n&&Wr in n&&!n[Wr]){var a=Uo(e,t);a&&a[Wr]&&(e[t]=n.value,n={configurable:kr in n?n[kr]:a[kr],enumerable:Kr in n?n[Kr]:a[Kr],writable:!1})}return Gr(e,t,n)}:Gr:function(e,t,n){if(rr(e),t=Jt(t),rr(n),$o)try{return Gr(e,t,n)}catch(a){}if("get"in n||"set"in n)throw Lo("Accessors not supported");return"value"in n&&(e[t]=n.value),e}});var er=i(function(Hv,Qt){var Go=S(),Ko=U(),ko=mr();Qt.exports=Go?function(r,e,t){return Ko.f(r,e,ko(1,t))}:function(r,e,t){return r[e]=t,r}});var tn=i(function(zv,en){var Hr=S(),Wo=I(),rn=Function.prototype,Ho=Hr&&Object.getOwnPropertyDescriptor,zr=Wo(rn,"name"),zo=zr&&function(){}.name==="something",Yo=zr&&(!Hr||Hr&&Ho(rn,"name").configurable);en.exports={EXISTS:zr,PROPER:zo,CONFIGURABLE:Yo}});var an=i(function(Yv,nn){var Xo=p(),Vo=y(),Yr=Z(),Jo=Xo(Function.toString);Vo(Yr.inspectSource)||(Yr.inspectSource=function(r){return Jo(r)});nn.exports=Yr.inspectSource});var ln=i(function(Xv,un){var Zo=q(),Qo=y(),on=Zo.WeakMap;un.exports=Qo(on)&&/native code/.test(String(on))});var Xr=i(function(Vv,vn){var ru=Q(),eu=Dr(),cn=ru("keys");vn.exports=function(r){return cn[r]||(cn[r]=eu(r))}});var tr=i(function(Jv,sn){sn.exports={}});var Qr=i(function(Zv,pn){var tu=ln(),dn=q(),nu=_(),iu=er(),Vr=I(),Jr=Z(),au=Xr(),ou=tr(),fn="Object already initialized",Zr=dn.TypeError,uu=dn.WeakMap,nr,G,ir,lu=function(r){return ir(r)?G(r):nr(r,{})},cu=function(r){return function(e){var t;if(!nu(e)||(t=G(e)).type!==r)throw Zr("Incompatible receiver, "+r+" required");return t}};tu||Jr.state?(x=Jr.state||(Jr.state=new uu),x.get=x.get,x.has=x.has,x.set=x.set,nr=function(r,e){if(x.has(r))throw Zr(fn);return e.facade=r,x.set(r,e),e},G=function(r){return x.get(r)||{}},ir=function(r){return x.has(r)}):(R=au("state"),ou[R]=!0,nr=function(r,e){if(Vr(r,R))throw Zr(fn);return e.facade=r,iu(r,R,e),e},G=function(r){return Vr(r,R)?r[R]:{}},ir=function(r){return Vr(r,R)});var x,R;pn.exports={set:nr,get:G,has:ir,enforce:lu,getterFor:cu}});var hn=i(function(Qv,qn){var ee=p(),vu=g(),su=y(),ar=I(),re=S(),fu=tn().CONFIGURABLE,du=an(),yn=Qr(),pu=yn.enforce,gu=yn.get,gn=String,or=Object.defineProperty,yu=ee("".slice),qu=ee("".replace),hu=ee([].join),mu=re&&!vu(function(){return or(function(){},"length",{value:8}).length!==8}),bu=String(String).split("String"),xu=qn.exports=function(r,e,t){yu(gn(e),0,7)==="Symbol("&&(e="["+qu(gn(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(e="get "+e),t&&t.setter&&(e="set "+e),(!ar(r,"name")||fu&&r.name!==e)&&(re?or(r,"name",{value:e,configurable:!0}):r.name=e),mu&&t&&ar(t,"arity")&&r.length!==t.arity&&or(r,"length",{value:t.arity});try{t&&ar(t,"constructor")&&t.constructor?re&&or(r,"prototype",{writable:!1}):r.prototype&&(r.prototype=void 0)}catch(a){}var n=pu(r);return ar(n,"source")||(n.source=hu(bu,typeof e=="string"?e:"")),r};Function.prototype.toString=xu(function(){return su(this)&&gu(this).source||du(this)},"toString")});var te=i(function(rs,mn){var Eu=y(),Su=U(),Ou=hn(),Iu=J();mn.exports=function(r,e,t,n){n||(n={});var a=n.enumerable,o=n.name!==void 0?n.name:e;if(Eu(t)&&Ou(t,o,n),n.global)a?r[e]=t:Iu(e,t);else{try{n.unsafe?r[e]&&(a=!0):delete r[e]}catch(l){}a?r[e]=t:Su.f(r,e,{value:t,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return r}});var xn=i(function(es,bn){var wu=Math.ceil,Tu=Math.floor;bn.exports=Math.trunc||function(e){var t=+e;return(t>0?Tu:wu)(t)}});var K=i(function(ts,En){var Pu=xn();En.exports=function(r){var e=+r;return e!==e||e===0?0:Pu(e)}});var On=i(function(ns,Sn){var Cu=K(),Ru=Math.max,_u=Math.min;Sn.exports=function(r,e){var t=Cu(r);return t<0?Ru(t+e,0):_u(t,e)}});var ne=i(function(is,In){var ju=K(),Nu=Math.min;In.exports=function(r){return r>0?Nu(ju(r),9007199254740991):0}});var Tn=i(function(as,wn){var Du=ne();wn.exports=function(r){return Du(r.length)}});var Rn=i(function(os,Cn){var Au=L(),Bu=On(),Mu=Tn(),Pn=function(r){return function(e,t,n){var a=Au(e),o=Mu(a),l=Bu(n,o),u;if(r&&t!=t){for(;o>l;)if(u=a[l++],u!=u)return!0}else for(;o>l;l++)if((r||l in a)&&a[l]===t)return r||l||0;return!r&&-1}};Cn.exports={includes:Pn(!0),indexOf:Pn(!1)}});var ae=i(function(us,jn){var $u=p(),ie=I(),Fu=L(),Lu=Rn().indexOf,Uu=tr(),_n=$u([].push);jn.exports=function(r,e){var t=Fu(r),n=0,a=[],o;for(o in t)!ie(Uu,o)&&ie(t,o)&&_n(a,o);for(;e.length>n;)ie(t,o=e[n++])&&(~Lu(a,o)||_n(a,o));return a}});var ur=i(function(ls,Nn){Nn.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var An=i(function(Dn){var Gu=ae(),Ku=ur(),ku=Ku.concat("length","prototype");Dn.f=Object.getOwnPropertyNames||function(e){return Gu(e,ku)}});var Mn=i(function(Bn){Bn.f=Object.getOwnPropertySymbols});var Fn=i(function(ss,$n){var Wu=X(),Hu=p(),zu=An(),Yu=Mn(),Xu=w(),Vu=Hu([].concat);$n.exports=Wu("Reflect","ownKeys")||function(e){var t=zu.f(Xu(e)),n=Yu.f;return n?Vu(t,n(e)):t}});var Gn=i(function(fs,Un){var Ln=I(),Ju=Fn(),Zu=Lr(),Qu=U();Un.exports=function(r,e,t){for(var n=Ju(e),a=Qu.f,o=Zu.f,l=0;ll;)jl.f(e,u=a[l++],n[u]);return e}});var li=i(function(Es,ui){var Bl=X();ui.exports=Bl("document","documentElement")});var yi=i(function(Ss,gi){var Ml=w(),$l=oi(),ci=ur(),Fl=tr(),Ll=li(),Ul=$r(),Gl=Xr(),vi=">",si="<",se="prototype",fe="script",di=Gl("IE_PROTO"),ve=function(){},pi=function(r){return si+fe+vi+r+si+"/"+fe+vi},fi=function(r){r.write(pi("")),r.close();var e=r.parentWindow.Object;return r=null,e},Kl=function(){var r=Ul("iframe"),e="java"+fe+":",t;return r.style.display="none",Ll.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(pi("document.F=Object")),t.close(),t.F},vr,sr=function(){try{vr=new ActiveXObject("htmlfile")}catch(e){}sr=typeof document!="undefined"?document.domain&&vr?fi(vr):Kl():fi(vr);for(var r=ci.length;r--;)delete sr[se][ci[r]];return sr()};Fl[di]=!0;gi.exports=Object.create||function(e,t){var n;return e!==null?(ve[se]=Ml(e),n=new ve,ve[se]=null,n[di]=e):n=sr(),t===void 0?n:$l.f(n,t)}});var hi=i(function(Os,qi){var kl=g(),Wl=q(),Hl=Wl.RegExp;qi.exports=kl(function(){var r=Hl(".","s");return!(r.dotAll&&r.exec("\n")&&r.flags==="s")})});var bi=i(function(Is,mi){var zl=g(),Yl=q(),Xl=Yl.RegExp;mi.exports=zl(function(){var r=Xl("(?b)","g");return r.exec("b").groups.a!=="b"||"b".replace(r,"$c")!=="bc"})});var pr=i(function(ws,Ei){"use strict";var D=C(),dr=p(),Vl=cr(),Jl=ri(),Zl=ti(),Ql=Q(),rc=yi(),ec=Qr().get,tc=hi(),nc=bi(),ic=Ql("native-string-replace",String.prototype.replace),fr=RegExp.prototype.exec,pe=fr,ac=dr("".charAt),oc=dr("".indexOf),uc=dr("".replace),de=dr("".slice),ge=function(){var r=/a/,e=/b*/g;return D(fr,r,"a"),D(fr,e,"a"),r.lastIndex!==0||e.lastIndex!==0}(),xi=Zl.BROKEN_CARET,ye=/()??/.exec("")[1]!==void 0,lc=ge||ye||xi||tc||nc;lc&&(pe=function(e){var t=this,n=ec(t),a=Vl(e),o=n.raw,l,u,s,c,v,h,d;if(o)return o.lastIndex=t.lastIndex,l=D(pe,o,a),t.lastIndex=o.lastIndex,l;var f=n.groups,T=xi&&t.sticky,m=D(Jl,t),E=t.source,P=0,O=a;if(T&&(m=uc(m,"y",""),oc(m,"g")===-1&&(m+="g"),O=de(a,t.lastIndex),t.lastIndex>0&&(!t.multiline||t.multiline&&ac(a,t.lastIndex-1)!=="\n")&&(E="(?: "+E+")",O=" "+O,P++),u=new RegExp("^(?:"+E+")",m)),ye&&(u=new RegExp("^"+E+"$(?!\\s)",m)),ge&&(s=t.lastIndex),c=D(fr,T?u:t,O),T?c?(c.input=de(c.input,P),c[0]=de(c[0],P),c.index=t.lastIndex,t.lastIndex+=c[0].length):t.lastIndex=0:ge&&c&&(t.lastIndex=t.global?c.index+c[0].length:s),ye&&c&&c.length>1&&D(ic,c[0],u,function(){for(v=1;v=o?r?"":void 0:(l=Mi(n,a),l<55296||l>56319||a+1===o||(u=Mi(n,a+1))<56320||u>57343?r?mc(n,a):l:r?bc(n,a,a+2):(l-55296<<10)+(u-56320)+65536)}};Fi.exports={codeAt:$i(!1),charAt:$i(!0)}});var Gi=i(function(Ns,Ui){"use strict";var xc=Li().charAt;Ui.exports=function(r,e,t){return e+(t?xc(r,e).length:1)}});var ki=i(function(Ds,Ki){var Ee=p(),Ec=Nr(),Sc=Math.floor,be=Ee("".charAt),Oc=Ee("".replace),xe=Ee("".slice),Ic=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,wc=/\$([$&'`]|\d{1,2})/g;Ki.exports=function(r,e,t,n,a,o){var l=t+r.length,u=n.length,s=wc;return a!==void 0&&(a=Ec(a),s=Ic),Oc(o,s,function(c,v){var h;switch(be(v,0)){case"$":return"$";case"&":return r;case"`":return xe(e,0,t);case"'":return xe(e,l);case"<":h=a[xe(v,1,-1)];break;default:var d=+v;if(d===0)return c;if(d>u){var f=Sc(d/10);return f===0?c:f<=u?n[f-1]===void 0?be(v,1):n[f-1]+be(v,1):c}h=n[d-1]}return h===void 0?"":h})}});var zi=i(function(As,Hi){var Wi=C(),Tc=w(),Pc=y(),Cc=M(),Rc=pr(),_c=TypeError;Hi.exports=function(r,e){var t=r.exec;if(Pc(t)){var n=Wi(t,r,e);return n!==null&&Tc(n),n}if(Cc(r)==="RegExp")return Wi(Rc,r,e);throw _c("RegExp#exec called on incompatible receiver")}});var Bs=la(qe());var jc=Pi(),Yi=C(),gr=p(),Nc=Bi(),Dc=g(),Ac=w(),Bc=y(),Mc=Y(),$c=K(),Fc=ne(),A=cr(),Lc=F(),Uc=Gi(),Gc=Cr(),Kc=ki(),kc=zi(),Wc=N(),Oe=Wc("replace"),Hc=Math.max,zc=Math.min,Yc=gr([].concat),Se=gr([].push),Xi=gr("".indexOf),Vi=gr("".slice),Xc=function(r){return r===void 0?r:String(r)},Vc=function(){return"a".replace(/./,"$0")==="$0"}(),Ji=function(){return/./[Oe]?/./[Oe]("a","$0")==="":!1}(),Jc=!Dc(function(){var r=/./;return r.exec=function(){var e=[];return e.groups={a:"7"},e},"".replace(r,"$")!=="7"});Nc("replace",function(r,e,t){var n=Ji?"$":"$0";return[function(o,l){var u=Lc(this),s=Mc(o)?void 0:Gc(o,Oe);return s?Yi(s,o,u,l):Yi(e,A(u),o,l)},function(a,o){var l=Ac(this),u=A(a);if(typeof o=="string"&&Xi(o,n)===-1&&Xi(o,"$<")===-1){var s=t(e,l,u,o);if(s.done)return s.value}var c=Bc(o);c||(o=A(o));var v=l.global;if(v){var h=l.unicode;l.lastIndex=0}for(var d=[];;){var f=kc(l,u);if(f===null||(Se(d,f),!v))break;var T=A(f[0]);T===""&&(l.lastIndex=Uc(u,Fc(l.lastIndex),h))}for(var m="",E=0,P=0;P=E&&(m+=Vi(u,E,B)+Ce,E=B+O.length)}return m+Vi(u,E)}]},!Jc||!Vc||Ji);var Zi=400;function Ie(r,e){var t=0;if(r.nodeType===3){var n=r.nodeValue.replace(/\n/g,"").length;if(n>=e)return{element:r,offset:e};t+=n}else if(r.nodeType===1&&r.firstChild){var a=Ie(r.firstChild,e);if(a.element!==null)return a;t+=a.offset}return r.nextSibling?Ie(r.nextSibling,e-t):{element:null,offset:t}}function we(r,e,t){for(var n=0,a=0;a show below':' show with app'}),e&&$(document.body).animate({scrollTop:0},n),Te=e,ra(e&&t),$(window).trigger("resize")};function ra(r){var e=960,t=e,n=1,a=document.getElementById("showcase-app-code").offsetWidth;a/2>e?t=a/2:a*.66>e?t=960:(t=a*.66,n=t/e);var o=document.getElementById("showcase-app-container");$(o).animate({width:t+"px",zoom:n*100+"%"},r?Zi:0)}var Qc=function(){Qi(!Te,!0)},rv=function(){document.body.offsetWidth>1350&&Qi(!0,!1)};function ea(){document.getElementById("showcase-code-content").style.height=$(window).height()+"px"}function ev(){var r=document.getElementById("showcase-markdown-content");if(r!==null){var e=r.innerText||r.innerHTML,t=window.Showdown.converter;document.getElementById("readme-md").innerHTML=new t().makeHtml(e)}}$(window).resize(function(){Te&&(ra(!1),ea())});window.toggleCodePosition=Qc;$(window).on("load",rv);$(window).on("load",ev);window.hljs&&window.hljs.initHighlightingOnLoad();})(); //# sourceMappingURL=shiny-showcase.js.map diff --git a/inst/www/shared/shiny-testmode.js b/inst/www/shared/shiny-testmode.js index a702acea8..1ccc25574 100644 --- a/inst/www/shared/shiny-testmode.js +++ b/inst/www/shared/shiny-testmode.js @@ -1,3 +1,3 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict";(function(){var a=eval;window.addEventListener("message",function(i){var e=i.data;e.code&&a(e.code)});})(); //# sourceMappingURL=shiny-testmode.js.map diff --git a/inst/www/shared/shiny.js b/inst/www/shared/shiny.js index 2462d43a7..0fe5f3a61 100644 --- a/inst/www/shared/shiny.js +++ b/inst/www/shared/shiny.js @@ -1,4 +1,4 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ "use strict"; (function() { var __create = Object.create; @@ -25165,7 +25165,7 @@ _defineProperty23(this, "initializeInputs", void 0); _defineProperty23(this, "initializedPromise", void 0); _defineProperty23(this, "oncustommessage", void 0); - this.version = "1.9.1.9000"; + this.version = "1.10.0"; var _initInputBindings = initInputBindings(), inputBindings = _initInputBindings.inputBindings, fileInputBinding2 = _initInputBindings.fileInputBinding; var _initOutputBindings = initOutputBindings(), outputBindings = _initOutputBindings.outputBindings; setFileInputBinding(fileInputBinding2); diff --git a/inst/www/shared/shiny.min.css b/inst/www/shared/shiny.min.css index c2890ac57..2831d2d03 100644 --- a/inst/www/shared/shiny.min.css +++ b/inst/www/shared/shiny.min.css @@ -1,2 +1,2 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ +/*! shiny 1.10.0 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ pre.shiny-text-output:empty:before{content:" "}pre.shiny-text-output.noplaceholder:empty{margin:0;padding:0;border-width:0;height:0}pre.shiny-text-output{word-wrap:normal}.shiny-image-output img.shiny-scalable,.shiny-plot-output img.shiny-scalable{max-width:100%;max-height:100%}#shiny-disconnected-overlay{position:fixed;inset:0;background-color:#999;opacity:.5;overflow:hidden;z-index:99998;pointer-events:none}html.autoreload-enabled #shiny-disconnected-overlay.reloading{opacity:0;animation:fadeIn .25s forwards;animation-delay:1s}@keyframes fadeIn{to{opacity:.1}}.table.shiny-table>thead>tr>th,.table.shiny-table>thead>tr>td,.table.shiny-table>tbody>tr>th,.table.shiny-table>tbody>tr>td,.table.shiny-table>tfoot>tr>th,.table.shiny-table>tfoot>tr>td{padding-right:12px;padding-left:12px}.shiny-table.spacing-xs>thead>tr>th,.shiny-table.spacing-xs>thead>tr>td,.shiny-table.spacing-xs>tbody>tr>th,.shiny-table.spacing-xs>tbody>tr>td,.shiny-table.spacing-xs>tfoot>tr>th,.shiny-table.spacing-xs>tfoot>tr>td{padding-top:3px;padding-bottom:3px}.shiny-table.spacing-s>thead>tr>th,.shiny-table.spacing-s>thead>tr>td,.shiny-table.spacing-s>tbody>tr>th,.shiny-table.spacing-s>tbody>tr>td,.shiny-table.spacing-s>tfoot>tr>th,.shiny-table.spacing-s>tfoot>tr>td{padding-top:5px;padding-bottom:5px}.shiny-table.spacing-m>thead>tr>th,.shiny-table.spacing-m>thead>tr>td,.shiny-table.spacing-m>tbody>tr>th,.shiny-table.spacing-m>tbody>tr>td,.shiny-table.spacing-m>tfoot>tr>th,.shiny-table.spacing-m>tfoot>tr>td{padding-top:8px;padding-bottom:8px}.shiny-table.spacing-l>thead>tr>th,.shiny-table.spacing-l>thead>tr>td,.shiny-table.spacing-l>tbody>tr>th,.shiny-table.spacing-l>tbody>tr>td,.shiny-table.spacing-l>tfoot>tr>th,.shiny-table.spacing-l>tfoot>tr>td{padding-top:10px;padding-bottom:10px}.shiny-table .NA{color:#909090}.shiny-output-error{color:red;white-space:pre-wrap}.shiny-output-error:before{content:"Error: ";font-weight:700}.shiny-output-error-validation{color:#888}.shiny-output-error-validation:before{content:"";font-weight:inherit}@supports (-ms-ime-align:auto){.shiny-bound-output{transition:0}}.recalculating{--_shiny-fade-opacity: var(--shiny-fade-opacity, .3);opacity:var(--_shiny-fade-opacity);transition:opacity .25s ease .5s}.slider-animate-container{text-align:right;margin-top:-9px}.slider-animate-button{position:relative;z-index:1;opacity:.5}.slider-animate-button .pause{display:none}.slider-animate-button.playing .pause,.slider-animate-button .play{display:inline}.slider-animate-button.playing .play{display:none}.progress.shiny-file-input-progress{visibility:hidden}.progress.shiny-file-input-progress .progress-bar.bar-danger{transition:none}.btn-file{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.shiny-input-container input[type=file]{overflow:hidden;max-width:100%}.shiny-progress-container{position:fixed;top:0;width:100%;z-index:2000}.shiny-progress .progress{position:absolute;width:100%;top:0;height:3px;margin:0}.shiny-progress .bar{opacity:.6;transition-duration:.25s}.shiny-progress .progress-text{position:absolute;right:10px;width:240px;background-color:#eef8ff;margin:0;padding:2px 3px;opacity:.85}.shiny-progress .progress-text .progress-message{padding:0 3px;font-weight:700;font-size:90%}.shiny-progress .progress-text .progress-detail{padding:0 3px;font-size:80%}.shiny-progress-notification .progress{margin-bottom:5px;height:10px}.shiny-progress-notification .progress-text .progress-message{font-weight:700;font-size:90%}.shiny-progress-notification .progress-text .progress-detail{font-size:80%}.shiny-label-null{display:none}.crosshair{cursor:crosshair}.grabbable{cursor:grab;cursor:-moz-grab;cursor:-webkit-grab}.grabbing{cursor:grabbing;cursor:-moz-grabbing;cursor:-webkit-grabbing}.ns-resize{cursor:ns-resize}.ew-resize{cursor:ew-resize}.nesw-resize{cursor:nesw-resize}.nwse-resize{cursor:nwse-resize}.qt pre,.qt code{font-family:monospace!important}.qt5 .radio input[type=radio],.qt5 .checkbox input[type=checkbox]{margin-top:0}.qtmac input[type=radio],.qtmac input[type=checkbox]{zoom:1.0000001}.shiny-frame{border:none}.shiny-flow-layout>div{display:inline-block;vertical-align:top;padding-right:12px;width:220px}.shiny-split-layout{width:100%;white-space:nowrap}.shiny-split-layout>div{display:inline-block;vertical-align:top;box-sizing:border-box;overflow:auto}.shiny-input-panel{padding:6px 8px;margin-top:6px;margin-bottom:6px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:2px}.shiny-input-checkboxgroup label~.shiny-options-group,.shiny-input-radiogroup label~.shiny-options-group{margin-top:-10px}.shiny-input-checkboxgroup.shiny-input-container-inline label~.shiny-options-group,.shiny-input-radiogroup.shiny-input-container-inline label~.shiny-options-group{margin-top:-1px}.shiny-input-container:not(.shiny-input-container-inline){width:300px;max-width:100%}.well .shiny-input-container{width:auto}.shiny-input-container>div>select:not(.selectized){width:100%}#shiny-notification-panel{position:fixed;bottom:0;right:0;background-color:#0000;padding:2px;width:300px;max-width:100%;z-index:99999}.shiny-notification{position:relative;background-color:#e8e8e8;color:#333;border:1px solid #ccc;border-radius:3px;opacity:.85;padding:10px 2rem 10px 10px;margin:5px}.shiny-notification-message{color:#31708f;background-color:#d9edf7;border:1px solid #bce8f1}.shiny-notification-warning{color:#8a6d3b;background-color:#fcf8e3;border:1px solid #faebcc}.shiny-notification-error{color:#a94442;background-color:#f2dede;border:1px solid #ebccd1}.shiny-notification-close{position:absolute;width:2rem;height:2rem;top:0;right:0;display:flex;align-items:center;justify-content:center;font-weight:400;font-size:1.125em;padding:.25rem;color:#444;cursor:pointer}.shiny-notification-close:hover{color:#000;font-weight:700}.shiny-notification-content-action a{color:#337ab7;text-decoration:underline;font-weight:700}.shiny-file-input-active{box-shadow:inset 0 1px 1px #00000013,0 0 8px #66afe999}.shiny-file-input-over{box-shadow:inset 0 1px 1px #00000013,0 0 8px #4cae4c99}.datepicker table tbody tr td.disabled,.datepicker table tbody tr td.disabled:hover,.datepicker table tbody tr td span.disabled,.datepicker table tbody tr td span.disabled:hover{color:#aaa;cursor:not-allowed}.nav-hidden{display:none!important} diff --git a/inst/www/shared/shiny.min.js b/inst/www/shared/shiny.min.js index 9db8d51ea..54ab6150f 100644 --- a/inst/www/shared/shiny.min.js +++ b/inst/www/shared/shiny.min.js @@ -1,5 +1,5 @@ -/*! shiny 1.9.1.9000 | (c) 2012-2024 RStudio, PBC. | License: GPL-3 | file LICENSE */ -"use strict";(function(){var gT=Object.create;var _h=Object.defineProperty;var bT=Object.getOwnPropertyDescriptor;var wT=Object.getOwnPropertyNames;var ST=Object.getPrototypeOf,OT=Object.prototype.hasOwnProperty;var q=function(e,r){return function(){return r||e((r={exports:{}}).exports,r),r.exports}};var _T=function(e,r,t,n){if(r&&typeof r=="object"||typeof r=="function")for(var i=wT(r),a=0,s=i.length,c;a0&&er[0]<4?1:+(er[0]+er[1]));!la&&Ms&&(er=Ms.match(/Edge\/(\d+)/),(!er||er[1]>=74)&&(er=Ms.match(/Chrome\/(\d+)/),er&&(la=+er[1])));td.exports=la});var it=q(function(T4,id){var nd=Yt(),zT=K();id.exports=!!Object.getOwnPropertySymbols&&!zT(function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&nd&&nd<41})});var Gs=q(function(k4,od){var HT=it();od.exports=HT&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Xt=q(function(x4,ad){var KT=Ae(),WT=re(),YT=br(),XT=Gs(),QT=Object;ad.exports=XT?function(e){return typeof e=="symbol"}:function(e){var r=KT("Symbol");return WT(r)&&YT(r.prototype,QT(e))}});var ot=q(function(R4,ud){var JT=String;ud.exports=function(e){try{return JT(e)}catch(r){return"Object"}}});var We=q(function(A4,sd){var ZT=re(),ek=ot(),rk=TypeError;sd.exports=function(e){if(ZT(e))return e;throw rk(ek(e)+" is not a function")}});var Nr=q(function($4,fd){var tk=We(),nk=He();fd.exports=function(e,r){var t=e[r];return nk(t)?void 0:tk(t)}});var zs=q(function(N4,cd){var Fs=ie(),Us=re(),Vs=ce(),ik=TypeError;cd.exports=function(e,r){var t,n;if(r==="string"&&Us(t=e.toString)&&!Vs(n=Fs(t,e))||Us(t=e.valueOf)&&!Vs(n=Fs(t,e))||r!=="string"&&Us(t=e.toString)&&!Vs(n=Fs(t,e)))return n;throw ik("Can't convert object to primitive value")}});var $e=q(function(j4,ld){ld.exports=!1});var pa=q(function(L4,vd){var pd=X(),ok=Object.defineProperty;vd.exports=function(e,r){try{ok(pd,e,{value:r,configurable:!0,writable:!0})}catch(t){pd[e]=r}return r}});var va=q(function(C4,dd){var ak=X(),uk=pa(),hd="__core-js_shared__",sk=ak[hd]||uk(hd,{});dd.exports=sk});var at=q(function(D4,yd){var fk=$e(),md=va();(yd.exports=function(e,r){return md[e]||(md[e]=r!==void 0?r:{})})("versions",[]).push({version:"3.29.0",mode:fk?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Ne=q(function(B4,gd){var ck=Ke(),lk=Object;gd.exports=function(e){return lk(ck(e))}});var ue=q(function(M4,bd){var pk=W(),vk=Ne(),hk=pk({}.hasOwnProperty);bd.exports=Object.hasOwn||function(r,t){return hk(vk(r),t)}});var yi=q(function(G4,wd){var dk=W(),mk=0,yk=Math.random(),gk=dk(1 .toString);wd.exports=function(e){return"Symbol("+(e===void 0?"":e)+")_"+gk(++mk+yk,36)}});var ne=q(function(F4,Od){var bk=X(),wk=at(),Sd=ue(),Sk=yi(),Ok=it(),_k=Gs(),Qt=bk.Symbol,Hs=wk("wks"),Pk=_k?Qt.for||Qt:Qt&&Qt.withoutSetter||Sk;Od.exports=function(e){return Sd(Hs,e)||(Hs[e]=Ok&&Sd(Qt,e)?Qt[e]:Pk("Symbol."+e)),Hs[e]}});var Ks=q(function(U4,Ed){var Ek=ie(),_d=ce(),Pd=Xt(),Ik=Nr(),qk=zs(),Tk=ne(),kk=TypeError,xk=Tk("toPrimitive");Ed.exports=function(e,r){if(!_d(e)||Pd(e))return e;var t=Ik(e,xk),n;if(t){if(r===void 0&&(r="default"),n=Ek(t,e,r),!_d(n)||Pd(n))return n;throw kk("Can't convert object to primitive value")}return r===void 0&&(r="number"),qk(e,r)}});var gi=q(function(V4,Id){var Rk=Ks(),Ak=Xt();Id.exports=function(e){var r=Rk(e,"string");return Ak(r)?r:r+""}});var bi=q(function(z4,Td){var $k=X(),qd=ce(),Ws=$k.document,Nk=qd(Ws)&&qd(Ws.createElement);Td.exports=function(e){return Nk?Ws.createElement(e):{}}});var Ys=q(function(H4,kd){var jk=ae(),Lk=K(),Ck=bi();kd.exports=!jk&&!Lk(function(){return Object.defineProperty(Ck("div"),"a",{get:function(){return 7}}).a!=7})});var rr=q(function(Rd){var Dk=ae(),Bk=ie(),Mk=ca(),Gk=Wt(),Fk=Le(),Uk=gi(),Vk=ue(),zk=Ys(),xd=Object.getOwnPropertyDescriptor;Rd.f=Dk?xd:function(r,t){if(r=Fk(r),t=Uk(t),zk)try{return xd(r,t)}catch(n){}if(Vk(r,t))return Gk(!Bk(Mk.f,r,t),r[t])}});var Xs=q(function(W4,Ad){var Hk=ae(),Kk=K();Ad.exports=Hk&&Kk(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!=42})});var oe=q(function(Y4,$d){var Wk=ce(),Yk=String,Xk=TypeError;$d.exports=function(e){if(Wk(e))return e;throw Xk(Yk(e)+" is not an object")}});var Se=q(function(jd){var Qk=ae(),Jk=Ys(),Zk=Xs(),ha=oe(),Nd=gi(),ex=TypeError,Qs=Object.defineProperty,rx=Object.getOwnPropertyDescriptor,Js="enumerable",Zs="configurable",ef="writable";jd.f=Qk?Zk?function(r,t,n){if(ha(r),t=Nd(t),ha(n),typeof r=="function"&&t==="prototype"&&"value"in n&&ef in n&&!n[ef]){var i=rx(r,t);i&&i[ef]&&(r[t]=n.value,n={configurable:Zs in n?n[Zs]:i[Zs],enumerable:Js in n?n[Js]:i[Js],writable:!1})}return Qs(r,t,n)}:Qs:function(r,t,n){if(ha(r),t=Nd(t),ha(n),Jk)try{return Qs(r,t,n)}catch(i){}if("get"in n||"set"in n)throw ex("Accessors not supported");return"value"in n&&(r[t]=n.value),r}});var wr=q(function(Q4,Ld){var tx=ae(),nx=Se(),ix=Wt();Ld.exports=tx?function(e,r,t){return nx.f(e,r,ix(1,t))}:function(e,r,t){return e[r]=t,e}});var ut=q(function(J4,Dd){var rf=ae(),ox=ue(),Cd=Function.prototype,ax=rf&&Object.getOwnPropertyDescriptor,tf=ox(Cd,"name"),ux=tf&&function(){}.name==="something",sx=tf&&(!rf||rf&&ax(Cd,"name").configurable);Dd.exports={EXISTS:tf,PROPER:ux,CONFIGURABLE:sx}});var da=q(function(Z4,Bd){var fx=W(),cx=re(),nf=va(),lx=fx(Function.toString);cx(nf.inspectSource)||(nf.inspectSource=function(e){return lx(e)});Bd.exports=nf.inspectSource});var of=q(function(eY,Gd){var px=X(),vx=re(),Md=px.WeakMap;Gd.exports=vx(Md)&&/native code/.test(String(Md))});var wi=q(function(rY,Ud){var hx=at(),dx=yi(),Fd=hx("keys");Ud.exports=function(e){return Fd[e]||(Fd[e]=dx(e))}});var Jt=q(function(tY,Vd){Vd.exports={}});var Ce=q(function(nY,Kd){var mx=of(),Hd=X(),yx=ce(),gx=wr(),af=ue(),uf=va(),bx=wi(),wx=Jt(),zd="Object already initialized",sf=Hd.TypeError,Sx=Hd.WeakMap,ma,Si,ya,Ox=function(e){return ya(e)?Si(e):ma(e,{})},_x=function(e){return function(r){var t;if(!yx(r)||(t=Si(r)).type!==e)throw sf("Incompatible receiver, "+e+" required");return t}};mx||uf.state?(tr=uf.state||(uf.state=new Sx),tr.get=tr.get,tr.has=tr.has,tr.set=tr.set,ma=function(e,r){if(tr.has(e))throw sf(zd);return r.facade=e,tr.set(e,r),r},Si=function(e){return tr.get(e)||{}},ya=function(e){return tr.has(e)}):(st=bx("state"),wx[st]=!0,ma=function(e,r){if(af(e,st))throw sf(zd);return r.facade=e,gx(e,st,r),r},Si=function(e){return af(e,st)?e[st]:{}},ya=function(e){return af(e,st)});var tr,st;Kd.exports={set:ma,get:Si,has:ya,enforce:Ox,getterFor:_x}});var lf=q(function(iY,Xd){var cf=W(),Px=K(),Ex=re(),ga=ue(),ff=ae(),Ix=ut().CONFIGURABLE,qx=da(),Yd=Ce(),Tx=Yd.enforce,kx=Yd.get,Wd=String,ba=Object.defineProperty,xx=cf("".slice),Rx=cf("".replace),Ax=cf([].join),$x=ff&&!Px(function(){return ba(function(){},"length",{value:8}).length!==8}),Nx=String(String).split("String"),jx=Xd.exports=function(e,r,t){xx(Wd(r),0,7)==="Symbol("&&(r="["+Rx(Wd(r),/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(r="get "+r),t&&t.setter&&(r="set "+r),(!ga(e,"name")||Ix&&e.name!==r)&&(ff?ba(e,"name",{value:r,configurable:!0}):e.name=r),$x&&t&&ga(t,"arity")&&e.length!==t.arity&&ba(e,"length",{value:t.arity});try{t&&ga(t,"constructor")&&t.constructor?ff&&ba(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(i){}var n=Tx(e);return ga(n,"source")||(n.source=Ax(Nx,typeof r=="string"?r:"")),e};Function.prototype.toString=jx(function(){return Ex(this)&&kx(this).source||qx(this)},"toString")});var Oe=q(function(oY,Qd){var Lx=re(),Cx=Se(),Dx=lf(),Bx=pa();Qd.exports=function(e,r,t,n){n||(n={});var i=n.enumerable,a=n.name!==void 0?n.name:r;if(Lx(t)&&Dx(t,a,n),n.global)i?e[r]=t:Bx(r,t);else{try{n.unsafe?e[r]&&(i=!0):delete e[r]}catch(s){}i?e[r]=t:Cx.f(e,r,{value:t,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return e}});var Zd=q(function(aY,Jd){var Mx=Math.ceil,Gx=Math.floor;Jd.exports=Math.trunc||function(r){var t=+r;return(t>0?Gx:Mx)(t)}});var Sr=q(function(uY,em){var Fx=Zd();em.exports=function(e){var r=+e;return r!==r||r===0?0:Fx(r)}});var ft=q(function(sY,rm){var Ux=Sr(),Vx=Math.max,zx=Math.min;rm.exports=function(e,r){var t=Ux(e);return t<0?Vx(t+r,0):zx(t,r)}});var lr=q(function(fY,tm){var Hx=Sr(),Kx=Math.min;tm.exports=function(e){return e>0?Kx(Hx(e),9007199254740991):0}});var De=q(function(cY,nm){var Wx=lr();nm.exports=function(e){return Wx(e.length)}});var wa=q(function(lY,om){var Yx=Le(),Xx=ft(),Qx=De(),im=function(e){return function(r,t,n){var i=Yx(r),a=Qx(i),s=Xx(n,a),c;if(e&&t!=t){for(;a>s;)if(c=i[s++],c!=c)return!0}else for(;a>s;s++)if((e||s in i)&&i[s]===t)return e||s||0;return!e&&-1}};om.exports={includes:im(!0),indexOf:im(!1)}});var vf=q(function(pY,um){var Jx=W(),pf=ue(),Zx=Le(),eR=wa().indexOf,rR=Jt(),am=Jx([].push);um.exports=function(e,r){var t=Zx(e),n=0,i=[],a;for(a in t)!pf(rR,a)&&pf(t,a)&&am(i,a);for(;r.length>n;)pf(t,a=r[n++])&&(~eR(i,a)||am(i,a));return i}});var Sa=q(function(vY,sm){sm.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var jr=q(function(fm){var tR=vf(),nR=Sa(),iR=nR.concat("length","prototype");fm.f=Object.getOwnPropertyNames||function(r){return tR(r,iR)}});var Oa=q(function(cm){cm.f=Object.getOwnPropertySymbols});var hf=q(function(mY,lm){var oR=Ae(),aR=W(),uR=jr(),sR=Oa(),fR=oe(),cR=aR([].concat);lm.exports=oR("Reflect","ownKeys")||function(r){var t=uR.f(fR(r)),n=sR.f;return n?cR(t,n(r)):t}});var df=q(function(yY,vm){var pm=ue(),lR=hf(),pR=rr(),vR=Se();vm.exports=function(e,r,t){for(var n=lR(r),i=vR.f,a=pR.f,s=0;s>>0||(r1(xm,n)?16:10))}:Ii});var wf=q(function(TY,Nm){"use strict";var i1=oe();Nm.exports=function(){var e=i1(this),r="";return e.hasIndices&&(r+="d"),e.global&&(r+="g"),e.ignoreCase&&(r+="i"),e.multiline&&(r+="m"),e.dotAll&&(r+="s"),e.unicode&&(r+="u"),e.unicodeSets&&(r+="v"),e.sticky&&(r+="y"),r}});var qi=q(function(kY,jm){var Sf=K(),o1=X(),Of=o1.RegExp,_f=Sf(function(){var e=Of("a","y");return e.lastIndex=2,e.exec("abcd")!=null}),a1=_f||Sf(function(){return!Of("a","y").sticky}),u1=_f||Sf(function(){var e=Of("^r","gy");return e.lastIndex=2,e.exec("str")!=null});jm.exports={BROKEN_CARET:u1,MISSED_STICKY:a1,UNSUPPORTED_Y:_f}});var Ti=q(function(xY,Lm){var s1=vf(),f1=Sa();Lm.exports=Object.keys||function(r){return s1(r,f1)}});var Ea=q(function(Cm){var c1=ae(),l1=Xs(),p1=Se(),v1=oe(),h1=Le(),d1=Ti();Cm.f=c1&&!l1?Object.defineProperties:function(r,t){v1(r);for(var n=h1(t),i=d1(t),a=i.length,s=0,c;a>s;)p1.f(r,c=i[s++],n[c]);return r}});var Pf=q(function(AY,Dm){var m1=Ae();Dm.exports=m1("document","documentElement")});var Lr=q(function($Y,zm){var y1=oe(),g1=Ea(),Bm=Sa(),b1=Jt(),w1=Pf(),S1=bi(),O1=wi(),Mm=">",Gm="<",If="prototype",qf="script",Um=O1("IE_PROTO"),Ef=function(){},Vm=function(e){return Gm+qf+Mm+e+Gm+"/"+qf+Mm},Fm=function(e){e.write(Vm("")),e.close();var r=e.parentWindow.Object;return e=null,r},_1=function(){var e=S1("iframe"),r="java"+qf+":",t;return e.style.display="none",w1.appendChild(e),e.src=String(r),t=e.contentWindow.document,t.open(),t.write(Vm("document.F=Object")),t.close(),t.F},Ia,qa=function(){try{Ia=new ActiveXObject("htmlfile")}catch(r){}qa=typeof document!="undefined"?document.domain&&Ia?Fm(Ia):_1():Fm(Ia);for(var e=Bm.length;e--;)delete qa[If][Bm[e]];return qa()};b1[Um]=!0;zm.exports=Object.create||function(r,t){var n;return r!==null?(Ef[If]=y1(r),n=new Ef,Ef[If]=null,n[Um]=r):n=qa(),t===void 0?n:g1.f(n,t)}});var Tf=q(function(NY,Hm){var P1=K(),E1=X(),I1=E1.RegExp;Hm.exports=P1(function(){var e=I1(".","s");return!(e.dotAll&&e.exec("\n")&&e.flags==="s")})});var kf=q(function(jY,Km){var q1=K(),T1=X(),k1=T1.RegExp;Km.exports=q1(function(){var e=k1("(?b)","g");return e.exec("b").groups.a!=="b"||"b".replace(e,"$c")!=="bc"})});var ki=q(function(LY,Ym){"use strict";var rn=ie(),ka=W(),x1=he(),R1=wf(),A1=qi(),$1=at(),N1=Lr(),j1=Ce().get,L1=Tf(),C1=kf(),D1=$1("native-string-replace",String.prototype.replace),Ta=RegExp.prototype.exec,Rf=Ta,B1=ka("".charAt),M1=ka("".indexOf),G1=ka("".replace),xf=ka("".slice),Af=function(){var e=/a/,r=/b*/g;return rn(Ta,e,"a"),rn(Ta,r,"a"),e.lastIndex!==0||r.lastIndex!==0}(),Wm=A1.BROKEN_CARET,$f=/()??/.exec("")[1]!==void 0,F1=Af||$f||Wm||L1||C1;F1&&(Rf=function(r){var t=this,n=j1(t),i=x1(r),a=n.raw,s,c,l,p,m,y,g;if(a)return a.lastIndex=t.lastIndex,s=rn(Rf,a,i),t.lastIndex=a.lastIndex,s;var b=n.groups,O=Wm&&t.sticky,x=rn(R1,t),T=t.source,E=0,P=i;if(O&&(x=G1(x,"y",""),M1(x,"g")===-1&&(x+="g"),P=xf(i,t.lastIndex),t.lastIndex>0&&(!t.multiline||t.multiline&&B1(i,t.lastIndex-1)!=="\n")&&(T="(?: "+T+")",P=" "+P,E++),c=new RegExp("^(?:"+T+")",x)),$f&&(c=new RegExp("^"+T+"$(?!\\s)",x)),Af&&(l=t.lastIndex),p=rn(Ta,O?c:t,P),O?p?(p.input=xf(p.input,E),p[0]=xf(p[0],E),p.index=t.lastIndex,t.lastIndex+=p[0].length):t.lastIndex=0:Af&&p&&(t.lastIndex=t.global?p.index+p[0].length:l),$f&&p&&p.length>1&&rn(D1,p[0],c,function(){for(m=1;mT;T++)if((c||T in b)&&($=b[T],R=O($,T,g),e))if(r)P[T]=R;else if(R)switch(e){case 3:return!0;case 5:return $;case 6:return T;case 2:Iy(P,$)}else switch(e){case 4:return!1;case 7:Iy(P,$)}return a?-1:n||i?i:P}};qy.exports={forEach:Br(0),map:Br(1),filter:Br(2),some:Br(3),every:Br(4),find:Br(5),findIndex:Br(6),filterReject:Br(7)}});var tn=q(function(n7,Ty){var bA=ne(),wA=Lr(),SA=Se().f,Lf=bA("unscopables"),Cf=Array.prototype;Cf[Lf]==null&&SA(Cf,Lf,{configurable:!0,value:wA(null)});Ty.exports=function(e){Cf[Lf][e]=!0}});var Ry=q(function(i7,xy){"use strict";var EA=_a(),IA=_i();xy.exports=EA?{}.toString:function(){return"[object "+IA(this)+"]"}});var $i=q(function(o7,Ly){"use strict";de();var Ay=ct(),$y=Oe(),xA=ki(),Ny=K(),jy=ne(),RA=wr(),AA=jy("species"),Bf=RegExp.prototype;Ly.exports=function(e,r,t,n){var i=jy(e),a=!Ny(function(){var p={};return p[i]=function(){return 7},""[e](p)!=7}),s=a&&!Ny(function(){var p=!1,m=/a/;return e==="split"&&(m={},m.constructor={},m.constructor[AA]=function(){return m},m.flags="",m[i]=/./[i]),m.exec=function(){return p=!0,null},m[i](""),!p});if(!a||!s||t){var c=Ay(/./[i]),l=r(i,""[e],function(p,m,y,g,b){var O=Ay(p),x=m.exec;return x===xA||x===Bf.exec?a&&!b?{done:!0,value:c(m,y,g)}:{done:!0,value:O(y,m,g)}:{done:!1}});$y(String.prototype,e,l[0]),$y(Bf,i,l[1])}n&&RA(Bf[i],"sham",!0)}});var Gf=q(function(a7,By){var Mf=W(),$A=Sr(),NA=he(),jA=Ke(),LA=Mf("".charAt),Cy=Mf("".charCodeAt),CA=Mf("".slice),Dy=function(e){return function(r,t){var n=NA(jA(r)),i=$A(t),a=n.length,s,c;return i<0||i>=a?e?"":void 0:(s=Cy(n,i),s<55296||s>56319||i+1===a||(c=Cy(n,i+1))<56320||c>57343?e?LA(n,i):s:e?CA(n,i,i+2):(s-55296<<10)+(c-56320)+65536)}};By.exports={codeAt:Dy(!1),charAt:Dy(!0)}});var Ra=q(function(u7,My){"use strict";var DA=Gf().charAt;My.exports=function(e,r,t){return r+(t?DA(e,r).length:1)}});var Ni=q(function(s7,Fy){var Gy=ie(),BA=oe(),MA=re(),GA=ze(),FA=ki(),UA=TypeError;Fy.exports=function(e,r){var t=e.exec;if(MA(t)){var n=Gy(t,e,r);return n!==null&&BA(n),n}if(GA(e)==="RegExp")return Gy(FA,e,r);throw UA("RegExp#exec called on incompatible receiver")}});var Wy=q(function(f7,Ky){var Hy=X(),JA=K(),ZA=W(),e$=he(),r$=Ei().trim,t$=Pi(),n$=ZA("".charAt),Aa=Hy.parseFloat,Vy=Hy.Symbol,zy=Vy&&Vy.iterator,i$=1/Aa(t$+"-0")!==-1/0||zy&&!JA(function(){Aa(Object(zy))});Ky.exports=i$?function(r){var t=r$(e$(r)),n=Aa(t);return n===0&&n$(t,0)=="-"?-0:n}:Aa});var nn=q(function(c7,Zy){var a$=Kt(),Jy=Function.prototype,Xy=Jy.apply,Qy=Jy.call;Zy.exports=typeof Reflect=="object"&&Reflect.apply||(a$?Qy.bind(Xy):function(){return Qy.apply(Xy,arguments)})});var rg=q(function(l7,eg){var zf=W(),u$=Ne(),s$=Math.floor,Uf=zf("".charAt),f$=zf("".replace),Vf=zf("".slice),c$=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l$=/\$([$&'`]|\d{1,2})/g;eg.exports=function(e,r,t,n,i,a){var s=t+e.length,c=n.length,l=l$;return i!==void 0&&(i=u$(i),l=c$),f$(a,l,function(p,m){var y;switch(Uf(m,0)){case"$":return"$";case"&":return e;case"`":return Vf(r,0,t);case"'":return Vf(r,s);case"<":y=i[Vf(m,1,-1)];break;default:var g=+m;if(g===0)return p;if(g>c){var b=s$(g/10);return b===0?p:b<=c?n[b-1]===void 0?Uf(m,1):n[b-1]+Uf(m,1):p}y=n[g-1]}return y===void 0?"":y})}});var Na=q(function(p7,ag){var A$=TypeError,$$=9007199254740991;ag.exports=function(e){if(e>$$)throw A$("Maximum allowed index exceeded");return e}});var pt=q(function(v7,ug){"use strict";var N$=gi(),j$=Se(),L$=Wt();ug.exports=function(e,r,t){var n=N$(r);n in e?j$.f(e,n,L$(0,t)):e[n]=t}});var an=q(function(h7,sg){var C$=K(),D$=ne(),B$=Yt(),M$=D$("species");sg.exports=function(e){return B$>=51||!C$(function(){var r=[],t=r.constructor={};return t[M$]=function(){return{foo:1}},r[e](Boolean).foo!==1})}});var Wf=q(function(d7,pg){pg.exports=Object.is||function(r,t){return r===t?r!==0||1/r===1/t:r!=r&&t!=t}});var ja=q(function(m7,dg){var uN=ce(),sN=ze(),fN=ne(),cN=fN("match");dg.exports=function(e){var r;return uN(e)&&((r=e[cN])!==void 0?!!r:sN(e)=="RegExp")}});var Yf=q(function(y7,mg){var lN=Ri(),pN=ot(),vN=TypeError;mg.exports=function(e){if(lN(e))return e;throw vN(pN(e)+" is not a constructor")}});var ji=q(function(g7,gg){var yg=oe(),hN=Yf(),dN=He(),mN=ne(),yN=mN("species");gg.exports=function(e,r){var t=yg(e).constructor,n;return t===void 0||dN(n=yg(t)[yN])?r:hN(n)}});var La=q(function(b7,wg){var bg=ft(),gN=De(),bN=pt(),wN=Array,SN=Math.max;wg.exports=function(e,r,t){for(var n=gN(e),i=bg(r,n),a=bg(t===void 0?n:t,n),s=wN(SN(a-i,0)),c=0;iy;y++)if(b=E(e[y]),b&&fS(lS,b))return b;return new nu(!1)}p=PD(e,m)}for(O=a?e.next:p.next;!(x=bD(O,p)).done;){try{b=E(x.value)}catch(P){cS(p,"throw",P)}if(typeof b=="object"&&b&&fS(lS,b))return b}return new nu(!1)}});var iu=q(function(y9,mS){var qD=ne(),hS=qD("iterator"),dS=!1;try{vS=0,Jc={next:function(){return{done:!!vS++}},return:function(){dS=!0}},Jc[hS]=function(){return this},Array.from(Jc,function(){throw 2})}catch(e){}var vS,Jc;mS.exports=function(e,r){if(!r&&!dS)return!1;var t=!1;try{var n={};n[hS]=function(){return{next:function(){return{done:t=!0}}}},e(n)}catch(i){}return t}});var ou=q(function(g9,yS){var TD=gt(),kD=iu(),xD=gn().CONSTRUCTOR;yS.exports=xD||!kD(function(e){TD.all(e).then(void 0,function(){})})});var gS=q(function(){"use strict";var RD=M(),AD=ie(),$D=We(),ND=bt(),jD=Qi(),LD=St(),CD=ou();RD({target:"Promise",stat:!0,forced:CD},{all:function(r){var t=this,n=ND.f(t),i=n.resolve,a=n.reject,s=jD(function(){var c=$D(t.resolve),l=[],p=0,m=1;LD(r,function(y){var g=p++,b=!1;m++,AD(c,t,y).then(function(O){b||(b=!0,l[g]=O,--m||i(l))},a)}),--m||i(l)});return s.error&&a(s.value),n.promise}})});var wS=q(function(){"use strict";var DD=M(),BD=$e(),MD=gn().CONSTRUCTOR,el=gt(),GD=Ae(),FD=re(),UD=Oe(),bS=el&&el.prototype;DD({target:"Promise",proto:!0,forced:MD,real:!0},{catch:function(e){return this.then(void 0,e)}});!BD&&FD(el)&&(Zc=GD("Promise").prototype.catch,bS.catch!==Zc&&UD(bS,"catch",Zc,{unsafe:!0}));var Zc});var SS=q(function(){"use strict";var VD=M(),zD=ie(),HD=We(),KD=bt(),WD=Qi(),YD=St(),XD=ou();VD({target:"Promise",stat:!0,forced:XD},{race:function(r){var t=this,n=KD.f(t),i=n.reject,a=WD(function(){var s=HD(t.resolve);YD(r,function(c){zD(s,t,c).then(n.resolve,i)})});return a.error&&i(a.value),n.promise}})});var OS=q(function(){"use strict";var QD=M(),JD=ie(),ZD=bt(),eB=gn().CONSTRUCTOR;QD({target:"Promise",stat:!0,forced:eB},{reject:function(r){var t=ZD.f(this);return JD(t.reject,void 0,r),t.promise}})});var rl=q(function(q9,_S){var rB=oe(),tB=ce(),nB=bt();_S.exports=function(e,r){if(rB(e),tB(r)&&r.constructor===e)return r;var t=nB.f(e),n=t.resolve;return n(r),t.promise}});var IS=q(function(){"use strict";var iB=M(),oB=Ae(),PS=$e(),aB=gt(),ES=gn().CONSTRUCTOR,uB=rl(),sB=oB("Promise"),fB=PS&&!ES;iB({target:"Promise",stat:!0,forced:PS||ES},{resolve:function(r){return uB(fB&&this===sB?aB:this,r)}})});var tl=q(function(x9,qS){var lB=K();qS.exports=!lB(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})});var Pn=q(function(R9,kS){var pB=ue(),vB=re(),hB=Ne(),dB=wi(),mB=tl(),TS=dB("IE_PROTO"),nl=Object,yB=nl.prototype;kS.exports=mB?nl.getPrototypeOf:function(e){var r=hB(e);if(pB(r,TS))return r[TS];var t=r.constructor;return vB(t)&&r instanceof t?t.prototype:r instanceof nl?yB:null}});var ul=q(function(A9,AS){"use strict";var gB=K(),bB=re(),wB=ce(),SB=Lr(),xS=Pn(),OB=Oe(),_B=ne(),PB=$e(),al=_B("iterator"),RS=!1,Pr,il,ol;[].keys&&(ol=[].keys(),"next"in ol?(il=xS(xS(ol)),il!==Object.prototype&&(Pr=il)):RS=!0);var EB=!wB(Pr)||gB(function(){var e={};return Pr[al].call(e)!==e});EB?Pr={}:PB&&(Pr=SB(Pr));bB(Pr[al])||OB(Pr,al,function(){return this});AS.exports={IteratorPrototype:Pr,BUGGY_SAFARI_ITERATORS:RS}});var NS=q(function($9,$S){"use strict";var IB=ul().IteratorPrototype,qB=Lr(),TB=Wt(),kB=nr(),xB=_n(),RB=function(){return this};$S.exports=function(e,r,t,n){var i=r+" Iterator";return e.prototype=qB(IB,{next:TB(+!n,t)}),kB(e,i,!1,!0),xB[i]=RB,e}});var su=q(function(N9,VS){"use strict";var AB=M(),$B=ie(),au=$e(),FS=ut(),NB=re(),jB=NS(),jS=Pn(),LS=vn(),LB=nr(),CB=wr(),sl=Oe(),DB=ne(),CS=_n(),US=ul(),BB=FS.PROPER,MB=FS.CONFIGURABLE,DS=US.IteratorPrototype,uu=US.BUGGY_SAFARI_ITERATORS,Zi=DB("iterator"),BS="keys",eo="values",MS="entries",GS=function(){return this};VS.exports=function(e,r,t,n,i,a,s){jB(t,r,n);var c=function(E){if(E===i&&g)return g;if(!uu&&E in m)return m[E];switch(E){case BS:return function(){return new t(this,E)};case eo:return function(){return new t(this,E)};case MS:return function(){return new t(this,E)}}return function(){return new t(this)}},l=r+" Iterator",p=!1,m=e.prototype,y=m[Zi]||m["@@iterator"]||i&&m[i],g=!uu&&y||c(i),b=r=="Array"&&m.entries||y,O,x,T;if(b&&(O=jS(b.call(new e)),O!==Object.prototype&&O.next&&(!au&&jS(O)!==DS&&(LS?LS(O,DS):NB(O[Zi])||sl(O,Zi,GS)),LB(O,l,!0,!0),au&&(CS[l]=GS))),BB&&i==eo&&y&&y.name!==eo&&(!au&&MB?CB(m,"name",eo):(p=!0,g=function(){return $B(y,this)})),i)if(x={values:c(eo),keys:a?g:c(BS),entries:c(MS)},s)for(T in x)(uu||p||!(T in m))&&sl(m,T,x[T]);else AB({target:r,proto:!0,forced:uu||p},x);return(!au||s)&&m[Zi]!==g&&sl(m,Zi,g,{name:i}),CS[r]=g,x}});var fu=q(function(j9,zS){zS.exports=function(e,r){return{value:e,done:r}}});var V=q(function(L9,XS){"use strict";var GB=Le(),fl=tn(),HS=_n(),WS=Ce(),FB=Se().f,UB=su(),cu=fu(),VB=$e(),zB=ae(),YS="Array Iterator",HB=WS.set,KB=WS.getterFor(YS);XS.exports=UB(Array,"Array",function(e,r){HB(this,{type:YS,target:GB(e),index:0,kind:r})},function(){var e=KB(this),r=e.target,t=e.kind,n=e.index++;return!r||n>=r.length?(e.target=void 0,cu(void 0,!0)):t=="keys"?cu(n,!1):t=="values"?cu(r[n],!1):cu([n,r[n]],!1)},"values");var KS=HS.Arguments=HS.Array;fl("keys");fl("values");fl("entries");if(!VB&&zB&&KS.name!=="values")try{FB(KS,"name",{value:"values"})}catch(e){}});var cl=q(function(C9,e0){e0.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}});var pl=q(function(D9,t0){var ZB=bi(),ll=ZB("span").classList,r0=ll&&ll.constructor&&ll.constructor.prototype;t0.exports=r0===Object.prototype?void 0:r0});var ml=q(function(B9,f0){"use strict";var v2=Mr().forEach,h2=en(),d2=h2("forEach");f0.exports=d2?[].forEach:function(r){return v2(this,r,arguments.length>1?arguments[1]:void 0)}});var bl=q(function(M9,S0){var U2=ie(),V2=ue(),z2=br(),H2=wf(),w0=RegExp.prototype;S0.exports=function(e){var r=e.flags;return r===void 0&&!("flags"in w0)&&!V2(e,"flags")&&z2(w0,e)?U2(H2,e):r}});var q0=q(function(G9,I0){"use strict";var iM=ae(),oM=Dr(),aM=TypeError,uM=Object.getOwnPropertyDescriptor,sM=iM&&!function(){if(this!==void 0)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(e){return e instanceof TypeError}}();I0.exports=sM?function(e,r){if(oM(e)&&!uM(e,"length").writable)throw aM("Cannot set read only .length");return e.length=r}:function(e,r){return e.length=r}});var x0=q(function(F9,k0){"use strict";var T0=ot(),fM=TypeError;k0.exports=function(e,r){if(!delete e[r])throw fM("Cannot delete property "+T0(r)+" of "+T0(e))}});var W0=q(function($X,K0){"use strict";var z0=W(),CM=We(),DM=ce(),BM=ue(),V0=Fi(),MM=Kt(),H0=Function,GM=z0([].concat),FM=z0([].join),xl={},UM=function(e,r,t){if(!BM(xl,r)){for(var n=[],i=0;i1?arguments[1]:void 0,s=a!==void 0;s&&(a=HG(a,i>2?arguments[2]:void 0));var c=eF(t),l=0,p,m,y,g,b,O;if(c&&!(this===PO&&XG(c)))for(g=ZG(t,c),b=g.next,m=n?new this:[];!(y=KG(b,g)).done;l++)O=s?YG(g,a,[y.value,l],!0):y.value,_O(m,l,O);else for(p=JG(t),m=n?new this(p):PO(p);p>l;l++)O=s?a(t[l],l):t[l],_O(m,l,O);return m.length=l,m}});var JO=q(function(CZ,QO){var XO=ue();QO.exports=function(e){return e!==void 0&&(XO(e,"value")||XO(e,"writable"))}});var sp=q(function(coe,H_){var zV=ae(),z_=W(),HV=Ti(),KV=Le(),WV=ca().f,YV=z_(WV),XV=z_([].push),V_=function(e){return function(r){for(var t=KV(r),n=HV(t),i=n.length,a=0,s=[],c;i>a;)c=n[a++],(!zV||YV(t,c))&&XV(s,e?[c,t[c]]:t[c]);return s}};H_.exports={entries:V_(!0),values:V_(!1)}});var Uu=q(function(Fse,PP){var SH=K();PP.exports=!SH(function(){return Object.isExtensible(Object.preventExtensions({}))})});var IP=q(function(Use,EP){var OH=K();EP.exports=OH(function(){if(typeof ArrayBuffer=="function"){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}})});var kP=q(function(Vse,TP){var _H=K(),PH=ce(),EH=ze(),qP=IP(),Vu=Object.isExtensible,IH=_H(function(){Vu(1)});TP.exports=IH||qP?function(r){return!PH(r)||qP&&EH(r)=="ArrayBuffer"?!1:Vu?Vu(r):!0}:Vu});var Qn=q(function(zse,AP){var qH=M(),TH=W(),kH=Jt(),xH=ce(),xp=ue(),RH=Se().f,xP=jr(),AH=Ca(),Rp=kP(),$H=yi(),NH=Uu(),RP=!1,Tr=$H("meta"),jH=0,Ap=function(e){RH(e,Tr,{value:{objectID:"O"+jH++,weakData:{}}})},LH=function(e,r){if(!xH(e))return typeof e=="symbol"?e:(typeof e=="string"?"S":"P")+e;if(!xp(e,Tr)){if(!Rp(e))return"F";if(!r)return"E";Ap(e)}return e[Tr].objectID},CH=function(e,r){if(!xp(e,Tr)){if(!Rp(e))return!0;if(!r)return!1;Ap(e)}return e[Tr].weakData},DH=function(e){return NH&&RP&&Rp(e)&&!xp(e,Tr)&&Ap(e),e},BH=function(){MH.enable=function(){},RP=!0;var e=xP.f,r=TH([].splice),t={};t[Tr]=1,e(t).length&&(xP.f=function(n){for(var i=e(n),a=0,s=i.length;a1?arguments[1]:void 0),b;b=b?b.next:y.first;)for(g(b.value,b.key,this);b&&b.removed;)b=b.previous},has:function(m){return!!l(this,m)}}),LP(a,t?{get:function(m){var y=l(this,m);return y&&y.value},set:function(m,y){return c(this,m===0?0:m,y)}}:{add:function(m){return c(this,m=m===0?0:m,m)}}),To&&u8(a,"size",{configurable:!0,get:function(){return s(this).size}}),i},setStrong:function(e,r,t){var n=r+" Iterator",i=Lp(r),a=Lp(n);p8(e,r,function(s,c){DP(this,{type:n,target:s,state:i(s),kind:c,last:void 0})},function(){for(var s=a(this),c=s.kind,l=s.last;l&&l.removed;)l=l.previous;return!s.target||!(s.last=l=l?l.next:s.state.first)?(s.target=void 0,zu(void 0,!0)):c=="keys"?zu(l.key,!1):c=="values"?zu(l.value,!1):zu([l.key,l.value],!1)},t?"entries":"values",!t,!0),v8(r)}}});var GP=q(function(){"use strict";var h8=Io(),d8=Cp();h8("Map",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},d8)});var Gp=q(function(Qse,KP){"use strict";var _8=W(),FP=qo(),Hu=Qn().getWeakData,P8=mn(),E8=oe(),I8=He(),Bp=ce(),q8=St(),VP=Mr(),UP=ue(),zP=Ce(),T8=zP.set,k8=zP.getterFor,x8=VP.find,R8=VP.findIndex,A8=_8([].splice),$8=0,Ku=function(e){return e.frozen||(e.frozen=new HP)},HP=function(){this.entries=[]},Mp=function(e,r){return x8(e.entries,function(t){return t[0]===r})};HP.prototype={get:function(e){var r=Mp(this,e);if(r)return r[1]},has:function(e){return!!Mp(this,e)},set:function(e,r){var t=Mp(this,e);t?t[1]=r:this.entries.push([e,r])},delete:function(e){var r=R8(this.entries,function(t){return t[0]===e});return~r&&A8(this.entries,r,1),!!~r}};KP.exports={getConstructor:function(e,r,t,n){var i=e(function(l,p){P8(l,a),T8(l,{type:r,id:$8++,frozen:void 0}),I8(p)||q8(p,l[n],{that:l,AS_ENTRIES:t})}),a=i.prototype,s=k8(r),c=function(l,p,m){var y=s(l),g=Hu(E8(p),!0);return g===!0?Ku(y).set(p,m):g[y.id]=m,l};return FP(a,{delete:function(l){var p=s(this);if(!Bp(l))return!1;var m=Hu(l);return m===!0?Ku(p).delete(l):m&&UP(m,p.id)&&delete m[p.id]},has:function(p){var m=s(this);if(!Bp(p))return!1;var y=Hu(p);return y===!0?Ku(m).has(p):y&&UP(y,m.id)}}),FP(a,t?{get:function(p){var m=s(this);if(Bp(p)){var y=Hu(p);return y===!0?Ku(m).get(p):y?y[m.id]:void 0}},set:function(p,m){return c(this,p,m)}}:{add:function(p){return c(this,p,!0)}}),i}}});var nE=q(function(){"use strict";var N8=Uu(),WP=X(),Qu=W(),YP=qo(),j8=Qn(),L8=Io(),JP=Gp(),Wu=ce(),Yu=Ce().enforce,C8=K(),D8=of(),Ro=Object,B8=Array.isArray,Xu=Ro.isExtensible,ZP=Ro.isFrozen,M8=Ro.isSealed,eE=Ro.freeze,G8=Ro.seal,XP={},QP={},F8=!WP.ActiveXObject&&"ActiveXObject"in WP,ko,rE=function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},tE=L8("WeakMap",rE,JP),Jn=tE.prototype,Ju=Qu(Jn.set),U8=function(){return N8&&C8(function(){var e=eE([]);return Ju(new tE,e,1),!ZP(e)})};D8&&(F8?(ko=JP.getConstructor(rE,"WeakMap",!0),j8.enable(),Fp=Qu(Jn.delete),xo=Qu(Jn.has),Up=Qu(Jn.get),YP(Jn,{delete:function(e){if(Wu(e)&&!Xu(e)){var r=Yu(this);return r.frozen||(r.frozen=new ko),Fp(this,e)||r.frozen.delete(e)}return Fp(this,e)},has:function(r){if(Wu(r)&&!Xu(r)){var t=Yu(this);return t.frozen||(t.frozen=new ko),xo(this,r)||t.frozen.has(r)}return xo(this,r)},get:function(r){if(Wu(r)&&!Xu(r)){var t=Yu(this);return t.frozen||(t.frozen=new ko),xo(this,r)?Up(this,r):t.frozen.get(r)}return Up(this,r)},set:function(r,t){if(Wu(r)&&!Xu(r)){var n=Yu(this);n.frozen||(n.frozen=new ko),xo(this,r)?Ju(this,r,t):n.frozen.set(r,t)}else Ju(this,r,t);return this}})):U8()&&YP(Jn,{set:function(r,t){var n;return B8(r)&&(ZP(r)?n=XP:M8(r)&&(n=QP)),Ju(this,r,t),n==XP&&eE(r),n==QP&&G8(r),this}}));var Fp,xo,Up});var iE=q(function(){"use strict";var V8=Io(),z8=Cp();V8("Set",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},z8)});var uE=q(function(tfe,aE){"use strict";var H8=Dr(),K8=De(),W8=Na(),Y8=Cr(),oE=function(e,r,t,n,i,a,s,c){for(var l=i,p=0,m=s?Y8(s,c):!1,y,g;p0&&H8(y)?(g=K8(y),l=oE(e,r,y,g,l,a-1)-1):(W8(l+1),e[l]=y),l++),p++;return l};aE.exports=oE});var cE=q(function(nfe,fE){var nK=We(),iK=Ne(),oK=di(),aK=De(),uK=TypeError,sE=function(e){return function(r,t,n,i){nK(t);var a=iK(r),s=oK(a),c=aK(a),l=e?c-1:0,p=e?-1:1;if(n<2)for(;;){if(l in s){i=s[l],l+=p;break}if(l+=p,e?l<0:c<=l)throw uK("Reduce of empty array with no initial value")}for(;e?l>=0:c>l;l+=p)l in s&&(i=t(i,s[l],l,a));return i}};fE.exports={left:sE(!1),right:sE(!0)}});var PE=q(function(mce,_E){var FK=Se().f;_E.exports=function(e,r,t){t in e||FK(e,t,{configurable:!0,get:function(){return r[t]},set:function(n){r[t]=n}})}});var as=q(function(yce,NE){var b3=ja(),w3=TypeError;NE.exports=function(e){if(b3(e))throw w3("The method doesn't accept regular expressions");return e}});var us=q(function(gce,jE){var S3=ne(),O3=S3("match");jE.exports=function(e){var r=/./;try{"/./"[e](r)}catch(t){try{return r[O3]=!1,"/./"[e](r)}catch(n){}}return!1}});var av=q(function(bce,zE){"use strict";var U3=Ne(),VE=ft(),V3=De();zE.exports=function(r){for(var t=U3(this),n=V3(t),i=arguments.length,a=VE(i>1?arguments[1]:void 0,n),s=i>2?arguments[2]:void 0,c=s===void 0?n:VE(s,n);c>a;)t[a++]=r;return t}});var oh=q(function(Pye,fq){fq.exports=typeof ArrayBuffer!="undefined"&&typeof DataView!="undefined"});var lq=q(function(Eye,cq){var $W=Sr(),NW=lr(),jW=RangeError;cq.exports=function(e){if(e===void 0)return 0;var r=$W(e),t=NW(r);if(r!==t)throw jW("Wrong length or index");return t}});var vq=q(function(Iye,pq){var LW=Array,CW=Math.abs,Ar=Math.pow,DW=Math.floor,BW=Math.log,MW=Math.LN2,GW=function(e,r,t){var n=LW(t),i=t*8-r-1,a=(1<>1,c=r===23?Ar(2,-24)-Ar(2,-77):0,l=e<0||e===0&&1/e<0?1:0,p=0,m,y,g;for(e=CW(e),e!=e||e===1/0?(y=e!=e?1:0,m=a):(m=DW(BW(e)/MW),g=Ar(2,-m),e*g<1&&(m--,g*=2),m+s>=1?e+=c/g:e+=c*Ar(2,1-s),e*g>=2&&(m++,g/=2),m+s>=a?(y=0,m=a):m+s>=1?(y=(e*g-1)*Ar(2,r),m=m+s):(y=e*Ar(2,s-1)*Ar(2,r),m=0));r>=8;)n[p++]=y&255,y/=256,r-=8;for(m=m<0;)n[p++]=m&255,m/=256,i-=8;return n[--p]|=l*128,n},FW=function(e,r){var t=e.length,n=t*8-r-1,i=(1<>1,s=n-7,c=t-1,l=e[c--],p=l&127,m;for(l>>=7;s>0;)p=p*256+e[c--],s-=8;for(m=p&(1<<-s)-1,p>>=-s,s+=r;s>0;)m=m*256+e[c--],s-=8;if(p===0)p=1-a;else{if(p===i)return m?NaN:l?-1/0:1/0;m=m+Ar(2,r),p=p-a}return(l?-1:1)*m*Ar(2,p-r)};pq.exports={pack:GW,unpack:FW}});var Ts=q(function(qye,Rq){"use strict";var Is=X(),ph=W(),ah=ae(),UW=oh(),Iq=ut(),hq=wr(),VW=Gr(),dq=qo(),uh=K(),Ss=mn(),zW=Sr(),HW=lr(),Ps=lq(),qq=vq(),KW=Pn(),mq=vn(),WW=jr().f,YW=av(),XW=La(),Tq=nr(),vh=Ce(),QW=Iq.PROPER,yq=Iq.CONFIGURABLE,si="ArrayBuffer",qs="DataView",fi="prototype",JW="Wrong length",kq="Wrong index",gq=vh.getterFor(si),oa=vh.getterFor(qs),bq=vh.set,Ze=Is[si],Ue=Ze,ui=Ue&&Ue[fi],gr=Is[qs],Vt=gr&&gr[fi],wq=Object.prototype,ZW=Is.Array,Es=Is.RangeError,e6=ph(YW),r6=ph([].reverse),xq=qq.pack,Sq=qq.unpack,Oq=function(e){return[e&255]},_q=function(e){return[e&255,e>>8&255]},Pq=function(e){return[e&255,e>>8&255,e>>16&255,e>>24&255]},Eq=function(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]},t6=function(e){return xq(e,23,4)},n6=function(e){return xq(e,52,8)},Os=function(e,r,t){VW(e[fi],r,{configurable:!0,get:function(){return t(this)[r]}})},tt=function(e,r,t,n){var i=Ps(t),a=oa(e);if(i+r>a.byteLength)throw Es(kq);var s=a.bytes,c=i+a.byteOffset,l=XW(s,c,c+r);return n?l:r6(l)},nt=function(e,r,t,n,i,a){var s=Ps(t),c=oa(e);if(s+r>c.byteLength)throw Es(kq);for(var l=c.bytes,p=s+c.byteOffset,m=n(+i),y=0;ya)throw Es("Wrong offset");if(n=n===void 0?a-s:HW(n),s+n>a)throw Es(JW);bq(this,{type:qs,buffer:r,byteLength:n,byteOffset:s,bytes:i.bytes}),ah||(this.buffer=r,this.byteLength=n,this.byteOffset=s)},Vt=gr[fi],ah&&(Os(Ue,"byteLength",gq),Os(gr,"buffer",oa),Os(gr,"byteLength",oa),Os(gr,"byteOffset",oa)),dq(Vt,{getInt8:function(r){return tt(this,1,r)[0]<<24>>24},getUint8:function(r){return tt(this,1,r)[0]},getInt16:function(r){var t=tt(this,2,r,arguments.length>1?arguments[1]:void 0);return(t[1]<<8|t[0])<<16>>16},getUint16:function(r){var t=tt(this,2,r,arguments.length>1?arguments[1]:void 0);return t[1]<<8|t[0]},getInt32:function(r){return Eq(tt(this,4,r,arguments.length>1?arguments[1]:void 0))},getUint32:function(r){return Eq(tt(this,4,r,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(r){return Sq(tt(this,4,r,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(r){return Sq(tt(this,8,r,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(r,t){nt(this,1,r,Oq,t)},setUint8:function(r,t){nt(this,1,r,Oq,t)},setInt16:function(r,t){nt(this,2,r,_q,t,arguments.length>2?arguments[2]:void 0)},setUint16:function(r,t){nt(this,2,r,_q,t,arguments.length>2?arguments[2]:void 0)},setInt32:function(r,t){nt(this,4,r,Pq,t,arguments.length>2?arguments[2]:void 0)},setUint32:function(r,t){nt(this,4,r,Pq,t,arguments.length>2?arguments[2]:void 0)},setFloat32:function(r,t){nt(this,4,r,t6,t,arguments.length>2?arguments[2]:void 0)},setFloat64:function(r,t){nt(this,8,r,n6,t,arguments.length>2?arguments[2]:void 0)}});else{if(sh=QW&&Ze.name!==si,!uh(function(){Ze(1)})||!uh(function(){new Ze(-1)})||uh(function(){return new Ze,new Ze(1.5),new Ze(NaN),Ze.length!=1||sh&&!yq})){for(Ue=function(r){return Ss(this,ui),new Ze(Ps(r))},Ue[fi]=ui,fh=WW(Ze),ch=0;fh.length>ch;)(_s=fh[ch++])in Ue||hq(Ue,_s,Ze[_s]);ui.constructor=Ue}else sh&&yq&&hq(Ze,"name",si);mq&&KW(Vt)!==wq&&mq(Vt,wq),ia=new gr(new Ue(2)),lh=ph(Vt.setInt8),ia.setInt8(0,2147483648),ia.setInt8(1,2147483649),(ia.getInt8(0)||!ia.getInt8(1))&&dq(Vt,{setInt8:function(r,t){lh(this,r,t<<24>>24)},setUint8:function(r,t){lh(this,r,t<<24>>24)}},{unsafe:!0})}var sh,fh,ch,_s,ia,lh;Tq(Ue,si);Tq(gr,qs);Rq.exports={ArrayBuffer:Ue,DataView:gr}});var Dq=q(function(){var m6=M(),y6=Ts(),g6=oh();m6({global:!0,constructor:!0,forced:!g6},{DataView:y6.DataView})});var zq=q(function(){"use strict";var N6=Io(),j6=Gp();N6("WeakSet",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},j6)});var xR=M(),RR=ct(),AR=wa().indexOf,$R=en(),yf=RR([].indexOf),gm=!!yf&&1/yf([1],1,-0)<0,NR=gm||!$R("indexOf");xR({target:"Array",proto:!0,forced:NR},{indexOf:function(r){var t=arguments.length>1?arguments[1]:void 0;return gm?yf(this,r,t)||0:AR(this,r,t)}});var n1=M(),$m=Am();n1({global:!0,forced:parseInt!=$m},{parseInt:$m});var VY=N(de());de();var V1=M(),Qm=ie(),z1=re(),Jm=oe(),H1=he(),K1=function(){var e=!1,r=/[ac]/;return r.exec=function(){return e=!0,/./.exec.apply(this,arguments)},r.test("abc")===!0&&e}(),W1=/./.test;V1({target:"RegExp",proto:!0,forced:!K1},{test:function(e){var r=Jm(this),t=H1(e),n=r.exec;if(!z1(n))return Qm(W1,r,t);var i=Qm(n,r,t);return i===null?!1:(Jm(i),!0)}});var xa=N(Y());var ey=!1,ry=!1,ty=-1;function Nf(e){ey=e}function ny(e){ry=e}function iy(e){ty=e}function oy(){return ey}function lt(){return ry}function ay(){return ty}var Te;function uy(e){Te=e}function Y1(){var e=Te.indexOf("MSIE ");if(lt()&&e>0)return parseInt(Te.substring(e+5,Te.indexOf(".",e)),10);var r=Te.indexOf("Trident/");if(r>0){var t=Te.indexOf("rv:");return parseInt(Te.substring(t+3,Te.indexOf(".",t)),10)}return-1}function sy(){/\bQt\//.test(Te)?((0,xa.default)(document.documentElement).addClass("qt"),Nf(!0)):Nf(!1),/\bQt/.test(Te)&&/\bMacintosh/.test(Te)&&(0,xa.default)(document.documentElement).addClass("qtmac"),/\bQt\/5/.test(Te)&&/Linux/.test(Te)&&(0,xa.default)(document.documentElement).addClass("qt5"),ny(/MSIE|Trident|Edge/.test(Te)),iy(Y1())}var fy=N(Y());function cy(){(0,fy.default)(document).on("submit","form:not([action])",function(e){e.preventDefault()})}var ly=N(Y());function py(){var e=window.history.pushState;window.history.pushState=function(){for(var r=arguments.length,t=new Array(r),n=0;n1?arguments[1]:void 0)}});PA(Df);var qA=_a(),TA=Oe(),kA=Ry();qA||TA(Object.prototype,"toString",kA,{unsafe:!0});var Ebe=N(de());var VA=ie(),zA=$i(),HA=oe(),KA=He(),WA=lr(),Ff=he(),YA=Ke(),XA=Nr(),QA=Ra(),Uy=Ni();zA("match",function(e,r,t){return[function(i){var a=YA(this),s=KA(i)?void 0:XA(i,e);return s?VA(s,i,a):new RegExp(i)[e](Ff(a))},function(n){var i=HA(this),a=Ff(n),s=t(r,i,a);if(s.done)return s.value;if(!i.global)return Uy(i,a);var c=i.unicode;i.lastIndex=0;for(var l=[],p=0,m;(m=Uy(i,a))!==null;){var y=Ff(m[0]);l[p]=y,y===""&&(i.lastIndex=QA(a,WA(i.lastIndex),c)),p++}return p===0?null:l}]});var o$=M(),Yy=Wy();o$({global:!0,forced:parseFloat!=Yy},{parseFloat:Yy});var p$=nn(),tg=ie(),$a=W(),v$=$i(),h$=K(),d$=oe(),m$=re(),y$=He(),g$=Sr(),b$=lr(),on=he(),w$=Ke(),S$=Ra(),O$=Nr(),_$=rg(),P$=Ni(),E$=ne(),Kf=E$("replace"),I$=Math.max,q$=Math.min,T$=$a([].concat),Hf=$a([].push),ng=$a("".indexOf),ig=$a("".slice),k$=function(e){return e===void 0?e:String(e)},x$=function(){return"a".replace(/./,"$0")==="$0"}(),og=function(){return/./[Kf]?/./[Kf]("a","$0")==="":!1}(),R$=!h$(function(){var e=/./;return e.exec=function(){var r=[];return r.groups={a:"7"},r},"".replace(e,"$")!=="7"});v$("replace",function(e,r,t){var n=og?"$":"$0";return[function(a,s){var c=w$(this),l=y$(a)?void 0:O$(a,Kf);return l?tg(l,a,c,s):tg(r,on(c),a,s)},function(i,a){var s=d$(this),c=on(i);if(typeof a=="string"&&ng(a,n)===-1&&ng(a,"$<")===-1){var l=t(r,s,c,a);if(l.done)return l.value}var p=m$(a);p||(a=on(a));var m=s.global;if(m){var y=s.unicode;s.lastIndex=0}for(var g=[];;){var b=P$(s,c);if(b===null||(Hf(g,b),!m))break;var O=on(b[0]);O===""&&(s.lastIndex=S$(c,b$(s.lastIndex),y))}for(var x="",T=0,E=0;E=T&&(x+=ig(c,T,$)+C,T=$+P.length)}return x+ig(c,T)}]},!R$||!x$||og);var G$=M(),F$=K(),U$=Dr(),V$=ce(),z$=Ne(),H$=De(),fg=Na(),cg=pt(),K$=Ai(),W$=an(),Y$=ne(),X$=Yt(),lg=Y$("isConcatSpreadable"),Q$=X$>=51||!F$(function(){var e=[];return e[lg]=!1,e.concat()[0]!==e}),J$=function(e){if(!V$(e))return!1;var r=e[lg];return r!==void 0?!!r:U$(e)},Z$=!Q$||!W$("concat");G$({target:"Array",proto:!0,arity:1,forced:Z$},{concat:function(r){var t=z$(this),n=K$(t,0),i=0,a,s,c,l,p;for(a=-1,c=arguments.length;a1||"".split(/.?/).length?n=function(i,a){var s=Xf(Sg(this)),c=a===void 0?Pg:a>>>0;if(c===0)return[];if(i===void 0)return[s];if(!IN(i))return Li(r,s,i,c);for(var l=[],p=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(i.sticky?"y":""),m=0,y=new RegExp(i.source,p+"g"),g,b,O;(g=Li(RN,y,s))&&(b=y.lastIndex,!(b>m&&(sn(l,Ci(s,m,g.index)),g.length>1&&g.index=c)));)y.lastIndex===g.index&&y.lastIndex++;return m===s.length?(O||!jN(y,""))&&sn(l,""):sn(l,Ci(s,m)),l.length>c?Og(l,0,c):l}:"0".split(void 0,0).length?n=function(i,a){return i===void 0&&a===0?[]:Li(r,this,i,a)}:n=r,[function(a,s){var c=Sg(this),l=EN(a)?void 0:xN(a,e);return l?Li(l,a,c,s):Li(n,Xf(c),a,s)},function(i,a){var s=PN(this),c=Xf(i),l=t(n,s,c,a,n!==r);if(l.done)return l.value;var p=qN(s,RegExp),m=s.unicode,y=(s.ignoreCase?"i":"")+(s.multiline?"m":"")+(s.unicode?"u":"")+(un?"g":"y"),g=new p(un?"^(?:"+s.source+")":s,y),b=a===void 0?Pg:a>>>0;if(b===0)return[];if(c.length===0)return _g(g,c)===null?[c]:[];for(var O=0,x=0,T=[];x2){if(r=BL(r),t=Ha(r,0),t===43||t===45){if(n=Ha(r,2),n===88||n===120)return NaN}else if(t===48){switch(Ha(r,1)){case 66:case 98:i=2,a=49;break;case 79:case 111:i=8,a=55;break;default:return+r}for(s=GL(r,2),c=s.length,l=0;la)return NaN;return parseInt(s,i)}}return+r},Sc=xL(zi,!hn(" 0o1")||!hn("0b1")||hn("+0x1")),VL=function(e){return AL(wc,e)&&NL(function(){DL(e)})},Ka=function(r){var t=arguments.length<1?0:hn(FL(r));return VL(this)?RL(Object(t),this,Ka):t};Ka.prototype=wc;Sc&&!gc&&(wc.constructor=Ka);TL({global:!0,constructor:!0,wrap:!0,forced:Sc},{Number:Ka});var Kb=function(e,r){for(var t=kL?jL(r):"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(","),n=0,i;t.length>n;n++)Fb(r,i=t[n])&&!Fb(e,i)&&CL(e,i,LL(r,i))};gc&&Ub&&Kb(bc[zi],Ub);(Sc||gc)&&Kb(bc[zi],hn);var zL=M(),HL=ae(),Wb=Se().f;zL({target:"Object",stat:!0,forced:Object.defineProperty!==Wb,sham:!HL},{defineProperty:Wb});rS();gS();wS();SS();OS();IS();var cB=fn();cB("iterator");var Gbe=N(V());var WB=Gf().charAt,YB=he(),JS=Ce(),XB=su(),QS=fu(),ZS="String Iterator",QB=JS.set,JB=JS.getterFor(ZS);XB(String,"String",function(e){QB(this,{type:ZS,string:YB(e),index:0})},function(){var r=JB(this),t=r.string,n=r.index,i;return n>=t.length?QS(void 0,!0):(i=WB(t,n),r.index+=i.length,QS(i,!1))});var n0=X(),o0=cl(),e2=pl(),ro=V(),vl=wr(),a0=ne(),hl=a0("iterator"),i0=a0("toStringTag"),dl=ro.values,u0=function(e,r){if(e){if(e[hl]!==dl)try{vl(e,hl,dl)}catch(n){e[hl]=dl}if(e[i0]||vl(e,i0,r),o0[r]){for(var t in ro)if(e[t]!==ro[t])try{vl(e,t,ro[t])}catch(n){e[t]=ro[t]}}}};for(lu in o0)u0(n0[lu]&&n0[lu].prototype,lu);var lu;u0(e2,"DOMTokenList");var r2=fn();r2("asyncIterator");var t2=Ae(),n2=fn(),i2=nr();n2("toStringTag");i2(t2("Symbol"),"Symbol");var o2=X(),a2=nr();a2(o2.JSON,"JSON",!0);var u2=nr();u2(Math,"Math",!0);var s2=M(),f2=K(),c2=Ne(),s0=Pn(),l2=tl(),p2=f2(function(){s0(1)});s2({target:"Object",stat:!0,forced:p2,sham:!l2},{getPrototypeOf:function(r){return s0(c2(r))}});var m2=M(),c0=ml();m2({target:"Array",proto:!0,forced:[].forEach!=c0},{forEach:c0});var l0=X(),p0=cl(),y2=pl(),yl=ml(),g2=wr(),v0=function(e){if(e&&e.forEach!==yl)try{g2(e,"forEach",yl)}catch(r){e.forEach=yl}};for(pu in p0)p0[pu]&&v0(l0[pu]&&l0[pu].prototype);var pu;v0(y2);var b2=ae(),w2=ut().EXISTS,h0=W(),S2=Gr(),d0=Function.prototype,O2=h0(d0.toString),m0=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,_2=h0(m0.exec),P2="name";b2&&!w2&&S2(d0,P2,{configurable:!0,get:function(){try{return _2(m0,O2(this))[1]}catch(e){return""}}});var E2=M(),I2=vn();E2({target:"Object",stat:!0},{setPrototypeOf:I2});var q2=M(),T2=W(),k2=Dr(),x2=T2([].reverse),y0=[1,2];q2({target:"Array",proto:!0,forced:String(y0)===String(y0.reverse())},{reverse:function(){return k2(this)&&(this.length=this.length),x2(this)}});var R2=M(),g0=Dr(),A2=Ri(),$2=ce(),b0=ft(),N2=De(),j2=Le(),L2=pt(),C2=ne(),D2=an(),B2=Fi(),M2=D2("slice"),G2=C2("species"),gl=Array,F2=Math.max;R2({target:"Array",proto:!0,forced:!M2},{slice:function(r,t){var n=j2(this),i=N2(n),a=b0(r,i),s=b0(t===void 0?i:t,i),c,l,p;if(g0(n)&&(c=n.constructor,A2(c)&&(c===gl||g0(c.prototype))?c=void 0:$2(c)&&(c=c[G2],c===null&&(c=void 0)),c===gl||c===void 0))return B2(n,a,s);for(l=new(c===void 0?gl:c)(F2(s-a,0)),p=0;ai-l+c;m--)Sl(n,m-1)}else if(c>l)for(m=i-l;m>a;m--)y=m+l-1,g=m+c-1,y in n?n[g]=n[y]:Sl(n,g);for(m=0;m":">",'"':""","'":"'","/":"/"};return e.replace(/[&<>'"/]/g,function(t){return r[t]})}function hu(){return Math.floor(4294967296+Math.random()*64424509440).toString(16)}function Ot(e){if(!(!e||!e.toLowerCase))switch(e.toLowerCase()){case"true":return!0;case"false":return!1;default:return}}function pr(e,r){var t=void 0;if("currentStyle"in e)t=e.currentStyle[r];else{var n,i,a=(n=document)===null||n===void 0||(i=n.defaultView)===null||i===void 0?void 0:i.getComputedStyle(e,null);a&&(t=a.getPropertyValue(r))}return t}function A0(e,r){for(var t=e.toString();t.length1&&arguments[1]!==void 0?arguments[1]:1;if(r<1)throw"Significant digits must be at least 1.";return parseFloat(e.toPrecision(r))}function N0(e){var r=new Date(e);return r.toString()==="Invalid Date"&&(r=new Date(e.replace(/-/g,"/"))),r}function ir(e){return e instanceof Date?e.getUTCFullYear()+"-"+A0(e.getUTCMonth()+1,2)+"-"+A0(e.getUTCDate(),2):null}function j0(e,r){var t={};return function(){var n=e.getBoundingClientRect(),i={w:n.width,h:n.height};i.w===0&&i.h===0||i.w===t.w&&i.h===t.h||(t=i,r(i.w,i.h))}}function El(){return Ol()?Math.round(Ol()*100)/100:1}function Il(e){var r=e.getBoundingClientRect(),t=e.currentCSSZoom||1;return{width:r.width/t,height:r.height/t}}function L0(e){var r=e.replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\b]/g,"\\b"),t;try{t=new Function("with (this) {\n try {\n return (".concat(e,");\n } catch (e) {\n console.error('Error evaluating expression: ").concat(r,"');\n throw e;\n }\n }"))}catch(n){throw console.error("Error parsing expression: "+e),n}return function(n){return t.call(n)}}function no(e){return e==null?[]:Array.isArray(e)?e:[e]}function C0(e,r){function t(p,m){for(var y=0,g=0,b=[];y?@[\\\]^`{|}~])/g,"\\$1")}function or(e,r){var t={};return Object.keys(e).forEach(function(n){t[n]=r(e[n],n,e)}),t}function D0(e){return typeof e=="number"&&isNaN(e)}function _l(e,r){if(to.default.type(e)==="object"&&to.default.type(r)==="object"){var t=e,n=r;if(Object.keys(t).length!==Object.keys(n).length)return!1;for(var i in t)if(!Xe(n,i)||!_l(t[i],n[i]))return!1;return!0}else if(to.default.type(e)==="array"&&to.default.type(r)==="array"){var a=e,s=r;if(a.length!==s.length)return!1;for(var c=0;c=")return s>=0;if(t===">")return s>0;if(t==="<=")return s<=0;if(t==="<")return s<0;throw"Unknown operator: ".concat(t)};function Pe(e,r){if(typeof e!="undefined"){if(r.length!==1)throw new Error("labelNode must be of length 1");var t=Array.isArray(e)&&e.length===0;t?r.addClass("shiny-label-null"):(r.text(e),r.removeClass("shiny-label-null"))}}function io(e){var r=document.createElement("a");r.href="/";var t=document.createElement("div");t.style.setProperty("position","absolute","important"),t.style.setProperty("top","-1000px","important"),t.style.setProperty("left","0","important"),t.style.setProperty("width","30px","important"),t.style.setProperty("height","10px","important"),t.appendChild(r),e.appendChild(t);var n=window.getComputedStyle(r).getPropertyValue("color");return e.removeChild(t),n}function Tl(){return!window.bootstrap}function oo(e){return oo=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},oo(e)}function qM(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function M0(e,r){for(var t=0;t2&&arguments[2]!==void 0?arguments[2]:0,a={binding:t,priority:i};this.bindings.unshift(a),n&&(this.bindingNames[n]=a,t.name=n)}},{key:"setPriority",value:function(t,n){var i=this.bindingNames[t];if(!i)throw"Tried to set priority on unknown binding "+t;i.priority=n||0}},{key:"getPriority",value:function(t){var n=this.bindingNames[t];return n?n.priority:!1}},{key:"getBindings",value:function(){return C0(this.bindings,function(t,n){return n.priority-t.priority})}}]),e}();var kX=N(V());function ao(e){return ao=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},ao(e)}function xM(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function F0(e,r){for(var t=0;t0){var p=s.find("i[class]")[0];p===s.children()[0]&&(l=(0,vr.default)(p).prop("outerHTML"))}if(F(a,"label")&&(c=a.label),F(a,"icon")){var m;l=Array.isArray(a.icon)?"":(m=a.icon)!==null&&m!==void 0?m:""}s.html(l+" "+c)}F(a,"disabled")&&(a.disabled?s.attr("disabled",""):s.attr("disabled",null))}},{key:"unsubscribe",value:function(i){(0,vr.default)(i).off(".actionButtonInputBinding")}}]),t}(se);(0,vr.default)(document).on("click","a.action-button",function(e){e.preventDefault()});var pQ=N(V());var _t=N(Y());function In(e){return In=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},In(e)}function aG(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function nO(e,r){for(var t=0;tc.getTime()?(0,pe.default)(i).bsDatepicker("clearDates"):(0,pe.default)(i).bsDatepicker("setUTCDate",c)}}},{key:"_setMax",value:function(i,a){if(a===null){(0,pe.default)(i).bsDatepicker("setEndDate",null);return}var s=this._newDate(a);if(s!==null&&(a=s,!isNaN(a.valueOf()))){var c=(0,pe.default)(i).bsDatepicker("getUTCDate");(0,pe.default)(i).bsDatepicker("setEndDate",this._utcDateAsLocal(a)),a&&c&&a.getTime()1?arguments[1]:void 0)}});var cZ=N(V());var mr=N(Y());var Bl=N(Y());function qO(e,r,t,n,i,a){var s=Bl.default.Event("shiny:inputchanged");return s.name=e,s.value=r,s.binding=t,s.el=n,s.inputType=i,(0,Bl.default)(a).trigger(s),s}var $J=N(V());function Ml(e){return Ml=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},Ml(e)}function uo(){"use strict";uo=function(){return e};var e={},r=Object.prototype,t=r.hasOwnProperty,n=Object.defineProperty||function(f,o,u){f[o]=u.value},i=typeof Symbol=="function"?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function l(f,o,u){return Object.defineProperty(f,o,{value:u,enumerable:!0,configurable:!0,writable:!0}),f[o]}try{l({},"")}catch(f){l=function(u,v,d){return u[v]=d}}function p(f,o,u,v){var d=o&&o.prototype instanceof g?o:g,h=Object.create(d.prototype),S=new B(v||[]);return n(h,"_invoke",{value:j(f,u,S)}),h}function m(f,o,u){try{return{type:"normal",arg:f.call(o,u)}}catch(v){return{type:"throw",arg:v}}}e.wrap=p;var y={};function g(){}function b(){}function O(){}var x={};l(x,a,function(){return this});var T=Object.getPrototypeOf,E=T&&T(T(D([])));E&&E!==r&&t.call(E,a)&&(x=E);var P=O.prototype=g.prototype=Object.create(x);function $(f){["next","throw","return"].forEach(function(o){l(f,o,function(u){return this._invoke(o,u)})})}function R(f,o){function u(d,h,S,_){var w=m(f[d],f,h);if(w.type!=="throw"){var I=w.arg,k=I.value;return k&&Ml(k)=="object"&&t.call(k,"__await")?o.resolve(k.__await).then(function(A){u("next",A,S,_)},function(A){u("throw",A,S,_)}):o.resolve(k).then(function(A){I.value=A,S(I)},function(A){return u("throw",A,S,_)})}_(w.arg)}var v;n(this,"_invoke",{value:function(h,S){function _(){return new o(function(w,I){u(h,S,w,I)})}return v=v?v.then(_,_):_()}})}function j(f,o,u){var v="suspendedStart";return function(d,h){if(v==="executing")throw new Error("Generator is already running");if(v==="completed"){if(d==="throw")throw h;return z()}for(u.method=d,u.arg=h;;){var S=u.delegate;if(S){var _=L(S,u);if(_){if(_===y)continue;return _}}if(u.method==="next")u.sent=u._sent=u.arg;else if(u.method==="throw"){if(v==="suspendedStart")throw v="completed",u.arg;u.dispatchException(u.arg)}else u.method==="return"&&u.abrupt("return",u.arg);v="executing";var w=m(f,o,u);if(w.type==="normal"){if(v=u.done?"completed":"suspendedYield",w.arg===y)continue;return{value:w.arg,done:u.done}}w.type==="throw"&&(v="completed",u.method="throw",u.arg=w.arg)}}}function L(f,o){var u=o.method,v=f.iterator[u];if(v===void 0)return o.delegate=null,u==="throw"&&f.iterator.return&&(o.method="return",o.arg=void 0,L(f,o),o.method==="throw")||u!=="return"&&(o.method="throw",o.arg=new TypeError("The iterator does not provide a '"+u+"' method")),y;var d=m(v,f.iterator,o.arg);if(d.type==="throw")return o.method="throw",o.arg=d.arg,o.delegate=null,y;var h=d.arg;return h?h.done?(o[f.resultName]=h.value,o.next=f.nextLoc,o.method!=="return"&&(o.method="next",o.arg=void 0),o.delegate=null,y):h:(o.method="throw",o.arg=new TypeError("iterator result is not an object"),o.delegate=null,y)}function U(f){var o={tryLoc:f[0]};1 in f&&(o.catchLoc=f[1]),2 in f&&(o.finallyLoc=f[2],o.afterLoc=f[3]),this.tryEntries.push(o)}function C(f){var o=f.completion||{};o.type="normal",delete o.arg,f.completion=o}function B(f){this.tryEntries=[{tryLoc:"root"}],f.forEach(U,this),this.reset(!0)}function D(f){if(f){var o=f[a];if(o)return o.call(f);if(typeof f.next=="function")return f;if(!isNaN(f.length)){var u=-1,v=function d(){for(;++u=0;--d){var h=this.tryEntries[d],S=h.completion;if(h.tryLoc==="root")return v("end");if(h.tryLoc<=this.prev){var _=t.call(h,"catchLoc"),w=t.call(h,"finallyLoc");if(_&&w){if(this.prev=0;--v){var d=this.tryEntries[v];if(d.tryLoc<=this.prev&&t.call(d,"finallyLoc")&&this.prev=0;--u){var v=this.tryEntries[u];if(v.finallyLoc===o)return this.complete(v.completion,v.afterLoc),C(v),y}},catch:function(o){for(var u=this.tryEntries.length-1;u>=0;--u){var v=this.tryEntries[u];if(v.tryLoc===o){var d=v.completion;if(d.type==="throw"){var h=d.arg;C(v)}return h}}throw new Error("illegal catch attempt")},delegateYield:function(o,u,v){return this.delegate={iterator:D(o),resultName:u,nextLoc:v},this.method==="next"&&(this.arg=void 0),y}},e}function TO(e,r,t,n,i,a,s){try{var c=e[a](s),l=c.value}catch(p){t(p);return}c.done?r(l):Promise.resolve(l).then(n,i)}function kO(e){return function(){var r=this,t=arguments;return new Promise(function(n,i){var a=e.apply(r,t);function s(l){TO(a,n,i,s,c,"next",l)}function c(l){TO(a,n,i,s,c,"throw",l)}s(void 0)})}}var Gl;function xO(e){Gl=e}function Er(){if(typeof Gl=="undefined")throw"Shiny has not finish initialization yet. Please wait for the 'shiny-initialized' event.";return Gl}function dr(e,r,t){Er().setInputValue(e,r,t)}function Pt(){return Er().shinyapp}function RO(e){Er().user=e}function AO(e){Er().forgetLastInputValue(e)}function so(e){return Fl.apply(this,arguments)}function Fl(){return Fl=kO(uo().mark(function e(r){return uo().wrap(function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,Er().bindAll(r);case 2:case"end":return n.stop()}},e)})),Fl.apply(this,arguments)}function ke(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;Er().unbindAll(e,r)}function fo(e){Er().initializeInputs(e)}function $O(e,r){return Ul.apply(this,arguments)}function Ul(){return Ul=kO(uo().mark(function e(r,t){return uo().wrap(function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,Pt().bindOutput(r,t);case 2:case"end":return i.stop()}},e)})),Ul.apply(this,arguments)}function NO(e,r){return Pt().unbindOutput(e,r)}function jO(){return Er().oncustommessage}var LO;function CO(){return LO}function DO(e){LO=e}function BO(){return Er().createSocket}function xn(e){return xn=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},xn(e)}function fF(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(r&&r.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),r&&Vl(e,r)}function Vl(e,r){return Vl=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(n,i){return n.__proto__=i,n},Vl(e,r)}function cF(e){var r=pF();return function(){var n=Su(e),i;if(r){var a=Su(this).constructor;i=Reflect.construct(n,arguments,a)}else i=n.apply(this,arguments);return lF(this,i)}}function lF(e,r){if(r&&(xn(r)==="object"||typeof r=="function"))return r;if(r!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return Vr(e)}function Vr(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function pF(){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(e){return!1}}function Su(e){return Su=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Su(e)}function GO(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function MO(e,r){for(var t=0;t1&&arguments[1]!==void 0?arguments[1]:!0;GO(this,e),ar(this,"files",void 0),ar(this,"fileIndex",-1),ar(this,"aborted",!1),ar(this,"completed",!1),this.files=Array.from(r),t&&this.$run()}return FO(e,[{key:"onBegin",value:function(t,n){setTimeout(n,0)}},{key:"onFile",value:function(t,n){setTimeout(n,0)}},{key:"onComplete",value:function(){}},{key:"onAbort",value:function(){}},{key:"abort",value:function(){this.completed||this.aborted||(this.aborted=!0,this.onAbort())}},{key:"$getRun",value:function(){var t=this,n=!1;return function(){n||(n=!0,t.$run())}}},{key:"$run",value:function(){if(!(this.aborted||this.completed)){if(this.fileIndex<0){this.fileIndex=0,this.onBegin(this.files,this.$getRun());return}if(this.fileIndex===this.files.length){this.completed=!0,this.onComplete();return}var t=this.files[this.fileIndex++];this.onFile(t,this.$getRun())}}}]),e}(),zl=function(e){fF(t,e);var r=cF(t);function t(n,i,a,s){var c;return GO(this,t),c=r.call(this,a,!1),ar(Vr(c),"shinyapp",void 0),ar(Vr(c),"id",void 0),ar(Vr(c),"el",void 0),ar(Vr(c),"jobId",void 0),ar(Vr(c),"uploadUrl",void 0),ar(Vr(c),"progressBytes",void 0),ar(Vr(c),"totalBytes",void 0),c.shinyapp=n,c.id=i,c.el=s,c.$run(),c}return FO(t,[{key:"makeRequest",value:function(i,a,s,c,l){this.shinyapp.makeRequest(i,a,s,c,l)}},{key:"onBegin",value:function(i,a){var s=this;this.$setError(null),this.$setActive(!0),this.$setVisible(!0),this.onProgress(null,0),this.totalBytes=0,this.progressBytes=0,mr.default.each(i,function(l,p){s.totalBytes+=p.size});var c=mr.default.map(i,function(l){return{name:l.name,size:l.size,type:l.type}});this.makeRequest("uploadInit",[c],function(l){s.jobId=l.jobId,s.uploadUrl=l.uploadUrl,a()},function(l){s.onError(l)},void 0)}},{key:"onFile",value:function(i,a){var s=this;this.onProgress(i,0),mr.default.ajax(this.uploadUrl,{type:"POST",cache:!1,xhr:function(){if(typeof mr.default.ajaxSettings.xhr!="function")throw"jQuery's XHR is not a function";var l=mr.default.ajaxSettings.xhr();return l.upload&&(l.upload.onprogress=function(p){p.lengthComputable&&s.onProgress(i,(s.progressBytes+p.loaded)/s.totalBytes)}),l},data:i,contentType:"application/octet-stream",processData:!1,success:function(){s.progressBytes+=i.size,a()},error:function(l,p,m){s.onError(l.responseText||p)}})}},{key:"onComplete",value:function(){var i=this,a=mr.default.map(this.files,function(c,l){return{name:c.name,size:c.size,type:c.type}}),s=qO(this.id,a,CO(),this.el,"shiny.fileupload",document);this.makeRequest("uploadEnd",[this.jobId,this.id],function(){i.$setActive(!1),i.onProgress(null,1),i.$bar().text("Upload complete"),(0,mr.default)(s.el).val("")},function(c){i.onError(c)},void 0),this.$bar().text("Finishing upload")}},{key:"onError",value:function(i){this.$setError(i||""),this.$setActive(!1)}},{key:"onAbort",value:function(){this.$setVisible(!1)}},{key:"onProgress",value:function(i,a){this.$bar().width(Math.round(a*100)+"%"),this.$bar().text(i?i.name:"")}},{key:"$container",value:function(){return(0,mr.default)("#"+H(this.id)+"_progress.shiny-file-input-progress")}},{key:"$bar",value:function(){return(0,mr.default)("#"+H(this.id)+"_progress.shiny-file-input-progress .progress-bar")}},{key:"$setVisible",value:function(i){this.$container().css("visibility",i?"visible":"hidden")}},{key:"$setError",value:function(i){this.$bar().toggleClass("progress-bar-danger",i!==null),i!==null&&(this.onProgress(null,1),this.$bar().text(i))}},{key:"$setActive",value:function(i){this.$container().toggleClass("active",!!i)}}]),t}(hF);function Rn(e){return Rn=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},Rn(e)}function dF(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function VO(e,r){for(var t=0;t0}var b_=function(e){EU(t,e);var r=IU(t);function t(){return SU(this,t),r.apply(this,arguments)}return OU(t,[{key:"find",value:function(i){return(0,ve.default)(i).find("select")}},{key:"getType",value:function(i){var a=(0,ve.default)(i);return a.hasClass("symbol")?a.attr("multiple")==="multiple"?"shiny.symbolList":"shiny.symbol":null}},{key:"getId",value:function(i){return se.prototype.getId.call(this,i)||i.name}},{key:"getValue",value:function(i){if(Zl(i)){var a=this._selectize(i);return a==null?void 0:a.getValue()}else return(0,ve.default)(i).val()}},{key:"setValue",value:function(i,a){if(!Zl(i))(0,ve.default)(i).val(a);else{var s=this._selectize(i);s==null||s.setValue(a)}}},{key:"getState",value:function(i){for(var a=new Array(i.length),s=0;s1&&arguments[1]!==void 0?arguments[1]:!1;if(!!ve.default.fn.selectize){var s=(0,ve.default)(i),c=s.parent().find('script[data-for="'+H(i.id)+'"]');if(c.length!==0){var l=ve.default.extend({labelField:"label",valueField:"value",searchField:["label"]},JSON.parse(c.html()));typeof c.data("nonempty")!="undefined"?(i.nonempty=!0,l=ve.default.extend(l,{onItemRemove:function(g){this.getValue()===""&&(0,ve.default)("select#"+H(i.id)).empty().append((0,ve.default)("