patchright-core 1.51.3 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browsers.json +15 -13
- package/lib/androidServerImpl.js +42 -48
- package/lib/browserServerImpl.js +54 -67
- package/lib/cli/driver.js +71 -69
- package/lib/cli/program.js +312 -328
- package/lib/cli/programWithTestStub.js +51 -45
- package/lib/client/accessibility.js +31 -32
- package/lib/client/android.js +141 -228
- package/lib/client/api.js +135 -283
- package/lib/client/artifact.js +39 -36
- package/lib/client/browser.js +57 -61
- package/lib/client/browserContext.js +297 -326
- package/lib/client/browserType.js +92 -106
- package/lib/client/cdpSession.js +29 -31
- package/lib/client/channelOwner.js +82 -95
- package/lib/client/clientHelper.js +46 -38
- package/lib/client/clientInstrumentation.js +40 -37
- package/lib/client/clientStackTrace.js +41 -37
- package/lib/client/clock.js +36 -36
- package/lib/client/connection.js +190 -212
- package/lib/client/consoleMessage.js +31 -28
- package/lib/client/coverage.js +25 -22
- package/lib/client/dialog.js +30 -31
- package/lib/client/download.js +25 -25
- package/lib/client/electron.js +73 -75
- package/lib/client/elementHandle.js +111 -147
- package/lib/client/errors.js +53 -53
- package/lib/client/eventEmitter.js +124 -121
- package/lib/client/events.js +72 -68
- package/lib/client/fetch.js +135 -158
- package/lib/client/fileChooser.js +25 -24
- package/lib/client/fileUtils.js +31 -28
- package/lib/client/frame.js +187 -306
- package/lib/client/harRouter.js +42 -52
- package/lib/client/input.js +40 -69
- package/lib/client/jsHandle.js +54 -69
- package/lib/client/jsonPipe.js +27 -23
- package/lib/client/localUtils.js +29 -28
- package/lib/client/locator.js +161 -245
- package/lib/client/network.js +277 -295
- package/lib/client/page.js +270 -318
- package/lib/client/platform.js +46 -43
- package/lib/client/playwright.js +51 -66
- package/lib/client/selectors.js +48 -46
- package/lib/client/stream.js +29 -25
- package/lib/client/timeoutSettings.js +49 -39
- package/lib/client/tracing.js +48 -84
- package/lib/client/types.js +26 -22
- package/lib/client/video.js +35 -27
- package/lib/client/waiter.js +69 -88
- package/lib/client/webError.js +25 -23
- package/lib/client/webSocket.js +61 -56
- package/lib/client/worker.js +48 -58
- package/lib/client/writableStream.js +27 -23
- package/lib/generated/clockSource.js +26 -5
- package/lib/generated/consoleApiSource.js +26 -5
- package/lib/generated/injectedScriptSource.js +26 -5
- package/lib/generated/pollingRecorderSource.js +26 -5
- package/lib/generated/utilityScriptSource.js +26 -5
- package/lib/generated/webSocketMockSource.js +375 -4
- package/lib/inProcessFactory.js +53 -53
- package/lib/inprocess.js +2 -19
- package/lib/outofprocess.js +53 -46
- package/lib/protocol/debug.js +209 -25
- package/lib/protocol/serializers.js +153 -134
- package/lib/protocol/validator.js +2714 -2714
- package/lib/protocol/validatorPrimitives.js +114 -73
- package/lib/remote/playwrightConnection.js +140 -157
- package/lib/remote/playwrightServer.js +99 -84
- package/lib/server/accessibility.js +44 -37
- package/lib/server/android/android.js +216 -209
- package/lib/server/android/backendAdb.js +89 -82
- package/lib/server/artifact.js +78 -55
- package/lib/server/bidi/bidiBrowser.js +221 -155
- package/lib/server/bidi/bidiChromium.js +106 -79
- package/lib/server/bidi/bidiConnection.js +66 -83
- package/lib/server/bidi/bidiExecutionContext.js +128 -113
- package/lib/server/bidi/bidiFirefox.js +76 -69
- package/lib/server/bidi/bidiInput.js +86 -97
- package/lib/server/bidi/bidiNetworkManager.js +137 -154
- package/lib/server/bidi/bidiOverCdp.js +57 -58
- package/lib/server/bidi/bidiPage.js +247 -219
- package/lib/server/bidi/bidiPdf.js +52 -86
- package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
- package/lib/server/bidi/third_party/bidiDeserializer.js +55 -50
- package/lib/server/bidi/third_party/bidiKeyboard.js +236 -220
- package/lib/server/bidi/third_party/bidiProtocol.js +144 -131
- package/lib/server/bidi/third_party/bidiSerializer.js +67 -63
- package/lib/server/bidi/third_party/firefoxPrefs.js +141 -119
- package/lib/server/browser.js +76 -84
- package/lib/server/browserContext.js +321 -346
- package/lib/server/browserType.js +169 -182
- package/lib/server/callLog.js +47 -44
- package/lib/server/chromium/chromium.js +212 -190
- package/lib/server/chromium/chromiumSwitches.js +86 -64
- package/lib/server/chromium/crAccessibility.js +157 -131
- package/lib/server/chromium/crBrowser.js +253 -273
- package/lib/server/chromium/crConnection.js +91 -116
- package/lib/server/chromium/crCoverage.js +113 -127
- package/lib/server/chromium/crDevTools.js +59 -51
- package/lib/server/chromium/crDragDrop.js +62 -79
- package/lib/server/chromium/crExecutionContext.js +88 -83
- package/lib/server/chromium/crInput.js +97 -95
- package/lib/server/chromium/crNetworkManager.js +284 -404
- package/lib/server/chromium/crPage.js +522 -608
- package/lib/server/chromium/crPdf.js +54 -86
- package/lib/server/chromium/crProtocolHelper.js +92 -80
- package/lib/server/chromium/crServiceWorker.js +82 -67
- package/lib/server/chromium/defaultFontFamilies.js +152 -135
- package/lib/server/chromium/protocol.d.js +16 -0
- package/lib/server/chromium/videoRecorder.js +65 -99
- package/lib/server/clock.js +62 -50
- package/lib/server/codegen/csharp.js +185 -160
- package/lib/server/codegen/java.js +155 -128
- package/lib/server/codegen/javascript.js +163 -148
- package/lib/server/codegen/jsonl.js +32 -28
- package/lib/server/codegen/language.js +75 -52
- package/lib/server/codegen/languages.js +65 -27
- package/lib/server/codegen/python.js +140 -125
- package/lib/server/codegen/types.js +15 -4
- package/lib/server/console.js +28 -32
- package/lib/server/cookieStore.js +105 -86
- package/lib/server/debugController.js +97 -124
- package/lib/server/debugger.js +82 -78
- package/lib/server/deviceDescriptors.js +37 -24
- package/lib/server/deviceDescriptorsSource.json +50 -50
- package/lib/server/dialog.js +36 -35
- package/lib/server/dispatchers/androidDispatcher.js +196 -107
- package/lib/server/dispatchers/artifactDispatcher.js +62 -62
- package/lib/server/dispatchers/browserContextDispatcher.js +176 -205
- package/lib/server/dispatchers/browserDispatcher.js +78 -97
- package/lib/server/dispatchers/browserTypeDispatcher.js +35 -35
- package/lib/server/dispatchers/cdpSessionDispatcher.js +32 -36
- package/lib/server/dispatchers/debugControllerDispatcher.js +48 -66
- package/lib/server/dispatchers/dialogDispatcher.js +30 -27
- package/lib/server/dispatchers/dispatcher.js +169 -220
- package/lib/server/dispatchers/electronDispatcher.js +54 -57
- package/lib/server/dispatchers/elementHandlerDispatcher.js +77 -119
- package/lib/server/dispatchers/frameDispatcher.js +99 -163
- package/lib/server/dispatchers/jsHandleDispatcher.js +49 -66
- package/lib/server/dispatchers/jsonPipeDispatcher.js +35 -36
- package/lib/server/dispatchers/localUtilsDispatcher.js +95 -80
- package/lib/server/dispatchers/networkDispatchers.js +90 -107
- package/lib/server/dispatchers/pageDispatcher.js +128 -169
- package/lib/server/dispatchers/playwrightDispatcher.js +69 -76
- package/lib/server/dispatchers/selectorsDispatcher.js +28 -24
- package/lib/server/dispatchers/streamDispatcher.js +42 -45
- package/lib/server/dispatchers/tracingDispatcher.js +36 -41
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +96 -131
- package/lib/server/dispatchers/writableStreamDispatcher.js +54 -38
- package/lib/server/dom.js +413 -443
- package/lib/server/download.js +45 -35
- package/lib/server/electron/electron.js +156 -176
- package/lib/server/electron/loader.js +8 -36
- package/lib/server/errors.js +47 -46
- package/lib/server/fetch.js +289 -323
- package/lib/server/fileChooser.js +25 -24
- package/lib/server/fileUploadUtils.js +65 -59
- package/lib/server/firefox/ffAccessibility.js +153 -131
- package/lib/server/firefox/ffBrowser.js +213 -277
- package/lib/server/firefox/ffConnection.js +63 -84
- package/lib/server/firefox/ffExecutionContext.js +91 -73
- package/lib/server/firefox/ffInput.js +67 -69
- package/lib/server/firefox/ffNetworkManager.js +131 -110
- package/lib/server/firefox/ffPage.js +236 -273
- package/lib/server/firefox/firefox.js +76 -67
- package/lib/server/firefox/protocol.d.js +16 -0
- package/lib/server/formData.js +107 -35
- package/lib/server/frameSelectors.js +77 -111
- package/lib/server/frames.js +730 -894
- package/lib/server/har/harRecorder.js +85 -77
- package/lib/server/har/harTracer.js +287 -222
- package/lib/server/harBackend.js +80 -80
- package/lib/server/helper.js +56 -59
- package/lib/server/index.js +59 -99
- package/lib/server/input.js +134 -163
- package/lib/server/instrumentation.js +49 -44
- package/lib/server/javascript.js +143 -134
- package/lib/server/launchApp.js +92 -73
- package/lib/server/localUtils.js +130 -122
- package/lib/server/macEditingCommands.js +141 -137
- package/lib/server/network.js +262 -296
- package/lib/server/page.js +329 -426
- package/lib/server/pageBinding.js +88 -0
- package/lib/server/pipeTransport.js +49 -45
- package/lib/server/playwright.js +60 -67
- package/lib/server/progress.js +56 -51
- package/lib/server/protocolError.js +34 -31
- package/lib/server/recorder/chat.js +70 -86
- package/lib/server/recorder/contextRecorder.js +134 -138
- package/lib/server/recorder/recorderApp.js +127 -136
- package/lib/server/recorder/recorderCollection.js +56 -44
- package/lib/server/recorder/recorderFrontend.js +15 -4
- package/lib/server/recorder/recorderRunner.js +79 -103
- package/lib/server/recorder/recorderUtils.js +56 -45
- package/lib/server/recorder/throttledFile.js +42 -30
- package/lib/server/recorder.js +177 -186
- package/lib/server/registry/browserFetcher.js +106 -101
- package/lib/server/registry/dependencies.js +245 -196
- package/lib/server/registry/index.js +904 -792
- package/lib/server/registry/nativeDeps.js +1073 -464
- package/lib/server/registry/oopDownloadBrowserMain.js +57 -75
- package/lib/server/screenshotter.js +166 -182
- package/lib/server/selectors.js +85 -46
- package/lib/server/socksClientCertificatesInterceptor.js +166 -185
- package/lib/server/socksInterceptor.js +62 -70
- package/lib/server/storageScript.js +94 -100
- package/lib/server/timeoutSettings.js +58 -43
- package/lib/server/trace/recorder/snapshotter.js +70 -89
- package/lib/server/trace/recorder/snapshotterInjected.js +238 -217
- package/lib/server/trace/recorder/tracing.js +321 -333
- package/lib/server/trace/test/inMemorySnapshotter.js +46 -52
- package/lib/server/trace/viewer/traceViewer.js +168 -146
- package/lib/server/transport.js +124 -133
- package/lib/server/types.js +26 -22
- package/lib/server/usKeyboardLayout.js +135 -545
- package/lib/server/utils/ascii.js +39 -26
- package/lib/server/utils/comparators.js +105 -103
- package/lib/server/utils/crypto.js +157 -112
- package/lib/server/utils/debug.js +37 -28
- package/lib/server/utils/debugLogger.js +69 -48
- package/lib/server/utils/env.js +52 -37
- package/lib/server/utils/eventsHelper.js +29 -28
- package/lib/server/utils/expectUtils.js +31 -26
- package/lib/server/utils/fileUtils.js +123 -136
- package/lib/server/utils/happyEyeballs.js +138 -123
- package/lib/server/utils/hostPlatform.js +84 -120
- package/lib/server/utils/httpServer.js +106 -121
- package/lib/server/utils/image_tools/colorUtils.js +42 -51
- package/lib/server/utils/image_tools/compare.js +44 -43
- package/lib/server/utils/image_tools/imageChannel.js +38 -30
- package/lib/server/utils/image_tools/stats.js +40 -40
- package/lib/server/utils/linuxUtils.js +50 -37
- package/lib/server/utils/network.js +143 -86
- package/lib/server/utils/nodePlatform.js +87 -79
- package/lib/server/utils/pipeTransport.js +44 -42
- package/lib/server/utils/processLauncher.js +111 -121
- package/lib/server/utils/profiler.js +52 -39
- package/lib/server/utils/socksProxy.js +280 -339
- package/lib/server/utils/spawnAsync.js +37 -41
- package/lib/server/utils/task.js +31 -38
- package/lib/server/utils/userAgent.js +73 -66
- package/lib/server/utils/wsServer.js +73 -69
- package/lib/server/utils/zipFile.js +36 -37
- package/lib/server/utils/zones.js +37 -34
- package/lib/server/webkit/protocol.d.js +16 -0
- package/lib/server/webkit/webkit.js +76 -63
- package/lib/server/webkit/wkAccessibility.js +161 -118
- package/lib/server/webkit/wkBrowser.js +159 -176
- package/lib/server/webkit/wkConnection.js +59 -83
- package/lib/server/webkit/wkExecutionContext.js +84 -70
- package/lib/server/webkit/wkInput.js +82 -80
- package/lib/server/webkit/wkInterceptableRequest.js +102 -95
- package/lib/server/webkit/wkPage.js +525 -619
- package/lib/server/webkit/wkProvisionalPage.js +45 -56
- package/lib/server/webkit/wkWorkers.js +77 -77
- package/lib/utils/isomorphic/ariaSnapshot.js +144 -152
- package/lib/utils/isomorphic/assert.js +28 -22
- package/lib/utils/isomorphic/builtins.js +90 -0
- package/lib/utils/isomorphic/colors.js +66 -59
- package/lib/utils/isomorphic/cssParser.js +121 -125
- package/lib/utils/isomorphic/cssTokenizer.js +436 -364
- package/lib/utils/isomorphic/headers.js +38 -37
- package/lib/utils/isomorphic/locatorGenerators.js +340 -357
- package/lib/utils/isomorphic/locatorParser.js +96 -105
- package/lib/utils/isomorphic/locatorUtils.js +63 -44
- package/lib/utils/isomorphic/manualPromise.js +47 -39
- package/lib/utils/isomorphic/mimeType.js +448 -25
- package/lib/utils/isomorphic/multimap.js +35 -27
- package/lib/utils/isomorphic/rtti.js +35 -33
- package/lib/utils/isomorphic/selectorParser.js +183 -193
- package/lib/utils/isomorphic/semaphore.js +27 -24
- package/lib/utils/isomorphic/stackTrace.js +87 -98
- package/lib/utils/isomorphic/stringUtils.js +113 -106
- package/lib/utils/isomorphic/time.js +41 -22
- package/lib/utils/isomorphic/timeoutRunner.js +55 -54
- package/lib/utils/isomorphic/traceUtils.js +38 -41
- package/lib/utils/isomorphic/types.js +15 -4
- package/lib/utils/isomorphic/urlMatch.js +112 -67
- package/lib/utils/isomorphic/utilityScriptSerializers.js +248 -0
- package/lib/utils.js +97 -443
- package/lib/utilsBundle.js +101 -52
- package/lib/vite/htmlReport/index.html +21 -15
- package/lib/vite/recorder/assets/{codeMirrorModule-B9YMkrwa.js → codeMirrorModule-DVQi6prl.js} +1 -1
- package/lib/vite/recorder/assets/index-97EUAAbk.js +184 -0
- package/lib/vite/recorder/index.html +1 -1
- package/lib/vite/traceViewer/assets/{codeMirrorModule-1DiydmYA.js → codeMirrorModule-dvXVzLxY.js} +1 -1
- package/lib/vite/traceViewer/assets/defaultSettingsView-BjymbO6M.js +265 -0
- package/lib/vite/traceViewer/{defaultSettingsView.5fN5lw10.css → defaultSettingsView.QdHITyLI.css} +1 -1
- package/lib/vite/traceViewer/index.ChIUCJnj.js +2 -0
- package/lib/vite/traceViewer/index.html +3 -3
- package/lib/vite/traceViewer/sw.bundle.js +3 -3
- package/lib/vite/traceViewer/uiMode.html +3 -3
- package/lib/vite/traceViewer/uiMode.jUCiCtdp.js +5 -0
- package/lib/zipBundle.js +32 -23
- package/package.json +1 -1
- package/types/protocol.d.ts +436 -17
- package/types/types.d.ts +35 -16
- package/lib/server/isomorphic/utilityScriptSerializers.js +0 -229
- package/lib/vite/recorder/assets/index-ELPgmkwA.js +0 -184
- package/lib/vite/traceViewer/assets/defaultSettingsView-l0TyP_G8.js +0 -259
- package/lib/vite/traceViewer/index.BqUZLSro.js +0 -2
- package/lib/vite/traceViewer/uiMode.C1d2m5sF.js +0 -5
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/codeMirrorModule-DVQi6prl.js","assets/codeMirrorModule-C3UTv-Ge.css"])))=>i.map(i=>d[i]);
|
|
2
|
+
(function(){const n=document.createElement("link").relList;if(n&&n.supports&&n.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))l(o);new MutationObserver(o=>{for(const u of o)if(u.type==="childList")for(const f of u.addedNodes)f.tagName==="LINK"&&f.rel==="modulepreload"&&l(f)}).observe(document,{childList:!0,subtree:!0});function r(o){const u={};return o.integrity&&(u.integrity=o.integrity),o.referrerPolicy&&(u.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?u.credentials="include":o.crossOrigin==="anonymous"?u.credentials="omit":u.credentials="same-origin",u}function l(o){if(o.ep)return;o.ep=!0;const u=r(o);fetch(o.href,u)}})();function Xm(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var xa={exports:{}},xs={},Ta={exports:{}},ae={};/**
|
|
3
|
+
* @license React
|
|
4
|
+
* react.production.min.js
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
7
|
+
*
|
|
8
|
+
* This source code is licensed under the MIT license found in the
|
|
9
|
+
* LICENSE file in the root directory of this source tree.
|
|
10
|
+
*/var ld;function Zm(){if(ld)return ae;ld=1;var i=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),l=Symbol.for("react.strict_mode"),o=Symbol.for("react.profiler"),u=Symbol.for("react.provider"),f=Symbol.for("react.context"),h=Symbol.for("react.forward_ref"),p=Symbol.for("react.suspense"),g=Symbol.for("react.memo"),x=Symbol.for("react.lazy"),S=Symbol.iterator;function T(_){return _===null||typeof _!="object"?null:(_=S&&_[S]||_["@@iterator"],typeof _=="function"?_:null)}var E={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},O=Object.assign,v={};function w(_,D,oe){this.props=_,this.context=D,this.refs=v,this.updater=oe||E}w.prototype.isReactComponent={},w.prototype.setState=function(_,D){if(typeof _!="object"&&typeof _!="function"&&_!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,_,D,"setState")},w.prototype.forceUpdate=function(_){this.updater.enqueueForceUpdate(this,_,"forceUpdate")};function $(){}$.prototype=w.prototype;function A(_,D,oe){this.props=_,this.context=D,this.refs=v,this.updater=oe||E}var B=A.prototype=new $;B.constructor=A,O(B,w.prototype),B.isPureReactComponent=!0;var V=Array.isArray,W=Object.prototype.hasOwnProperty,j={current:null},Y={key:!0,ref:!0,__self:!0,__source:!0};function z(_,D,oe){var ce,de={},he=null,we=null;if(D!=null)for(ce in D.ref!==void 0&&(we=D.ref),D.key!==void 0&&(he=""+D.key),D)W.call(D,ce)&&!Y.hasOwnProperty(ce)&&(de[ce]=D[ce]);var me=arguments.length-2;if(me===1)de.children=oe;else if(1<me){for(var Te=Array(me),ht=0;ht<me;ht++)Te[ht]=arguments[ht+2];de.children=Te}if(_&&_.defaultProps)for(ce in me=_.defaultProps,me)de[ce]===void 0&&(de[ce]=me[ce]);return{$$typeof:i,type:_,key:he,ref:we,props:de,_owner:j.current}}function P(_,D){return{$$typeof:i,type:_.type,key:D,ref:_.ref,props:_.props,_owner:_._owner}}function le(_){return typeof _=="object"&&_!==null&&_.$$typeof===i}function ue(_){var D={"=":"=0",":":"=2"};return"$"+_.replace(/[=:]/g,function(oe){return D[oe]})}var M=/\/+/g;function ee(_,D){return typeof _=="object"&&_!==null&&_.key!=null?ue(""+_.key):D.toString(36)}function ke(_,D,oe,ce,de){var he=typeof _;(he==="undefined"||he==="boolean")&&(_=null);var we=!1;if(_===null)we=!0;else switch(he){case"string":case"number":we=!0;break;case"object":switch(_.$$typeof){case i:case n:we=!0}}if(we)return we=_,de=de(we),_=ce===""?"."+ee(we,0):ce,V(de)?(oe="",_!=null&&(oe=_.replace(M,"$&/")+"/"),ke(de,D,oe,"",function(ht){return ht})):de!=null&&(le(de)&&(de=P(de,oe+(!de.key||we&&we.key===de.key?"":(""+de.key).replace(M,"$&/")+"/")+_)),D.push(de)),1;if(we=0,ce=ce===""?".":ce+":",V(_))for(var me=0;me<_.length;me++){he=_[me];var Te=ce+ee(he,me);we+=ke(he,D,oe,Te,de)}else if(Te=T(_),typeof Te=="function")for(_=Te.call(_),me=0;!(he=_.next()).done;)he=he.value,Te=ce+ee(he,me++),we+=ke(he,D,oe,Te,de);else if(he==="object")throw D=String(_),Error("Objects are not valid as a React child (found: "+(D==="[object Object]"?"object with keys {"+Object.keys(_).join(", ")+"}":D)+"). If you meant to render a collection of children, use an array instead.");return we}function rt(_,D,oe){if(_==null)return _;var ce=[],de=0;return ke(_,ce,"","",function(he){return D.call(oe,he,de++)}),ce}function He(_){if(_._status===-1){var D=_._result;D=D(),D.then(function(oe){(_._status===0||_._status===-1)&&(_._status=1,_._result=oe)},function(oe){(_._status===0||_._status===-1)&&(_._status=2,_._result=oe)}),_._status===-1&&(_._status=0,_._result=D)}if(_._status===1)return _._result.default;throw _._result}var xe={current:null},K={transition:null},re={ReactCurrentDispatcher:xe,ReactCurrentBatchConfig:K,ReactCurrentOwner:j};function J(){throw Error("act(...) is not supported in production builds of React.")}return ae.Children={map:rt,forEach:function(_,D,oe){rt(_,function(){D.apply(this,arguments)},oe)},count:function(_){var D=0;return rt(_,function(){D++}),D},toArray:function(_){return rt(_,function(D){return D})||[]},only:function(_){if(!le(_))throw Error("React.Children.only expected to receive a single React element child.");return _}},ae.Component=w,ae.Fragment=r,ae.Profiler=o,ae.PureComponent=A,ae.StrictMode=l,ae.Suspense=p,ae.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=re,ae.act=J,ae.cloneElement=function(_,D,oe){if(_==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+_+".");var ce=O({},_.props),de=_.key,he=_.ref,we=_._owner;if(D!=null){if(D.ref!==void 0&&(he=D.ref,we=j.current),D.key!==void 0&&(de=""+D.key),_.type&&_.type.defaultProps)var me=_.type.defaultProps;for(Te in D)W.call(D,Te)&&!Y.hasOwnProperty(Te)&&(ce[Te]=D[Te]===void 0&&me!==void 0?me[Te]:D[Te])}var Te=arguments.length-2;if(Te===1)ce.children=oe;else if(1<Te){me=Array(Te);for(var ht=0;ht<Te;ht++)me[ht]=arguments[ht+2];ce.children=me}return{$$typeof:i,type:_.type,key:de,ref:he,props:ce,_owner:we}},ae.createContext=function(_){return _={$$typeof:f,_currentValue:_,_currentValue2:_,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},_.Provider={$$typeof:u,_context:_},_.Consumer=_},ae.createElement=z,ae.createFactory=function(_){var D=z.bind(null,_);return D.type=_,D},ae.createRef=function(){return{current:null}},ae.forwardRef=function(_){return{$$typeof:h,render:_}},ae.isValidElement=le,ae.lazy=function(_){return{$$typeof:x,_payload:{_status:-1,_result:_},_init:He}},ae.memo=function(_,D){return{$$typeof:g,type:_,compare:D===void 0?null:D}},ae.startTransition=function(_){var D=K.transition;K.transition={};try{_()}finally{K.transition=D}},ae.unstable_act=J,ae.useCallback=function(_,D){return xe.current.useCallback(_,D)},ae.useContext=function(_){return xe.current.useContext(_)},ae.useDebugValue=function(){},ae.useDeferredValue=function(_){return xe.current.useDeferredValue(_)},ae.useEffect=function(_,D){return xe.current.useEffect(_,D)},ae.useId=function(){return xe.current.useId()},ae.useImperativeHandle=function(_,D,oe){return xe.current.useImperativeHandle(_,D,oe)},ae.useInsertionEffect=function(_,D){return xe.current.useInsertionEffect(_,D)},ae.useLayoutEffect=function(_,D){return xe.current.useLayoutEffect(_,D)},ae.useMemo=function(_,D){return xe.current.useMemo(_,D)},ae.useReducer=function(_,D,oe){return xe.current.useReducer(_,D,oe)},ae.useRef=function(_){return xe.current.useRef(_)},ae.useState=function(_){return xe.current.useState(_)},ae.useSyncExternalStore=function(_,D,oe){return xe.current.useSyncExternalStore(_,D,oe)},ae.useTransition=function(){return xe.current.useTransition()},ae.version="18.3.1",ae}var od;function Qa(){return od||(od=1,Ta.exports=Zm()),Ta.exports}/**
|
|
11
|
+
* @license React
|
|
12
|
+
* react-jsx-runtime.production.min.js
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
15
|
+
*
|
|
16
|
+
* This source code is licensed under the MIT license found in the
|
|
17
|
+
* LICENSE file in the root directory of this source tree.
|
|
18
|
+
*/var ad;function eg(){if(ad)return xs;ad=1;var i=Qa(),n=Symbol.for("react.element"),r=Symbol.for("react.fragment"),l=Object.prototype.hasOwnProperty,o=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,u={key:!0,ref:!0,__self:!0,__source:!0};function f(h,p,g){var x,S={},T=null,E=null;g!==void 0&&(T=""+g),p.key!==void 0&&(T=""+p.key),p.ref!==void 0&&(E=p.ref);for(x in p)l.call(p,x)&&!u.hasOwnProperty(x)&&(S[x]=p[x]);if(h&&h.defaultProps)for(x in p=h.defaultProps,p)S[x]===void 0&&(S[x]=p[x]);return{$$typeof:n,type:h,key:T,ref:E,props:S,_owner:o.current}}return xs.Fragment=r,xs.jsx=f,xs.jsxs=f,xs}var ud;function tg(){return ud||(ud=1,xa.exports=eg()),xa.exports}var H=tg(),ye=Qa();const _r=Xm(ye);function Dd(){const i=_r.useRef(null),[n,r]=_r.useState(new DOMRect(0,0,10,10));return _r.useLayoutEffect(()=>{const l=i.current;if(!l)return;const o=l.getBoundingClientRect();r(new DOMRect(0,0,o.width,o.height));const u=new ResizeObserver(f=>{const h=f[f.length-1];h&&h.contentRect&&r(h.contentRect)});return u.observe(l),()=>u.disconnect()},[i]),[n,i]}function ng(i){if(i<0||!isFinite(i))return"-";if(i===0)return"0";if(i<1e3)return i.toFixed(0)+"ms";const n=i/1e3;if(n<60)return n.toFixed(1)+"s";const r=n/60;if(r<60)return r.toFixed(1)+"m";const l=r/60;return l<24?l.toFixed(1)+"h":(l/24).toFixed(1)+"d"}function cd(i){const n=document.createElement("textarea");n.style.position="absolute",n.style.zIndex="-1000",n.value=i,document.body.appendChild(n),n.select(),document.execCommand("copy"),n.remove()}function Fa(i,n){i&&(n=bn.getObject(i,n));const[r,l]=_r.useState(n),o=_r.useCallback(u=>{i?bn.setObject(i,u):l(u)},[i,l]);return _r.useEffect(()=>{if(i){const u=()=>l(bn.getObject(i,n));return bn.onChangeEmitter.addEventListener(i,u),()=>bn.onChangeEmitter.removeEventListener(i,u)}},[n,i]),[r,o]}class rg{constructor(){this.onChangeEmitter=new EventTarget}getString(n,r){return localStorage[n]||r}setString(n,r){var l;localStorage[n]=r,this.onChangeEmitter.dispatchEvent(new Event(n)),(l=window.saveSettings)==null||l.call(window)}getObject(n,r){if(!localStorage[n])return r;try{return JSON.parse(localStorage[n])}catch{return r}}setObject(n,r){var l;localStorage[n]=JSON.stringify(r),this.onChangeEmitter.dispatchEvent(new Event(n)),(l=window.saveSettings)==null||l.call(window)}}const bn=new rg;function Vn(...i){return i.filter(Boolean).join(" ")}const fd="\\u0000-\\u0020\\u007f-\\u009f",sg=new RegExp("(?:[a-zA-Z][a-zA-Z0-9+.-]{2,}:\\/\\/|www\\.)[^\\s"+fd+'"]{2,}[^\\s'+fd+`"')}\\],:;.!?]`,"ug");function ig(){if(document.playwrightThemeInitialized)return;document.playwrightThemeInitialized=!0,document.defaultView.addEventListener("focus",r=>{r.target.document.nodeType===Node.DOCUMENT_NODE&&document.body.classList.remove("inactive")},!1),document.defaultView.addEventListener("blur",r=>{document.body.classList.add("inactive")},!1);const i=bn.getString("theme","light-mode"),n=window.matchMedia("(prefers-color-scheme: dark)");(i==="dark-mode"||n.matches)&&document.body.classList.add("dark-mode")}const lg=new Set;function og(){const i=ag(),n=i==="dark-mode"?"light-mode":"dark-mode";i&&document.body.classList.remove(i),document.body.classList.add(n),bn.setString("theme",n);for(const r of lg)r(n)}function ag(){return document.body.classList.contains("dark-mode")?"dark-mode":"light-mode"}var qi={},_a={exports:{}},ut={},Ca={exports:{}},La={};/**
|
|
19
|
+
* @license React
|
|
20
|
+
* scheduler.production.min.js
|
|
21
|
+
*
|
|
22
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
23
|
+
*
|
|
24
|
+
* This source code is licensed under the MIT license found in the
|
|
25
|
+
* LICENSE file in the root directory of this source tree.
|
|
26
|
+
*/var dd;function ug(){return dd||(dd=1,function(i){function n(K,re){var J=K.length;K.push(re);e:for(;0<J;){var _=J-1>>>1,D=K[_];if(0<o(D,re))K[_]=re,K[J]=D,J=_;else break e}}function r(K){return K.length===0?null:K[0]}function l(K){if(K.length===0)return null;var re=K[0],J=K.pop();if(J!==re){K[0]=J;e:for(var _=0,D=K.length,oe=D>>>1;_<oe;){var ce=2*(_+1)-1,de=K[ce],he=ce+1,we=K[he];if(0>o(de,J))he<D&&0>o(we,de)?(K[_]=we,K[he]=J,_=he):(K[_]=de,K[ce]=J,_=ce);else if(he<D&&0>o(we,J))K[_]=we,K[he]=J,_=he;else break e}}return re}function o(K,re){var J=K.sortIndex-re.sortIndex;return J!==0?J:K.id-re.id}if(typeof performance=="object"&&typeof performance.now=="function"){var u=performance;i.unstable_now=function(){return u.now()}}else{var f=Date,h=f.now();i.unstable_now=function(){return f.now()-h}}var p=[],g=[],x=1,S=null,T=3,E=!1,O=!1,v=!1,w=typeof setTimeout=="function"?setTimeout:null,$=typeof clearTimeout=="function"?clearTimeout:null,A=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function B(K){for(var re=r(g);re!==null;){if(re.callback===null)l(g);else if(re.startTime<=K)l(g),re.sortIndex=re.expirationTime,n(p,re);else break;re=r(g)}}function V(K){if(v=!1,B(K),!O)if(r(p)!==null)O=!0,He(W);else{var re=r(g);re!==null&&xe(V,re.startTime-K)}}function W(K,re){O=!1,v&&(v=!1,$(z),z=-1),E=!0;var J=T;try{for(B(re),S=r(p);S!==null&&(!(S.expirationTime>re)||K&&!ue());){var _=S.callback;if(typeof _=="function"){S.callback=null,T=S.priorityLevel;var D=_(S.expirationTime<=re);re=i.unstable_now(),typeof D=="function"?S.callback=D:S===r(p)&&l(p),B(re)}else l(p);S=r(p)}if(S!==null)var oe=!0;else{var ce=r(g);ce!==null&&xe(V,ce.startTime-re),oe=!1}return oe}finally{S=null,T=J,E=!1}}var j=!1,Y=null,z=-1,P=5,le=-1;function ue(){return!(i.unstable_now()-le<P)}function M(){if(Y!==null){var K=i.unstable_now();le=K;var re=!0;try{re=Y(!0,K)}finally{re?ee():(j=!1,Y=null)}}else j=!1}var ee;if(typeof A=="function")ee=function(){A(M)};else if(typeof MessageChannel<"u"){var ke=new MessageChannel,rt=ke.port2;ke.port1.onmessage=M,ee=function(){rt.postMessage(null)}}else ee=function(){w(M,0)};function He(K){Y=K,j||(j=!0,ee())}function xe(K,re){z=w(function(){K(i.unstable_now())},re)}i.unstable_IdlePriority=5,i.unstable_ImmediatePriority=1,i.unstable_LowPriority=4,i.unstable_NormalPriority=3,i.unstable_Profiling=null,i.unstable_UserBlockingPriority=2,i.unstable_cancelCallback=function(K){K.callback=null},i.unstable_continueExecution=function(){O||E||(O=!0,He(W))},i.unstable_forceFrameRate=function(K){0>K||125<K?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):P=0<K?Math.floor(1e3/K):5},i.unstable_getCurrentPriorityLevel=function(){return T},i.unstable_getFirstCallbackNode=function(){return r(p)},i.unstable_next=function(K){switch(T){case 1:case 2:case 3:var re=3;break;default:re=T}var J=T;T=re;try{return K()}finally{T=J}},i.unstable_pauseExecution=function(){},i.unstable_requestPaint=function(){},i.unstable_runWithPriority=function(K,re){switch(K){case 1:case 2:case 3:case 4:case 5:break;default:K=3}var J=T;T=K;try{return re()}finally{T=J}},i.unstable_scheduleCallback=function(K,re,J){var _=i.unstable_now();switch(typeof J=="object"&&J!==null?(J=J.delay,J=typeof J=="number"&&0<J?_+J:_):J=_,K){case 1:var D=-1;break;case 2:D=250;break;case 5:D=1073741823;break;case 4:D=1e4;break;default:D=5e3}return D=J+D,K={id:x++,callback:re,priorityLevel:K,startTime:J,expirationTime:D,sortIndex:-1},J>_?(K.sortIndex=J,n(g,K),r(p)===null&&K===r(g)&&(v?($(z),z=-1):v=!0,xe(V,J-_))):(K.sortIndex=D,n(p,K),O||E||(O=!0,He(W))),K},i.unstable_shouldYield=ue,i.unstable_wrapCallback=function(K){var re=T;return function(){var J=T;T=re;try{return K.apply(this,arguments)}finally{T=J}}}}(La)),La}var hd;function cg(){return hd||(hd=1,Ca.exports=ug()),Ca.exports}/**
|
|
27
|
+
* @license React
|
|
28
|
+
* react-dom.production.min.js
|
|
29
|
+
*
|
|
30
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
31
|
+
*
|
|
32
|
+
* This source code is licensed under the MIT license found in the
|
|
33
|
+
* LICENSE file in the root directory of this source tree.
|
|
34
|
+
*/var pd;function fg(){if(pd)return ut;pd=1;var i=Qa(),n=cg();function r(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,s=1;s<arguments.length;s++)t+="&args[]="+encodeURIComponent(arguments[s]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var l=new Set,o={};function u(e,t){f(e,t),f(e+"Capture",t)}function f(e,t){for(o[e]=t,e=0;e<t.length;e++)l.add(t[e])}var h=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),p=Object.prototype.hasOwnProperty,g=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,x={},S={};function T(e){return p.call(S,e)?!0:p.call(x,e)?!1:g.test(e)?S[e]=!0:(x[e]=!0,!1)}function E(e,t,s,a){if(s!==null&&s.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return a?!1:s!==null?!s.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function O(e,t,s,a){if(t===null||typeof t>"u"||E(e,t,s,a))return!0;if(a)return!1;if(s!==null)switch(s.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function v(e,t,s,a,c,d,m){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=a,this.attributeNamespace=c,this.mustUseProperty=s,this.propertyName=e,this.type=t,this.sanitizeURL=d,this.removeEmptyString=m}var w={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){w[e]=new v(e,0,!1,e,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];w[t]=new v(t,1,!1,e[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){w[e]=new v(e,2,!1,e.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){w[e]=new v(e,2,!1,e,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){w[e]=new v(e,3,!1,e.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(e){w[e]=new v(e,3,!0,e,null,!1,!1)}),["capture","download"].forEach(function(e){w[e]=new v(e,4,!1,e,null,!1,!1)}),["cols","rows","size","span"].forEach(function(e){w[e]=new v(e,6,!1,e,null,!1,!1)}),["rowSpan","start"].forEach(function(e){w[e]=new v(e,5,!1,e.toLowerCase(),null,!1,!1)});var $=/[\-:]([a-z])/g;function A(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace($,A);w[t]=new v(t,1,!1,e,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace($,A);w[t]=new v(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace($,A);w[t]=new v(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(e){w[e]=new v(e,1,!1,e.toLowerCase(),null,!1,!1)}),w.xlinkHref=new v("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(e){w[e]=new v(e,1,!1,e.toLowerCase(),null,!0,!0)});function B(e,t,s,a){var c=w.hasOwnProperty(t)?w[t]:null;(c!==null?c.type!==0:a||!(2<t.length)||t[0]!=="o"&&t[0]!=="O"||t[1]!=="n"&&t[1]!=="N")&&(O(t,s,c,a)&&(s=null),a||c===null?T(t)&&(s===null?e.removeAttribute(t):e.setAttribute(t,""+s)):c.mustUseProperty?e[c.propertyName]=s===null?c.type===3?!1:"":s:(t=c.attributeName,a=c.attributeNamespace,s===null?e.removeAttribute(t):(c=c.type,s=c===3||c===4&&s===!0?"":""+s,a?e.setAttributeNS(a,t,s):e.setAttribute(t,s))))}var V=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,W=Symbol.for("react.element"),j=Symbol.for("react.portal"),Y=Symbol.for("react.fragment"),z=Symbol.for("react.strict_mode"),P=Symbol.for("react.profiler"),le=Symbol.for("react.provider"),ue=Symbol.for("react.context"),M=Symbol.for("react.forward_ref"),ee=Symbol.for("react.suspense"),ke=Symbol.for("react.suspense_list"),rt=Symbol.for("react.memo"),He=Symbol.for("react.lazy"),xe=Symbol.for("react.offscreen"),K=Symbol.iterator;function re(e){return e===null||typeof e!="object"?null:(e=K&&e[K]||e["@@iterator"],typeof e=="function"?e:null)}var J=Object.assign,_;function D(e){if(_===void 0)try{throw Error()}catch(s){var t=s.stack.trim().match(/\n( *(at )?)/);_=t&&t[1]||""}return`
|
|
35
|
+
`+_+e}var oe=!1;function ce(e,t){if(!e||oe)return"";oe=!0;var s=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(t,[])}catch(I){var a=I}Reflect.construct(e,[],t)}else{try{t.call()}catch(I){a=I}e.call(t.prototype)}else{try{throw Error()}catch(I){a=I}e()}}catch(I){if(I&&a&&typeof I.stack=="string"){for(var c=I.stack.split(`
|
|
36
|
+
`),d=a.stack.split(`
|
|
37
|
+
`),m=c.length-1,y=d.length-1;1<=m&&0<=y&&c[m]!==d[y];)y--;for(;1<=m&&0<=y;m--,y--)if(c[m]!==d[y]){if(m!==1||y!==1)do if(m--,y--,0>y||c[m]!==d[y]){var k=`
|
|
38
|
+
`+c[m].replace(" at new "," at ");return e.displayName&&k.includes("<anonymous>")&&(k=k.replace("<anonymous>",e.displayName)),k}while(1<=m&&0<=y);break}}}finally{oe=!1,Error.prepareStackTrace=s}return(e=e?e.displayName||e.name:"")?D(e):""}function de(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return e=ce(e.type,!1),e;case 11:return e=ce(e.type.render,!1),e;case 1:return e=ce(e.type,!0),e;default:return""}}function he(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Y:return"Fragment";case j:return"Portal";case P:return"Profiler";case z:return"StrictMode";case ee:return"Suspense";case ke:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case ue:return(e.displayName||"Context")+".Consumer";case le:return(e._context.displayName||"Context")+".Provider";case M:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case rt:return t=e.displayName||null,t!==null?t:he(e.type)||"Memo";case He:t=e._payload,e=e._init;try{return he(e(t))}catch{}}return null}function we(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return he(t);case 8:return t===z?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function me(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Te(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function ht(e){var t=Te(e)?"checked":"value",s=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=""+e[t];if(!e.hasOwnProperty(t)&&typeof s<"u"&&typeof s.get=="function"&&typeof s.set=="function"){var c=s.get,d=s.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return c.call(this)},set:function(m){a=""+m,d.call(this,m)}}),Object.defineProperty(e,t,{enumerable:s.enumerable}),{getValue:function(){return a},setValue:function(m){a=""+m},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Rs(e){e._valueTracker||(e._valueTracker=ht(e))}function fu(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var s=t.getValue(),a="";return e&&(a=Te(e)?e.checked?"true":"false":e.value),e=a,e!==s?(t.setValue(e),!0):!1}function Ds(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Il(e,t){var s=t.checked;return J({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:s??e._wrapperState.initialChecked})}function du(e,t){var s=t.defaultValue==null?"":t.defaultValue,a=t.checked!=null?t.checked:t.defaultChecked;s=me(t.value!=null?t.value:s),e._wrapperState={initialChecked:a,initialValue:s,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function hu(e,t){t=t.checked,t!=null&&B(e,"checked",t,!1)}function $l(e,t){hu(e,t);var s=me(t.value),a=t.type;if(s!=null)a==="number"?(s===0&&e.value===""||e.value!=s)&&(e.value=""+s):e.value!==""+s&&(e.value=""+s);else if(a==="submit"||a==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?Al(e,t.type,s):t.hasOwnProperty("defaultValue")&&Al(e,t.type,me(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function pu(e,t,s){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var a=t.type;if(!(a!=="submit"&&a!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,s||t===e.value||(e.value=t),e.defaultValue=t}s=e.name,s!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,s!==""&&(e.name=s)}function Al(e,t,s){(t!=="number"||Ds(e.ownerDocument)!==e)&&(s==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+s&&(e.defaultValue=""+s))}var Fr=Array.isArray;function Hn(e,t,s,a){if(e=e.options,t){t={};for(var c=0;c<s.length;c++)t["$"+s[c]]=!0;for(s=0;s<e.length;s++)c=t.hasOwnProperty("$"+e[s].value),e[s].selected!==c&&(e[s].selected=c),c&&a&&(e[s].defaultSelected=!0)}else{for(s=""+me(s),t=null,c=0;c<e.length;c++){if(e[c].value===s){e[c].selected=!0,a&&(e[c].defaultSelected=!0);return}t!==null||e[c].disabled||(t=e[c])}t!==null&&(t.selected=!0)}}function Pl(e,t){if(t.dangerouslySetInnerHTML!=null)throw Error(r(91));return J({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function mu(e,t){var s=t.value;if(s==null){if(s=t.children,t=t.defaultValue,s!=null){if(t!=null)throw Error(r(92));if(Fr(s)){if(1<s.length)throw Error(r(93));s=s[0]}t=s}t==null&&(t=""),s=t}e._wrapperState={initialValue:me(s)}}function gu(e,t){var s=me(t.value),a=me(t.defaultValue);s!=null&&(s=""+s,s!==e.value&&(e.value=s),t.defaultValue==null&&e.defaultValue!==s&&(e.defaultValue=s)),a!=null&&(e.defaultValue=""+a)}function yu(e){var t=e.textContent;t===e._wrapperState.initialValue&&t!==""&&t!==null&&(e.value=t)}function vu(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ml(e,t){return e==null||e==="http://www.w3.org/1999/xhtml"?vu(t):e==="http://www.w3.org/2000/svg"&&t==="foreignObject"?"http://www.w3.org/1999/xhtml":e}var bs,wu=function(e){return typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(t,s,a,c){MSApp.execUnsafeLocalFunction(function(){return e(t,s,a,c)})}:e}(function(e,t){if(e.namespaceURI!=="http://www.w3.org/2000/svg"||"innerHTML"in e)e.innerHTML=t;else{for(bs=bs||document.createElement("div"),bs.innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=bs.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Br(e,t){if(t){var s=e.firstChild;if(s&&s===e.lastChild&&s.nodeType===3){s.nodeValue=t;return}}e.textContent=t}var zr={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},np=["Webkit","ms","Moz","O"];Object.keys(zr).forEach(function(e){np.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),zr[t]=zr[e]})});function Su(e,t,s){return t==null||typeof t=="boolean"||t===""?"":s||typeof t!="number"||t===0||zr.hasOwnProperty(e)&&zr[e]?(""+t).trim():t+"px"}function ku(e,t){e=e.style;for(var s in t)if(t.hasOwnProperty(s)){var a=s.indexOf("--")===0,c=Su(s,t[s],a);s==="float"&&(s="cssFloat"),a?e.setProperty(s,c):e[s]=c}}var rp=J({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function jl(e,t){if(t){if(rp[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(r(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(r(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(r(61))}if(t.style!=null&&typeof t.style!="object")throw Error(r(62))}}function Rl(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Dl=null;function bl(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Fl=null,Qn=null,Jn=null;function Eu(e){if(e=us(e)){if(typeof Fl!="function")throw Error(r(280));var t=e.stateNode;t&&(t=oi(t),Fl(e.stateNode,e.type,t))}}function Nu(e){Qn?Jn?Jn.push(e):Jn=[e]:Qn=e}function xu(){if(Qn){var e=Qn,t=Jn;if(Jn=Qn=null,Eu(e),t)for(e=0;e<t.length;e++)Eu(t[e])}}function Tu(e,t){return e(t)}function _u(){}var Bl=!1;function Cu(e,t,s){if(Bl)return e(t,s);Bl=!0;try{return Tu(e,t,s)}finally{Bl=!1,(Qn!==null||Jn!==null)&&(_u(),xu())}}function Ur(e,t){var s=e.stateNode;if(s===null)return null;var a=oi(s);if(a===null)return null;s=a[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(a=!a.disabled)||(e=e.type,a=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!a;break e;default:e=!1}if(e)return null;if(s&&typeof s!="function")throw Error(r(231,t,typeof s));return s}var zl=!1;if(h)try{var Vr={};Object.defineProperty(Vr,"passive",{get:function(){zl=!0}}),window.addEventListener("test",Vr,Vr),window.removeEventListener("test",Vr,Vr)}catch{zl=!1}function sp(e,t,s,a,c,d,m,y,k){var I=Array.prototype.slice.call(arguments,3);try{t.apply(s,I)}catch(b){this.onError(b)}}var Kr=!1,Fs=null,Bs=!1,Ul=null,ip={onError:function(e){Kr=!0,Fs=e}};function lp(e,t,s,a,c,d,m,y,k){Kr=!1,Fs=null,sp.apply(ip,arguments)}function op(e,t,s,a,c,d,m,y,k){if(lp.apply(this,arguments),Kr){if(Kr){var I=Fs;Kr=!1,Fs=null}else throw Error(r(198));Bs||(Bs=!0,Ul=I)}}function Tn(e){var t=e,s=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,(t.flags&4098)!==0&&(s=t.return),e=t.return;while(e)}return t.tag===3?s:null}function Lu(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function Ou(e){if(Tn(e)!==e)throw Error(r(188))}function ap(e){var t=e.alternate;if(!t){if(t=Tn(e),t===null)throw Error(r(188));return t!==e?null:e}for(var s=e,a=t;;){var c=s.return;if(c===null)break;var d=c.alternate;if(d===null){if(a=c.return,a!==null){s=a;continue}break}if(c.child===d.child){for(d=c.child;d;){if(d===s)return Ou(c),e;if(d===a)return Ou(c),t;d=d.sibling}throw Error(r(188))}if(s.return!==a.return)s=c,a=d;else{for(var m=!1,y=c.child;y;){if(y===s){m=!0,s=c,a=d;break}if(y===a){m=!0,a=c,s=d;break}y=y.sibling}if(!m){for(y=d.child;y;){if(y===s){m=!0,s=d,a=c;break}if(y===a){m=!0,a=d,s=c;break}y=y.sibling}if(!m)throw Error(r(189))}}if(s.alternate!==a)throw Error(r(190))}if(s.tag!==3)throw Error(r(188));return s.stateNode.current===s?e:t}function Iu(e){return e=ap(e),e!==null?$u(e):null}function $u(e){if(e.tag===5||e.tag===6)return e;for(e=e.child;e!==null;){var t=$u(e);if(t!==null)return t;e=e.sibling}return null}var Au=n.unstable_scheduleCallback,Pu=n.unstable_cancelCallback,up=n.unstable_shouldYield,cp=n.unstable_requestPaint,Pe=n.unstable_now,fp=n.unstable_getCurrentPriorityLevel,Vl=n.unstable_ImmediatePriority,Mu=n.unstable_UserBlockingPriority,zs=n.unstable_NormalPriority,dp=n.unstable_LowPriority,ju=n.unstable_IdlePriority,Us=null,bt=null;function hp(e){if(bt&&typeof bt.onCommitFiberRoot=="function")try{bt.onCommitFiberRoot(Us,e,void 0,(e.current.flags&128)===128)}catch{}}var Ot=Math.clz32?Math.clz32:gp,pp=Math.log,mp=Math.LN2;function gp(e){return e>>>=0,e===0?32:31-(pp(e)/mp|0)|0}var Vs=64,Ks=4194304;function Wr(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Ws(e,t){var s=e.pendingLanes;if(s===0)return 0;var a=0,c=e.suspendedLanes,d=e.pingedLanes,m=s&268435455;if(m!==0){var y=m&~c;y!==0?a=Wr(y):(d&=m,d!==0&&(a=Wr(d)))}else m=s&~c,m!==0?a=Wr(m):d!==0&&(a=Wr(d));if(a===0)return 0;if(t!==0&&t!==a&&(t&c)===0&&(c=a&-a,d=t&-t,c>=d||c===16&&(d&4194240)!==0))return t;if((a&4)!==0&&(a|=s&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=a;0<t;)s=31-Ot(t),c=1<<s,a|=e[s],t&=~c;return a}function yp(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function vp(e,t){for(var s=e.suspendedLanes,a=e.pingedLanes,c=e.expirationTimes,d=e.pendingLanes;0<d;){var m=31-Ot(d),y=1<<m,k=c[m];k===-1?((y&s)===0||(y&a)!==0)&&(c[m]=yp(y,t)):k<=t&&(e.expiredLanes|=y),d&=~y}}function Kl(e){return e=e.pendingLanes&-1073741825,e!==0?e:e&1073741824?1073741824:0}function Ru(){var e=Vs;return Vs<<=1,(Vs&4194240)===0&&(Vs=64),e}function Wl(e){for(var t=[],s=0;31>s;s++)t.push(e);return t}function qr(e,t,s){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Ot(t),e[t]=s}function wp(e,t){var s=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var a=e.eventTimes;for(e=e.expirationTimes;0<s;){var c=31-Ot(s),d=1<<c;t[c]=0,a[c]=-1,e[c]=-1,s&=~d}}function ql(e,t){var s=e.entangledLanes|=t;for(e=e.entanglements;s;){var a=31-Ot(s),c=1<<a;c&t|e[a]&t&&(e[a]|=t),s&=~c}}var ge=0;function Du(e){return e&=-e,1<e?4<e?(e&268435455)!==0?16:536870912:4:1}var bu,Hl,Fu,Bu,zu,Ql=!1,qs=[],nn=null,rn=null,sn=null,Hr=new Map,Qr=new Map,ln=[],Sp="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function Uu(e,t){switch(e){case"focusin":case"focusout":nn=null;break;case"dragenter":case"dragleave":rn=null;break;case"mouseover":case"mouseout":sn=null;break;case"pointerover":case"pointerout":Hr.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Qr.delete(t.pointerId)}}function Jr(e,t,s,a,c,d){return e===null||e.nativeEvent!==d?(e={blockedOn:t,domEventName:s,eventSystemFlags:a,nativeEvent:d,targetContainers:[c]},t!==null&&(t=us(t),t!==null&&Hl(t)),e):(e.eventSystemFlags|=a,t=e.targetContainers,c!==null&&t.indexOf(c)===-1&&t.push(c),e)}function kp(e,t,s,a,c){switch(t){case"focusin":return nn=Jr(nn,e,t,s,a,c),!0;case"dragenter":return rn=Jr(rn,e,t,s,a,c),!0;case"mouseover":return sn=Jr(sn,e,t,s,a,c),!0;case"pointerover":var d=c.pointerId;return Hr.set(d,Jr(Hr.get(d)||null,e,t,s,a,c)),!0;case"gotpointercapture":return d=c.pointerId,Qr.set(d,Jr(Qr.get(d)||null,e,t,s,a,c)),!0}return!1}function Vu(e){var t=_n(e.target);if(t!==null){var s=Tn(t);if(s!==null){if(t=s.tag,t===13){if(t=Lu(s),t!==null){e.blockedOn=t,zu(e.priority,function(){Fu(s)});return}}else if(t===3&&s.stateNode.current.memoizedState.isDehydrated){e.blockedOn=s.tag===3?s.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Hs(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var s=Yl(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(s===null){s=e.nativeEvent;var a=new s.constructor(s.type,s);Dl=a,s.target.dispatchEvent(a),Dl=null}else return t=us(s),t!==null&&Hl(t),e.blockedOn=s,!1;t.shift()}return!0}function Ku(e,t,s){Hs(e)&&s.delete(t)}function Ep(){Ql=!1,nn!==null&&Hs(nn)&&(nn=null),rn!==null&&Hs(rn)&&(rn=null),sn!==null&&Hs(sn)&&(sn=null),Hr.forEach(Ku),Qr.forEach(Ku)}function Yr(e,t){e.blockedOn===t&&(e.blockedOn=null,Ql||(Ql=!0,n.unstable_scheduleCallback(n.unstable_NormalPriority,Ep)))}function Gr(e){function t(c){return Yr(c,e)}if(0<qs.length){Yr(qs[0],e);for(var s=1;s<qs.length;s++){var a=qs[s];a.blockedOn===e&&(a.blockedOn=null)}}for(nn!==null&&Yr(nn,e),rn!==null&&Yr(rn,e),sn!==null&&Yr(sn,e),Hr.forEach(t),Qr.forEach(t),s=0;s<ln.length;s++)a=ln[s],a.blockedOn===e&&(a.blockedOn=null);for(;0<ln.length&&(s=ln[0],s.blockedOn===null);)Vu(s),s.blockedOn===null&&ln.shift()}var Yn=V.ReactCurrentBatchConfig,Qs=!0;function Np(e,t,s,a){var c=ge,d=Yn.transition;Yn.transition=null;try{ge=1,Jl(e,t,s,a)}finally{ge=c,Yn.transition=d}}function xp(e,t,s,a){var c=ge,d=Yn.transition;Yn.transition=null;try{ge=4,Jl(e,t,s,a)}finally{ge=c,Yn.transition=d}}function Jl(e,t,s,a){if(Qs){var c=Yl(e,t,s,a);if(c===null)po(e,t,a,Js,s),Uu(e,a);else if(kp(c,e,t,s,a))a.stopPropagation();else if(Uu(e,a),t&4&&-1<Sp.indexOf(e)){for(;c!==null;){var d=us(c);if(d!==null&&bu(d),d=Yl(e,t,s,a),d===null&&po(e,t,a,Js,s),d===c)break;c=d}c!==null&&a.stopPropagation()}else po(e,t,a,null,s)}}var Js=null;function Yl(e,t,s,a){if(Js=null,e=bl(a),e=_n(e),e!==null)if(t=Tn(e),t===null)e=null;else if(s=t.tag,s===13){if(e=Lu(t),e!==null)return e;e=null}else if(s===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return Js=e,null}function Wu(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(fp()){case Vl:return 1;case Mu:return 4;case zs:case dp:return 16;case ju:return 536870912;default:return 16}default:return 16}}var on=null,Gl=null,Ys=null;function qu(){if(Ys)return Ys;var e,t=Gl,s=t.length,a,c="value"in on?on.value:on.textContent,d=c.length;for(e=0;e<s&&t[e]===c[e];e++);var m=s-e;for(a=1;a<=m&&t[s-a]===c[d-a];a++);return Ys=c.slice(e,1<a?1-a:void 0)}function Gs(e){var t=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&t===13&&(e=13)):e=t,e===10&&(e=13),32<=e||e===13?e:0}function Xs(){return!0}function Hu(){return!1}function pt(e){function t(s,a,c,d,m){this._reactName=s,this._targetInst=c,this.type=a,this.nativeEvent=d,this.target=m,this.currentTarget=null;for(var y in e)e.hasOwnProperty(y)&&(s=e[y],this[y]=s?s(d):d[y]);return this.isDefaultPrevented=(d.defaultPrevented!=null?d.defaultPrevented:d.returnValue===!1)?Xs:Hu,this.isPropagationStopped=Hu,this}return J(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var s=this.nativeEvent;s&&(s.preventDefault?s.preventDefault():typeof s.returnValue!="unknown"&&(s.returnValue=!1),this.isDefaultPrevented=Xs)},stopPropagation:function(){var s=this.nativeEvent;s&&(s.stopPropagation?s.stopPropagation():typeof s.cancelBubble!="unknown"&&(s.cancelBubble=!0),this.isPropagationStopped=Xs)},persist:function(){},isPersistent:Xs}),t}var Gn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Xl=pt(Gn),Xr=J({},Gn,{view:0,detail:0}),Tp=pt(Xr),Zl,eo,Zr,Zs=J({},Xr,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:no,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==Zr&&(Zr&&e.type==="mousemove"?(Zl=e.screenX-Zr.screenX,eo=e.screenY-Zr.screenY):eo=Zl=0,Zr=e),Zl)},movementY:function(e){return"movementY"in e?e.movementY:eo}}),Qu=pt(Zs),_p=J({},Zs,{dataTransfer:0}),Cp=pt(_p),Lp=J({},Xr,{relatedTarget:0}),to=pt(Lp),Op=J({},Gn,{animationName:0,elapsedTime:0,pseudoElement:0}),Ip=pt(Op),$p=J({},Gn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Ap=pt($p),Pp=J({},Gn,{data:0}),Ju=pt(Pp),Mp={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},jp={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Rp={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Dp(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=Rp[e])?!!t[e]:!1}function no(){return Dp}var bp=J({},Xr,{key:function(e){if(e.key){var t=Mp[e.key]||e.key;if(t!=="Unidentified")return t}return e.type==="keypress"?(e=Gs(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?jp[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:no,charCode:function(e){return e.type==="keypress"?Gs(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Gs(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),Fp=pt(bp),Bp=J({},Zs,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),Yu=pt(Bp),zp=J({},Xr,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:no}),Up=pt(zp),Vp=J({},Gn,{propertyName:0,elapsedTime:0,pseudoElement:0}),Kp=pt(Vp),Wp=J({},Zs,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),qp=pt(Wp),Hp=[9,13,27,32],ro=h&&"CompositionEvent"in window,es=null;h&&"documentMode"in document&&(es=document.documentMode);var Qp=h&&"TextEvent"in window&&!es,Gu=h&&(!ro||es&&8<es&&11>=es),Xu=" ",Zu=!1;function ec(e,t){switch(e){case"keyup":return Hp.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function tc(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Xn=!1;function Jp(e,t){switch(e){case"compositionend":return tc(t);case"keypress":return t.which!==32?null:(Zu=!0,Xu);case"textInput":return e=t.data,e===Xu&&Zu?null:e;default:return null}}function Yp(e,t){if(Xn)return e==="compositionend"||!ro&&ec(e,t)?(e=qu(),Ys=Gl=on=null,Xn=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Gu&&t.locale!=="ko"?null:t.data;default:return null}}var Gp={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function nc(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t==="input"?!!Gp[e.type]:t==="textarea"}function rc(e,t,s,a){Nu(a),t=si(t,"onChange"),0<t.length&&(s=new Xl("onChange","change",null,s,a),e.push({event:s,listeners:t}))}var ts=null,ns=null;function Xp(e){kc(e,0)}function ei(e){var t=rr(e);if(fu(t))return e}function Zp(e,t){if(e==="change")return t}var sc=!1;if(h){var so;if(h){var io="oninput"in document;if(!io){var ic=document.createElement("div");ic.setAttribute("oninput","return;"),io=typeof ic.oninput=="function"}so=io}else so=!1;sc=so&&(!document.documentMode||9<document.documentMode)}function lc(){ts&&(ts.detachEvent("onpropertychange",oc),ns=ts=null)}function oc(e){if(e.propertyName==="value"&&ei(ns)){var t=[];rc(t,ns,e,bl(e)),Cu(Xp,t)}}function em(e,t,s){e==="focusin"?(lc(),ts=t,ns=s,ts.attachEvent("onpropertychange",oc)):e==="focusout"&&lc()}function tm(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return ei(ns)}function nm(e,t){if(e==="click")return ei(t)}function rm(e,t){if(e==="input"||e==="change")return ei(t)}function sm(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var It=typeof Object.is=="function"?Object.is:sm;function rs(e,t){if(It(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;var s=Object.keys(e),a=Object.keys(t);if(s.length!==a.length)return!1;for(a=0;a<s.length;a++){var c=s[a];if(!p.call(t,c)||!It(e[c],t[c]))return!1}return!0}function ac(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function uc(e,t){var s=ac(e);e=0;for(var a;s;){if(s.nodeType===3){if(a=e+s.textContent.length,e<=t&&a>=t)return{node:s,offset:t-e};e=a}e:{for(;s;){if(s.nextSibling){s=s.nextSibling;break e}s=s.parentNode}s=void 0}s=ac(s)}}function cc(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?cc(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function fc(){for(var e=window,t=Ds();t instanceof e.HTMLIFrameElement;){try{var s=typeof t.contentWindow.location.href=="string"}catch{s=!1}if(s)e=t.contentWindow;else break;t=Ds(e.document)}return t}function lo(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function im(e){var t=fc(),s=e.focusedElem,a=e.selectionRange;if(t!==s&&s&&s.ownerDocument&&cc(s.ownerDocument.documentElement,s)){if(a!==null&&lo(s)){if(t=a.start,e=a.end,e===void 0&&(e=t),"selectionStart"in s)s.selectionStart=t,s.selectionEnd=Math.min(e,s.value.length);else if(e=(t=s.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var c=s.textContent.length,d=Math.min(a.start,c);a=a.end===void 0?d:Math.min(a.end,c),!e.extend&&d>a&&(c=a,a=d,d=c),c=uc(s,d);var m=uc(s,a);c&&m&&(e.rangeCount!==1||e.anchorNode!==c.node||e.anchorOffset!==c.offset||e.focusNode!==m.node||e.focusOffset!==m.offset)&&(t=t.createRange(),t.setStart(c.node,c.offset),e.removeAllRanges(),d>a?(e.addRange(t),e.extend(m.node,m.offset)):(t.setEnd(m.node,m.offset),e.addRange(t)))}}for(t=[],e=s;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof s.focus=="function"&&s.focus(),s=0;s<t.length;s++)e=t[s],e.element.scrollLeft=e.left,e.element.scrollTop=e.top}}var lm=h&&"documentMode"in document&&11>=document.documentMode,Zn=null,oo=null,ss=null,ao=!1;function dc(e,t,s){var a=s.window===s?s.document:s.nodeType===9?s:s.ownerDocument;ao||Zn==null||Zn!==Ds(a)||(a=Zn,"selectionStart"in a&&lo(a)?a={start:a.selectionStart,end:a.selectionEnd}:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection(),a={anchorNode:a.anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset}),ss&&rs(ss,a)||(ss=a,a=si(oo,"onSelect"),0<a.length&&(t=new Xl("onSelect","select",null,t,s),e.push({event:t,listeners:a}),t.target=Zn)))}function ti(e,t){var s={};return s[e.toLowerCase()]=t.toLowerCase(),s["Webkit"+e]="webkit"+t,s["Moz"+e]="moz"+t,s}var er={animationend:ti("Animation","AnimationEnd"),animationiteration:ti("Animation","AnimationIteration"),animationstart:ti("Animation","AnimationStart"),transitionend:ti("Transition","TransitionEnd")},uo={},hc={};h&&(hc=document.createElement("div").style,"AnimationEvent"in window||(delete er.animationend.animation,delete er.animationiteration.animation,delete er.animationstart.animation),"TransitionEvent"in window||delete er.transitionend.transition);function ni(e){if(uo[e])return uo[e];if(!er[e])return e;var t=er[e],s;for(s in t)if(t.hasOwnProperty(s)&&s in hc)return uo[e]=t[s];return e}var pc=ni("animationend"),mc=ni("animationiteration"),gc=ni("animationstart"),yc=ni("transitionend"),vc=new Map,wc="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function an(e,t){vc.set(e,t),u(t,[e])}for(var co=0;co<wc.length;co++){var fo=wc[co],om=fo.toLowerCase(),am=fo[0].toUpperCase()+fo.slice(1);an(om,"on"+am)}an(pc,"onAnimationEnd"),an(mc,"onAnimationIteration"),an(gc,"onAnimationStart"),an("dblclick","onDoubleClick"),an("focusin","onFocus"),an("focusout","onBlur"),an(yc,"onTransitionEnd"),f("onMouseEnter",["mouseout","mouseover"]),f("onMouseLeave",["mouseout","mouseover"]),f("onPointerEnter",["pointerout","pointerover"]),f("onPointerLeave",["pointerout","pointerover"]),u("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),u("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),u("onBeforeInput",["compositionend","keypress","textInput","paste"]),u("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var is="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),um=new Set("cancel close invalid load scroll toggle".split(" ").concat(is));function Sc(e,t,s){var a=e.type||"unknown-event";e.currentTarget=s,op(a,t,void 0,e),e.currentTarget=null}function kc(e,t){t=(t&4)!==0;for(var s=0;s<e.length;s++){var a=e[s],c=a.event;a=a.listeners;e:{var d=void 0;if(t)for(var m=a.length-1;0<=m;m--){var y=a[m],k=y.instance,I=y.currentTarget;if(y=y.listener,k!==d&&c.isPropagationStopped())break e;Sc(c,y,I),d=k}else for(m=0;m<a.length;m++){if(y=a[m],k=y.instance,I=y.currentTarget,y=y.listener,k!==d&&c.isPropagationStopped())break e;Sc(c,y,I),d=k}}}if(Bs)throw e=Ul,Bs=!1,Ul=null,e}function Ee(e,t){var s=t[So];s===void 0&&(s=t[So]=new Set);var a=e+"__bubble";s.has(a)||(Ec(t,e,2,!1),s.add(a))}function ho(e,t,s){var a=0;t&&(a|=4),Ec(s,e,a,t)}var ri="_reactListening"+Math.random().toString(36).slice(2);function ls(e){if(!e[ri]){e[ri]=!0,l.forEach(function(s){s!=="selectionchange"&&(um.has(s)||ho(s,!1,e),ho(s,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[ri]||(t[ri]=!0,ho("selectionchange",!1,t))}}function Ec(e,t,s,a){switch(Wu(t)){case 1:var c=Np;break;case 4:c=xp;break;default:c=Jl}s=c.bind(null,t,s,e),c=void 0,!zl||t!=="touchstart"&&t!=="touchmove"&&t!=="wheel"||(c=!0),a?c!==void 0?e.addEventListener(t,s,{capture:!0,passive:c}):e.addEventListener(t,s,!0):c!==void 0?e.addEventListener(t,s,{passive:c}):e.addEventListener(t,s,!1)}function po(e,t,s,a,c){var d=a;if((t&1)===0&&(t&2)===0&&a!==null)e:for(;;){if(a===null)return;var m=a.tag;if(m===3||m===4){var y=a.stateNode.containerInfo;if(y===c||y.nodeType===8&&y.parentNode===c)break;if(m===4)for(m=a.return;m!==null;){var k=m.tag;if((k===3||k===4)&&(k=m.stateNode.containerInfo,k===c||k.nodeType===8&&k.parentNode===c))return;m=m.return}for(;y!==null;){if(m=_n(y),m===null)return;if(k=m.tag,k===5||k===6){a=d=m;continue e}y=y.parentNode}}a=a.return}Cu(function(){var I=d,b=bl(s),F=[];e:{var R=vc.get(e);if(R!==void 0){var q=Xl,G=e;switch(e){case"keypress":if(Gs(s)===0)break e;case"keydown":case"keyup":q=Fp;break;case"focusin":G="focus",q=to;break;case"focusout":G="blur",q=to;break;case"beforeblur":case"afterblur":q=to;break;case"click":if(s.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":q=Qu;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":q=Cp;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":q=Up;break;case pc:case mc:case gc:q=Ip;break;case yc:q=Kp;break;case"scroll":q=Tp;break;case"wheel":q=qp;break;case"copy":case"cut":case"paste":q=Ap;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":q=Yu}var X=(t&4)!==0,Me=!X&&e==="scroll",C=X?R!==null?R+"Capture":null:R;X=[];for(var N=I,L;N!==null;){L=N;var U=L.stateNode;if(L.tag===5&&U!==null&&(L=U,C!==null&&(U=Ur(N,C),U!=null&&X.push(os(N,U,L)))),Me)break;N=N.return}0<X.length&&(R=new q(R,G,null,s,b),F.push({event:R,listeners:X}))}}if((t&7)===0){e:{if(R=e==="mouseover"||e==="pointerover",q=e==="mouseout"||e==="pointerout",R&&s!==Dl&&(G=s.relatedTarget||s.fromElement)&&(_n(G)||G[Wt]))break e;if((q||R)&&(R=b.window===b?b:(R=b.ownerDocument)?R.defaultView||R.parentWindow:window,q?(G=s.relatedTarget||s.toElement,q=I,G=G?_n(G):null,G!==null&&(Me=Tn(G),G!==Me||G.tag!==5&&G.tag!==6)&&(G=null)):(q=null,G=I),q!==G)){if(X=Qu,U="onMouseLeave",C="onMouseEnter",N="mouse",(e==="pointerout"||e==="pointerover")&&(X=Yu,U="onPointerLeave",C="onPointerEnter",N="pointer"),Me=q==null?R:rr(q),L=G==null?R:rr(G),R=new X(U,N+"leave",q,s,b),R.target=Me,R.relatedTarget=L,U=null,_n(b)===I&&(X=new X(C,N+"enter",G,s,b),X.target=L,X.relatedTarget=Me,U=X),Me=U,q&&G)t:{for(X=q,C=G,N=0,L=X;L;L=tr(L))N++;for(L=0,U=C;U;U=tr(U))L++;for(;0<N-L;)X=tr(X),N--;for(;0<L-N;)C=tr(C),L--;for(;N--;){if(X===C||C!==null&&X===C.alternate)break t;X=tr(X),C=tr(C)}X=null}else X=null;q!==null&&Nc(F,R,q,X,!1),G!==null&&Me!==null&&Nc(F,Me,G,X,!0)}}e:{if(R=I?rr(I):window,q=R.nodeName&&R.nodeName.toLowerCase(),q==="select"||q==="input"&&R.type==="file")var Z=Zp;else if(nc(R))if(sc)Z=rm;else{Z=tm;var te=em}else(q=R.nodeName)&&q.toLowerCase()==="input"&&(R.type==="checkbox"||R.type==="radio")&&(Z=nm);if(Z&&(Z=Z(e,I))){rc(F,Z,s,b);break e}te&&te(e,R,I),e==="focusout"&&(te=R._wrapperState)&&te.controlled&&R.type==="number"&&Al(R,"number",R.value)}switch(te=I?rr(I):window,e){case"focusin":(nc(te)||te.contentEditable==="true")&&(Zn=te,oo=I,ss=null);break;case"focusout":ss=oo=Zn=null;break;case"mousedown":ao=!0;break;case"contextmenu":case"mouseup":case"dragend":ao=!1,dc(F,s,b);break;case"selectionchange":if(lm)break;case"keydown":case"keyup":dc(F,s,b)}var ne;if(ro)e:{switch(e){case"compositionstart":var se="onCompositionStart";break e;case"compositionend":se="onCompositionEnd";break e;case"compositionupdate":se="onCompositionUpdate";break e}se=void 0}else Xn?ec(e,s)&&(se="onCompositionEnd"):e==="keydown"&&s.keyCode===229&&(se="onCompositionStart");se&&(Gu&&s.locale!=="ko"&&(Xn||se!=="onCompositionStart"?se==="onCompositionEnd"&&Xn&&(ne=qu()):(on=b,Gl="value"in on?on.value:on.textContent,Xn=!0)),te=si(I,se),0<te.length&&(se=new Ju(se,e,null,s,b),F.push({event:se,listeners:te}),ne?se.data=ne:(ne=tc(s),ne!==null&&(se.data=ne)))),(ne=Qp?Jp(e,s):Yp(e,s))&&(I=si(I,"onBeforeInput"),0<I.length&&(b=new Ju("onBeforeInput","beforeinput",null,s,b),F.push({event:b,listeners:I}),b.data=ne))}kc(F,t)})}function os(e,t,s){return{instance:e,listener:t,currentTarget:s}}function si(e,t){for(var s=t+"Capture",a=[];e!==null;){var c=e,d=c.stateNode;c.tag===5&&d!==null&&(c=d,d=Ur(e,s),d!=null&&a.unshift(os(e,d,c)),d=Ur(e,t),d!=null&&a.push(os(e,d,c))),e=e.return}return a}function tr(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5);return e||null}function Nc(e,t,s,a,c){for(var d=t._reactName,m=[];s!==null&&s!==a;){var y=s,k=y.alternate,I=y.stateNode;if(k!==null&&k===a)break;y.tag===5&&I!==null&&(y=I,c?(k=Ur(s,d),k!=null&&m.unshift(os(s,k,y))):c||(k=Ur(s,d),k!=null&&m.push(os(s,k,y)))),s=s.return}m.length!==0&&e.push({event:t,listeners:m})}var cm=/\r\n?/g,fm=/\u0000|\uFFFD/g;function xc(e){return(typeof e=="string"?e:""+e).replace(cm,`
|
|
39
|
+
`).replace(fm,"")}function ii(e,t,s){if(t=xc(t),xc(e)!==t&&s)throw Error(r(425))}function li(){}var mo=null,go=null;function yo(e,t){return e==="textarea"||e==="noscript"||typeof t.children=="string"||typeof t.children=="number"||typeof t.dangerouslySetInnerHTML=="object"&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var vo=typeof setTimeout=="function"?setTimeout:void 0,dm=typeof clearTimeout=="function"?clearTimeout:void 0,Tc=typeof Promise=="function"?Promise:void 0,hm=typeof queueMicrotask=="function"?queueMicrotask:typeof Tc<"u"?function(e){return Tc.resolve(null).then(e).catch(pm)}:vo;function pm(e){setTimeout(function(){throw e})}function wo(e,t){var s=t,a=0;do{var c=s.nextSibling;if(e.removeChild(s),c&&c.nodeType===8)if(s=c.data,s==="/$"){if(a===0){e.removeChild(c),Gr(t);return}a--}else s!=="$"&&s!=="$?"&&s!=="$!"||a++;s=c}while(s);Gr(t)}function un(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===1||t===3)break;if(t===8){if(t=e.data,t==="$"||t==="$!"||t==="$?")break;if(t==="/$")return null}}return e}function _c(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var s=e.data;if(s==="$"||s==="$!"||s==="$?"){if(t===0)return e;t--}else s==="/$"&&t++}e=e.previousSibling}return null}var nr=Math.random().toString(36).slice(2),Ft="__reactFiber$"+nr,as="__reactProps$"+nr,Wt="__reactContainer$"+nr,So="__reactEvents$"+nr,mm="__reactListeners$"+nr,gm="__reactHandles$"+nr;function _n(e){var t=e[Ft];if(t)return t;for(var s=e.parentNode;s;){if(t=s[Wt]||s[Ft]){if(s=t.alternate,t.child!==null||s!==null&&s.child!==null)for(e=_c(e);e!==null;){if(s=e[Ft])return s;e=_c(e)}return t}e=s,s=e.parentNode}return null}function us(e){return e=e[Ft]||e[Wt],!e||e.tag!==5&&e.tag!==6&&e.tag!==13&&e.tag!==3?null:e}function rr(e){if(e.tag===5||e.tag===6)return e.stateNode;throw Error(r(33))}function oi(e){return e[as]||null}var ko=[],sr=-1;function cn(e){return{current:e}}function Ne(e){0>sr||(e.current=ko[sr],ko[sr]=null,sr--)}function Se(e,t){sr++,ko[sr]=e.current,e.current=t}var fn={},Qe=cn(fn),st=cn(!1),Cn=fn;function ir(e,t){var s=e.type.contextTypes;if(!s)return fn;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var c={},d;for(d in s)c[d]=t[d];return a&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=c),c}function it(e){return e=e.childContextTypes,e!=null}function ai(){Ne(st),Ne(Qe)}function Cc(e,t,s){if(Qe.current!==fn)throw Error(r(168));Se(Qe,t),Se(st,s)}function Lc(e,t,s){var a=e.stateNode;if(t=t.childContextTypes,typeof a.getChildContext!="function")return s;a=a.getChildContext();for(var c in a)if(!(c in t))throw Error(r(108,we(e)||"Unknown",c));return J({},s,a)}function ui(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||fn,Cn=Qe.current,Se(Qe,e),Se(st,st.current),!0}function Oc(e,t,s){var a=e.stateNode;if(!a)throw Error(r(169));s?(e=Lc(e,t,Cn),a.__reactInternalMemoizedMergedChildContext=e,Ne(st),Ne(Qe),Se(Qe,e)):Ne(st),Se(st,s)}var qt=null,ci=!1,Eo=!1;function Ic(e){qt===null?qt=[e]:qt.push(e)}function ym(e){ci=!0,Ic(e)}function dn(){if(!Eo&&qt!==null){Eo=!0;var e=0,t=ge;try{var s=qt;for(ge=1;e<s.length;e++){var a=s[e];do a=a(!0);while(a!==null)}qt=null,ci=!1}catch(c){throw qt!==null&&(qt=qt.slice(e+1)),Au(Vl,dn),c}finally{ge=t,Eo=!1}}return null}var lr=[],or=0,fi=null,di=0,kt=[],Et=0,Ln=null,Ht=1,Qt="";function On(e,t){lr[or++]=di,lr[or++]=fi,fi=e,di=t}function $c(e,t,s){kt[Et++]=Ht,kt[Et++]=Qt,kt[Et++]=Ln,Ln=e;var a=Ht;e=Qt;var c=32-Ot(a)-1;a&=~(1<<c),s+=1;var d=32-Ot(t)+c;if(30<d){var m=c-c%5;d=(a&(1<<m)-1).toString(32),a>>=m,c-=m,Ht=1<<32-Ot(t)+c|s<<c|a,Qt=d+e}else Ht=1<<d|s<<c|a,Qt=e}function No(e){e.return!==null&&(On(e,1),$c(e,1,0))}function xo(e){for(;e===fi;)fi=lr[--or],lr[or]=null,di=lr[--or],lr[or]=null;for(;e===Ln;)Ln=kt[--Et],kt[Et]=null,Qt=kt[--Et],kt[Et]=null,Ht=kt[--Et],kt[Et]=null}var mt=null,gt=null,_e=!1,$t=null;function Ac(e,t){var s=_t(5,null,null,0);s.elementType="DELETED",s.stateNode=t,s.return=e,t=e.deletions,t===null?(e.deletions=[s],e.flags|=16):t.push(s)}function Pc(e,t){switch(e.tag){case 5:var s=e.type;return t=t.nodeType!==1||s.toLowerCase()!==t.nodeName.toLowerCase()?null:t,t!==null?(e.stateNode=t,mt=e,gt=un(t.firstChild),!0):!1;case 6:return t=e.pendingProps===""||t.nodeType!==3?null:t,t!==null?(e.stateNode=t,mt=e,gt=null,!0):!1;case 13:return t=t.nodeType!==8?null:t,t!==null?(s=Ln!==null?{id:Ht,overflow:Qt}:null,e.memoizedState={dehydrated:t,treeContext:s,retryLane:1073741824},s=_t(18,null,null,0),s.stateNode=t,s.return=e,e.child=s,mt=e,gt=null,!0):!1;default:return!1}}function To(e){return(e.mode&1)!==0&&(e.flags&128)===0}function _o(e){if(_e){var t=gt;if(t){var s=t;if(!Pc(e,t)){if(To(e))throw Error(r(418));t=un(s.nextSibling);var a=mt;t&&Pc(e,t)?Ac(a,s):(e.flags=e.flags&-4097|2,_e=!1,mt=e)}}else{if(To(e))throw Error(r(418));e.flags=e.flags&-4097|2,_e=!1,mt=e}}}function Mc(e){for(e=e.return;e!==null&&e.tag!==5&&e.tag!==3&&e.tag!==13;)e=e.return;mt=e}function hi(e){if(e!==mt)return!1;if(!_e)return Mc(e),_e=!0,!1;var t;if((t=e.tag!==3)&&!(t=e.tag!==5)&&(t=e.type,t=t!=="head"&&t!=="body"&&!yo(e.type,e.memoizedProps)),t&&(t=gt)){if(To(e))throw jc(),Error(r(418));for(;t;)Ac(e,t),t=un(t.nextSibling)}if(Mc(e),e.tag===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(r(317));e:{for(e=e.nextSibling,t=0;e;){if(e.nodeType===8){var s=e.data;if(s==="/$"){if(t===0){gt=un(e.nextSibling);break e}t--}else s!=="$"&&s!=="$!"&&s!=="$?"||t++}e=e.nextSibling}gt=null}}else gt=mt?un(e.stateNode.nextSibling):null;return!0}function jc(){for(var e=gt;e;)e=un(e.nextSibling)}function ar(){gt=mt=null,_e=!1}function Co(e){$t===null?$t=[e]:$t.push(e)}var vm=V.ReactCurrentBatchConfig;function cs(e,t,s){if(e=s.ref,e!==null&&typeof e!="function"&&typeof e!="object"){if(s._owner){if(s=s._owner,s){if(s.tag!==1)throw Error(r(309));var a=s.stateNode}if(!a)throw Error(r(147,e));var c=a,d=""+e;return t!==null&&t.ref!==null&&typeof t.ref=="function"&&t.ref._stringRef===d?t.ref:(t=function(m){var y=c.refs;m===null?delete y[d]:y[d]=m},t._stringRef=d,t)}if(typeof e!="string")throw Error(r(284));if(!s._owner)throw Error(r(290,e))}return e}function pi(e,t){throw e=Object.prototype.toString.call(t),Error(r(31,e==="[object Object]"?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function Rc(e){var t=e._init;return t(e._payload)}function Dc(e){function t(C,N){if(e){var L=C.deletions;L===null?(C.deletions=[N],C.flags|=16):L.push(N)}}function s(C,N){if(!e)return null;for(;N!==null;)t(C,N),N=N.sibling;return null}function a(C,N){for(C=new Map;N!==null;)N.key!==null?C.set(N.key,N):C.set(N.index,N),N=N.sibling;return C}function c(C,N){return C=Sn(C,N),C.index=0,C.sibling=null,C}function d(C,N,L){return C.index=L,e?(L=C.alternate,L!==null?(L=L.index,L<N?(C.flags|=2,N):L):(C.flags|=2,N)):(C.flags|=1048576,N)}function m(C){return e&&C.alternate===null&&(C.flags|=2),C}function y(C,N,L,U){return N===null||N.tag!==6?(N=va(L,C.mode,U),N.return=C,N):(N=c(N,L),N.return=C,N)}function k(C,N,L,U){var Z=L.type;return Z===Y?b(C,N,L.props.children,U,L.key):N!==null&&(N.elementType===Z||typeof Z=="object"&&Z!==null&&Z.$$typeof===He&&Rc(Z)===N.type)?(U=c(N,L.props),U.ref=cs(C,N,L),U.return=C,U):(U=bi(L.type,L.key,L.props,null,C.mode,U),U.ref=cs(C,N,L),U.return=C,U)}function I(C,N,L,U){return N===null||N.tag!==4||N.stateNode.containerInfo!==L.containerInfo||N.stateNode.implementation!==L.implementation?(N=wa(L,C.mode,U),N.return=C,N):(N=c(N,L.children||[]),N.return=C,N)}function b(C,N,L,U,Z){return N===null||N.tag!==7?(N=Dn(L,C.mode,U,Z),N.return=C,N):(N=c(N,L),N.return=C,N)}function F(C,N,L){if(typeof N=="string"&&N!==""||typeof N=="number")return N=va(""+N,C.mode,L),N.return=C,N;if(typeof N=="object"&&N!==null){switch(N.$$typeof){case W:return L=bi(N.type,N.key,N.props,null,C.mode,L),L.ref=cs(C,null,N),L.return=C,L;case j:return N=wa(N,C.mode,L),N.return=C,N;case He:var U=N._init;return F(C,U(N._payload),L)}if(Fr(N)||re(N))return N=Dn(N,C.mode,L,null),N.return=C,N;pi(C,N)}return null}function R(C,N,L,U){var Z=N!==null?N.key:null;if(typeof L=="string"&&L!==""||typeof L=="number")return Z!==null?null:y(C,N,""+L,U);if(typeof L=="object"&&L!==null){switch(L.$$typeof){case W:return L.key===Z?k(C,N,L,U):null;case j:return L.key===Z?I(C,N,L,U):null;case He:return Z=L._init,R(C,N,Z(L._payload),U)}if(Fr(L)||re(L))return Z!==null?null:b(C,N,L,U,null);pi(C,L)}return null}function q(C,N,L,U,Z){if(typeof U=="string"&&U!==""||typeof U=="number")return C=C.get(L)||null,y(N,C,""+U,Z);if(typeof U=="object"&&U!==null){switch(U.$$typeof){case W:return C=C.get(U.key===null?L:U.key)||null,k(N,C,U,Z);case j:return C=C.get(U.key===null?L:U.key)||null,I(N,C,U,Z);case He:var te=U._init;return q(C,N,L,te(U._payload),Z)}if(Fr(U)||re(U))return C=C.get(L)||null,b(N,C,U,Z,null);pi(N,U)}return null}function G(C,N,L,U){for(var Z=null,te=null,ne=N,se=N=0,Ve=null;ne!==null&&se<L.length;se++){ne.index>se?(Ve=ne,ne=null):Ve=ne.sibling;var pe=R(C,ne,L[se],U);if(pe===null){ne===null&&(ne=Ve);break}e&&ne&&pe.alternate===null&&t(C,ne),N=d(pe,N,se),te===null?Z=pe:te.sibling=pe,te=pe,ne=Ve}if(se===L.length)return s(C,ne),_e&&On(C,se),Z;if(ne===null){for(;se<L.length;se++)ne=F(C,L[se],U),ne!==null&&(N=d(ne,N,se),te===null?Z=ne:te.sibling=ne,te=ne);return _e&&On(C,se),Z}for(ne=a(C,ne);se<L.length;se++)Ve=q(ne,C,se,L[se],U),Ve!==null&&(e&&Ve.alternate!==null&&ne.delete(Ve.key===null?se:Ve.key),N=d(Ve,N,se),te===null?Z=Ve:te.sibling=Ve,te=Ve);return e&&ne.forEach(function(kn){return t(C,kn)}),_e&&On(C,se),Z}function X(C,N,L,U){var Z=re(L);if(typeof Z!="function")throw Error(r(150));if(L=Z.call(L),L==null)throw Error(r(151));for(var te=Z=null,ne=N,se=N=0,Ve=null,pe=L.next();ne!==null&&!pe.done;se++,pe=L.next()){ne.index>se?(Ve=ne,ne=null):Ve=ne.sibling;var kn=R(C,ne,pe.value,U);if(kn===null){ne===null&&(ne=Ve);break}e&&ne&&kn.alternate===null&&t(C,ne),N=d(kn,N,se),te===null?Z=kn:te.sibling=kn,te=kn,ne=Ve}if(pe.done)return s(C,ne),_e&&On(C,se),Z;if(ne===null){for(;!pe.done;se++,pe=L.next())pe=F(C,pe.value,U),pe!==null&&(N=d(pe,N,se),te===null?Z=pe:te.sibling=pe,te=pe);return _e&&On(C,se),Z}for(ne=a(C,ne);!pe.done;se++,pe=L.next())pe=q(ne,C,se,pe.value,U),pe!==null&&(e&&pe.alternate!==null&&ne.delete(pe.key===null?se:pe.key),N=d(pe,N,se),te===null?Z=pe:te.sibling=pe,te=pe);return e&&ne.forEach(function(Gm){return t(C,Gm)}),_e&&On(C,se),Z}function Me(C,N,L,U){if(typeof L=="object"&&L!==null&&L.type===Y&&L.key===null&&(L=L.props.children),typeof L=="object"&&L!==null){switch(L.$$typeof){case W:e:{for(var Z=L.key,te=N;te!==null;){if(te.key===Z){if(Z=L.type,Z===Y){if(te.tag===7){s(C,te.sibling),N=c(te,L.props.children),N.return=C,C=N;break e}}else if(te.elementType===Z||typeof Z=="object"&&Z!==null&&Z.$$typeof===He&&Rc(Z)===te.type){s(C,te.sibling),N=c(te,L.props),N.ref=cs(C,te,L),N.return=C,C=N;break e}s(C,te);break}else t(C,te);te=te.sibling}L.type===Y?(N=Dn(L.props.children,C.mode,U,L.key),N.return=C,C=N):(U=bi(L.type,L.key,L.props,null,C.mode,U),U.ref=cs(C,N,L),U.return=C,C=U)}return m(C);case j:e:{for(te=L.key;N!==null;){if(N.key===te)if(N.tag===4&&N.stateNode.containerInfo===L.containerInfo&&N.stateNode.implementation===L.implementation){s(C,N.sibling),N=c(N,L.children||[]),N.return=C,C=N;break e}else{s(C,N);break}else t(C,N);N=N.sibling}N=wa(L,C.mode,U),N.return=C,C=N}return m(C);case He:return te=L._init,Me(C,N,te(L._payload),U)}if(Fr(L))return G(C,N,L,U);if(re(L))return X(C,N,L,U);pi(C,L)}return typeof L=="string"&&L!==""||typeof L=="number"?(L=""+L,N!==null&&N.tag===6?(s(C,N.sibling),N=c(N,L),N.return=C,C=N):(s(C,N),N=va(L,C.mode,U),N.return=C,C=N),m(C)):s(C,N)}return Me}var ur=Dc(!0),bc=Dc(!1),mi=cn(null),gi=null,cr=null,Lo=null;function Oo(){Lo=cr=gi=null}function Io(e){var t=mi.current;Ne(mi),e._currentValue=t}function $o(e,t,s){for(;e!==null;){var a=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,a!==null&&(a.childLanes|=t)):a!==null&&(a.childLanes&t)!==t&&(a.childLanes|=t),e===s)break;e=e.return}}function fr(e,t){gi=e,Lo=cr=null,e=e.dependencies,e!==null&&e.firstContext!==null&&((e.lanes&t)!==0&&(lt=!0),e.firstContext=null)}function Nt(e){var t=e._currentValue;if(Lo!==e)if(e={context:e,memoizedValue:t,next:null},cr===null){if(gi===null)throw Error(r(308));cr=e,gi.dependencies={lanes:0,firstContext:e}}else cr=cr.next=e;return t}var In=null;function Ao(e){In===null?In=[e]:In.push(e)}function Fc(e,t,s,a){var c=t.interleaved;return c===null?(s.next=s,Ao(t)):(s.next=c.next,c.next=s),t.interleaved=s,Jt(e,a)}function Jt(e,t){e.lanes|=t;var s=e.alternate;for(s!==null&&(s.lanes|=t),s=e,e=e.return;e!==null;)e.childLanes|=t,s=e.alternate,s!==null&&(s.childLanes|=t),s=e,e=e.return;return s.tag===3?s.stateNode:null}var hn=!1;function Po(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Bc(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Yt(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function pn(e,t,s){var a=e.updateQueue;if(a===null)return null;if(a=a.shared,(fe&2)!==0){var c=a.pending;return c===null?t.next=t:(t.next=c.next,c.next=t),a.pending=t,Jt(e,s)}return c=a.interleaved,c===null?(t.next=t,Ao(a)):(t.next=c.next,c.next=t),a.interleaved=t,Jt(e,s)}function yi(e,t,s){if(t=t.updateQueue,t!==null&&(t=t.shared,(s&4194240)!==0)){var a=t.lanes;a&=e.pendingLanes,s|=a,t.lanes=s,ql(e,s)}}function zc(e,t){var s=e.updateQueue,a=e.alternate;if(a!==null&&(a=a.updateQueue,s===a)){var c=null,d=null;if(s=s.firstBaseUpdate,s!==null){do{var m={eventTime:s.eventTime,lane:s.lane,tag:s.tag,payload:s.payload,callback:s.callback,next:null};d===null?c=d=m:d=d.next=m,s=s.next}while(s!==null);d===null?c=d=t:d=d.next=t}else c=d=t;s={baseState:a.baseState,firstBaseUpdate:c,lastBaseUpdate:d,shared:a.shared,effects:a.effects},e.updateQueue=s;return}e=s.lastBaseUpdate,e===null?s.firstBaseUpdate=t:e.next=t,s.lastBaseUpdate=t}function vi(e,t,s,a){var c=e.updateQueue;hn=!1;var d=c.firstBaseUpdate,m=c.lastBaseUpdate,y=c.shared.pending;if(y!==null){c.shared.pending=null;var k=y,I=k.next;k.next=null,m===null?d=I:m.next=I,m=k;var b=e.alternate;b!==null&&(b=b.updateQueue,y=b.lastBaseUpdate,y!==m&&(y===null?b.firstBaseUpdate=I:y.next=I,b.lastBaseUpdate=k))}if(d!==null){var F=c.baseState;m=0,b=I=k=null,y=d;do{var R=y.lane,q=y.eventTime;if((a&R)===R){b!==null&&(b=b.next={eventTime:q,lane:0,tag:y.tag,payload:y.payload,callback:y.callback,next:null});e:{var G=e,X=y;switch(R=t,q=s,X.tag){case 1:if(G=X.payload,typeof G=="function"){F=G.call(q,F,R);break e}F=G;break e;case 3:G.flags=G.flags&-65537|128;case 0:if(G=X.payload,R=typeof G=="function"?G.call(q,F,R):G,R==null)break e;F=J({},F,R);break e;case 2:hn=!0}}y.callback!==null&&y.lane!==0&&(e.flags|=64,R=c.effects,R===null?c.effects=[y]:R.push(y))}else q={eventTime:q,lane:R,tag:y.tag,payload:y.payload,callback:y.callback,next:null},b===null?(I=b=q,k=F):b=b.next=q,m|=R;if(y=y.next,y===null){if(y=c.shared.pending,y===null)break;R=y,y=R.next,R.next=null,c.lastBaseUpdate=R,c.shared.pending=null}}while(!0);if(b===null&&(k=F),c.baseState=k,c.firstBaseUpdate=I,c.lastBaseUpdate=b,t=c.shared.interleaved,t!==null){c=t;do m|=c.lane,c=c.next;while(c!==t)}else d===null&&(c.shared.lanes=0);Pn|=m,e.lanes=m,e.memoizedState=F}}function Uc(e,t,s){if(e=t.effects,t.effects=null,e!==null)for(t=0;t<e.length;t++){var a=e[t],c=a.callback;if(c!==null){if(a.callback=null,a=s,typeof c!="function")throw Error(r(191,c));c.call(a)}}}var fs={},Bt=cn(fs),ds=cn(fs),hs=cn(fs);function $n(e){if(e===fs)throw Error(r(174));return e}function Mo(e,t){switch(Se(hs,t),Se(ds,e),Se(Bt,fs),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Ml(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=Ml(t,e)}Ne(Bt),Se(Bt,t)}function dr(){Ne(Bt),Ne(ds),Ne(hs)}function Vc(e){$n(hs.current);var t=$n(Bt.current),s=Ml(t,e.type);t!==s&&(Se(ds,e),Se(Bt,s))}function jo(e){ds.current===e&&(Ne(Bt),Ne(ds))}var Le=cn(0);function wi(e){for(var t=e;t!==null;){if(t.tag===13){var s=t.memoizedState;if(s!==null&&(s=s.dehydrated,s===null||s.data==="$?"||s.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Ro=[];function Do(){for(var e=0;e<Ro.length;e++)Ro[e]._workInProgressVersionPrimary=null;Ro.length=0}var Si=V.ReactCurrentDispatcher,bo=V.ReactCurrentBatchConfig,An=0,Oe=null,be=null,ze=null,ki=!1,ps=!1,ms=0,wm=0;function Je(){throw Error(r(321))}function Fo(e,t){if(t===null)return!1;for(var s=0;s<t.length&&s<e.length;s++)if(!It(e[s],t[s]))return!1;return!0}function Bo(e,t,s,a,c,d){if(An=d,Oe=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Si.current=e===null||e.memoizedState===null?Nm:xm,e=s(a,c),ps){d=0;do{if(ps=!1,ms=0,25<=d)throw Error(r(301));d+=1,ze=be=null,t.updateQueue=null,Si.current=Tm,e=s(a,c)}while(ps)}if(Si.current=xi,t=be!==null&&be.next!==null,An=0,ze=be=Oe=null,ki=!1,t)throw Error(r(300));return e}function zo(){var e=ms!==0;return ms=0,e}function zt(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return ze===null?Oe.memoizedState=ze=e:ze=ze.next=e,ze}function xt(){if(be===null){var e=Oe.alternate;e=e!==null?e.memoizedState:null}else e=be.next;var t=ze===null?Oe.memoizedState:ze.next;if(t!==null)ze=t,be=e;else{if(e===null)throw Error(r(310));be=e,e={memoizedState:be.memoizedState,baseState:be.baseState,baseQueue:be.baseQueue,queue:be.queue,next:null},ze===null?Oe.memoizedState=ze=e:ze=ze.next=e}return ze}function gs(e,t){return typeof t=="function"?t(e):t}function Uo(e){var t=xt(),s=t.queue;if(s===null)throw Error(r(311));s.lastRenderedReducer=e;var a=be,c=a.baseQueue,d=s.pending;if(d!==null){if(c!==null){var m=c.next;c.next=d.next,d.next=m}a.baseQueue=c=d,s.pending=null}if(c!==null){d=c.next,a=a.baseState;var y=m=null,k=null,I=d;do{var b=I.lane;if((An&b)===b)k!==null&&(k=k.next={lane:0,action:I.action,hasEagerState:I.hasEagerState,eagerState:I.eagerState,next:null}),a=I.hasEagerState?I.eagerState:e(a,I.action);else{var F={lane:b,action:I.action,hasEagerState:I.hasEagerState,eagerState:I.eagerState,next:null};k===null?(y=k=F,m=a):k=k.next=F,Oe.lanes|=b,Pn|=b}I=I.next}while(I!==null&&I!==d);k===null?m=a:k.next=y,It(a,t.memoizedState)||(lt=!0),t.memoizedState=a,t.baseState=m,t.baseQueue=k,s.lastRenderedState=a}if(e=s.interleaved,e!==null){c=e;do d=c.lane,Oe.lanes|=d,Pn|=d,c=c.next;while(c!==e)}else c===null&&(s.lanes=0);return[t.memoizedState,s.dispatch]}function Vo(e){var t=xt(),s=t.queue;if(s===null)throw Error(r(311));s.lastRenderedReducer=e;var a=s.dispatch,c=s.pending,d=t.memoizedState;if(c!==null){s.pending=null;var m=c=c.next;do d=e(d,m.action),m=m.next;while(m!==c);It(d,t.memoizedState)||(lt=!0),t.memoizedState=d,t.baseQueue===null&&(t.baseState=d),s.lastRenderedState=d}return[d,a]}function Kc(){}function Wc(e,t){var s=Oe,a=xt(),c=t(),d=!It(a.memoizedState,c);if(d&&(a.memoizedState=c,lt=!0),a=a.queue,Ko(Qc.bind(null,s,a,e),[e]),a.getSnapshot!==t||d||ze!==null&&ze.memoizedState.tag&1){if(s.flags|=2048,ys(9,Hc.bind(null,s,a,c,t),void 0,null),Ue===null)throw Error(r(349));(An&30)!==0||qc(s,t,c)}return c}function qc(e,t,s){e.flags|=16384,e={getSnapshot:t,value:s},t=Oe.updateQueue,t===null?(t={lastEffect:null,stores:null},Oe.updateQueue=t,t.stores=[e]):(s=t.stores,s===null?t.stores=[e]:s.push(e))}function Hc(e,t,s,a){t.value=s,t.getSnapshot=a,Jc(t)&&Yc(e)}function Qc(e,t,s){return s(function(){Jc(t)&&Yc(e)})}function Jc(e){var t=e.getSnapshot;e=e.value;try{var s=t();return!It(e,s)}catch{return!0}}function Yc(e){var t=Jt(e,1);t!==null&&jt(t,e,1,-1)}function Gc(e){var t=zt();return typeof e=="function"&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:gs,lastRenderedState:e},t.queue=e,e=e.dispatch=Em.bind(null,Oe,e),[t.memoizedState,e]}function ys(e,t,s,a){return e={tag:e,create:t,destroy:s,deps:a,next:null},t=Oe.updateQueue,t===null?(t={lastEffect:null,stores:null},Oe.updateQueue=t,t.lastEffect=e.next=e):(s=t.lastEffect,s===null?t.lastEffect=e.next=e:(a=s.next,s.next=e,e.next=a,t.lastEffect=e)),e}function Xc(){return xt().memoizedState}function Ei(e,t,s,a){var c=zt();Oe.flags|=e,c.memoizedState=ys(1|t,s,void 0,a===void 0?null:a)}function Ni(e,t,s,a){var c=xt();a=a===void 0?null:a;var d=void 0;if(be!==null){var m=be.memoizedState;if(d=m.destroy,a!==null&&Fo(a,m.deps)){c.memoizedState=ys(t,s,d,a);return}}Oe.flags|=e,c.memoizedState=ys(1|t,s,d,a)}function Zc(e,t){return Ei(8390656,8,e,t)}function Ko(e,t){return Ni(2048,8,e,t)}function ef(e,t){return Ni(4,2,e,t)}function tf(e,t){return Ni(4,4,e,t)}function nf(e,t){if(typeof t=="function")return e=e(),t(e),function(){t(null)};if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function rf(e,t,s){return s=s!=null?s.concat([e]):null,Ni(4,4,nf.bind(null,t,e),s)}function Wo(){}function sf(e,t){var s=xt();t=t===void 0?null:t;var a=s.memoizedState;return a!==null&&t!==null&&Fo(t,a[1])?a[0]:(s.memoizedState=[e,t],e)}function lf(e,t){var s=xt();t=t===void 0?null:t;var a=s.memoizedState;return a!==null&&t!==null&&Fo(t,a[1])?a[0]:(e=e(),s.memoizedState=[e,t],e)}function of(e,t,s){return(An&21)===0?(e.baseState&&(e.baseState=!1,lt=!0),e.memoizedState=s):(It(s,t)||(s=Ru(),Oe.lanes|=s,Pn|=s,e.baseState=!0),t)}function Sm(e,t){var s=ge;ge=s!==0&&4>s?s:4,e(!0);var a=bo.transition;bo.transition={};try{e(!1),t()}finally{ge=s,bo.transition=a}}function af(){return xt().memoizedState}function km(e,t,s){var a=vn(e);if(s={lane:a,action:s,hasEagerState:!1,eagerState:null,next:null},uf(e))cf(t,s);else if(s=Fc(e,t,s,a),s!==null){var c=tt();jt(s,e,a,c),ff(s,t,a)}}function Em(e,t,s){var a=vn(e),c={lane:a,action:s,hasEagerState:!1,eagerState:null,next:null};if(uf(e))cf(t,c);else{var d=e.alternate;if(e.lanes===0&&(d===null||d.lanes===0)&&(d=t.lastRenderedReducer,d!==null))try{var m=t.lastRenderedState,y=d(m,s);if(c.hasEagerState=!0,c.eagerState=y,It(y,m)){var k=t.interleaved;k===null?(c.next=c,Ao(t)):(c.next=k.next,k.next=c),t.interleaved=c;return}}catch{}finally{}s=Fc(e,t,c,a),s!==null&&(c=tt(),jt(s,e,a,c),ff(s,t,a))}}function uf(e){var t=e.alternate;return e===Oe||t!==null&&t===Oe}function cf(e,t){ps=ki=!0;var s=e.pending;s===null?t.next=t:(t.next=s.next,s.next=t),e.pending=t}function ff(e,t,s){if((s&4194240)!==0){var a=t.lanes;a&=e.pendingLanes,s|=a,t.lanes=s,ql(e,s)}}var xi={readContext:Nt,useCallback:Je,useContext:Je,useEffect:Je,useImperativeHandle:Je,useInsertionEffect:Je,useLayoutEffect:Je,useMemo:Je,useReducer:Je,useRef:Je,useState:Je,useDebugValue:Je,useDeferredValue:Je,useTransition:Je,useMutableSource:Je,useSyncExternalStore:Je,useId:Je,unstable_isNewReconciler:!1},Nm={readContext:Nt,useCallback:function(e,t){return zt().memoizedState=[e,t===void 0?null:t],e},useContext:Nt,useEffect:Zc,useImperativeHandle:function(e,t,s){return s=s!=null?s.concat([e]):null,Ei(4194308,4,nf.bind(null,t,e),s)},useLayoutEffect:function(e,t){return Ei(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ei(4,2,e,t)},useMemo:function(e,t){var s=zt();return t=t===void 0?null:t,e=e(),s.memoizedState=[e,t],e},useReducer:function(e,t,s){var a=zt();return t=s!==void 0?s(t):t,a.memoizedState=a.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},a.queue=e,e=e.dispatch=km.bind(null,Oe,e),[a.memoizedState,e]},useRef:function(e){var t=zt();return e={current:e},t.memoizedState=e},useState:Gc,useDebugValue:Wo,useDeferredValue:function(e){return zt().memoizedState=e},useTransition:function(){var e=Gc(!1),t=e[0];return e=Sm.bind(null,e[1]),zt().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,s){var a=Oe,c=zt();if(_e){if(s===void 0)throw Error(r(407));s=s()}else{if(s=t(),Ue===null)throw Error(r(349));(An&30)!==0||qc(a,t,s)}c.memoizedState=s;var d={value:s,getSnapshot:t};return c.queue=d,Zc(Qc.bind(null,a,d,e),[e]),a.flags|=2048,ys(9,Hc.bind(null,a,d,s,t),void 0,null),s},useId:function(){var e=zt(),t=Ue.identifierPrefix;if(_e){var s=Qt,a=Ht;s=(a&~(1<<32-Ot(a)-1)).toString(32)+s,t=":"+t+"R"+s,s=ms++,0<s&&(t+="H"+s.toString(32)),t+=":"}else s=wm++,t=":"+t+"r"+s.toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},xm={readContext:Nt,useCallback:sf,useContext:Nt,useEffect:Ko,useImperativeHandle:rf,useInsertionEffect:ef,useLayoutEffect:tf,useMemo:lf,useReducer:Uo,useRef:Xc,useState:function(){return Uo(gs)},useDebugValue:Wo,useDeferredValue:function(e){var t=xt();return of(t,be.memoizedState,e)},useTransition:function(){var e=Uo(gs)[0],t=xt().memoizedState;return[e,t]},useMutableSource:Kc,useSyncExternalStore:Wc,useId:af,unstable_isNewReconciler:!1},Tm={readContext:Nt,useCallback:sf,useContext:Nt,useEffect:Ko,useImperativeHandle:rf,useInsertionEffect:ef,useLayoutEffect:tf,useMemo:lf,useReducer:Vo,useRef:Xc,useState:function(){return Vo(gs)},useDebugValue:Wo,useDeferredValue:function(e){var t=xt();return be===null?t.memoizedState=e:of(t,be.memoizedState,e)},useTransition:function(){var e=Vo(gs)[0],t=xt().memoizedState;return[e,t]},useMutableSource:Kc,useSyncExternalStore:Wc,useId:af,unstable_isNewReconciler:!1};function At(e,t){if(e&&e.defaultProps){t=J({},t),e=e.defaultProps;for(var s in e)t[s]===void 0&&(t[s]=e[s]);return t}return t}function qo(e,t,s,a){t=e.memoizedState,s=s(a,t),s=s==null?t:J({},t,s),e.memoizedState=s,e.lanes===0&&(e.updateQueue.baseState=s)}var Ti={isMounted:function(e){return(e=e._reactInternals)?Tn(e)===e:!1},enqueueSetState:function(e,t,s){e=e._reactInternals;var a=tt(),c=vn(e),d=Yt(a,c);d.payload=t,s!=null&&(d.callback=s),t=pn(e,d,c),t!==null&&(jt(t,e,c,a),yi(t,e,c))},enqueueReplaceState:function(e,t,s){e=e._reactInternals;var a=tt(),c=vn(e),d=Yt(a,c);d.tag=1,d.payload=t,s!=null&&(d.callback=s),t=pn(e,d,c),t!==null&&(jt(t,e,c,a),yi(t,e,c))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var s=tt(),a=vn(e),c=Yt(s,a);c.tag=2,t!=null&&(c.callback=t),t=pn(e,c,a),t!==null&&(jt(t,e,a,s),yi(t,e,a))}};function df(e,t,s,a,c,d,m){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(a,d,m):t.prototype&&t.prototype.isPureReactComponent?!rs(s,a)||!rs(c,d):!0}function hf(e,t,s){var a=!1,c=fn,d=t.contextType;return typeof d=="object"&&d!==null?d=Nt(d):(c=it(t)?Cn:Qe.current,a=t.contextTypes,d=(a=a!=null)?ir(e,c):fn),t=new t(s,d),e.memoizedState=t.state!==null&&t.state!==void 0?t.state:null,t.updater=Ti,e.stateNode=t,t._reactInternals=e,a&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=c,e.__reactInternalMemoizedMaskedChildContext=d),t}function pf(e,t,s,a){e=t.state,typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps(s,a),typeof t.UNSAFE_componentWillReceiveProps=="function"&&t.UNSAFE_componentWillReceiveProps(s,a),t.state!==e&&Ti.enqueueReplaceState(t,t.state,null)}function Ho(e,t,s,a){var c=e.stateNode;c.props=s,c.state=e.memoizedState,c.refs={},Po(e);var d=t.contextType;typeof d=="object"&&d!==null?c.context=Nt(d):(d=it(t)?Cn:Qe.current,c.context=ir(e,d)),c.state=e.memoizedState,d=t.getDerivedStateFromProps,typeof d=="function"&&(qo(e,t,d,s),c.state=e.memoizedState),typeof t.getDerivedStateFromProps=="function"||typeof c.getSnapshotBeforeUpdate=="function"||typeof c.UNSAFE_componentWillMount!="function"&&typeof c.componentWillMount!="function"||(t=c.state,typeof c.componentWillMount=="function"&&c.componentWillMount(),typeof c.UNSAFE_componentWillMount=="function"&&c.UNSAFE_componentWillMount(),t!==c.state&&Ti.enqueueReplaceState(c,c.state,null),vi(e,s,c,a),c.state=e.memoizedState),typeof c.componentDidMount=="function"&&(e.flags|=4194308)}function hr(e,t){try{var s="",a=t;do s+=de(a),a=a.return;while(a);var c=s}catch(d){c=`
|
|
40
|
+
Error generating stack: `+d.message+`
|
|
41
|
+
`+d.stack}return{value:e,source:t,stack:c,digest:null}}function Qo(e,t,s){return{value:e,source:null,stack:s??null,digest:t??null}}function Jo(e,t){try{console.error(t.value)}catch(s){setTimeout(function(){throw s})}}var _m=typeof WeakMap=="function"?WeakMap:Map;function mf(e,t,s){s=Yt(-1,s),s.tag=3,s.payload={element:null};var a=t.value;return s.callback=function(){Ai||(Ai=!0,ca=a),Jo(e,t)},s}function gf(e,t,s){s=Yt(-1,s),s.tag=3;var a=e.type.getDerivedStateFromError;if(typeof a=="function"){var c=t.value;s.payload=function(){return a(c)},s.callback=function(){Jo(e,t)}}var d=e.stateNode;return d!==null&&typeof d.componentDidCatch=="function"&&(s.callback=function(){Jo(e,t),typeof a!="function"&&(gn===null?gn=new Set([this]):gn.add(this));var m=t.stack;this.componentDidCatch(t.value,{componentStack:m!==null?m:""})}),s}function yf(e,t,s){var a=e.pingCache;if(a===null){a=e.pingCache=new _m;var c=new Set;a.set(t,c)}else c=a.get(t),c===void 0&&(c=new Set,a.set(t,c));c.has(s)||(c.add(s),e=Bm.bind(null,e,t,s),t.then(e,e))}function vf(e){do{var t;if((t=e.tag===13)&&(t=e.memoizedState,t=t!==null?t.dehydrated!==null:!0),t)return e;e=e.return}while(e!==null);return null}function wf(e,t,s,a,c){return(e.mode&1)===0?(e===t?e.flags|=65536:(e.flags|=128,s.flags|=131072,s.flags&=-52805,s.tag===1&&(s.alternate===null?s.tag=17:(t=Yt(-1,1),t.tag=2,pn(s,t,1))),s.lanes|=1),e):(e.flags|=65536,e.lanes=c,e)}var Cm=V.ReactCurrentOwner,lt=!1;function et(e,t,s,a){t.child=e===null?bc(t,null,s,a):ur(t,e.child,s,a)}function Sf(e,t,s,a,c){s=s.render;var d=t.ref;return fr(t,c),a=Bo(e,t,s,a,d,c),s=zo(),e!==null&&!lt?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~c,Gt(e,t,c)):(_e&&s&&No(t),t.flags|=1,et(e,t,a,c),t.child)}function kf(e,t,s,a,c){if(e===null){var d=s.type;return typeof d=="function"&&!ya(d)&&d.defaultProps===void 0&&s.compare===null&&s.defaultProps===void 0?(t.tag=15,t.type=d,Ef(e,t,d,a,c)):(e=bi(s.type,null,a,t,t.mode,c),e.ref=t.ref,e.return=t,t.child=e)}if(d=e.child,(e.lanes&c)===0){var m=d.memoizedProps;if(s=s.compare,s=s!==null?s:rs,s(m,a)&&e.ref===t.ref)return Gt(e,t,c)}return t.flags|=1,e=Sn(d,a),e.ref=t.ref,e.return=t,t.child=e}function Ef(e,t,s,a,c){if(e!==null){var d=e.memoizedProps;if(rs(d,a)&&e.ref===t.ref)if(lt=!1,t.pendingProps=a=d,(e.lanes&c)!==0)(e.flags&131072)!==0&&(lt=!0);else return t.lanes=e.lanes,Gt(e,t,c)}return Yo(e,t,s,a,c)}function Nf(e,t,s){var a=t.pendingProps,c=a.children,d=e!==null?e.memoizedState:null;if(a.mode==="hidden")if((t.mode&1)===0)t.memoizedState={baseLanes:0,cachePool:null,transitions:null},Se(mr,yt),yt|=s;else{if((s&1073741824)===0)return e=d!==null?d.baseLanes|s:s,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,Se(mr,yt),yt|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},a=d!==null?d.baseLanes:s,Se(mr,yt),yt|=a}else d!==null?(a=d.baseLanes|s,t.memoizedState=null):a=s,Se(mr,yt),yt|=a;return et(e,t,c,s),t.child}function xf(e,t){var s=t.ref;(e===null&&s!==null||e!==null&&e.ref!==s)&&(t.flags|=512,t.flags|=2097152)}function Yo(e,t,s,a,c){var d=it(s)?Cn:Qe.current;return d=ir(t,d),fr(t,c),s=Bo(e,t,s,a,d,c),a=zo(),e!==null&&!lt?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~c,Gt(e,t,c)):(_e&&a&&No(t),t.flags|=1,et(e,t,s,c),t.child)}function Tf(e,t,s,a,c){if(it(s)){var d=!0;ui(t)}else d=!1;if(fr(t,c),t.stateNode===null)Ci(e,t),hf(t,s,a),Ho(t,s,a,c),a=!0;else if(e===null){var m=t.stateNode,y=t.memoizedProps;m.props=y;var k=m.context,I=s.contextType;typeof I=="object"&&I!==null?I=Nt(I):(I=it(s)?Cn:Qe.current,I=ir(t,I));var b=s.getDerivedStateFromProps,F=typeof b=="function"||typeof m.getSnapshotBeforeUpdate=="function";F||typeof m.UNSAFE_componentWillReceiveProps!="function"&&typeof m.componentWillReceiveProps!="function"||(y!==a||k!==I)&&pf(t,m,a,I),hn=!1;var R=t.memoizedState;m.state=R,vi(t,a,m,c),k=t.memoizedState,y!==a||R!==k||st.current||hn?(typeof b=="function"&&(qo(t,s,b,a),k=t.memoizedState),(y=hn||df(t,s,y,a,R,k,I))?(F||typeof m.UNSAFE_componentWillMount!="function"&&typeof m.componentWillMount!="function"||(typeof m.componentWillMount=="function"&&m.componentWillMount(),typeof m.UNSAFE_componentWillMount=="function"&&m.UNSAFE_componentWillMount()),typeof m.componentDidMount=="function"&&(t.flags|=4194308)):(typeof m.componentDidMount=="function"&&(t.flags|=4194308),t.memoizedProps=a,t.memoizedState=k),m.props=a,m.state=k,m.context=I,a=y):(typeof m.componentDidMount=="function"&&(t.flags|=4194308),a=!1)}else{m=t.stateNode,Bc(e,t),y=t.memoizedProps,I=t.type===t.elementType?y:At(t.type,y),m.props=I,F=t.pendingProps,R=m.context,k=s.contextType,typeof k=="object"&&k!==null?k=Nt(k):(k=it(s)?Cn:Qe.current,k=ir(t,k));var q=s.getDerivedStateFromProps;(b=typeof q=="function"||typeof m.getSnapshotBeforeUpdate=="function")||typeof m.UNSAFE_componentWillReceiveProps!="function"&&typeof m.componentWillReceiveProps!="function"||(y!==F||R!==k)&&pf(t,m,a,k),hn=!1,R=t.memoizedState,m.state=R,vi(t,a,m,c);var G=t.memoizedState;y!==F||R!==G||st.current||hn?(typeof q=="function"&&(qo(t,s,q,a),G=t.memoizedState),(I=hn||df(t,s,I,a,R,G,k)||!1)?(b||typeof m.UNSAFE_componentWillUpdate!="function"&&typeof m.componentWillUpdate!="function"||(typeof m.componentWillUpdate=="function"&&m.componentWillUpdate(a,G,k),typeof m.UNSAFE_componentWillUpdate=="function"&&m.UNSAFE_componentWillUpdate(a,G,k)),typeof m.componentDidUpdate=="function"&&(t.flags|=4),typeof m.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof m.componentDidUpdate!="function"||y===e.memoizedProps&&R===e.memoizedState||(t.flags|=4),typeof m.getSnapshotBeforeUpdate!="function"||y===e.memoizedProps&&R===e.memoizedState||(t.flags|=1024),t.memoizedProps=a,t.memoizedState=G),m.props=a,m.state=G,m.context=k,a=I):(typeof m.componentDidUpdate!="function"||y===e.memoizedProps&&R===e.memoizedState||(t.flags|=4),typeof m.getSnapshotBeforeUpdate!="function"||y===e.memoizedProps&&R===e.memoizedState||(t.flags|=1024),a=!1)}return Go(e,t,s,a,d,c)}function Go(e,t,s,a,c,d){xf(e,t);var m=(t.flags&128)!==0;if(!a&&!m)return c&&Oc(t,s,!1),Gt(e,t,d);a=t.stateNode,Cm.current=t;var y=m&&typeof s.getDerivedStateFromError!="function"?null:a.render();return t.flags|=1,e!==null&&m?(t.child=ur(t,e.child,null,d),t.child=ur(t,null,y,d)):et(e,t,y,d),t.memoizedState=a.state,c&&Oc(t,s,!0),t.child}function _f(e){var t=e.stateNode;t.pendingContext?Cc(e,t.pendingContext,t.pendingContext!==t.context):t.context&&Cc(e,t.context,!1),Mo(e,t.containerInfo)}function Cf(e,t,s,a,c){return ar(),Co(c),t.flags|=256,et(e,t,s,a),t.child}var Xo={dehydrated:null,treeContext:null,retryLane:0};function Zo(e){return{baseLanes:e,cachePool:null,transitions:null}}function Lf(e,t,s){var a=t.pendingProps,c=Le.current,d=!1,m=(t.flags&128)!==0,y;if((y=m)||(y=e!==null&&e.memoizedState===null?!1:(c&2)!==0),y?(d=!0,t.flags&=-129):(e===null||e.memoizedState!==null)&&(c|=1),Se(Le,c&1),e===null)return _o(t),e=t.memoizedState,e!==null&&(e=e.dehydrated,e!==null)?((t.mode&1)===0?t.lanes=1:e.data==="$!"?t.lanes=8:t.lanes=1073741824,null):(m=a.children,e=a.fallback,d?(a=t.mode,d=t.child,m={mode:"hidden",children:m},(a&1)===0&&d!==null?(d.childLanes=0,d.pendingProps=m):d=Fi(m,a,0,null),e=Dn(e,a,s,null),d.return=t,e.return=t,d.sibling=e,t.child=d,t.child.memoizedState=Zo(s),t.memoizedState=Xo,e):ea(t,m));if(c=e.memoizedState,c!==null&&(y=c.dehydrated,y!==null))return Lm(e,t,m,a,y,c,s);if(d){d=a.fallback,m=t.mode,c=e.child,y=c.sibling;var k={mode:"hidden",children:a.children};return(m&1)===0&&t.child!==c?(a=t.child,a.childLanes=0,a.pendingProps=k,t.deletions=null):(a=Sn(c,k),a.subtreeFlags=c.subtreeFlags&14680064),y!==null?d=Sn(y,d):(d=Dn(d,m,s,null),d.flags|=2),d.return=t,a.return=t,a.sibling=d,t.child=a,a=d,d=t.child,m=e.child.memoizedState,m=m===null?Zo(s):{baseLanes:m.baseLanes|s,cachePool:null,transitions:m.transitions},d.memoizedState=m,d.childLanes=e.childLanes&~s,t.memoizedState=Xo,a}return d=e.child,e=d.sibling,a=Sn(d,{mode:"visible",children:a.children}),(t.mode&1)===0&&(a.lanes=s),a.return=t,a.sibling=null,e!==null&&(s=t.deletions,s===null?(t.deletions=[e],t.flags|=16):s.push(e)),t.child=a,t.memoizedState=null,a}function ea(e,t){return t=Fi({mode:"visible",children:t},e.mode,0,null),t.return=e,e.child=t}function _i(e,t,s,a){return a!==null&&Co(a),ur(t,e.child,null,s),e=ea(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function Lm(e,t,s,a,c,d,m){if(s)return t.flags&256?(t.flags&=-257,a=Qo(Error(r(422))),_i(e,t,m,a)):t.memoizedState!==null?(t.child=e.child,t.flags|=128,null):(d=a.fallback,c=t.mode,a=Fi({mode:"visible",children:a.children},c,0,null),d=Dn(d,c,m,null),d.flags|=2,a.return=t,d.return=t,a.sibling=d,t.child=a,(t.mode&1)!==0&&ur(t,e.child,null,m),t.child.memoizedState=Zo(m),t.memoizedState=Xo,d);if((t.mode&1)===0)return _i(e,t,m,null);if(c.data==="$!"){if(a=c.nextSibling&&c.nextSibling.dataset,a)var y=a.dgst;return a=y,d=Error(r(419)),a=Qo(d,a,void 0),_i(e,t,m,a)}if(y=(m&e.childLanes)!==0,lt||y){if(a=Ue,a!==null){switch(m&-m){case 4:c=2;break;case 16:c=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:c=32;break;case 536870912:c=268435456;break;default:c=0}c=(c&(a.suspendedLanes|m))!==0?0:c,c!==0&&c!==d.retryLane&&(d.retryLane=c,Jt(e,c),jt(a,e,c,-1))}return ga(),a=Qo(Error(r(421))),_i(e,t,m,a)}return c.data==="$?"?(t.flags|=128,t.child=e.child,t=zm.bind(null,e),c._reactRetry=t,null):(e=d.treeContext,gt=un(c.nextSibling),mt=t,_e=!0,$t=null,e!==null&&(kt[Et++]=Ht,kt[Et++]=Qt,kt[Et++]=Ln,Ht=e.id,Qt=e.overflow,Ln=t),t=ea(t,a.children),t.flags|=4096,t)}function Of(e,t,s){e.lanes|=t;var a=e.alternate;a!==null&&(a.lanes|=t),$o(e.return,t,s)}function ta(e,t,s,a,c){var d=e.memoizedState;d===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:s,tailMode:c}:(d.isBackwards=t,d.rendering=null,d.renderingStartTime=0,d.last=a,d.tail=s,d.tailMode=c)}function If(e,t,s){var a=t.pendingProps,c=a.revealOrder,d=a.tail;if(et(e,t,a.children,s),a=Le.current,(a&2)!==0)a=a&1|2,t.flags|=128;else{if(e!==null&&(e.flags&128)!==0)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Of(e,s,t);else if(e.tag===19)Of(e,s,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;e.sibling===null;){if(e.return===null||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(Se(Le,a),(t.mode&1)===0)t.memoizedState=null;else switch(c){case"forwards":for(s=t.child,c=null;s!==null;)e=s.alternate,e!==null&&wi(e)===null&&(c=s),s=s.sibling;s=c,s===null?(c=t.child,t.child=null):(c=s.sibling,s.sibling=null),ta(t,!1,c,s,d);break;case"backwards":for(s=null,c=t.child,t.child=null;c!==null;){if(e=c.alternate,e!==null&&wi(e)===null){t.child=c;break}e=c.sibling,c.sibling=s,s=c,c=e}ta(t,!0,s,null,d);break;case"together":ta(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Ci(e,t){(t.mode&1)===0&&e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2)}function Gt(e,t,s){if(e!==null&&(t.dependencies=e.dependencies),Pn|=t.lanes,(s&t.childLanes)===0)return null;if(e!==null&&t.child!==e.child)throw Error(r(153));if(t.child!==null){for(e=t.child,s=Sn(e,e.pendingProps),t.child=s,s.return=t;e.sibling!==null;)e=e.sibling,s=s.sibling=Sn(e,e.pendingProps),s.return=t;s.sibling=null}return t.child}function Om(e,t,s){switch(t.tag){case 3:_f(t),ar();break;case 5:Vc(t);break;case 1:it(t.type)&&ui(t);break;case 4:Mo(t,t.stateNode.containerInfo);break;case 10:var a=t.type._context,c=t.memoizedProps.value;Se(mi,a._currentValue),a._currentValue=c;break;case 13:if(a=t.memoizedState,a!==null)return a.dehydrated!==null?(Se(Le,Le.current&1),t.flags|=128,null):(s&t.child.childLanes)!==0?Lf(e,t,s):(Se(Le,Le.current&1),e=Gt(e,t,s),e!==null?e.sibling:null);Se(Le,Le.current&1);break;case 19:if(a=(s&t.childLanes)!==0,(e.flags&128)!==0){if(a)return If(e,t,s);t.flags|=128}if(c=t.memoizedState,c!==null&&(c.rendering=null,c.tail=null,c.lastEffect=null),Se(Le,Le.current),a)break;return null;case 22:case 23:return t.lanes=0,Nf(e,t,s)}return Gt(e,t,s)}var $f,na,Af,Pf;$f=function(e,t){for(var s=t.child;s!==null;){if(s.tag===5||s.tag===6)e.appendChild(s.stateNode);else if(s.tag!==4&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break;for(;s.sibling===null;){if(s.return===null||s.return===t)return;s=s.return}s.sibling.return=s.return,s=s.sibling}},na=function(){},Af=function(e,t,s,a){var c=e.memoizedProps;if(c!==a){e=t.stateNode,$n(Bt.current);var d=null;switch(s){case"input":c=Il(e,c),a=Il(e,a),d=[];break;case"select":c=J({},c,{value:void 0}),a=J({},a,{value:void 0}),d=[];break;case"textarea":c=Pl(e,c),a=Pl(e,a),d=[];break;default:typeof c.onClick!="function"&&typeof a.onClick=="function"&&(e.onclick=li)}jl(s,a);var m;s=null;for(I in c)if(!a.hasOwnProperty(I)&&c.hasOwnProperty(I)&&c[I]!=null)if(I==="style"){var y=c[I];for(m in y)y.hasOwnProperty(m)&&(s||(s={}),s[m]="")}else I!=="dangerouslySetInnerHTML"&&I!=="children"&&I!=="suppressContentEditableWarning"&&I!=="suppressHydrationWarning"&&I!=="autoFocus"&&(o.hasOwnProperty(I)?d||(d=[]):(d=d||[]).push(I,null));for(I in a){var k=a[I];if(y=c!=null?c[I]:void 0,a.hasOwnProperty(I)&&k!==y&&(k!=null||y!=null))if(I==="style")if(y){for(m in y)!y.hasOwnProperty(m)||k&&k.hasOwnProperty(m)||(s||(s={}),s[m]="");for(m in k)k.hasOwnProperty(m)&&y[m]!==k[m]&&(s||(s={}),s[m]=k[m])}else s||(d||(d=[]),d.push(I,s)),s=k;else I==="dangerouslySetInnerHTML"?(k=k?k.__html:void 0,y=y?y.__html:void 0,k!=null&&y!==k&&(d=d||[]).push(I,k)):I==="children"?typeof k!="string"&&typeof k!="number"||(d=d||[]).push(I,""+k):I!=="suppressContentEditableWarning"&&I!=="suppressHydrationWarning"&&(o.hasOwnProperty(I)?(k!=null&&I==="onScroll"&&Ee("scroll",e),d||y===k||(d=[])):(d=d||[]).push(I,k))}s&&(d=d||[]).push("style",s);var I=d;(t.updateQueue=I)&&(t.flags|=4)}},Pf=function(e,t,s,a){s!==a&&(t.flags|=4)};function vs(e,t){if(!_e)switch(e.tailMode){case"hidden":t=e.tail;for(var s=null;t!==null;)t.alternate!==null&&(s=t),t=t.sibling;s===null?e.tail=null:s.sibling=null;break;case"collapsed":s=e.tail;for(var a=null;s!==null;)s.alternate!==null&&(a=s),s=s.sibling;a===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:a.sibling=null}}function Ye(e){var t=e.alternate!==null&&e.alternate.child===e.child,s=0,a=0;if(t)for(var c=e.child;c!==null;)s|=c.lanes|c.childLanes,a|=c.subtreeFlags&14680064,a|=c.flags&14680064,c.return=e,c=c.sibling;else for(c=e.child;c!==null;)s|=c.lanes|c.childLanes,a|=c.subtreeFlags,a|=c.flags,c.return=e,c=c.sibling;return e.subtreeFlags|=a,e.childLanes=s,t}function Im(e,t,s){var a=t.pendingProps;switch(xo(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Ye(t),null;case 1:return it(t.type)&&ai(),Ye(t),null;case 3:return a=t.stateNode,dr(),Ne(st),Ne(Qe),Do(),a.pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),(e===null||e.child===null)&&(hi(t)?t.flags|=4:e===null||e.memoizedState.isDehydrated&&(t.flags&256)===0||(t.flags|=1024,$t!==null&&(ha($t),$t=null))),na(e,t),Ye(t),null;case 5:jo(t);var c=$n(hs.current);if(s=t.type,e!==null&&t.stateNode!=null)Af(e,t,s,a,c),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!a){if(t.stateNode===null)throw Error(r(166));return Ye(t),null}if(e=$n(Bt.current),hi(t)){a=t.stateNode,s=t.type;var d=t.memoizedProps;switch(a[Ft]=t,a[as]=d,e=(t.mode&1)!==0,s){case"dialog":Ee("cancel",a),Ee("close",a);break;case"iframe":case"object":case"embed":Ee("load",a);break;case"video":case"audio":for(c=0;c<is.length;c++)Ee(is[c],a);break;case"source":Ee("error",a);break;case"img":case"image":case"link":Ee("error",a),Ee("load",a);break;case"details":Ee("toggle",a);break;case"input":du(a,d),Ee("invalid",a);break;case"select":a._wrapperState={wasMultiple:!!d.multiple},Ee("invalid",a);break;case"textarea":mu(a,d),Ee("invalid",a)}jl(s,d),c=null;for(var m in d)if(d.hasOwnProperty(m)){var y=d[m];m==="children"?typeof y=="string"?a.textContent!==y&&(d.suppressHydrationWarning!==!0&&ii(a.textContent,y,e),c=["children",y]):typeof y=="number"&&a.textContent!==""+y&&(d.suppressHydrationWarning!==!0&&ii(a.textContent,y,e),c=["children",""+y]):o.hasOwnProperty(m)&&y!=null&&m==="onScroll"&&Ee("scroll",a)}switch(s){case"input":Rs(a),pu(a,d,!0);break;case"textarea":Rs(a),yu(a);break;case"select":case"option":break;default:typeof d.onClick=="function"&&(a.onclick=li)}a=c,t.updateQueue=a,a!==null&&(t.flags|=4)}else{m=c.nodeType===9?c:c.ownerDocument,e==="http://www.w3.org/1999/xhtml"&&(e=vu(s)),e==="http://www.w3.org/1999/xhtml"?s==="script"?(e=m.createElement("div"),e.innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):typeof a.is=="string"?e=m.createElement(s,{is:a.is}):(e=m.createElement(s),s==="select"&&(m=e,a.multiple?m.multiple=!0:a.size&&(m.size=a.size))):e=m.createElementNS(e,s),e[Ft]=t,e[as]=a,$f(e,t,!1,!1),t.stateNode=e;e:{switch(m=Rl(s,a),s){case"dialog":Ee("cancel",e),Ee("close",e),c=a;break;case"iframe":case"object":case"embed":Ee("load",e),c=a;break;case"video":case"audio":for(c=0;c<is.length;c++)Ee(is[c],e);c=a;break;case"source":Ee("error",e),c=a;break;case"img":case"image":case"link":Ee("error",e),Ee("load",e),c=a;break;case"details":Ee("toggle",e),c=a;break;case"input":du(e,a),c=Il(e,a),Ee("invalid",e);break;case"option":c=a;break;case"select":e._wrapperState={wasMultiple:!!a.multiple},c=J({},a,{value:void 0}),Ee("invalid",e);break;case"textarea":mu(e,a),c=Pl(e,a),Ee("invalid",e);break;default:c=a}jl(s,c),y=c;for(d in y)if(y.hasOwnProperty(d)){var k=y[d];d==="style"?ku(e,k):d==="dangerouslySetInnerHTML"?(k=k?k.__html:void 0,k!=null&&wu(e,k)):d==="children"?typeof k=="string"?(s!=="textarea"||k!=="")&&Br(e,k):typeof k=="number"&&Br(e,""+k):d!=="suppressContentEditableWarning"&&d!=="suppressHydrationWarning"&&d!=="autoFocus"&&(o.hasOwnProperty(d)?k!=null&&d==="onScroll"&&Ee("scroll",e):k!=null&&B(e,d,k,m))}switch(s){case"input":Rs(e),pu(e,a,!1);break;case"textarea":Rs(e),yu(e);break;case"option":a.value!=null&&e.setAttribute("value",""+me(a.value));break;case"select":e.multiple=!!a.multiple,d=a.value,d!=null?Hn(e,!!a.multiple,d,!1):a.defaultValue!=null&&Hn(e,!!a.multiple,a.defaultValue,!0);break;default:typeof c.onClick=="function"&&(e.onclick=li)}switch(s){case"button":case"input":case"select":case"textarea":a=!!a.autoFocus;break e;case"img":a=!0;break e;default:a=!1}}a&&(t.flags|=4)}t.ref!==null&&(t.flags|=512,t.flags|=2097152)}return Ye(t),null;case 6:if(e&&t.stateNode!=null)Pf(e,t,e.memoizedProps,a);else{if(typeof a!="string"&&t.stateNode===null)throw Error(r(166));if(s=$n(hs.current),$n(Bt.current),hi(t)){if(a=t.stateNode,s=t.memoizedProps,a[Ft]=t,(d=a.nodeValue!==s)&&(e=mt,e!==null))switch(e.tag){case 3:ii(a.nodeValue,s,(e.mode&1)!==0);break;case 5:e.memoizedProps.suppressHydrationWarning!==!0&&ii(a.nodeValue,s,(e.mode&1)!==0)}d&&(t.flags|=4)}else a=(s.nodeType===9?s:s.ownerDocument).createTextNode(a),a[Ft]=t,t.stateNode=a}return Ye(t),null;case 13:if(Ne(Le),a=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(_e&>!==null&&(t.mode&1)!==0&&(t.flags&128)===0)jc(),ar(),t.flags|=98560,d=!1;else if(d=hi(t),a!==null&&a.dehydrated!==null){if(e===null){if(!d)throw Error(r(318));if(d=t.memoizedState,d=d!==null?d.dehydrated:null,!d)throw Error(r(317));d[Ft]=t}else ar(),(t.flags&128)===0&&(t.memoizedState=null),t.flags|=4;Ye(t),d=!1}else $t!==null&&(ha($t),$t=null),d=!0;if(!d)return t.flags&65536?t:null}return(t.flags&128)!==0?(t.lanes=s,t):(a=a!==null,a!==(e!==null&&e.memoizedState!==null)&&a&&(t.child.flags|=8192,(t.mode&1)!==0&&(e===null||(Le.current&1)!==0?Fe===0&&(Fe=3):ga())),t.updateQueue!==null&&(t.flags|=4),Ye(t),null);case 4:return dr(),na(e,t),e===null&&ls(t.stateNode.containerInfo),Ye(t),null;case 10:return Io(t.type._context),Ye(t),null;case 17:return it(t.type)&&ai(),Ye(t),null;case 19:if(Ne(Le),d=t.memoizedState,d===null)return Ye(t),null;if(a=(t.flags&128)!==0,m=d.rendering,m===null)if(a)vs(d,!1);else{if(Fe!==0||e!==null&&(e.flags&128)!==0)for(e=t.child;e!==null;){if(m=wi(e),m!==null){for(t.flags|=128,vs(d,!1),a=m.updateQueue,a!==null&&(t.updateQueue=a,t.flags|=4),t.subtreeFlags=0,a=s,s=t.child;s!==null;)d=s,e=a,d.flags&=14680066,m=d.alternate,m===null?(d.childLanes=0,d.lanes=e,d.child=null,d.subtreeFlags=0,d.memoizedProps=null,d.memoizedState=null,d.updateQueue=null,d.dependencies=null,d.stateNode=null):(d.childLanes=m.childLanes,d.lanes=m.lanes,d.child=m.child,d.subtreeFlags=0,d.deletions=null,d.memoizedProps=m.memoizedProps,d.memoizedState=m.memoizedState,d.updateQueue=m.updateQueue,d.type=m.type,e=m.dependencies,d.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext}),s=s.sibling;return Se(Le,Le.current&1|2),t.child}e=e.sibling}d.tail!==null&&Pe()>gr&&(t.flags|=128,a=!0,vs(d,!1),t.lanes=4194304)}else{if(!a)if(e=wi(m),e!==null){if(t.flags|=128,a=!0,s=e.updateQueue,s!==null&&(t.updateQueue=s,t.flags|=4),vs(d,!0),d.tail===null&&d.tailMode==="hidden"&&!m.alternate&&!_e)return Ye(t),null}else 2*Pe()-d.renderingStartTime>gr&&s!==1073741824&&(t.flags|=128,a=!0,vs(d,!1),t.lanes=4194304);d.isBackwards?(m.sibling=t.child,t.child=m):(s=d.last,s!==null?s.sibling=m:t.child=m,d.last=m)}return d.tail!==null?(t=d.tail,d.rendering=t,d.tail=t.sibling,d.renderingStartTime=Pe(),t.sibling=null,s=Le.current,Se(Le,a?s&1|2:s&1),t):(Ye(t),null);case 22:case 23:return ma(),a=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==a&&(t.flags|=8192),a&&(t.mode&1)!==0?(yt&1073741824)!==0&&(Ye(t),t.subtreeFlags&6&&(t.flags|=8192)):Ye(t),null;case 24:return null;case 25:return null}throw Error(r(156,t.tag))}function $m(e,t){switch(xo(t),t.tag){case 1:return it(t.type)&&ai(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return dr(),Ne(st),Ne(Qe),Do(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return jo(t),null;case 13:if(Ne(Le),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(r(340));ar()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return Ne(Le),null;case 4:return dr(),null;case 10:return Io(t.type._context),null;case 22:case 23:return ma(),null;case 24:return null;default:return null}}var Li=!1,Ge=!1,Am=typeof WeakSet=="function"?WeakSet:Set,Q=null;function pr(e,t){var s=e.ref;if(s!==null)if(typeof s=="function")try{s(null)}catch(a){Ae(e,t,a)}else s.current=null}function ra(e,t,s){try{s()}catch(a){Ae(e,t,a)}}var Mf=!1;function Pm(e,t){if(mo=Qs,e=fc(),lo(e)){if("selectionStart"in e)var s={start:e.selectionStart,end:e.selectionEnd};else e:{s=(s=e.ownerDocument)&&s.defaultView||window;var a=s.getSelection&&s.getSelection();if(a&&a.rangeCount!==0){s=a.anchorNode;var c=a.anchorOffset,d=a.focusNode;a=a.focusOffset;try{s.nodeType,d.nodeType}catch{s=null;break e}var m=0,y=-1,k=-1,I=0,b=0,F=e,R=null;t:for(;;){for(var q;F!==s||c!==0&&F.nodeType!==3||(y=m+c),F!==d||a!==0&&F.nodeType!==3||(k=m+a),F.nodeType===3&&(m+=F.nodeValue.length),(q=F.firstChild)!==null;)R=F,F=q;for(;;){if(F===e)break t;if(R===s&&++I===c&&(y=m),R===d&&++b===a&&(k=m),(q=F.nextSibling)!==null)break;F=R,R=F.parentNode}F=q}s=y===-1||k===-1?null:{start:y,end:k}}else s=null}s=s||{start:0,end:0}}else s=null;for(go={focusedElem:e,selectionRange:s},Qs=!1,Q=t;Q!==null;)if(t=Q,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,Q=e;else for(;Q!==null;){t=Q;try{var G=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(G!==null){var X=G.memoizedProps,Me=G.memoizedState,C=t.stateNode,N=C.getSnapshotBeforeUpdate(t.elementType===t.type?X:At(t.type,X),Me);C.__reactInternalSnapshotBeforeUpdate=N}break;case 3:var L=t.stateNode.containerInfo;L.nodeType===1?L.textContent="":L.nodeType===9&&L.documentElement&&L.removeChild(L.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(r(163))}}catch(U){Ae(t,t.return,U)}if(e=t.sibling,e!==null){e.return=t.return,Q=e;break}Q=t.return}return G=Mf,Mf=!1,G}function ws(e,t,s){var a=t.updateQueue;if(a=a!==null?a.lastEffect:null,a!==null){var c=a=a.next;do{if((c.tag&e)===e){var d=c.destroy;c.destroy=void 0,d!==void 0&&ra(t,s,d)}c=c.next}while(c!==a)}}function Oi(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var s=t=t.next;do{if((s.tag&e)===e){var a=s.create;s.destroy=a()}s=s.next}while(s!==t)}}function sa(e){var t=e.ref;if(t!==null){var s=e.stateNode;switch(e.tag){case 5:e=s;break;default:e=s}typeof t=="function"?t(e):t.current=e}}function jf(e){var t=e.alternate;t!==null&&(e.alternate=null,jf(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[Ft],delete t[as],delete t[So],delete t[mm],delete t[gm])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function Rf(e){return e.tag===5||e.tag===3||e.tag===4}function Df(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||Rf(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function ia(e,t,s){var a=e.tag;if(a===5||a===6)e=e.stateNode,t?s.nodeType===8?s.parentNode.insertBefore(e,t):s.insertBefore(e,t):(s.nodeType===8?(t=s.parentNode,t.insertBefore(e,s)):(t=s,t.appendChild(e)),s=s._reactRootContainer,s!=null||t.onclick!==null||(t.onclick=li));else if(a!==4&&(e=e.child,e!==null))for(ia(e,t,s),e=e.sibling;e!==null;)ia(e,t,s),e=e.sibling}function la(e,t,s){var a=e.tag;if(a===5||a===6)e=e.stateNode,t?s.insertBefore(e,t):s.appendChild(e);else if(a!==4&&(e=e.child,e!==null))for(la(e,t,s),e=e.sibling;e!==null;)la(e,t,s),e=e.sibling}var Ke=null,Pt=!1;function mn(e,t,s){for(s=s.child;s!==null;)bf(e,t,s),s=s.sibling}function bf(e,t,s){if(bt&&typeof bt.onCommitFiberUnmount=="function")try{bt.onCommitFiberUnmount(Us,s)}catch{}switch(s.tag){case 5:Ge||pr(s,t);case 6:var a=Ke,c=Pt;Ke=null,mn(e,t,s),Ke=a,Pt=c,Ke!==null&&(Pt?(e=Ke,s=s.stateNode,e.nodeType===8?e.parentNode.removeChild(s):e.removeChild(s)):Ke.removeChild(s.stateNode));break;case 18:Ke!==null&&(Pt?(e=Ke,s=s.stateNode,e.nodeType===8?wo(e.parentNode,s):e.nodeType===1&&wo(e,s),Gr(e)):wo(Ke,s.stateNode));break;case 4:a=Ke,c=Pt,Ke=s.stateNode.containerInfo,Pt=!0,mn(e,t,s),Ke=a,Pt=c;break;case 0:case 11:case 14:case 15:if(!Ge&&(a=s.updateQueue,a!==null&&(a=a.lastEffect,a!==null))){c=a=a.next;do{var d=c,m=d.destroy;d=d.tag,m!==void 0&&((d&2)!==0||(d&4)!==0)&&ra(s,t,m),c=c.next}while(c!==a)}mn(e,t,s);break;case 1:if(!Ge&&(pr(s,t),a=s.stateNode,typeof a.componentWillUnmount=="function"))try{a.props=s.memoizedProps,a.state=s.memoizedState,a.componentWillUnmount()}catch(y){Ae(s,t,y)}mn(e,t,s);break;case 21:mn(e,t,s);break;case 22:s.mode&1?(Ge=(a=Ge)||s.memoizedState!==null,mn(e,t,s),Ge=a):mn(e,t,s);break;default:mn(e,t,s)}}function Ff(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var s=e.stateNode;s===null&&(s=e.stateNode=new Am),t.forEach(function(a){var c=Um.bind(null,e,a);s.has(a)||(s.add(a),a.then(c,c))})}}function Mt(e,t){var s=t.deletions;if(s!==null)for(var a=0;a<s.length;a++){var c=s[a];try{var d=e,m=t,y=m;e:for(;y!==null;){switch(y.tag){case 5:Ke=y.stateNode,Pt=!1;break e;case 3:Ke=y.stateNode.containerInfo,Pt=!0;break e;case 4:Ke=y.stateNode.containerInfo,Pt=!0;break e}y=y.return}if(Ke===null)throw Error(r(160));bf(d,m,c),Ke=null,Pt=!1;var k=c.alternate;k!==null&&(k.return=null),c.return=null}catch(I){Ae(c,t,I)}}if(t.subtreeFlags&12854)for(t=t.child;t!==null;)Bf(t,e),t=t.sibling}function Bf(e,t){var s=e.alternate,a=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(Mt(t,e),Ut(e),a&4){try{ws(3,e,e.return),Oi(3,e)}catch(X){Ae(e,e.return,X)}try{ws(5,e,e.return)}catch(X){Ae(e,e.return,X)}}break;case 1:Mt(t,e),Ut(e),a&512&&s!==null&&pr(s,s.return);break;case 5:if(Mt(t,e),Ut(e),a&512&&s!==null&&pr(s,s.return),e.flags&32){var c=e.stateNode;try{Br(c,"")}catch(X){Ae(e,e.return,X)}}if(a&4&&(c=e.stateNode,c!=null)){var d=e.memoizedProps,m=s!==null?s.memoizedProps:d,y=e.type,k=e.updateQueue;if(e.updateQueue=null,k!==null)try{y==="input"&&d.type==="radio"&&d.name!=null&&hu(c,d),Rl(y,m);var I=Rl(y,d);for(m=0;m<k.length;m+=2){var b=k[m],F=k[m+1];b==="style"?ku(c,F):b==="dangerouslySetInnerHTML"?wu(c,F):b==="children"?Br(c,F):B(c,b,F,I)}switch(y){case"input":$l(c,d);break;case"textarea":gu(c,d);break;case"select":var R=c._wrapperState.wasMultiple;c._wrapperState.wasMultiple=!!d.multiple;var q=d.value;q!=null?Hn(c,!!d.multiple,q,!1):R!==!!d.multiple&&(d.defaultValue!=null?Hn(c,!!d.multiple,d.defaultValue,!0):Hn(c,!!d.multiple,d.multiple?[]:"",!1))}c[as]=d}catch(X){Ae(e,e.return,X)}}break;case 6:if(Mt(t,e),Ut(e),a&4){if(e.stateNode===null)throw Error(r(162));c=e.stateNode,d=e.memoizedProps;try{c.nodeValue=d}catch(X){Ae(e,e.return,X)}}break;case 3:if(Mt(t,e),Ut(e),a&4&&s!==null&&s.memoizedState.isDehydrated)try{Gr(t.containerInfo)}catch(X){Ae(e,e.return,X)}break;case 4:Mt(t,e),Ut(e);break;case 13:Mt(t,e),Ut(e),c=e.child,c.flags&8192&&(d=c.memoizedState!==null,c.stateNode.isHidden=d,!d||c.alternate!==null&&c.alternate.memoizedState!==null||(ua=Pe())),a&4&&Ff(e);break;case 22:if(b=s!==null&&s.memoizedState!==null,e.mode&1?(Ge=(I=Ge)||b,Mt(t,e),Ge=I):Mt(t,e),Ut(e),a&8192){if(I=e.memoizedState!==null,(e.stateNode.isHidden=I)&&!b&&(e.mode&1)!==0)for(Q=e,b=e.child;b!==null;){for(F=Q=b;Q!==null;){switch(R=Q,q=R.child,R.tag){case 0:case 11:case 14:case 15:ws(4,R,R.return);break;case 1:pr(R,R.return);var G=R.stateNode;if(typeof G.componentWillUnmount=="function"){a=R,s=R.return;try{t=a,G.props=t.memoizedProps,G.state=t.memoizedState,G.componentWillUnmount()}catch(X){Ae(a,s,X)}}break;case 5:pr(R,R.return);break;case 22:if(R.memoizedState!==null){Vf(F);continue}}q!==null?(q.return=R,Q=q):Vf(F)}b=b.sibling}e:for(b=null,F=e;;){if(F.tag===5){if(b===null){b=F;try{c=F.stateNode,I?(d=c.style,typeof d.setProperty=="function"?d.setProperty("display","none","important"):d.display="none"):(y=F.stateNode,k=F.memoizedProps.style,m=k!=null&&k.hasOwnProperty("display")?k.display:null,y.style.display=Su("display",m))}catch(X){Ae(e,e.return,X)}}}else if(F.tag===6){if(b===null)try{F.stateNode.nodeValue=I?"":F.memoizedProps}catch(X){Ae(e,e.return,X)}}else if((F.tag!==22&&F.tag!==23||F.memoizedState===null||F===e)&&F.child!==null){F.child.return=F,F=F.child;continue}if(F===e)break e;for(;F.sibling===null;){if(F.return===null||F.return===e)break e;b===F&&(b=null),F=F.return}b===F&&(b=null),F.sibling.return=F.return,F=F.sibling}}break;case 19:Mt(t,e),Ut(e),a&4&&Ff(e);break;case 21:break;default:Mt(t,e),Ut(e)}}function Ut(e){var t=e.flags;if(t&2){try{e:{for(var s=e.return;s!==null;){if(Rf(s)){var a=s;break e}s=s.return}throw Error(r(160))}switch(a.tag){case 5:var c=a.stateNode;a.flags&32&&(Br(c,""),a.flags&=-33);var d=Df(e);la(e,d,c);break;case 3:case 4:var m=a.stateNode.containerInfo,y=Df(e);ia(e,y,m);break;default:throw Error(r(161))}}catch(k){Ae(e,e.return,k)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function Mm(e,t,s){Q=e,zf(e)}function zf(e,t,s){for(var a=(e.mode&1)!==0;Q!==null;){var c=Q,d=c.child;if(c.tag===22&&a){var m=c.memoizedState!==null||Li;if(!m){var y=c.alternate,k=y!==null&&y.memoizedState!==null||Ge;y=Li;var I=Ge;if(Li=m,(Ge=k)&&!I)for(Q=c;Q!==null;)m=Q,k=m.child,m.tag===22&&m.memoizedState!==null?Kf(c):k!==null?(k.return=m,Q=k):Kf(c);for(;d!==null;)Q=d,zf(d),d=d.sibling;Q=c,Li=y,Ge=I}Uf(e)}else(c.subtreeFlags&8772)!==0&&d!==null?(d.return=c,Q=d):Uf(e)}}function Uf(e){for(;Q!==null;){var t=Q;if((t.flags&8772)!==0){var s=t.alternate;try{if((t.flags&8772)!==0)switch(t.tag){case 0:case 11:case 15:Ge||Oi(5,t);break;case 1:var a=t.stateNode;if(t.flags&4&&!Ge)if(s===null)a.componentDidMount();else{var c=t.elementType===t.type?s.memoizedProps:At(t.type,s.memoizedProps);a.componentDidUpdate(c,s.memoizedState,a.__reactInternalSnapshotBeforeUpdate)}var d=t.updateQueue;d!==null&&Uc(t,d,a);break;case 3:var m=t.updateQueue;if(m!==null){if(s=null,t.child!==null)switch(t.child.tag){case 5:s=t.child.stateNode;break;case 1:s=t.child.stateNode}Uc(t,m,s)}break;case 5:var y=t.stateNode;if(s===null&&t.flags&4){s=y;var k=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":k.autoFocus&&s.focus();break;case"img":k.src&&(s.src=k.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(t.memoizedState===null){var I=t.alternate;if(I!==null){var b=I.memoizedState;if(b!==null){var F=b.dehydrated;F!==null&&Gr(F)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(r(163))}Ge||t.flags&512&&sa(t)}catch(R){Ae(t,t.return,R)}}if(t===e){Q=null;break}if(s=t.sibling,s!==null){s.return=t.return,Q=s;break}Q=t.return}}function Vf(e){for(;Q!==null;){var t=Q;if(t===e){Q=null;break}var s=t.sibling;if(s!==null){s.return=t.return,Q=s;break}Q=t.return}}function Kf(e){for(;Q!==null;){var t=Q;try{switch(t.tag){case 0:case 11:case 15:var s=t.return;try{Oi(4,t)}catch(k){Ae(t,s,k)}break;case 1:var a=t.stateNode;if(typeof a.componentDidMount=="function"){var c=t.return;try{a.componentDidMount()}catch(k){Ae(t,c,k)}}var d=t.return;try{sa(t)}catch(k){Ae(t,d,k)}break;case 5:var m=t.return;try{sa(t)}catch(k){Ae(t,m,k)}}}catch(k){Ae(t,t.return,k)}if(t===e){Q=null;break}var y=t.sibling;if(y!==null){y.return=t.return,Q=y;break}Q=t.return}}var jm=Math.ceil,Ii=V.ReactCurrentDispatcher,oa=V.ReactCurrentOwner,Tt=V.ReactCurrentBatchConfig,fe=0,Ue=null,Re=null,We=0,yt=0,mr=cn(0),Fe=0,Ss=null,Pn=0,$i=0,aa=0,ks=null,ot=null,ua=0,gr=1/0,Xt=null,Ai=!1,ca=null,gn=null,Pi=!1,yn=null,Mi=0,Es=0,fa=null,ji=-1,Ri=0;function tt(){return(fe&6)!==0?Pe():ji!==-1?ji:ji=Pe()}function vn(e){return(e.mode&1)===0?1:(fe&2)!==0&&We!==0?We&-We:vm.transition!==null?(Ri===0&&(Ri=Ru()),Ri):(e=ge,e!==0||(e=window.event,e=e===void 0?16:Wu(e.type)),e)}function jt(e,t,s,a){if(50<Es)throw Es=0,fa=null,Error(r(185));qr(e,s,a),((fe&2)===0||e!==Ue)&&(e===Ue&&((fe&2)===0&&($i|=s),Fe===4&&wn(e,We)),at(e,a),s===1&&fe===0&&(t.mode&1)===0&&(gr=Pe()+500,ci&&dn()))}function at(e,t){var s=e.callbackNode;vp(e,t);var a=Ws(e,e===Ue?We:0);if(a===0)s!==null&&Pu(s),e.callbackNode=null,e.callbackPriority=0;else if(t=a&-a,e.callbackPriority!==t){if(s!=null&&Pu(s),t===1)e.tag===0?ym(qf.bind(null,e)):Ic(qf.bind(null,e)),hm(function(){(fe&6)===0&&dn()}),s=null;else{switch(Du(a)){case 1:s=Vl;break;case 4:s=Mu;break;case 16:s=zs;break;case 536870912:s=ju;break;default:s=zs}s=ed(s,Wf.bind(null,e))}e.callbackPriority=t,e.callbackNode=s}}function Wf(e,t){if(ji=-1,Ri=0,(fe&6)!==0)throw Error(r(327));var s=e.callbackNode;if(yr()&&e.callbackNode!==s)return null;var a=Ws(e,e===Ue?We:0);if(a===0)return null;if((a&30)!==0||(a&e.expiredLanes)!==0||t)t=Di(e,a);else{t=a;var c=fe;fe|=2;var d=Qf();(Ue!==e||We!==t)&&(Xt=null,gr=Pe()+500,jn(e,t));do try{bm();break}catch(y){Hf(e,y)}while(!0);Oo(),Ii.current=d,fe=c,Re!==null?t=0:(Ue=null,We=0,t=Fe)}if(t!==0){if(t===2&&(c=Kl(e),c!==0&&(a=c,t=da(e,c))),t===1)throw s=Ss,jn(e,0),wn(e,a),at(e,Pe()),s;if(t===6)wn(e,a);else{if(c=e.current.alternate,(a&30)===0&&!Rm(c)&&(t=Di(e,a),t===2&&(d=Kl(e),d!==0&&(a=d,t=da(e,d))),t===1))throw s=Ss,jn(e,0),wn(e,a),at(e,Pe()),s;switch(e.finishedWork=c,e.finishedLanes=a,t){case 0:case 1:throw Error(r(345));case 2:Rn(e,ot,Xt);break;case 3:if(wn(e,a),(a&130023424)===a&&(t=ua+500-Pe(),10<t)){if(Ws(e,0)!==0)break;if(c=e.suspendedLanes,(c&a)!==a){tt(),e.pingedLanes|=e.suspendedLanes&c;break}e.timeoutHandle=vo(Rn.bind(null,e,ot,Xt),t);break}Rn(e,ot,Xt);break;case 4:if(wn(e,a),(a&4194240)===a)break;for(t=e.eventTimes,c=-1;0<a;){var m=31-Ot(a);d=1<<m,m=t[m],m>c&&(c=m),a&=~d}if(a=c,a=Pe()-a,a=(120>a?120:480>a?480:1080>a?1080:1920>a?1920:3e3>a?3e3:4320>a?4320:1960*jm(a/1960))-a,10<a){e.timeoutHandle=vo(Rn.bind(null,e,ot,Xt),a);break}Rn(e,ot,Xt);break;case 5:Rn(e,ot,Xt);break;default:throw Error(r(329))}}}return at(e,Pe()),e.callbackNode===s?Wf.bind(null,e):null}function da(e,t){var s=ks;return e.current.memoizedState.isDehydrated&&(jn(e,t).flags|=256),e=Di(e,t),e!==2&&(t=ot,ot=s,t!==null&&ha(t)),e}function ha(e){ot===null?ot=e:ot.push.apply(ot,e)}function Rm(e){for(var t=e;;){if(t.flags&16384){var s=t.updateQueue;if(s!==null&&(s=s.stores,s!==null))for(var a=0;a<s.length;a++){var c=s[a],d=c.getSnapshot;c=c.value;try{if(!It(d(),c))return!1}catch{return!1}}}if(s=t.child,t.subtreeFlags&16384&&s!==null)s.return=t,t=s;else{if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function wn(e,t){for(t&=~aa,t&=~$i,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var s=31-Ot(t),a=1<<s;e[s]=-1,t&=~a}}function qf(e){if((fe&6)!==0)throw Error(r(327));yr();var t=Ws(e,0);if((t&1)===0)return at(e,Pe()),null;var s=Di(e,t);if(e.tag!==0&&s===2){var a=Kl(e);a!==0&&(t=a,s=da(e,a))}if(s===1)throw s=Ss,jn(e,0),wn(e,t),at(e,Pe()),s;if(s===6)throw Error(r(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,Rn(e,ot,Xt),at(e,Pe()),null}function pa(e,t){var s=fe;fe|=1;try{return e(t)}finally{fe=s,fe===0&&(gr=Pe()+500,ci&&dn())}}function Mn(e){yn!==null&&yn.tag===0&&(fe&6)===0&&yr();var t=fe;fe|=1;var s=Tt.transition,a=ge;try{if(Tt.transition=null,ge=1,e)return e()}finally{ge=a,Tt.transition=s,fe=t,(fe&6)===0&&dn()}}function ma(){yt=mr.current,Ne(mr)}function jn(e,t){e.finishedWork=null,e.finishedLanes=0;var s=e.timeoutHandle;if(s!==-1&&(e.timeoutHandle=-1,dm(s)),Re!==null)for(s=Re.return;s!==null;){var a=s;switch(xo(a),a.tag){case 1:a=a.type.childContextTypes,a!=null&&ai();break;case 3:dr(),Ne(st),Ne(Qe),Do();break;case 5:jo(a);break;case 4:dr();break;case 13:Ne(Le);break;case 19:Ne(Le);break;case 10:Io(a.type._context);break;case 22:case 23:ma()}s=s.return}if(Ue=e,Re=e=Sn(e.current,null),We=yt=t,Fe=0,Ss=null,aa=$i=Pn=0,ot=ks=null,In!==null){for(t=0;t<In.length;t++)if(s=In[t],a=s.interleaved,a!==null){s.interleaved=null;var c=a.next,d=s.pending;if(d!==null){var m=d.next;d.next=c,a.next=m}s.pending=a}In=null}return e}function Hf(e,t){do{var s=Re;try{if(Oo(),Si.current=xi,ki){for(var a=Oe.memoizedState;a!==null;){var c=a.queue;c!==null&&(c.pending=null),a=a.next}ki=!1}if(An=0,ze=be=Oe=null,ps=!1,ms=0,oa.current=null,s===null||s.return===null){Fe=1,Ss=t,Re=null;break}e:{var d=e,m=s.return,y=s,k=t;if(t=We,y.flags|=32768,k!==null&&typeof k=="object"&&typeof k.then=="function"){var I=k,b=y,F=b.tag;if((b.mode&1)===0&&(F===0||F===11||F===15)){var R=b.alternate;R?(b.updateQueue=R.updateQueue,b.memoizedState=R.memoizedState,b.lanes=R.lanes):(b.updateQueue=null,b.memoizedState=null)}var q=vf(m);if(q!==null){q.flags&=-257,wf(q,m,y,d,t),q.mode&1&&yf(d,I,t),t=q,k=I;var G=t.updateQueue;if(G===null){var X=new Set;X.add(k),t.updateQueue=X}else G.add(k);break e}else{if((t&1)===0){yf(d,I,t),ga();break e}k=Error(r(426))}}else if(_e&&y.mode&1){var Me=vf(m);if(Me!==null){(Me.flags&65536)===0&&(Me.flags|=256),wf(Me,m,y,d,t),Co(hr(k,y));break e}}d=k=hr(k,y),Fe!==4&&(Fe=2),ks===null?ks=[d]:ks.push(d),d=m;do{switch(d.tag){case 3:d.flags|=65536,t&=-t,d.lanes|=t;var C=mf(d,k,t);zc(d,C);break e;case 1:y=k;var N=d.type,L=d.stateNode;if((d.flags&128)===0&&(typeof N.getDerivedStateFromError=="function"||L!==null&&typeof L.componentDidCatch=="function"&&(gn===null||!gn.has(L)))){d.flags|=65536,t&=-t,d.lanes|=t;var U=gf(d,y,t);zc(d,U);break e}}d=d.return}while(d!==null)}Yf(s)}catch(Z){t=Z,Re===s&&s!==null&&(Re=s=s.return);continue}break}while(!0)}function Qf(){var e=Ii.current;return Ii.current=xi,e===null?xi:e}function ga(){(Fe===0||Fe===3||Fe===2)&&(Fe=4),Ue===null||(Pn&268435455)===0&&($i&268435455)===0||wn(Ue,We)}function Di(e,t){var s=fe;fe|=2;var a=Qf();(Ue!==e||We!==t)&&(Xt=null,jn(e,t));do try{Dm();break}catch(c){Hf(e,c)}while(!0);if(Oo(),fe=s,Ii.current=a,Re!==null)throw Error(r(261));return Ue=null,We=0,Fe}function Dm(){for(;Re!==null;)Jf(Re)}function bm(){for(;Re!==null&&!up();)Jf(Re)}function Jf(e){var t=Zf(e.alternate,e,yt);e.memoizedProps=e.pendingProps,t===null?Yf(e):Re=t,oa.current=null}function Yf(e){var t=e;do{var s=t.alternate;if(e=t.return,(t.flags&32768)===0){if(s=Im(s,t,yt),s!==null){Re=s;return}}else{if(s=$m(s,t),s!==null){s.flags&=32767,Re=s;return}if(e!==null)e.flags|=32768,e.subtreeFlags=0,e.deletions=null;else{Fe=6,Re=null;return}}if(t=t.sibling,t!==null){Re=t;return}Re=t=e}while(t!==null);Fe===0&&(Fe=5)}function Rn(e,t,s){var a=ge,c=Tt.transition;try{Tt.transition=null,ge=1,Fm(e,t,s,a)}finally{Tt.transition=c,ge=a}return null}function Fm(e,t,s,a){do yr();while(yn!==null);if((fe&6)!==0)throw Error(r(327));s=e.finishedWork;var c=e.finishedLanes;if(s===null)return null;if(e.finishedWork=null,e.finishedLanes=0,s===e.current)throw Error(r(177));e.callbackNode=null,e.callbackPriority=0;var d=s.lanes|s.childLanes;if(wp(e,d),e===Ue&&(Re=Ue=null,We=0),(s.subtreeFlags&2064)===0&&(s.flags&2064)===0||Pi||(Pi=!0,ed(zs,function(){return yr(),null})),d=(s.flags&15990)!==0,(s.subtreeFlags&15990)!==0||d){d=Tt.transition,Tt.transition=null;var m=ge;ge=1;var y=fe;fe|=4,oa.current=null,Pm(e,s),Bf(s,e),im(go),Qs=!!mo,go=mo=null,e.current=s,Mm(s),cp(),fe=y,ge=m,Tt.transition=d}else e.current=s;if(Pi&&(Pi=!1,yn=e,Mi=c),d=e.pendingLanes,d===0&&(gn=null),hp(s.stateNode),at(e,Pe()),t!==null)for(a=e.onRecoverableError,s=0;s<t.length;s++)c=t[s],a(c.value,{componentStack:c.stack,digest:c.digest});if(Ai)throw Ai=!1,e=ca,ca=null,e;return(Mi&1)!==0&&e.tag!==0&&yr(),d=e.pendingLanes,(d&1)!==0?e===fa?Es++:(Es=0,fa=e):Es=0,dn(),null}function yr(){if(yn!==null){var e=Du(Mi),t=Tt.transition,s=ge;try{if(Tt.transition=null,ge=16>e?16:e,yn===null)var a=!1;else{if(e=yn,yn=null,Mi=0,(fe&6)!==0)throw Error(r(331));var c=fe;for(fe|=4,Q=e.current;Q!==null;){var d=Q,m=d.child;if((Q.flags&16)!==0){var y=d.deletions;if(y!==null){for(var k=0;k<y.length;k++){var I=y[k];for(Q=I;Q!==null;){var b=Q;switch(b.tag){case 0:case 11:case 15:ws(8,b,d)}var F=b.child;if(F!==null)F.return=b,Q=F;else for(;Q!==null;){b=Q;var R=b.sibling,q=b.return;if(jf(b),b===I){Q=null;break}if(R!==null){R.return=q,Q=R;break}Q=q}}}var G=d.alternate;if(G!==null){var X=G.child;if(X!==null){G.child=null;do{var Me=X.sibling;X.sibling=null,X=Me}while(X!==null)}}Q=d}}if((d.subtreeFlags&2064)!==0&&m!==null)m.return=d,Q=m;else e:for(;Q!==null;){if(d=Q,(d.flags&2048)!==0)switch(d.tag){case 0:case 11:case 15:ws(9,d,d.return)}var C=d.sibling;if(C!==null){C.return=d.return,Q=C;break e}Q=d.return}}var N=e.current;for(Q=N;Q!==null;){m=Q;var L=m.child;if((m.subtreeFlags&2064)!==0&&L!==null)L.return=m,Q=L;else e:for(m=N;Q!==null;){if(y=Q,(y.flags&2048)!==0)try{switch(y.tag){case 0:case 11:case 15:Oi(9,y)}}catch(Z){Ae(y,y.return,Z)}if(y===m){Q=null;break e}var U=y.sibling;if(U!==null){U.return=y.return,Q=U;break e}Q=y.return}}if(fe=c,dn(),bt&&typeof bt.onPostCommitFiberRoot=="function")try{bt.onPostCommitFiberRoot(Us,e)}catch{}a=!0}return a}finally{ge=s,Tt.transition=t}}return!1}function Gf(e,t,s){t=hr(s,t),t=mf(e,t,1),e=pn(e,t,1),t=tt(),e!==null&&(qr(e,1,t),at(e,t))}function Ae(e,t,s){if(e.tag===3)Gf(e,e,s);else for(;t!==null;){if(t.tag===3){Gf(t,e,s);break}else if(t.tag===1){var a=t.stateNode;if(typeof t.type.getDerivedStateFromError=="function"||typeof a.componentDidCatch=="function"&&(gn===null||!gn.has(a))){e=hr(s,e),e=gf(t,e,1),t=pn(t,e,1),e=tt(),t!==null&&(qr(t,1,e),at(t,e));break}}t=t.return}}function Bm(e,t,s){var a=e.pingCache;a!==null&&a.delete(t),t=tt(),e.pingedLanes|=e.suspendedLanes&s,Ue===e&&(We&s)===s&&(Fe===4||Fe===3&&(We&130023424)===We&&500>Pe()-ua?jn(e,0):aa|=s),at(e,t)}function Xf(e,t){t===0&&((e.mode&1)===0?t=1:(t=Ks,Ks<<=1,(Ks&130023424)===0&&(Ks=4194304)));var s=tt();e=Jt(e,t),e!==null&&(qr(e,t,s),at(e,s))}function zm(e){var t=e.memoizedState,s=0;t!==null&&(s=t.retryLane),Xf(e,s)}function Um(e,t){var s=0;switch(e.tag){case 13:var a=e.stateNode,c=e.memoizedState;c!==null&&(s=c.retryLane);break;case 19:a=e.stateNode;break;default:throw Error(r(314))}a!==null&&a.delete(t),Xf(e,s)}var Zf;Zf=function(e,t,s){if(e!==null)if(e.memoizedProps!==t.pendingProps||st.current)lt=!0;else{if((e.lanes&s)===0&&(t.flags&128)===0)return lt=!1,Om(e,t,s);lt=(e.flags&131072)!==0}else lt=!1,_e&&(t.flags&1048576)!==0&&$c(t,di,t.index);switch(t.lanes=0,t.tag){case 2:var a=t.type;Ci(e,t),e=t.pendingProps;var c=ir(t,Qe.current);fr(t,s),c=Bo(null,t,a,e,c,s);var d=zo();return t.flags|=1,typeof c=="object"&&c!==null&&typeof c.render=="function"&&c.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,it(a)?(d=!0,ui(t)):d=!1,t.memoizedState=c.state!==null&&c.state!==void 0?c.state:null,Po(t),c.updater=Ti,t.stateNode=c,c._reactInternals=t,Ho(t,a,e,s),t=Go(null,t,a,!0,d,s)):(t.tag=0,_e&&d&&No(t),et(null,t,c,s),t=t.child),t;case 16:a=t.elementType;e:{switch(Ci(e,t),e=t.pendingProps,c=a._init,a=c(a._payload),t.type=a,c=t.tag=Km(a),e=At(a,e),c){case 0:t=Yo(null,t,a,e,s);break e;case 1:t=Tf(null,t,a,e,s);break e;case 11:t=Sf(null,t,a,e,s);break e;case 14:t=kf(null,t,a,At(a.type,e),s);break e}throw Error(r(306,a,""))}return t;case 0:return a=t.type,c=t.pendingProps,c=t.elementType===a?c:At(a,c),Yo(e,t,a,c,s);case 1:return a=t.type,c=t.pendingProps,c=t.elementType===a?c:At(a,c),Tf(e,t,a,c,s);case 3:e:{if(_f(t),e===null)throw Error(r(387));a=t.pendingProps,d=t.memoizedState,c=d.element,Bc(e,t),vi(t,a,null,s);var m=t.memoizedState;if(a=m.element,d.isDehydrated)if(d={element:a,isDehydrated:!1,cache:m.cache,pendingSuspenseBoundaries:m.pendingSuspenseBoundaries,transitions:m.transitions},t.updateQueue.baseState=d,t.memoizedState=d,t.flags&256){c=hr(Error(r(423)),t),t=Cf(e,t,a,s,c);break e}else if(a!==c){c=hr(Error(r(424)),t),t=Cf(e,t,a,s,c);break e}else for(gt=un(t.stateNode.containerInfo.firstChild),mt=t,_e=!0,$t=null,s=bc(t,null,a,s),t.child=s;s;)s.flags=s.flags&-3|4096,s=s.sibling;else{if(ar(),a===c){t=Gt(e,t,s);break e}et(e,t,a,s)}t=t.child}return t;case 5:return Vc(t),e===null&&_o(t),a=t.type,c=t.pendingProps,d=e!==null?e.memoizedProps:null,m=c.children,yo(a,c)?m=null:d!==null&&yo(a,d)&&(t.flags|=32),xf(e,t),et(e,t,m,s),t.child;case 6:return e===null&&_o(t),null;case 13:return Lf(e,t,s);case 4:return Mo(t,t.stateNode.containerInfo),a=t.pendingProps,e===null?t.child=ur(t,null,a,s):et(e,t,a,s),t.child;case 11:return a=t.type,c=t.pendingProps,c=t.elementType===a?c:At(a,c),Sf(e,t,a,c,s);case 7:return et(e,t,t.pendingProps,s),t.child;case 8:return et(e,t,t.pendingProps.children,s),t.child;case 12:return et(e,t,t.pendingProps.children,s),t.child;case 10:e:{if(a=t.type._context,c=t.pendingProps,d=t.memoizedProps,m=c.value,Se(mi,a._currentValue),a._currentValue=m,d!==null)if(It(d.value,m)){if(d.children===c.children&&!st.current){t=Gt(e,t,s);break e}}else for(d=t.child,d!==null&&(d.return=t);d!==null;){var y=d.dependencies;if(y!==null){m=d.child;for(var k=y.firstContext;k!==null;){if(k.context===a){if(d.tag===1){k=Yt(-1,s&-s),k.tag=2;var I=d.updateQueue;if(I!==null){I=I.shared;var b=I.pending;b===null?k.next=k:(k.next=b.next,b.next=k),I.pending=k}}d.lanes|=s,k=d.alternate,k!==null&&(k.lanes|=s),$o(d.return,s,t),y.lanes|=s;break}k=k.next}}else if(d.tag===10)m=d.type===t.type?null:d.child;else if(d.tag===18){if(m=d.return,m===null)throw Error(r(341));m.lanes|=s,y=m.alternate,y!==null&&(y.lanes|=s),$o(m,s,t),m=d.sibling}else m=d.child;if(m!==null)m.return=d;else for(m=d;m!==null;){if(m===t){m=null;break}if(d=m.sibling,d!==null){d.return=m.return,m=d;break}m=m.return}d=m}et(e,t,c.children,s),t=t.child}return t;case 9:return c=t.type,a=t.pendingProps.children,fr(t,s),c=Nt(c),a=a(c),t.flags|=1,et(e,t,a,s),t.child;case 14:return a=t.type,c=At(a,t.pendingProps),c=At(a.type,c),kf(e,t,a,c,s);case 15:return Ef(e,t,t.type,t.pendingProps,s);case 17:return a=t.type,c=t.pendingProps,c=t.elementType===a?c:At(a,c),Ci(e,t),t.tag=1,it(a)?(e=!0,ui(t)):e=!1,fr(t,s),hf(t,a,c),Ho(t,a,c,s),Go(null,t,a,!0,e,s);case 19:return If(e,t,s);case 22:return Nf(e,t,s)}throw Error(r(156,t.tag))};function ed(e,t){return Au(e,t)}function Vm(e,t,s,a){this.tag=e,this.key=s,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function _t(e,t,s,a){return new Vm(e,t,s,a)}function ya(e){return e=e.prototype,!(!e||!e.isReactComponent)}function Km(e){if(typeof e=="function")return ya(e)?1:0;if(e!=null){if(e=e.$$typeof,e===M)return 11;if(e===rt)return 14}return 2}function Sn(e,t){var s=e.alternate;return s===null?(s=_t(e.tag,t,e.key,e.mode),s.elementType=e.elementType,s.type=e.type,s.stateNode=e.stateNode,s.alternate=e,e.alternate=s):(s.pendingProps=t,s.type=e.type,s.flags=0,s.subtreeFlags=0,s.deletions=null),s.flags=e.flags&14680064,s.childLanes=e.childLanes,s.lanes=e.lanes,s.child=e.child,s.memoizedProps=e.memoizedProps,s.memoizedState=e.memoizedState,s.updateQueue=e.updateQueue,t=e.dependencies,s.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},s.sibling=e.sibling,s.index=e.index,s.ref=e.ref,s}function bi(e,t,s,a,c,d){var m=2;if(a=e,typeof e=="function")ya(e)&&(m=1);else if(typeof e=="string")m=5;else e:switch(e){case Y:return Dn(s.children,c,d,t);case z:m=8,c|=8;break;case P:return e=_t(12,s,t,c|2),e.elementType=P,e.lanes=d,e;case ee:return e=_t(13,s,t,c),e.elementType=ee,e.lanes=d,e;case ke:return e=_t(19,s,t,c),e.elementType=ke,e.lanes=d,e;case xe:return Fi(s,c,d,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case le:m=10;break e;case ue:m=9;break e;case M:m=11;break e;case rt:m=14;break e;case He:m=16,a=null;break e}throw Error(r(130,e==null?e:typeof e,""))}return t=_t(m,s,t,c),t.elementType=e,t.type=a,t.lanes=d,t}function Dn(e,t,s,a){return e=_t(7,e,a,t),e.lanes=s,e}function Fi(e,t,s,a){return e=_t(22,e,a,t),e.elementType=xe,e.lanes=s,e.stateNode={isHidden:!1},e}function va(e,t,s){return e=_t(6,e,null,t),e.lanes=s,e}function wa(e,t,s){return t=_t(4,e.children!==null?e.children:[],e.key,t),t.lanes=s,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Wm(e,t,s,a,c){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Wl(0),this.expirationTimes=Wl(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Wl(0),this.identifierPrefix=a,this.onRecoverableError=c,this.mutableSourceEagerHydrationData=null}function Sa(e,t,s,a,c,d,m,y,k){return e=new Wm(e,t,s,y,k),t===1?(t=1,d===!0&&(t|=8)):t=0,d=_t(3,null,null,t),e.current=d,d.stateNode=e,d.memoizedState={element:a,isDehydrated:s,cache:null,transitions:null,pendingSuspenseBoundaries:null},Po(d),e}function qm(e,t,s){var a=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:j,key:a==null?null:""+a,children:e,containerInfo:t,implementation:s}}function td(e){if(!e)return fn;e=e._reactInternals;e:{if(Tn(e)!==e||e.tag!==1)throw Error(r(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(it(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(t!==null);throw Error(r(171))}if(e.tag===1){var s=e.type;if(it(s))return Lc(e,s,t)}return t}function nd(e,t,s,a,c,d,m,y,k){return e=Sa(s,a,!0,e,c,d,m,y,k),e.context=td(null),s=e.current,a=tt(),c=vn(s),d=Yt(a,c),d.callback=t??null,pn(s,d,c),e.current.lanes=c,qr(e,c,a),at(e,a),e}function Bi(e,t,s,a){var c=t.current,d=tt(),m=vn(c);return s=td(s),t.context===null?t.context=s:t.pendingContext=s,t=Yt(d,m),t.payload={element:e},a=a===void 0?null:a,a!==null&&(t.callback=a),e=pn(c,t,m),e!==null&&(jt(e,c,m,d),yi(e,c,m)),m}function zi(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return e.child.stateNode;default:return e.child.stateNode}}function rd(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var s=e.retryLane;e.retryLane=s!==0&&s<t?s:t}}function ka(e,t){rd(e,t),(e=e.alternate)&&rd(e,t)}function Hm(){return null}var sd=typeof reportError=="function"?reportError:function(e){console.error(e)};function Ea(e){this._internalRoot=e}Ui.prototype.render=Ea.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(r(409));Bi(e,t,null,null)},Ui.prototype.unmount=Ea.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;Mn(function(){Bi(null,e,null,null)}),t[Wt]=null}};function Ui(e){this._internalRoot=e}Ui.prototype.unstable_scheduleHydration=function(e){if(e){var t=Bu();e={blockedOn:null,target:e,priority:t};for(var s=0;s<ln.length&&t!==0&&t<ln[s].priority;s++);ln.splice(s,0,e),s===0&&Vu(e)}};function Na(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function Vi(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11&&(e.nodeType!==8||e.nodeValue!==" react-mount-point-unstable "))}function id(){}function Qm(e,t,s,a,c){if(c){if(typeof a=="function"){var d=a;a=function(){var I=zi(m);d.call(I)}}var m=nd(t,a,e,0,null,!1,!1,"",id);return e._reactRootContainer=m,e[Wt]=m.current,ls(e.nodeType===8?e.parentNode:e),Mn(),m}for(;c=e.lastChild;)e.removeChild(c);if(typeof a=="function"){var y=a;a=function(){var I=zi(k);y.call(I)}}var k=Sa(e,0,!1,null,null,!1,!1,"",id);return e._reactRootContainer=k,e[Wt]=k.current,ls(e.nodeType===8?e.parentNode:e),Mn(function(){Bi(t,k,s,a)}),k}function Ki(e,t,s,a,c){var d=s._reactRootContainer;if(d){var m=d;if(typeof c=="function"){var y=c;c=function(){var k=zi(m);y.call(k)}}Bi(t,m,e,c)}else m=Qm(s,t,e,c,a);return zi(m)}bu=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var s=Wr(t.pendingLanes);s!==0&&(ql(t,s|1),at(t,Pe()),(fe&6)===0&&(gr=Pe()+500,dn()))}break;case 13:Mn(function(){var a=Jt(e,1);if(a!==null){var c=tt();jt(a,e,1,c)}}),ka(e,1)}},Hl=function(e){if(e.tag===13){var t=Jt(e,134217728);if(t!==null){var s=tt();jt(t,e,134217728,s)}ka(e,134217728)}},Fu=function(e){if(e.tag===13){var t=vn(e),s=Jt(e,t);if(s!==null){var a=tt();jt(s,e,t,a)}ka(e,t)}},Bu=function(){return ge},zu=function(e,t){var s=ge;try{return ge=e,t()}finally{ge=s}},Fl=function(e,t,s){switch(t){case"input":if($l(e,s),t=s.name,s.type==="radio"&&t!=null){for(s=e;s.parentNode;)s=s.parentNode;for(s=s.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<s.length;t++){var a=s[t];if(a!==e&&a.form===e.form){var c=oi(a);if(!c)throw Error(r(90));fu(a),$l(a,c)}}}break;case"textarea":gu(e,s);break;case"select":t=s.value,t!=null&&Hn(e,!!s.multiple,t,!1)}},Tu=pa,_u=Mn;var Jm={usingClientEntryPoint:!1,Events:[us,rr,oi,Nu,xu,pa]},Ns={findFiberByHostInstance:_n,bundleType:0,version:"18.3.1",rendererPackageName:"react-dom"},Ym={bundleType:Ns.bundleType,version:Ns.version,rendererPackageName:Ns.rendererPackageName,rendererConfig:Ns.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:V.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return e=Iu(e),e===null?null:e.stateNode},findFiberByHostInstance:Ns.findFiberByHostInstance||Hm,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.3.1-next-f1338f8080-20240426"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Wi=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Wi.isDisabled&&Wi.supportsFiber)try{Us=Wi.inject(Ym),bt=Wi}catch{}}return ut.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Jm,ut.createPortal=function(e,t){var s=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!Na(t))throw Error(r(200));return qm(e,t,null,s)},ut.createRoot=function(e,t){if(!Na(e))throw Error(r(299));var s=!1,a="",c=sd;return t!=null&&(t.unstable_strictMode===!0&&(s=!0),t.identifierPrefix!==void 0&&(a=t.identifierPrefix),t.onRecoverableError!==void 0&&(c=t.onRecoverableError)),t=Sa(e,1,!1,null,null,s,!1,a,c),e[Wt]=t.current,ls(e.nodeType===8?e.parentNode:e),new Ea(t)},ut.findDOMNode=function(e){if(e==null)return null;if(e.nodeType===1)return e;var t=e._reactInternals;if(t===void 0)throw typeof e.render=="function"?Error(r(188)):(e=Object.keys(e).join(","),Error(r(268,e)));return e=Iu(t),e=e===null?null:e.stateNode,e},ut.flushSync=function(e){return Mn(e)},ut.hydrate=function(e,t,s){if(!Vi(t))throw Error(r(200));return Ki(null,e,t,!0,s)},ut.hydrateRoot=function(e,t,s){if(!Na(e))throw Error(r(405));var a=s!=null&&s.hydratedSources||null,c=!1,d="",m=sd;if(s!=null&&(s.unstable_strictMode===!0&&(c=!0),s.identifierPrefix!==void 0&&(d=s.identifierPrefix),s.onRecoverableError!==void 0&&(m=s.onRecoverableError)),t=nd(t,null,e,1,s??null,c,!1,d,m),e[Wt]=t.current,ls(e),a)for(e=0;e<a.length;e++)s=a[e],c=s._getVersion,c=c(s._source),t.mutableSourceEagerHydrationData==null?t.mutableSourceEagerHydrationData=[s,c]:t.mutableSourceEagerHydrationData.push(s,c);return new Ui(t)},ut.render=function(e,t,s){if(!Vi(t))throw Error(r(200));return Ki(null,e,t,!1,s)},ut.unmountComponentAtNode=function(e){if(!Vi(e))throw Error(r(40));return e._reactRootContainer?(Mn(function(){Ki(null,null,e,!1,function(){e._reactRootContainer=null,e[Wt]=null})}),!0):!1},ut.unstable_batchedUpdates=pa,ut.unstable_renderSubtreeIntoContainer=function(e,t,s,a){if(!Vi(s))throw Error(r(200));if(e==null||e._reactInternals===void 0)throw Error(r(38));return Ki(e,t,s,!1,a)},ut.version="18.3.1-next-f1338f8080-20240426",ut}var md;function dg(){if(md)return _a.exports;md=1;function i(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(n){console.error(n)}}return i(),_a.exports=fg(),_a.exports}var gd;function hg(){if(gd)return qi;gd=1;var i=dg();return qi.createRoot=i.createRoot,qi.hydrateRoot=i.hydrateRoot,qi}var pg=hg();const mg="modulepreload",gg=function(i){return"/"+i},yd={},yg=function(n,r,l){let o=Promise.resolve();if(r&&r.length>0){document.getElementsByTagName("link");const f=document.querySelector("meta[property=csp-nonce]"),h=(f==null?void 0:f.nonce)||(f==null?void 0:f.getAttribute("nonce"));o=Promise.allSettled(r.map(p=>{if(p=gg(p),p in yd)return;yd[p]=!0;const g=p.endsWith(".css"),x=g?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${p}"]${x}`))return;const S=document.createElement("link");if(S.rel=g?"stylesheet":mg,g||(S.as="script"),S.crossOrigin="",S.href=p,h&&S.setAttribute("nonce",h),document.head.appendChild(S),g)return new Promise((T,E)=>{S.addEventListener("load",T),S.addEventListener("error",()=>E(new Error(`Unable to preload CSS for ${p}`)))})}))}function u(f){const h=new Event("vite:preloadError",{cancelable:!0});if(h.payload=f,window.dispatchEvent(h),!h.defaultPrevented)throw f}return o.then(f=>{for(const h of f||[])h.status==="rejected"&&u(h.reason);return n().catch(u)})};function vg(i,n){const r=/(\x1b\[(\d+(;\d+)*)m)|([^\x1b]+)/g,l=[];let o,u={},f=!1,h=n==null?void 0:n.fg,p=n==null?void 0:n.bg;for(;(o=r.exec(i))!==null;){const[,,g,,x]=o;if(g){const S=+g;switch(S){case 0:u={};break;case 1:u["font-weight"]="bold";break;case 2:u.opacity="0.8";break;case 3:u["font-style"]="italic";break;case 4:u["text-decoration"]="underline";break;case 7:f=!0;break;case 8:u.display="none";break;case 9:u["text-decoration"]="line-through";break;case 22:delete u["font-weight"],delete u["font-style"],delete u.opacity,delete u["text-decoration"];break;case 23:delete u["font-weight"],delete u["font-style"],delete u.opacity;break;case 24:delete u["text-decoration"];break;case 27:f=!1;break;case 30:case 31:case 32:case 33:case 34:case 35:case 36:case 37:h=vd[S-30];break;case 39:h=n==null?void 0:n.fg;break;case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:p=vd[S-40];break;case 49:p=n==null?void 0:n.bg;break;case 53:u["text-decoration"]="overline";break;case 90:case 91:case 92:case 93:case 94:case 95:case 96:case 97:h=wd[S-90];break;case 100:case 101:case 102:case 103:case 104:case 105:case 106:case 107:p=wd[S-100];break}}else if(x){const S={...u},T=f?p:h;T!==void 0&&(S.color=T);const E=f?h:p;E!==void 0&&(S["background-color"]=E),l.push(`<span style="${Sg(S)}">${wg(x)}</span>`)}}return l.join("")}const vd={0:"var(--vscode-terminal-ansiBlack)",1:"var(--vscode-terminal-ansiRed)",2:"var(--vscode-terminal-ansiGreen)",3:"var(--vscode-terminal-ansiYellow)",4:"var(--vscode-terminal-ansiBlue)",5:"var(--vscode-terminal-ansiMagenta)",6:"var(--vscode-terminal-ansiCyan)",7:"var(--vscode-terminal-ansiWhite)"},wd={0:"var(--vscode-terminal-ansiBrightBlack)",1:"var(--vscode-terminal-ansiBrightRed)",2:"var(--vscode-terminal-ansiBrightGreen)",3:"var(--vscode-terminal-ansiBrightYellow)",4:"var(--vscode-terminal-ansiBrightBlue)",5:"var(--vscode-terminal-ansiBrightMagenta)",6:"var(--vscode-terminal-ansiBrightCyan)",7:"var(--vscode-terminal-ansiBrightWhite)"};function wg(i){return i.replace(/[&"<>]/g,n=>({"&":"&",'"':""","<":"<",">":">"})[n])}function Sg(i){return Object.entries(i).map(([n,r])=>`${n}: ${r}`).join("; ")}const Oa=({text:i,language:n,mimeType:r,linkify:l,readOnly:o,highlight:u,revealLine:f,lineNumbers:h,isFocused:p,focusOnChange:g,wrapLines:x,onChange:S,dataTestId:T,placeholder:E})=>{const[O,v]=Dd(),[w]=ye.useState(yg(()=>import("./codeMirrorModule-DVQi6prl.js"),__vite__mapDeps([0,1])).then(V=>V.default)),$=ye.useRef(null),[A,B]=ye.useState();return ye.useEffect(()=>{(async()=>{var z,P;const V=await w;Eg(V);const W=v.current;if(!W)return;const j=xg(n)||Ng(r)||(l?"text/linkified":"");if($.current&&j===$.current.cm.getOption("mode")&&!!o===$.current.cm.getOption("readOnly")&&h===$.current.cm.getOption("lineNumbers")&&x===$.current.cm.getOption("lineWrapping")&&E===$.current.cm.getOption("placeholder"))return;(P=(z=$.current)==null?void 0:z.cm)==null||P.getWrapperElement().remove();const Y=V(W,{value:"",mode:j,readOnly:!!o,lineNumbers:h,lineWrapping:x,placeholder:E});return $.current={cm:Y},p&&Y.focus(),B(Y),Y})()},[w,A,v,n,r,l,h,x,o,p,E]),ye.useEffect(()=>{$.current&&$.current.cm.setSize(O.width,O.height)},[O]),ye.useLayoutEffect(()=>{var j;if(!A)return;let V=!1;if(A.getValue()!==i&&(A.setValue(i),V=!0,g&&(A.execCommand("selectAll"),A.focus())),V||JSON.stringify(u)!==JSON.stringify($.current.highlight)){for(const P of $.current.highlight||[])A.removeLineClass(P.line-1,"wrap");for(const P of u||[])A.addLineClass(P.line-1,"wrap",`source-line-${P.type}`);for(const P of $.current.widgets||[])A.removeLineWidget(P);for(const P of $.current.markers||[])P.clear();const Y=[],z=[];for(const P of u||[]){if(P.type!=="subtle-error"&&P.type!=="error")continue;const le=(j=$.current)==null?void 0:j.cm.getLine(P.line-1);if(le){const ue={};ue.title=P.message||"",z.push(A.markText({line:P.line-1,ch:0},{line:P.line-1,ch:P.column||le.length},{className:"source-line-error-underline",attributes:ue}))}if(P.type==="error"){const ue=document.createElement("div");ue.innerHTML=vg(P.message||""),ue.className="source-line-error-widget",Y.push(A.addLineWidget(P.line,ue,{above:!0,coverGutter:!1}))}}$.current.highlight=u,$.current.widgets=Y,$.current.markers=z}typeof f=="number"&&$.current.cm.lineCount()>=f&&A.scrollIntoView({line:Math.max(0,f-1),ch:0},50);let W;return S&&(W=()=>S(A.getValue()),A.on("change",W)),()=>{W&&A.off("change",W)}},[A,i,u,f,g,S]),H.jsx("div",{"data-testid":T,className:"cm-wrapper",ref:v,onClick:kg})};function kg(i){var r;if(!(i.target instanceof HTMLElement))return;let n;i.target.classList.contains("cm-linkified")?n=i.target.textContent:i.target.classList.contains("cm-link")&&((r=i.target.nextElementSibling)!=null&&r.classList.contains("cm-url"))&&(n=i.target.nextElementSibling.textContent.slice(1,-1)),n&&(i.preventDefault(),i.stopPropagation(),window.open(n,"_blank"))}let Sd=!1;function Eg(i){Sd||(Sd=!0,i.defineSimpleMode("text/linkified",{start:[{regex:sg,token:"linkified"}]}))}function Ng(i){if(i){if(i.includes("javascript")||i.includes("json"))return"javascript";if(i.includes("python"))return"python";if(i.includes("csharp"))return"text/x-csharp";if(i.includes("java"))return"text/x-java";if(i.includes("markdown"))return"markdown";if(i.includes("html")||i.includes("svg"))return"htmlmixed";if(i.includes("css"))return"css"}}function xg(i){if(i)return{javascript:"javascript",jsonl:"javascript",python:"python",csharp:"text/x-csharp",java:"text/x-java",markdown:"markdown",html:"htmlmixed",css:"css",yaml:"yaml"}[i]}const Tg=50,_g=({sidebarSize:i,sidebarHidden:n=!1,sidebarIsFirst:r=!1,orientation:l="vertical",minSidebarSize:o=Tg,settingName:u,sidebar:f,main:h})=>{const p=Math.max(o,i)*window.devicePixelRatio,[g,x]=Fa(u?u+"."+l+":size":void 0,p),[S,T]=Fa(u?u+"."+l+":size":void 0,p),[E,O]=ye.useState(null),[v,w]=Dd();let $;l==="vertical"?($=S/window.devicePixelRatio,v&&v.height<$&&($=v.height-10)):($=g/window.devicePixelRatio,v&&v.width<$&&($=v.width-10)),document.body.style.userSelect=E?"none":"inherit";let A={};return l==="vertical"?r?A={top:E?0:$-4,bottom:E?0:void 0,height:E?"initial":8}:A={bottom:E?0:$-4,top:E?0:void 0,height:E?"initial":8}:r?A={left:E?0:$-4,right:E?0:void 0,width:E?"initial":8}:A={right:E?0:$-4,left:E?0:void 0,width:E?"initial":8},H.jsxs("div",{className:Vn("split-view",l,r&&"sidebar-first"),ref:w,children:[H.jsx("div",{className:"split-view-main",children:h}),!n&&H.jsx("div",{style:{flexBasis:$},className:"split-view-sidebar",children:f}),!n&&H.jsx("div",{style:A,className:"split-view-resizer",onMouseDown:B=>O({offset:l==="vertical"?B.clientY:B.clientX,size:$}),onMouseUp:()=>O(null),onMouseMove:B=>{if(!B.buttons)O(null);else if(E){const W=(l==="vertical"?B.clientY:B.clientX)-E.offset,j=r?E.size+W:E.size-W,z=B.target.parentElement.getBoundingClientRect(),P=Math.min(Math.max(o,j),(l==="vertical"?z.height:z.width)-o);l==="vertical"?T(P*window.devicePixelRatio):x(P*window.devicePixelRatio)}}})]})},bd=({noShadow:i,children:n,noMinHeight:r,className:l,sidebarBackground:o,onClick:u})=>H.jsx("div",{className:Vn("toolbar",i&&"no-shadow",r&&"no-min-height",l,o&&"toolbar-sidebar-background"),onClick:u,children:n}),Cg=({tabs:i,selectedTab:n,setSelectedTab:r,leftToolbar:l,rightToolbar:o,dataTestId:u,mode:f})=>{const h=ye.useId();return n||(n=i[0].id),f||(f="default"),H.jsx("div",{className:"tabbed-pane","data-testid":u,children:H.jsxs("div",{className:"vbox",children:[H.jsxs(bd,{children:[l&&H.jsxs("div",{style:{flex:"none",display:"flex",margin:"0 4px",alignItems:"center"},children:[...l]}),f==="default"&&H.jsx("div",{style:{flex:"auto",display:"flex",height:"100%",overflow:"hidden"},role:"tablist",children:[...i.map(p=>H.jsx(Lg,{id:p.id,ariaControls:`${h}-${p.id}`,title:p.title,count:p.count,errorCount:p.errorCount,selected:n===p.id,onSelect:r},p.id))]}),f==="select"&&H.jsx("div",{style:{flex:"auto",display:"flex",height:"100%",overflow:"hidden"},role:"tablist",children:H.jsx("select",{style:{width:"100%",background:"none",cursor:"pointer"},value:n,onChange:p=>{r==null||r(i[p.currentTarget.selectedIndex].id)},children:i.map(p=>{let g="";return p.count&&(g=` (${p.count})`),p.errorCount&&(g=` (${p.errorCount})`),H.jsxs("option",{value:p.id,role:"tab","aria-controls":`${h}-${p.id}`,children:[p.title,g]},p.id)})})}),o&&H.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center"},children:[...o]})]}),i.map(p=>{const g="tab-content tab-"+p.id;if(p.component)return H.jsx("div",{id:`${h}-${p.id}`,role:"tabpanel","aria-label":p.title,className:g,style:{display:n===p.id?"inherit":"none"},children:p.component},p.id);if(n===p.id)return H.jsx("div",{id:`${h}-${p.id}`,role:"tabpanel","aria-label":p.title,className:g,children:p.render()},p.id)})]})})},Lg=({id:i,title:n,count:r,errorCount:l,selected:o,onSelect:u,ariaControls:f})=>H.jsxs("div",{className:Vn("tabbed-pane-tab",o&&"selected"),onClick:()=>u==null?void 0:u(i),role:"tab",title:n,"aria-controls":f,children:[H.jsx("div",{className:"tabbed-pane-tab-label",children:n}),!!r&&H.jsx("div",{className:"tabbed-pane-tab-counter",children:r}),!!l&&H.jsx("div",{className:"tabbed-pane-tab-counter error",children:l})]}),Og=({sources:i,fileId:n,setFileId:r})=>H.jsx("select",{className:"source-chooser",hidden:!i.length,title:"Source chooser",value:n,onChange:l=>{r(l.target.selectedOptions[0].value)},children:Ig(i)});function Ig(i){const n=o=>o.replace(/.*[/\\]([^/\\]+)/,"$1"),r=o=>H.jsx("option",{value:o.id,children:n(o.label)},o.id),l=new Map;for(const o of i){let u=l.get(o.group||"Debugger");u||(u=[],l.set(o.group||"Debugger",u)),u.push(o)}return[...l.entries()].map(([o,u])=>H.jsx("optgroup",{label:o,children:u.filter(f=>(f.group||"Debugger")===o).map(f=>r(f))},o))}function $g(){return{id:"default",isRecorded:!1,text:"",language:"javascript",label:"",highlight:[]}}const vt=ye.forwardRef(function({children:n,title:r="",icon:l,disabled:o=!1,toggled:u=!1,onClick:f=()=>{},style:h,testId:p,className:g,ariaLabel:x},S){return H.jsxs("button",{ref:S,className:Vn(g,"toolbar-button",l,u&&"toggled"),onMouseDown:Ed,onClick:f,onDoubleClick:Ed,title:r,disabled:!!o,style:h,"data-testid":p,"aria-label":x||r,children:[l&&H.jsx("span",{className:`codicon codicon-${l}`,style:n?{marginRight:5}:{}}),n]})}),kd=({style:i})=>H.jsx("div",{className:"toolbar-separator",style:i}),Ed=i=>{i.stopPropagation(),i.preventDefault()};function Ag(i){var n,r,l,o,u,f,h,p,g;if(i=i??globalThis,!i.__playwright_builtins__){const x={setTimeout:(n=i.setTimeout)==null?void 0:n.bind(i),clearTimeout:(r=i.clearTimeout)==null?void 0:r.bind(i),setInterval:(l=i.setInterval)==null?void 0:l.bind(i),clearInterval:(o=i.clearInterval)==null?void 0:o.bind(i),requestAnimationFrame:(u=i.requestAnimationFrame)==null?void 0:u.bind(i),cancelAnimationFrame:(f=i.cancelAnimationFrame)==null?void 0:f.bind(i),requestIdleCallback:(h=i.requestIdleCallback)==null?void 0:h.bind(i),cancelIdleCallback:(p=i.cancelIdleCallback)==null?void 0:p.bind(i),performance:i.performance,eval:(g=i.eval)==null?void 0:g.bind(i),Intl:i.Intl,Date:i.Date,Map:i.Map,Set:i.Set};Object.defineProperty(i,"__playwright_builtins__",{value:x,configurable:!1,enumerable:!1,writable:!1})}return i.__playwright_builtins__}const St=Ag();St.setTimeout;St.clearTimeout;St.setInterval;St.clearInterval;St.requestAnimationFrame;St.cancelAnimationFrame;St.requestIdleCallback;St.cancelIdleCallback;St.performance;St.Intl;St.Date;St.Map;const hl=St.Set,De=function(i,n,r){return i>=n&&i<=r};function ct(i){return De(i,48,57)}function Nd(i){return ct(i)||De(i,65,70)||De(i,97,102)}function Pg(i){return De(i,65,90)}function Mg(i){return De(i,97,122)}function jg(i){return Pg(i)||Mg(i)}function Rg(i){return i>=128}function Xi(i){return jg(i)||Rg(i)||i===95}function xd(i){return Xi(i)||ct(i)||i===45}function Dg(i){return De(i,0,8)||i===11||De(i,14,31)||i===127}function Zi(i){return i===10}function Zt(i){return Zi(i)||i===9||i===32}const bg=1114111;class Ja extends Error{constructor(n){super(n),this.name="InvalidCharacterError"}}function Fg(i){const n=[];for(let r=0;r<i.length;r++){let l=i.charCodeAt(r);if(l===13&&i.charCodeAt(r+1)===10&&(l=10,r++),(l===13||l===12)&&(l=10),l===0&&(l=65533),De(l,55296,56319)&&De(i.charCodeAt(r+1),56320,57343)){const o=l-55296,u=i.charCodeAt(r+1)-56320;l=Math.pow(2,16)+o*Math.pow(2,10)+u,r++}n.push(l)}return n}function Be(i){if(i<=65535)return String.fromCharCode(i);i-=Math.pow(2,16);const n=Math.floor(i/Math.pow(2,10))+55296,r=i%Math.pow(2,10)+56320;return String.fromCharCode(n)+String.fromCharCode(r)}function Bg(i){const n=Fg(i);let r=-1;const l=[];let o;const u=function(M){return M>=n.length?-1:n[M]},f=function(M){if(M===void 0&&(M=1),M>3)throw"Spec Error: no more than three codepoints of lookahead.";return u(r+M)},h=function(M){return M===void 0&&(M=1),r+=M,o=u(r),!0},p=function(){return r-=1,!0},g=function(M){return M===void 0&&(M=o),M===-1},x=function(){if(S(),h(),Zt(o)){for(;Zt(f());)h();return new Ba}else{if(o===34)return O();if(o===35)if(xd(f())||$(f(1),f(2))){const M=new Zd("");return B(f(1),f(2),f(3))&&(M.type="id"),M.value=Y(),M}else return new Xe(o);else return o===36?f()===61?(h(),new Kg):new Xe(o):o===39?O():o===40?new Qd:o===41?new Jd:o===42?f()===61?(h(),new Wg):new Xe(o):o===43?j()?(p(),T()):new Xe(o):o===44?new Kd:o===45?j()?(p(),T()):f(1)===45&&f(2)===62?(h(2),new zd):V()?(p(),E()):new Xe(o):o===46?j()?(p(),T()):new Xe(o):o===58?new Ud:o===59?new Vd:o===60?f(1)===33&&f(2)===45&&f(3)===45?(h(3),new Bd):new Xe(o):o===64?B(f(1),f(2),f(3))?new Xd(Y()):new Xe(o):o===91?new Hd:o===92?A()?(p(),E()):new Xe(o):o===93?new za:o===94?f()===61?(h(),new Vg):new Xe(o):o===123?new Wd:o===124?f()===61?(h(),new Ug):f()===124?(h(),new Yd):new Xe(o):o===125?new qd:o===126?f()===61?(h(),new zg):new Xe(o):ct(o)?(p(),T()):Xi(o)?(p(),E()):g()?new tl:new Xe(o)}},S=function(){for(;f(1)===47&&f(2)===42;)for(h(2);;)if(h(),o===42&&f()===47){h();break}else if(g())return},T=function(){const M=z();if(B(f(1),f(2),f(3))){const ee=new qg;return ee.value=M.value,ee.repr=M.repr,ee.type=M.type,ee.unit=Y(),ee}else if(f()===37){h();const ee=new rh;return ee.value=M.value,ee.repr=M.repr,ee}else{const ee=new nh;return ee.value=M.value,ee.repr=M.repr,ee.type=M.type,ee}},E=function(){const M=Y();if(M.toLowerCase()==="url"&&f()===40){for(h();Zt(f(1))&&Zt(f(2));)h();return f()===34||f()===39?new nl(M):Zt(f())&&(f(2)===34||f(2)===39)?new nl(M):v()}else return f()===40?(h(),new nl(M)):new Gd(M)},O=function(M){M===void 0&&(M=o);let ee="";for(;h();){if(o===M||g())return new eh(ee);if(Zi(o))return p(),new Fd;o===92?g(f())||(Zi(f())?h():ee+=Be(w())):ee+=Be(o)}throw new Error("Internal error")},v=function(){const M=new th("");for(;Zt(f());)h();if(g(f()))return M;for(;h();){if(o===41||g())return M;if(Zt(o)){for(;Zt(f());)h();return f()===41||g(f())?(h(),M):(le(),new el)}else{if(o===34||o===39||o===40||Dg(o))return le(),new el;if(o===92)if(A())M.value+=Be(w());else return le(),new el;else M.value+=Be(o)}}throw new Error("Internal error")},w=function(){if(h(),Nd(o)){const M=[o];for(let ke=0;ke<5&&Nd(f());ke++)h(),M.push(o);Zt(f())&&h();let ee=parseInt(M.map(function(ke){return String.fromCharCode(ke)}).join(""),16);return ee>bg&&(ee=65533),ee}else return g()?65533:o},$=function(M,ee){return!(M!==92||Zi(ee))},A=function(){return $(o,f())},B=function(M,ee,ke){return M===45?Xi(ee)||ee===45||$(ee,ke):Xi(M)?!0:M===92?$(M,ee):!1},V=function(){return B(o,f(1),f(2))},W=function(M,ee,ke){return M===43||M===45?!!(ct(ee)||ee===46&&ct(ke)):M===46?!!ct(ee):!!ct(M)},j=function(){return W(o,f(1),f(2))},Y=function(){let M="";for(;h();)if(xd(o))M+=Be(o);else if(A())M+=Be(w());else return p(),M;throw new Error("Internal parse error")},z=function(){let M="",ee="integer";for((f()===43||f()===45)&&(h(),M+=Be(o));ct(f());)h(),M+=Be(o);if(f(1)===46&&ct(f(2)))for(h(),M+=Be(o),h(),M+=Be(o),ee="number";ct(f());)h(),M+=Be(o);const ke=f(1),rt=f(2),He=f(3);if((ke===69||ke===101)&&ct(rt))for(h(),M+=Be(o),h(),M+=Be(o),ee="number";ct(f());)h(),M+=Be(o);else if((ke===69||ke===101)&&(rt===43||rt===45)&&ct(He))for(h(),M+=Be(o),h(),M+=Be(o),h(),M+=Be(o),ee="number";ct(f());)h(),M+=Be(o);const xe=P(M);return{type:ee,value:xe,repr:M}},P=function(M){return+M},le=function(){for(;h();){if(o===41||g())return;A()&&w()}};let ue=0;for(;!g(f());)if(l.push(x()),ue++,ue>n.length*2)throw new Error("I'm infinite-looping!");return l}class je{constructor(){this.tokenType=""}toJSON(){return{token:this.tokenType}}toString(){return this.tokenType}toSource(){return""+this}}class Fd extends je{constructor(){super(...arguments),this.tokenType="BADSTRING"}}class el extends je{constructor(){super(...arguments),this.tokenType="BADURL"}}class Ba extends je{constructor(){super(...arguments),this.tokenType="WHITESPACE"}toString(){return"WS"}toSource(){return" "}}class Bd extends je{constructor(){super(...arguments),this.tokenType="CDO"}toSource(){return"<!--"}}class zd extends je{constructor(){super(...arguments),this.tokenType="CDC"}toSource(){return"-->"}}class Ud extends je{constructor(){super(...arguments),this.tokenType=":"}}class Vd extends je{constructor(){super(...arguments),this.tokenType=";"}}class Kd extends je{constructor(){super(...arguments),this.tokenType=","}}class $r extends je{constructor(){super(...arguments),this.value="",this.mirror=""}}class Wd extends $r{constructor(){super(),this.tokenType="{",this.value="{",this.mirror="}"}}class qd extends $r{constructor(){super(),this.tokenType="}",this.value="}",this.mirror="{"}}class Hd extends $r{constructor(){super(),this.tokenType="[",this.value="[",this.mirror="]"}}class za extends $r{constructor(){super(),this.tokenType="]",this.value="]",this.mirror="["}}class Qd extends $r{constructor(){super(),this.tokenType="(",this.value="(",this.mirror=")"}}class Jd extends $r{constructor(){super(),this.tokenType=")",this.value=")",this.mirror="("}}class zg extends je{constructor(){super(...arguments),this.tokenType="~="}}class Ug extends je{constructor(){super(...arguments),this.tokenType="|="}}class Vg extends je{constructor(){super(...arguments),this.tokenType="^="}}class Kg extends je{constructor(){super(...arguments),this.tokenType="$="}}class Wg extends je{constructor(){super(...arguments),this.tokenType="*="}}class Yd extends je{constructor(){super(...arguments),this.tokenType="||"}}class tl extends je{constructor(){super(...arguments),this.tokenType="EOF"}toSource(){return""}}class Xe extends je{constructor(n){super(),this.tokenType="DELIM",this.value="",this.value=Be(n)}toString(){return"DELIM("+this.value+")"}toJSON(){const n=this.constructor.prototype.constructor.prototype.toJSON.call(this);return n.value=this.value,n}toSource(){return this.value==="\\"?`\\
|
|
42
|
+
`:this.value}}class Ar extends je{constructor(){super(...arguments),this.value=""}ASCIIMatch(n){return this.value.toLowerCase()===n.toLowerCase()}toJSON(){const n=this.constructor.prototype.constructor.prototype.toJSON.call(this);return n.value=this.value,n}}class Gd extends Ar{constructor(n){super(),this.tokenType="IDENT",this.value=n}toString(){return"IDENT("+this.value+")"}toSource(){return As(this.value)}}class nl extends Ar{constructor(n){super(),this.tokenType="FUNCTION",this.value=n,this.mirror=")"}toString(){return"FUNCTION("+this.value+")"}toSource(){return As(this.value)+"("}}class Xd extends Ar{constructor(n){super(),this.tokenType="AT-KEYWORD",this.value=n}toString(){return"AT("+this.value+")"}toSource(){return"@"+As(this.value)}}class Zd extends Ar{constructor(n){super(),this.tokenType="HASH",this.value=n,this.type="unrestricted"}toString(){return"HASH("+this.value+")"}toJSON(){const n=this.constructor.prototype.constructor.prototype.toJSON.call(this);return n.value=this.value,n.type=this.type,n}toSource(){return this.type==="id"?"#"+As(this.value):"#"+Hg(this.value)}}class eh extends Ar{constructor(n){super(),this.tokenType="STRING",this.value=n}toString(){return'"'+sh(this.value)+'"'}}class th extends Ar{constructor(n){super(),this.tokenType="URL",this.value=n}toString(){return"URL("+this.value+")"}toSource(){return'url("'+sh(this.value)+'")'}}class nh extends je{constructor(){super(),this.tokenType="NUMBER",this.type="integer",this.repr=""}toString(){return this.type==="integer"?"INT("+this.value+")":"NUMBER("+this.value+")"}toJSON(){const n=super.toJSON();return n.value=this.value,n.type=this.type,n.repr=this.repr,n}toSource(){return this.repr}}class rh extends je{constructor(){super(),this.tokenType="PERCENTAGE",this.repr=""}toString(){return"PERCENTAGE("+this.value+")"}toJSON(){const n=this.constructor.prototype.constructor.prototype.toJSON.call(this);return n.value=this.value,n.repr=this.repr,n}toSource(){return this.repr+"%"}}class qg extends je{constructor(){super(),this.tokenType="DIMENSION",this.type="integer",this.repr="",this.unit=""}toString(){return"DIM("+this.value+","+this.unit+")"}toJSON(){const n=this.constructor.prototype.constructor.prototype.toJSON.call(this);return n.value=this.value,n.type=this.type,n.repr=this.repr,n.unit=this.unit,n}toSource(){const n=this.repr;let r=As(this.unit);return r[0].toLowerCase()==="e"&&(r[1]==="-"||De(r.charCodeAt(1),48,57))&&(r="\\65 "+r.slice(1,r.length)),n+r}}function As(i){i=""+i;let n="";const r=i.charCodeAt(0);for(let l=0;l<i.length;l++){const o=i.charCodeAt(l);if(o===0)throw new Ja("Invalid character: the input contains U+0000.");De(o,1,31)||o===127||l===0&&De(o,48,57)||l===1&&De(o,48,57)&&r===45?n+="\\"+o.toString(16)+" ":o>=128||o===45||o===95||De(o,48,57)||De(o,65,90)||De(o,97,122)?n+=i[l]:n+="\\"+i[l]}return n}function Hg(i){i=""+i;let n="";for(let r=0;r<i.length;r++){const l=i.charCodeAt(r);if(l===0)throw new Ja("Invalid character: the input contains U+0000.");l>=128||l===45||l===95||De(l,48,57)||De(l,65,90)||De(l,97,122)?n+=i[r]:n+="\\"+l.toString(16)+" "}return n}function sh(i){i=""+i;let n="";for(let r=0;r<i.length;r++){const l=i.charCodeAt(r);if(l===0)throw new Ja("Invalid character: the input contains U+0000.");De(l,1,31)||l===127?n+="\\"+l.toString(16)+" ":l===34||l===92?n+="\\"+i[r]:n+=i[r]}return n}class ft extends Error{}function Qg(i,n){let r;try{r=Bg(i),r[r.length-1]instanceof tl||r.push(new tl)}catch(P){const le=P.message+` while parsing css selector "${i}". Did you mean to CSS.escape it?`,ue=(P.stack||"").indexOf(P.message);throw ue!==-1&&(P.stack=P.stack.substring(0,ue)+le+P.stack.substring(ue+P.message.length)),P.message=le,P}const l=r.find(P=>P instanceof Xd||P instanceof Fd||P instanceof el||P instanceof Yd||P instanceof Bd||P instanceof zd||P instanceof Vd||P instanceof Wd||P instanceof qd||P instanceof th||P instanceof rh);if(l)throw new ft(`Unsupported token "${l.toSource()}" while parsing css selector "${i}". Did you mean to CSS.escape it?`);let o=0;const u=new hl;function f(){return new ft(`Unexpected token "${r[o].toSource()}" while parsing css selector "${i}". Did you mean to CSS.escape it?`)}function h(){for(;r[o]instanceof Ba;)o++}function p(P=o){return r[P]instanceof Gd}function g(P=o){return r[P]instanceof eh}function x(P=o){return r[P]instanceof nh}function S(P=o){return r[P]instanceof Kd}function T(P=o){return r[P]instanceof Qd}function E(P=o){return r[P]instanceof Jd}function O(P=o){return r[P]instanceof nl}function v(P=o){return r[P]instanceof Xe&&r[P].value==="*"}function w(P=o){return r[P]instanceof tl}function $(P=o){return r[P]instanceof Xe&&[">","+","~"].includes(r[P].value)}function A(P=o){return S(P)||E(P)||w(P)||$(P)||r[P]instanceof Ba}function B(){const P=[V()];for(;h(),!!S();)o++,P.push(V());return P}function V(){return h(),x()||g()?r[o++].value:W()}function W(){const P={simples:[]};for(h(),$()?P.simples.push({selector:{functions:[{name:"scope",args:[]}]},combinator:""}):P.simples.push({selector:j(),combinator:""});;){if(h(),$())P.simples[P.simples.length-1].combinator=r[o++].value,h();else if(A())break;P.simples.push({combinator:"",selector:j()})}return P}function j(){let P="";const le=[];for(;!A();)if(p()||v())P+=r[o++].toSource();else if(r[o]instanceof Zd)P+=r[o++].toSource();else if(r[o]instanceof Xe&&r[o].value===".")if(o++,p())P+="."+r[o++].toSource();else throw f();else if(r[o]instanceof Ud)if(o++,p())if(!n.has(r[o].value.toLowerCase()))P+=":"+r[o++].toSource();else{const ue=r[o++].value.toLowerCase();le.push({name:ue,args:[]}),u.add(ue)}else if(O()){const ue=r[o++].value.toLowerCase();if(n.has(ue)?(le.push({name:ue,args:B()}),u.add(ue)):P+=`:${ue}(${Y()})`,h(),!E())throw f();o++}else throw f();else if(r[o]instanceof Hd){for(P+="[",o++;!(r[o]instanceof za)&&!w();)P+=r[o++].toSource();if(!(r[o]instanceof za))throw f();P+="]",o++}else throw f();if(!P&&!le.length)throw f();return{css:P||void 0,functions:le}}function Y(){let P="",le=1;for(;!w()&&((T()||O())&&le++,E()&&le--,!!le);)P+=r[o++].toSource();return P}const z=B();if(!w())throw f();if(z.some(P=>typeof P!="object"||!("simples"in P)))throw new ft(`Error while parsing css selector "${i}". Did you mean to CSS.escape it?`);return{selector:z,names:Array.from(u)}}const Td=new hl(["internal:has","internal:has-not","internal:and","internal:or","internal:chain","left-of","right-of","above","below","near"]),Jg=new hl(["left-of","right-of","above","below","near"]),Yg=new hl(["not","is","where","has","scope","light","visible","text","text-matches","text-is","has-text","above","below","right-of","left-of","near","nth-match"]);function ih(i){const n=Xg(i),r=[];for(const l of n.parts){if(l.name==="css"||l.name==="css:light"){l.name==="css:light"&&(l.body=":light("+l.body+")");const o=Qg(l.body,Yg);r.push({name:"css",body:o.selector,source:l.body});continue}if(Td.has(l.name)){let o,u;try{const g=JSON.parse("["+l.body+"]");if(!Array.isArray(g)||g.length<1||g.length>2||typeof g[0]!="string")throw new ft(`Malformed selector: ${l.name}=`+l.body);if(o=g[0],g.length===2){if(typeof g[1]!="number"||!Jg.has(l.name))throw new ft(`Malformed selector: ${l.name}=`+l.body);u=g[1]}}catch{throw new ft(`Malformed selector: ${l.name}=`+l.body)}const f={name:l.name,source:l.body,body:{parsed:ih(o),distance:u}},h=[...f.body.parsed.parts].reverse().find(g=>g.name==="internal:control"&&g.body==="enter-frame"),p=h?f.body.parsed.parts.indexOf(h):-1;p!==-1&&Gg(f.body.parsed.parts.slice(0,p+1),r.slice(0,p+1))&&f.body.parsed.parts.splice(0,p+1),r.push(f);continue}r.push({...l,source:l.body})}if(Td.has(r[0].name))throw new ft(`"${r[0].name}" selector cannot be first`);return{capture:n.capture,parts:r}}function Gg(i,n){return kr({parts:i})===kr({parts:n})}function kr(i,n){return typeof i=="string"?i:i.parts.map((r,l)=>{let o=!0;!n&&l!==i.capture&&(r.name==="css"||r.name==="xpath"&&r.source.startsWith("//")||r.source.startsWith(".."))&&(o=!1);const u=o?r.name+"=":"";return`${l===i.capture?"*":""}${u}${r.source}`}).join(" >> ")}function Xg(i){let n=0,r,l=0;const o={parts:[]},u=()=>{const h=i.substring(l,n).trim(),p=h.indexOf("=");let g,x;p!==-1&&h.substring(0,p).trim().match(/^[a-zA-Z_0-9-+:*]+$/)?(g=h.substring(0,p).trim(),x=h.substring(p+1)):h.length>1&&h[0]==='"'&&h[h.length-1]==='"'||h.length>1&&h[0]==="'"&&h[h.length-1]==="'"?(g="text",x=h):/^\(*\/\//.test(h)||h.startsWith("..")?(g="xpath",x=h):(g="css",x=h);let S=!1;if(g[0]==="*"&&(S=!0,g=g.substring(1)),o.parts.push({name:g,body:x}),S){if(o.capture!==void 0)throw new ft("Only one of the selectors can capture using * modifier");o.capture=o.parts.length-1}};if(!i.includes(">>"))return n=i.length,u(),o;const f=()=>{const p=i.substring(l,n).match(/^\s*text\s*=(.*)$/);return!!p&&!!p[1]};for(;n<i.length;){const h=i[n];h==="\\"&&n+1<i.length?n+=2:h===r?(r=void 0,n++):!r&&(h==='"'||h==="'"||h==="`")&&!f()?(r=h,n++):!r&&h===">"&&i[n+1]===">"?(u(),n+=2,l=n):n++}return u(),o}function Ia(i,n){let r=0,l=i.length===0;const o=()=>i[r]||"",u=()=>{const w=o();return++r,l=r>=i.length,w},f=w=>{throw l?new ft(`Unexpected end of selector while parsing selector \`${i}\``):new ft(`Error while parsing selector \`${i}\` - unexpected symbol "${o()}" at position ${r}`+(w?" during "+w:""))};function h(){for(;!l&&/\s/.test(o());)u()}function p(w){return w>=""||w>="0"&&w<="9"||w>="A"&&w<="Z"||w>="a"&&w<="z"||w>="0"&&w<="9"||w==="_"||w==="-"}function g(){let w="";for(h();!l&&p(o());)w+=u();return w}function x(w){let $=u();for($!==w&&f("parsing quoted string");!l&&o()!==w;)o()==="\\"&&u(),$+=u();return o()!==w&&f("parsing quoted string"),$+=u(),$}function S(){u()!=="/"&&f("parsing regular expression");let w="",$=!1;for(;!l;){if(o()==="\\")w+=u(),l&&f("parsing regular expression");else if($&&o()==="]")$=!1;else if(!$&&o()==="[")$=!0;else if(!$&&o()==="/")break;w+=u()}u()!=="/"&&f("parsing regular expression");let A="";for(;!l&&o().match(/[dgimsuy]/);)A+=u();try{return new RegExp(w,A)}catch(B){throw new ft(`Error while parsing selector \`${i}\`: ${B.message}`)}}function T(){let w="";return h(),o()==="'"||o()==='"'?w=x(o()).slice(1,-1):w=g(),w||f("parsing property path"),w}function E(){h();let w="";return l||(w+=u()),!l&&w!=="="&&(w+=u()),["=","*=","^=","$=","|=","~="].includes(w)||f("parsing operator"),w}function O(){u();const w=[];for(w.push(T()),h();o()===".";)u(),w.push(T()),h();if(o()==="]")return u(),{name:w.join("."),jsonPath:w,op:"<truthy>",value:null,caseSensitive:!1};const $=E();let A,B=!0;if(h(),o()==="/"){if($!=="=")throw new ft(`Error while parsing selector \`${i}\` - cannot use ${$} in attribute with regular expression`);A=S()}else if(o()==="'"||o()==='"')A=x(o()).slice(1,-1),h(),o()==="i"||o()==="I"?(B=!1,u()):(o()==="s"||o()==="S")&&(B=!0,u());else{for(A="";!l&&(p(o())||o()==="+"||o()===".");)A+=u();A==="true"?A=!0:A==="false"&&(A=!1)}if(h(),o()!=="]"&&f("parsing attribute value"),u(),$!=="="&&typeof A!="string")throw new ft(`Error while parsing selector \`${i}\` - cannot use ${$} in attribute with non-string matching value - ${A}`);return{name:w.join("."),jsonPath:w,op:$,value:A,caseSensitive:B}}const v={name:"",attributes:[]};for(v.name=g(),h();o()==="[";)v.attributes.push(O()),h();if(l||f(void 0),!v.name&&!v.attributes.length)throw new ft(`Error while parsing selector \`${i}\` - selector cannot be empty`);return v}function pl(i,n="'"){const r=JSON.stringify(i),l=r.substring(1,r.length-1).replace(/\\"/g,'"');if(n==="'")return n+l.replace(/[']/g,"\\'")+n;if(n==='"')return n+l.replace(/["]/g,'\\"')+n;if(n==="`")return n+l.replace(/[`]/g,"`")+n;throw new Error("Invalid escape char")}function ol(i){return i.charAt(0).toUpperCase()+i.substring(1)}function lh(i){return i.replace(/([a-z0-9])([A-Z])/g,"$1_$2").replace(/([A-Z])([A-Z][a-z])/g,"$1_$2").toLowerCase()}function ml(i){return i.replace(/(^|[^\\])(\\\\)*\\(['"`])/g,"$1$2$3")}function oh(i,n,r=!1){return Zg(i,n,r,1)[0]}function Zg(i,n,r=!1,l=20,o){try{return Sr(new ly[i](o),ih(n),r,l)}catch{return[n]}}function Sr(i,n,r=!1,l=20){const o=[...n.parts],u=[];let f=r?"frame-locator":"page";for(let h=0;h<o.length;h++){const p=o[h],g=f;if(f="locator",p.name==="nth"){p.body==="0"?u.push([i.generateLocator(g,"first",""),i.generateLocator(g,"nth","0")]):p.body==="-1"?u.push([i.generateLocator(g,"last",""),i.generateLocator(g,"nth","-1")]):u.push([i.generateLocator(g,"nth",p.body)]);continue}if(p.name==="visible"){u.push([i.generateLocator(g,"visible",p.body),i.generateLocator(g,"default",`visible=${p.body}`)]);continue}if(p.name==="internal:text"){const{exact:O,text:v}=Ts(p.body);u.push([i.generateLocator(g,"text",v,{exact:O})]);continue}if(p.name==="internal:has-text"){const{exact:O,text:v}=Ts(p.body);if(!O){u.push([i.generateLocator(g,"has-text",v,{exact:O})]);continue}}if(p.name==="internal:has-not-text"){const{exact:O,text:v}=Ts(p.body);if(!O){u.push([i.generateLocator(g,"has-not-text",v,{exact:O})]);continue}}if(p.name==="internal:has"){const O=Sr(i,p.body.parsed,!1,l);u.push(O.map(v=>i.generateLocator(g,"has",v)));continue}if(p.name==="internal:has-not"){const O=Sr(i,p.body.parsed,!1,l);u.push(O.map(v=>i.generateLocator(g,"hasNot",v)));continue}if(p.name==="internal:and"){const O=Sr(i,p.body.parsed,!1,l);u.push(O.map(v=>i.generateLocator(g,"and",v)));continue}if(p.name==="internal:or"){const O=Sr(i,p.body.parsed,!1,l);u.push(O.map(v=>i.generateLocator(g,"or",v)));continue}if(p.name==="internal:chain"){const O=Sr(i,p.body.parsed,!1,l);u.push(O.map(v=>i.generateLocator(g,"chain",v)));continue}if(p.name==="internal:label"){const{exact:O,text:v}=Ts(p.body);u.push([i.generateLocator(g,"label",v,{exact:O})]);continue}if(p.name==="internal:role"){const O=Ia(p.body),v={attrs:[]};for(const w of O.attributes)w.name==="name"?(v.exact=w.caseSensitive,v.name=w.value):(w.name==="level"&&typeof w.value=="string"&&(w.value=+w.value),v.attrs.push({name:w.name==="include-hidden"?"includeHidden":w.name,value:w.value}));u.push([i.generateLocator(g,"role",O.name,v)]);continue}if(p.name==="internal:testid"){const O=Ia(p.body),{value:v}=O.attributes[0];u.push([i.generateLocator(g,"test-id",v)]);continue}if(p.name==="internal:attr"){const O=Ia(p.body),{name:v,value:w,caseSensitive:$}=O.attributes[0],A=w,B=!!$;if(v==="placeholder"){u.push([i.generateLocator(g,"placeholder",A,{exact:B})]);continue}if(v==="alt"){u.push([i.generateLocator(g,"alt",A,{exact:B})]);continue}if(v==="title"){u.push([i.generateLocator(g,"title",A,{exact:B})]);continue}}if(p.name==="internal:control"&&p.body==="enter-frame"){const O=u[u.length-1],v=o[h-1],w=O.map($=>i.chainLocators([$,i.generateLocator(g,"frame","")]));["xpath","css"].includes(v.name)&&w.push(i.generateLocator(g,"frame-locator",kr({parts:[v]})),i.generateLocator(g,"frame-locator",kr({parts:[v]},!0))),O.splice(0,O.length,...w),f="frame-locator";continue}const x=o[h+1],S=kr({parts:[p]}),T=i.generateLocator(g,"default",S);if(x&&["internal:has-text","internal:has-not-text"].includes(x.name)){const{exact:O,text:v}=Ts(x.body);if(!O){const w=i.generateLocator("locator",x.name==="internal:has-text"?"has-text":"has-not-text",v,{exact:O}),$={};x.name==="internal:has-text"?$.hasText=v:$.hasNotText=v;const A=i.generateLocator(g,"default",S,$);u.push([i.chainLocators([T,w]),A]),h++;continue}}let E;if(["xpath","css"].includes(p.name)){const O=kr({parts:[p]},!0);E=i.generateLocator(g,"default",O)}u.push([T,E].filter(Boolean))}return ey(i,u,l)}function ey(i,n,r){const l=n.map(()=>""),o=[],u=f=>{if(f===n.length)return o.push(i.chainLocators(l)),o.length<r;for(const h of n[f])if(l[f]=h,!u(f+1))return!1;return!0};return u(0),o}function Ts(i){let n=!1;const r=i.match(/^\/(.*)\/([igm]*)$/);return r?{text:new RegExp(r[1],r[2])}:(i.endsWith('"')?(i=JSON.parse(i),n=!0):i.endsWith('"s')?(i=JSON.parse(i.substring(0,i.length-1)),n=!0):i.endsWith('"i')&&(i=JSON.parse(i.substring(0,i.length-1)),n=!1),{exact:n,text:i})}class ty{constructor(n){this.preferredQuote=n}generateLocator(n,r,l,o={}){switch(r){case"default":return o.hasText!==void 0?`locator(${this.quote(l)}, { hasText: ${this.toHasText(o.hasText)} })`:o.hasNotText!==void 0?`locator(${this.quote(l)}, { hasNotText: ${this.toHasText(o.hasNotText)} })`:`locator(${this.quote(l)})`;case"frame-locator":return`frameLocator(${this.quote(l)})`;case"frame":return"contentFrame()";case"nth":return`nth(${l})`;case"first":return"first()";case"last":return"last()";case"visible":return`filter({ visible: ${l==="true"?"true":"false"} })`;case"role":const u=[];qe(o.name)?u.push(`name: ${this.regexToSourceString(o.name)}`):typeof o.name=="string"&&(u.push(`name: ${this.quote(o.name)}`),o.exact&&u.push("exact: true"));for(const{name:h,value:p}of o.attrs)u.push(`${h}: ${typeof p=="string"?this.quote(p):p}`);const f=u.length?`, { ${u.join(", ")} }`:"";return`getByRole(${this.quote(l)}${f})`;case"has-text":return`filter({ hasText: ${this.toHasText(l)} })`;case"has-not-text":return`filter({ hasNotText: ${this.toHasText(l)} })`;case"has":return`filter({ has: ${l} })`;case"hasNot":return`filter({ hasNot: ${l} })`;case"and":return`and(${l})`;case"or":return`or(${l})`;case"chain":return`locator(${l})`;case"test-id":return`getByTestId(${this.toTestIdValue(l)})`;case"text":return this.toCallWithExact("getByText",l,!!o.exact);case"alt":return this.toCallWithExact("getByAltText",l,!!o.exact);case"placeholder":return this.toCallWithExact("getByPlaceholder",l,!!o.exact);case"label":return this.toCallWithExact("getByLabel",l,!!o.exact);case"title":return this.toCallWithExact("getByTitle",l,!!o.exact);default:throw new Error("Unknown selector kind "+r)}}chainLocators(n){return n.join(".")}regexToSourceString(n){return ml(String(n))}toCallWithExact(n,r,l){return qe(r)?`${n}(${this.regexToSourceString(r)})`:l?`${n}(${this.quote(r)}, { exact: true })`:`${n}(${this.quote(r)})`}toHasText(n){return qe(n)?this.regexToSourceString(n):this.quote(n)}toTestIdValue(n){return qe(n)?this.regexToSourceString(n):this.quote(n)}quote(n){return pl(n,this.preferredQuote??"'")}}class ny{generateLocator(n,r,l,o={}){switch(r){case"default":return o.hasText!==void 0?`locator(${this.quote(l)}, has_text=${this.toHasText(o.hasText)})`:o.hasNotText!==void 0?`locator(${this.quote(l)}, has_not_text=${this.toHasText(o.hasNotText)})`:`locator(${this.quote(l)})`;case"frame-locator":return`frame_locator(${this.quote(l)})`;case"frame":return"content_frame";case"nth":return`nth(${l})`;case"first":return"first";case"last":return"last";case"visible":return`filter(visible=${l==="true"?"True":"False"})`;case"role":const u=[];qe(o.name)?u.push(`name=${this.regexToString(o.name)}`):typeof o.name=="string"&&(u.push(`name=${this.quote(o.name)}`),o.exact&&u.push("exact=True"));for(const{name:h,value:p}of o.attrs){let g=typeof p=="string"?this.quote(p):p;typeof p=="boolean"&&(g=p?"True":"False"),u.push(`${lh(h)}=${g}`)}const f=u.length?`, ${u.join(", ")}`:"";return`get_by_role(${this.quote(l)}${f})`;case"has-text":return`filter(has_text=${this.toHasText(l)})`;case"has-not-text":return`filter(has_not_text=${this.toHasText(l)})`;case"has":return`filter(has=${l})`;case"hasNot":return`filter(has_not=${l})`;case"and":return`and_(${l})`;case"or":return`or_(${l})`;case"chain":return`locator(${l})`;case"test-id":return`get_by_test_id(${this.toTestIdValue(l)})`;case"text":return this.toCallWithExact("get_by_text",l,!!o.exact);case"alt":return this.toCallWithExact("get_by_alt_text",l,!!o.exact);case"placeholder":return this.toCallWithExact("get_by_placeholder",l,!!o.exact);case"label":return this.toCallWithExact("get_by_label",l,!!o.exact);case"title":return this.toCallWithExact("get_by_title",l,!!o.exact);default:throw new Error("Unknown selector kind "+r)}}chainLocators(n){return n.join(".")}regexToString(n){const r=n.flags.includes("i")?", re.IGNORECASE":"";return`re.compile(r"${ml(n.source).replace(/\\\//,"/").replace(/"/g,'\\"')}"${r})`}toCallWithExact(n,r,l){return qe(r)?`${n}(${this.regexToString(r)})`:l?`${n}(${this.quote(r)}, exact=True)`:`${n}(${this.quote(r)})`}toHasText(n){return qe(n)?this.regexToString(n):`${this.quote(n)}`}toTestIdValue(n){return qe(n)?this.regexToString(n):this.quote(n)}quote(n){return pl(n,'"')}}class ry{generateLocator(n,r,l,o={}){let u;switch(n){case"page":u="Page";break;case"frame-locator":u="FrameLocator";break;case"locator":u="Locator";break}switch(r){case"default":return o.hasText!==void 0?`locator(${this.quote(l)}, new ${u}.LocatorOptions().setHasText(${this.toHasText(o.hasText)}))`:o.hasNotText!==void 0?`locator(${this.quote(l)}, new ${u}.LocatorOptions().setHasNotText(${this.toHasText(o.hasNotText)}))`:`locator(${this.quote(l)})`;case"frame-locator":return`frameLocator(${this.quote(l)})`;case"frame":return"contentFrame()";case"nth":return`nth(${l})`;case"first":return"first()";case"last":return"last()";case"visible":return`filter(new ${u}.FilterOptions().setVisible(${l==="true"?"true":"false"}))`;case"role":const f=[];qe(o.name)?f.push(`.setName(${this.regexToString(o.name)})`):typeof o.name=="string"&&(f.push(`.setName(${this.quote(o.name)})`),o.exact&&f.push(".setExact(true)"));for(const{name:p,value:g}of o.attrs)f.push(`.set${ol(p)}(${typeof g=="string"?this.quote(g):g})`);const h=f.length?`, new ${u}.GetByRoleOptions()${f.join("")}`:"";return`getByRole(AriaRole.${lh(l).toUpperCase()}${h})`;case"has-text":return`filter(new ${u}.FilterOptions().setHasText(${this.toHasText(l)}))`;case"has-not-text":return`filter(new ${u}.FilterOptions().setHasNotText(${this.toHasText(l)}))`;case"has":return`filter(new ${u}.FilterOptions().setHas(${l}))`;case"hasNot":return`filter(new ${u}.FilterOptions().setHasNot(${l}))`;case"and":return`and(${l})`;case"or":return`or(${l})`;case"chain":return`locator(${l})`;case"test-id":return`getByTestId(${this.toTestIdValue(l)})`;case"text":return this.toCallWithExact(u,"getByText",l,!!o.exact);case"alt":return this.toCallWithExact(u,"getByAltText",l,!!o.exact);case"placeholder":return this.toCallWithExact(u,"getByPlaceholder",l,!!o.exact);case"label":return this.toCallWithExact(u,"getByLabel",l,!!o.exact);case"title":return this.toCallWithExact(u,"getByTitle",l,!!o.exact);default:throw new Error("Unknown selector kind "+r)}}chainLocators(n){return n.join(".")}regexToString(n){const r=n.flags.includes("i")?", Pattern.CASE_INSENSITIVE":"";return`Pattern.compile(${this.quote(ml(n.source))}${r})`}toCallWithExact(n,r,l,o){return qe(l)?`${r}(${this.regexToString(l)})`:o?`${r}(${this.quote(l)}, new ${n}.${ol(r)}Options().setExact(true))`:`${r}(${this.quote(l)})`}toHasText(n){return qe(n)?this.regexToString(n):this.quote(n)}toTestIdValue(n){return qe(n)?this.regexToString(n):this.quote(n)}quote(n){return pl(n,'"')}}class sy{generateLocator(n,r,l,o={}){switch(r){case"default":return o.hasText!==void 0?`Locator(${this.quote(l)}, new() { ${this.toHasText(o.hasText)} })`:o.hasNotText!==void 0?`Locator(${this.quote(l)}, new() { ${this.toHasNotText(o.hasNotText)} })`:`Locator(${this.quote(l)})`;case"frame-locator":return`FrameLocator(${this.quote(l)})`;case"frame":return"ContentFrame";case"nth":return`Nth(${l})`;case"first":return"First";case"last":return"Last";case"visible":return`Filter(new() { Visible = ${l==="true"?"true":"false"} })`;case"role":const u=[];qe(o.name)?u.push(`NameRegex = ${this.regexToString(o.name)}`):typeof o.name=="string"&&(u.push(`Name = ${this.quote(o.name)}`),o.exact&&u.push("Exact = true"));for(const{name:h,value:p}of o.attrs)u.push(`${ol(h)} = ${typeof p=="string"?this.quote(p):p}`);const f=u.length?`, new() { ${u.join(", ")} }`:"";return`GetByRole(AriaRole.${ol(l)}${f})`;case"has-text":return`Filter(new() { ${this.toHasText(l)} })`;case"has-not-text":return`Filter(new() { ${this.toHasNotText(l)} })`;case"has":return`Filter(new() { Has = ${l} })`;case"hasNot":return`Filter(new() { HasNot = ${l} })`;case"and":return`And(${l})`;case"or":return`Or(${l})`;case"chain":return`Locator(${l})`;case"test-id":return`GetByTestId(${this.toTestIdValue(l)})`;case"text":return this.toCallWithExact("GetByText",l,!!o.exact);case"alt":return this.toCallWithExact("GetByAltText",l,!!o.exact);case"placeholder":return this.toCallWithExact("GetByPlaceholder",l,!!o.exact);case"label":return this.toCallWithExact("GetByLabel",l,!!o.exact);case"title":return this.toCallWithExact("GetByTitle",l,!!o.exact);default:throw new Error("Unknown selector kind "+r)}}chainLocators(n){return n.join(".")}regexToString(n){const r=n.flags.includes("i")?", RegexOptions.IgnoreCase":"";return`new Regex(${this.quote(ml(n.source))}${r})`}toCallWithExact(n,r,l){return qe(r)?`${n}(${this.regexToString(r)})`:l?`${n}(${this.quote(r)}, new() { Exact = true })`:`${n}(${this.quote(r)})`}toHasText(n){return qe(n)?`HasTextRegex = ${this.regexToString(n)}`:`HasText = ${this.quote(n)}`}toTestIdValue(n){return qe(n)?this.regexToString(n):this.quote(n)}toHasNotText(n){return qe(n)?`HasNotTextRegex = ${this.regexToString(n)}`:`HasNotText = ${this.quote(n)}`}quote(n){return pl(n,'"')}}class iy{generateLocator(n,r,l,o={}){return JSON.stringify({kind:r,body:l,options:o})}chainLocators(n){const r=n.map(l=>JSON.parse(l));for(let l=0;l<r.length-1;++l)r[l].next=r[l+1];return JSON.stringify(r[0])}}const ly={javascript:ty,python:ny,java:ry,csharp:sy,jsonl:iy};function qe(i){return i instanceof RegExp}const oy=({language:i,log:n})=>{const r=ye.useRef(null),[l,o]=ye.useState(new Map);return ye.useLayoutEffect(()=>{var u;n.find(f=>f.reveal)&&((u=r.current)==null||u.scrollIntoView({block:"center",inline:"nearest"}))},[r,n]),H.jsxs("div",{className:"call-log",style:{flex:"auto"},children:[n.map(u=>{const f=l.get(u.id),h=typeof f=="boolean"?f:u.status!=="done",p=u.params.selector?oh(i,u.params.selector):null;let g=u.title,x="";return u.title.startsWith("expect.to")||u.title.startsWith("expect.not.to")?(g="expect(",x=`).${u.title.substring(7)}()`):u.title.startsWith("locator.")?(g="",x=`.${u.title.substring(8)}()`):(p||u.params.url)&&(g=u.title+"(",x=")"),H.jsxs("div",{className:Vn("call-log-call",u.status),children:[H.jsxs("div",{className:"call-log-call-header",children:[H.jsx("span",{className:Vn("codicon",`codicon-chevron-${h?"down":"right"}`),style:{cursor:"pointer"},onClick:()=>{const S=new Map(l);S.set(u.id,!h),o(S)}}),g,u.params.url?H.jsx("span",{className:"call-log-details",children:H.jsx("span",{className:"call-log-url",title:u.params.url,children:u.params.url})}):void 0,p?H.jsx("span",{className:"call-log-details",children:H.jsx("span",{className:"call-log-selector",title:`page.${p}`,children:`page.${p}`})}):void 0,x,H.jsx("span",{className:Vn("codicon",ay(u))}),typeof u.duration=="number"?H.jsxs("span",{className:"call-log-time",children:["— ",ng(u.duration)]}):void 0]}),(h?u.messages:[]).map((S,T)=>H.jsx("div",{className:"call-log-message",children:S.trim()},T)),!!u.error&&H.jsx("div",{className:"call-log-message error",hidden:!h,children:u.error})]},u.id)}),H.jsx("div",{ref:r})]})};function ay(i){switch(i.status){case"done":return"codicon-check";case"in-progress":return"codicon-clock";case"paused":return"codicon-debug-pause";case"error":return"codicon-error"}}const Ya=Symbol.for("yaml.alias"),Ua=Symbol.for("yaml.document"),En=Symbol.for("yaml.map"),ah=Symbol.for("yaml.pair"),Kt=Symbol.for("yaml.scalar"),Pr=Symbol.for("yaml.seq"),Lt=Symbol.for("yaml.node.type"),Wn=i=>!!i&&typeof i=="object"&&i[Lt]===Ya,qn=i=>!!i&&typeof i=="object"&&i[Lt]===Ua,Mr=i=>!!i&&typeof i=="object"&&i[Lt]===En,Ce=i=>!!i&&typeof i=="object"&&i[Lt]===ah,ve=i=>!!i&&typeof i=="object"&&i[Lt]===Kt,jr=i=>!!i&&typeof i=="object"&&i[Lt]===Pr;function Ie(i){if(i&&typeof i=="object")switch(i[Lt]){case En:case Pr:return!0}return!1}function $e(i){if(i&&typeof i=="object")switch(i[Lt]){case Ya:case En:case Kt:case Pr:return!0}return!1}const uy=i=>(ve(i)||Ie(i))&&!!i.anchor,dt=Symbol("break visit"),uh=Symbol("skip children"),Vt=Symbol("remove node");function Nn(i,n){const r=ch(n);qn(i)?Er(null,i.contents,r,Object.freeze([i]))===Vt&&(i.contents=null):Er(null,i,r,Object.freeze([]))}Nn.BREAK=dt;Nn.SKIP=uh;Nn.REMOVE=Vt;function Er(i,n,r,l){const o=fh(i,n,r,l);if($e(o)||Ce(o))return dh(i,l,o),Er(i,o,r,l);if(typeof o!="symbol"){if(Ie(n)){l=Object.freeze(l.concat(n));for(let u=0;u<n.items.length;++u){const f=Er(u,n.items[u],r,l);if(typeof f=="number")u=f-1;else{if(f===dt)return dt;f===Vt&&(n.items.splice(u,1),u-=1)}}}else if(Ce(n)){l=Object.freeze(l.concat(n));const u=Er("key",n.key,r,l);if(u===dt)return dt;u===Vt&&(n.key=null);const f=Er("value",n.value,r,l);if(f===dt)return dt;f===Vt&&(n.value=null)}}return o}async function gl(i,n){const r=ch(n);qn(i)?await Nr(null,i.contents,r,Object.freeze([i]))===Vt&&(i.contents=null):await Nr(null,i,r,Object.freeze([]))}gl.BREAK=dt;gl.SKIP=uh;gl.REMOVE=Vt;async function Nr(i,n,r,l){const o=await fh(i,n,r,l);if($e(o)||Ce(o))return dh(i,l,o),Nr(i,o,r,l);if(typeof o!="symbol"){if(Ie(n)){l=Object.freeze(l.concat(n));for(let u=0;u<n.items.length;++u){const f=await Nr(u,n.items[u],r,l);if(typeof f=="number")u=f-1;else{if(f===dt)return dt;f===Vt&&(n.items.splice(u,1),u-=1)}}}else if(Ce(n)){l=Object.freeze(l.concat(n));const u=await Nr("key",n.key,r,l);if(u===dt)return dt;u===Vt&&(n.key=null);const f=await Nr("value",n.value,r,l);if(f===dt)return dt;f===Vt&&(n.value=null)}}return o}function ch(i){return typeof i=="object"&&(i.Collection||i.Node||i.Value)?Object.assign({Alias:i.Node,Map:i.Node,Scalar:i.Node,Seq:i.Node},i.Value&&{Map:i.Value,Scalar:i.Value,Seq:i.Value},i.Collection&&{Map:i.Collection,Seq:i.Collection},i):i}function fh(i,n,r,l){var o,u,f,h,p;if(typeof r=="function")return r(i,n,l);if(Mr(n))return(o=r.Map)==null?void 0:o.call(r,i,n,l);if(jr(n))return(u=r.Seq)==null?void 0:u.call(r,i,n,l);if(Ce(n))return(f=r.Pair)==null?void 0:f.call(r,i,n,l);if(ve(n))return(h=r.Scalar)==null?void 0:h.call(r,i,n,l);if(Wn(n))return(p=r.Alias)==null?void 0:p.call(r,i,n,l)}function dh(i,n,r){const l=n[n.length-1];if(Ie(l))l.items[i]=r;else if(Ce(l))i==="key"?l.key=r:l.value=r;else if(qn(l))l.contents=r;else{const o=Wn(l)?"alias":"scalar";throw new Error(`Cannot replace node with ${o} parent`)}}const cy={"!":"%21",",":"%2C","[":"%5B","]":"%5D","{":"%7B","}":"%7D"},fy=i=>i.replace(/[!,[\]{}]/g,n=>cy[n]);class nt{constructor(n,r){this.docStart=null,this.docEnd=!1,this.yaml=Object.assign({},nt.defaultYaml,n),this.tags=Object.assign({},nt.defaultTags,r)}clone(){const n=new nt(this.yaml,this.tags);return n.docStart=this.docStart,n}atDocument(){const n=new nt(this.yaml,this.tags);switch(this.yaml.version){case"1.1":this.atNextDocument=!0;break;case"1.2":this.atNextDocument=!1,this.yaml={explicit:nt.defaultYaml.explicit,version:"1.2"},this.tags=Object.assign({},nt.defaultTags);break}return n}add(n,r){this.atNextDocument&&(this.yaml={explicit:nt.defaultYaml.explicit,version:"1.1"},this.tags=Object.assign({},nt.defaultTags),this.atNextDocument=!1);const l=n.trim().split(/[ \t]+/),o=l.shift();switch(o){case"%TAG":{if(l.length!==2&&(r(0,"%TAG directive should contain exactly two parts"),l.length<2))return!1;const[u,f]=l;return this.tags[u]=f,!0}case"%YAML":{if(this.yaml.explicit=!0,l.length!==1)return r(0,"%YAML directive should contain exactly one part"),!1;const[u]=l;if(u==="1.1"||u==="1.2")return this.yaml.version=u,!0;{const f=/^\d+\.\d+$/.test(u);return r(6,`Unsupported YAML version ${u}`,f),!1}}default:return r(0,`Unknown directive ${o}`,!0),!1}}tagName(n,r){if(n==="!")return"!";if(n[0]!=="!")return r(`Not a valid tag: ${n}`),null;if(n[1]==="<"){const f=n.slice(2,-1);return f==="!"||f==="!!"?(r(`Verbatim tags aren't resolved, so ${n} is invalid.`),null):(n[n.length-1]!==">"&&r("Verbatim tags must end with a >"),f)}const[,l,o]=n.match(/^(.*!)([^!]*)$/s);o||r(`The ${n} tag has no suffix`);const u=this.tags[l];if(u)try{return u+decodeURIComponent(o)}catch(f){return r(String(f)),null}return l==="!"?n:(r(`Could not resolve tag: ${n}`),null)}tagString(n){for(const[r,l]of Object.entries(this.tags))if(n.startsWith(l))return r+fy(n.substring(l.length));return n[0]==="!"?n:`!<${n}>`}toString(n){const r=this.yaml.explicit?[`%YAML ${this.yaml.version||"1.2"}`]:[],l=Object.entries(this.tags);let o;if(n&&l.length>0&&$e(n.contents)){const u={};Nn(n.contents,(f,h)=>{$e(h)&&h.tag&&(u[h.tag]=!0)}),o=Object.keys(u)}else o=[];for(const[u,f]of l)u==="!!"&&f==="tag:yaml.org,2002:"||(!n||o.some(h=>h.startsWith(f)))&&r.push(`%TAG ${u} ${f}`);return r.join(`
|
|
43
|
+
`)}}nt.defaultYaml={explicit:!1,version:"1.2"};nt.defaultTags={"!!":"tag:yaml.org,2002:"};function hh(i){if(/[\x00-\x19\s,[\]{}]/.test(i)){const r=`Anchor must not contain whitespace or control characters: ${JSON.stringify(i)}`;throw new Error(r)}return!0}function ph(i){const n=new Set;return Nn(i,{Value(r,l){l.anchor&&n.add(l.anchor)}}),n}function mh(i,n){for(let r=1;;++r){const l=`${i}${r}`;if(!n.has(l))return l}}function dy(i,n){const r=[],l=new Map;let o=null;return{onAnchor:u=>{r.push(u),o||(o=ph(i));const f=mh(n,o);return o.add(f),f},setAnchors:()=>{for(const u of r){const f=l.get(u);if(typeof f=="object"&&f.anchor&&(ve(f.node)||Ie(f.node)))f.node.anchor=f.anchor;else{const h=new Error("Failed to resolve repeated object (this should not happen)");throw h.source=u,h}}},sourceObjects:l}}function xr(i,n,r,l){if(l&&typeof l=="object")if(Array.isArray(l))for(let o=0,u=l.length;o<u;++o){const f=l[o],h=xr(i,l,String(o),f);h===void 0?delete l[o]:h!==f&&(l[o]=h)}else if(l instanceof Map)for(const o of Array.from(l.keys())){const u=l.get(o),f=xr(i,l,o,u);f===void 0?l.delete(o):f!==u&&l.set(o,f)}else if(l instanceof Set)for(const o of Array.from(l)){const u=xr(i,l,o,o);u===void 0?l.delete(o):u!==o&&(l.delete(o),l.add(u))}else for(const[o,u]of Object.entries(l)){const f=xr(i,l,o,u);f===void 0?delete l[o]:f!==u&&(l[o]=f)}return i.call(n,r,l)}function Ct(i,n,r){if(Array.isArray(i))return i.map((l,o)=>Ct(l,String(o),r));if(i&&typeof i.toJSON=="function"){if(!r||!uy(i))return i.toJSON(n,r);const l={aliasCount:0,count:1,res:void 0};r.anchors.set(i,l),r.onCreate=u=>{l.res=u,delete r.onCreate};const o=i.toJSON(n,r);return r.onCreate&&r.onCreate(o),o}return typeof i=="bigint"&&!(r!=null&&r.keep)?Number(i):i}class Ga{constructor(n){Object.defineProperty(this,Lt,{value:n})}clone(){const n=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return this.range&&(n.range=this.range.slice()),n}toJS(n,{mapAsMap:r,maxAliasCount:l,onAnchor:o,reviver:u}={}){if(!qn(n))throw new TypeError("A document argument is required");const f={anchors:new Map,doc:n,keep:!0,mapAsMap:r===!0,mapKeyWarned:!1,maxAliasCount:typeof l=="number"?l:100},h=Ct(this,"",f);if(typeof o=="function")for(const{count:p,res:g}of f.anchors.values())o(g,p);return typeof u=="function"?xr(u,{"":h},"",h):h}}class yl extends Ga{constructor(n){super(Ya),this.source=n,Object.defineProperty(this,"tag",{set(){throw new Error("Alias nodes cannot have tags")}})}resolve(n){let r;return Nn(n,{Node:(l,o)=>{if(o===this)return Nn.BREAK;o.anchor===this.source&&(r=o)}}),r}toJSON(n,r){if(!r)return{source:this.source};const{anchors:l,doc:o,maxAliasCount:u}=r,f=this.resolve(o);if(!f){const p=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new ReferenceError(p)}let h=l.get(f);if(h||(Ct(f,null,r),h=l.get(f)),!h||h.res===void 0){const p="This should not happen: Alias anchor was not resolved?";throw new ReferenceError(p)}if(u>=0&&(h.count+=1,h.aliasCount===0&&(h.aliasCount=rl(o,f,l)),h.count*h.aliasCount>u)){const p="Excessive alias count indicates a resource exhaustion attack";throw new ReferenceError(p)}return h.res}toString(n,r,l){const o=`*${this.source}`;if(n){if(hh(this.source),n.options.verifyAliasOrder&&!n.anchors.has(this.source)){const u=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new Error(u)}if(n.implicitKey)return`${o} `}return o}}function rl(i,n,r){if(Wn(n)){const l=n.resolve(i),o=r&&l&&r.get(l);return o?o.count*o.aliasCount:0}else if(Ie(n)){let l=0;for(const o of n.items){const u=rl(i,o,r);u>l&&(l=u)}return l}else if(Ce(n)){const l=rl(i,n.key,r),o=rl(i,n.value,r);return Math.max(l,o)}return 1}const gh=i=>!i||typeof i!="function"&&typeof i!="object";class ie extends Ga{constructor(n){super(Kt),this.value=n}toJSON(n,r){return r!=null&&r.keep?this.value:Ct(this.value,n,r)}toString(){return String(this.value)}}ie.BLOCK_FOLDED="BLOCK_FOLDED";ie.BLOCK_LITERAL="BLOCK_LITERAL";ie.PLAIN="PLAIN";ie.QUOTE_DOUBLE="QUOTE_DOUBLE";ie.QUOTE_SINGLE="QUOTE_SINGLE";const hy="tag:yaml.org,2002:";function py(i,n,r){if(n){const l=r.filter(u=>u.tag===n),o=l.find(u=>!u.format)??l[0];if(!o)throw new Error(`Tag ${n} not found`);return o}return r.find(l=>{var o;return((o=l.identify)==null?void 0:o.call(l,i))&&!l.format})}function Os(i,n,r){var S,T,E;if(qn(i)&&(i=i.contents),$e(i))return i;if(Ce(i)){const O=(T=(S=r.schema[En]).createNode)==null?void 0:T.call(S,r.schema,null,r);return O.items.push(i),O}(i instanceof String||i instanceof Number||i instanceof Boolean||typeof BigInt<"u"&&i instanceof BigInt)&&(i=i.valueOf());const{aliasDuplicateObjects:l,onAnchor:o,onTagObj:u,schema:f,sourceObjects:h}=r;let p;if(l&&i&&typeof i=="object"){if(p=h.get(i),p)return p.anchor||(p.anchor=o(i)),new yl(p.anchor);p={anchor:null,node:null},h.set(i,p)}n!=null&&n.startsWith("!!")&&(n=hy+n.slice(2));let g=py(i,n,f.tags);if(!g){if(i&&typeof i.toJSON=="function"&&(i=i.toJSON()),!i||typeof i!="object"){const O=new ie(i);return p&&(p.node=O),O}g=i instanceof Map?f[En]:Symbol.iterator in Object(i)?f[Pr]:f[En]}u&&(u(g),delete r.onTagObj);const x=g!=null&&g.createNode?g.createNode(r.schema,i,r):typeof((E=g==null?void 0:g.nodeClass)==null?void 0:E.from)=="function"?g.nodeClass.from(r.schema,i,r):new ie(i);return n?x.tag=n:g.default||(x.tag=g.tag),p&&(p.node=x),x}function al(i,n,r){let l=r;for(let o=n.length-1;o>=0;--o){const u=n[o];if(typeof u=="number"&&Number.isInteger(u)&&u>=0){const f=[];f[u]=l,l=f}else l=new Map([[u,l]])}return Os(l,void 0,{aliasDuplicateObjects:!1,keepUndefined:!1,onAnchor:()=>{throw new Error("This should not happen, please report a bug.")},schema:i,sourceObjects:new Map})}const Cs=i=>i==null||typeof i=="object"&&!!i[Symbol.iterator]().next().done;class yh extends Ga{constructor(n,r){super(n),Object.defineProperty(this,"schema",{value:r,configurable:!0,enumerable:!1,writable:!0})}clone(n){const r=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return n&&(r.schema=n),r.items=r.items.map(l=>$e(l)||Ce(l)?l.clone(n):l),this.range&&(r.range=this.range.slice()),r}addIn(n,r){if(Cs(n))this.add(r);else{const[l,...o]=n,u=this.get(l,!0);if(Ie(u))u.addIn(o,r);else if(u===void 0&&this.schema)this.set(l,al(this.schema,o,r));else throw new Error(`Expected YAML collection at ${l}. Remaining path: ${o}`)}}deleteIn(n){const[r,...l]=n;if(l.length===0)return this.delete(r);const o=this.get(r,!0);if(Ie(o))return o.deleteIn(l);throw new Error(`Expected YAML collection at ${r}. Remaining path: ${l}`)}getIn(n,r){const[l,...o]=n,u=this.get(l,!0);return o.length===0?!r&&ve(u)?u.value:u:Ie(u)?u.getIn(o,r):void 0}hasAllNullValues(n){return this.items.every(r=>{if(!Ce(r))return!1;const l=r.value;return l==null||n&&ve(l)&&l.value==null&&!l.commentBefore&&!l.comment&&!l.tag})}hasIn(n){const[r,...l]=n;if(l.length===0)return this.has(r);const o=this.get(r,!0);return Ie(o)?o.hasIn(l):!1}setIn(n,r){const[l,...o]=n;if(o.length===0)this.set(l,r);else{const u=this.get(l,!0);if(Ie(u))u.setIn(o,r);else if(u===void 0&&this.schema)this.set(l,al(this.schema,o,r));else throw new Error(`Expected YAML collection at ${l}. Remaining path: ${o}`)}}}const my=i=>i.replace(/^(?!$)(?: $)?/gm,"#");function en(i,n){return/^\n+$/.test(i)?i.substring(1):n?i.replace(/^(?! *$)/gm,n):i}const Bn=(i,n,r)=>i.endsWith(`
|
|
44
|
+
`)?en(r,n):r.includes(`
|
|
45
|
+
`)?`
|
|
46
|
+
`+en(r,n):(i.endsWith(" ")?"":" ")+r,vh="flow",Va="block",sl="quoted";function vl(i,n,r="flow",{indentAtStart:l,lineWidth:o=80,minContentWidth:u=20,onFold:f,onOverflow:h}={}){if(!o||o<0)return i;o<u&&(u=0);const p=Math.max(1+u,1+o-n.length);if(i.length<=p)return i;const g=[],x={};let S=o-n.length;typeof l=="number"&&(l>o-Math.max(2,u)?g.push(0):S=o-l);let T,E,O=!1,v=-1,w=-1,$=-1;r===Va&&(v=_d(i,v,n.length),v!==-1&&(S=v+p));for(let B;B=i[v+=1];){if(r===sl&&B==="\\"){switch(w=v,i[v+1]){case"x":v+=3;break;case"u":v+=5;break;case"U":v+=9;break;default:v+=1}$=v}if(B===`
|
|
47
|
+
`)r===Va&&(v=_d(i,v,n.length)),S=v+n.length+p,T=void 0;else{if(B===" "&&E&&E!==" "&&E!==`
|
|
48
|
+
`&&E!==" "){const V=i[v+1];V&&V!==" "&&V!==`
|
|
49
|
+
`&&V!==" "&&(T=v)}if(v>=S)if(T)g.push(T),S=T+p,T=void 0;else if(r===sl){for(;E===" "||E===" ";)E=B,B=i[v+=1],O=!0;const V=v>$+1?v-2:w-1;if(x[V])return i;g.push(V),x[V]=!0,S=V+p,T=void 0}else O=!0}E=B}if(O&&h&&h(),g.length===0)return i;f&&f();let A=i.slice(0,g[0]);for(let B=0;B<g.length;++B){const V=g[B],W=g[B+1]||i.length;V===0?A=`
|
|
50
|
+
${n}${i.slice(0,W)}`:(r===sl&&x[V]&&(A+=`${i[V]}\\`),A+=`
|
|
51
|
+
${n}${i.slice(V+1,W)}`)}return A}function _d(i,n,r){let l=n,o=n+1,u=i[o];for(;u===" "||u===" ";)if(n<o+r)u=i[++n];else{do u=i[++n];while(u&&u!==`
|
|
52
|
+
`);l=n,o=n+1,u=i[o]}return l}const wl=(i,n)=>({indentAtStart:n?i.indent.length:i.indentAtStart,lineWidth:i.options.lineWidth,minContentWidth:i.options.minContentWidth}),Sl=i=>/^(%|---|\.\.\.)/m.test(i);function gy(i,n,r){if(!n||n<0)return!1;const l=n-r,o=i.length;if(o<=l)return!1;for(let u=0,f=0;u<o;++u)if(i[u]===`
|
|
53
|
+
`){if(u-f>l)return!0;if(f=u+1,o-f<=l)return!1}return!0}function Ls(i,n){const r=JSON.stringify(i);if(n.options.doubleQuotedAsJSON)return r;const{implicitKey:l}=n,o=n.options.doubleQuotedMinMultiLineLength,u=n.indent||(Sl(i)?" ":"");let f="",h=0;for(let p=0,g=r[p];g;g=r[++p])if(g===" "&&r[p+1]==="\\"&&r[p+2]==="n"&&(f+=r.slice(h,p)+"\\ ",p+=1,h=p,g="\\"),g==="\\")switch(r[p+1]){case"u":{f+=r.slice(h,p);const x=r.substr(p+2,4);switch(x){case"0000":f+="\\0";break;case"0007":f+="\\a";break;case"000b":f+="\\v";break;case"001b":f+="\\e";break;case"0085":f+="\\N";break;case"00a0":f+="\\_";break;case"2028":f+="\\L";break;case"2029":f+="\\P";break;default:x.substr(0,2)==="00"?f+="\\x"+x.substr(2):f+=r.substr(p,6)}p+=5,h=p+1}break;case"n":if(l||r[p+2]==='"'||r.length<o)p+=1;else{for(f+=r.slice(h,p)+`
|
|
54
|
+
|
|
55
|
+
`;r[p+2]==="\\"&&r[p+3]==="n"&&r[p+4]!=='"';)f+=`
|
|
56
|
+
`,p+=2;f+=u,r[p+2]===" "&&(f+="\\"),p+=1,h=p+1}break;default:p+=1}return f=h?f+r.slice(h):r,l?f:vl(f,u,sl,wl(n,!1))}function Ka(i,n){if(n.options.singleQuote===!1||n.implicitKey&&i.includes(`
|
|
57
|
+
`)||/[ \t]\n|\n[ \t]/.test(i))return Ls(i,n);const r=n.indent||(Sl(i)?" ":""),l="'"+i.replace(/'/g,"''").replace(/\n+/g,`$&
|
|
58
|
+
${r}`)+"'";return n.implicitKey?l:vl(l,r,vh,wl(n,!1))}function Tr(i,n){const{singleQuote:r}=n.options;let l;if(r===!1)l=Ls;else{const o=i.includes('"'),u=i.includes("'");o&&!u?l=Ka:u&&!o?l=Ls:l=r?Ka:Ls}return l(i,n)}let Wa;try{Wa=new RegExp(`(^|(?<!
|
|
59
|
+
))
|
|
60
|
+
+(?!
|
|
61
|
+
|$)`,"g")}catch{Wa=/\n+(?!\n|$)/g}function il({comment:i,type:n,value:r},l,o,u){const{blockQuote:f,commentString:h,lineWidth:p}=l.options;if(!f||/\n[\t ]+$/.test(r)||/^\s*$/.test(r))return Tr(r,l);const g=l.indent||(l.forceBlockIndent||Sl(r)?" ":""),x=f==="literal"?!0:f==="folded"||n===ie.BLOCK_FOLDED?!1:n===ie.BLOCK_LITERAL?!0:!gy(r,p,g.length);if(!r)return x?`|
|
|
62
|
+
`:`>
|
|
63
|
+
`;let S,T;for(T=r.length;T>0;--T){const j=r[T-1];if(j!==`
|
|
64
|
+
`&&j!==" "&&j!==" ")break}let E=r.substring(T);const O=E.indexOf(`
|
|
65
|
+
`);O===-1?S="-":r===E||O!==E.length-1?(S="+",u&&u()):S="",E&&(r=r.slice(0,-E.length),E[E.length-1]===`
|
|
66
|
+
`&&(E=E.slice(0,-1)),E=E.replace(Wa,`$&${g}`));let v=!1,w,$=-1;for(w=0;w<r.length;++w){const j=r[w];if(j===" ")v=!0;else if(j===`
|
|
67
|
+
`)$=w;else break}let A=r.substring(0,$<w?$+1:w);A&&(r=r.substring(A.length),A=A.replace(/\n+/g,`$&${g}`));let V=(x?"|":">")+(v?g?"2":"1":"")+S;if(i&&(V+=" "+h(i.replace(/ ?[\r\n]+/g," ")),o&&o()),x)return r=r.replace(/\n+/g,`$&${g}`),`${V}
|
|
68
|
+
${g}${A}${r}${E}`;r=r.replace(/\n+/g,`
|
|
69
|
+
$&`).replace(/(?:^|\n)([\t ].*)(?:([\n\t ]*)\n(?![\n\t ]))?/g,"$1$2").replace(/\n+/g,`$&${g}`);const W=vl(`${A}${r}${E}`,g,Va,wl(l,!0));return`${V}
|
|
70
|
+
${g}${W}`}function yy(i,n,r,l){const{type:o,value:u}=i,{actualString:f,implicitKey:h,indent:p,indentStep:g,inFlow:x}=n;if(h&&u.includes(`
|
|
71
|
+
`)||x&&/[[\]{},]/.test(u))return Tr(u,n);if(!u||/^[\n\t ,[\]{}#&*!|>'"%@`]|^[?-]$|^[?-][ \t]|[\n:][ \t]|[ \t]\n|[\n\t ]#|[\n\t :]$/.test(u))return h||x||!u.includes(`
|
|
72
|
+
`)?Tr(u,n):il(i,n,r,l);if(!h&&!x&&o!==ie.PLAIN&&u.includes(`
|
|
73
|
+
`))return il(i,n,r,l);if(Sl(u)){if(p==="")return n.forceBlockIndent=!0,il(i,n,r,l);if(h&&p===g)return Tr(u,n)}const S=u.replace(/\n+/g,`$&
|
|
74
|
+
${p}`);if(f){const T=v=>{var w;return v.default&&v.tag!=="tag:yaml.org,2002:str"&&((w=v.test)==null?void 0:w.test(S))},{compat:E,tags:O}=n.doc.schema;if(O.some(T)||E!=null&&E.some(T))return Tr(u,n)}return h?S:vl(S,p,vh,wl(n,!1))}function Ps(i,n,r,l){const{implicitKey:o,inFlow:u}=n,f=typeof i.value=="string"?i:Object.assign({},i,{value:String(i.value)});let{type:h}=i;h!==ie.QUOTE_DOUBLE&&/[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(f.value)&&(h=ie.QUOTE_DOUBLE);const p=x=>{switch(x){case ie.BLOCK_FOLDED:case ie.BLOCK_LITERAL:return o||u?Tr(f.value,n):il(f,n,r,l);case ie.QUOTE_DOUBLE:return Ls(f.value,n);case ie.QUOTE_SINGLE:return Ka(f.value,n);case ie.PLAIN:return yy(f,n,r,l);default:return null}};let g=p(h);if(g===null){const{defaultKeyType:x,defaultStringType:S}=n.options,T=o&&x||S;if(g=p(T),g===null)throw new Error(`Unsupported default string type ${T}`)}return g}function wh(i,n){const r=Object.assign({blockQuote:!0,commentString:my,defaultKeyType:null,defaultStringType:"PLAIN",directives:null,doubleQuotedAsJSON:!1,doubleQuotedMinMultiLineLength:40,falseStr:"false",flowCollectionPadding:!0,indentSeq:!0,lineWidth:80,minContentWidth:20,nullStr:"null",simpleKeys:!1,singleQuote:null,trueStr:"true",verifyAliasOrder:!0},i.schema.toStringOptions,n);let l;switch(r.collectionStyle){case"block":l=!1;break;case"flow":l=!0;break;default:l=null}return{anchors:new Set,doc:i,flowCollectionPadding:r.flowCollectionPadding?" ":"",indent:"",indentStep:typeof r.indent=="number"?" ".repeat(r.indent):" ",inFlow:l,options:r}}function vy(i,n){var o;if(n.tag){const u=i.filter(f=>f.tag===n.tag);if(u.length>0)return u.find(f=>f.format===n.format)??u[0]}let r,l;if(ve(n)){l=n.value;let u=i.filter(f=>{var h;return(h=f.identify)==null?void 0:h.call(f,l)});if(u.length>1){const f=u.filter(h=>h.test);f.length>0&&(u=f)}r=u.find(f=>f.format===n.format)??u.find(f=>!f.format)}else l=n,r=i.find(u=>u.nodeClass&&l instanceof u.nodeClass);if(!r){const u=((o=l==null?void 0:l.constructor)==null?void 0:o.name)??typeof l;throw new Error(`Tag not resolved for ${u} value`)}return r}function wy(i,n,{anchors:r,doc:l}){if(!l.directives)return"";const o=[],u=(ve(i)||Ie(i))&&i.anchor;u&&hh(u)&&(r.add(u),o.push(`&${u}`));const f=i.tag?i.tag:n.default?null:n.tag;return f&&o.push(l.directives.tagString(f)),o.join(" ")}function Or(i,n,r,l){var p;if(Ce(i))return i.toString(n,r,l);if(Wn(i)){if(n.doc.directives)return i.toString(n);if((p=n.resolvedAliases)!=null&&p.has(i))throw new TypeError("Cannot stringify circular structure without alias nodes");n.resolvedAliases?n.resolvedAliases.add(i):n.resolvedAliases=new Set([i]),i=i.resolve(n.doc)}let o;const u=$e(i)?i:n.doc.createNode(i,{onTagObj:g=>o=g});o||(o=vy(n.doc.schema.tags,u));const f=wy(u,o,n);f.length>0&&(n.indentAtStart=(n.indentAtStart??0)+f.length+1);const h=typeof o.stringify=="function"?o.stringify(u,n,r,l):ve(u)?Ps(u,n,r,l):u.toString(n,r,l);return f?ve(u)||h[0]==="{"||h[0]==="["?`${f} ${h}`:`${f}
|
|
75
|
+
${n.indent}${h}`:h}function Sy({key:i,value:n},r,l,o){const{allNullValues:u,doc:f,indent:h,indentStep:p,options:{commentString:g,indentSeq:x,simpleKeys:S}}=r;let T=$e(i)&&i.comment||null;if(S){if(T)throw new Error("With simple keys, key nodes cannot have comments");if(Ie(i)||!$e(i)&&typeof i=="object"){const Y="With simple keys, collection cannot be used as a key value";throw new Error(Y)}}let E=!S&&(!i||T&&n==null&&!r.inFlow||Ie(i)||(ve(i)?i.type===ie.BLOCK_FOLDED||i.type===ie.BLOCK_LITERAL:typeof i=="object"));r=Object.assign({},r,{allNullValues:!1,implicitKey:!E&&(S||!u),indent:h+p});let O=!1,v=!1,w=Or(i,r,()=>O=!0,()=>v=!0);if(!E&&!r.inFlow&&w.length>1024){if(S)throw new Error("With simple keys, single line scalar must not span more than 1024 characters");E=!0}if(r.inFlow){if(u||n==null)return O&&l&&l(),w===""?"?":E?`? ${w}`:w}else if(u&&!S||n==null&&E)return w=`? ${w}`,T&&!O?w+=Bn(w,r.indent,g(T)):v&&o&&o(),w;O&&(T=null),E?(T&&(w+=Bn(w,r.indent,g(T))),w=`? ${w}
|
|
76
|
+
${h}:`):(w=`${w}:`,T&&(w+=Bn(w,r.indent,g(T))));let $,A,B;$e(n)?($=!!n.spaceBefore,A=n.commentBefore,B=n.comment):($=!1,A=null,B=null,n&&typeof n=="object"&&(n=f.createNode(n))),r.implicitKey=!1,!E&&!T&&ve(n)&&(r.indentAtStart=w.length+1),v=!1,!x&&p.length>=2&&!r.inFlow&&!E&&jr(n)&&!n.flow&&!n.tag&&!n.anchor&&(r.indent=r.indent.substring(2));let V=!1;const W=Or(n,r,()=>V=!0,()=>v=!0);let j=" ";if(T||$||A){if(j=$?`
|
|
77
|
+
`:"",A){const Y=g(A);j+=`
|
|
78
|
+
${en(Y,r.indent)}`}W===""&&!r.inFlow?j===`
|
|
79
|
+
`&&(j=`
|
|
80
|
+
|
|
81
|
+
`):j+=`
|
|
82
|
+
${r.indent}`}else if(!E&&Ie(n)){const Y=W[0],z=W.indexOf(`
|
|
83
|
+
`),P=z!==-1,le=r.inFlow??n.flow??n.items.length===0;if(P||!le){let ue=!1;if(P&&(Y==="&"||Y==="!")){let M=W.indexOf(" ");Y==="&"&&M!==-1&&M<z&&W[M+1]==="!"&&(M=W.indexOf(" ",M+1)),(M===-1||z<M)&&(ue=!0)}ue||(j=`
|
|
84
|
+
${r.indent}`)}}else(W===""||W[0]===`
|
|
85
|
+
`)&&(j="");return w+=j+W,r.inFlow?V&&l&&l():B&&!V?w+=Bn(w,r.indent,g(B)):v&&o&&o(),w}function Sh(i,n){(i==="debug"||i==="warn")&&(typeof process<"u"&&process.emitWarning?process.emitWarning(n):console.warn(n))}const Hi="<<",tn={identify:i=>i===Hi||typeof i=="symbol"&&i.description===Hi,default:"key",tag:"tag:yaml.org,2002:merge",test:/^<<$/,resolve:()=>Object.assign(new ie(Symbol(Hi)),{addToJSMap:kh}),stringify:()=>Hi},ky=(i,n)=>(tn.identify(n)||ve(n)&&(!n.type||n.type===ie.PLAIN)&&tn.identify(n.value))&&(i==null?void 0:i.doc.schema.tags.some(r=>r.tag===tn.tag&&r.default));function kh(i,n,r){if(r=i&&Wn(r)?r.resolve(i.doc):r,jr(r))for(const l of r.items)$a(i,n,l);else if(Array.isArray(r))for(const l of r)$a(i,n,l);else $a(i,n,r)}function $a(i,n,r){const l=i&&Wn(r)?r.resolve(i.doc):r;if(!Mr(l))throw new Error("Merge sources must be maps or map aliases");const o=l.toJSON(null,i,Map);for(const[u,f]of o)n instanceof Map?n.has(u)||n.set(u,f):n instanceof Set?n.add(u):Object.prototype.hasOwnProperty.call(n,u)||Object.defineProperty(n,u,{value:f,writable:!0,enumerable:!0,configurable:!0});return n}function Eh(i,n,{key:r,value:l}){if($e(r)&&r.addToJSMap)r.addToJSMap(i,n,l);else if(ky(i,r))kh(i,n,l);else{const o=Ct(r,"",i);if(n instanceof Map)n.set(o,Ct(l,o,i));else if(n instanceof Set)n.add(o);else{const u=Ey(r,o,i),f=Ct(l,u,i);u in n?Object.defineProperty(n,u,{value:f,writable:!0,enumerable:!0,configurable:!0}):n[u]=f}}return n}function Ey(i,n,r){if(n===null)return"";if(typeof n!="object")return String(n);if($e(i)&&(r!=null&&r.doc)){const l=wh(r.doc,{});l.anchors=new Set;for(const u of r.anchors.keys())l.anchors.add(u.anchor);l.inFlow=!0,l.inStringifyKey=!0;const o=i.toString(l);if(!r.mapKeyWarned){let u=JSON.stringify(o);u.length>40&&(u=u.substring(0,36)+'..."'),Sh(r.doc.options.logLevel,`Keys with collection values will be stringified due to JS Object restrictions: ${u}. Set mapAsMap: true to use object keys.`),r.mapKeyWarned=!0}return o}return JSON.stringify(n)}function Xa(i,n,r){const l=Os(i,void 0,r),o=Os(n,void 0,r);return new Ze(l,o)}class Ze{constructor(n,r=null){Object.defineProperty(this,Lt,{value:ah}),this.key=n,this.value=r}clone(n){let{key:r,value:l}=this;return $e(r)&&(r=r.clone(n)),$e(l)&&(l=l.clone(n)),new Ze(r,l)}toJSON(n,r){const l=r!=null&&r.mapAsMap?new Map:{};return Eh(r,l,this)}toString(n,r,l){return n!=null&&n.doc?Sy(this,n,r,l):JSON.stringify(this)}}function Nh(i,n,r){return(n.inFlow??i.flow?xy:Ny)(i,n,r)}function Ny({comment:i,items:n},r,{blockItemPrefix:l,flowChars:o,itemIndent:u,onChompKeep:f,onComment:h}){const{indent:p,options:{commentString:g}}=r,x=Object.assign({},r,{indent:u,type:null});let S=!1;const T=[];for(let O=0;O<n.length;++O){const v=n[O];let w=null;if($e(v))!S&&v.spaceBefore&&T.push(""),ul(r,T,v.commentBefore,S),v.comment&&(w=v.comment);else if(Ce(v)){const A=$e(v.key)?v.key:null;A&&(!S&&A.spaceBefore&&T.push(""),ul(r,T,A.commentBefore,S))}S=!1;let $=Or(v,x,()=>w=null,()=>S=!0);w&&($+=Bn($,u,g(w))),S&&w&&(S=!1),T.push(l+$)}let E;if(T.length===0)E=o.start+o.end;else{E=T[0];for(let O=1;O<T.length;++O){const v=T[O];E+=v?`
|
|
86
|
+
${p}${v}`:`
|
|
87
|
+
`}}return i?(E+=`
|
|
88
|
+
`+en(g(i),p),h&&h()):S&&f&&f(),E}function xy({items:i},n,{flowChars:r,itemIndent:l}){const{indent:o,indentStep:u,flowCollectionPadding:f,options:{commentString:h}}=n;l+=u;const p=Object.assign({},n,{indent:l,inFlow:!0,type:null});let g=!1,x=0;const S=[];for(let O=0;O<i.length;++O){const v=i[O];let w=null;if($e(v))v.spaceBefore&&S.push(""),ul(n,S,v.commentBefore,!1),v.comment&&(w=v.comment);else if(Ce(v)){const A=$e(v.key)?v.key:null;A&&(A.spaceBefore&&S.push(""),ul(n,S,A.commentBefore,!1),A.comment&&(g=!0));const B=$e(v.value)?v.value:null;B?(B.comment&&(w=B.comment),B.commentBefore&&(g=!0)):v.value==null&&(A!=null&&A.comment)&&(w=A.comment)}w&&(g=!0);let $=Or(v,p,()=>w=null);O<i.length-1&&($+=","),w&&($+=Bn($,l,h(w))),!g&&(S.length>x||$.includes(`
|
|
89
|
+
`))&&(g=!0),S.push($),x=S.length}const{start:T,end:E}=r;if(S.length===0)return T+E;if(!g){const O=S.reduce((v,w)=>v+w.length+2,2);g=n.options.lineWidth>0&&O>n.options.lineWidth}if(g){let O=T;for(const v of S)O+=v?`
|
|
90
|
+
${u}${o}${v}`:`
|
|
91
|
+
`;return`${O}
|
|
92
|
+
${o}${E}`}else return`${T}${f}${S.join(" ")}${f}${E}`}function ul({indent:i,options:{commentString:n}},r,l,o){if(l&&o&&(l=l.replace(/^\n+/,"")),l){const u=en(n(l),i);r.push(u.trimStart())}}function zn(i,n){const r=ve(n)?n.value:n;for(const l of i)if(Ce(l)&&(l.key===n||l.key===r||ve(l.key)&&l.key.value===r))return l}class wt extends yh{static get tagName(){return"tag:yaml.org,2002:map"}constructor(n){super(En,n),this.items=[]}static from(n,r,l){const{keepUndefined:o,replacer:u}=l,f=new this(n),h=(p,g)=>{if(typeof u=="function")g=u.call(r,p,g);else if(Array.isArray(u)&&!u.includes(p))return;(g!==void 0||o)&&f.items.push(Xa(p,g,l))};if(r instanceof Map)for(const[p,g]of r)h(p,g);else if(r&&typeof r=="object")for(const p of Object.keys(r))h(p,r[p]);return typeof n.sortMapEntries=="function"&&f.items.sort(n.sortMapEntries),f}add(n,r){var f;let l;Ce(n)?l=n:!n||typeof n!="object"||!("key"in n)?l=new Ze(n,n==null?void 0:n.value):l=new Ze(n.key,n.value);const o=zn(this.items,l.key),u=(f=this.schema)==null?void 0:f.sortMapEntries;if(o){if(!r)throw new Error(`Key ${l.key} already set`);ve(o.value)&&gh(l.value)?o.value.value=l.value:o.value=l.value}else if(u){const h=this.items.findIndex(p=>u(l,p)<0);h===-1?this.items.push(l):this.items.splice(h,0,l)}else this.items.push(l)}delete(n){const r=zn(this.items,n);return r?this.items.splice(this.items.indexOf(r),1).length>0:!1}get(n,r){const l=zn(this.items,n),o=l==null?void 0:l.value;return(!r&&ve(o)?o.value:o)??void 0}has(n){return!!zn(this.items,n)}set(n,r){this.add(new Ze(n,r),!0)}toJSON(n,r,l){const o=l?new l:r!=null&&r.mapAsMap?new Map:{};r!=null&&r.onCreate&&r.onCreate(o);for(const u of this.items)Eh(r,o,u);return o}toString(n,r,l){if(!n)return JSON.stringify(this);for(const o of this.items)if(!Ce(o))throw new Error(`Map items must all be pairs; found ${JSON.stringify(o)} instead`);return!n.allNullValues&&this.hasAllNullValues(!1)&&(n=Object.assign({},n,{allNullValues:!0})),Nh(this,n,{blockItemPrefix:"",flowChars:{start:"{",end:"}"},itemIndent:n.indent||"",onChompKeep:l,onComment:r})}}const Rr={collection:"map",default:!0,nodeClass:wt,tag:"tag:yaml.org,2002:map",resolve(i,n){return Mr(i)||n("Expected a mapping for this tag"),i},createNode:(i,n,r)=>wt.from(i,n,r)};class xn extends yh{static get tagName(){return"tag:yaml.org,2002:seq"}constructor(n){super(Pr,n),this.items=[]}add(n){this.items.push(n)}delete(n){const r=Qi(n);return typeof r!="number"?!1:this.items.splice(r,1).length>0}get(n,r){const l=Qi(n);if(typeof l!="number")return;const o=this.items[l];return!r&&ve(o)?o.value:o}has(n){const r=Qi(n);return typeof r=="number"&&r<this.items.length}set(n,r){const l=Qi(n);if(typeof l!="number")throw new Error(`Expected a valid index, not ${n}.`);const o=this.items[l];ve(o)&&gh(r)?o.value=r:this.items[l]=r}toJSON(n,r){const l=[];r!=null&&r.onCreate&&r.onCreate(l);let o=0;for(const u of this.items)l.push(Ct(u,String(o++),r));return l}toString(n,r,l){return n?Nh(this,n,{blockItemPrefix:"- ",flowChars:{start:"[",end:"]"},itemIndent:(n.indent||"")+" ",onChompKeep:l,onComment:r}):JSON.stringify(this)}static from(n,r,l){const{replacer:o}=l,u=new this(n);if(r&&Symbol.iterator in Object(r)){let f=0;for(let h of r){if(typeof o=="function"){const p=r instanceof Set?h:String(f++);h=o.call(r,p,h)}u.items.push(Os(h,void 0,l))}}return u}}function Qi(i){let n=ve(i)?i.value:i;return n&&typeof n=="string"&&(n=Number(n)),typeof n=="number"&&Number.isInteger(n)&&n>=0?n:null}const Dr={collection:"seq",default:!0,nodeClass:xn,tag:"tag:yaml.org,2002:seq",resolve(i,n){return jr(i)||n("Expected a sequence for this tag"),i},createNode:(i,n,r)=>xn.from(i,n,r)},kl={identify:i=>typeof i=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:i=>i,stringify(i,n,r,l){return n=Object.assign({actualString:!0},n),Ps(i,n,r,l)}},El={identify:i=>i==null,createNode:()=>new ie(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^(?:~|[Nn]ull|NULL)?$/,resolve:()=>new ie(null),stringify:({source:i},n)=>typeof i=="string"&&El.test.test(i)?i:n.options.nullStr},Za={identify:i=>typeof i=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:[Tt]rue|TRUE|[Ff]alse|FALSE)$/,resolve:i=>new ie(i[0]==="t"||i[0]==="T"),stringify({source:i,value:n},r){if(i&&Za.test.test(i)){const l=i[0]==="t"||i[0]==="T";if(n===l)return i}return n?r.options.trueStr:r.options.falseStr}};function Dt({format:i,minFractionDigits:n,tag:r,value:l}){if(typeof l=="bigint")return String(l);const o=typeof l=="number"?l:Number(l);if(!isFinite(o))return isNaN(o)?".nan":o<0?"-.inf":".inf";let u=JSON.stringify(l);if(!i&&n&&(!r||r==="tag:yaml.org,2002:float")&&/^\d/.test(u)){let f=u.indexOf(".");f<0&&(f=u.length,u+=".");let h=n-(u.length-f-1);for(;h-- >0;)u+="0"}return u}const xh={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:i=>i.slice(-3).toLowerCase()==="nan"?NaN:i[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:Dt},Th={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:\.[0-9]+|[0-9]+(?:\.[0-9]*)?)[eE][-+]?[0-9]+$/,resolve:i=>parseFloat(i),stringify(i){const n=Number(i.value);return isFinite(n)?n.toExponential():Dt(i)}},_h={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:\.[0-9]+|[0-9]+\.[0-9]*)$/,resolve(i){const n=new ie(parseFloat(i)),r=i.indexOf(".");return r!==-1&&i[i.length-1]==="0"&&(n.minFractionDigits=i.length-r-1),n},stringify:Dt},Nl=i=>typeof i=="bigint"||Number.isInteger(i),eu=(i,n,r,{intAsBigInt:l})=>l?BigInt(i):parseInt(i.substring(n),r);function Ch(i,n,r){const{value:l}=i;return Nl(l)&&l>=0?r+l.toString(n):Dt(i)}const Lh={identify:i=>Nl(i)&&i>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^0o[0-7]+$/,resolve:(i,n,r)=>eu(i,2,8,r),stringify:i=>Ch(i,8,"0o")},Oh={identify:Nl,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9]+$/,resolve:(i,n,r)=>eu(i,0,10,r),stringify:Dt},Ih={identify:i=>Nl(i)&&i>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^0x[0-9a-fA-F]+$/,resolve:(i,n,r)=>eu(i,2,16,r),stringify:i=>Ch(i,16,"0x")},Ty=[Rr,Dr,kl,El,Za,Lh,Oh,Ih,xh,Th,_h];function Cd(i){return typeof i=="bigint"||Number.isInteger(i)}const Ji=({value:i})=>JSON.stringify(i),_y=[{identify:i=>typeof i=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:i=>i,stringify:Ji},{identify:i=>i==null,createNode:()=>new ie(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^null$/,resolve:()=>null,stringify:Ji},{identify:i=>typeof i=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^true|false$/,resolve:i=>i==="true",stringify:Ji},{identify:Cd,default:!0,tag:"tag:yaml.org,2002:int",test:/^-?(?:0|[1-9][0-9]*)$/,resolve:(i,n,{intAsBigInt:r})=>r?BigInt(i):parseInt(i,10),stringify:({value:i})=>Cd(i)?i.toString():JSON.stringify(i)},{identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^-?(?:0|[1-9][0-9]*)(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?$/,resolve:i=>parseFloat(i),stringify:Ji}],Cy={default:!0,tag:"",test:/^/,resolve(i,n){return n(`Unresolved plain scalar ${JSON.stringify(i)}`),i}},Ly=[Rr,Dr].concat(_y,Cy),tu={identify:i=>i instanceof Uint8Array,default:!1,tag:"tag:yaml.org,2002:binary",resolve(i,n){if(typeof Buffer=="function")return Buffer.from(i,"base64");if(typeof atob=="function"){const r=atob(i.replace(/[\n\r]/g,"")),l=new Uint8Array(r.length);for(let o=0;o<r.length;++o)l[o]=r.charCodeAt(o);return l}else return n("This environment does not support reading binary tags; either Buffer or atob is required"),i},stringify({comment:i,type:n,value:r},l,o,u){const f=r;let h;if(typeof Buffer=="function")h=f instanceof Buffer?f.toString("base64"):Buffer.from(f.buffer).toString("base64");else if(typeof btoa=="function"){let p="";for(let g=0;g<f.length;++g)p+=String.fromCharCode(f[g]);h=btoa(p)}else throw new Error("This environment does not support writing binary tags; either Buffer or btoa is required");if(n||(n=ie.BLOCK_LITERAL),n!==ie.QUOTE_DOUBLE){const p=Math.max(l.options.lineWidth-l.indent.length,l.options.minContentWidth),g=Math.ceil(h.length/p),x=new Array(g);for(let S=0,T=0;S<g;++S,T+=p)x[S]=h.substr(T,p);h=x.join(n===ie.BLOCK_LITERAL?`
|
|
93
|
+
`:" ")}return Ps({comment:i,type:n,value:h},l,o,u)}};function $h(i,n){if(jr(i))for(let r=0;r<i.items.length;++r){let l=i.items[r];if(!Ce(l)){if(Mr(l)){l.items.length>1&&n("Each pair must have its own sequence indicator");const o=l.items[0]||new Ze(new ie(null));if(l.commentBefore&&(o.key.commentBefore=o.key.commentBefore?`${l.commentBefore}
|
|
94
|
+
${o.key.commentBefore}`:l.commentBefore),l.comment){const u=o.value??o.key;u.comment=u.comment?`${l.comment}
|
|
95
|
+
${u.comment}`:l.comment}l=o}i.items[r]=Ce(l)?l:new Ze(l)}}else n("Expected a sequence for this tag");return i}function Ah(i,n,r){const{replacer:l}=r,o=new xn(i);o.tag="tag:yaml.org,2002:pairs";let u=0;if(n&&Symbol.iterator in Object(n))for(let f of n){typeof l=="function"&&(f=l.call(n,String(u++),f));let h,p;if(Array.isArray(f))if(f.length===2)h=f[0],p=f[1];else throw new TypeError(`Expected [key, value] tuple: ${f}`);else if(f&&f instanceof Object){const g=Object.keys(f);if(g.length===1)h=g[0],p=f[h];else throw new TypeError(`Expected tuple with one key, not ${g.length} keys`)}else h=f;o.items.push(Xa(h,p,r))}return o}const nu={collection:"seq",default:!1,tag:"tag:yaml.org,2002:pairs",resolve:$h,createNode:Ah};class Cr extends xn{constructor(){super(),this.add=wt.prototype.add.bind(this),this.delete=wt.prototype.delete.bind(this),this.get=wt.prototype.get.bind(this),this.has=wt.prototype.has.bind(this),this.set=wt.prototype.set.bind(this),this.tag=Cr.tag}toJSON(n,r){if(!r)return super.toJSON(n);const l=new Map;r!=null&&r.onCreate&&r.onCreate(l);for(const o of this.items){let u,f;if(Ce(o)?(u=Ct(o.key,"",r),f=Ct(o.value,u,r)):u=Ct(o,"",r),l.has(u))throw new Error("Ordered maps must not include duplicate keys");l.set(u,f)}return l}static from(n,r,l){const o=Ah(n,r,l),u=new this;return u.items=o.items,u}}Cr.tag="tag:yaml.org,2002:omap";const ru={collection:"seq",identify:i=>i instanceof Map,nodeClass:Cr,default:!1,tag:"tag:yaml.org,2002:omap",resolve(i,n){const r=$h(i,n),l=[];for(const{key:o}of r.items)ve(o)&&(l.includes(o.value)?n(`Ordered maps must not include duplicate keys: ${o.value}`):l.push(o.value));return Object.assign(new Cr,r)},createNode:(i,n,r)=>Cr.from(i,n,r)};function Ph({value:i,source:n},r){return n&&(i?Mh:jh).test.test(n)?n:i?r.options.trueStr:r.options.falseStr}const Mh={identify:i=>i===!0,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/,resolve:()=>new ie(!0),stringify:Ph},jh={identify:i=>i===!1,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,resolve:()=>new ie(!1),stringify:Ph},Oy={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:i=>i.slice(-3).toLowerCase()==="nan"?NaN:i[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:Dt},Iy={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:[0-9][0-9_]*)?(?:\.[0-9_]*)?[eE][-+]?[0-9]+$/,resolve:i=>parseFloat(i.replace(/_/g,"")),stringify(i){const n=Number(i.value);return isFinite(n)?n.toExponential():Dt(i)}},$y={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:[0-9][0-9_]*)?\.[0-9_]*$/,resolve(i){const n=new ie(parseFloat(i.replace(/_/g,""))),r=i.indexOf(".");if(r!==-1){const l=i.substring(r+1).replace(/_/g,"");l[l.length-1]==="0"&&(n.minFractionDigits=l.length)}return n},stringify:Dt},Ms=i=>typeof i=="bigint"||Number.isInteger(i);function xl(i,n,r,{intAsBigInt:l}){const o=i[0];if((o==="-"||o==="+")&&(n+=1),i=i.substring(n).replace(/_/g,""),l){switch(r){case 2:i=`0b${i}`;break;case 8:i=`0o${i}`;break;case 16:i=`0x${i}`;break}const f=BigInt(i);return o==="-"?BigInt(-1)*f:f}const u=parseInt(i,r);return o==="-"?-1*u:u}function su(i,n,r){const{value:l}=i;if(Ms(l)){const o=l.toString(n);return l<0?"-"+r+o.substr(1):r+o}return Dt(i)}const Ay={identify:Ms,default:!0,tag:"tag:yaml.org,2002:int",format:"BIN",test:/^[-+]?0b[0-1_]+$/,resolve:(i,n,r)=>xl(i,2,2,r),stringify:i=>su(i,2,"0b")},Py={identify:Ms,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^[-+]?0[0-7_]+$/,resolve:(i,n,r)=>xl(i,1,8,r),stringify:i=>su(i,8,"0")},My={identify:Ms,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9][0-9_]*$/,resolve:(i,n,r)=>xl(i,0,10,r),stringify:Dt},jy={identify:Ms,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^[-+]?0x[0-9a-fA-F_]+$/,resolve:(i,n,r)=>xl(i,2,16,r),stringify:i=>su(i,16,"0x")};class Lr extends wt{constructor(n){super(n),this.tag=Lr.tag}add(n){let r;Ce(n)?r=n:n&&typeof n=="object"&&"key"in n&&"value"in n&&n.value===null?r=new Ze(n.key,null):r=new Ze(n,null),zn(this.items,r.key)||this.items.push(r)}get(n,r){const l=zn(this.items,n);return!r&&Ce(l)?ve(l.key)?l.key.value:l.key:l}set(n,r){if(typeof r!="boolean")throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof r}`);const l=zn(this.items,n);l&&!r?this.items.splice(this.items.indexOf(l),1):!l&&r&&this.items.push(new Ze(n))}toJSON(n,r){return super.toJSON(n,r,Set)}toString(n,r,l){if(!n)return JSON.stringify(this);if(this.hasAllNullValues(!0))return super.toString(Object.assign({},n,{allNullValues:!0}),r,l);throw new Error("Set items must all have null values")}static from(n,r,l){const{replacer:o}=l,u=new this(n);if(r&&Symbol.iterator in Object(r))for(let f of r)typeof o=="function"&&(f=o.call(r,f,f)),u.items.push(Xa(f,null,l));return u}}Lr.tag="tag:yaml.org,2002:set";const iu={collection:"map",identify:i=>i instanceof Set,nodeClass:Lr,default:!1,tag:"tag:yaml.org,2002:set",createNode:(i,n,r)=>Lr.from(i,n,r),resolve(i,n){if(Mr(i)){if(i.hasAllNullValues(!0))return Object.assign(new Lr,i);n("Set items must all have null values")}else n("Expected a mapping for this tag");return i}};function lu(i,n){const r=i[0],l=r==="-"||r==="+"?i.substring(1):i,o=f=>n?BigInt(f):Number(f),u=l.replace(/_/g,"").split(":").reduce((f,h)=>f*o(60)+o(h),o(0));return r==="-"?o(-1)*u:u}function Rh(i){let{value:n}=i,r=f=>f;if(typeof n=="bigint")r=f=>BigInt(f);else if(isNaN(n)||!isFinite(n))return Dt(i);let l="";n<0&&(l="-",n*=r(-1));const o=r(60),u=[n%o];return n<60?u.unshift(0):(n=(n-u[0])/o,u.unshift(n%o),n>=60&&(n=(n-u[0])/o,u.unshift(n))),l+u.map(f=>String(f).padStart(2,"0")).join(":").replace(/000000\d*$/,"")}const Dh={identify:i=>typeof i=="bigint"||Number.isInteger(i),default:!0,tag:"tag:yaml.org,2002:int",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,resolve:(i,n,{intAsBigInt:r})=>lu(i,r),stringify:Rh},bh={identify:i=>typeof i=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,resolve:i=>lu(i,!1),stringify:Rh},Tl={identify:i=>i instanceof Date,default:!0,tag:"tag:yaml.org,2002:timestamp",test:RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})(?:(?:t|T|[ \\t]+)([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?)?$"),resolve(i){const n=i.match(Tl.test);if(!n)throw new Error("!!timestamp expects a date, starting with yyyy-mm-dd");const[,r,l,o,u,f,h]=n.map(Number),p=n[7]?Number((n[7]+"00").substr(1,3)):0;let g=Date.UTC(r,l-1,o,u||0,f||0,h||0,p);const x=n[8];if(x&&x!=="Z"){let S=lu(x,!1);Math.abs(S)<30&&(S*=60),g-=6e4*S}return new Date(g)},stringify:({value:i})=>i.toISOString().replace(/((T00:00)?:00)?\.000Z$/,"")},Ld=[Rr,Dr,kl,El,Mh,jh,Ay,Py,My,jy,Oy,Iy,$y,tu,tn,ru,nu,iu,Dh,bh,Tl],Od=new Map([["core",Ty],["failsafe",[Rr,Dr,kl]],["json",Ly],["yaml11",Ld],["yaml-1.1",Ld]]),Id={binary:tu,bool:Za,float:_h,floatExp:Th,floatNaN:xh,floatTime:bh,int:Oh,intHex:Ih,intOct:Lh,intTime:Dh,map:Rr,merge:tn,null:El,omap:ru,pairs:nu,seq:Dr,set:iu,timestamp:Tl},Ry={"tag:yaml.org,2002:binary":tu,"tag:yaml.org,2002:merge":tn,"tag:yaml.org,2002:omap":ru,"tag:yaml.org,2002:pairs":nu,"tag:yaml.org,2002:set":iu,"tag:yaml.org,2002:timestamp":Tl};function Aa(i,n,r){const l=Od.get(n);if(l&&!i)return r&&!l.includes(tn)?l.concat(tn):l.slice();let o=l;if(!o)if(Array.isArray(i))o=[];else{const u=Array.from(Od.keys()).filter(f=>f!=="yaml11").map(f=>JSON.stringify(f)).join(", ");throw new Error(`Unknown schema "${n}"; use one of ${u} or define customTags array`)}if(Array.isArray(i))for(const u of i)o=o.concat(u);else typeof i=="function"&&(o=i(o.slice()));return r&&(o=o.concat(tn)),o.reduce((u,f)=>{const h=typeof f=="string"?Id[f]:f;if(!h){const p=JSON.stringify(f),g=Object.keys(Id).map(x=>JSON.stringify(x)).join(", ");throw new Error(`Unknown custom tag ${p}; use one of ${g}`)}return u.includes(h)||u.push(h),u},[])}const Dy=(i,n)=>i.key<n.key?-1:i.key>n.key?1:0;class _l{constructor({compat:n,customTags:r,merge:l,resolveKnownTags:o,schema:u,sortMapEntries:f,toStringDefaults:h}){this.compat=Array.isArray(n)?Aa(n,"compat"):n?Aa(null,n):null,this.name=typeof u=="string"&&u||"core",this.knownTags=o?Ry:{},this.tags=Aa(r,this.name,l),this.toStringOptions=h??null,Object.defineProperty(this,En,{value:Rr}),Object.defineProperty(this,Kt,{value:kl}),Object.defineProperty(this,Pr,{value:Dr}),this.sortMapEntries=typeof f=="function"?f:f===!0?Dy:null}clone(){const n=Object.create(_l.prototype,Object.getOwnPropertyDescriptors(this));return n.tags=this.tags.slice(),n}}function by(i,n){var p;const r=[];let l=n.directives===!0;if(n.directives!==!1&&i.directives){const g=i.directives.toString(i);g?(r.push(g),l=!0):i.directives.docStart&&(l=!0)}l&&r.push("---");const o=wh(i,n),{commentString:u}=o.options;if(i.commentBefore){r.length!==1&&r.unshift("");const g=u(i.commentBefore);r.unshift(en(g,""))}let f=!1,h=null;if(i.contents){if($e(i.contents)){if(i.contents.spaceBefore&&l&&r.push(""),i.contents.commentBefore){const S=u(i.contents.commentBefore);r.push(en(S,""))}o.forceBlockIndent=!!i.comment,h=i.contents.comment}const g=h?void 0:()=>f=!0;let x=Or(i.contents,o,()=>h=null,g);h&&(x+=Bn(x,"",u(h))),(x[0]==="|"||x[0]===">")&&r[r.length-1]==="---"?r[r.length-1]=`--- ${x}`:r.push(x)}else r.push(Or(i.contents,o));if((p=i.directives)!=null&&p.docEnd)if(i.comment){const g=u(i.comment);g.includes(`
|
|
96
|
+
`)?(r.push("..."),r.push(en(g,""))):r.push(`... ${g}`)}else r.push("...");else{let g=i.comment;g&&f&&(g=g.replace(/^\n+/,"")),g&&((!f||h)&&r[r.length-1]!==""&&r.push(""),r.push(en(u(g),"")))}return r.join(`
|
|
97
|
+
`)+`
|
|
98
|
+
`}class br{constructor(n,r,l){this.commentBefore=null,this.comment=null,this.errors=[],this.warnings=[],Object.defineProperty(this,Lt,{value:Ua});let o=null;typeof r=="function"||Array.isArray(r)?o=r:l===void 0&&r&&(l=r,r=void 0);const u=Object.assign({intAsBigInt:!1,keepSourceTokens:!1,logLevel:"warn",prettyErrors:!0,strict:!0,stringKeys:!1,uniqueKeys:!0,version:"1.2"},l);this.options=u;let{version:f}=u;l!=null&&l._directives?(this.directives=l._directives.atDocument(),this.directives.yaml.explicit&&(f=this.directives.yaml.version)):this.directives=new nt({version:f}),this.setSchema(f,l),this.contents=n===void 0?null:this.createNode(n,o,l)}clone(){const n=Object.create(br.prototype,{[Lt]:{value:Ua}});return n.commentBefore=this.commentBefore,n.comment=this.comment,n.errors=this.errors.slice(),n.warnings=this.warnings.slice(),n.options=Object.assign({},this.options),this.directives&&(n.directives=this.directives.clone()),n.schema=this.schema.clone(),n.contents=$e(this.contents)?this.contents.clone(n.schema):this.contents,this.range&&(n.range=this.range.slice()),n}add(n){vr(this.contents)&&this.contents.add(n)}addIn(n,r){vr(this.contents)&&this.contents.addIn(n,r)}createAlias(n,r){if(!n.anchor){const l=ph(this);n.anchor=!r||l.has(r)?mh(r||"a",l):r}return new yl(n.anchor)}createNode(n,r,l){let o;if(typeof r=="function")n=r.call({"":n},"",n),o=r;else if(Array.isArray(r)){const w=A=>typeof A=="number"||A instanceof String||A instanceof Number,$=r.filter(w).map(String);$.length>0&&(r=r.concat($)),o=r}else l===void 0&&r&&(l=r,r=void 0);const{aliasDuplicateObjects:u,anchorPrefix:f,flow:h,keepUndefined:p,onTagObj:g,tag:x}=l??{},{onAnchor:S,setAnchors:T,sourceObjects:E}=dy(this,f||"a"),O={aliasDuplicateObjects:u??!0,keepUndefined:p??!1,onAnchor:S,onTagObj:g,replacer:o,schema:this.schema,sourceObjects:E},v=Os(n,x,O);return h&&Ie(v)&&(v.flow=!0),T(),v}createPair(n,r,l={}){const o=this.createNode(n,null,l),u=this.createNode(r,null,l);return new Ze(o,u)}delete(n){return vr(this.contents)?this.contents.delete(n):!1}deleteIn(n){return Cs(n)?this.contents==null?!1:(this.contents=null,!0):vr(this.contents)?this.contents.deleteIn(n):!1}get(n,r){return Ie(this.contents)?this.contents.get(n,r):void 0}getIn(n,r){return Cs(n)?!r&&ve(this.contents)?this.contents.value:this.contents:Ie(this.contents)?this.contents.getIn(n,r):void 0}has(n){return Ie(this.contents)?this.contents.has(n):!1}hasIn(n){return Cs(n)?this.contents!==void 0:Ie(this.contents)?this.contents.hasIn(n):!1}set(n,r){this.contents==null?this.contents=al(this.schema,[n],r):vr(this.contents)&&this.contents.set(n,r)}setIn(n,r){Cs(n)?this.contents=r:this.contents==null?this.contents=al(this.schema,Array.from(n),r):vr(this.contents)&&this.contents.setIn(n,r)}setSchema(n,r={}){typeof n=="number"&&(n=String(n));let l;switch(n){case"1.1":this.directives?this.directives.yaml.version="1.1":this.directives=new nt({version:"1.1"}),l={resolveKnownTags:!1,schema:"yaml-1.1"};break;case"1.2":case"next":this.directives?this.directives.yaml.version=n:this.directives=new nt({version:n}),l={resolveKnownTags:!0,schema:"core"};break;case null:this.directives&&delete this.directives,l=null;break;default:{const o=JSON.stringify(n);throw new Error(`Expected '1.1', '1.2' or null as first argument, but found: ${o}`)}}if(r.schema instanceof Object)this.schema=r.schema;else if(l)this.schema=new _l(Object.assign(l,r));else throw new Error("With a null YAML version, the { schema: Schema } option is required")}toJS({json:n,jsonArg:r,mapAsMap:l,maxAliasCount:o,onAnchor:u,reviver:f}={}){const h={anchors:new Map,doc:this,keep:!n,mapAsMap:l===!0,mapKeyWarned:!1,maxAliasCount:typeof o=="number"?o:100},p=Ct(this.contents,r??"",h);if(typeof u=="function")for(const{count:g,res:x}of h.anchors.values())u(x,g);return typeof f=="function"?xr(f,{"":p},"",p):p}toJSON(n,r){return this.toJS({json:!0,jsonArg:n,mapAsMap:!1,onAnchor:r})}toString(n={}){if(this.errors.length>0)throw new Error("Document with errors cannot be stringified");if("indent"in n&&(!Number.isInteger(n.indent)||Number(n.indent)<=0)){const r=JSON.stringify(n.indent);throw new Error(`"indent" option must be a positive integer, not ${r}`)}return by(this,n)}}function vr(i){if(Ie(i))return!0;throw new Error("Expected a YAML collection as document contents")}class ou extends Error{constructor(n,r,l,o){super(),this.name=n,this.code=l,this.message=o,this.pos=r}}class Un extends ou{constructor(n,r,l){super("YAMLParseError",n,r,l)}}class Fh extends ou{constructor(n,r,l){super("YAMLWarning",n,r,l)}}const cl=(i,n)=>r=>{if(r.pos[0]===-1)return;r.linePos=r.pos.map(h=>n.linePos(h));const{line:l,col:o}=r.linePos[0];r.message+=` at line ${l}, column ${o}`;let u=o-1,f=i.substring(n.lineStarts[l-1],n.lineStarts[l]).replace(/[\n\r]+$/,"");if(u>=60&&f.length>80){const h=Math.min(u-39,f.length-79);f="…"+f.substring(h),u-=h-1}if(f.length>80&&(f=f.substring(0,79)+"…"),l>1&&/^ *$/.test(f.substring(0,u))){let h=i.substring(n.lineStarts[l-2],n.lineStarts[l-1]);h.length>80&&(h=h.substring(0,79)+`…
|
|
99
|
+
`),f=h+f}if(/[^ ]/.test(f)){let h=1;const p=r.linePos[1];p&&p.line===l&&p.col>o&&(h=Math.max(1,Math.min(p.col-o,80-u)));const g=" ".repeat(u)+"^".repeat(h);r.message+=`:
|
|
100
|
+
|
|
101
|
+
${f}
|
|
102
|
+
${g}
|
|
103
|
+
`}};function Ir(i,{flow:n,indicator:r,next:l,offset:o,onError:u,parentIndent:f,startOnNewline:h}){let p=!1,g=h,x=h,S="",T="",E=!1,O=!1,v=null,w=null,$=null,A=null,B=null,V=null,W=null;for(const z of i)switch(O&&(z.type!=="space"&&z.type!=="newline"&&z.type!=="comma"&&u(z.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),O=!1),v&&(g&&z.type!=="comment"&&z.type!=="newline"&&u(v,"TAB_AS_INDENT","Tabs are not allowed as indentation"),v=null),z.type){case"space":!n&&(r!=="doc-start"||(l==null?void 0:l.type)!=="flow-collection")&&z.source.includes(" ")&&(v=z),x=!0;break;case"comment":{x||u(z,"MISSING_CHAR","Comments must be separated from other tokens by white space characters");const P=z.source.substring(1)||" ";S?S+=T+P:S=P,T="",g=!1;break}case"newline":g?S?S+=z.source:p=!0:T+=z.source,g=!0,E=!0,(w||$)&&(A=z),x=!0;break;case"anchor":w&&u(z,"MULTIPLE_ANCHORS","A node can have at most one anchor"),z.source.endsWith(":")&&u(z.offset+z.source.length-1,"BAD_ALIAS","Anchor ending in : is ambiguous",!0),w=z,W===null&&(W=z.offset),g=!1,x=!1,O=!0;break;case"tag":{$&&u(z,"MULTIPLE_TAGS","A node can have at most one tag"),$=z,W===null&&(W=z.offset),g=!1,x=!1,O=!0;break}case r:(w||$)&&u(z,"BAD_PROP_ORDER",`Anchors and tags must be after the ${z.source} indicator`),V&&u(z,"UNEXPECTED_TOKEN",`Unexpected ${z.source} in ${n??"collection"}`),V=z,g=r==="seq-item-ind"||r==="explicit-key-ind",x=!1;break;case"comma":if(n){B&&u(z,"UNEXPECTED_TOKEN",`Unexpected , in ${n}`),B=z,g=!1,x=!1;break}default:u(z,"UNEXPECTED_TOKEN",`Unexpected ${z.type} token`),g=!1,x=!1}const j=i[i.length-1],Y=j?j.offset+j.source.length:o;return O&&l&&l.type!=="space"&&l.type!=="newline"&&l.type!=="comma"&&(l.type!=="scalar"||l.source!=="")&&u(l.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),v&&(g&&v.indent<=f||(l==null?void 0:l.type)==="block-map"||(l==null?void 0:l.type)==="block-seq")&&u(v,"TAB_AS_INDENT","Tabs are not allowed as indentation"),{comma:B,found:V,spaceBefore:p,comment:S,hasNewline:E,anchor:w,tag:$,newlineAfterProp:A,end:Y,start:W??Y}}function Is(i){if(!i)return null;switch(i.type){case"alias":case"scalar":case"double-quoted-scalar":case"single-quoted-scalar":if(i.source.includes(`
|
|
104
|
+
`))return!0;if(i.end){for(const n of i.end)if(n.type==="newline")return!0}return!1;case"flow-collection":for(const n of i.items){for(const r of n.start)if(r.type==="newline")return!0;if(n.sep){for(const r of n.sep)if(r.type==="newline")return!0}if(Is(n.key)||Is(n.value))return!0}return!1;default:return!0}}function qa(i,n,r){if((n==null?void 0:n.type)==="flow-collection"){const l=n.end[0];l.indent===i&&(l.source==="]"||l.source==="}")&&Is(n)&&r(l,"BAD_INDENT","Flow end indicator should be more indented than parent",!0)}}function Bh(i,n,r){const{uniqueKeys:l}=i.options;if(l===!1)return!1;const o=typeof l=="function"?l:(u,f)=>u===f||ve(u)&&ve(f)&&u.value===f.value;return n.some(u=>o(u.key,r))}const $d="All mapping items must start at the same column";function Fy({composeNode:i,composeEmptyNode:n},r,l,o,u){var x;const f=(u==null?void 0:u.nodeClass)??wt,h=new f(r.schema);r.atRoot&&(r.atRoot=!1);let p=l.offset,g=null;for(const S of l.items){const{start:T,key:E,sep:O,value:v}=S,w=Ir(T,{indicator:"explicit-key-ind",next:E??(O==null?void 0:O[0]),offset:p,onError:o,parentIndent:l.indent,startOnNewline:!0}),$=!w.found;if($){if(E&&(E.type==="block-seq"?o(p,"BLOCK_AS_IMPLICIT_KEY","A block sequence may not be used as an implicit map key"):"indent"in E&&E.indent!==l.indent&&o(p,"BAD_INDENT",$d)),!w.anchor&&!w.tag&&!O){g=w.end,w.comment&&(h.comment?h.comment+=`
|
|
105
|
+
`+w.comment:h.comment=w.comment);continue}(w.newlineAfterProp||Is(E))&&o(E??T[T.length-1],"MULTILINE_IMPLICIT_KEY","Implicit keys need to be on a single line")}else((x=w.found)==null?void 0:x.indent)!==l.indent&&o(p,"BAD_INDENT",$d);r.atKey=!0;const A=w.end,B=E?i(r,E,w,o):n(r,A,T,null,w,o);r.schema.compat&&qa(l.indent,E,o),r.atKey=!1,Bh(r,h.items,B)&&o(A,"DUPLICATE_KEY","Map keys must be unique");const V=Ir(O??[],{indicator:"map-value-ind",next:v,offset:B.range[2],onError:o,parentIndent:l.indent,startOnNewline:!E||E.type==="block-scalar"});if(p=V.end,V.found){$&&((v==null?void 0:v.type)==="block-map"&&!V.hasNewline&&o(p,"BLOCK_AS_IMPLICIT_KEY","Nested mappings are not allowed in compact mappings"),r.options.strict&&w.start<V.found.offset-1024&&o(B.range,"KEY_OVER_1024_CHARS","The : indicator must be at most 1024 chars after the start of an implicit block mapping key"));const W=v?i(r,v,V,o):n(r,p,O,null,V,o);r.schema.compat&&qa(l.indent,v,o),p=W.range[2];const j=new Ze(B,W);r.options.keepSourceTokens&&(j.srcToken=S),h.items.push(j)}else{$&&o(B.range,"MISSING_CHAR","Implicit map keys need to be followed by map values"),V.comment&&(B.comment?B.comment+=`
|
|
106
|
+
`+V.comment:B.comment=V.comment);const W=new Ze(B);r.options.keepSourceTokens&&(W.srcToken=S),h.items.push(W)}}return g&&g<p&&o(g,"IMPOSSIBLE","Map comment with trailing content"),h.range=[l.offset,p,g??p],h}function By({composeNode:i,composeEmptyNode:n},r,l,o,u){const f=(u==null?void 0:u.nodeClass)??xn,h=new f(r.schema);r.atRoot&&(r.atRoot=!1),r.atKey&&(r.atKey=!1);let p=l.offset,g=null;for(const{start:x,value:S}of l.items){const T=Ir(x,{indicator:"seq-item-ind",next:S,offset:p,onError:o,parentIndent:l.indent,startOnNewline:!0});if(!T.found)if(T.anchor||T.tag||S)S&&S.type==="block-seq"?o(T.end,"BAD_INDENT","All sequence items must start at the same column"):o(p,"MISSING_CHAR","Sequence item without - indicator");else{g=T.end,T.comment&&(h.comment=T.comment);continue}const E=S?i(r,S,T,o):n(r,T.end,x,null,T,o);r.schema.compat&&qa(l.indent,S,o),p=E.range[2],h.items.push(E)}return h.range=[l.offset,p,g??p],h}function js(i,n,r,l){let o="";if(i){let u=!1,f="";for(const h of i){const{source:p,type:g}=h;switch(g){case"space":u=!0;break;case"comment":{r&&!u&&l(h,"MISSING_CHAR","Comments must be separated from other tokens by white space characters");const x=p.substring(1)||" ";o?o+=f+x:o=x,f="";break}case"newline":o&&(f+=p),u=!0;break;default:l(h,"UNEXPECTED_TOKEN",`Unexpected ${g} at node end`)}n+=p.length}}return{comment:o,offset:n}}const Pa="Block collections are not allowed within flow collections",Ma=i=>i&&(i.type==="block-map"||i.type==="block-seq");function zy({composeNode:i,composeEmptyNode:n},r,l,o,u){const f=l.start.source==="{",h=f?"flow map":"flow sequence",p=(u==null?void 0:u.nodeClass)??(f?wt:xn),g=new p(r.schema);g.flow=!0;const x=r.atRoot;x&&(r.atRoot=!1),r.atKey&&(r.atKey=!1);let S=l.offset+l.start.source.length;for(let w=0;w<l.items.length;++w){const $=l.items[w],{start:A,key:B,sep:V,value:W}=$,j=Ir(A,{flow:h,indicator:"explicit-key-ind",next:B??(V==null?void 0:V[0]),offset:S,onError:o,parentIndent:l.indent,startOnNewline:!1});if(!j.found){if(!j.anchor&&!j.tag&&!V&&!W){w===0&&j.comma?o(j.comma,"UNEXPECTED_TOKEN",`Unexpected , in ${h}`):w<l.items.length-1&&o(j.start,"UNEXPECTED_TOKEN",`Unexpected empty item in ${h}`),j.comment&&(g.comment?g.comment+=`
|
|
107
|
+
`+j.comment:g.comment=j.comment),S=j.end;continue}!f&&r.options.strict&&Is(B)&&o(B,"MULTILINE_IMPLICIT_KEY","Implicit keys of flow sequence pairs need to be on a single line")}if(w===0)j.comma&&o(j.comma,"UNEXPECTED_TOKEN",`Unexpected , in ${h}`);else if(j.comma||o(j.start,"MISSING_CHAR",`Missing , between ${h} items`),j.comment){let Y="";e:for(const z of A)switch(z.type){case"comma":case"space":break;case"comment":Y=z.source.substring(1);break e;default:break e}if(Y){let z=g.items[g.items.length-1];Ce(z)&&(z=z.value??z.key),z.comment?z.comment+=`
|
|
108
|
+
`+Y:z.comment=Y,j.comment=j.comment.substring(Y.length+1)}}if(!f&&!V&&!j.found){const Y=W?i(r,W,j,o):n(r,j.end,V,null,j,o);g.items.push(Y),S=Y.range[2],Ma(W)&&o(Y.range,"BLOCK_IN_FLOW",Pa)}else{r.atKey=!0;const Y=j.end,z=B?i(r,B,j,o):n(r,Y,A,null,j,o);Ma(B)&&o(z.range,"BLOCK_IN_FLOW",Pa),r.atKey=!1;const P=Ir(V??[],{flow:h,indicator:"map-value-ind",next:W,offset:z.range[2],onError:o,parentIndent:l.indent,startOnNewline:!1});if(P.found){if(!f&&!j.found&&r.options.strict){if(V)for(const M of V){if(M===P.found)break;if(M.type==="newline"){o(M,"MULTILINE_IMPLICIT_KEY","Implicit keys of flow sequence pairs need to be on a single line");break}}j.start<P.found.offset-1024&&o(P.found,"KEY_OVER_1024_CHARS","The : indicator must be at most 1024 chars after the start of an implicit flow sequence key")}}else W&&("source"in W&&W.source&&W.source[0]===":"?o(W,"MISSING_CHAR",`Missing space after : in ${h}`):o(P.start,"MISSING_CHAR",`Missing , or : between ${h} items`));const le=W?i(r,W,P,o):P.found?n(r,P.end,V,null,P,o):null;le?Ma(W)&&o(le.range,"BLOCK_IN_FLOW",Pa):P.comment&&(z.comment?z.comment+=`
|
|
109
|
+
`+P.comment:z.comment=P.comment);const ue=new Ze(z,le);if(r.options.keepSourceTokens&&(ue.srcToken=$),f){const M=g;Bh(r,M.items,z)&&o(Y,"DUPLICATE_KEY","Map keys must be unique"),M.items.push(ue)}else{const M=new wt(r.schema);M.flow=!0,M.items.push(ue);const ee=(le??z).range;M.range=[z.range[0],ee[1],ee[2]],g.items.push(M)}S=le?le.range[2]:P.end}}const T=f?"}":"]",[E,...O]=l.end;let v=S;if(E&&E.source===T)v=E.offset+E.source.length;else{const w=h[0].toUpperCase()+h.substring(1),$=x?`${w} must end with a ${T}`:`${w} in block collection must be sufficiently indented and end with a ${T}`;o(S,x?"MISSING_CHAR":"BAD_INDENT",$),E&&E.source.length!==1&&O.unshift(E)}if(O.length>0){const w=js(O,v,r.options.strict,o);w.comment&&(g.comment?g.comment+=`
|
|
110
|
+
`+w.comment:g.comment=w.comment),g.range=[l.offset,v,w.offset]}else g.range=[l.offset,v,v];return g}function ja(i,n,r,l,o,u){const f=r.type==="block-map"?Fy(i,n,r,l,u):r.type==="block-seq"?By(i,n,r,l,u):zy(i,n,r,l,u),h=f.constructor;return o==="!"||o===h.tagName?(f.tag=h.tagName,f):(o&&(f.tag=o),f)}function Uy(i,n,r,l,o){var T;const u=l.tag,f=u?n.directives.tagName(u.source,E=>o(u,"TAG_RESOLVE_FAILED",E)):null;if(r.type==="block-seq"){const{anchor:E,newlineAfterProp:O}=l,v=E&&u?E.offset>u.offset?E:u:E??u;v&&(!O||O.offset<v.offset)&&o(v,"MISSING_CHAR","Missing newline after block sequence props")}const h=r.type==="block-map"?"map":r.type==="block-seq"?"seq":r.start.source==="{"?"map":"seq";if(!u||!f||f==="!"||f===wt.tagName&&h==="map"||f===xn.tagName&&h==="seq")return ja(i,n,r,o,f);let p=n.schema.tags.find(E=>E.tag===f&&E.collection===h);if(!p){const E=n.schema.knownTags[f];if(E&&E.collection===h)n.schema.tags.push(Object.assign({},E,{default:!1})),p=E;else return E!=null&&E.collection?o(u,"BAD_COLLECTION_TYPE",`${E.tag} used for ${h} collection, but expects ${E.collection}`,!0):o(u,"TAG_RESOLVE_FAILED",`Unresolved tag: ${f}`,!0),ja(i,n,r,o,f)}const g=ja(i,n,r,o,f,p),x=((T=p.resolve)==null?void 0:T.call(p,g,E=>o(u,"TAG_RESOLVE_FAILED",E),n.options))??g,S=$e(x)?x:new ie(x);return S.range=g.range,S.tag=f,p!=null&&p.format&&(S.format=p.format),S}function zh(i,n,r){const l=n.offset,o=Vy(n,i.options.strict,r);if(!o)return{value:"",type:null,comment:"",range:[l,l,l]};const u=o.mode===">"?ie.BLOCK_FOLDED:ie.BLOCK_LITERAL,f=n.source?Ky(n.source):[];let h=f.length;for(let v=f.length-1;v>=0;--v){const w=f[v][1];if(w===""||w==="\r")h=v;else break}if(h===0){const v=o.chomp==="+"&&f.length>0?`
|
|
111
|
+
`.repeat(Math.max(1,f.length-1)):"";let w=l+o.length;return n.source&&(w+=n.source.length),{value:v,type:u,comment:o.comment,range:[l,w,w]}}let p=n.indent+o.indent,g=n.offset+o.length,x=0;for(let v=0;v<h;++v){const[w,$]=f[v];if($===""||$==="\r")o.indent===0&&w.length>p&&(p=w.length);else{w.length<p&&r(g+w.length,"MISSING_CHAR","Block scalars with more-indented leading empty lines must use an explicit indentation indicator"),o.indent===0&&(p=w.length),x=v,p===0&&!i.atRoot&&r(g,"BAD_INDENT","Block scalar values in collections must be indented");break}g+=w.length+$.length+1}for(let v=f.length-1;v>=h;--v)f[v][0].length>p&&(h=v+1);let S="",T="",E=!1;for(let v=0;v<x;++v)S+=f[v][0].slice(p)+`
|
|
112
|
+
`;for(let v=x;v<h;++v){let[w,$]=f[v];g+=w.length+$.length+1;const A=$[$.length-1]==="\r";if(A&&($=$.slice(0,-1)),$&&w.length<p){const V=`Block scalar lines must not be less indented than their ${o.indent?"explicit indentation indicator":"first line"}`;r(g-$.length-(A?2:1),"BAD_INDENT",V),w=""}u===ie.BLOCK_LITERAL?(S+=T+w.slice(p)+$,T=`
|
|
113
|
+
`):w.length>p||$[0]===" "?(T===" "?T=`
|
|
114
|
+
`:!E&&T===`
|
|
115
|
+
`&&(T=`
|
|
116
|
+
|
|
117
|
+
`),S+=T+w.slice(p)+$,T=`
|
|
118
|
+
`,E=!0):$===""?T===`
|
|
119
|
+
`?S+=`
|
|
120
|
+
`:T=`
|
|
121
|
+
`:(S+=T+$,T=" ",E=!1)}switch(o.chomp){case"-":break;case"+":for(let v=h;v<f.length;++v)S+=`
|
|
122
|
+
`+f[v][0].slice(p);S[S.length-1]!==`
|
|
123
|
+
`&&(S+=`
|
|
124
|
+
`);break;default:S+=`
|
|
125
|
+
`}const O=l+o.length+n.source.length;return{value:S,type:u,comment:o.comment,range:[l,O,O]}}function Vy({offset:i,props:n},r,l){if(n[0].type!=="block-scalar-header")return l(n[0],"IMPOSSIBLE","Block scalar header not found"),null;const{source:o}=n[0],u=o[0];let f=0,h="",p=-1;for(let T=1;T<o.length;++T){const E=o[T];if(!h&&(E==="-"||E==="+"))h=E;else{const O=Number(E);!f&&O?f=O:p===-1&&(p=i+T)}}p!==-1&&l(p,"UNEXPECTED_TOKEN",`Block scalar header includes extra characters: ${o}`);let g=!1,x="",S=o.length;for(let T=1;T<n.length;++T){const E=n[T];switch(E.type){case"space":g=!0;case"newline":S+=E.source.length;break;case"comment":r&&!g&&l(E,"MISSING_CHAR","Comments must be separated from other tokens by white space characters"),S+=E.source.length,x=E.source.substring(1);break;case"error":l(E,"UNEXPECTED_TOKEN",E.message),S+=E.source.length;break;default:{const O=`Unexpected token in block scalar header: ${E.type}`;l(E,"UNEXPECTED_TOKEN",O);const v=E.source;v&&typeof v=="string"&&(S+=v.length)}}}return{mode:u,indent:f,chomp:h,comment:x,length:S}}function Ky(i){const n=i.split(/\n( *)/),r=n[0],l=r.match(/^( *)/),u=[l!=null&&l[1]?[l[1],r.slice(l[1].length)]:["",r]];for(let f=1;f<n.length;f+=2)u.push([n[f],n[f+1]]);return u}function Uh(i,n,r){const{offset:l,type:o,source:u,end:f}=i;let h,p;const g=(T,E,O)=>r(l+T,E,O);switch(o){case"scalar":h=ie.PLAIN,p=Wy(u,g);break;case"single-quoted-scalar":h=ie.QUOTE_SINGLE,p=qy(u,g);break;case"double-quoted-scalar":h=ie.QUOTE_DOUBLE,p=Hy(u,g);break;default:return r(i,"UNEXPECTED_TOKEN",`Expected a flow scalar value, but found: ${o}`),{value:"",type:null,comment:"",range:[l,l+u.length,l+u.length]}}const x=l+u.length,S=js(f,x,n,r);return{value:p,type:h,comment:S.comment,range:[l,x,S.offset]}}function Wy(i,n){let r="";switch(i[0]){case" ":r="a tab character";break;case",":r="flow indicator character ,";break;case"%":r="directive indicator character %";break;case"|":case">":{r=`block scalar indicator ${i[0]}`;break}case"@":case"`":{r=`reserved character ${i[0]}`;break}}return r&&n(0,"BAD_SCALAR_START",`Plain value cannot start with ${r}`),Vh(i)}function qy(i,n){return(i[i.length-1]!=="'"||i.length===1)&&n(i.length,"MISSING_CHAR","Missing closing 'quote"),Vh(i.slice(1,-1)).replace(/''/g,"'")}function Vh(i){let n,r;try{n=new RegExp(`(.*?)(?<![ ])[ ]*\r?
|
|
126
|
+
`,"sy"),r=new RegExp(`[ ]*(.*?)(?:(?<![ ])[ ]*)?\r?
|
|
127
|
+
`,"sy")}catch{n=/(.*?)[ \t]*\r?\n/sy,r=/[ \t]*(.*?)[ \t]*\r?\n/sy}let l=n.exec(i);if(!l)return i;let o=l[1],u=" ",f=n.lastIndex;for(r.lastIndex=f;l=r.exec(i);)l[1]===""?u===`
|
|
128
|
+
`?o+=u:u=`
|
|
129
|
+
`:(o+=u+l[1],u=" "),f=r.lastIndex;const h=/[ \t]*(.*)/sy;return h.lastIndex=f,l=h.exec(i),o+u+((l==null?void 0:l[1])??"")}function Hy(i,n){let r="";for(let l=1;l<i.length-1;++l){const o=i[l];if(!(o==="\r"&&i[l+1]===`
|
|
130
|
+
`))if(o===`
|
|
131
|
+
`){const{fold:u,offset:f}=Qy(i,l);r+=u,l=f}else if(o==="\\"){let u=i[++l];const f=Jy[u];if(f)r+=f;else if(u===`
|
|
132
|
+
`)for(u=i[l+1];u===" "||u===" ";)u=i[++l+1];else if(u==="\r"&&i[l+1]===`
|
|
133
|
+
`)for(u=i[++l+1];u===" "||u===" ";)u=i[++l+1];else if(u==="x"||u==="u"||u==="U"){const h={x:2,u:4,U:8}[u];r+=Yy(i,l+1,h,n),l+=h}else{const h=i.substr(l-1,2);n(l-1,"BAD_DQ_ESCAPE",`Invalid escape sequence ${h}`),r+=h}}else if(o===" "||o===" "){const u=l;let f=i[l+1];for(;f===" "||f===" ";)f=i[++l+1];f!==`
|
|
134
|
+
`&&!(f==="\r"&&i[l+2]===`
|
|
135
|
+
`)&&(r+=l>u?i.slice(u,l+1):o)}else r+=o}return(i[i.length-1]!=='"'||i.length===1)&&n(i.length,"MISSING_CHAR",'Missing closing "quote'),r}function Qy(i,n){let r="",l=i[n+1];for(;(l===" "||l===" "||l===`
|
|
136
|
+
`||l==="\r")&&!(l==="\r"&&i[n+2]!==`
|
|
137
|
+
`);)l===`
|
|
138
|
+
`&&(r+=`
|
|
139
|
+
`),n+=1,l=i[n+1];return r||(r=" "),{fold:r,offset:n}}const Jy={0:"\0",a:"\x07",b:"\b",e:"\x1B",f:"\f",n:`
|
|
140
|
+
`,r:"\r",t:" ",v:"\v",N:"
",_:" ",L:"\u2028",P:"\u2029"," ":" ",'"':'"',"/":"/","\\":"\\"," ":" "};function Yy(i,n,r,l){const o=i.substr(n,r),f=o.length===r&&/^[0-9a-fA-F]+$/.test(o)?parseInt(o,16):NaN;if(isNaN(f)){const h=i.substr(n-2,r+2);return l(n-2,"BAD_DQ_ESCAPE",`Invalid escape sequence ${h}`),h}return String.fromCodePoint(f)}function Kh(i,n,r,l){const{value:o,type:u,comment:f,range:h}=n.type==="block-scalar"?zh(i,n,l):Uh(n,i.options.strict,l),p=r?i.directives.tagName(r.source,S=>l(r,"TAG_RESOLVE_FAILED",S)):null;let g;i.options.stringKeys&&i.atKey?g=i.schema[Kt]:p?g=Gy(i.schema,o,p,r,l):n.type==="scalar"?g=Xy(i,o,n,l):g=i.schema[Kt];let x;try{const S=g.resolve(o,T=>l(r??n,"TAG_RESOLVE_FAILED",T),i.options);x=ve(S)?S:new ie(S)}catch(S){const T=S instanceof Error?S.message:String(S);l(r??n,"TAG_RESOLVE_FAILED",T),x=new ie(o)}return x.range=h,x.source=o,u&&(x.type=u),p&&(x.tag=p),g.format&&(x.format=g.format),f&&(x.comment=f),x}function Gy(i,n,r,l,o){var h;if(r==="!")return i[Kt];const u=[];for(const p of i.tags)if(!p.collection&&p.tag===r)if(p.default&&p.test)u.push(p);else return p;for(const p of u)if((h=p.test)!=null&&h.test(n))return p;const f=i.knownTags[r];return f&&!f.collection?(i.tags.push(Object.assign({},f,{default:!1,test:void 0})),f):(o(l,"TAG_RESOLVE_FAILED",`Unresolved tag: ${r}`,r!=="tag:yaml.org,2002:str"),i[Kt])}function Xy({atKey:i,directives:n,schema:r},l,o,u){const f=r.tags.find(h=>{var p;return(h.default===!0||i&&h.default==="key")&&((p=h.test)==null?void 0:p.test(l))})||r[Kt];if(r.compat){const h=r.compat.find(p=>{var g;return p.default&&((g=p.test)==null?void 0:g.test(l))})??r[Kt];if(f.tag!==h.tag){const p=n.tagString(f.tag),g=n.tagString(h.tag),x=`Value may be parsed as either ${p} or ${g}`;u(o,"TAG_RESOLVE_FAILED",x,!0)}}return f}function Zy(i,n,r){if(n){r===null&&(r=n.length);for(let l=r-1;l>=0;--l){let o=n[l];switch(o.type){case"space":case"comment":case"newline":i-=o.source.length;continue}for(o=n[++l];(o==null?void 0:o.type)==="space";)i+=o.source.length,o=n[++l];break}}return i}const e0={composeNode:Wh,composeEmptyNode:au};function Wh(i,n,r,l){const o=i.atKey,{spaceBefore:u,comment:f,anchor:h,tag:p}=r;let g,x=!0;switch(n.type){case"alias":g=t0(i,n,l),(h||p)&&l(n,"ALIAS_PROPS","An alias node must not specify any properties");break;case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":case"block-scalar":g=Kh(i,n,p,l),h&&(g.anchor=h.source.substring(1));break;case"block-map":case"block-seq":case"flow-collection":g=Uy(e0,i,n,r,l),h&&(g.anchor=h.source.substring(1));break;default:{const S=n.type==="error"?n.message:`Unsupported token (type: ${n.type})`;l(n,"UNEXPECTED_TOKEN",S),g=au(i,n.offset,void 0,null,r,l),x=!1}}return h&&g.anchor===""&&l(h,"BAD_ALIAS","Anchor cannot be an empty string"),o&&i.options.stringKeys&&(!ve(g)||typeof g.value!="string"||g.tag&&g.tag!=="tag:yaml.org,2002:str")&&l(p??n,"NON_STRING_KEY","With stringKeys, all keys must be strings"),u&&(g.spaceBefore=!0),f&&(n.type==="scalar"&&n.source===""?g.comment=f:g.commentBefore=f),i.options.keepSourceTokens&&x&&(g.srcToken=n),g}function au(i,n,r,l,{spaceBefore:o,comment:u,anchor:f,tag:h,end:p},g){const x={type:"scalar",offset:Zy(n,r,l),indent:-1,source:""},S=Kh(i,x,h,g);return f&&(S.anchor=f.source.substring(1),S.anchor===""&&g(f,"BAD_ALIAS","Anchor cannot be an empty string")),o&&(S.spaceBefore=!0),u&&(S.comment=u,S.range[2]=p),S}function t0({options:i},{offset:n,source:r,end:l},o){const u=new yl(r.substring(1));u.source===""&&o(n,"BAD_ALIAS","Alias cannot be an empty string"),u.source.endsWith(":")&&o(n+r.length-1,"BAD_ALIAS","Alias ending in : is ambiguous",!0);const f=n+r.length,h=js(l,f,i.strict,o);return u.range=[n,f,h.offset],h.comment&&(u.comment=h.comment),u}function n0(i,n,{offset:r,start:l,value:o,end:u},f){const h=Object.assign({_directives:n},i),p=new br(void 0,h),g={atKey:!1,atRoot:!0,directives:p.directives,options:p.options,schema:p.schema},x=Ir(l,{indicator:"doc-start",next:o??(u==null?void 0:u[0]),offset:r,onError:f,parentIndent:0,startOnNewline:!0});x.found&&(p.directives.docStart=!0,o&&(o.type==="block-map"||o.type==="block-seq")&&!x.hasNewline&&f(x.end,"MISSING_CHAR","Block collection cannot start on same line with directives-end marker")),p.contents=o?Wh(g,o,x,f):au(g,x.end,l,null,x,f);const S=p.contents.range[2],T=js(u,S,!1,f);return T.comment&&(p.comment=T.comment),p.range=[r,S,T.offset],p}function _s(i){if(typeof i=="number")return[i,i+1];if(Array.isArray(i))return i.length===2?i:[i[0],i[1]];const{offset:n,source:r}=i;return[n,n+(typeof r=="string"?r.length:1)]}function Ad(i){var o;let n="",r=!1,l=!1;for(let u=0;u<i.length;++u){const f=i[u];switch(f[0]){case"#":n+=(n===""?"":l?`
|
|
141
|
+
|
|
142
|
+
`:`
|
|
143
|
+
`)+(f.substring(1)||" "),r=!0,l=!1;break;case"%":((o=i[u+1])==null?void 0:o[0])!=="#"&&(u+=1),r=!1;break;default:r||(l=!0),r=!1}}return{comment:n,afterEmptyLine:l}}class uu{constructor(n={}){this.doc=null,this.atDirectives=!1,this.prelude=[],this.errors=[],this.warnings=[],this.onError=(r,l,o,u)=>{const f=_s(r);u?this.warnings.push(new Fh(f,l,o)):this.errors.push(new Un(f,l,o))},this.directives=new nt({version:n.version||"1.2"}),this.options=n}decorate(n,r){const{comment:l,afterEmptyLine:o}=Ad(this.prelude);if(l){const u=n.contents;if(r)n.comment=n.comment?`${n.comment}
|
|
144
|
+
${l}`:l;else if(o||n.directives.docStart||!u)n.commentBefore=l;else if(Ie(u)&&!u.flow&&u.items.length>0){let f=u.items[0];Ce(f)&&(f=f.key);const h=f.commentBefore;f.commentBefore=h?`${l}
|
|
145
|
+
${h}`:l}else{const f=u.commentBefore;u.commentBefore=f?`${l}
|
|
146
|
+
${f}`:l}}r?(Array.prototype.push.apply(n.errors,this.errors),Array.prototype.push.apply(n.warnings,this.warnings)):(n.errors=this.errors,n.warnings=this.warnings),this.prelude=[],this.errors=[],this.warnings=[]}streamInfo(){return{comment:Ad(this.prelude).comment,directives:this.directives,errors:this.errors,warnings:this.warnings}}*compose(n,r=!1,l=-1){for(const o of n)yield*this.next(o);yield*this.end(r,l)}*next(n){switch(n.type){case"directive":this.directives.add(n.source,(r,l,o)=>{const u=_s(n);u[0]+=r,this.onError(u,"BAD_DIRECTIVE",l,o)}),this.prelude.push(n.source),this.atDirectives=!0;break;case"document":{const r=n0(this.options,this.directives,n,this.onError);this.atDirectives&&!r.directives.docStart&&this.onError(n,"MISSING_CHAR","Missing directives-end/doc-start indicator line"),this.decorate(r,!1),this.doc&&(yield this.doc),this.doc=r,this.atDirectives=!1;break}case"byte-order-mark":case"space":break;case"comment":case"newline":this.prelude.push(n.source);break;case"error":{const r=n.source?`${n.message}: ${JSON.stringify(n.source)}`:n.message,l=new Un(_s(n),"UNEXPECTED_TOKEN",r);this.atDirectives||!this.doc?this.errors.push(l):this.doc.errors.push(l);break}case"doc-end":{if(!this.doc){const l="Unexpected doc-end without preceding document";this.errors.push(new Un(_s(n),"UNEXPECTED_TOKEN",l));break}this.doc.directives.docEnd=!0;const r=js(n.end,n.offset+n.source.length,this.doc.options.strict,this.onError);if(this.decorate(this.doc,!0),r.comment){const l=this.doc.comment;this.doc.comment=l?`${l}
|
|
147
|
+
${r.comment}`:r.comment}this.doc.range[2]=r.offset;break}default:this.errors.push(new Un(_s(n),"UNEXPECTED_TOKEN",`Unsupported token ${n.type}`))}}*end(n=!1,r=-1){if(this.doc)this.decorate(this.doc,!0),yield this.doc,this.doc=null;else if(n){const l=Object.assign({_directives:this.directives},this.options),o=new br(void 0,l);this.atDirectives&&this.onError(r,"MISSING_CHAR","Missing directives-end indicator line"),o.range=[0,r,r],this.decorate(o,!1),yield o}}}function r0(i,n=!0,r){if(i){const l=(o,u,f)=>{const h=typeof o=="number"?o:Array.isArray(o)?o[0]:o.offset;if(r)r(h,u,f);else throw new Un([h,h+1],u,f)};switch(i.type){case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return Uh(i,n,l);case"block-scalar":return zh({options:{strict:n}},i,l)}}return null}function s0(i,n){const{implicitKey:r=!1,indent:l,inFlow:o=!1,offset:u=-1,type:f="PLAIN"}=n,h=Ps({type:f,value:i},{implicitKey:r,indent:l>0?" ".repeat(l):"",inFlow:o,options:{blockQuote:!0,lineWidth:-1}}),p=n.end??[{type:"newline",offset:-1,indent:l,source:`
|
|
148
|
+
`}];switch(h[0]){case"|":case">":{const g=h.indexOf(`
|
|
149
|
+
`),x=h.substring(0,g),S=h.substring(g+1)+`
|
|
150
|
+
`,T=[{type:"block-scalar-header",offset:u,indent:l,source:x}];return qh(T,p)||T.push({type:"newline",offset:-1,indent:l,source:`
|
|
151
|
+
`}),{type:"block-scalar",offset:u,indent:l,props:T,source:S}}case'"':return{type:"double-quoted-scalar",offset:u,indent:l,source:h,end:p};case"'":return{type:"single-quoted-scalar",offset:u,indent:l,source:h,end:p};default:return{type:"scalar",offset:u,indent:l,source:h,end:p}}}function i0(i,n,r={}){let{afterKey:l=!1,implicitKey:o=!1,inFlow:u=!1,type:f}=r,h="indent"in i?i.indent:null;if(l&&typeof h=="number"&&(h+=2),!f)switch(i.type){case"single-quoted-scalar":f="QUOTE_SINGLE";break;case"double-quoted-scalar":f="QUOTE_DOUBLE";break;case"block-scalar":{const g=i.props[0];if(g.type!=="block-scalar-header")throw new Error("Invalid block scalar header");f=g.source[0]===">"?"BLOCK_FOLDED":"BLOCK_LITERAL";break}default:f="PLAIN"}const p=Ps({type:f,value:n},{implicitKey:o||h===null,indent:h!==null&&h>0?" ".repeat(h):"",inFlow:u,options:{blockQuote:!0,lineWidth:-1}});switch(p[0]){case"|":case">":l0(i,p);break;case'"':Ra(i,p,"double-quoted-scalar");break;case"'":Ra(i,p,"single-quoted-scalar");break;default:Ra(i,p,"scalar")}}function l0(i,n){const r=n.indexOf(`
|
|
152
|
+
`),l=n.substring(0,r),o=n.substring(r+1)+`
|
|
153
|
+
`;if(i.type==="block-scalar"){const u=i.props[0];if(u.type!=="block-scalar-header")throw new Error("Invalid block scalar header");u.source=l,i.source=o}else{const{offset:u}=i,f="indent"in i?i.indent:-1,h=[{type:"block-scalar-header",offset:u,indent:f,source:l}];qh(h,"end"in i?i.end:void 0)||h.push({type:"newline",offset:-1,indent:f,source:`
|
|
154
|
+
`});for(const p of Object.keys(i))p!=="type"&&p!=="offset"&&delete i[p];Object.assign(i,{type:"block-scalar",indent:f,props:h,source:o})}}function qh(i,n){if(n)for(const r of n)switch(r.type){case"space":case"comment":i.push(r);break;case"newline":return i.push(r),!0}return!1}function Ra(i,n,r){switch(i.type){case"scalar":case"double-quoted-scalar":case"single-quoted-scalar":i.type=r,i.source=n;break;case"block-scalar":{const l=i.props.slice(1);let o=n.length;i.props[0].type==="block-scalar-header"&&(o-=i.props[0].source.length);for(const u of l)u.offset+=o;delete i.props,Object.assign(i,{type:r,source:n,end:l});break}case"block-map":case"block-seq":{const o={type:"newline",offset:i.offset+n.length,indent:i.indent,source:`
|
|
155
|
+
`};delete i.items,Object.assign(i,{type:r,source:n,end:[o]});break}default:{const l="indent"in i?i.indent:-1,o="end"in i&&Array.isArray(i.end)?i.end.filter(u=>u.type==="space"||u.type==="comment"||u.type==="newline"):[];for(const u of Object.keys(i))u!=="type"&&u!=="offset"&&delete i[u];Object.assign(i,{type:r,indent:l,source:n,end:o})}}}const o0=i=>"type"in i?fl(i):ll(i);function fl(i){switch(i.type){case"block-scalar":{let n="";for(const r of i.props)n+=fl(r);return n+i.source}case"block-map":case"block-seq":{let n="";for(const r of i.items)n+=ll(r);return n}case"flow-collection":{let n=i.start.source;for(const r of i.items)n+=ll(r);for(const r of i.end)n+=r.source;return n}case"document":{let n=ll(i);if(i.end)for(const r of i.end)n+=r.source;return n}default:{let n=i.source;if("end"in i&&i.end)for(const r of i.end)n+=r.source;return n}}}function ll({start:i,key:n,sep:r,value:l}){let o="";for(const u of i)o+=u.source;if(n&&(o+=fl(n)),r)for(const u of r)o+=u.source;return l&&(o+=fl(l)),o}const Ha=Symbol("break visit"),a0=Symbol("skip children"),Hh=Symbol("remove item");function Kn(i,n){"type"in i&&i.type==="document"&&(i={start:i.start,value:i.value}),Qh(Object.freeze([]),i,n)}Kn.BREAK=Ha;Kn.SKIP=a0;Kn.REMOVE=Hh;Kn.itemAtPath=(i,n)=>{let r=i;for(const[l,o]of n){const u=r==null?void 0:r[l];if(u&&"items"in u)r=u.items[o];else return}return r};Kn.parentCollection=(i,n)=>{const r=Kn.itemAtPath(i,n.slice(0,-1)),l=n[n.length-1][0],o=r==null?void 0:r[l];if(o&&"items"in o)return o;throw new Error("Parent collection not found")};function Qh(i,n,r){let l=r(n,i);if(typeof l=="symbol")return l;for(const o of["key","value"]){const u=n[o];if(u&&"items"in u){for(let f=0;f<u.items.length;++f){const h=Qh(Object.freeze(i.concat([[o,f]])),u.items[f],r);if(typeof h=="number")f=h-1;else{if(h===Ha)return Ha;h===Hh&&(u.items.splice(f,1),f-=1)}}typeof l=="function"&&o==="key"&&(l=l(n,i))}}return typeof l=="function"?l(n,i):l}const Cl="\uFEFF",Ll="",Ol="",$s="",u0=i=>!!i&&"items"in i,c0=i=>!!i&&(i.type==="scalar"||i.type==="single-quoted-scalar"||i.type==="double-quoted-scalar"||i.type==="block-scalar");function f0(i){switch(i){case Cl:return"<BOM>";case Ll:return"<DOC>";case Ol:return"<FLOW_END>";case $s:return"<SCALAR>";default:return JSON.stringify(i)}}function Jh(i){switch(i){case Cl:return"byte-order-mark";case Ll:return"doc-mode";case Ol:return"flow-error-end";case $s:return"scalar";case"---":return"doc-start";case"...":return"doc-end";case"":case`
|
|
156
|
+
`:case`\r
|
|
157
|
+
`:return"newline";case"-":return"seq-item-ind";case"?":return"explicit-key-ind";case":":return"map-value-ind";case"{":return"flow-map-start";case"}":return"flow-map-end";case"[":return"flow-seq-start";case"]":return"flow-seq-end";case",":return"comma"}switch(i[0]){case" ":case" ":return"space";case"#":return"comment";case"%":return"directive-line";case"*":return"alias";case"&":return"anchor";case"!":return"tag";case"'":return"single-quoted-scalar";case'"':return"double-quoted-scalar";case"|":case">":return"block-scalar-header"}return null}const d0=Object.freeze(Object.defineProperty({__proto__:null,BOM:Cl,DOCUMENT:Ll,FLOW_END:Ol,SCALAR:$s,createScalarToken:s0,isCollection:u0,isScalar:c0,prettyToken:f0,resolveAsScalar:r0,setScalarValue:i0,stringify:o0,tokenType:Jh,visit:Kn},Symbol.toStringTag,{value:"Module"}));function Rt(i){switch(i){case void 0:case" ":case`
|
|
158
|
+
`:case"\r":case" ":return!0;default:return!1}}const Pd=new Set("0123456789ABCDEFabcdef"),h0=new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"),Yi=new Set(",[]{}"),p0=new Set(` ,[]{}
|
|
159
|
+
\r `),Da=i=>!i||p0.has(i);class Yh{constructor(){this.atEnd=!1,this.blockScalarIndent=-1,this.blockScalarKeep=!1,this.buffer="",this.flowKey=!1,this.flowLevel=0,this.indentNext=0,this.indentValue=0,this.lineEndPos=null,this.next=null,this.pos=0}*lex(n,r=!1){if(n){if(typeof n!="string")throw TypeError("source is not a string");this.buffer=this.buffer?this.buffer+n:n,this.lineEndPos=null}this.atEnd=!r;let l=this.next??"stream";for(;l&&(r||this.hasChars(1));)l=yield*this.parseNext(l)}atLineEnd(){let n=this.pos,r=this.buffer[n];for(;r===" "||r===" ";)r=this.buffer[++n];return!r||r==="#"||r===`
|
|
160
|
+
`?!0:r==="\r"?this.buffer[n+1]===`
|
|
161
|
+
`:!1}charAt(n){return this.buffer[this.pos+n]}continueScalar(n){let r=this.buffer[n];if(this.indentNext>0){let l=0;for(;r===" ";)r=this.buffer[++l+n];if(r==="\r"){const o=this.buffer[l+n+1];if(o===`
|
|
162
|
+
`||!o&&!this.atEnd)return n+l+1}return r===`
|
|
163
|
+
`||l>=this.indentNext||!r&&!this.atEnd?n+l:-1}if(r==="-"||r==="."){const l=this.buffer.substr(n,3);if((l==="---"||l==="...")&&Rt(this.buffer[n+3]))return-1}return n}getLine(){let n=this.lineEndPos;return(typeof n!="number"||n!==-1&&n<this.pos)&&(n=this.buffer.indexOf(`
|
|
164
|
+
`,this.pos),this.lineEndPos=n),n===-1?this.atEnd?this.buffer.substring(this.pos):null:(this.buffer[n-1]==="\r"&&(n-=1),this.buffer.substring(this.pos,n))}hasChars(n){return this.pos+n<=this.buffer.length}setNext(n){return this.buffer=this.buffer.substring(this.pos),this.pos=0,this.lineEndPos=null,this.next=n,null}peek(n){return this.buffer.substr(this.pos,n)}*parseNext(n){switch(n){case"stream":return yield*this.parseStream();case"line-start":return yield*this.parseLineStart();case"block-start":return yield*this.parseBlockStart();case"doc":return yield*this.parseDocument();case"flow":return yield*this.parseFlowCollection();case"quoted-scalar":return yield*this.parseQuotedScalar();case"block-scalar":return yield*this.parseBlockScalar();case"plain-scalar":return yield*this.parsePlainScalar()}}*parseStream(){let n=this.getLine();if(n===null)return this.setNext("stream");if(n[0]===Cl&&(yield*this.pushCount(1),n=n.substring(1)),n[0]==="%"){let r=n.length,l=n.indexOf("#");for(;l!==-1;){const u=n[l-1];if(u===" "||u===" "){r=l-1;break}else l=n.indexOf("#",l+1)}for(;;){const u=n[r-1];if(u===" "||u===" ")r-=1;else break}const o=(yield*this.pushCount(r))+(yield*this.pushSpaces(!0));return yield*this.pushCount(n.length-o),this.pushNewline(),"stream"}if(this.atLineEnd()){const r=yield*this.pushSpaces(!0);return yield*this.pushCount(n.length-r),yield*this.pushNewline(),"stream"}return yield Ll,yield*this.parseLineStart()}*parseLineStart(){const n=this.charAt(0);if(!n&&!this.atEnd)return this.setNext("line-start");if(n==="-"||n==="."){if(!this.atEnd&&!this.hasChars(4))return this.setNext("line-start");const r=this.peek(3);if((r==="---"||r==="...")&&Rt(this.charAt(3)))return yield*this.pushCount(3),this.indentValue=0,this.indentNext=0,r==="---"?"doc":"stream"}return this.indentValue=yield*this.pushSpaces(!1),this.indentNext>this.indentValue&&!Rt(this.charAt(1))&&(this.indentNext=this.indentValue),yield*this.parseBlockStart()}*parseBlockStart(){const[n,r]=this.peek(2);if(!r&&!this.atEnd)return this.setNext("block-start");if((n==="-"||n==="?"||n===":")&&Rt(r)){const l=(yield*this.pushCount(1))+(yield*this.pushSpaces(!0));return this.indentNext=this.indentValue+1,this.indentValue+=l,yield*this.parseBlockStart()}return"doc"}*parseDocument(){yield*this.pushSpaces(!0);const n=this.getLine();if(n===null)return this.setNext("doc");let r=yield*this.pushIndicators();switch(n[r]){case"#":yield*this.pushCount(n.length-r);case void 0:return yield*this.pushNewline(),yield*this.parseLineStart();case"{":case"[":return yield*this.pushCount(1),this.flowKey=!1,this.flowLevel=1,"flow";case"}":case"]":return yield*this.pushCount(1),"doc";case"*":return yield*this.pushUntil(Da),"doc";case'"':case"'":return yield*this.parseQuotedScalar();case"|":case">":return r+=yield*this.parseBlockScalarHeader(),r+=yield*this.pushSpaces(!0),yield*this.pushCount(n.length-r),yield*this.pushNewline(),yield*this.parseBlockScalar();default:return yield*this.parsePlainScalar()}}*parseFlowCollection(){let n,r,l=-1;do n=yield*this.pushNewline(),n>0?(r=yield*this.pushSpaces(!1),this.indentValue=l=r):r=0,r+=yield*this.pushSpaces(!0);while(n+r>0);const o=this.getLine();if(o===null)return this.setNext("flow");if((l!==-1&&l<this.indentNext&&o[0]!=="#"||l===0&&(o.startsWith("---")||o.startsWith("..."))&&Rt(o[3]))&&!(l===this.indentNext-1&&this.flowLevel===1&&(o[0]==="]"||o[0]==="}")))return this.flowLevel=0,yield Ol,yield*this.parseLineStart();let u=0;for(;o[u]===",";)u+=yield*this.pushCount(1),u+=yield*this.pushSpaces(!0),this.flowKey=!1;switch(u+=yield*this.pushIndicators(),o[u]){case void 0:return"flow";case"#":return yield*this.pushCount(o.length-u),"flow";case"{":case"[":return yield*this.pushCount(1),this.flowKey=!1,this.flowLevel+=1,"flow";case"}":case"]":return yield*this.pushCount(1),this.flowKey=!0,this.flowLevel-=1,this.flowLevel?"flow":"doc";case"*":return yield*this.pushUntil(Da),"flow";case'"':case"'":return this.flowKey=!0,yield*this.parseQuotedScalar();case":":{const f=this.charAt(1);if(this.flowKey||Rt(f)||f===",")return this.flowKey=!1,yield*this.pushCount(1),yield*this.pushSpaces(!0),"flow"}default:return this.flowKey=!1,yield*this.parsePlainScalar()}}*parseQuotedScalar(){const n=this.charAt(0);let r=this.buffer.indexOf(n,this.pos+1);if(n==="'")for(;r!==-1&&this.buffer[r+1]==="'";)r=this.buffer.indexOf("'",r+2);else for(;r!==-1;){let u=0;for(;this.buffer[r-1-u]==="\\";)u+=1;if(u%2===0)break;r=this.buffer.indexOf('"',r+1)}const l=this.buffer.substring(0,r);let o=l.indexOf(`
|
|
165
|
+
`,this.pos);if(o!==-1){for(;o!==-1;){const u=this.continueScalar(o+1);if(u===-1)break;o=l.indexOf(`
|
|
166
|
+
`,u)}o!==-1&&(r=o-(l[o-1]==="\r"?2:1))}if(r===-1){if(!this.atEnd)return this.setNext("quoted-scalar");r=this.buffer.length}return yield*this.pushToIndex(r+1,!1),this.flowLevel?"flow":"doc"}*parseBlockScalarHeader(){this.blockScalarIndent=-1,this.blockScalarKeep=!1;let n=this.pos;for(;;){const r=this.buffer[++n];if(r==="+")this.blockScalarKeep=!0;else if(r>"0"&&r<="9")this.blockScalarIndent=Number(r)-1;else if(r!=="-")break}return yield*this.pushUntil(r=>Rt(r)||r==="#")}*parseBlockScalar(){let n=this.pos-1,r=0,l;e:for(let u=this.pos;l=this.buffer[u];++u)switch(l){case" ":r+=1;break;case`
|
|
167
|
+
`:n=u,r=0;break;case"\r":{const f=this.buffer[u+1];if(!f&&!this.atEnd)return this.setNext("block-scalar");if(f===`
|
|
168
|
+
`)break}default:break e}if(!l&&!this.atEnd)return this.setNext("block-scalar");if(r>=this.indentNext){this.blockScalarIndent===-1?this.indentNext=r:this.indentNext=this.blockScalarIndent+(this.indentNext===0?1:this.indentNext);do{const u=this.continueScalar(n+1);if(u===-1)break;n=this.buffer.indexOf(`
|
|
169
|
+
`,u)}while(n!==-1);if(n===-1){if(!this.atEnd)return this.setNext("block-scalar");n=this.buffer.length}}let o=n+1;for(l=this.buffer[o];l===" ";)l=this.buffer[++o];if(l===" "){for(;l===" "||l===" "||l==="\r"||l===`
|
|
170
|
+
`;)l=this.buffer[++o];n=o-1}else if(!this.blockScalarKeep)do{let u=n-1,f=this.buffer[u];f==="\r"&&(f=this.buffer[--u]);const h=u;for(;f===" ";)f=this.buffer[--u];if(f===`
|
|
171
|
+
`&&u>=this.pos&&u+1+r>h)n=u;else break}while(!0);return yield $s,yield*this.pushToIndex(n+1,!0),yield*this.parseLineStart()}*parsePlainScalar(){const n=this.flowLevel>0;let r=this.pos-1,l=this.pos-1,o;for(;o=this.buffer[++l];)if(o===":"){const u=this.buffer[l+1];if(Rt(u)||n&&Yi.has(u))break;r=l}else if(Rt(o)){let u=this.buffer[l+1];if(o==="\r"&&(u===`
|
|
172
|
+
`?(l+=1,o=`
|
|
173
|
+
`,u=this.buffer[l+1]):r=l),u==="#"||n&&Yi.has(u))break;if(o===`
|
|
174
|
+
`){const f=this.continueScalar(l+1);if(f===-1)break;l=Math.max(l,f-2)}}else{if(n&&Yi.has(o))break;r=l}return!o&&!this.atEnd?this.setNext("plain-scalar"):(yield $s,yield*this.pushToIndex(r+1,!0),n?"flow":"doc")}*pushCount(n){return n>0?(yield this.buffer.substr(this.pos,n),this.pos+=n,n):0}*pushToIndex(n,r){const l=this.buffer.slice(this.pos,n);return l?(yield l,this.pos+=l.length,l.length):(r&&(yield""),0)}*pushIndicators(){switch(this.charAt(0)){case"!":return(yield*this.pushTag())+(yield*this.pushSpaces(!0))+(yield*this.pushIndicators());case"&":return(yield*this.pushUntil(Da))+(yield*this.pushSpaces(!0))+(yield*this.pushIndicators());case"-":case"?":case":":{const n=this.flowLevel>0,r=this.charAt(1);if(Rt(r)||n&&Yi.has(r))return n?this.flowKey&&(this.flowKey=!1):this.indentNext=this.indentValue+1,(yield*this.pushCount(1))+(yield*this.pushSpaces(!0))+(yield*this.pushIndicators())}}return 0}*pushTag(){if(this.charAt(1)==="<"){let n=this.pos+2,r=this.buffer[n];for(;!Rt(r)&&r!==">";)r=this.buffer[++n];return yield*this.pushToIndex(r===">"?n+1:n,!1)}else{let n=this.pos+1,r=this.buffer[n];for(;r;)if(h0.has(r))r=this.buffer[++n];else if(r==="%"&&Pd.has(this.buffer[n+1])&&Pd.has(this.buffer[n+2]))r=this.buffer[n+=3];else break;return yield*this.pushToIndex(n,!1)}}*pushNewline(){const n=this.buffer[this.pos];return n===`
|
|
175
|
+
`?yield*this.pushCount(1):n==="\r"&&this.charAt(1)===`
|
|
176
|
+
`?yield*this.pushCount(2):0}*pushSpaces(n){let r=this.pos-1,l;do l=this.buffer[++r];while(l===" "||n&&l===" ");const o=r-this.pos;return o>0&&(yield this.buffer.substr(this.pos,o),this.pos=r),o}*pushUntil(n){let r=this.pos,l=this.buffer[r];for(;!n(l);)l=this.buffer[++r];return yield*this.pushToIndex(r,!1)}}class Gh{constructor(){this.lineStarts=[],this.addNewLine=n=>this.lineStarts.push(n),this.linePos=n=>{let r=0,l=this.lineStarts.length;for(;r<l;){const u=r+l>>1;this.lineStarts[u]<n?r=u+1:l=u}if(this.lineStarts[r]===n)return{line:r+1,col:1};if(r===0)return{line:0,col:n};const o=this.lineStarts[r-1];return{line:r,col:n-o+1}}}}function Fn(i,n){for(let r=0;r<i.length;++r)if(i[r].type===n)return!0;return!1}function Md(i){for(let n=0;n<i.length;++n)switch(i[n].type){case"space":case"comment":case"newline":break;default:return n}return-1}function Xh(i){switch(i==null?void 0:i.type){case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":case"flow-collection":return!0;default:return!1}}function Gi(i){switch(i.type){case"document":return i.start;case"block-map":{const n=i.items[i.items.length-1];return n.sep??n.start}case"block-seq":return i.items[i.items.length-1].start;default:return[]}}function wr(i){var r;if(i.length===0)return[];let n=i.length;e:for(;--n>=0;)switch(i[n].type){case"doc-start":case"explicit-key-ind":case"map-value-ind":case"seq-item-ind":case"newline":break e}for(;((r=i[++n])==null?void 0:r.type)==="space";);return i.splice(n,i.length)}function jd(i){if(i.start.type==="flow-seq-start")for(const n of i.items)n.sep&&!n.value&&!Fn(n.start,"explicit-key-ind")&&!Fn(n.sep,"map-value-ind")&&(n.key&&(n.value=n.key),delete n.key,Xh(n.value)?n.value.end?Array.prototype.push.apply(n.value.end,n.sep):n.value.end=n.sep:Array.prototype.push.apply(n.start,n.sep),delete n.sep)}class cu{constructor(n){this.atNewLine=!0,this.atScalar=!1,this.indent=0,this.offset=0,this.onKeyLine=!1,this.stack=[],this.source="",this.type="",this.lexer=new Yh,this.onNewLine=n}*parse(n,r=!1){this.onNewLine&&this.offset===0&&this.onNewLine(0);for(const l of this.lexer.lex(n,r))yield*this.next(l);r||(yield*this.end())}*next(n){if(this.source=n,this.atScalar){this.atScalar=!1,yield*this.step(),this.offset+=n.length;return}const r=Jh(n);if(r)if(r==="scalar")this.atNewLine=!1,this.atScalar=!0,this.type="scalar";else{switch(this.type=r,yield*this.step(),r){case"newline":this.atNewLine=!0,this.indent=0,this.onNewLine&&this.onNewLine(this.offset+n.length);break;case"space":this.atNewLine&&n[0]===" "&&(this.indent+=n.length);break;case"explicit-key-ind":case"map-value-ind":case"seq-item-ind":this.atNewLine&&(this.indent+=n.length);break;case"doc-mode":case"flow-error-end":return;default:this.atNewLine=!1}this.offset+=n.length}else{const l=`Not a YAML token: ${n}`;yield*this.pop({type:"error",offset:this.offset,message:l,source:n}),this.offset+=n.length}}*end(){for(;this.stack.length>0;)yield*this.pop()}get sourceToken(){return{type:this.type,offset:this.offset,indent:this.indent,source:this.source}}*step(){const n=this.peek(1);if(this.type==="doc-end"&&(!n||n.type!=="doc-end")){for(;this.stack.length>0;)yield*this.pop();this.stack.push({type:"doc-end",offset:this.offset,source:this.source});return}if(!n)return yield*this.stream();switch(n.type){case"document":return yield*this.document(n);case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return yield*this.scalar(n);case"block-scalar":return yield*this.blockScalar(n);case"block-map":return yield*this.blockMap(n);case"block-seq":return yield*this.blockSequence(n);case"flow-collection":return yield*this.flowCollection(n);case"doc-end":return yield*this.documentEnd(n)}yield*this.pop()}peek(n){return this.stack[this.stack.length-n]}*pop(n){const r=n??this.stack.pop();if(!r)yield{type:"error",offset:this.offset,source:"",message:"Tried to pop an empty stack"};else if(this.stack.length===0)yield r;else{const l=this.peek(1);switch(r.type==="block-scalar"?r.indent="indent"in l?l.indent:0:r.type==="flow-collection"&&l.type==="document"&&(r.indent=0),r.type==="flow-collection"&&jd(r),l.type){case"document":l.value=r;break;case"block-scalar":l.props.push(r);break;case"block-map":{const o=l.items[l.items.length-1];if(o.value){l.items.push({start:[],key:r,sep:[]}),this.onKeyLine=!0;return}else if(o.sep)o.value=r;else{Object.assign(o,{key:r,sep:[]}),this.onKeyLine=!o.explicitKey;return}break}case"block-seq":{const o=l.items[l.items.length-1];o.value?l.items.push({start:[],value:r}):o.value=r;break}case"flow-collection":{const o=l.items[l.items.length-1];!o||o.value?l.items.push({start:[],key:r,sep:[]}):o.sep?o.value=r:Object.assign(o,{key:r,sep:[]});return}default:yield*this.pop(),yield*this.pop(r)}if((l.type==="document"||l.type==="block-map"||l.type==="block-seq")&&(r.type==="block-map"||r.type==="block-seq")){const o=r.items[r.items.length-1];o&&!o.sep&&!o.value&&o.start.length>0&&Md(o.start)===-1&&(r.indent===0||o.start.every(u=>u.type!=="comment"||u.indent<r.indent))&&(l.type==="document"?l.end=o.start:l.items.push({start:o.start}),r.items.splice(-1,1))}}}*stream(){switch(this.type){case"directive-line":yield{type:"directive",offset:this.offset,source:this.source};return;case"byte-order-mark":case"space":case"comment":case"newline":yield this.sourceToken;return;case"doc-mode":case"doc-start":{const n={type:"document",offset:this.offset,start:[]};this.type==="doc-start"&&n.start.push(this.sourceToken),this.stack.push(n);return}}yield{type:"error",offset:this.offset,message:`Unexpected ${this.type} token in YAML stream`,source:this.source}}*document(n){if(n.value)return yield*this.lineEnd(n);switch(this.type){case"doc-start":{Md(n.start)!==-1?(yield*this.pop(),yield*this.step()):n.start.push(this.sourceToken);return}case"anchor":case"tag":case"space":case"comment":case"newline":n.start.push(this.sourceToken);return}const r=this.startBlockValue(n);r?this.stack.push(r):yield{type:"error",offset:this.offset,message:`Unexpected ${this.type} token in YAML document`,source:this.source}}*scalar(n){if(this.type==="map-value-ind"){const r=Gi(this.peek(2)),l=wr(r);let o;n.end?(o=n.end,o.push(this.sourceToken),delete n.end):o=[this.sourceToken];const u={type:"block-map",offset:n.offset,indent:n.indent,items:[{start:l,key:n,sep:o}]};this.onKeyLine=!0,this.stack[this.stack.length-1]=u}else yield*this.lineEnd(n)}*blockScalar(n){switch(this.type){case"space":case"comment":case"newline":n.props.push(this.sourceToken);return;case"scalar":if(n.source=this.source,this.atNewLine=!0,this.indent=0,this.onNewLine){let r=this.source.indexOf(`
|
|
177
|
+
`)+1;for(;r!==0;)this.onNewLine(this.offset+r),r=this.source.indexOf(`
|
|
178
|
+
`,r)+1}yield*this.pop();break;default:yield*this.pop(),yield*this.step()}}*blockMap(n){var l;const r=n.items[n.items.length-1];switch(this.type){case"newline":if(this.onKeyLine=!1,r.value){const o="end"in r.value?r.value.end:void 0,u=Array.isArray(o)?o[o.length-1]:void 0;(u==null?void 0:u.type)==="comment"?o==null||o.push(this.sourceToken):n.items.push({start:[this.sourceToken]})}else r.sep?r.sep.push(this.sourceToken):r.start.push(this.sourceToken);return;case"space":case"comment":if(r.value)n.items.push({start:[this.sourceToken]});else if(r.sep)r.sep.push(this.sourceToken);else{if(this.atIndentedComment(r.start,n.indent)){const o=n.items[n.items.length-2],u=(l=o==null?void 0:o.value)==null?void 0:l.end;if(Array.isArray(u)){Array.prototype.push.apply(u,r.start),u.push(this.sourceToken),n.items.pop();return}}r.start.push(this.sourceToken)}return}if(this.indent>=n.indent){const o=!this.onKeyLine&&this.indent===n.indent,u=o&&(r.sep||r.explicitKey)&&this.type!=="seq-item-ind";let f=[];if(u&&r.sep&&!r.value){const h=[];for(let p=0;p<r.sep.length;++p){const g=r.sep[p];switch(g.type){case"newline":h.push(p);break;case"space":break;case"comment":g.indent>n.indent&&(h.length=0);break;default:h.length=0}}h.length>=2&&(f=r.sep.splice(h[1]))}switch(this.type){case"anchor":case"tag":u||r.value?(f.push(this.sourceToken),n.items.push({start:f}),this.onKeyLine=!0):r.sep?r.sep.push(this.sourceToken):r.start.push(this.sourceToken);return;case"explicit-key-ind":!r.sep&&!r.explicitKey?(r.start.push(this.sourceToken),r.explicitKey=!0):u||r.value?(f.push(this.sourceToken),n.items.push({start:f,explicitKey:!0})):this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken],explicitKey:!0}]}),this.onKeyLine=!0;return;case"map-value-ind":if(r.explicitKey)if(r.sep)if(r.value)n.items.push({start:[],key:null,sep:[this.sourceToken]});else if(Fn(r.sep,"map-value-ind"))this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:f,key:null,sep:[this.sourceToken]}]});else if(Xh(r.key)&&!Fn(r.sep,"newline")){const h=wr(r.start),p=r.key,g=r.sep;g.push(this.sourceToken),delete r.key,delete r.sep,this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:h,key:p,sep:g}]})}else f.length>0?r.sep=r.sep.concat(f,this.sourceToken):r.sep.push(this.sourceToken);else if(Fn(r.start,"newline"))Object.assign(r,{key:null,sep:[this.sourceToken]});else{const h=wr(r.start);this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:h,key:null,sep:[this.sourceToken]}]})}else r.sep?r.value||u?n.items.push({start:f,key:null,sep:[this.sourceToken]}):Fn(r.sep,"map-value-ind")?this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[],key:null,sep:[this.sourceToken]}]}):r.sep.push(this.sourceToken):Object.assign(r,{key:null,sep:[this.sourceToken]});this.onKeyLine=!0;return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const h=this.flowScalar(this.type);u||r.value?(n.items.push({start:f,key:h,sep:[]}),this.onKeyLine=!0):r.sep?this.stack.push(h):(Object.assign(r,{key:h,sep:[]}),this.onKeyLine=!0);return}default:{const h=this.startBlockValue(n);if(h){o&&h.type!=="block-seq"&&n.items.push({start:f}),this.stack.push(h);return}}}}yield*this.pop(),yield*this.step()}*blockSequence(n){var l;const r=n.items[n.items.length-1];switch(this.type){case"newline":if(r.value){const o="end"in r.value?r.value.end:void 0,u=Array.isArray(o)?o[o.length-1]:void 0;(u==null?void 0:u.type)==="comment"?o==null||o.push(this.sourceToken):n.items.push({start:[this.sourceToken]})}else r.start.push(this.sourceToken);return;case"space":case"comment":if(r.value)n.items.push({start:[this.sourceToken]});else{if(this.atIndentedComment(r.start,n.indent)){const o=n.items[n.items.length-2],u=(l=o==null?void 0:o.value)==null?void 0:l.end;if(Array.isArray(u)){Array.prototype.push.apply(u,r.start),u.push(this.sourceToken),n.items.pop();return}}r.start.push(this.sourceToken)}return;case"anchor":case"tag":if(r.value||this.indent<=n.indent)break;r.start.push(this.sourceToken);return;case"seq-item-ind":if(this.indent!==n.indent)break;r.value||Fn(r.start,"seq-item-ind")?n.items.push({start:[this.sourceToken]}):r.start.push(this.sourceToken);return}if(this.indent>n.indent){const o=this.startBlockValue(n);if(o){this.stack.push(o);return}}yield*this.pop(),yield*this.step()}*flowCollection(n){const r=n.items[n.items.length-1];if(this.type==="flow-error-end"){let l;do yield*this.pop(),l=this.peek(1);while(l&&l.type==="flow-collection")}else if(n.end.length===0){switch(this.type){case"comma":case"explicit-key-ind":!r||r.sep?n.items.push({start:[this.sourceToken]}):r.start.push(this.sourceToken);return;case"map-value-ind":!r||r.value?n.items.push({start:[],key:null,sep:[this.sourceToken]}):r.sep?r.sep.push(this.sourceToken):Object.assign(r,{key:null,sep:[this.sourceToken]});return;case"space":case"comment":case"newline":case"anchor":case"tag":!r||r.value?n.items.push({start:[this.sourceToken]}):r.sep?r.sep.push(this.sourceToken):r.start.push(this.sourceToken);return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const o=this.flowScalar(this.type);!r||r.value?n.items.push({start:[],key:o,sep:[]}):r.sep?this.stack.push(o):Object.assign(r,{key:o,sep:[]});return}case"flow-map-end":case"flow-seq-end":n.end.push(this.sourceToken);return}const l=this.startBlockValue(n);l?this.stack.push(l):(yield*this.pop(),yield*this.step())}else{const l=this.peek(2);if(l.type==="block-map"&&(this.type==="map-value-ind"&&l.indent===n.indent||this.type==="newline"&&!l.items[l.items.length-1].sep))yield*this.pop(),yield*this.step();else if(this.type==="map-value-ind"&&l.type!=="flow-collection"){const o=Gi(l),u=wr(o);jd(n);const f=n.end.splice(1,n.end.length);f.push(this.sourceToken);const h={type:"block-map",offset:n.offset,indent:n.indent,items:[{start:u,key:n,sep:f}]};this.onKeyLine=!0,this.stack[this.stack.length-1]=h}else yield*this.lineEnd(n)}}flowScalar(n){if(this.onNewLine){let r=this.source.indexOf(`
|
|
179
|
+
`)+1;for(;r!==0;)this.onNewLine(this.offset+r),r=this.source.indexOf(`
|
|
180
|
+
`,r)+1}return{type:n,offset:this.offset,indent:this.indent,source:this.source}}startBlockValue(n){switch(this.type){case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return this.flowScalar(this.type);case"block-scalar-header":return{type:"block-scalar",offset:this.offset,indent:this.indent,props:[this.sourceToken],source:""};case"flow-map-start":case"flow-seq-start":return{type:"flow-collection",offset:this.offset,indent:this.indent,start:this.sourceToken,items:[],end:[]};case"seq-item-ind":return{type:"block-seq",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken]}]};case"explicit-key-ind":{this.onKeyLine=!0;const r=Gi(n),l=wr(r);return l.push(this.sourceToken),{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:l,explicitKey:!0}]}}case"map-value-ind":{this.onKeyLine=!0;const r=Gi(n),l=wr(r);return{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:l,key:null,sep:[this.sourceToken]}]}}}return null}atIndentedComment(n,r){return this.type!=="comment"||this.indent<=r?!1:n.every(l=>l.type==="newline"||l.type==="space")}*documentEnd(n){this.type!=="doc-mode"&&(n.end?n.end.push(this.sourceToken):n.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop()))}*lineEnd(n){switch(this.type){case"comma":case"doc-start":case"doc-end":case"flow-seq-end":case"flow-map-end":case"map-value-ind":yield*this.pop(),yield*this.step();break;case"newline":this.onKeyLine=!1;case"space":case"comment":default:n.end?n.end.push(this.sourceToken):n.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop())}}}function Zh(i){const n=i.prettyErrors!==!1;return{lineCounter:i.lineCounter||n&&new Gh||null,prettyErrors:n}}function m0(i,n={}){const{lineCounter:r,prettyErrors:l}=Zh(n),o=new cu(r==null?void 0:r.addNewLine),u=new uu(n),f=Array.from(u.compose(o.parse(i)));if(l&&r)for(const h of f)h.errors.forEach(cl(i,r)),h.warnings.forEach(cl(i,r));return f.length>0?f:Object.assign([],{empty:!0},u.streamInfo())}function ep(i,n={}){const{lineCounter:r,prettyErrors:l}=Zh(n),o=new cu(r==null?void 0:r.addNewLine),u=new uu(n);let f=null;for(const h of u.compose(o.parse(i),!0,i.length))if(!f)f=h;else if(f.options.logLevel!=="silent"){f.errors.push(new Un(h.range.slice(0,2),"MULTIPLE_DOCS","Source contains multiple documents; please use YAML.parseAllDocuments()"));break}return l&&r&&(f.errors.forEach(cl(i,r)),f.warnings.forEach(cl(i,r))),f}function g0(i,n,r){let l;typeof n=="function"?l=n:r===void 0&&n&&typeof n=="object"&&(r=n);const o=ep(i,r);if(!o)return null;if(o.warnings.forEach(u=>Sh(o.options.logLevel,u)),o.errors.length>0){if(o.options.logLevel!=="silent")throw o.errors[0];o.errors=[]}return o.toJS(Object.assign({reviver:l},r))}function y0(i,n,r){let l=null;if(typeof n=="function"||Array.isArray(n)?l=n:r===void 0&&n&&(r=n),typeof r=="string"&&(r=r.length),typeof r=="number"){const o=Math.round(r);r=o<1?void 0:o>8?{indent:8}:{indent:o}}if(i===void 0){const{keepUndefined:o}=r??n??{};if(!o)return}return qn(i)&&!l?i.toString(r):new br(i,l,r).toString(r)}const v0=Object.freeze(Object.defineProperty({__proto__:null,Alias:yl,CST:d0,Composer:uu,Document:br,Lexer:Yh,LineCounter:Gh,Pair:Ze,Parser:cu,Scalar:ie,Schema:_l,YAMLError:ou,YAMLMap:wt,YAMLParseError:Un,YAMLSeq:xn,YAMLWarning:Fh,isAlias:Wn,isCollection:Ie,isDocument:qn,isMap:Mr,isNode:$e,isPair:Ce,isScalar:ve,isSeq:jr,parse:g0,parseAllDocuments:m0,parseDocument:ep,stringify:y0,visit:Nn,visitAsync:gl},Symbol.toStringTag,{value:"Module"}));function w0(i,n,r={}){var T;const l=new i.LineCounter,o={keepSourceTokens:!0,lineCounter:l,...r},u=i.parseDocument(n,o),f=[],h=E=>[l.linePos(E[0]),l.linePos(E[1])],p=E=>{f.push({message:E.message,range:[l.linePos(E.pos[0]),l.linePos(E.pos[1])]})},g=(E,O)=>{for(const v of O.items){if(v instanceof i.Scalar&&typeof v.value=="string"){const A=dl.parse(v,o,f);A&&(E.children=E.children||[],E.children.push(A));continue}if(v instanceof i.YAMLMap){x(E,v);continue}f.push({message:"Sequence items should be strings or maps",range:h(v.range||O.range)})}},x=(E,O)=>{for(const v of O.items){if(E.children=E.children||[],!(v.key instanceof i.Scalar&&typeof v.key.value=="string")){f.push({message:"Only string keys are supported",range:h(v.key.range||O.range)});continue}const $=v.key,A=v.value;if($.value==="text"){if(!(A instanceof i.Scalar&&typeof A.value=="string")){f.push({message:"Text value should be a string",range:h(v.value.range||O.range)});continue}E.children.push({kind:"text",text:ba(A.value)});continue}if($.value==="/children"){if(!(A instanceof i.Scalar&&typeof A.value=="string")||A.value!=="contain"&&A.value!=="equal"&&A.value!=="deep-equal"){f.push({message:'Strict value should be "contain", "equal" or "deep-equal"',range:h(v.value.range||O.range)});continue}E.containerMode=A.value;continue}if($.value.startsWith("/")){if(!(A instanceof i.Scalar&&typeof A.value=="string")){f.push({message:"Property value should be a string",range:h(v.value.range||O.range)});continue}E.props=E.props??{},E.props[$.value.slice(1)]=ba(A.value);continue}const B=dl.parse($,o,f);if(!B)continue;if(A instanceof i.Scalar){const j=typeof A.value;if(j!=="string"&&j!=="number"&&j!=="boolean"){f.push({message:"Node value should be a string or a sequence",range:h(v.value.range||O.range)});continue}E.children.push({...B,children:[{kind:"text",text:ba(String(A.value))}]});continue}if(A instanceof i.YAMLSeq){E.children.push(B),g(B,A);continue}f.push({message:"Map values should be strings or sequences",range:h(v.value.range||O.range)})}},S={kind:"role",role:"fragment"};return u.errors.forEach(p),f.length?{errors:f,fragment:S}:(u.contents instanceof i.YAMLSeq||f.push({message:'Aria snapshot must be a YAML sequence, elements starting with " -"',range:u.contents?h(u.contents.range):[{line:0,col:0},{line:0,col:0}]}),f.length?{errors:f,fragment:S}:(g(S,u.contents),f.length?{errors:f,fragment:S0}:((T=S.children)==null?void 0:T.length)===1?{fragment:S.children[0],errors:f}:{fragment:S,errors:f}))}const S0={kind:"role",role:"fragment"};function tp(i){return i.replace(/[\u200b\u00ad]/g,"").replace(/[\r\n\s\t]+/g," ").trim()}function ba(i){return i.startsWith("/")&&i.endsWith("/")&&i.length>1?{pattern:i.slice(1,-1)}:tp(i)}class dl{static parse(n,r,l){try{return new dl(n.value)._parse()}catch(o){if(o instanceof Rd){const u=r.prettyErrors===!1?o.message:o.message+`:
|
|
181
|
+
|
|
182
|
+
`+n.value+`
|
|
183
|
+
`+" ".repeat(o.pos)+`^
|
|
184
|
+
`;return l.push({message:u,range:[r.lineCounter.linePos(n.range[0]),r.lineCounter.linePos(n.range[0]+o.pos)]}),null}throw o}}constructor(n){this._input=n,this._pos=0,this._length=n.length}_peek(){return this._input[this._pos]||""}_next(){return this._pos<this._length?this._input[this._pos++]:null}_eof(){return this._pos>=this._length}_isWhitespace(){return!this._eof()&&/\s/.test(this._peek())}_skipWhitespace(){for(;this._isWhitespace();)this._pos++}_readIdentifier(n){this._eof()&&this._throwError(`Unexpected end of input when expecting ${n}`);const r=this._pos;for(;!this._eof()&&/[a-zA-Z]/.test(this._peek());)this._pos++;return this._input.slice(r,this._pos)}_readString(){let n="",r=!1;for(;!this._eof();){const l=this._next();if(r)n+=l,r=!1;else if(l==="\\")r=!0;else{if(l==='"')return n;n+=l}}this._throwError("Unterminated string")}_throwError(n,r=0){throw new Rd(n,r||this._pos)}_readRegex(){let n="",r=!1,l=!1;for(;!this._eof();){const o=this._next();if(r)n+=o,r=!1;else if(o==="\\")r=!0,n+=o;else{if(o==="/"&&!l)return{pattern:n};o==="["?(l=!0,n+=o):o==="]"&&l?(n+=o,l=!1):n+=o}}this._throwError("Unterminated regex")}_readStringOrRegex(){const n=this._peek();return n==='"'?(this._next(),tp(this._readString())):n==="/"?(this._next(),this._readRegex()):null}_readAttributes(n){let r=this._pos;for(;this._skipWhitespace(),this._peek()==="[";){this._next(),this._skipWhitespace(),r=this._pos;const l=this._readIdentifier("attribute");this._skipWhitespace();let o="";if(this._peek()==="=")for(this._next(),this._skipWhitespace(),r=this._pos;this._peek()!=="]"&&!this._isWhitespace()&&!this._eof();)o+=this._next();this._skipWhitespace(),this._peek()!=="]"&&this._throwError("Expected ]"),this._next(),this._applyAttribute(n,l,o||"true",r)}}_parse(){this._skipWhitespace();const n=this._readIdentifier("role");this._skipWhitespace();const r=this._readStringOrRegex()||"",l={kind:"role",role:n,name:r};return this._readAttributes(l),this._skipWhitespace(),this._eof()||this._throwError("Unexpected input"),l}_applyAttribute(n,r,l,o){if(r==="checked"){this._assert(l==="true"||l==="false"||l==="mixed",'Value of "checked" attribute must be a boolean or "mixed"',o),n.checked=l==="true"?!0:l==="false"?!1:"mixed";return}if(r==="disabled"){this._assert(l==="true"||l==="false",'Value of "disabled" attribute must be a boolean',o),n.disabled=l==="true";return}if(r==="expanded"){this._assert(l==="true"||l==="false",'Value of "expanded" attribute must be a boolean',o),n.expanded=l==="true";return}if(r==="level"){this._assert(!isNaN(Number(l)),'Value of "level" attribute must be a number',o),n.level=Number(l);return}if(r==="pressed"){this._assert(l==="true"||l==="false"||l==="mixed",'Value of "pressed" attribute must be a boolean or "mixed"',o),n.pressed=l==="true"?!0:l==="false"?!1:"mixed";return}if(r==="selected"){this._assert(l==="true"||l==="false",'Value of "selected" attribute must be a boolean',o),n.selected=l==="true";return}this._assert(!1,`Unsupported attribute [${r}]`,o)}_assert(n,r,l){n||this._throwError(r||"Assertion error",l)}}class Rd extends Error{constructor(n,r){super(n),this.pos=r}}const k0=({sources:i,paused:n,log:r,mode:l})=>{var W;const[o,u]=ye.useState(),[f,h]=ye.useState(),[p,g]=Fa("recorderPropertiesTab","log"),[x,S]=ye.useState(),[T,E]=ye.useState(),O=o||f||((W=i[0])==null?void 0:W.id),v=ye.useMemo(()=>{if(O){const j=i.find(Y=>Y.id===O);if(j)return j}return $g()},[i,O]),[w,$]=ye.useState("");window.playwrightElementPicked=(j,Y)=>{const z=v.language;$(oh(z,j.selector)),S(j.ariaSnapshot),E([]),Y&&p!=="locator"&&p!=="aria"&&g("locator"),l==="inspecting"&&p==="aria"||window.dispatch({event:"setMode",params:{mode:l==="inspecting"?"standby":"recording"}}).catch(()=>{})},window.playwrightSetRunningFile=h;const A=ye.useRef(null);ye.useLayoutEffect(()=>{var j;(j=A.current)==null||j.scrollIntoView({block:"center",inline:"nearest"})},[A]),ye.useEffect(()=>{const j=Y=>{switch(Y.key){case"F8":Y.preventDefault(),n?window.dispatch({event:"resume"}):window.dispatch({event:"pause"});break;case"F10":Y.preventDefault(),n&&window.dispatch({event:"step"});break}};return document.addEventListener("keydown",j),()=>document.removeEventListener("keydown",j)},[n]);const B=ye.useCallback(j=>{(l==="none"||l==="inspecting")&&window.dispatch({event:"setMode",params:{mode:"standby"}}),$(j),window.dispatch({event:"highlightRequested",params:{selector:j}})},[l]),V=ye.useCallback(j=>{(l==="none"||l==="inspecting")&&window.dispatch({event:"setMode",params:{mode:"standby"}});const{fragment:Y,errors:z}=w0(v0,j,{prettyErrors:!1}),P=z.map(le=>({message:le.message,line:le.range[1].line,column:le.range[1].col,type:"subtle-error"}));E(P),S(j),z.length||window.dispatch({event:"highlightRequested",params:{ariaTemplate:Y}})},[l]);return H.jsxs("div",{className:"recorder",children:[H.jsxs(bd,{children:[H.jsx(vt,{icon:"circle-large-filled",title:"Record",toggled:l==="recording"||l==="recording-inspecting"||l==="assertingText"||l==="assertingVisibility",onClick:()=>{window.dispatch({event:"setMode",params:{mode:l==="none"||l==="standby"||l==="inspecting"?"recording":"standby"}})},children:"Record"}),H.jsx(kd,{}),H.jsx(vt,{icon:"inspect",title:"Pick locator",toggled:l==="inspecting"||l==="recording-inspecting",onClick:()=>{const j={inspecting:"standby",none:"inspecting",standby:"inspecting",recording:"recording-inspecting","recording-inspecting":"recording",assertingText:"recording-inspecting",assertingVisibility:"recording-inspecting",assertingValue:"recording-inspecting",assertingSnapshot:"recording-inspecting"}[l];window.dispatch({event:"setMode",params:{mode:j}}).catch(()=>{})}}),H.jsx(vt,{icon:"eye",title:"Assert visibility",toggled:l==="assertingVisibility",disabled:l==="none"||l==="standby"||l==="inspecting",onClick:()=>{window.dispatch({event:"setMode",params:{mode:l==="assertingVisibility"?"recording":"assertingVisibility"}})}}),H.jsx(vt,{icon:"whole-word",title:"Assert text",toggled:l==="assertingText",disabled:l==="none"||l==="standby"||l==="inspecting",onClick:()=>{window.dispatch({event:"setMode",params:{mode:l==="assertingText"?"recording":"assertingText"}})}}),H.jsx(vt,{icon:"symbol-constant",title:"Assert value",toggled:l==="assertingValue",disabled:l==="none"||l==="standby"||l==="inspecting",onClick:()=>{window.dispatch({event:"setMode",params:{mode:l==="assertingValue"?"recording":"assertingValue"}})}}),H.jsx(vt,{icon:"gist",title:"Assert snapshot",toggled:l==="assertingSnapshot",disabled:l==="none"||l==="standby"||l==="inspecting",onClick:()=>{window.dispatch({event:"setMode",params:{mode:l==="assertingSnapshot"?"recording":"assertingSnapshot"}})}}),H.jsx(kd,{}),H.jsx(vt,{icon:"files",title:"Copy",disabled:!v||!v.text,onClick:()=>{cd(v.text)}}),H.jsx(vt,{icon:"debug-continue",title:"Resume (F8)",ariaLabel:"Resume",disabled:!n,onClick:()=>{window.dispatch({event:"resume"})}}),H.jsx(vt,{icon:"debug-pause",title:"Pause (F8)",ariaLabel:"Pause",disabled:n,onClick:()=>{window.dispatch({event:"pause"})}}),H.jsx(vt,{icon:"debug-step-over",title:"Step over (F10)",ariaLabel:"Step over",disabled:!n,onClick:()=>{window.dispatch({event:"step"})}}),H.jsx("div",{style:{flex:"auto"}}),H.jsx("div",{children:"Target:"}),H.jsx(Og,{fileId:O,sources:i,setFileId:j=>{u(j),window.dispatch({event:"fileChanged",params:{file:j}})}}),H.jsx(vt,{icon:"clear-all",title:"Clear",disabled:!v||!v.text,onClick:()=>{window.dispatch({event:"clear"})}}),H.jsx(vt,{icon:"color-mode",title:"Toggle color mode",toggled:!1,onClick:()=>og()})]}),H.jsx(_g,{sidebarSize:200,main:H.jsx(Oa,{text:v.text,language:v.language,highlight:v.highlight,revealLine:v.revealLine,readOnly:!0,lineNumbers:!0}),sidebar:H.jsx(Cg,{rightToolbar:p==="locator"||p==="aria"?[H.jsx(vt,{icon:"files",title:"Copy",onClick:()=>cd((p==="locator"?w:x)||"")},1)]:[],tabs:[{id:"locator",title:"Locator",render:()=>H.jsx(Oa,{text:w,placeholder:"Type locator to inspect",language:v.language,focusOnChange:!0,onChange:B,wrapLines:!0})},{id:"log",title:"Log",render:()=>H.jsx(oy,{language:v.language,log:Array.from(r.values())})},{id:"aria",title:"Aria",render:()=>H.jsx(Oa,{text:x||"",placeholder:"Type aria template to match",language:"yaml",onChange:V,highlight:T,wrapLines:!0})}],selectedTab:p,setSelectedTab:g})})]})},E0=({})=>{const[i,n]=ye.useState([]),[r,l]=ye.useState(!1),[o,u]=ye.useState(new Map),[f,h]=ye.useState("none");return ye.useLayoutEffect(()=>{window.playwrightSetMode=h,window.playwrightSetSources=(p,g)=>{n(p),window.playwrightSourcesEchoForTest=p,document.title=g?`Playwright Inspector - ${g}`:"Playwright Inspector"},window.playwrightSetPaused=l,window.playwrightUpdateLogs=p=>{u(g=>{const x=new Map(g);for(const S of p)S.reveal=!g.has(S.id),x.set(S.id,S);return x})}},[]),H.jsx(k0,{sources:i,paused:r,log:o,mode:f})};(async()=>(ig(),pg.createRoot(document.querySelector("#root")).render(H.jsx(E0,{}))))();export{Xm as g};
|