@jterrats/open-orchestra 1.1.2 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +14 -1
- package/CHANGELOG.md +48 -0
- package/CLAUDE.md +14 -1
- package/README.md +21 -6
- package/dist/autonomous-phase-lifecycle.js +52 -2
- package/dist/autonomous-phase-lifecycle.js.map +1 -1
- package/dist/autonomous-run-state.d.ts +3 -1
- package/dist/autonomous-run-state.js +28 -2
- package/dist/autonomous-run-state.js.map +1 -1
- package/dist/autonomous-run-store.js +9 -0
- package/dist/autonomous-run-store.js.map +1 -1
- package/dist/benchmark.js +54 -6
- package/dist/benchmark.js.map +1 -1
- package/dist/capability-commands.d.ts +2 -0
- package/dist/capability-commands.js +82 -0
- package/dist/capability-commands.js.map +1 -0
- package/dist/capture-commands.d.ts +16 -0
- package/dist/capture-commands.js +70 -0
- package/dist/capture-commands.js.map +1 -0
- package/dist/cli-capability-catalog.d.ts +10 -0
- package/dist/cli-capability-catalog.js +110 -0
- package/dist/cli-capability-catalog.js.map +1 -0
- package/dist/cli-capability-data.d.ts +2 -0
- package/dist/cli-capability-data.js +233 -0
- package/dist/cli-capability-data.js.map +1 -0
- package/dist/cli-capability-renderer.d.ts +2 -0
- package/dist/cli-capability-renderer.js +43 -0
- package/dist/cli-capability-renderer.js.map +1 -0
- package/dist/cli-capability-types.d.ts +30 -0
- package/dist/cli-capability-types.js +2 -0
- package/dist/cli-capability-types.js.map +1 -0
- package/dist/command-manifest.js +11 -5
- package/dist/command-manifest.js.map +1 -1
- package/dist/command-routes-integrations.js +2 -1
- package/dist/command-routes-integrations.js.map +1 -1
- package/dist/command-routes.js +8 -1
- package/dist/command-routes.js.map +1 -1
- package/dist/commands.d.ts +4 -2
- package/dist/commands.js +7 -2
- package/dist/commands.js.map +1 -1
- package/dist/constants.js +2 -0
- package/dist/constants.js.map +1 -1
- package/dist/delivery-commands.js +1 -0
- package/dist/delivery-commands.js.map +1 -1
- package/dist/delivery-dashboard-charts.js +7 -3
- package/dist/delivery-dashboard-charts.js.map +1 -1
- package/dist/delivery-dashboard-types.d.ts +4 -0
- package/dist/delivery-dashboard.js +6 -0
- package/dist/delivery-dashboard.js.map +1 -1
- package/dist/effort-classification.d.ts +1 -0
- package/dist/effort-classification.js +15 -0
- package/dist/effort-classification.js.map +1 -1
- package/dist/fs-utils.js +6 -5
- package/dist/fs-utils.js.map +1 -1
- package/dist/mcp-integrations.d.ts +9 -2
- package/dist/mcp-integrations.js +50 -13
- package/dist/mcp-integrations.js.map +1 -1
- package/dist/mcp-oauth-proxy.d.ts +8 -0
- package/dist/mcp-oauth-proxy.js +25 -0
- package/dist/mcp-oauth-proxy.js.map +1 -1
- package/dist/mcp-runtime-config.d.ts +55 -0
- package/dist/mcp-runtime-config.js +252 -0
- package/dist/mcp-runtime-config.js.map +1 -0
- package/dist/mcp-tool-adapter.js +2 -4
- package/dist/mcp-tool-adapter.js.map +1 -1
- package/dist/model-providers.d.ts +1 -1
- package/dist/model-providers.js +1 -1
- package/dist/model-providers.js.map +1 -1
- package/dist/ollama-provider.d.ts +7 -0
- package/dist/ollama-provider.js +41 -15
- package/dist/ollama-provider.js.map +1 -1
- package/dist/phase-playbooks.js +17 -0
- package/dist/phase-playbooks.js.map +1 -1
- package/dist/planning-commands.js +5 -0
- package/dist/planning-commands.js.map +1 -1
- package/dist/qa-evidence-validation.d.ts +1 -1
- package/dist/qa-evidence-validation.js +3 -1
- package/dist/qa-evidence-validation.js.map +1 -1
- package/dist/quality-contracts.js +1 -1
- package/dist/quality-contracts.js.map +1 -1
- package/dist/release-inclusion.js +1 -1
- package/dist/release-inclusion.js.map +1 -1
- package/dist/runtime-bootstrap.js +13 -0
- package/dist/runtime-bootstrap.js.map +1 -1
- package/dist/runtime-child-prompt.js +25 -0
- package/dist/runtime-child-prompt.js.map +1 -1
- package/dist/runtime-commands.d.ts +3 -0
- package/dist/runtime-commands.js +96 -0
- package/dist/runtime-commands.js.map +1 -1
- package/dist/runtime-events.d.ts +48 -0
- package/dist/runtime-events.js +255 -0
- package/dist/runtime-events.js.map +1 -0
- package/dist/runtime-execution-renderer.js +8 -0
- package/dist/runtime-execution-renderer.js.map +1 -1
- package/dist/runtime-parent-actions.js +3 -0
- package/dist/runtime-parent-actions.js.map +1 -1
- package/dist/runtime-spawn-bridge.js +15 -5
- package/dist/runtime-spawn-bridge.js.map +1 -1
- package/dist/sonar-preflight.js +21 -1
- package/dist/sonar-preflight.js.map +1 -1
- package/dist/sprint-metrics.js +7 -1
- package/dist/sprint-metrics.js.map +1 -1
- package/dist/task-graph-commands.js +48 -0
- package/dist/task-graph-commands.js.map +1 -1
- package/dist/tool-commands.d.ts +1 -0
- package/dist/tool-commands.js +129 -14
- package/dist/tool-commands.js.map +1 -1
- package/dist/types/metrics.d.ts +5 -1
- package/dist/types/runtime.d.ts +3 -0
- package/dist/types/tasks.d.ts +24 -1
- package/dist/types/workflow-run.d.ts +16 -0
- package/dist/types.d.ts +5 -3
- package/dist/types.js.map +1 -1
- package/dist/validation.js +6 -0
- package/dist/validation.js.map +1 -1
- package/dist/verifier-contracts.d.ts +29 -0
- package/dist/verifier-contracts.js +184 -0
- package/dist/verifier-contracts.js.map +1 -0
- package/dist/web-api-read-routes.d.ts +1 -0
- package/dist/web-api-read-routes.js +6 -1
- package/dist/web-api-read-routes.js.map +1 -1
- package/dist/web-api.js +58 -1
- package/dist/web-api.js.map +1 -1
- package/dist/web-console/assets/index-Cip-y4WE.css +1 -0
- package/dist/web-console/assets/index-CuWjFxss.js +11 -0
- package/dist/web-console/index.html +2 -2
- package/dist/workflow-approval-service.js +36 -2
- package/dist/workflow-approval-service.js.map +1 -1
- package/dist/workflow-continuation-policy.d.ts +3 -0
- package/dist/workflow-continuation-policy.js +20 -0
- package/dist/workflow-continuation-policy.js.map +1 -0
- package/dist/workflow-correction-context.d.ts +30 -0
- package/dist/workflow-correction-context.js +117 -0
- package/dist/workflow-correction-context.js.map +1 -0
- package/dist/workflow-evidence-service.js +31 -22
- package/dist/workflow-evidence-service.js.map +1 -1
- package/dist/workflow-gates.js +6 -0
- package/dist/workflow-gates.js.map +1 -1
- package/dist/workflow-handoff-assessment.js +10 -2
- package/dist/workflow-handoff-assessment.js.map +1 -1
- package/dist/workflow-handoff-contract.d.ts +7 -0
- package/dist/workflow-handoff-contract.js +18 -0
- package/dist/workflow-handoff-contract.js.map +1 -1
- package/dist/workflow-phase-planner.js +56 -22
- package/dist/workflow-phase-planner.js.map +1 -1
- package/dist/workflow-return-routing.d.ts +14 -0
- package/dist/workflow-return-routing.js +61 -0
- package/dist/workflow-return-routing.js.map +1 -0
- package/dist/workflow-run-commands.js +173 -52
- package/dist/workflow-run-commands.js.map +1 -1
- package/dist/workflow-services.js +6 -3
- package/dist/workflow-services.js.map +1 -1
- package/dist/workflow-task-service.js +15 -7
- package/dist/workflow-task-service.js.map +1 -1
- package/docs/autonomous-workflow.md +10 -0
- package/docs/ci-self-hosted-runners.md +82 -0
- package/docs/command-contracts.md +21 -0
- package/docs/e2e-test-batteries.md +115 -25
- package/docs/runtime-adapters.md +4 -0
- package/docs/runtime-llm-flow.md +6 -3
- package/docs/security-env-vars.md +1 -0
- package/docs/sonar-quality-gates.md +19 -9
- package/docs/verifier-contracts.md +87 -0
- package/package.json +7 -3
- package/site/dist/assets/{index-Bi8l6tCE.js → index-B1Xsl_Kg.js} +1 -1
- package/site/dist/index.html +1 -1
- package/dist/web-console/assets/index--_RLc7Zp.js +0 -11
- package/dist/web-console/assets/index-Cxo3REa4.css +0 -1
|
@@ -7,4 +7,4 @@ var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=
|
|
|
7
7
|
Error generating stack: `+e.message+`
|
|
8
8
|
`+e.stack}}var Ae=Object.prototype.hasOwnProperty,je=t.unstable_scheduleCallback,Me=t.unstable_cancelCallback,Ne=t.unstable_shouldYield,Pe=t.unstable_requestPaint,Fe=t.unstable_now,Ie=t.unstable_getCurrentPriorityLevel,Le=t.unstable_ImmediatePriority,Re=t.unstable_UserBlockingPriority,ze=t.unstable_NormalPriority,Be=t.unstable_LowPriority,Ve=t.unstable_IdlePriority,He=t.log,Ue=t.unstable_setDisableYieldValue,We=null,Ge=null;function Ke(e){if(typeof He==`function`&&Ue(e),Ge&&typeof Ge.setStrictMode==`function`)try{Ge.setStrictMode(We,e)}catch{}}var qe=Math.clz32?Math.clz32:Xe,Je=Math.log,Ye=Math.LN2;function Xe(e){return e>>>=0,e===0?32:31-(Je(e)/Ye|0)|0}var Ze=256,Qe=262144,$e=4194304;function et(e){var t=e&42;if(t!==0)return t;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:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function tt(e,t,n){var r=e.pendingLanes;if(r===0)return 0;var i=0,a=e.suspendedLanes,o=e.pingedLanes;e=e.warmLanes;var s=r&134217727;return s===0?(s=r&~a,s===0?o===0?n||(n=r&~e,n!==0&&(i=et(n))):i=et(o):i=et(s)):(r=s&~a,r===0?(o&=s,o===0?n||(n=s&~e,n!==0&&(i=et(n))):i=et(o)):i=et(r)),i===0?0:t!==0&&t!==i&&(t&a)===0&&(a=i&-i,n=t&-t,a>=n||a===32&&n&4194048)?t:i}function nt(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function rt(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32: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:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function it(){var e=$e;return $e<<=1,!($e&62914560)&&($e=4194304),e}function at(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function ot(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function st(e,t,n,r,i,a){var o=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var s=e.entanglements,c=e.expirationTimes,l=e.hiddenUpdates;for(n=o&~n;0<n;){var u=31-qe(n),d=1<<u;s[u]=0,c[u]=-1;var f=l[u];if(f!==null)for(l[u]=null,u=0;u<f.length;u++){var p=f[u];p!==null&&(p.lane&=-536870913)}n&=~d}r!==0&&ct(e,r,0),a!==0&&i===0&&e.tag!==0&&(e.suspendedLanes|=a&~(o&~t))}function ct(e,t,n){e.pendingLanes|=t,e.suspendedLanes&=~t;var r=31-qe(t);e.entangledLanes|=t,e.entanglements[r]=e.entanglements[r]|1073741824|n&261930}function lt(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-qe(n),i=1<<r;i&t|e[r]&t&&(e[r]|=t),n&=~i}}function ut(e,t){var n=t&-t;return n=n&42?1:dt(n),(n&(e.suspendedLanes|t))===0?n:0}function dt(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;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:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function ft(e){return e&=-e,2<e?8<e?e&134217727?32:268435456:8:2}function pt(){var e=E.p;return e===0?(e=window.event,e===void 0?32:mp(e.type)):e}function mt(e,t){var n=E.p;try{return E.p=e,t()}finally{E.p=n}}var ht=Math.random().toString(36).slice(2),gt=`__reactFiber$`+ht,_t=`__reactProps$`+ht,vt=`__reactContainer$`+ht,yt=`__reactEvents$`+ht,bt=`__reactListeners$`+ht,xt=`__reactHandles$`+ht,St=`__reactResources$`+ht,Ct=`__reactMarker$`+ht;function wt(e){delete e[gt],delete e[_t],delete e[yt],delete e[bt],delete e[xt]}function Tt(e){var t=e[gt];if(t)return t;for(var n=e.parentNode;n;){if(t=n[vt]||n[gt]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=df(e);e!==null;){if(n=e[gt])return n;e=df(e)}return t}e=n,n=e.parentNode}return null}function Et(e){if(e=e[gt]||e[vt]){var t=e.tag;if(t===5||t===6||t===13||t===31||t===26||t===27||t===3)return e}return null}function Dt(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e.stateNode;throw Error(i(33))}function Ot(e){var t=e[St];return t||=e[St]={hoistableStyles:new Map,hoistableScripts:new Map},t}function k(e){e[Ct]=!0}var kt=new Set,At={};function jt(e,t){Mt(e,t),Mt(e+`Capture`,t)}function Mt(e,t){for(At[e]=t,e=0;e<t.length;e++)kt.add(t[e])}var Nt=RegExp(`^[: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]*$`),Pt={},Ft={};function It(e){return Ae.call(Ft,e)?!0:Ae.call(Pt,e)?!1:Nt.test(e)?Ft[e]=!0:(Pt[e]=!0,!1)}function Lt(e,t,n){if(It(t))if(n===null)e.removeAttribute(t);else{switch(typeof n){case`undefined`:case`function`:case`symbol`:e.removeAttribute(t);return;case`boolean`:var r=t.toLowerCase().slice(0,5);if(r!==`data-`&&r!==`aria-`){e.removeAttribute(t);return}}e.setAttribute(t,``+n)}}function Rt(e,t,n){if(n===null)e.removeAttribute(t);else{switch(typeof n){case`undefined`:case`function`:case`symbol`:case`boolean`:e.removeAttribute(t);return}e.setAttribute(t,``+n)}}function zt(e,t,n,r){if(r===null)e.removeAttribute(n);else{switch(typeof r){case`undefined`:case`function`:case`symbol`:case`boolean`:e.removeAttribute(n);return}e.setAttributeNS(t,n,``+r)}}function Bt(e){switch(typeof e){case`bigint`:case`boolean`:case`number`:case`string`:case`undefined`:return e;case`object`:return e;default:return``}}function Vt(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()===`input`&&(t===`checkbox`||t===`radio`)}function Ht(e,t,n){var r=Object.getOwnPropertyDescriptor(e.constructor.prototype,t);if(!e.hasOwnProperty(t)&&r!==void 0&&typeof r.get==`function`&&typeof r.set==`function`){var i=r.get,a=r.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(e){n=``+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(e){n=``+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Ut(e){if(!e._valueTracker){var t=Vt(e)?`checked`:`value`;e._valueTracker=Ht(e,t,``+e[t])}}function Wt(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r=``;return e&&(r=Vt(e)?e.checked?`true`:`false`:e.value),e=r,e===n?!1:(t.setValue(e),!0)}function Gt(e){if(e||=typeof document<`u`?document:void 0,e===void 0)return null;try{return e.activeElement||e.body}catch{return e.body}}var Kt=/[\n"\\]/g;function qt(e){return e.replace(Kt,function(e){return`\\`+e.charCodeAt(0).toString(16)+` `})}function Jt(e,t,n,r,i,a,o,s){e.name=``,o!=null&&typeof o!=`function`&&typeof o!=`symbol`&&typeof o!=`boolean`?e.type=o:e.removeAttribute(`type`),t==null?o!==`submit`&&o!==`reset`||e.removeAttribute(`value`):o===`number`?(t===0&&e.value===``||e.value!=t)&&(e.value=``+Bt(t)):e.value!==``+Bt(t)&&(e.value=``+Bt(t)),t==null?n==null?r!=null&&e.removeAttribute(`value`):Xt(e,o,Bt(n)):Xt(e,o,Bt(t)),i==null&&a!=null&&(e.defaultChecked=!!a),i!=null&&(e.checked=i&&typeof i!=`function`&&typeof i!=`symbol`),s!=null&&typeof s!=`function`&&typeof s!=`symbol`&&typeof s!=`boolean`?e.name=``+Bt(s):e.removeAttribute(`name`)}function Yt(e,t,n,r,i,a,o,s){if(a!=null&&typeof a!=`function`&&typeof a!=`symbol`&&typeof a!=`boolean`&&(e.type=a),t!=null||n!=null){if(!(a!==`submit`&&a!==`reset`||t!=null)){Ut(e);return}n=n==null?``:``+Bt(n),t=t==null?n:``+Bt(t),s||t===e.value||(e.value=t),e.defaultValue=t}r??=i,r=typeof r!=`function`&&typeof r!=`symbol`&&!!r,e.checked=s?e.checked:!!r,e.defaultChecked=!!r,o!=null&&typeof o!=`function`&&typeof o!=`symbol`&&typeof o!=`boolean`&&(e.name=o),Ut(e)}function Xt(e,t,n){t===`number`&&Gt(e.ownerDocument)===e||e.defaultValue===``+n||(e.defaultValue=``+n)}function Zt(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i<n.length;i++)t[`$`+n[i]]=!0;for(n=0;n<e.length;n++)i=t.hasOwnProperty(`$`+e[n].value),e[n].selected!==i&&(e[n].selected=i),i&&r&&(e[n].defaultSelected=!0)}else{for(n=``+Bt(n),t=null,i=0;i<e.length;i++){if(e[i].value===n){e[i].selected=!0,r&&(e[i].defaultSelected=!0);return}t!==null||e[i].disabled||(t=e[i])}t!==null&&(t.selected=!0)}}function Qt(e,t,n){if(t!=null&&(t=``+Bt(t),t!==e.value&&(e.value=t),n==null)){e.defaultValue!==t&&(e.defaultValue=t);return}e.defaultValue=n==null?``:``+Bt(n)}function $t(e,t,n,r){if(t==null){if(r!=null){if(n!=null)throw Error(i(92));if(ue(r)){if(1<r.length)throw Error(i(93));r=r[0]}n=r}n??=``,t=n}n=Bt(t),e.defaultValue=n,r=e.textContent,r===n&&r!==``&&r!==null&&(e.value=r),Ut(e)}function en(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var tn=new Set(`animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp`.split(` `));function nn(e,t,n){var r=t.indexOf(`--`)===0;n==null||typeof n==`boolean`||n===``?r?e.setProperty(t,``):t===`float`?e.cssFloat=``:e[t]=``:r?e.setProperty(t,n):typeof n!=`number`||n===0||tn.has(t)?t===`float`?e.cssFloat=n:e[t]=(``+n).trim():e[t]=n+`px`}function rn(e,t,n){if(t!=null&&typeof t!=`object`)throw Error(i(62));if(e=e.style,n!=null){for(var r in n)!n.hasOwnProperty(r)||t!=null&&t.hasOwnProperty(r)||(r.indexOf(`--`)===0?e.setProperty(r,``):r===`float`?e.cssFloat=``:e[r]=``);for(var a in t)r=t[a],t.hasOwnProperty(a)&&n[a]!==r&&nn(e,a,r)}else for(var o in t)t.hasOwnProperty(o)&&nn(e,o,t[o])}function an(e){if(e.indexOf(`-`)===-1)return!1;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 on=new Map([[`acceptCharset`,`accept-charset`],[`htmlFor`,`for`],[`httpEquiv`,`http-equiv`],[`crossOrigin`,`crossorigin`],[`accentHeight`,`accent-height`],[`alignmentBaseline`,`alignment-baseline`],[`arabicForm`,`arabic-form`],[`baselineShift`,`baseline-shift`],[`capHeight`,`cap-height`],[`clipPath`,`clip-path`],[`clipRule`,`clip-rule`],[`colorInterpolation`,`color-interpolation`],[`colorInterpolationFilters`,`color-interpolation-filters`],[`colorProfile`,`color-profile`],[`colorRendering`,`color-rendering`],[`dominantBaseline`,`dominant-baseline`],[`enableBackground`,`enable-background`],[`fillOpacity`,`fill-opacity`],[`fillRule`,`fill-rule`],[`floodColor`,`flood-color`],[`floodOpacity`,`flood-opacity`],[`fontFamily`,`font-family`],[`fontSize`,`font-size`],[`fontSizeAdjust`,`font-size-adjust`],[`fontStretch`,`font-stretch`],[`fontStyle`,`font-style`],[`fontVariant`,`font-variant`],[`fontWeight`,`font-weight`],[`glyphName`,`glyph-name`],[`glyphOrientationHorizontal`,`glyph-orientation-horizontal`],[`glyphOrientationVertical`,`glyph-orientation-vertical`],[`horizAdvX`,`horiz-adv-x`],[`horizOriginX`,`horiz-origin-x`],[`imageRendering`,`image-rendering`],[`letterSpacing`,`letter-spacing`],[`lightingColor`,`lighting-color`],[`markerEnd`,`marker-end`],[`markerMid`,`marker-mid`],[`markerStart`,`marker-start`],[`overlinePosition`,`overline-position`],[`overlineThickness`,`overline-thickness`],[`paintOrder`,`paint-order`],[`panose-1`,`panose-1`],[`pointerEvents`,`pointer-events`],[`renderingIntent`,`rendering-intent`],[`shapeRendering`,`shape-rendering`],[`stopColor`,`stop-color`],[`stopOpacity`,`stop-opacity`],[`strikethroughPosition`,`strikethrough-position`],[`strikethroughThickness`,`strikethrough-thickness`],[`strokeDasharray`,`stroke-dasharray`],[`strokeDashoffset`,`stroke-dashoffset`],[`strokeLinecap`,`stroke-linecap`],[`strokeLinejoin`,`stroke-linejoin`],[`strokeMiterlimit`,`stroke-miterlimit`],[`strokeOpacity`,`stroke-opacity`],[`strokeWidth`,`stroke-width`],[`textAnchor`,`text-anchor`],[`textDecoration`,`text-decoration`],[`textRendering`,`text-rendering`],[`transformOrigin`,`transform-origin`],[`underlinePosition`,`underline-position`],[`underlineThickness`,`underline-thickness`],[`unicodeBidi`,`unicode-bidi`],[`unicodeRange`,`unicode-range`],[`unitsPerEm`,`units-per-em`],[`vAlphabetic`,`v-alphabetic`],[`vHanging`,`v-hanging`],[`vIdeographic`,`v-ideographic`],[`vMathematical`,`v-mathematical`],[`vectorEffect`,`vector-effect`],[`vertAdvY`,`vert-adv-y`],[`vertOriginX`,`vert-origin-x`],[`vertOriginY`,`vert-origin-y`],[`wordSpacing`,`word-spacing`],[`writingMode`,`writing-mode`],[`xmlnsXlink`,`xmlns:xlink`],[`xHeight`,`x-height`]]),sn=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function cn(e){return sn.test(``+e)?`javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')`:e}function ln(){}var un=null;function dn(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var fn=null,pn=null;function mn(e){var t=Et(e);if(t&&(e=t.stateNode)){var n=e[_t]||null;a:switch(e=t.stateNode,t.type){case`input`:if(Jt(e,n.value,n.defaultValue,n.defaultValue,n.checked,n.defaultChecked,n.type,n.name),t=n.name,n.type===`radio`&&t!=null){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(`input[name="`+qt(``+t)+`"][type="radio"]`),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var a=r[_t]||null;if(!a)throw Error(i(90));Jt(r,a.value,a.defaultValue,a.defaultValue,a.checked,a.defaultChecked,a.type,a.name)}}for(t=0;t<n.length;t++)r=n[t],r.form===e.form&&Wt(r)}break a;case`textarea`:Qt(e,n.value,n.defaultValue);break a;case`select`:t=n.value,t!=null&&Zt(e,!!n.multiple,t,!1)}}}var hn=!1;function gn(e,t,n){if(hn)return e(t,n);hn=!0;try{return e(t)}finally{if(hn=!1,(fn!==null||pn!==null)&&(bu(),fn&&(t=fn,e=pn,pn=fn=null,mn(t),e)))for(t=0;t<e.length;t++)mn(e[t])}}function _n(e,t){var n=e.stateNode;if(n===null)return null;var r=n[_t]||null;if(r===null)return null;n=r[t];a:switch(t){case`onClick`:case`onClickCapture`:case`onDoubleClick`:case`onDoubleClickCapture`:case`onMouseDown`:case`onMouseDownCapture`:case`onMouseMove`:case`onMouseMoveCapture`:case`onMouseUp`:case`onMouseUpCapture`:case`onMouseEnter`:(r=!r.disabled)||(e=e.type,r=!(e===`button`||e===`input`||e===`select`||e===`textarea`)),e=!r;break a;default:e=!1}if(e)return null;if(n&&typeof n!=`function`)throw Error(i(231,t,typeof n));return n}var vn=!(typeof window>`u`||window.document===void 0||window.document.createElement===void 0),yn=!1;if(vn)try{var bn={};Object.defineProperty(bn,`passive`,{get:function(){yn=!0}}),window.addEventListener(`test`,bn,bn),window.removeEventListener(`test`,bn,bn)}catch{yn=!1}var xn=null,Sn=null,Cn=null;function wn(){if(Cn)return Cn;var e,t=Sn,n=t.length,r,i=`value`in xn?xn.value:xn.textContent,a=i.length;for(e=0;e<n&&t[e]===i[e];e++);var o=n-e;for(r=1;r<=o&&t[n-r]===i[a-r];r++);return Cn=i.slice(e,1<r?1-r:void 0)}function Tn(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 En(){return!0}function Dn(){return!1}function On(e){function t(t,n,r,i,a){for(var o in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=i,this.target=a,this.currentTarget=null,e)e.hasOwnProperty(o)&&(t=e[o],this[o]=t?t(i):i[o]);return this.isDefaultPrevented=(i.defaultPrevented==null?!1===i.returnValue:i.defaultPrevented)?En:Dn,this.isPropagationStopped=Dn,this}return h(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():typeof e.returnValue!=`unknown`&&(e.returnValue=!1),this.isDefaultPrevented=En)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():typeof e.cancelBubble!=`unknown`&&(e.cancelBubble=!0),this.isPropagationStopped=En)},persist:function(){},isPersistent:En}),t}var kn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},An=On(kn),jn=h({},kn,{view:0,detail:0}),Mn=On(jn),Nn,Pn,Fn,In=h({},jn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:qn,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!==Fn&&(Fn&&e.type===`mousemove`?(Nn=e.screenX-Fn.screenX,Pn=e.screenY-Fn.screenY):Pn=Nn=0,Fn=e),Nn)},movementY:function(e){return`movementY`in e?e.movementY:Pn}}),Ln=On(In),Rn=On(h({},In,{dataTransfer:0})),zn=On(h({},jn,{relatedTarget:0})),Bn=On(h({},kn,{animationName:0,elapsedTime:0,pseudoElement:0})),Vn=On(h({},kn,{clipboardData:function(e){return`clipboardData`in e?e.clipboardData:window.clipboardData}})),Hn=On(h({},kn,{data:0})),Un={Esc:`Escape`,Spacebar:` `,Left:`ArrowLeft`,Up:`ArrowUp`,Right:`ArrowRight`,Down:`ArrowDown`,Del:`Delete`,Win:`OS`,Menu:`ContextMenu`,Apps:`ContextMenu`,Scroll:`ScrollLock`,MozPrintableKey:`Unidentified`},Wn={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`},Gn={Alt:`altKey`,Control:`ctrlKey`,Meta:`metaKey`,Shift:`shiftKey`};function Kn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=Gn[e])?!!t[e]:!1}function qn(){return Kn}var Jn=On(h({},jn,{key:function(e){if(e.key){var t=Un[e.key]||e.key;if(t!==`Unidentified`)return t}return e.type===`keypress`?(e=Tn(e),e===13?`Enter`:String.fromCharCode(e)):e.type===`keydown`||e.type===`keyup`?Wn[e.keyCode]||`Unidentified`:``},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:qn,charCode:function(e){return e.type===`keypress`?Tn(e):0},keyCode:function(e){return e.type===`keydown`||e.type===`keyup`?e.keyCode:0},which:function(e){return e.type===`keypress`?Tn(e):e.type===`keydown`||e.type===`keyup`?e.keyCode:0}})),Yn=On(h({},In,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Xn=On(h({},jn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:qn})),Zn=On(h({},kn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Qn=On(h({},In,{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})),$n=On(h({},kn,{newState:0,oldState:0})),er=[9,13,27,32],tr=vn&&`CompositionEvent`in window,nr=null;vn&&`documentMode`in document&&(nr=document.documentMode);var rr=vn&&`TextEvent`in window&&!nr,ir=vn&&(!tr||nr&&8<nr&&11>=nr),ar=` `,or=!1;function sr(e,t){switch(e){case`keyup`:return er.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function cr(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var lr=!1;function ur(e,t){switch(e){case`compositionend`:return cr(t);case`keypress`:return t.which===32?(or=!0,ar):null;case`textInput`:return e=t.data,e===ar&&or?null:e;default:return null}}function dr(e,t){if(lr)return e===`compositionend`||!tr&&sr(e,t)?(e=wn(),Cn=Sn=xn=null,lr=!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 ir&&t.locale!==`ko`?null:t.data;default:return null}}var fr={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 pr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t===`input`?!!fr[e.type]:t===`textarea`}function mr(e,t,n,r){fn?pn?pn.push(r):pn=[r]:fn=r,t=Ed(t,`onChange`),0<t.length&&(n=new An(`onChange`,`change`,null,n,r),e.push({event:n,listeners:t}))}var hr=null,gr=null;function _r(e){yd(e,0)}function vr(e){if(Wt(Dt(e)))return e}function yr(e,t){if(e===`change`)return t}var br=!1;if(vn){var xr;if(vn){var Sr=`oninput`in document;if(!Sr){var Cr=document.createElement(`div`);Cr.setAttribute(`oninput`,`return;`),Sr=typeof Cr.oninput==`function`}xr=Sr}else xr=!1;br=xr&&(!document.documentMode||9<document.documentMode)}function wr(){hr&&(hr.detachEvent(`onpropertychange`,Tr),gr=hr=null)}function Tr(e){if(e.propertyName===`value`&&vr(gr)){var t=[];mr(t,gr,e,dn(e)),gn(_r,t)}}function Er(e,t,n){e===`focusin`?(wr(),hr=t,gr=n,hr.attachEvent(`onpropertychange`,Tr)):e===`focusout`&&wr()}function Dr(e){if(e===`selectionchange`||e===`keyup`||e===`keydown`)return vr(gr)}function Or(e,t){if(e===`click`)return vr(t)}function kr(e,t){if(e===`input`||e===`change`)return vr(t)}function Ar(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var jr=typeof Object.is==`function`?Object.is:Ar;function Mr(e,t){if(jr(e,t))return!0;if(typeof e!=`object`||!e||typeof t!=`object`||!t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var i=n[r];if(!Ae.call(t,i)||!jr(e[i],t[i]))return!1}return!0}function Nr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Pr(e,t){var n=Nr(e);e=0;for(var r;n;){if(n.nodeType===3){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=Nr(n)}}function Fr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Fr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Ir(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=Gt(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=Gt(e.document)}return t}function Lr(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`)}var Rr=vn&&`documentMode`in document&&11>=document.documentMode,zr=null,Br=null,Vr=null,Hr=!1;function Ur(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Hr||zr==null||zr!==Gt(r)||(r=zr,`selectionStart`in r&&Lr(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Vr&&Mr(Vr,r)||(Vr=r,r=Ed(Br,`onSelect`),0<r.length&&(t=new An(`onSelect`,`select`,null,t,n),e.push({event:t,listeners:r}),t.target=zr)))}function Wr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[`Webkit`+e]=`webkit`+t,n[`Moz`+e]=`moz`+t,n}var Gr={animationend:Wr(`Animation`,`AnimationEnd`),animationiteration:Wr(`Animation`,`AnimationIteration`),animationstart:Wr(`Animation`,`AnimationStart`),transitionrun:Wr(`Transition`,`TransitionRun`),transitionstart:Wr(`Transition`,`TransitionStart`),transitioncancel:Wr(`Transition`,`TransitionCancel`),transitionend:Wr(`Transition`,`TransitionEnd`)},Kr={},qr={};vn&&(qr=document.createElement(`div`).style,`AnimationEvent`in window||(delete Gr.animationend.animation,delete Gr.animationiteration.animation,delete Gr.animationstart.animation),`TransitionEvent`in window||delete Gr.transitionend.transition);function Jr(e){if(Kr[e])return Kr[e];if(!Gr[e])return e;var t=Gr[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in qr)return Kr[e]=t[n];return e}var Yr=Jr(`animationend`),Xr=Jr(`animationiteration`),Zr=Jr(`animationstart`),Qr=Jr(`transitionrun`),$r=Jr(`transitionstart`),ei=Jr(`transitioncancel`),ti=Jr(`transitionend`),ni=new Map,ri=`abort auxClick beforeToggle 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(` `);ri.push(`scrollEnd`);function ii(e,t){ni.set(e,t),jt(t,[e])}var ai=typeof reportError==`function`?reportError:function(e){if(typeof window==`object`&&typeof window.ErrorEvent==`function`){var t=new window.ErrorEvent(`error`,{bubbles:!0,cancelable:!0,message:typeof e==`object`&&e&&typeof e.message==`string`?String(e.message):String(e),error:e});if(!window.dispatchEvent(t))return}else if(typeof process==`object`&&typeof process.emit==`function`){process.emit(`uncaughtException`,e);return}console.error(e)},oi=[],si=0,ci=0;function li(){for(var e=si,t=ci=si=0;t<e;){var n=oi[t];oi[t++]=null;var r=oi[t];oi[t++]=null;var i=oi[t];oi[t++]=null;var a=oi[t];if(oi[t++]=null,r!==null&&i!==null){var o=r.pending;o===null?i.next=i:(i.next=o.next,o.next=i),r.pending=i}a!==0&&pi(n,i,a)}}function ui(e,t,n,r){oi[si++]=e,oi[si++]=t,oi[si++]=n,oi[si++]=r,ci|=r,e.lanes|=r,e=e.alternate,e!==null&&(e.lanes|=r)}function di(e,t,n,r){return ui(e,t,n,r),mi(e)}function fi(e,t){return ui(e,null,null,t),mi(e)}function pi(e,t,n){e.lanes|=n;var r=e.alternate;r!==null&&(r.lanes|=n);for(var i=!1,a=e.return;a!==null;)a.childLanes|=n,r=a.alternate,r!==null&&(r.childLanes|=n),a.tag===22&&(e=a.stateNode,e===null||e._visibility&1||(i=!0)),e=a,a=a.return;return e.tag===3?(a=e.stateNode,i&&t!==null&&(i=31-qe(n),e=a.hiddenUpdates,r=e[i],r===null?e[i]=[t]:r.push(t),t.lane=n|536870912),a):null}function mi(e){if(50<du)throw du=0,fu=null,Error(i(185));for(var t=e.return;t!==null;)e=t,t=e.return;return e.tag===3?e.stateNode:null}var hi={};function gi(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function _i(e,t,n,r){return new gi(e,t,n,r)}function vi(e){return e=e.prototype,!(!e||!e.isReactComponent)}function yi(e,t){var n=e.alternate;return n===null?(n=_i(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&65011712,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.refCleanup=e.refCleanup,n}function bi(e,t){e.flags&=65011714;var n=e.alternate;return n===null?(e.childLanes=0,e.lanes=t,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=n.childLanes,e.lanes=n.lanes,e.child=n.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=n.memoizedProps,e.memoizedState=n.memoizedState,e.updateQueue=n.updateQueue,e.type=n.type,t=n.dependencies,e.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext}),e}function xi(e,t,n,r,a,o){var s=0;if(r=e,typeof e==`function`)vi(e)&&(s=1);else if(typeof e==`string`)s=Uf(e,n,he.current)?26:e===`html`||e===`head`||e===`body`?27:5;else a:switch(e){case ie:return e=_i(31,n,t,a),e.elementType=ie,e.lanes=o,e;case y:return Si(n.children,a,o,t);case b:s=8,a|=24;break;case x:return e=_i(12,n,t,a|2),e.elementType=x,e.lanes=o,e;case te:return e=_i(13,n,t,a),e.elementType=te,e.lanes=o,e;case ne:return e=_i(19,n,t,a),e.elementType=ne,e.lanes=o,e;default:if(typeof e==`object`&&e)switch(e.$$typeof){case S:s=10;break a;case ee:s=9;break a;case C:s=11;break a;case re:s=14;break a;case w:s=16,r=null;break a}s=29,n=Error(i(130,e===null?`null`:typeof e,``)),r=null}return t=_i(s,n,t,a),t.elementType=e,t.type=r,t.lanes=o,t}function Si(e,t,n,r){return e=_i(7,e,r,t),e.lanes=n,e}function Ci(e,t,n){return e=_i(6,e,null,t),e.lanes=n,e}function wi(e){var t=_i(18,null,null,0);return t.stateNode=e,t}function Ti(e,t,n){return t=_i(4,e.children===null?[]:e.children,e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}var Ei=new WeakMap;function Di(e,t){if(typeof e==`object`&&e){var n=Ei.get(e);return n===void 0?(t={value:e,source:t,stack:ke(t)},Ei.set(e,t),t):n}return{value:e,source:t,stack:ke(t)}}var Oi=[],ki=0,Ai=null,ji=0,Mi=[],Ni=0,Pi=null,Fi=1,Ii=``;function Li(e,t){Oi[ki++]=ji,Oi[ki++]=Ai,Ai=e,ji=t}function Ri(e,t,n){Mi[Ni++]=Fi,Mi[Ni++]=Ii,Mi[Ni++]=Pi,Pi=e;var r=Fi;e=Ii;var i=32-qe(r)-1;r&=~(1<<i),n+=1;var a=32-qe(t)+i;if(30<a){var o=i-i%5;a=(r&(1<<o)-1).toString(32),r>>=o,i-=o,Fi=1<<32-qe(t)+i|n<<i|r,Ii=a+e}else Fi=1<<a|n<<i|r,Ii=e}function zi(e){e.return!==null&&(Li(e,1),Ri(e,1,0))}function Bi(e){for(;e===Ai;)Ai=Oi[--ki],Oi[ki]=null,ji=Oi[--ki],Oi[ki]=null;for(;e===Pi;)Pi=Mi[--Ni],Mi[Ni]=null,Ii=Mi[--Ni],Mi[Ni]=null,Fi=Mi[--Ni],Mi[Ni]=null}function Vi(e,t){Mi[Ni++]=Fi,Mi[Ni++]=Ii,Mi[Ni++]=Pi,Fi=t.id,Ii=t.overflow,Pi=e}var Hi=null,A=null,j=!1,Ui=null,Wi=!1,Gi=Error(i(519));function Ki(e){throw Qi(Di(Error(i(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?`text`:`HTML`,``)),e)),Gi}function qi(e){var t=e.stateNode,n=e.type,r=e.memoizedProps;switch(t[gt]=e,t[_t]=r,n){case`dialog`:Q(`cancel`,t),Q(`close`,t);break;case`iframe`:case`object`:case`embed`:Q(`load`,t);break;case`video`:case`audio`:for(n=0;n<_d.length;n++)Q(_d[n],t);break;case`source`:Q(`error`,t);break;case`img`:case`image`:case`link`:Q(`error`,t),Q(`load`,t);break;case`details`:Q(`toggle`,t);break;case`input`:Q(`invalid`,t),Yt(t,r.value,r.defaultValue,r.checked,r.defaultChecked,r.type,r.name,!0);break;case`select`:Q(`invalid`,t);break;case`textarea`:Q(`invalid`,t),$t(t,r.value,r.defaultValue,r.children)}n=r.children,typeof n!=`string`&&typeof n!=`number`&&typeof n!=`bigint`||t.textContent===``+n||!0===r.suppressHydrationWarning||Md(t.textContent,n)?(r.popover!=null&&(Q(`beforetoggle`,t),Q(`toggle`,t)),r.onScroll!=null&&Q(`scroll`,t),r.onScrollEnd!=null&&Q(`scrollend`,t),r.onClick!=null&&(t.onclick=ln),t=!0):t=!1,t||Ki(e,!0)}function Ji(e){for(Hi=e.return;Hi;)switch(Hi.tag){case 5:case 31:case 13:Wi=!1;return;case 27:case 3:Wi=!0;return;default:Hi=Hi.return}}function Yi(e){if(e!==Hi)return!1;if(!j)return Ji(e),j=!0,!1;var t=e.tag,n;if((n=t!==3&&t!==27)&&((n=t===5)&&(n=e.type,n=!(n!==`form`&&n!==`button`)||Ud(e.type,e.memoizedProps)),n=!n),n&&A&&Ki(e),Ji(e),t===13){if(e=e.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(i(317));A=uf(e)}else if(t===31){if(e=e.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(i(317));A=uf(e)}else t===27?(t=A,Zd(e.type)?(e=lf,lf=null,A=e):A=t):A=Hi?cf(e.stateNode.nextSibling):null;return!0}function Xi(){A=Hi=null,j=!1}function Zi(){var e=Ui;return e!==null&&(Ql===null?Ql=e:Ql.push.apply(Ql,e),Ui=null),e}function Qi(e){Ui===null?Ui=[e]:Ui.push(e)}var $i=me(null),ea=null,ta=null;function na(e,t,n){O($i,t._currentValue),t._currentValue=n}function ra(e){e._currentValue=$i.current,D($i)}function ia(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)===t?r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t):(e.childLanes|=t,r!==null&&(r.childLanes|=t)),e===n)break;e=e.return}}function aa(e,t,n,r){var a=e.child;for(a!==null&&(a.return=e);a!==null;){var o=a.dependencies;if(o!==null){var s=a.child;o=o.firstContext;a:for(;o!==null;){var c=o;o=a;for(var l=0;l<t.length;l++)if(c.context===t[l]){o.lanes|=n,c=o.alternate,c!==null&&(c.lanes|=n),ia(o.return,n,e),r||(s=null);break a}o=c.next}}else if(a.tag===18){if(s=a.return,s===null)throw Error(i(341));s.lanes|=n,o=s.alternate,o!==null&&(o.lanes|=n),ia(s,n,e),s=null}else s=a.child;if(s!==null)s.return=a;else for(s=a;s!==null;){if(s===e){s=null;break}if(a=s.sibling,a!==null){a.return=s.return,s=a;break}s=s.return}a=s}}function oa(e,t,n,r){e=null;for(var a=t,o=!1;a!==null;){if(!o){if(a.flags&524288)o=!0;else if(a.flags&262144)break}if(a.tag===10){var s=a.alternate;if(s===null)throw Error(i(387));if(s=s.memoizedProps,s!==null){var c=a.type;jr(a.pendingProps.value,s.value)||(e===null?e=[c]:e.push(c))}}else if(a===ve.current){if(s=a.alternate,s===null)throw Error(i(387));s.memoizedState.memoizedState!==a.memoizedState.memoizedState&&(e===null?e=[Qf]:e.push(Qf))}a=a.return}e!==null&&aa(t,e,n,r),t.flags|=262144}function sa(e){for(e=e.firstContext;e!==null;){if(!jr(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function ca(e){ea=e,ta=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function la(e){return da(ea,e)}function ua(e,t){return ea===null&&ca(e),da(e,t)}function da(e,t){var n=t._currentValue;if(t={context:t,memoizedValue:n,next:null},ta===null){if(e===null)throw Error(i(308));ta=t,e.dependencies={lanes:0,firstContext:t},e.flags|=524288}else ta=ta.next=t;return n}var fa=typeof AbortController<`u`?AbortController:function(){var e=[],t=this.signal={aborted:!1,addEventListener:function(t,n){e.push(n)}};this.abort=function(){t.aborted=!0,e.forEach(function(e){return e()})}},pa=t.unstable_scheduleCallback,ma=t.unstable_NormalPriority,M={$$typeof:S,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function ha(){return{controller:new fa,data:new Map,refCount:0}}function ga(e){e.refCount--,e.refCount===0&&pa(ma,function(){e.controller.abort()})}var _a=null,va=0,ya=0,ba=null;function xa(e,t){if(_a===null){var n=_a=[];va=0,ya=dd(),ba={status:`pending`,value:void 0,then:function(e){n.push(e)}}}return va++,t.then(Sa,Sa),t}function Sa(){if(--va===0&&_a!==null){ba!==null&&(ba.status=`fulfilled`);var e=_a;_a=null,ya=0,ba=null;for(var t=0;t<e.length;t++)(0,e[t])()}}function Ca(e,t){var n=[],r={status:`pending`,value:null,reason:null,then:function(e){n.push(e)}};return e.then(function(){r.status=`fulfilled`,r.value=t;for(var e=0;e<n.length;e++)(0,n[e])(t)},function(e){for(r.status=`rejected`,r.reason=e,e=0;e<n.length;e++)(0,n[e])(void 0)}),r}var wa=T.S;T.S=function(e,t){tu=Fe(),typeof t==`object`&&t&&typeof t.then==`function`&&xa(e,t),wa!==null&&wa(e,t)};var Ta=me(null);function Ea(){var e=Ta.current;return e===null?G.pooledCache:e}function Da(e,t){t===null?O(Ta,Ta.current):O(Ta,t.pool)}function Oa(){var e=Ea();return e===null?null:{parent:M._currentValue,pool:e}}var ka=Error(i(460)),Aa=Error(i(474)),ja=Error(i(542)),Ma={then:function(){}};function Na(e){return e=e.status,e===`fulfilled`||e===`rejected`}function Pa(e,t,n){switch(n=e[n],n===void 0?e.push(t):n!==t&&(t.then(ln,ln),t=n),t.status){case`fulfilled`:return t.value;case`rejected`:throw e=t.reason,Ra(e),e;default:if(typeof t.status==`string`)t.then(ln,ln);else{if(e=G,e!==null&&100<e.shellSuspendCounter)throw Error(i(482));e=t,e.status=`pending`,e.then(function(e){if(t.status===`pending`){var n=t;n.status=`fulfilled`,n.value=e}},function(e){if(t.status===`pending`){var n=t;n.status=`rejected`,n.reason=e}})}switch(t.status){case`fulfilled`:return t.value;case`rejected`:throw e=t.reason,Ra(e),e}throw Ia=t,ka}}function Fa(e){try{var t=e._init;return t(e._payload)}catch(e){throw typeof e==`object`&&e&&typeof e.then==`function`?(Ia=e,ka):e}}var Ia=null;function La(){if(Ia===null)throw Error(i(459));var e=Ia;return Ia=null,e}function Ra(e){if(e===ka||e===ja)throw Error(i(483))}var za=null,Ba=0;function Va(e){var t=Ba;return Ba+=1,za===null&&(za=[]),Pa(za,e,t)}function Ha(e,t){t=t.props.ref,e.ref=t===void 0?null:t}function Ua(e,t){throw t.$$typeof===g?Error(i(525)):(e=Object.prototype.toString.call(t),Error(i(31,e===`[object Object]`?`object with keys {`+Object.keys(t).join(`, `)+`}`:e)))}function Wa(e){function t(t,n){if(e){var r=t.deletions;r===null?(t.deletions=[n],t.flags|=16):r.push(n)}}function n(n,r){if(!e)return null;for(;r!==null;)t(n,r),r=r.sibling;return null}function r(e){for(var t=new Map;e!==null;)e.key===null?t.set(e.index,e):t.set(e.key,e),e=e.sibling;return t}function a(e,t){return e=yi(e,t),e.index=0,e.sibling=null,e}function o(t,n,r){return t.index=r,e?(r=t.alternate,r===null?(t.flags|=67108866,n):(r=r.index,r<n?(t.flags|=67108866,n):r)):(t.flags|=1048576,n)}function s(t){return e&&t.alternate===null&&(t.flags|=67108866),t}function c(e,t,n,r){return t===null||t.tag!==6?(t=Ci(n,e.mode,r),t.return=e,t):(t=a(t,n),t.return=e,t)}function l(e,t,n,r){var i=n.type;return i===y?d(e,t,n.props.children,r,n.key):t!==null&&(t.elementType===i||typeof i==`object`&&i&&i.$$typeof===w&&Fa(i)===t.type)?(t=a(t,n.props),Ha(t,n),t.return=e,t):(t=xi(n.type,n.key,n.props,null,e.mode,r),Ha(t,n),t.return=e,t)}function u(e,t,n,r){return t===null||t.tag!==4||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=Ti(n,e.mode,r),t.return=e,t):(t=a(t,n.children||[]),t.return=e,t)}function d(e,t,n,r,i){return t===null||t.tag!==7?(t=Si(n,e.mode,r,i),t.return=e,t):(t=a(t,n),t.return=e,t)}function f(e,t,n){if(typeof t==`string`&&t!==``||typeof t==`number`||typeof t==`bigint`)return t=Ci(``+t,e.mode,n),t.return=e,t;if(typeof t==`object`&&t){switch(t.$$typeof){case _:return n=xi(t.type,t.key,t.props,null,e.mode,n),Ha(n,t),n.return=e,n;case v:return t=Ti(t,e.mode,n),t.return=e,t;case w:return t=Fa(t),f(e,t,n)}if(ue(t)||se(t))return t=Si(t,e.mode,n,null),t.return=e,t;if(typeof t.then==`function`)return f(e,Va(t),n);if(t.$$typeof===S)return f(e,ua(e,t),n);Ua(e,t)}return null}function p(e,t,n,r){var i=t===null?null:t.key;if(typeof n==`string`&&n!==``||typeof n==`number`||typeof n==`bigint`)return i===null?c(e,t,``+n,r):null;if(typeof n==`object`&&n){switch(n.$$typeof){case _:return n.key===i?l(e,t,n,r):null;case v:return n.key===i?u(e,t,n,r):null;case w:return n=Fa(n),p(e,t,n,r)}if(ue(n)||se(n))return i===null?d(e,t,n,r,null):null;if(typeof n.then==`function`)return p(e,t,Va(n),r);if(n.$$typeof===S)return p(e,t,ua(e,n),r);Ua(e,n)}return null}function m(e,t,n,r,i){if(typeof r==`string`&&r!==``||typeof r==`number`||typeof r==`bigint`)return e=e.get(n)||null,c(t,e,``+r,i);if(typeof r==`object`&&r){switch(r.$$typeof){case _:return e=e.get(r.key===null?n:r.key)||null,l(t,e,r,i);case v:return e=e.get(r.key===null?n:r.key)||null,u(t,e,r,i);case w:return r=Fa(r),m(e,t,n,r,i)}if(ue(r)||se(r))return e=e.get(n)||null,d(t,e,r,i,null);if(typeof r.then==`function`)return m(e,t,n,Va(r),i);if(r.$$typeof===S)return m(e,t,n,ua(t,r),i);Ua(t,r)}return null}function h(i,a,s,c){for(var l=null,u=null,d=a,h=a=0,g=null;d!==null&&h<s.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var _=p(i,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(i,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(i,d),j&&Li(i,h),l;if(d===null){for(;h<s.length;h++)d=f(i,s[h],c),d!==null&&(a=o(d,a,h),u===null?l=d:u.sibling=d,u=d);return j&&Li(i,h),l}for(d=r(d);h<s.length;h++)g=m(d,i,h,s[h],c),g!==null&&(e&&g.alternate!==null&&d.delete(g.key===null?h:g.key),a=o(g,a,h),u===null?l=g:u.sibling=g,u=g);return e&&d.forEach(function(e){return t(i,e)}),j&&Li(i,h),l}function g(a,s,c,l){if(c==null)throw Error(i(151));for(var u=null,d=null,h=s,g=s=0,_=null,v=c.next();h!==null&&!v.done;g++,v=c.next()){h.index>g?(_=h,h=null):_=h.sibling;var y=p(a,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(a,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(a,h),j&&Li(a,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(a,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return j&&Li(a,g),u}for(h=r(h);!v.done;g++,v=c.next())v=m(h,a,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(a,e)}),j&&Li(a,g),u}function b(e,r,o,c){if(typeof o==`object`&&o&&o.type===y&&o.key===null&&(o=o.props.children),typeof o==`object`&&o){switch(o.$$typeof){case _:a:{for(var l=o.key;r!==null;){if(r.key===l){if(l=o.type,l===y){if(r.tag===7){n(e,r.sibling),c=a(r,o.props.children),c.return=e,e=c;break a}}else if(r.elementType===l||typeof l==`object`&&l&&l.$$typeof===w&&Fa(l)===r.type){n(e,r.sibling),c=a(r,o.props),Ha(c,o),c.return=e,e=c;break a}n(e,r);break}else t(e,r);r=r.sibling}o.type===y?(c=Si(o.props.children,e.mode,c,o.key),c.return=e,e=c):(c=xi(o.type,o.key,o.props,null,e.mode,c),Ha(c,o),c.return=e,e=c)}return s(e);case v:a:{for(l=o.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),c=a(r,o.children||[]),c.return=e,e=c;break a}else{n(e,r);break}else t(e,r);r=r.sibling}c=Ti(o,e.mode,c),c.return=e,e=c}return s(e);case w:return o=Fa(o),b(e,r,o,c)}if(ue(o))return h(e,r,o,c);if(se(o)){if(l=se(o),typeof l!=`function`)throw Error(i(150));return o=l.call(o),g(e,r,o,c)}if(typeof o.then==`function`)return b(e,r,Va(o),c);if(o.$$typeof===S)return b(e,r,ua(e,o),c);Ua(e,o)}return typeof o==`string`&&o!==``||typeof o==`number`||typeof o==`bigint`?(o=``+o,r!==null&&r.tag===6?(n(e,r.sibling),c=a(r,o),c.return=e,e=c):(n(e,r),c=Ci(o,e.mode,c),c.return=e,e=c),s(e)):n(e,r)}return function(e,t,n,r){try{Ba=0;var i=b(e,t,n,r);return za=null,i}catch(t){if(t===ka||t===ja)throw t;var a=_i(29,t,null,e.mode);return a.lanes=r,a.return=e,a}}}var Ga=Wa(!0),Ka=Wa(!1),qa=!1;function Ja(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ya(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Xa(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Za(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,W&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,t=mi(e),pi(e,null,n),t}return ui(e,r,t,n),mi(e)}function Qa(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194048)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,lt(e,n)}}function $a(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,callbacks:r.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var eo=!1;function to(){if(eo){var e=ba;if(e!==null)throw e}}function no(e,t,n,r){eo=!1;var i=e.updateQueue;qa=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane&-536870913,p=f!==s.lane;if(p?(q&f)===f:(r&f)===f){f!==0&&f===ya&&(eo=!0),u!==null&&(u=u.next={lane:0,tag:s.tag,payload:s.payload,callback:null,next:null});a:{var m=e,g=s;f=t;var _=n;switch(g.tag){case 1:if(m=g.payload,typeof m==`function`){d=m.call(_,d,f);break a}d=m;break a;case 3:m.flags=m.flags&-65537|128;case 0:if(m=g.payload,f=typeof m==`function`?m.call(_,d,f):m,f==null)break a;d=h({},d,f);break a;case 2:qa=!0}}f=s.callback,f!==null&&(e.flags|=64,p&&(e.flags|=8192),p=i.callbacks,p===null?i.callbacks=[f]:p.push(f))}else p={lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=p,c=d):u=u.next=p,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;p=s,s=p.next,p.next=null,i.lastBaseUpdate=p,i.shared.pending=null}}while(1);u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,a===null&&(i.shared.lanes=0),Kl|=o,e.lanes=o,e.memoizedState=d}}function ro(e,t){if(typeof e!=`function`)throw Error(i(191,e));e.call(t)}function io(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;e<n.length;e++)ro(n[e],t)}var ao=me(null),oo=me(0);function so(e,t){e=Gl,O(oo,e),O(ao,t),Gl=e|t.baseLanes}function co(){O(oo,Gl),O(ao,ao.current)}function lo(){Gl=oo.current,D(ao),D(oo)}var uo=me(null),fo=null;function po(e){var t=e.alternate;O(N,N.current&1),O(uo,e),fo===null&&(t===null||ao.current!==null||t.memoizedState!==null)&&(fo=e)}function mo(e){O(N,N.current),O(uo,e),fo===null&&(fo=e)}function ho(e){e.tag===22?(O(N,N.current),O(uo,e),fo===null&&(fo=e)):go(e)}function go(){O(N,N.current),O(uo,uo.current)}function _o(e){D(uo),fo===e&&(fo=null),D(N)}var N=me(0);function vo(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||af(n)||of(n)))return t}else if(t.tag===19&&(t.memoizedProps.revealOrder===`forwards`||t.memoizedProps.revealOrder===`backwards`||t.memoizedProps.revealOrder===`unstable_legacy-backwards`||t.memoizedProps.revealOrder===`together`)){if(t.flags&128)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 yo=0,P=null,F=null,I=null,bo=!1,xo=!1,So=!1,Co=0,wo=0,To=null,Eo=0;function L(){throw Error(i(321))}function Do(e,t){if(t===null)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!jr(e[n],t[n]))return!1;return!0}function Oo(e,t,n,r,i,a){return yo=a,P=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,T.H=e===null||e.memoizedState===null?Ws:Gs,So=!1,a=n(r,i),So=!1,xo&&(a=Ao(t,n,r,i)),ko(e),a}function ko(e){T.H=Us;var t=F!==null&&F.next!==null;if(yo=0,I=F=P=null,bo=!1,wo=0,To=null,t)throw Error(i(300));e===null||z||(e=e.dependencies,e!==null&&sa(e)&&(z=!0))}function Ao(e,t,n,r){P=e;var a=0;do{if(xo&&(To=null),wo=0,xo=!1,25<=a)throw Error(i(301));if(a+=1,I=F=null,e.updateQueue!=null){var o=e.updateQueue;o.lastEffect=null,o.events=null,o.stores=null,o.memoCache!=null&&(o.memoCache.index=0)}T.H=Ks,o=t(n,r)}while(xo);return o}function jo(){var e=T.H,t=e.useState()[0];return t=typeof t.then==`function`?Lo(t):t,e=e.useState()[0],(F===null?null:F.memoizedState)!==e&&(P.flags|=1024),t}function Mo(){var e=Co!==0;return Co=0,e}function No(e,t,n){t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~n}function Po(e){if(bo){for(e=e.memoizedState;e!==null;){var t=e.queue;t!==null&&(t.pending=null),e=e.next}bo=!1}yo=0,I=F=P=null,xo=!1,wo=Co=0,To=null}function Fo(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return I===null?P.memoizedState=I=e:I=I.next=e,I}function R(){if(F===null){var e=P.alternate;e=e===null?null:e.memoizedState}else e=F.next;var t=I===null?P.memoizedState:I.next;if(t!==null)I=t,F=e;else{if(e===null)throw P.alternate===null?Error(i(467)):Error(i(310));F=e,e={memoizedState:F.memoizedState,baseState:F.baseState,baseQueue:F.baseQueue,queue:F.queue,next:null},I===null?P.memoizedState=I=e:I=I.next=e}return I}function Io(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Lo(e){var t=wo;return wo+=1,To===null&&(To=[]),e=Pa(To,e,t),t=P,(I===null?t.memoizedState:I.next)===null&&(t=t.alternate,T.H=t===null||t.memoizedState===null?Ws:Gs),e}function Ro(e){if(typeof e==`object`&&e){if(typeof e.then==`function`)return Lo(e);if(e.$$typeof===S)return la(e)}throw Error(i(438,String(e)))}function zo(e){var t=null,n=P.updateQueue;if(n!==null&&(t=n.memoCache),t==null){var r=P.alternate;r!==null&&(r=r.updateQueue,r!==null&&(r=r.memoCache,r!=null&&(t={data:r.data.map(function(e){return e.slice()}),index:0})))}if(t??={data:[],index:0},n===null&&(n=Io(),P.updateQueue=n),n.memoCache=t,n=t.data[t.index],n===void 0)for(n=t.data[t.index]=Array(e),r=0;r<e;r++)n[r]=ae;return t.index++,n}function Bo(e,t){return typeof t==`function`?t(e):t}function Vo(e){return Ho(R(),F,e)}function Ho(e,t,n){var r=e.queue;if(r===null)throw Error(i(311));r.lastRenderedReducer=n;var a=e.baseQueue,o=r.pending;if(o!==null){if(a!==null){var s=a.next;a.next=o.next,o.next=s}t.baseQueue=a=o,r.pending=null}if(o=e.baseState,a===null)e.memoizedState=o;else{t=a.next;var c=s=null,l=null,u=t,d=!1;do{var f=u.lane&-536870913;if(f===u.lane?(yo&f)===f:(q&f)===f){var p=u.revertLane;if(p===0)l!==null&&(l=l.next={lane:0,revertLane:0,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),f===ya&&(d=!0);else if((yo&p)===p){u=u.next,p===ya&&(d=!0);continue}else f={lane:0,revertLane:u.revertLane,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},l===null?(c=l=f,s=o):l=l.next=f,P.lanes|=p,Kl|=p;f=u.action,So&&n(o,f),o=u.hasEagerState?u.eagerState:n(o,f)}else p={lane:f,revertLane:u.revertLane,gesture:u.gesture,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},l===null?(c=l=p,s=o):l=l.next=p,P.lanes|=f,Kl|=f;u=u.next}while(u!==null&&u!==t);if(l===null?s=o:l.next=c,!jr(o,e.memoizedState)&&(z=!0,d&&(n=ba,n!==null)))throw n;e.memoizedState=o,e.baseState=s,e.baseQueue=l,r.lastRenderedState=o}return a===null&&(r.lanes=0),[e.memoizedState,r.dispatch]}function Uo(e){var t=R(),n=t.queue;if(n===null)throw Error(i(311));n.lastRenderedReducer=e;var r=n.dispatch,a=n.pending,o=t.memoizedState;if(a!==null){n.pending=null;var s=a=a.next;do o=e(o,s.action),s=s.next;while(s!==a);jr(o,t.memoizedState)||(z=!0),t.memoizedState=o,t.baseQueue===null&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function Wo(e,t,n){var r=P,a=R(),o=j;if(o){if(n===void 0)throw Error(i(407));n=n()}else n=t();var s=!jr((F||a).memoizedState,n);if(s&&(a.memoizedState=n,z=!0),a=a.queue,hs(qo.bind(null,r,a,e),[e]),a.getSnapshot!==t||s||I!==null&&I.memoizedState.tag&1){if(r.flags|=2048,us(9,{destroy:void 0},Ko.bind(null,r,a,n,t),null),G===null)throw Error(i(349));o||yo&127||Go(r,t,n)}return n}function Go(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=P.updateQueue,t===null?(t=Io(),P.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function Ko(e,t,n,r){t.value=n,t.getSnapshot=r,Jo(t)&&Yo(e)}function qo(e,t,n){return n(function(){Jo(t)&&Yo(e)})}function Jo(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!jr(e,n)}catch{return!0}}function Yo(e){var t=fi(e,2);t!==null&&hu(t,e,2)}function Xo(e){var t=Fo();if(typeof e==`function`){var n=e;if(e=n(),So){Ke(!0);try{n()}finally{Ke(!1)}}}return t.memoizedState=t.baseState=e,t.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Bo,lastRenderedState:e},t}function Zo(e,t,n,r){return e.baseState=n,Ho(e,F,typeof r==`function`?r:Bo)}function Qo(e,t,n,r,a){if(Bs(e))throw Error(i(485));if(e=t.action,e!==null){var o={payload:a,action:e,next:null,isTransition:!0,status:`pending`,value:null,reason:null,listeners:[],then:function(e){o.listeners.push(e)}};T.T===null?o.isTransition=!1:n(!0),r(o),n=t.pending,n===null?(o.next=t.pending=o,$o(t,o)):(o.next=n.next,t.pending=n.next=o)}}function $o(e,t){var n=t.action,r=t.payload,i=e.state;if(t.isTransition){var a=T.T,o={};T.T=o;try{var s=n(i,r),c=T.S;c!==null&&c(o,s),es(e,t,s)}catch(n){ns(e,t,n)}finally{a!==null&&o.types!==null&&(a.types=o.types),T.T=a}}else try{a=n(i,r),es(e,t,a)}catch(n){ns(e,t,n)}}function es(e,t,n){typeof n==`object`&&n&&typeof n.then==`function`?n.then(function(n){ts(e,t,n)},function(n){return ns(e,t,n)}):ts(e,t,n)}function ts(e,t,n){t.status=`fulfilled`,t.value=n,rs(t),e.state=n,t=e.pending,t!==null&&(n=t.next,n===t?e.pending=null:(n=n.next,t.next=n,$o(e,n)))}function ns(e,t,n){var r=e.pending;if(e.pending=null,r!==null){r=r.next;do t.status=`rejected`,t.reason=n,rs(t),t=t.next;while(t!==r)}e.action=null}function rs(e){e=e.listeners;for(var t=0;t<e.length;t++)(0,e[t])()}function is(e,t){return t}function as(e,t){if(j){var n=G.formState;if(n!==null){a:{var r=P;if(j){if(A){b:{for(var i=A,a=Wi;i.nodeType!==8;){if(!a){i=null;break b}if(i=cf(i.nextSibling),i===null){i=null;break b}}a=i.data,i=a===`F!`||a===`F`?i:null}if(i){A=cf(i.nextSibling),r=i.data===`F!`;break a}}Ki(r)}r=!1}r&&(t=n[0])}}return n=Fo(),n.memoizedState=n.baseState=t,r={pending:null,lanes:0,dispatch:null,lastRenderedReducer:is,lastRenderedState:t},n.queue=r,n=Ls.bind(null,P,r),r.dispatch=n,r=Xo(!1),a=zs.bind(null,P,!1,r.queue),r=Fo(),i={state:t,dispatch:null,action:e,pending:null},r.queue=i,n=Qo.bind(null,P,i,a,n),i.dispatch=n,r.memoizedState=e,[t,n,!1]}function os(e){return ss(R(),F,e)}function ss(e,t,n){if(t=Ho(e,t,is)[0],e=Vo(Bo)[0],typeof t==`object`&&t&&typeof t.then==`function`)try{var r=Lo(t)}catch(e){throw e===ka?ja:e}else r=t;t=R();var i=t.queue,a=i.dispatch;return n!==t.memoizedState&&(P.flags|=2048,us(9,{destroy:void 0},cs.bind(null,i,n),null)),[r,a,e]}function cs(e,t){e.action=t}function ls(e){var t=R(),n=F;if(n!==null)return ss(t,n,e);R(),t=t.memoizedState,n=R();var r=n.queue.dispatch;return n.memoizedState=e,[t,r,!1]}function us(e,t,n,r){return e={tag:e,create:n,deps:r,inst:t,next:null},t=P.updateQueue,t===null&&(t=Io(),P.updateQueue=t),n=t.lastEffect,n===null?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function ds(){return R().memoizedState}function fs(e,t,n,r){var i=Fo();P.flags|=e,i.memoizedState=us(1|t,{destroy:void 0},n,r===void 0?null:r)}function ps(e,t,n,r){var i=R();r=r===void 0?null:r;var a=i.memoizedState.inst;F!==null&&r!==null&&Do(r,F.memoizedState.deps)?i.memoizedState=us(t,a,n,r):(P.flags|=e,i.memoizedState=us(1|t,a,n,r))}function ms(e,t){fs(8390656,8,e,t)}function hs(e,t){ps(2048,8,e,t)}function gs(e){P.flags|=4;var t=P.updateQueue;if(t===null)t=Io(),P.updateQueue=t,t.events=[e];else{var n=t.events;n===null?t.events=[e]:n.push(e)}}function _s(e){var t=R().memoizedState;return gs({ref:t,nextImpl:e}),function(){if(W&2)throw Error(i(440));return t.impl.apply(void 0,arguments)}}function vs(e,t){return ps(4,2,e,t)}function ys(e,t){return ps(4,4,e,t)}function bs(e,t){if(typeof t==`function`){e=e();var n=t(e);return function(){typeof n==`function`?n():t(null)}}if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function xs(e,t,n){n=n==null?null:n.concat([e]),ps(4,4,bs.bind(null,t,e),n)}function Ss(){}function Cs(e,t){var n=R();t=t===void 0?null:t;var r=n.memoizedState;return t!==null&&Do(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function ws(e,t){var n=R();t=t===void 0?null:t;var r=n.memoizedState;if(t!==null&&Do(t,r[1]))return r[0];if(r=e(),So){Ke(!0);try{e()}finally{Ke(!1)}}return n.memoizedState=[r,t],r}function Ts(e,t,n){return n===void 0||yo&1073741824&&!(q&261930)?e.memoizedState=t:(e.memoizedState=n,e=mu(),P.lanes|=e,Kl|=e,n)}function Es(e,t,n,r){return jr(n,t)?n:ao.current===null?!(yo&42)||yo&1073741824&&!(q&261930)?(z=!0,e.memoizedState=n):(e=mu(),P.lanes|=e,Kl|=e,t):(e=Ts(e,n,r),jr(e,t)||(z=!0),e)}function Ds(e,t,n,r,i){var a=E.p;E.p=a!==0&&8>a?a:8;var o=T.T,s={};T.T=s,zs(e,!1,t,n);try{var c=i(),l=T.S;l!==null&&l(s,c),typeof c==`object`&&c&&typeof c.then==`function`?Rs(e,t,Ca(c,r),pu(e)):Rs(e,t,r,pu(e))}catch(n){Rs(e,t,{then:function(){},status:`rejected`,reason:n},pu())}finally{E.p=a,o!==null&&s.types!==null&&(o.types=s.types),T.T=o}}function Os(){}function ks(e,t,n,r){if(e.tag!==5)throw Error(i(476));var a=As(e).queue;Ds(e,a,t,de,n===null?Os:function(){return js(e),n(r)})}function As(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:de,baseState:de,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Bo,lastRenderedState:de},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Bo,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function js(e){var t=As(e);t.next===null&&(t=e.alternate.memoizedState),Rs(e,t.next.queue,{},pu())}function Ms(){return la(Qf)}function Ns(){return R().memoizedState}function Ps(){return R().memoizedState}function Fs(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=pu();e=Xa(n);var r=Za(t,e,n);r!==null&&(hu(r,t,n),Qa(r,t,n)),t={cache:ha()},e.payload=t;return}t=t.return}}function Is(e,t,n){var r=pu();n={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},Bs(e)?Vs(t,n):(n=di(e,t,n,r),n!==null&&(hu(n,e,r),Hs(n,t,r)))}function Ls(e,t,n){Rs(e,t,n,pu())}function Rs(e,t,n,r){var i={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(Bs(e))Vs(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,jr(s,o))return ui(e,t,i,0),G===null&&li(),!1}catch{}if(n=di(e,t,i,r),n!==null)return hu(n,e,r),Hs(n,t,r),!0}return!1}function zs(e,t,n,r){if(r={lane:2,revertLane:dd(),gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},Bs(e)){if(t)throw Error(i(479))}else t=di(e,n,r,2),t!==null&&hu(t,e,2)}function Bs(e){var t=e.alternate;return e===P||t!==null&&t===P}function Vs(e,t){xo=bo=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Hs(e,t,n){if(n&4194048){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,lt(e,n)}}var Us={readContext:la,use:Ro,useCallback:L,useContext:L,useEffect:L,useImperativeHandle:L,useLayoutEffect:L,useInsertionEffect:L,useMemo:L,useReducer:L,useRef:L,useState:L,useDebugValue:L,useDeferredValue:L,useTransition:L,useSyncExternalStore:L,useId:L,useHostTransitionStatus:L,useFormState:L,useActionState:L,useOptimistic:L,useMemoCache:L,useCacheRefresh:L};Us.useEffectEvent=L;var Ws={readContext:la,use:Ro,useCallback:function(e,t){return Fo().memoizedState=[e,t===void 0?null:t],e},useContext:la,useEffect:ms,useImperativeHandle:function(e,t,n){n=n==null?null:n.concat([e]),fs(4194308,4,bs.bind(null,t,e),n)},useLayoutEffect:function(e,t){return fs(4194308,4,e,t)},useInsertionEffect:function(e,t){fs(4,2,e,t)},useMemo:function(e,t){var n=Fo();t=t===void 0?null:t;var r=e();if(So){Ke(!0);try{e()}finally{Ke(!1)}}return n.memoizedState=[r,t],r},useReducer:function(e,t,n){var r=Fo();if(n!==void 0){var i=n(t);if(So){Ke(!0);try{n(t)}finally{Ke(!1)}}}else i=t;return r.memoizedState=r.baseState=i,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:i},r.queue=e,e=e.dispatch=Is.bind(null,P,e),[r.memoizedState,e]},useRef:function(e){var t=Fo();return e={current:e},t.memoizedState=e},useState:function(e){e=Xo(e);var t=e.queue,n=Ls.bind(null,P,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:Ss,useDeferredValue:function(e,t){return Ts(Fo(),e,t)},useTransition:function(){var e=Xo(!1);return e=Ds.bind(null,P,e.queue,!0,!1),Fo().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var r=P,a=Fo();if(j){if(n===void 0)throw Error(i(407));n=n()}else{if(n=t(),G===null)throw Error(i(349));q&127||Go(r,t,n)}a.memoizedState=n;var o={value:n,getSnapshot:t};return a.queue=o,ms(qo.bind(null,r,o,e),[e]),r.flags|=2048,us(9,{destroy:void 0},Ko.bind(null,r,o,n,t),null),n},useId:function(){var e=Fo(),t=G.identifierPrefix;if(j){var n=Ii,r=Fi;n=(r&~(1<<32-qe(r)-1)).toString(32)+n,t=`_`+t+`R_`+n,n=Co++,0<n&&(t+=`H`+n.toString(32)),t+=`_`}else n=Eo++,t=`_`+t+`r_`+n.toString(32)+`_`;return e.memoizedState=t},useHostTransitionStatus:Ms,useFormState:as,useActionState:as,useOptimistic:function(e){var t=Fo();t.memoizedState=t.baseState=e;var n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return t.queue=n,t=zs.bind(null,P,!0,n),n.dispatch=t,[e,t]},useMemoCache:zo,useCacheRefresh:function(){return Fo().memoizedState=Fs.bind(null,P)},useEffectEvent:function(e){var t=Fo(),n={impl:e};return t.memoizedState=n,function(){if(W&2)throw Error(i(440));return n.impl.apply(void 0,arguments)}}},Gs={readContext:la,use:Ro,useCallback:Cs,useContext:la,useEffect:hs,useImperativeHandle:xs,useInsertionEffect:vs,useLayoutEffect:ys,useMemo:ws,useReducer:Vo,useRef:ds,useState:function(){return Vo(Bo)},useDebugValue:Ss,useDeferredValue:function(e,t){return Es(R(),F.memoizedState,e,t)},useTransition:function(){var e=Vo(Bo)[0],t=R().memoizedState;return[typeof e==`boolean`?e:Lo(e),t]},useSyncExternalStore:Wo,useId:Ns,useHostTransitionStatus:Ms,useFormState:os,useActionState:os,useOptimistic:function(e,t){return Zo(R(),F,e,t)},useMemoCache:zo,useCacheRefresh:Ps};Gs.useEffectEvent=_s;var Ks={readContext:la,use:Ro,useCallback:Cs,useContext:la,useEffect:hs,useImperativeHandle:xs,useInsertionEffect:vs,useLayoutEffect:ys,useMemo:ws,useReducer:Uo,useRef:ds,useState:function(){return Uo(Bo)},useDebugValue:Ss,useDeferredValue:function(e,t){var n=R();return F===null?Ts(n,e,t):Es(n,F.memoizedState,e,t)},useTransition:function(){var e=Uo(Bo)[0],t=R().memoizedState;return[typeof e==`boolean`?e:Lo(e),t]},useSyncExternalStore:Wo,useId:Ns,useHostTransitionStatus:Ms,useFormState:ls,useActionState:ls,useOptimistic:function(e,t){var n=R();return F===null?(n.baseState=e,[e,n.queue.dispatch]):Zo(n,F,e,t)},useMemoCache:zo,useCacheRefresh:Ps};Ks.useEffectEvent=_s;function qs(e,t,n,r){t=e.memoizedState,n=n(r,t),n=n==null?t:h({},t,n),e.memoizedState=n,e.lanes===0&&(e.updateQueue.baseState=n)}var Js={enqueueSetState:function(e,t,n){e=e._reactInternals;var r=pu(),i=Xa(r);i.payload=t,n!=null&&(i.callback=n),t=Za(e,i,r),t!==null&&(hu(t,e,r),Qa(t,e,r))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=pu(),i=Xa(r);i.tag=1,i.payload=t,n!=null&&(i.callback=n),t=Za(e,i,r),t!==null&&(hu(t,e,r),Qa(t,e,r))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=pu(),r=Xa(n);r.tag=2,t!=null&&(r.callback=t),t=Za(e,r,n),t!==null&&(hu(t,e,n),Qa(t,e,n))}};function Ys(e,t,n,r,i,a,o){return e=e.stateNode,typeof e.shouldComponentUpdate==`function`?e.shouldComponentUpdate(r,a,o):t.prototype&&t.prototype.isPureReactComponent?!Mr(n,r)||!Mr(i,a):!0}function Xs(e,t,n,r){e=t.state,typeof t.componentWillReceiveProps==`function`&&t.componentWillReceiveProps(n,r),typeof t.UNSAFE_componentWillReceiveProps==`function`&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Js.enqueueReplaceState(t,t.state,null)}function Zs(e,t){var n=t;if(`ref`in t)for(var r in n={},t)r!==`ref`&&(n[r]=t[r]);if(e=e.defaultProps)for(var i in n===t&&(n=h({},n)),e)n[i]===void 0&&(n[i]=e[i]);return n}function Qs(e){ai(e)}function $s(e){console.error(e)}function ec(e){ai(e)}function tc(e,t){try{var n=e.onUncaughtError;n(t.value,{componentStack:t.stack})}catch(e){setTimeout(function(){throw e})}}function nc(e,t,n){try{var r=e.onCaughtError;r(n.value,{componentStack:n.stack,errorBoundary:t.tag===1?t.stateNode:null})}catch(e){setTimeout(function(){throw e})}}function rc(e,t,n){return n=Xa(n),n.tag=3,n.payload={element:null},n.callback=function(){tc(e,t)},n}function ic(e){return e=Xa(e),e.tag=3,e}function ac(e,t,n,r){var i=n.type.getDerivedStateFromError;if(typeof i==`function`){var a=r.value;e.payload=function(){return i(a)},e.callback=function(){nc(t,n,r)}}var o=n.stateNode;o!==null&&typeof o.componentDidCatch==`function`&&(e.callback=function(){nc(t,n,r),typeof i!=`function`&&(iu===null?iu=new Set([this]):iu.add(this));var e=r.stack;this.componentDidCatch(r.value,{componentStack:e===null?``:e})})}function oc(e,t,n,r,a){if(n.flags|=32768,typeof r==`object`&&r&&typeof r.then==`function`){if(t=n.alternate,t!==null&&oa(t,n,a,!0),n=uo.current,n!==null){switch(n.tag){case 31:case 13:return fo===null?Du():n.alternate===null&&Y===0&&(Y=3),n.flags&=-257,n.flags|=65536,n.lanes=a,r===Ma?n.flags|=16384:(t=n.updateQueue,t===null?n.updateQueue=new Set([r]):t.add(r),Gu(e,r,a)),!1;case 22:return n.flags|=65536,r===Ma?n.flags|=16384:(t=n.updateQueue,t===null?(t={transitions:null,markerInstances:null,retryQueue:new Set([r])},n.updateQueue=t):(n=t.retryQueue,n===null?t.retryQueue=new Set([r]):n.add(r)),Gu(e,r,a)),!1}throw Error(i(435,n.tag))}return Gu(e,r,a),Du(),!1}if(j)return t=uo.current,t===null?(r!==Gi&&(t=Error(i(423),{cause:r}),Qi(Di(t,n))),e=e.current.alternate,e.flags|=65536,a&=-a,e.lanes|=a,r=Di(r,n),a=rc(e.stateNode,r,a),$a(e,a),Y!==4&&(Y=2)):(!(t.flags&65536)&&(t.flags|=256),t.flags|=65536,t.lanes=a,r!==Gi&&(e=Error(i(422),{cause:r}),Qi(Di(e,n)))),!1;var o=Error(i(520),{cause:r});if(o=Di(o,n),Zl===null?Zl=[o]:Zl.push(o),Y!==4&&(Y=2),t===null)return!0;r=Di(r,n),n=t;do{switch(n.tag){case 3:return n.flags|=65536,e=a&-a,n.lanes|=e,e=rc(n.stateNode,r,e),$a(n,e),!1;case 1:if(t=n.type,o=n.stateNode,!(n.flags&128)&&(typeof t.getDerivedStateFromError==`function`||o!==null&&typeof o.componentDidCatch==`function`&&(iu===null||!iu.has(o))))return n.flags|=65536,a&=-a,n.lanes|=a,a=ic(a),ac(a,e,n,r),$a(n,a),!1}n=n.return}while(n!==null);return!1}var sc=Error(i(461)),z=!1;function cc(e,t,n,r){t.child=e===null?Ka(t,null,n,r):Ga(t,e.child,n,r)}function lc(e,t,n,r,i){n=n.render;var a=t.ref;if(`ref`in r){var o={};for(var s in r)s!==`ref`&&(o[s]=r[s])}else o=r;return ca(t),r=Oo(e,t,n,o,a,i),s=Mo(),e!==null&&!z?(No(e,t,i),Nc(e,t,i)):(j&&s&&zi(t),t.flags|=1,cc(e,t,r,i),t.child)}function uc(e,t,n,r,i){if(e===null){var a=n.type;return typeof a==`function`&&!vi(a)&&a.defaultProps===void 0&&n.compare===null?(t.tag=15,t.type=a,dc(e,t,a,r,i)):(e=xi(n.type,null,r,t,t.mode,i),e.ref=t.ref,e.return=t,t.child=e)}if(a=e.child,!Pc(e,i)){var o=a.memoizedProps;if(n=n.compare,n=n===null?Mr:n,n(o,r)&&e.ref===t.ref)return Nc(e,t,i)}return t.flags|=1,e=yi(a,r),e.ref=t.ref,e.return=t,t.child=e}function dc(e,t,n,r,i){if(e!==null){var a=e.memoizedProps;if(Mr(a,r)&&e.ref===t.ref)if(z=!1,t.pendingProps=r=a,Pc(e,i))e.flags&131072&&(z=!0);else return t.lanes=e.lanes,Nc(e,t,i)}return yc(e,t,n,r,i)}function fc(e,t,n,r){var i=r.children,a=e===null?null:e.memoizedState;if(e===null&&t.stateNode===null&&(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),r.mode===`hidden`){if(t.flags&128){if(a=a===null?n:a.baseLanes|n,e!==null){for(r=t.child=e.child,i=0;r!==null;)i=i|r.lanes|r.childLanes,r=r.sibling;r=i&~a}else r=0,t.child=null;return mc(e,t,a,n,r)}if(n&536870912)t.memoizedState={baseLanes:0,cachePool:null},e!==null&&Da(t,a===null?null:a.cachePool),a===null?co():so(t,a),ho(t);else return r=t.lanes=536870912,mc(e,t,a===null?n:a.baseLanes|n,n,r)}else a===null?(e!==null&&Da(t,null),co(),go(t)):(Da(t,a.cachePool),so(t,a),go(t),t.memoizedState=null);return cc(e,t,i,n),t.child}function pc(e,t){return e!==null&&e.tag===22||t.stateNode!==null||(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),t.sibling}function mc(e,t,n,r,i){var a=Ea();return a=a===null?null:{parent:M._currentValue,pool:a},t.memoizedState={baseLanes:n,cachePool:a},e!==null&&Da(t,null),co(),ho(t),e!==null&&oa(e,t,r,!0),t.childLanes=i,null}function hc(e,t){return t=Oc({mode:t.mode,children:t.children},e.mode),t.ref=e.ref,e.child=t,t.return=e,t}function gc(e,t,n){return Ga(t,e.child,null,n),e=hc(t,t.pendingProps),e.flags|=2,_o(t),t.memoizedState=null,e}function _c(e,t,n){var r=t.pendingProps,a=(t.flags&128)!=0;if(t.flags&=-129,e===null){if(j){if(r.mode===`hidden`)return e=hc(t,r),t.lanes=536870912,pc(null,e);if(mo(t),(e=A)?(e=rf(e,Wi),e=e!==null&&e.data===`&`?e:null,e!==null&&(t.memoizedState={dehydrated:e,treeContext:Pi===null?null:{id:Fi,overflow:Ii},retryLane:536870912,hydrationErrors:null},n=wi(e),n.return=t,t.child=n,Hi=t,A=null)):e=null,e===null)throw Ki(t);return t.lanes=536870912,null}return hc(t,r)}var o=e.memoizedState;if(o!==null){var s=o.dehydrated;if(mo(t),a)if(t.flags&256)t.flags&=-257,t=gc(e,t,n);else if(t.memoizedState!==null)t.child=e.child,t.flags|=128,t=null;else throw Error(i(558));else if(z||oa(e,t,n,!1),a=(n&e.childLanes)!==0,z||a){if(r=G,r!==null&&(s=ut(r,n),s!==0&&s!==o.retryLane))throw o.retryLane=s,fi(e,s),hu(r,e,s),sc;Du(),t=gc(e,t,n)}else e=o.treeContext,A=cf(s.nextSibling),Hi=t,j=!0,Ui=null,Wi=!1,e!==null&&Vi(t,e),t=hc(t,r),t.flags|=4096;return t}return e=yi(e.child,{mode:r.mode,children:r.children}),e.ref=t.ref,t.child=e,e.return=t,e}function vc(e,t){var n=t.ref;if(n===null)e!==null&&e.ref!==null&&(t.flags|=4194816);else{if(typeof n!=`function`&&typeof n!=`object`)throw Error(i(284));(e===null||e.ref!==n)&&(t.flags|=4194816)}}function yc(e,t,n,r,i){return ca(t),n=Oo(e,t,n,r,void 0,i),r=Mo(),e!==null&&!z?(No(e,t,i),Nc(e,t,i)):(j&&r&&zi(t),t.flags|=1,cc(e,t,n,i),t.child)}function bc(e,t,n,r,i,a){return ca(t),t.updateQueue=null,n=Ao(t,r,n,i),ko(e),r=Mo(),e!==null&&!z?(No(e,t,a),Nc(e,t,a)):(j&&r&&zi(t),t.flags|=1,cc(e,t,n,a),t.child)}function xc(e,t,n,r,i){if(ca(t),t.stateNode===null){var a=hi,o=n.contextType;typeof o==`object`&&o&&(a=la(o)),a=new n(r,a),t.memoizedState=a.state!==null&&a.state!==void 0?a.state:null,a.updater=Js,t.stateNode=a,a._reactInternals=t,a=t.stateNode,a.props=r,a.state=t.memoizedState,a.refs={},Ja(t),o=n.contextType,a.context=typeof o==`object`&&o?la(o):hi,a.state=t.memoizedState,o=n.getDerivedStateFromProps,typeof o==`function`&&(qs(t,n,o,r),a.state=t.memoizedState),typeof n.getDerivedStateFromProps==`function`||typeof a.getSnapshotBeforeUpdate==`function`||typeof a.UNSAFE_componentWillMount!=`function`&&typeof a.componentWillMount!=`function`||(o=a.state,typeof a.componentWillMount==`function`&&a.componentWillMount(),typeof a.UNSAFE_componentWillMount==`function`&&a.UNSAFE_componentWillMount(),o!==a.state&&Js.enqueueReplaceState(a,a.state,null),no(t,r,a,i),to(),a.state=t.memoizedState),typeof a.componentDidMount==`function`&&(t.flags|=4194308),r=!0}else if(e===null){a=t.stateNode;var s=t.memoizedProps,c=Zs(n,s);a.props=c;var l=a.context,u=n.contextType;o=hi,typeof u==`object`&&u&&(o=la(u));var d=n.getDerivedStateFromProps;u=typeof d==`function`||typeof a.getSnapshotBeforeUpdate==`function`,s=t.pendingProps!==s,u||typeof a.UNSAFE_componentWillReceiveProps!=`function`&&typeof a.componentWillReceiveProps!=`function`||(s||l!==o)&&Xs(t,a,r,o),qa=!1;var f=t.memoizedState;a.state=f,no(t,r,a,i),to(),l=t.memoizedState,s||f!==l||qa?(typeof d==`function`&&(qs(t,n,d,r),l=t.memoizedState),(c=qa||Ys(t,n,c,r,f,l,o))?(u||typeof a.UNSAFE_componentWillMount!=`function`&&typeof a.componentWillMount!=`function`||(typeof a.componentWillMount==`function`&&a.componentWillMount(),typeof a.UNSAFE_componentWillMount==`function`&&a.UNSAFE_componentWillMount()),typeof a.componentDidMount==`function`&&(t.flags|=4194308)):(typeof a.componentDidMount==`function`&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),a.props=r,a.state=l,a.context=o,r=c):(typeof a.componentDidMount==`function`&&(t.flags|=4194308),r=!1)}else{a=t.stateNode,Ya(e,t),o=t.memoizedProps,u=Zs(n,o),a.props=u,d=t.pendingProps,f=a.context,l=n.contextType,c=hi,typeof l==`object`&&l&&(c=la(l)),s=n.getDerivedStateFromProps,(l=typeof s==`function`||typeof a.getSnapshotBeforeUpdate==`function`)||typeof a.UNSAFE_componentWillReceiveProps!=`function`&&typeof a.componentWillReceiveProps!=`function`||(o!==d||f!==c)&&Xs(t,a,r,c),qa=!1,f=t.memoizedState,a.state=f,no(t,r,a,i),to();var p=t.memoizedState;o!==d||f!==p||qa||e!==null&&e.dependencies!==null&&sa(e.dependencies)?(typeof s==`function`&&(qs(t,n,s,r),p=t.memoizedState),(u=qa||Ys(t,n,u,r,f,p,c)||e!==null&&e.dependencies!==null&&sa(e.dependencies))?(l||typeof a.UNSAFE_componentWillUpdate!=`function`&&typeof a.componentWillUpdate!=`function`||(typeof a.componentWillUpdate==`function`&&a.componentWillUpdate(r,p,c),typeof a.UNSAFE_componentWillUpdate==`function`&&a.UNSAFE_componentWillUpdate(r,p,c)),typeof a.componentDidUpdate==`function`&&(t.flags|=4),typeof a.getSnapshotBeforeUpdate==`function`&&(t.flags|=1024)):(typeof a.componentDidUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),typeof a.getSnapshotBeforeUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=p),a.props=r,a.state=p,a.context=c,r=u):(typeof a.componentDidUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),typeof a.getSnapshotBeforeUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),r=!1)}return a=r,vc(e,t),r=(t.flags&128)!=0,a||r?(a=t.stateNode,n=r&&typeof n.getDerivedStateFromError!=`function`?null:a.render(),t.flags|=1,e!==null&&r?(t.child=Ga(t,e.child,null,i),t.child=Ga(t,null,n,i)):cc(e,t,n,i),t.memoizedState=a.state,e=t.child):e=Nc(e,t,i),e}function Sc(e,t,n,r){return Xi(),t.flags|=256,cc(e,t,n,r),t.child}var Cc={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function wc(e){return{baseLanes:e,cachePool:Oa()}}function Tc(e,t,n){return e=e===null?0:e.childLanes&~n,t&&(e|=Yl),e}function Ec(e,t,n){var r=t.pendingProps,a=!1,o=(t.flags&128)!=0,s;if((s=o)||(s=e!==null&&e.memoizedState===null?!1:(N.current&2)!=0),s&&(a=!0,t.flags&=-129),s=(t.flags&32)!=0,t.flags&=-33,e===null){if(j){if(a?po(t):go(t),(e=A)?(e=rf(e,Wi),e=e!==null&&e.data!==`&`?e:null,e!==null&&(t.memoizedState={dehydrated:e,treeContext:Pi===null?null:{id:Fi,overflow:Ii},retryLane:536870912,hydrationErrors:null},n=wi(e),n.return=t,t.child=n,Hi=t,A=null)):e=null,e===null)throw Ki(t);return of(e)?t.lanes=32:t.lanes=536870912,null}var c=r.children;return r=r.fallback,a?(go(t),a=t.mode,c=Oc({mode:`hidden`,children:c},a),r=Si(r,a,n,null),c.return=t,r.return=t,c.sibling=r,t.child=c,r=t.child,r.memoizedState=wc(n),r.childLanes=Tc(e,s,n),t.memoizedState=Cc,pc(null,r)):(po(t),Dc(t,c))}var l=e.memoizedState;if(l!==null&&(c=l.dehydrated,c!==null)){if(o)t.flags&256?(po(t),t.flags&=-257,t=kc(e,t,n)):t.memoizedState===null?(go(t),c=r.fallback,a=t.mode,r=Oc({mode:`visible`,children:r.children},a),c=Si(c,a,n,null),c.flags|=2,r.return=t,c.return=t,r.sibling=c,t.child=r,Ga(t,e.child,null,n),r=t.child,r.memoizedState=wc(n),r.childLanes=Tc(e,s,n),t.memoizedState=Cc,t=pc(null,r)):(go(t),t.child=e.child,t.flags|=128,t=null);else if(po(t),of(c)){if(s=c.nextSibling&&c.nextSibling.dataset,s)var u=s.dgst;s=u,r=Error(i(419)),r.stack=``,r.digest=s,Qi({value:r,source:null,stack:null}),t=kc(e,t,n)}else if(z||oa(e,t,n,!1),s=(n&e.childLanes)!==0,z||s){if(s=G,s!==null&&(r=ut(s,n),r!==0&&r!==l.retryLane))throw l.retryLane=r,fi(e,r),hu(s,e,r),sc;af(c)||Du(),t=kc(e,t,n)}else af(c)?(t.flags|=192,t.child=e.child,t=null):(e=l.treeContext,A=cf(c.nextSibling),Hi=t,j=!0,Ui=null,Wi=!1,e!==null&&Vi(t,e),t=Dc(t,r.children),t.flags|=4096);return t}return a?(go(t),c=r.fallback,a=t.mode,l=e.child,u=l.sibling,r=yi(l,{mode:`hidden`,children:r.children}),r.subtreeFlags=l.subtreeFlags&65011712,u===null?(c=Si(c,a,n,null),c.flags|=2):c=yi(u,c),c.return=t,r.return=t,r.sibling=c,t.child=r,pc(null,r),r=t.child,c=e.child.memoizedState,c===null?c=wc(n):(a=c.cachePool,a===null?a=Oa():(l=M._currentValue,a=a.parent===l?a:{parent:l,pool:l}),c={baseLanes:c.baseLanes|n,cachePool:a}),r.memoizedState=c,r.childLanes=Tc(e,s,n),t.memoizedState=Cc,pc(e.child,r)):(po(t),n=e.child,e=n.sibling,n=yi(n,{mode:`visible`,children:r.children}),n.return=t,n.sibling=null,e!==null&&(s=t.deletions,s===null?(t.deletions=[e],t.flags|=16):s.push(e)),t.child=n,t.memoizedState=null,n)}function Dc(e,t){return t=Oc({mode:`visible`,children:t},e.mode),t.return=e,e.child=t}function Oc(e,t){return e=_i(22,e,null,t),e.lanes=0,e}function kc(e,t,n){return Ga(t,e.child,null,n),e=Dc(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function Ac(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),ia(e.return,t,n)}function jc(e,t,n,r,i,a){var o=e.memoizedState;o===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:i,treeForkCount:a}:(o.isBackwards=t,o.rendering=null,o.renderingStartTime=0,o.last=r,o.tail=n,o.tailMode=i,o.treeForkCount=a)}function Mc(e,t,n){var r=t.pendingProps,i=r.revealOrder,a=r.tail;r=r.children;var o=N.current,s=(o&2)!=0;if(s?(o=o&1|2,t.flags|=128):o&=1,O(N,o),cc(e,t,r,n),r=j?ji:0,!s&&e!==null&&e.flags&128)a:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Ac(e,n,t);else if(e.tag===19)Ac(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break a;for(;e.sibling===null;){if(e.return===null||e.return===t)break a;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(i){case`forwards`:for(n=t.child,i=null;n!==null;)e=n.alternate,e!==null&&vo(e)===null&&(i=n),n=n.sibling;n=i,n===null?(i=t.child,t.child=null):(i=n.sibling,n.sibling=null),jc(t,!1,i,n,a,r);break;case`backwards`:case`unstable_legacy-backwards`:for(n=null,i=t.child,t.child=null;i!==null;){if(e=i.alternate,e!==null&&vo(e)===null){t.child=i;break}e=i.sibling,i.sibling=n,n=i,i=e}jc(t,!0,n,null,a,r);break;case`together`:jc(t,!1,null,null,void 0,r);break;default:t.memoizedState=null}return t.child}function Nc(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),Kl|=t.lanes,(n&t.childLanes)===0)if(e!==null){if(oa(e,t,n,!1),(n&t.childLanes)===0)return null}else return null;if(e!==null&&t.child!==e.child)throw Error(i(153));if(t.child!==null){for(e=t.child,n=yi(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=yi(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function Pc(e,t){return(e.lanes&t)===0?(e=e.dependencies,!!(e!==null&&sa(e))):!0}function Fc(e,t,n){switch(t.tag){case 3:ye(t,t.stateNode.containerInfo),na(t,M,e.memoizedState.cache),Xi();break;case 27:case 5:xe(t);break;case 4:ye(t,t.stateNode.containerInfo);break;case 10:na(t,t.type,t.memoizedProps.value);break;case 31:if(t.memoizedState!==null)return t.flags|=128,mo(t),null;break;case 13:var r=t.memoizedState;if(r!==null)return r.dehydrated===null?(n&t.child.childLanes)===0?(po(t),e=Nc(e,t,n),e===null?null:e.sibling):Ec(e,t,n):(po(t),t.flags|=128,null);po(t);break;case 19:var i=(e.flags&128)!=0;if(r=(n&t.childLanes)!==0,r||=(oa(e,t,n,!1),(n&t.childLanes)!==0),i){if(r)return Mc(e,t,n);t.flags|=128}if(i=t.memoizedState,i!==null&&(i.rendering=null,i.tail=null,i.lastEffect=null),O(N,N.current),r)break;return null;case 22:return t.lanes=0,fc(e,t,n,t.pendingProps);case 24:na(t,M,e.memoizedState.cache)}return Nc(e,t,n)}function Ic(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps)z=!0;else{if(!Pc(e,n)&&!(t.flags&128))return z=!1,Fc(e,t,n);z=!!(e.flags&131072)}else z=!1,j&&t.flags&1048576&&Ri(t,ji,t.index);switch(t.lanes=0,t.tag){case 16:a:{var r=t.pendingProps;if(e=Fa(t.elementType),t.type=e,typeof e==`function`)vi(e)?(r=Zs(e,r),t.tag=1,t=xc(null,t,e,r,n)):(t.tag=0,t=yc(null,t,e,r,n));else{if(e!=null){var a=e.$$typeof;if(a===C){t.tag=11,t=lc(null,t,e,r,n);break a}else if(a===re){t.tag=14,t=uc(null,t,e,r,n);break a}}throw t=le(e)||e,Error(i(306,t,``))}}return t;case 0:return yc(e,t,t.type,t.pendingProps,n);case 1:return r=t.type,a=Zs(r,t.pendingProps),xc(e,t,r,a,n);case 3:a:{if(ye(t,t.stateNode.containerInfo),e===null)throw Error(i(387));r=t.pendingProps;var o=t.memoizedState;a=o.element,Ya(e,t),no(t,r,null,n);var s=t.memoizedState;if(r=s.cache,na(t,M,r),r!==o.cache&&aa(t,[M],n,!0),to(),r=s.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:s.cache},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){t=Sc(e,t,r,n);break a}else if(r!==a){a=Di(Error(i(424)),t),Qi(a),t=Sc(e,t,r,n);break a}else{switch(e=t.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName===`HTML`?e.ownerDocument.body:e}for(A=cf(e.firstChild),Hi=t,j=!0,Ui=null,Wi=!0,n=Ka(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling}else{if(Xi(),r===a){t=Nc(e,t,n);break a}cc(e,t,r,n)}t=t.child}return t;case 26:return vc(e,t),e===null?(n=kf(t.type,null,t.pendingProps,null))?t.memoizedState=n:j||(n=t.type,e=t.pendingProps,r=Bd(_e.current).createElement(n),r[gt]=t,r[_t]=e,Pd(r,n,e),k(r),t.stateNode=r):t.memoizedState=kf(t.type,e.memoizedProps,t.pendingProps,e.memoizedState),null;case 27:return xe(t),e===null&&j&&(r=t.stateNode=ff(t.type,t.pendingProps,_e.current),Hi=t,Wi=!0,a=A,Zd(t.type)?(lf=a,A=cf(r.firstChild)):A=a),cc(e,t,t.pendingProps.children,n),vc(e,t),e===null&&(t.flags|=4194304),t.child;case 5:return e===null&&j&&((a=r=A)&&(r=tf(r,t.type,t.pendingProps,Wi),r===null?a=!1:(t.stateNode=r,Hi=t,A=cf(r.firstChild),Wi=!1,a=!0)),a||Ki(t)),xe(t),a=t.type,o=t.pendingProps,s=e===null?null:e.memoizedProps,r=o.children,Ud(a,o)?r=null:s!==null&&Ud(a,s)&&(t.flags|=32),t.memoizedState!==null&&(a=Oo(e,t,jo,null,null,n),Qf._currentValue=a),vc(e,t),cc(e,t,r,n),t.child;case 6:return e===null&&j&&((e=n=A)&&(n=nf(n,t.pendingProps,Wi),n===null?e=!1:(t.stateNode=n,Hi=t,A=null,e=!0)),e||Ki(t)),null;case 13:return Ec(e,t,n);case 4:return ye(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=Ga(t,null,r,n):cc(e,t,r,n),t.child;case 11:return lc(e,t,t.type,t.pendingProps,n);case 7:return cc(e,t,t.pendingProps,n),t.child;case 8:return cc(e,t,t.pendingProps.children,n),t.child;case 12:return cc(e,t,t.pendingProps.children,n),t.child;case 10:return r=t.pendingProps,na(t,t.type,r.value),cc(e,t,r.children,n),t.child;case 9:return a=t.type._context,r=t.pendingProps.children,ca(t),a=la(a),r=r(a),t.flags|=1,cc(e,t,r,n),t.child;case 14:return uc(e,t,t.type,t.pendingProps,n);case 15:return dc(e,t,t.type,t.pendingProps,n);case 19:return Mc(e,t,n);case 31:return _c(e,t,n);case 22:return fc(e,t,n,t.pendingProps);case 24:return ca(t),r=la(M),e===null?(a=Ea(),a===null&&(a=G,o=ha(),a.pooledCache=o,o.refCount++,o!==null&&(a.pooledCacheLanes|=n),a=o),t.memoizedState={parent:r,cache:a},Ja(t),na(t,M,a)):((e.lanes&n)!==0&&(Ya(e,t),no(t,null,null,n),to()),a=e.memoizedState,o=t.memoizedState,a.parent===r?(r=o.cache,na(t,M,r),r!==a.cache&&aa(t,[M],n,!0)):(a={parent:r,cache:r},t.memoizedState=a,t.lanes===0&&(t.memoizedState=t.updateQueue.baseState=a),na(t,M,r))),cc(e,t,t.pendingProps.children,n),t.child;case 29:throw t.pendingProps}throw Error(i(156,t.tag))}function Lc(e){e.flags|=4}function Rc(e,t,n,r,i){if((t=(e.mode&32)!=0)&&(t=!1),t){if(e.flags|=16777216,(i&335544128)===i)if(e.stateNode.complete)e.flags|=8192;else if(wu())e.flags|=8192;else throw Ia=Ma,Aa}else e.flags&=-16777217}function zc(e,t){if(t.type!==`stylesheet`||t.state.loading&4)e.flags&=-16777217;else if(e.flags|=16777216,!Wf(t))if(wu())e.flags|=8192;else throw Ia=Ma,Aa}function Bc(e,t){t!==null&&(e.flags|=4),e.flags&16384&&(t=e.tag===22?536870912:it(),e.lanes|=t,Xl|=t)}function Vc(e,t){if(!j)switch(e.tailMode){case`hidden`:t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case`collapsed`:n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function B(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var i=e.child;i!==null;)n|=i.lanes|i.childLanes,r|=i.subtreeFlags&65011712,r|=i.flags&65011712,i.return=e,i=i.sibling;else for(i=e.child;i!==null;)n|=i.lanes|i.childLanes,r|=i.subtreeFlags,r|=i.flags,i.return=e,i=i.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function Hc(e,t,n){var r=t.pendingProps;switch(Bi(t),t.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return B(t),null;case 1:return B(t),null;case 3:return n=t.stateNode,r=null,e!==null&&(r=e.memoizedState.cache),t.memoizedState.cache!==r&&(t.flags|=2048),ra(M),be(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(e===null||e.child===null)&&(Yi(t)?Lc(t):e===null||e.memoizedState.isDehydrated&&!(t.flags&256)||(t.flags|=1024,Zi())),B(t),null;case 26:var a=t.type,o=t.memoizedState;return e===null?(Lc(t),o===null?(B(t),Rc(t,a,null,r,n)):(B(t),zc(t,o))):o?o===e.memoizedState?(B(t),t.flags&=-16777217):(Lc(t),B(t),zc(t,o)):(e=e.memoizedProps,e!==r&&Lc(t),B(t),Rc(t,a,e,r,n)),null;case 27:if(Se(t),n=_e.current,a=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==r&&Lc(t);else{if(!r){if(t.stateNode===null)throw Error(i(166));return B(t),null}e=he.current,Yi(t)?qi(t,e):(e=ff(a,r,n),t.stateNode=e,Lc(t))}return B(t),null;case 5:if(Se(t),a=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==r&&Lc(t);else{if(!r){if(t.stateNode===null)throw Error(i(166));return B(t),null}if(o=he.current,Yi(t))qi(t,o);else{var s=Bd(_e.current);switch(o){case 1:o=s.createElementNS(`http://www.w3.org/2000/svg`,a);break;case 2:o=s.createElementNS(`http://www.w3.org/1998/Math/MathML`,a);break;default:switch(a){case`svg`:o=s.createElementNS(`http://www.w3.org/2000/svg`,a);break;case`math`:o=s.createElementNS(`http://www.w3.org/1998/Math/MathML`,a);break;case`script`:o=s.createElement(`div`),o.innerHTML=`<script><\/script>`,o=o.removeChild(o.firstChild);break;case`select`:o=typeof r.is==`string`?s.createElement(`select`,{is:r.is}):s.createElement(`select`),r.multiple?o.multiple=!0:r.size&&(o.size=r.size);break;default:o=typeof r.is==`string`?s.createElement(a,{is:r.is}):s.createElement(a)}}o[gt]=t,o[_t]=r;a:for(s=t.child;s!==null;){if(s.tag===5||s.tag===6)o.appendChild(s.stateNode);else if(s.tag!==4&&s.tag!==27&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break a;for(;s.sibling===null;){if(s.return===null||s.return===t)break a;s=s.return}s.sibling.return=s.return,s=s.sibling}t.stateNode=o;a:switch(Pd(o,a,r),a){case`button`:case`input`:case`select`:case`textarea`:r=!!r.autoFocus;break a;case`img`:r=!0;break a;default:r=!1}r&&Lc(t)}}return B(t),Rc(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==r&&Lc(t);else{if(typeof r!=`string`&&t.stateNode===null)throw Error(i(166));if(e=_e.current,Yi(t)){if(e=t.stateNode,n=t.memoizedProps,r=null,a=Hi,a!==null)switch(a.tag){case 27:case 5:r=a.memoizedProps}e[gt]=t,e=!!(e.nodeValue===n||r!==null&&!0===r.suppressHydrationWarning||Md(e.nodeValue,n)),e||Ki(t,!0)}else e=Bd(e).createTextNode(r),e[gt]=t,t.stateNode=e}return B(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(r=Yi(t),n!==null){if(e===null){if(!r)throw Error(i(318));if(e=t.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(i(557));e[gt]=t}else Xi(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;B(t),e=!1}else n=Zi(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(_o(t),t):(_o(t),null);if(t.flags&128)throw Error(i(558))}return B(t),null;case 13:if(r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(a=Yi(t),r!==null&&r.dehydrated!==null){if(e===null){if(!a)throw Error(i(318));if(a=t.memoizedState,a=a===null?null:a.dehydrated,!a)throw Error(i(317));a[gt]=t}else Xi(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;B(t),a=!1}else a=Zi(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=a),a=!0;if(!a)return t.flags&256?(_o(t),t):(_o(t),null)}return _o(t),t.flags&128?(t.lanes=n,t):(n=r!==null,e=e!==null&&e.memoizedState!==null,n&&(r=t.child,a=null,r.alternate!==null&&r.alternate.memoizedState!==null&&r.alternate.memoizedState.cachePool!==null&&(a=r.alternate.memoizedState.cachePool.pool),o=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(o=r.memoizedState.cachePool.pool),o!==a&&(r.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),Bc(t,t.updateQueue),B(t),null);case 4:return be(),e===null&&Sd(t.stateNode.containerInfo),B(t),null;case 10:return ra(t.type),B(t),null;case 19:if(D(N),r=t.memoizedState,r===null)return B(t),null;if(a=(t.flags&128)!=0,o=r.rendering,o===null)if(a)Vc(r,!1);else{if(Y!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(o=vo(e),o!==null){for(t.flags|=128,Vc(r,!1),e=o.updateQueue,t.updateQueue=e,Bc(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)bi(n,e),n=n.sibling;return O(N,N.current&1|2),j&&Li(t,r.treeForkCount),t.child}e=e.sibling}r.tail!==null&&Fe()>nu&&(t.flags|=128,a=!0,Vc(r,!1),t.lanes=4194304)}else{if(!a)if(e=vo(o),e!==null){if(t.flags|=128,a=!0,e=e.updateQueue,t.updateQueue=e,Bc(t,e),Vc(r,!0),r.tail===null&&r.tailMode===`hidden`&&!o.alternate&&!j)return B(t),null}else 2*Fe()-r.renderingStartTime>nu&&n!==536870912&&(t.flags|=128,a=!0,Vc(r,!1),t.lanes=4194304);r.isBackwards?(o.sibling=t.child,t.child=o):(e=r.last,e===null?t.child=o:e.sibling=o,r.last=o)}return r.tail===null?(B(t),null):(e=r.tail,r.rendering=e,r.tail=e.sibling,r.renderingStartTime=Fe(),e.sibling=null,n=N.current,O(N,a?n&1|2:n&1),j&&Li(t,r.treeForkCount),e);case 22:case 23:return _o(t),lo(),r=t.memoizedState!==null,e===null?r&&(t.flags|=8192):e.memoizedState!==null!==r&&(t.flags|=8192),r?n&536870912&&!(t.flags&128)&&(B(t),t.subtreeFlags&6&&(t.flags|=8192)):B(t),n=t.updateQueue,n!==null&&Bc(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),r=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(r=t.memoizedState.cachePool.pool),r!==n&&(t.flags|=2048),e!==null&&D(Ta),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),ra(M),B(t),null;case 25:return null;case 30:return null}throw Error(i(156,t.tag))}function Uc(e,t){switch(Bi(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return ra(M),be(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return Se(t),null;case 31:if(t.memoizedState!==null){if(_o(t),t.alternate===null)throw Error(i(340));Xi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if(_o(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(i(340));Xi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return D(N),null;case 4:return be(),null;case 10:return ra(t.type),null;case 22:case 23:return _o(t),lo(),e!==null&&D(Ta),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return ra(M),null;case 25:return null;default:return null}}function Wc(e,t){switch(Bi(t),t.tag){case 3:ra(M),be();break;case 26:case 27:case 5:Se(t);break;case 4:be();break;case 31:t.memoizedState!==null&&_o(t);break;case 13:_o(t);break;case 19:D(N);break;case 10:ra(t.type);break;case 22:case 23:_o(t),lo(),e!==null&&D(Ta);break;case 24:ra(M)}}function Gc(e,t){try{var n=t.updateQueue,r=n===null?null:n.lastEffect;if(r!==null){var i=r.next;n=i;do{if((n.tag&e)===e){r=void 0;var a=n.create,o=n.inst;r=a(),o.destroy=r}n=n.next}while(n!==i)}}catch(e){Z(t,t.return,e)}}function Kc(e,t,n){try{var r=t.updateQueue,i=r===null?null:r.lastEffect;if(i!==null){var a=i.next;r=a;do{if((r.tag&e)===e){var o=r.inst,s=o.destroy;if(s!==void 0){o.destroy=void 0,i=t;var c=n,l=s;try{l()}catch(e){Z(i,c,e)}}}r=r.next}while(r!==a)}}catch(e){Z(t,t.return,e)}}function qc(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{io(t,n)}catch(t){Z(e,e.return,t)}}}function Jc(e,t,n){n.props=Zs(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(n){Z(e,t,n)}}function Yc(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var r=e.stateNode;break;case 30:r=e.stateNode;break;default:r=e.stateNode}typeof n==`function`?e.refCleanup=n(r):n.current=r}}catch(n){Z(e,t,n)}}function Xc(e,t){var n=e.ref,r=e.refCleanup;if(n!==null)if(typeof r==`function`)try{r()}catch(n){Z(e,t,n)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n==`function`)try{n(null)}catch(n){Z(e,t,n)}else n.current=null}function Zc(e){var t=e.type,n=e.memoizedProps,r=e.stateNode;try{a:switch(t){case`button`:case`input`:case`select`:case`textarea`:n.autoFocus&&r.focus();break a;case`img`:n.src?r.src=n.src:n.srcSet&&(r.srcset=n.srcSet)}}catch(t){Z(e,e.return,t)}}function Qc(e,t,n){try{var r=e.stateNode;Fd(r,e.type,n,t),r[_t]=t}catch(t){Z(e,e.return,t)}}function $c(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Zd(e.type)||e.tag===4}function el(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||$c(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.tag===27&&Zd(e.type)||e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function tl(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=ln));else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(tl(e,t,n),e=e.sibling;e!==null;)tl(e,t,n),e=e.sibling}function nl(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(nl(e,t,n),e=e.sibling;e!==null;)nl(e,t,n),e=e.sibling}function rl(e){var t=e.stateNode,n=e.memoizedProps;try{for(var r=e.type,i=t.attributes;i.length;)t.removeAttributeNode(i[0]);Pd(t,r,n),t[gt]=e,t[_t]=n}catch(t){Z(e,e.return,t)}}var il=!1,V=!1,al=!1,ol=typeof WeakSet==`function`?WeakSet:Set,H=null;function sl(e,t){if(e=e.containerInfo,Rd=sp,e=Ir(e),Lr(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var a=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||a!==0&&f.nodeType!==3||(c=s+a),f!==o||r!==0&&f.nodeType!==3||(l=s+r),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===a&&(c=s),p===o&&++d===r&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(zd={focusedElem:e,selectionRange:n},sp=!1,H=t;H!==null;)if(t=H,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,H=e;else for(;H!==null;){switch(t=H,o=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e===null?null:e.events,e!==null))for(n=0;n<e.length;n++)a=e[n],a.ref.impl=a.nextImpl;break;case 11:case 15:break;case 1:if(e&1024&&o!==null){e=void 0,n=t,a=o.memoizedProps,o=o.memoizedState,r=n.stateNode;try{var h=Zs(n.type,a);e=r.getSnapshotBeforeUpdate(h,o),r.__reactInternalSnapshotBeforeUpdate=e}catch(e){Z(n,n.return,e)}}break;case 3:if(e&1024){if(e=t.stateNode.containerInfo,n=e.nodeType,n===9)ef(e);else if(n===1)switch(e.nodeName){case`HEAD`:case`HTML`:case`BODY`:ef(e);break;default:e.textContent=``}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if(e&1024)throw Error(i(163))}if(e=t.sibling,e!==null){e.return=t.return,H=e;break}H=t.return}}function cl(e,t,n){var r=n.flags;switch(n.tag){case 0:case 11:case 15:Sl(e,n),r&4&&Gc(5,n);break;case 1:if(Sl(e,n),r&4)if(e=n.stateNode,t===null)try{e.componentDidMount()}catch(e){Z(n,n.return,e)}else{var i=Zs(n.type,t.memoizedProps);t=t.memoizedState;try{e.componentDidUpdate(i,t,e.__reactInternalSnapshotBeforeUpdate)}catch(e){Z(n,n.return,e)}}r&64&&qc(n),r&512&&Yc(n,n.return);break;case 3:if(Sl(e,n),r&64&&(e=n.updateQueue,e!==null)){if(t=null,n.child!==null)switch(n.child.tag){case 27:case 5:t=n.child.stateNode;break;case 1:t=n.child.stateNode}try{io(e,t)}catch(e){Z(n,n.return,e)}}break;case 27:t===null&&r&4&&rl(n);case 26:case 5:Sl(e,n),t===null&&r&4&&Zc(n),r&512&&Yc(n,n.return);break;case 12:Sl(e,n);break;case 31:Sl(e,n),r&4&&pl(e,n);break;case 13:Sl(e,n),r&4&&ml(e,n),r&64&&(e=n.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(n=Ju.bind(null,n),sf(e,n))));break;case 22:if(r=n.memoizedState!==null||il,!r){t=t!==null&&t.memoizedState!==null||V,i=il;var a=V;il=r,(V=t)&&!a?wl(e,n,(n.subtreeFlags&8772)!=0):Sl(e,n),il=i,V=a}break;case 30:break;default:Sl(e,n)}}function ll(e){var t=e.alternate;t!==null&&(e.alternate=null,ll(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&wt(t)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var U=null,ul=!1;function dl(e,t,n){for(n=n.child;n!==null;)fl(e,t,n),n=n.sibling}function fl(e,t,n){if(Ge&&typeof Ge.onCommitFiberUnmount==`function`)try{Ge.onCommitFiberUnmount(We,n)}catch{}switch(n.tag){case 26:V||Xc(n,t),dl(e,t,n),n.memoizedState?n.memoizedState.count--:n.stateNode&&(n=n.stateNode,n.parentNode.removeChild(n));break;case 27:V||Xc(n,t);var r=U,i=ul;Zd(n.type)&&(U=n.stateNode,ul=!1),dl(e,t,n),pf(n.stateNode),U=r,ul=i;break;case 5:V||Xc(n,t);case 6:if(r=U,i=ul,U=null,dl(e,t,n),U=r,ul=i,U!==null)if(ul)try{(U.nodeType===9?U.body:U.nodeName===`HTML`?U.ownerDocument.body:U).removeChild(n.stateNode)}catch(e){Z(n,t,e)}else try{U.removeChild(n.stateNode)}catch(e){Z(n,t,e)}break;case 18:U!==null&&(ul?(e=U,Qd(e.nodeType===9?e.body:e.nodeName===`HTML`?e.ownerDocument.body:e,n.stateNode),Np(e)):Qd(U,n.stateNode));break;case 4:r=U,i=ul,U=n.stateNode.containerInfo,ul=!0,dl(e,t,n),U=r,ul=i;break;case 0:case 11:case 14:case 15:Kc(2,n,t),V||Kc(4,n,t),dl(e,t,n);break;case 1:V||(Xc(n,t),r=n.stateNode,typeof r.componentWillUnmount==`function`&&Jc(n,t,r)),dl(e,t,n);break;case 21:dl(e,t,n);break;case 22:V=(r=V)||n.memoizedState!==null,dl(e,t,n),V=r;break;default:dl(e,t,n)}}function pl(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{Np(e)}catch(e){Z(t,t.return,e)}}}function ml(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{Np(e)}catch(e){Z(t,t.return,e)}}function hl(e){switch(e.tag){case 31:case 13:case 19:var t=e.stateNode;return t===null&&(t=e.stateNode=new ol),t;case 22:return e=e.stateNode,t=e._retryCache,t===null&&(t=e._retryCache=new ol),t;default:throw Error(i(435,e.tag))}}function gl(e,t){var n=hl(e);t.forEach(function(t){if(!n.has(t)){n.add(t);var r=Yu.bind(null,e,t);t.then(r,r)}})}function _l(e,t){var n=t.deletions;if(n!==null)for(var r=0;r<n.length;r++){var a=n[r],o=e,s=t,c=s;a:for(;c!==null;){switch(c.tag){case 27:if(Zd(c.type)){U=c.stateNode,ul=!1;break a}break;case 5:U=c.stateNode,ul=!1;break a;case 3:case 4:U=c.stateNode.containerInfo,ul=!0;break a}c=c.return}if(U===null)throw Error(i(160));fl(o,s,a),U=null,ul=!1,o=a.alternate,o!==null&&(o.return=null),a.return=null}if(t.subtreeFlags&13886)for(t=t.child;t!==null;)yl(t,e),t=t.sibling}var vl=null;function yl(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:_l(t,e),bl(e),r&4&&(Kc(3,e,e.return),Gc(3,e),Kc(5,e,e.return));break;case 1:_l(t,e),bl(e),r&512&&(V||n===null||Xc(n,n.return)),r&64&&il&&(e=e.updateQueue,e!==null&&(r=e.callbacks,r!==null&&(n=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=n===null?r:n.concat(r))));break;case 26:var a=vl;if(_l(t,e),bl(e),r&512&&(V||n===null||Xc(n,n.return)),r&4){var o=n===null?null:n.memoizedState;if(r=e.memoizedState,n===null)if(r===null)if(e.stateNode===null){a:{r=e.type,n=e.memoizedProps,a=a.ownerDocument||a;b:switch(r){case`title`:o=a.getElementsByTagName(`title`)[0],(!o||o[Ct]||o[gt]||o.namespaceURI===`http://www.w3.org/2000/svg`||o.hasAttribute(`itemprop`))&&(o=a.createElement(r),a.head.insertBefore(o,a.querySelector(`head > title`))),Pd(o,r,n),o[gt]=e,k(o),r=o;break a;case`link`:var s=Vf(`link`,`href`,a).get(r+(n.href||``));if(s){for(var c=0;c<s.length;c++)if(o=s[c],o.getAttribute(`href`)===(n.href==null||n.href===``?null:n.href)&&o.getAttribute(`rel`)===(n.rel==null?null:n.rel)&&o.getAttribute(`title`)===(n.title==null?null:n.title)&&o.getAttribute(`crossorigin`)===(n.crossOrigin==null?null:n.crossOrigin)){s.splice(c,1);break b}}o=a.createElement(r),Pd(o,r,n),a.head.appendChild(o);break;case`meta`:if(s=Vf(`meta`,`content`,a).get(r+(n.content||``))){for(c=0;c<s.length;c++)if(o=s[c],o.getAttribute(`content`)===(n.content==null?null:``+n.content)&&o.getAttribute(`name`)===(n.name==null?null:n.name)&&o.getAttribute(`property`)===(n.property==null?null:n.property)&&o.getAttribute(`http-equiv`)===(n.httpEquiv==null?null:n.httpEquiv)&&o.getAttribute(`charset`)===(n.charSet==null?null:n.charSet)){s.splice(c,1);break b}}o=a.createElement(r),Pd(o,r,n),a.head.appendChild(o);break;default:throw Error(i(468,r))}o[gt]=e,k(o),r=o}e.stateNode=r}else Hf(a,e.type,e.stateNode);else e.stateNode=If(a,r,e.memoizedProps);else o===r?r===null&&e.stateNode!==null&&Qc(e,e.memoizedProps,n.memoizedProps):(o===null?n.stateNode!==null&&(n=n.stateNode,n.parentNode.removeChild(n)):o.count--,r===null?Hf(a,e.type,e.stateNode):If(a,r,e.memoizedProps))}break;case 27:_l(t,e),bl(e),r&512&&(V||n===null||Xc(n,n.return)),n!==null&&r&4&&Qc(e,e.memoizedProps,n.memoizedProps);break;case 5:if(_l(t,e),bl(e),r&512&&(V||n===null||Xc(n,n.return)),e.flags&32){a=e.stateNode;try{en(a,``)}catch(t){Z(e,e.return,t)}}r&4&&e.stateNode!=null&&(a=e.memoizedProps,Qc(e,a,n===null?a:n.memoizedProps)),r&1024&&(al=!0);break;case 6:if(_l(t,e),bl(e),r&4){if(e.stateNode===null)throw Error(i(162));r=e.memoizedProps,n=e.stateNode;try{n.nodeValue=r}catch(t){Z(e,e.return,t)}}break;case 3:if(Bf=null,a=vl,vl=gf(t.containerInfo),_l(t,e),vl=a,bl(e),r&4&&n!==null&&n.memoizedState.isDehydrated)try{Np(t.containerInfo)}catch(t){Z(e,e.return,t)}al&&(al=!1,xl(e));break;case 4:r=vl,vl=gf(e.stateNode.containerInfo),_l(t,e),bl(e),vl=r;break;case 12:_l(t,e),bl(e);break;case 31:_l(t,e),bl(e),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,gl(e,r)));break;case 13:_l(t,e),bl(e),e.child.flags&8192&&e.memoizedState!==null!=(n!==null&&n.memoizedState!==null)&&(eu=Fe()),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,gl(e,r)));break;case 22:a=e.memoizedState!==null;var l=n!==null&&n.memoizedState!==null,u=il,d=V;if(il=u||a,V=d||l,_l(t,e),V=d,il=u,bl(e),r&8192)a:for(t=e.stateNode,t._visibility=a?t._visibility&-2:t._visibility|1,a&&(n===null||l||il||V||Cl(e)),n=null,t=e;;){if(t.tag===5||t.tag===26){if(n===null){l=n=t;try{if(o=l.stateNode,a)s=o.style,typeof s.setProperty==`function`?s.setProperty(`display`,`none`,`important`):s.display=`none`;else{c=l.stateNode;var f=l.memoizedProps.style,p=f!=null&&f.hasOwnProperty(`display`)?f.display:null;c.style.display=p==null||typeof p==`boolean`?``:(``+p).trim()}}catch(e){Z(l,l.return,e)}}}else if(t.tag===6){if(n===null){l=t;try{l.stateNode.nodeValue=a?``:l.memoizedProps}catch(e){Z(l,l.return,e)}}}else if(t.tag===18){if(n===null){l=t;try{var m=l.stateNode;a?$d(m,!0):$d(l.stateNode,!1)}catch(e){Z(l,l.return,e)}}}else if((t.tag!==22&&t.tag!==23||t.memoizedState===null||t===e)&&t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break a;for(;t.sibling===null;){if(t.return===null||t.return===e)break a;n===t&&(n=null),t=t.return}n===t&&(n=null),t.sibling.return=t.return,t=t.sibling}r&4&&(r=e.updateQueue,r!==null&&(n=r.retryQueue,n!==null&&(r.retryQueue=null,gl(e,n))));break;case 19:_l(t,e),bl(e),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,gl(e,r)));break;case 30:break;case 21:break;default:_l(t,e),bl(e)}}function bl(e){var t=e.flags;if(t&2){try{for(var n,r=e.return;r!==null;){if($c(r)){n=r;break}r=r.return}if(n==null)throw Error(i(160));switch(n.tag){case 27:var a=n.stateNode;nl(e,el(e),a);break;case 5:var o=n.stateNode;n.flags&32&&(en(o,``),n.flags&=-33),nl(e,el(e),o);break;case 3:case 4:var s=n.stateNode.containerInfo;tl(e,el(e),s);break;default:throw Error(i(161))}}catch(t){Z(e,e.return,t)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function xl(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var t=e;xl(t),t.tag===5&&t.flags&1024&&t.stateNode.reset(),e=e.sibling}}function Sl(e,t){if(t.subtreeFlags&8772)for(t=t.child;t!==null;)cl(e,t.alternate,t),t=t.sibling}function Cl(e){for(e=e.child;e!==null;){var t=e;switch(t.tag){case 0:case 11:case 14:case 15:Kc(4,t,t.return),Cl(t);break;case 1:Xc(t,t.return);var n=t.stateNode;typeof n.componentWillUnmount==`function`&&Jc(t,t.return,n),Cl(t);break;case 27:pf(t.stateNode);case 26:case 5:Xc(t,t.return),Cl(t);break;case 22:t.memoizedState===null&&Cl(t);break;case 30:Cl(t);break;default:Cl(t)}e=e.sibling}}function wl(e,t,n){for(n&&=(t.subtreeFlags&8772)!=0,t=t.child;t!==null;){var r=t.alternate,i=e,a=t,o=a.flags;switch(a.tag){case 0:case 11:case 15:wl(i,a,n),Gc(4,a);break;case 1:if(wl(i,a,n),r=a,i=r.stateNode,typeof i.componentDidMount==`function`)try{i.componentDidMount()}catch(e){Z(r,r.return,e)}if(r=a,i=r.updateQueue,i!==null){var s=r.stateNode;try{var c=i.shared.hiddenCallbacks;if(c!==null)for(i.shared.hiddenCallbacks=null,i=0;i<c.length;i++)ro(c[i],s)}catch(e){Z(r,r.return,e)}}n&&o&64&&qc(a),Yc(a,a.return);break;case 27:rl(a);case 26:case 5:wl(i,a,n),n&&r===null&&o&4&&Zc(a),Yc(a,a.return);break;case 12:wl(i,a,n);break;case 31:wl(i,a,n),n&&o&4&&pl(i,a);break;case 13:wl(i,a,n),n&&o&4&&ml(i,a);break;case 22:a.memoizedState===null&&wl(i,a,n),Yc(a,a.return);break;case 30:break;default:wl(i,a,n)}t=t.sibling}}function Tl(e,t){var n=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),e=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(e=t.memoizedState.cachePool.pool),e!==n&&(e!=null&&e.refCount++,n!=null&&ga(n))}function El(e,t){e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(t.refCount++,e!=null&&ga(e))}function Dl(e,t,n,r){if(t.subtreeFlags&10256)for(t=t.child;t!==null;)Ol(e,t,n,r),t=t.sibling}function Ol(e,t,n,r){var i=t.flags;switch(t.tag){case 0:case 11:case 15:Dl(e,t,n,r),i&2048&&Gc(9,t);break;case 1:Dl(e,t,n,r);break;case 3:Dl(e,t,n,r),i&2048&&(e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(t.refCount++,e!=null&&ga(e)));break;case 12:if(i&2048){Dl(e,t,n,r),e=t.stateNode;try{var a=t.memoizedProps,o=a.id,s=a.onPostCommit;typeof s==`function`&&s(o,t.alternate===null?`mount`:`update`,e.passiveEffectDuration,-0)}catch(e){Z(t,t.return,e)}}else Dl(e,t,n,r);break;case 31:Dl(e,t,n,r);break;case 13:Dl(e,t,n,r);break;case 23:break;case 22:a=t.stateNode,o=t.alternate,t.memoizedState===null?a._visibility&2?Dl(e,t,n,r):(a._visibility|=2,kl(e,t,n,r,(t.subtreeFlags&10256)!=0||!1)):a._visibility&2?Dl(e,t,n,r):Al(e,t),i&2048&&Tl(o,t);break;case 24:Dl(e,t,n,r),i&2048&&El(t.alternate,t);break;default:Dl(e,t,n,r)}}function kl(e,t,n,r,i){for(i&&=(t.subtreeFlags&10256)!=0||!1,t=t.child;t!==null;){var a=e,o=t,s=n,c=r,l=o.flags;switch(o.tag){case 0:case 11:case 15:kl(a,o,s,c,i),Gc(8,o);break;case 23:break;case 22:var u=o.stateNode;o.memoizedState===null?(u._visibility|=2,kl(a,o,s,c,i)):u._visibility&2?kl(a,o,s,c,i):Al(a,o),i&&l&2048&&Tl(o.alternate,o);break;case 24:kl(a,o,s,c,i),i&&l&2048&&El(o.alternate,o);break;default:kl(a,o,s,c,i)}t=t.sibling}}function Al(e,t){if(t.subtreeFlags&10256)for(t=t.child;t!==null;){var n=e,r=t,i=r.flags;switch(r.tag){case 22:Al(n,r),i&2048&&Tl(r.alternate,r);break;case 24:Al(n,r),i&2048&&El(r.alternate,r);break;default:Al(n,r)}t=t.sibling}}var jl=8192;function Ml(e,t,n){if(e.subtreeFlags&jl)for(e=e.child;e!==null;)Nl(e,t,n),e=e.sibling}function Nl(e,t,n){switch(e.tag){case 26:Ml(e,t,n),e.flags&jl&&e.memoizedState!==null&&Gf(n,vl,e.memoizedState,e.memoizedProps);break;case 5:Ml(e,t,n);break;case 3:case 4:var r=vl;vl=gf(e.stateNode.containerInfo),Ml(e,t,n),vl=r;break;case 22:e.memoizedState===null&&(r=e.alternate,r!==null&&r.memoizedState!==null?(r=jl,jl=16777216,Ml(e,t,n),jl=r):Ml(e,t,n));break;default:Ml(e,t,n)}}function Pl(e){var t=e.alternate;if(t!==null&&(e=t.child,e!==null)){t.child=null;do t=e.sibling,e.sibling=null,e=t;while(e!==null)}}function Fl(e){var t=e.deletions;if(e.flags&16){if(t!==null)for(var n=0;n<t.length;n++){var r=t[n];H=r,Rl(r,e)}Pl(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)Il(e),e=e.sibling}function Il(e){switch(e.tag){case 0:case 11:case 15:Fl(e),e.flags&2048&&Kc(9,e,e.return);break;case 3:Fl(e);break;case 12:Fl(e);break;case 22:var t=e.stateNode;e.memoizedState!==null&&t._visibility&2&&(e.return===null||e.return.tag!==13)?(t._visibility&=-3,Ll(e)):Fl(e);break;default:Fl(e)}}function Ll(e){var t=e.deletions;if(e.flags&16){if(t!==null)for(var n=0;n<t.length;n++){var r=t[n];H=r,Rl(r,e)}Pl(e)}for(e=e.child;e!==null;){switch(t=e,t.tag){case 0:case 11:case 15:Kc(8,t,t.return),Ll(t);break;case 22:n=t.stateNode,n._visibility&2&&(n._visibility&=-3,Ll(t));break;default:Ll(t)}e=e.sibling}}function Rl(e,t){for(;H!==null;){var n=H;switch(n.tag){case 0:case 11:case 15:Kc(8,n,t);break;case 23:case 22:if(n.memoizedState!==null&&n.memoizedState.cachePool!==null){var r=n.memoizedState.cachePool.pool;r!=null&&r.refCount++}break;case 24:ga(n.memoizedState.cache)}if(r=n.child,r!==null)r.return=n,H=r;else a:for(n=e;H!==null;){r=H;var i=r.sibling,a=r.return;if(ll(r),r===n){H=null;break a}if(i!==null){i.return=a,H=i;break a}H=a}}}var zl={getCacheForType:function(e){var t=la(M),n=t.data.get(e);return n===void 0&&(n=e(),t.data.set(e,n)),n},cacheSignal:function(){return la(M).controller.signal}},Bl=typeof WeakMap==`function`?WeakMap:Map,W=0,G=null,K=null,q=0,J=0,Vl=null,Hl=!1,Ul=!1,Wl=!1,Gl=0,Y=0,Kl=0,ql=0,Jl=0,Yl=0,Xl=0,Zl=null,Ql=null,$l=!1,eu=0,tu=0,nu=1/0,ru=null,iu=null,X=0,au=null,ou=null,su=0,cu=0,lu=null,uu=null,du=0,fu=null;function pu(){return W&2&&q!==0?q&-q:T.T===null?pt():dd()}function mu(){if(Yl===0)if(!(q&536870912)||j){var e=Qe;Qe<<=1,!(Qe&3932160)&&(Qe=262144),Yl=e}else Yl=536870912;return e=uo.current,e!==null&&(e.flags|=32),Yl}function hu(e,t,n){(e===G&&(J===2||J===9)||e.cancelPendingCommit!==null)&&(Su(e,0),yu(e,q,Yl,!1)),ot(e,n),(!(W&2)||e!==G)&&(e===G&&(!(W&2)&&(ql|=n),Y===4&&yu(e,q,Yl,!1)),rd(e))}function gu(e,t,n){if(W&6)throw Error(i(327));var r=!n&&(t&127)==0&&(t&e.expiredLanes)===0||nt(e,t),a=r?Au(e,t):Ou(e,t,!0),o=r;do{if(a===0){Ul&&!r&&yu(e,t,0,!1);break}else{if(n=e.current.alternate,o&&!vu(n)){a=Ou(e,t,!1),o=!1;continue}if(a===2){if(o=t,e.errorRecoveryDisabledLanes&o)var s=0;else s=e.pendingLanes&-536870913,s=s===0?s&536870912?536870912:0:s;if(s!==0){t=s;a:{var c=e;a=Zl;var l=c.current.memoizedState.isDehydrated;if(l&&(Su(c,s).flags|=256),s=Ou(c,s,!1),s!==2){if(Wl&&!l){c.errorRecoveryDisabledLanes|=o,ql|=o,a=4;break a}o=Ql,Ql=a,o!==null&&(Ql===null?Ql=o:Ql.push.apply(Ql,o))}a=s}if(o=!1,a!==2)continue}}if(a===1){Su(e,0),yu(e,t,0,!0);break}a:{switch(r=e,o=a,o){case 0:case 1:throw Error(i(345));case 4:if((t&4194048)!==t)break;case 6:yu(r,t,Yl,!Hl);break a;case 2:Ql=null;break;case 3:case 5:break;default:throw Error(i(329))}if((t&62914560)===t&&(a=eu+300-Fe(),10<a)){if(yu(r,t,Yl,!Hl),tt(r,0,!0)!==0)break a;su=t,r.timeoutHandle=Kd(_u.bind(null,r,n,Ql,ru,$l,t,Yl,ql,Xl,Hl,o,`Throttled`,-0,0),a);break a}_u(r,n,Ql,ru,$l,t,Yl,ql,Xl,Hl,o,null,-0,0)}}break}while(1);rd(e)}function _u(e,t,n,r,i,a,o,s,c,l,u,d,f,p){if(e.timeoutHandle=-1,d=t.subtreeFlags,d&8192||(d&16785408)==16785408){d={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:ln},Nl(t,a,d);var m=(a&62914560)===a?eu-Fe():(a&4194048)===a?tu-Fe():0;if(m=qf(d,m),m!==null){su=a,e.cancelPendingCommit=m(Lu.bind(null,e,t,a,n,r,i,o,s,c,u,d,null,f,p)),yu(e,a,o,!l);return}}Lu(e,t,a,n,r,i,o,s,c)}function vu(e){for(var t=e;;){var n=t.tag;if((n===0||n===11||n===15)&&t.flags&16384&&(n=t.updateQueue,n!==null&&(n=n.stores,n!==null)))for(var r=0;r<n.length;r++){var i=n[r],a=i.getSnapshot;i=i.value;try{if(!jr(a(),i))return!1}catch{return!1}}if(n=t.child,t.subtreeFlags&16384&&n!==null)n.return=t,t=n;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 yu(e,t,n,r){t&=~Jl,t&=~ql,e.suspendedLanes|=t,e.pingedLanes&=~t,r&&(e.warmLanes|=t),r=e.expirationTimes;for(var i=t;0<i;){var a=31-qe(i),o=1<<a;r[a]=-1,i&=~o}n!==0&&ct(e,n,t)}function bu(){return W&6?!0:(id(0,!1),!1)}function xu(){if(K!==null){if(J===0)var e=K.return;else e=K,ta=ea=null,Po(e),za=null,Ba=0,e=K;for(;e!==null;)Wc(e.alternate,e),e=e.return;K=null}}function Su(e,t){var n=e.timeoutHandle;n!==-1&&(e.timeoutHandle=-1,qd(n)),n=e.cancelPendingCommit,n!==null&&(e.cancelPendingCommit=null,n()),su=0,xu(),G=e,K=n=yi(e.current,null),q=t,J=0,Vl=null,Hl=!1,Ul=nt(e,t),Wl=!1,Xl=Yl=Jl=ql=Kl=Y=0,Ql=Zl=null,$l=!1,t&8&&(t|=t&32);var r=e.entangledLanes;if(r!==0)for(e=e.entanglements,r&=t;0<r;){var i=31-qe(r),a=1<<i;t|=e[i],r&=~a}return Gl=t,li(),n}function Cu(e,t){P=null,T.H=Us,t===ka||t===ja?(t=La(),J=3):t===Aa?(t=La(),J=4):J=t===sc?8:typeof t==`object`&&t&&typeof t.then==`function`?6:1,Vl=t,K===null&&(Y=1,tc(e,Di(t,e.current)))}function wu(){var e=uo.current;return e===null?!0:(q&4194048)===q?fo===null:(q&62914560)===q||q&536870912?e===fo:!1}function Tu(){var e=T.H;return T.H=Us,e===null?Us:e}function Eu(){var e=T.A;return T.A=zl,e}function Du(){Y=4,Hl||(q&4194048)!==q&&uo.current!==null||(Ul=!0),!(Kl&134217727)&&!(ql&134217727)||G===null||yu(G,q,Yl,!1)}function Ou(e,t,n){var r=W;W|=2;var i=Tu(),a=Eu();(G!==e||q!==t)&&(ru=null,Su(e,t)),t=!1;var o=Y;a:do try{if(J!==0&&K!==null){var s=K,c=Vl;switch(J){case 8:xu(),o=6;break a;case 3:case 2:case 9:case 6:uo.current===null&&(t=!0);var l=J;if(J=0,Vl=null,Pu(e,s,c,l),n&&Ul){o=0;break a}break;default:l=J,J=0,Vl=null,Pu(e,s,c,l)}}ku(),o=Y;break}catch(t){Cu(e,t)}while(1);return t&&e.shellSuspendCounter++,ta=ea=null,W=r,T.H=i,T.A=a,K===null&&(G=null,q=0,li()),o}function ku(){for(;K!==null;)Mu(K)}function Au(e,t){var n=W;W|=2;var r=Tu(),a=Eu();G!==e||q!==t?(ru=null,nu=Fe()+500,Su(e,t)):Ul=nt(e,t);a:do try{if(J!==0&&K!==null){t=K;var o=Vl;b:switch(J){case 1:J=0,Vl=null,Pu(e,t,o,1);break;case 2:case 9:if(Na(o)){J=0,Vl=null,Nu(t);break}t=function(){J!==2&&J!==9||G!==e||(J=7),rd(e)},o.then(t,t);break a;case 3:J=7;break a;case 4:J=5;break a;case 7:Na(o)?(J=0,Vl=null,Nu(t)):(J=0,Vl=null,Pu(e,t,o,7));break;case 5:var s=null;switch(K.tag){case 26:s=K.memoizedState;case 5:case 27:var c=K;if(s?Wf(s):c.stateNode.complete){J=0,Vl=null;var l=c.sibling;if(l!==null)K=l;else{var u=c.return;u===null?K=null:(K=u,Fu(u))}break b}}J=0,Vl=null,Pu(e,t,o,5);break;case 6:J=0,Vl=null,Pu(e,t,o,6);break;case 8:xu(),Y=6;break a;default:throw Error(i(462))}}ju();break}catch(t){Cu(e,t)}while(1);return ta=ea=null,T.H=r,T.A=a,W=n,K===null?(G=null,q=0,li(),Y):0}function ju(){for(;K!==null&&!Ne();)Mu(K)}function Mu(e){var t=Ic(e.alternate,e,Gl);e.memoizedProps=e.pendingProps,t===null?Fu(e):K=t}function Nu(e){var t=e,n=t.alternate;switch(t.tag){case 15:case 0:t=bc(n,t,t.pendingProps,t.type,void 0,q);break;case 11:t=bc(n,t,t.pendingProps,t.type.render,t.ref,q);break;case 5:Po(t);default:Wc(n,t),t=K=bi(t,Gl),t=Ic(n,t,Gl)}e.memoizedProps=e.pendingProps,t===null?Fu(e):K=t}function Pu(e,t,n,r){ta=ea=null,Po(t),za=null,Ba=0;var i=t.return;try{if(oc(e,i,t,n,q)){Y=1,tc(e,Di(n,e.current)),K=null;return}}catch(t){if(i!==null)throw K=i,t;Y=1,tc(e,Di(n,e.current)),K=null;return}t.flags&32768?(j||r===1?e=!0:Ul||q&536870912?e=!1:(Hl=e=!0,(r===2||r===9||r===3||r===6)&&(r=uo.current,r!==null&&r.tag===13&&(r.flags|=16384))),Iu(t,e)):Fu(t)}function Fu(e){var t=e;do{if(t.flags&32768){Iu(t,Hl);return}e=t.return;var n=Hc(t.alternate,t,Gl);if(n!==null){K=n;return}if(t=t.sibling,t!==null){K=t;return}K=t=e}while(t!==null);Y===0&&(Y=5)}function Iu(e,t){do{var n=Uc(e.alternate,e);if(n!==null){n.flags&=32767,K=n;return}if(n=e.return,n!==null&&(n.flags|=32768,n.subtreeFlags=0,n.deletions=null),!t&&(e=e.sibling,e!==null)){K=e;return}K=e=n}while(e!==null);Y=6,K=null}function Lu(e,t,n,r,a,o,s,c,l){e.cancelPendingCommit=null;do Hu();while(X!==0);if(W&6)throw Error(i(327));if(t!==null){if(t===e.current)throw Error(i(177));if(o=t.lanes|t.childLanes,o|=ci,st(e,n,o,s,c,l),e===G&&(K=G=null,q=0),ou=t,au=e,su=n,cu=o,lu=a,uu=r,t.subtreeFlags&10256||t.flags&10256?(e.callbackNode=null,e.callbackPriority=0,Xu(ze,function(){return Uu(),null})):(e.callbackNode=null,e.callbackPriority=0),r=(t.flags&13878)!=0,t.subtreeFlags&13878||r){r=T.T,T.T=null,a=E.p,E.p=2,s=W,W|=4;try{sl(e,t,n)}finally{W=s,E.p=a,T.T=r}}X=1,Ru(),zu(),Bu()}}function Ru(){if(X===1){X=0;var e=au,t=ou,n=(t.flags&13878)!=0;if(t.subtreeFlags&13878||n){n=T.T,T.T=null;var r=E.p;E.p=2;var i=W;W|=4;try{yl(t,e);var a=zd,o=Ir(e.containerInfo),s=a.focusedElem,c=a.selectionRange;if(o!==s&&s&&s.ownerDocument&&Fr(s.ownerDocument.documentElement,s)){if(c!==null&&Lr(s)){var l=c.start,u=c.end;if(u===void 0&&(u=l),`selectionStart`in s)s.selectionStart=l,s.selectionEnd=Math.min(u,s.value.length);else{var d=s.ownerDocument||document,f=d&&d.defaultView||window;if(f.getSelection){var p=f.getSelection(),m=s.textContent.length,h=Math.min(c.start,m),g=c.end===void 0?h:Math.min(c.end,m);!p.extend&&h>g&&(o=g,g=h,h=o);var _=Pr(s,h),v=Pr(s,g);if(_&&v&&(p.rangeCount!==1||p.anchorNode!==_.node||p.anchorOffset!==_.offset||p.focusNode!==v.node||p.focusOffset!==v.offset)){var y=d.createRange();y.setStart(_.node,_.offset),p.removeAllRanges(),h>g?(p.addRange(y),p.extend(v.node,v.offset)):(y.setEnd(v.node,v.offset),p.addRange(y))}}}}for(d=[],p=s;p=p.parentNode;)p.nodeType===1&&d.push({element:p,left:p.scrollLeft,top:p.scrollTop});for(typeof s.focus==`function`&&s.focus(),s=0;s<d.length;s++){var b=d[s];b.element.scrollLeft=b.left,b.element.scrollTop=b.top}}sp=!!Rd,zd=Rd=null}finally{W=i,E.p=r,T.T=n}}e.current=t,X=2}}function zu(){if(X===2){X=0;var e=au,t=ou,n=(t.flags&8772)!=0;if(t.subtreeFlags&8772||n){n=T.T,T.T=null;var r=E.p;E.p=2;var i=W;W|=4;try{cl(e,t.alternate,t)}finally{W=i,E.p=r,T.T=n}}X=3}}function Bu(){if(X===4||X===3){X=0,Pe();var e=au,t=ou,n=su,r=uu;t.subtreeFlags&10256||t.flags&10256?X=5:(X=0,ou=au=null,Vu(e,e.pendingLanes));var i=e.pendingLanes;if(i===0&&(iu=null),ft(n),t=t.stateNode,Ge&&typeof Ge.onCommitFiberRoot==`function`)try{Ge.onCommitFiberRoot(We,t,void 0,(t.current.flags&128)==128)}catch{}if(r!==null){t=T.T,i=E.p,E.p=2,T.T=null;try{for(var a=e.onRecoverableError,o=0;o<r.length;o++){var s=r[o];a(s.value,{componentStack:s.stack})}}finally{T.T=t,E.p=i}}su&3&&Hu(),rd(e),i=e.pendingLanes,n&261930&&i&42?e===fu?du++:(du=0,fu=e):du=0,id(0,!1)}}function Vu(e,t){(e.pooledCacheLanes&=t)===0&&(t=e.pooledCache,t!=null&&(e.pooledCache=null,ga(t)))}function Hu(){return Ru(),zu(),Bu(),Uu()}function Uu(){if(X!==5)return!1;var e=au,t=cu;cu=0;var n=ft(su),r=T.T,a=E.p;try{E.p=32>n?32:n,T.T=null,n=lu,lu=null;var o=au,s=su;if(X=0,ou=au=null,su=0,W&6)throw Error(i(331));var c=W;if(W|=4,Il(o.current),Ol(o,o.current,s,n),W=c,id(0,!1),Ge&&typeof Ge.onPostCommitFiberRoot==`function`)try{Ge.onPostCommitFiberRoot(We,o)}catch{}return!0}finally{E.p=a,T.T=r,Vu(e,t)}}function Wu(e,t,n){t=Di(n,t),t=rc(e.stateNode,t,2),e=Za(e,t,2),e!==null&&(ot(e,2),rd(e))}function Z(e,t,n){if(e.tag===3)Wu(e,e,n);else for(;t!==null;){if(t.tag===3){Wu(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError==`function`||typeof r.componentDidCatch==`function`&&(iu===null||!iu.has(r))){e=Di(n,e),n=ic(2),r=Za(t,n,2),r!==null&&(ac(n,r,t,e),ot(r,2),rd(r));break}}t=t.return}}function Gu(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Bl;var i=new Set;r.set(t,i)}else i=r.get(t),i===void 0&&(i=new Set,r.set(t,i));i.has(n)||(Wl=!0,i.add(n),e=Ku.bind(null,e,t,n),t.then(e,e))}function Ku(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,G===e&&(q&n)===n&&(Y===4||Y===3&&(q&62914560)===q&&300>Fe()-eu?!(W&2)&&Su(e,0):Jl|=n,Xl===q&&(Xl=0)),rd(e)}function qu(e,t){t===0&&(t=it()),e=fi(e,t),e!==null&&(ot(e,t),rd(e))}function Ju(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),qu(e,n)}function Yu(e,t){var n=0;switch(e.tag){case 31:case 13:var r=e.stateNode,a=e.memoizedState;a!==null&&(n=a.retryLane);break;case 19:r=e.stateNode;break;case 22:r=e.stateNode._retryCache;break;default:throw Error(i(314))}r!==null&&r.delete(t),qu(e,n)}function Xu(e,t){return je(e,t)}var Zu=null,Qu=null,$u=!1,ed=!1,td=!1,nd=0;function rd(e){e!==Qu&&e.next===null&&(Qu===null?Zu=Qu=e:Qu=Qu.next=e),ed=!0,$u||($u=!0,ud())}function id(e,t){if(!td&&ed){td=!0;do for(var n=!1,r=Zu;r!==null;){if(!t)if(e!==0){var i=r.pendingLanes;if(i===0)var a=0;else{var o=r.suspendedLanes,s=r.pingedLanes;a=(1<<31-qe(42|e)+1)-1,a&=i&~(o&~s),a=a&201326741?a&201326741|1:a?a|2:0}a!==0&&(n=!0,ld(r,a))}else a=q,a=tt(r,r===G?a:0,r.cancelPendingCommit!==null||r.timeoutHandle!==-1),!(a&3)||nt(r,a)||(n=!0,ld(r,a));r=r.next}while(n);td=!1}}function ad(){od()}function od(){ed=$u=!1;var e=0;nd!==0&&Gd()&&(e=nd);for(var t=Fe(),n=null,r=Zu;r!==null;){var i=r.next,a=sd(r,t);a===0?(r.next=null,n===null?Zu=i:n.next=i,i===null&&(Qu=n)):(n=r,(e!==0||a&3)&&(ed=!0)),r=i}X!==0&&X!==5||id(e,!1),nd!==0&&(nd=0)}function sd(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,i=e.expirationTimes,a=e.pendingLanes&-62914561;0<a;){var o=31-qe(a),s=1<<o,c=i[o];c===-1?((s&n)===0||(s&r)!==0)&&(i[o]=rt(s,t)):c<=t&&(e.expiredLanes|=s),a&=~s}if(t=G,n=q,n=tt(e,e===t?n:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),r=e.callbackNode,n===0||e===t&&(J===2||J===9)||e.cancelPendingCommit!==null)return r!==null&&r!==null&&Me(r),e.callbackNode=null,e.callbackPriority=0;if(!(n&3)||nt(e,n)){if(t=n&-n,t===e.callbackPriority)return t;switch(r!==null&&Me(r),ft(n)){case 2:case 8:n=Re;break;case 32:n=ze;break;case 268435456:n=Ve;break;default:n=ze}return r=cd.bind(null,e),n=je(n,r),e.callbackPriority=t,e.callbackNode=n,t}return r!==null&&r!==null&&Me(r),e.callbackPriority=2,e.callbackNode=null,2}function cd(e,t){if(X!==0&&X!==5)return e.callbackNode=null,e.callbackPriority=0,null;var n=e.callbackNode;if(Hu()&&e.callbackNode!==n)return null;var r=q;return r=tt(e,e===G?r:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),r===0?null:(gu(e,r,t),sd(e,Fe()),e.callbackNode!=null&&e.callbackNode===n?cd.bind(null,e):null)}function ld(e,t){if(Hu())return null;gu(e,t,!0)}function ud(){Yd(function(){W&6?je(Le,ad):od()})}function dd(){if(nd===0){var e=ya;e===0&&(e=Ze,Ze<<=1,!(Ze&261888)&&(Ze=256)),nd=e}return nd}function fd(e){return e==null||typeof e==`symbol`||typeof e==`boolean`?null:typeof e==`function`?e:cn(``+e)}function pd(e,t){var n=t.ownerDocument.createElement(`input`);return n.name=t.name,n.value=t.value,e.id&&n.setAttribute(`form`,e.id),t.parentNode.insertBefore(n,t),e=new FormData(e),n.parentNode.removeChild(n),e}function md(e,t,n,r,i){if(t===`submit`&&n&&n.stateNode===i){var a=fd((i[_t]||null).action),o=r.submitter;o&&(t=(t=o[_t]||null)?fd(t.formAction):o.getAttribute(`formAction`),t!==null&&(a=t,o=null));var s=new An(`action`,`action`,null,r,i);e.push({event:s,listeners:[{instance:null,listener:function(){if(r.defaultPrevented){if(nd!==0){var e=o?pd(i,o):new FormData(i);ks(n,{pending:!0,data:e,method:i.method,action:a},null,e)}}else typeof a==`function`&&(s.preventDefault(),e=o?pd(i,o):new FormData(i),ks(n,{pending:!0,data:e,method:i.method,action:a},a,e))},currentTarget:i}]})}}for(var hd=0;hd<ri.length;hd++){var gd=ri[hd];ii(gd.toLowerCase(),`on`+(gd[0].toUpperCase()+gd.slice(1)))}ii(Yr,`onAnimationEnd`),ii(Xr,`onAnimationIteration`),ii(Zr,`onAnimationStart`),ii(`dblclick`,`onDoubleClick`),ii(`focusin`,`onFocus`),ii(`focusout`,`onBlur`),ii(Qr,`onTransitionRun`),ii($r,`onTransitionStart`),ii(ei,`onTransitionCancel`),ii(ti,`onTransitionEnd`),Mt(`onMouseEnter`,[`mouseout`,`mouseover`]),Mt(`onMouseLeave`,[`mouseout`,`mouseover`]),Mt(`onPointerEnter`,[`pointerout`,`pointerover`]),Mt(`onPointerLeave`,[`pointerout`,`pointerover`]),jt(`onChange`,`change click focusin focusout input keydown keyup selectionchange`.split(` `)),jt(`onSelect`,`focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange`.split(` `)),jt(`onBeforeInput`,[`compositionend`,`keypress`,`textInput`,`paste`]),jt(`onCompositionEnd`,`compositionend focusout keydown keypress keyup mousedown`.split(` `)),jt(`onCompositionStart`,`compositionstart focusout keydown keypress keyup mousedown`.split(` `)),jt(`onCompositionUpdate`,`compositionupdate focusout keydown keypress keyup mousedown`.split(` `));var _d=`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(` `),vd=new Set(`beforetoggle cancel close invalid load scroll scrollend toggle`.split(` `).concat(_d));function yd(e,t){t=(t&4)!=0;for(var n=0;n<e.length;n++){var r=e[n],i=r.event;r=r.listeners;a:{var a=void 0;if(t)for(var o=r.length-1;0<=o;o--){var s=r[o],c=s.instance,l=s.currentTarget;if(s=s.listener,c!==a&&i.isPropagationStopped())break a;a=s,i.currentTarget=l;try{a(i)}catch(e){ai(e)}i.currentTarget=null,a=c}else for(o=0;o<r.length;o++){if(s=r[o],c=s.instance,l=s.currentTarget,s=s.listener,c!==a&&i.isPropagationStopped())break a;a=s,i.currentTarget=l;try{a(i)}catch(e){ai(e)}i.currentTarget=null,a=c}}}}function Q(e,t){var n=t[yt];n===void 0&&(n=t[yt]=new Set);var r=e+`__bubble`;n.has(r)||(Cd(t,e,2,!1),n.add(r))}function bd(e,t,n){var r=0;t&&(r|=4),Cd(n,e,r,t)}var xd=`_reactListening`+Math.random().toString(36).slice(2);function Sd(e){if(!e[xd]){e[xd]=!0,kt.forEach(function(t){t!==`selectionchange`&&(vd.has(t)||bd(t,!1,e),bd(t,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[xd]||(t[xd]=!0,bd(`selectionchange`,!1,t))}}function Cd(e,t,n,r){switch(mp(t)){case 2:var i=cp;break;case 8:i=lp;break;default:i=up}n=i.bind(null,t,n,e),i=void 0,!yn||t!==`touchstart`&&t!==`touchmove`&&t!==`wheel`||(i=!0),r?i===void 0?e.addEventListener(t,n,!0):e.addEventListener(t,n,{capture:!0,passive:i}):i===void 0?e.addEventListener(t,n,!1):e.addEventListener(t,n,{passive:i})}function wd(e,t,n,r,i){var a=r;if(!(t&1)&&!(t&2)&&r!==null)a:for(;;){if(r===null)return;var s=r.tag;if(s===3||s===4){var c=r.stateNode.containerInfo;if(c===i)break;if(s===4)for(s=r.return;s!==null;){var l=s.tag;if((l===3||l===4)&&s.stateNode.containerInfo===i)return;s=s.return}for(;c!==null;){if(s=Tt(c),s===null)return;if(l=s.tag,l===5||l===6||l===26||l===27){r=a=s;continue a}c=c.parentNode}}r=r.return}gn(function(){var r=a,i=dn(n),s=[];a:{var c=ni.get(e);if(c!==void 0){var l=An,u=e;switch(e){case`keypress`:if(Tn(n)===0)break a;case`keydown`:case`keyup`:l=Jn;break;case`focusin`:u=`focus`,l=zn;break;case`focusout`:u=`blur`,l=zn;break;case`beforeblur`:case`afterblur`:l=zn;break;case`click`:if(n.button===2)break a;case`auxclick`:case`dblclick`:case`mousedown`:case`mousemove`:case`mouseup`:case`mouseout`:case`mouseover`:case`contextmenu`:l=Ln;break;case`drag`:case`dragend`:case`dragenter`:case`dragexit`:case`dragleave`:case`dragover`:case`dragstart`:case`drop`:l=Rn;break;case`touchcancel`:case`touchend`:case`touchmove`:case`touchstart`:l=Xn;break;case Yr:case Xr:case Zr:l=Bn;break;case ti:l=Zn;break;case`scroll`:case`scrollend`:l=Mn;break;case`wheel`:l=Qn;break;case`copy`:case`cut`:case`paste`:l=Vn;break;case`gotpointercapture`:case`lostpointercapture`:case`pointercancel`:case`pointerdown`:case`pointermove`:case`pointerout`:case`pointerover`:case`pointerup`:l=Yn;break;case`toggle`:case`beforetoggle`:l=$n}var d=(t&4)!=0,f=!d&&(e===`scroll`||e===`scrollend`),p=d?c===null?null:c+`Capture`:c;d=[];for(var m=r,h;m!==null;){var g=m;if(h=g.stateNode,g=g.tag,g!==5&&g!==26&&g!==27||h===null||p===null||(g=_n(m,p),g!=null&&d.push(Td(m,g,h))),f)break;m=m.return}0<d.length&&(c=new l(c,u,null,n,i),s.push({event:c,listeners:d}))}}if(!(t&7)){a:{if(c=e===`mouseover`||e===`pointerover`,l=e===`mouseout`||e===`pointerout`,c&&n!==un&&(u=n.relatedTarget||n.fromElement)&&(Tt(u)||u[vt]))break a;if((l||c)&&(c=i.window===i?i:(c=i.ownerDocument)?c.defaultView||c.parentWindow:window,l?(u=n.relatedTarget||n.toElement,l=r,u=u?Tt(u):null,u!==null&&(f=o(u),d=u.tag,u!==f||d!==5&&d!==27&&d!==6)&&(u=null)):(l=null,u=r),l!==u)){if(d=Ln,g=`onMouseLeave`,p=`onMouseEnter`,m=`mouse`,(e===`pointerout`||e===`pointerover`)&&(d=Yn,g=`onPointerLeave`,p=`onPointerEnter`,m=`pointer`),f=l==null?c:Dt(l),h=u==null?c:Dt(u),c=new d(g,m+`leave`,l,n,i),c.target=f,c.relatedTarget=h,g=null,Tt(i)===r&&(d=new d(p,m+`enter`,u,n,i),d.target=h,d.relatedTarget=f,g=d),f=g,l&&u)b:{for(d=Dd,p=l,m=u,h=0,g=p;g;g=d(g))h++;g=0;for(var _=m;_;_=d(_))g++;for(;0<h-g;)p=d(p),h--;for(;0<g-h;)m=d(m),g--;for(;h--;){if(p===m||m!==null&&p===m.alternate){d=p;break b}p=d(p),m=d(m)}d=null}else d=null;l!==null&&Od(s,c,l,d,!1),u!==null&&f!==null&&Od(s,f,u,d,!0)}}a:{if(c=r?Dt(r):window,l=c.nodeName&&c.nodeName.toLowerCase(),l===`select`||l===`input`&&c.type===`file`)var v=yr;else if(pr(c))if(br)v=kr;else{v=Dr;var y=Er}else l=c.nodeName,!l||l.toLowerCase()!==`input`||c.type!==`checkbox`&&c.type!==`radio`?r&&an(r.elementType)&&(v=yr):v=Or;if(v&&=v(e,r)){mr(s,v,n,i);break a}y&&y(e,c,r),e===`focusout`&&r&&c.type===`number`&&r.memoizedProps.value!=null&&Xt(c,`number`,c.value)}switch(y=r?Dt(r):window,e){case`focusin`:(pr(y)||y.contentEditable===`true`)&&(zr=y,Br=r,Vr=null);break;case`focusout`:Vr=Br=zr=null;break;case`mousedown`:Hr=!0;break;case`contextmenu`:case`mouseup`:case`dragend`:Hr=!1,Ur(s,n,i);break;case`selectionchange`:if(Rr)break;case`keydown`:case`keyup`:Ur(s,n,i)}var b;if(tr)b:{switch(e){case`compositionstart`:var x=`onCompositionStart`;break b;case`compositionend`:x=`onCompositionEnd`;break b;case`compositionupdate`:x=`onCompositionUpdate`;break b}x=void 0}else lr?sr(e,n)&&(x=`onCompositionEnd`):e===`keydown`&&n.keyCode===229&&(x=`onCompositionStart`);x&&(ir&&n.locale!==`ko`&&(lr||x!==`onCompositionStart`?x===`onCompositionEnd`&&lr&&(b=wn()):(xn=i,Sn=`value`in xn?xn.value:xn.textContent,lr=!0)),y=Ed(r,x),0<y.length&&(x=new Hn(x,e,null,n,i),s.push({event:x,listeners:y}),b?x.data=b:(b=cr(n),b!==null&&(x.data=b)))),(b=rr?ur(e,n):dr(e,n))&&(x=Ed(r,`onBeforeInput`),0<x.length&&(y=new Hn(`onBeforeInput`,`beforeinput`,null,n,i),s.push({event:y,listeners:x}),y.data=b)),md(s,e,r,n,i)}yd(s,t)})}function Td(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ed(e,t){for(var n=t+`Capture`,r=[];e!==null;){var i=e,a=i.stateNode;if(i=i.tag,i!==5&&i!==26&&i!==27||a===null||(i=_n(e,n),i!=null&&r.unshift(Td(e,i,a)),i=_n(e,t),i!=null&&r.push(Td(e,i,a))),e.tag===3)return r;e=e.return}return[]}function Dd(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function Od(e,t,n,r,i){for(var a=t._reactName,o=[];n!==null&&n!==r;){var s=n,c=s.alternate,l=s.stateNode;if(s=s.tag,c!==null&&c===r)break;s!==5&&s!==26&&s!==27||l===null||(c=l,i?(l=_n(n,a),l!=null&&o.unshift(Td(n,l,c))):i||(l=_n(n,a),l!=null&&o.push(Td(n,l,c)))),n=n.return}o.length!==0&&e.push({event:t,listeners:o})}var kd=/\r\n?/g,Ad=/\u0000|\uFFFD/g;function jd(e){return(typeof e==`string`?e:``+e).replace(kd,`
|
|
9
9
|
`).replace(Ad,``)}function Md(e,t){return t=jd(t),jd(e)===t}function $(e,t,n,r,a,o){switch(n){case`children`:typeof r==`string`?t===`body`||t===`textarea`&&r===``||en(e,r):(typeof r==`number`||typeof r==`bigint`)&&t!==`body`&&en(e,``+r);break;case`className`:Rt(e,`class`,r);break;case`tabIndex`:Rt(e,`tabindex`,r);break;case`dir`:case`role`:case`viewBox`:case`width`:case`height`:Rt(e,n,r);break;case`style`:rn(e,r,o);break;case`data`:if(t!==`object`){Rt(e,`data`,r);break}case`src`:case`href`:if(r===``&&(t!==`a`||n!==`href`)){e.removeAttribute(n);break}if(r==null||typeof r==`function`||typeof r==`symbol`||typeof r==`boolean`){e.removeAttribute(n);break}r=cn(``+r),e.setAttribute(n,r);break;case`action`:case`formAction`:if(typeof r==`function`){e.setAttribute(n,`javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')`);break}else typeof o==`function`&&(n===`formAction`?(t!==`input`&&$(e,t,`name`,a.name,a,null),$(e,t,`formEncType`,a.formEncType,a,null),$(e,t,`formMethod`,a.formMethod,a,null),$(e,t,`formTarget`,a.formTarget,a,null)):($(e,t,`encType`,a.encType,a,null),$(e,t,`method`,a.method,a,null),$(e,t,`target`,a.target,a,null)));if(r==null||typeof r==`symbol`||typeof r==`boolean`){e.removeAttribute(n);break}r=cn(``+r),e.setAttribute(n,r);break;case`onClick`:r!=null&&(e.onclick=ln);break;case`onScroll`:r!=null&&Q(`scroll`,e);break;case`onScrollEnd`:r!=null&&Q(`scrollend`,e);break;case`dangerouslySetInnerHTML`:if(r!=null){if(typeof r!=`object`||!(`__html`in r))throw Error(i(61));if(n=r.__html,n!=null){if(a.children!=null)throw Error(i(60));e.innerHTML=n}}break;case`multiple`:e.multiple=r&&typeof r!=`function`&&typeof r!=`symbol`;break;case`muted`:e.muted=r&&typeof r!=`function`&&typeof r!=`symbol`;break;case`suppressContentEditableWarning`:case`suppressHydrationWarning`:case`defaultValue`:case`defaultChecked`:case`innerHTML`:case`ref`:break;case`autoFocus`:break;case`xlinkHref`:if(r==null||typeof r==`function`||typeof r==`boolean`||typeof r==`symbol`){e.removeAttribute(`xlink:href`);break}n=cn(``+r),e.setAttributeNS(`http://www.w3.org/1999/xlink`,`xlink:href`,n);break;case`contentEditable`:case`spellCheck`:case`draggable`:case`value`:case`autoReverse`:case`externalResourcesRequired`:case`focusable`:case`preserveAlpha`:r!=null&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,``+r):e.removeAttribute(n);break;case`inert`:case`allowFullScreen`:case`async`:case`autoPlay`:case`controls`:case`default`:case`defer`:case`disabled`:case`disablePictureInPicture`:case`disableRemotePlayback`:case`formNoValidate`:case`hidden`:case`loop`:case`noModule`:case`noValidate`:case`open`:case`playsInline`:case`readOnly`:case`required`:case`reversed`:case`scoped`:case`seamless`:case`itemScope`:r&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,``):e.removeAttribute(n);break;case`capture`:case`download`:!0===r?e.setAttribute(n,``):!1!==r&&r!=null&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,r):e.removeAttribute(n);break;case`cols`:case`rows`:case`size`:case`span`:r!=null&&typeof r!=`function`&&typeof r!=`symbol`&&!isNaN(r)&&1<=r?e.setAttribute(n,r):e.removeAttribute(n);break;case`rowSpan`:case`start`:r==null||typeof r==`function`||typeof r==`symbol`||isNaN(r)?e.removeAttribute(n):e.setAttribute(n,r);break;case`popover`:Q(`beforetoggle`,e),Q(`toggle`,e),Lt(e,`popover`,r);break;case`xlinkActuate`:zt(e,`http://www.w3.org/1999/xlink`,`xlink:actuate`,r);break;case`xlinkArcrole`:zt(e,`http://www.w3.org/1999/xlink`,`xlink:arcrole`,r);break;case`xlinkRole`:zt(e,`http://www.w3.org/1999/xlink`,`xlink:role`,r);break;case`xlinkShow`:zt(e,`http://www.w3.org/1999/xlink`,`xlink:show`,r);break;case`xlinkTitle`:zt(e,`http://www.w3.org/1999/xlink`,`xlink:title`,r);break;case`xlinkType`:zt(e,`http://www.w3.org/1999/xlink`,`xlink:type`,r);break;case`xmlBase`:zt(e,`http://www.w3.org/XML/1998/namespace`,`xml:base`,r);break;case`xmlLang`:zt(e,`http://www.w3.org/XML/1998/namespace`,`xml:lang`,r);break;case`xmlSpace`:zt(e,`http://www.w3.org/XML/1998/namespace`,`xml:space`,r);break;case`is`:Lt(e,`is`,r);break;case`innerText`:case`textContent`:break;default:(!(2<n.length)||n[0]!==`o`&&n[0]!==`O`||n[1]!==`n`&&n[1]!==`N`)&&(n=on.get(n)||n,Lt(e,n,r))}}function Nd(e,t,n,r,a,o){switch(n){case`style`:rn(e,r,o);break;case`dangerouslySetInnerHTML`:if(r!=null){if(typeof r!=`object`||!(`__html`in r))throw Error(i(61));if(n=r.__html,n!=null){if(a.children!=null)throw Error(i(60));e.innerHTML=n}}break;case`children`:typeof r==`string`?en(e,r):(typeof r==`number`||typeof r==`bigint`)&&en(e,``+r);break;case`onScroll`:r!=null&&Q(`scroll`,e);break;case`onScrollEnd`:r!=null&&Q(`scrollend`,e);break;case`onClick`:r!=null&&(e.onclick=ln);break;case`suppressContentEditableWarning`:case`suppressHydrationWarning`:case`innerHTML`:case`ref`:break;case`innerText`:case`textContent`:break;default:if(!At.hasOwnProperty(n))a:{if(n[0]===`o`&&n[1]===`n`&&(a=n.endsWith(`Capture`),t=n.slice(2,a?n.length-7:void 0),o=e[_t]||null,o=o==null?null:o[n],typeof o==`function`&&e.removeEventListener(t,o,a),typeof r==`function`)){typeof o!=`function`&&o!==null&&(n in e?e[n]=null:e.hasAttribute(n)&&e.removeAttribute(n)),e.addEventListener(t,r,a);break a}n in e?e[n]=r:!0===r?e.setAttribute(n,``):Lt(e,n,r)}}}function Pd(e,t,n){switch(t){case`div`:case`span`:case`svg`:case`path`:case`a`:case`g`:case`p`:case`li`:break;case`img`:Q(`error`,e),Q(`load`,e);var r=!1,a=!1,o;for(o in n)if(n.hasOwnProperty(o)){var s=n[o];if(s!=null)switch(o){case`src`:r=!0;break;case`srcSet`:a=!0;break;case`children`:case`dangerouslySetInnerHTML`:throw Error(i(137,t));default:$(e,t,o,s,n,null)}}a&&$(e,t,`srcSet`,n.srcSet,n,null),r&&$(e,t,`src`,n.src,n,null);return;case`input`:Q(`invalid`,e);var c=o=s=a=null,l=null,u=null;for(r in n)if(n.hasOwnProperty(r)){var d=n[r];if(d!=null)switch(r){case`name`:a=d;break;case`type`:s=d;break;case`checked`:l=d;break;case`defaultChecked`:u=d;break;case`value`:o=d;break;case`defaultValue`:c=d;break;case`children`:case`dangerouslySetInnerHTML`:if(d!=null)throw Error(i(137,t));break;default:$(e,t,r,d,n,null)}}Yt(e,o,c,l,u,s,a,!1);return;case`select`:for(a in Q(`invalid`,e),r=s=o=null,n)if(n.hasOwnProperty(a)&&(c=n[a],c!=null))switch(a){case`value`:o=c;break;case`defaultValue`:s=c;break;case`multiple`:r=c;default:$(e,t,a,c,n,null)}t=o,n=s,e.multiple=!!r,t==null?n!=null&&Zt(e,!!r,n,!0):Zt(e,!!r,t,!1);return;case`textarea`:for(s in Q(`invalid`,e),o=a=r=null,n)if(n.hasOwnProperty(s)&&(c=n[s],c!=null))switch(s){case`value`:r=c;break;case`defaultValue`:a=c;break;case`children`:o=c;break;case`dangerouslySetInnerHTML`:if(c!=null)throw Error(i(91));break;default:$(e,t,s,c,n,null)}$t(e,r,a,o);return;case`option`:for(l in n)if(n.hasOwnProperty(l)&&(r=n[l],r!=null))switch(l){case`selected`:e.selected=r&&typeof r!=`function`&&typeof r!=`symbol`;break;default:$(e,t,l,r,n,null)}return;case`dialog`:Q(`beforetoggle`,e),Q(`toggle`,e),Q(`cancel`,e),Q(`close`,e);break;case`iframe`:case`object`:Q(`load`,e);break;case`video`:case`audio`:for(r=0;r<_d.length;r++)Q(_d[r],e);break;case`image`:Q(`error`,e),Q(`load`,e);break;case`details`:Q(`toggle`,e);break;case`embed`:case`source`:case`link`:Q(`error`,e),Q(`load`,e);case`area`:case`base`:case`br`:case`col`:case`hr`:case`keygen`:case`meta`:case`param`:case`track`:case`wbr`:case`menuitem`:for(u in n)if(n.hasOwnProperty(u)&&(r=n[u],r!=null))switch(u){case`children`:case`dangerouslySetInnerHTML`:throw Error(i(137,t));default:$(e,t,u,r,n,null)}return;default:if(an(t)){for(d in n)n.hasOwnProperty(d)&&(r=n[d],r!==void 0&&Nd(e,t,d,r,n,void 0));return}}for(c in n)n.hasOwnProperty(c)&&(r=n[c],r!=null&&$(e,t,c,r,n,null))}function Fd(e,t,n,r){switch(t){case`div`:case`span`:case`svg`:case`path`:case`a`:case`g`:case`p`:case`li`:break;case`input`:var a=null,o=null,s=null,c=null,l=null,u=null,d=null;for(m in n){var f=n[m];if(n.hasOwnProperty(m)&&f!=null)switch(m){case`checked`:break;case`value`:break;case`defaultValue`:l=f;default:r.hasOwnProperty(m)||$(e,t,m,null,r,f)}}for(var p in r){var m=r[p];if(f=n[p],r.hasOwnProperty(p)&&(m!=null||f!=null))switch(p){case`type`:o=m;break;case`name`:a=m;break;case`checked`:u=m;break;case`defaultChecked`:d=m;break;case`value`:s=m;break;case`defaultValue`:c=m;break;case`children`:case`dangerouslySetInnerHTML`:if(m!=null)throw Error(i(137,t));break;default:m!==f&&$(e,t,p,m,r,f)}}Jt(e,s,c,l,u,d,o,a);return;case`select`:for(o in m=s=c=p=null,n)if(l=n[o],n.hasOwnProperty(o)&&l!=null)switch(o){case`value`:break;case`multiple`:m=l;default:r.hasOwnProperty(o)||$(e,t,o,null,r,l)}for(a in r)if(o=r[a],l=n[a],r.hasOwnProperty(a)&&(o!=null||l!=null))switch(a){case`value`:p=o;break;case`defaultValue`:c=o;break;case`multiple`:s=o;default:o!==l&&$(e,t,a,o,r,l)}t=c,n=s,r=m,p==null?!!r!=!!n&&(t==null?Zt(e,!!n,n?[]:``,!1):Zt(e,!!n,t,!0)):Zt(e,!!n,p,!1);return;case`textarea`:for(c in m=p=null,n)if(a=n[c],n.hasOwnProperty(c)&&a!=null&&!r.hasOwnProperty(c))switch(c){case`value`:break;case`children`:break;default:$(e,t,c,null,r,a)}for(s in r)if(a=r[s],o=n[s],r.hasOwnProperty(s)&&(a!=null||o!=null))switch(s){case`value`:p=a;break;case`defaultValue`:m=a;break;case`children`:break;case`dangerouslySetInnerHTML`:if(a!=null)throw Error(i(91));break;default:a!==o&&$(e,t,s,a,r,o)}Qt(e,p,m);return;case`option`:for(var h in n)if(p=n[h],n.hasOwnProperty(h)&&p!=null&&!r.hasOwnProperty(h))switch(h){case`selected`:e.selected=!1;break;default:$(e,t,h,null,r,p)}for(l in r)if(p=r[l],m=n[l],r.hasOwnProperty(l)&&p!==m&&(p!=null||m!=null))switch(l){case`selected`:e.selected=p&&typeof p!=`function`&&typeof p!=`symbol`;break;default:$(e,t,l,p,r,m)}return;case`img`:case`link`:case`area`:case`base`:case`br`:case`col`:case`embed`:case`hr`:case`keygen`:case`meta`:case`param`:case`source`:case`track`:case`wbr`:case`menuitem`:for(var g in n)p=n[g],n.hasOwnProperty(g)&&p!=null&&!r.hasOwnProperty(g)&&$(e,t,g,null,r,p);for(u in r)if(p=r[u],m=n[u],r.hasOwnProperty(u)&&p!==m&&(p!=null||m!=null))switch(u){case`children`:case`dangerouslySetInnerHTML`:if(p!=null)throw Error(i(137,t));break;default:$(e,t,u,p,r,m)}return;default:if(an(t)){for(var _ in n)p=n[_],n.hasOwnProperty(_)&&p!==void 0&&!r.hasOwnProperty(_)&&Nd(e,t,_,void 0,r,p);for(d in r)p=r[d],m=n[d],!r.hasOwnProperty(d)||p===m||p===void 0&&m===void 0||Nd(e,t,d,p,r,m);return}}for(var v in n)p=n[v],n.hasOwnProperty(v)&&p!=null&&!r.hasOwnProperty(v)&&$(e,t,v,null,r,p);for(f in r)p=r[f],m=n[f],!r.hasOwnProperty(f)||p===m||p==null&&m==null||$(e,t,f,p,r,m)}function Id(e){switch(e){case`css`:case`script`:case`font`:case`img`:case`image`:case`input`:case`link`:return!0;default:return!1}}function Ld(){if(typeof performance.getEntriesByType==`function`){for(var e=0,t=0,n=performance.getEntriesByType(`resource`),r=0;r<n.length;r++){var i=n[r],a=i.transferSize,o=i.initiatorType,s=i.duration;if(a&&s&&Id(o)){for(o=0,s=i.responseEnd,r+=1;r<n.length;r++){var c=n[r],l=c.startTime;if(l>s)break;var u=c.transferSize,d=c.initiatorType;u&&Id(d)&&(c=c.responseEnd,o+=u*(c<s?1:(s-l)/(c-l)))}if(--r,t+=8*(a+o)/(i.duration/1e3),e++,10<e)break}}if(0<e)return t/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e==`number`)?e:5}var Rd=null,zd=null;function Bd(e){return e.nodeType===9?e:e.ownerDocument}function Vd(e){switch(e){case`http://www.w3.org/2000/svg`:return 1;case`http://www.w3.org/1998/Math/MathML`:return 2;default:return 0}}function Hd(e,t){if(e===0)switch(t){case`svg`:return 1;case`math`:return 2;default:return 0}return e===1&&t===`foreignObject`?0:e}function Ud(e,t){return e===`textarea`||e===`noscript`||typeof t.children==`string`||typeof t.children==`number`||typeof t.children==`bigint`||typeof t.dangerouslySetInnerHTML==`object`&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var Wd=null;function Gd(){var e=window.event;return e&&e.type===`popstate`?e===Wd?!1:(Wd=e,!0):(Wd=null,!1)}var Kd=typeof setTimeout==`function`?setTimeout:void 0,qd=typeof clearTimeout==`function`?clearTimeout:void 0,Jd=typeof Promise==`function`?Promise:void 0,Yd=typeof queueMicrotask==`function`?queueMicrotask:Jd===void 0?Kd:function(e){return Jd.resolve(null).then(e).catch(Xd)};function Xd(e){setTimeout(function(){throw e})}function Zd(e){return e===`head`}function Qd(e,t){var n=t,r=0;do{var i=n.nextSibling;if(e.removeChild(n),i&&i.nodeType===8)if(n=i.data,n===`/$`||n===`/&`){if(r===0){e.removeChild(i),Np(t);return}r--}else if(n===`$`||n===`$?`||n===`$~`||n===`$!`||n===`&`)r++;else if(n===`html`)pf(e.ownerDocument.documentElement);else if(n===`head`){n=e.ownerDocument.head,pf(n);for(var a=n.firstChild;a;){var o=a.nextSibling,s=a.nodeName;a[Ct]||s===`SCRIPT`||s===`STYLE`||s===`LINK`&&a.rel.toLowerCase()===`stylesheet`||n.removeChild(a),a=o}}else n===`body`&&pf(e.ownerDocument.body);n=i}while(n);Np(t)}function $d(e,t){var n=e;e=0;do{var r=n.nextSibling;if(n.nodeType===1?t?(n._stashedDisplay=n.style.display,n.style.display=`none`):(n.style.display=n._stashedDisplay||``,n.getAttribute(`style`)===``&&n.removeAttribute(`style`)):n.nodeType===3&&(t?(n._stashedText=n.nodeValue,n.nodeValue=``):n.nodeValue=n._stashedText||``),r&&r.nodeType===8)if(n=r.data,n===`/$`){if(e===0)break;e--}else n!==`$`&&n!==`$?`&&n!==`$~`&&n!==`$!`||e++;n=r}while(n)}function ef(e){var t=e.firstChild;for(t&&t.nodeType===10&&(t=t.nextSibling);t;){var n=t;switch(t=t.nextSibling,n.nodeName){case`HTML`:case`HEAD`:case`BODY`:ef(n),wt(n);continue;case`SCRIPT`:case`STYLE`:continue;case`LINK`:if(n.rel.toLowerCase()===`stylesheet`)continue}e.removeChild(n)}}function tf(e,t,n,r){for(;e.nodeType===1;){var i=n;if(e.nodeName.toLowerCase()!==t.toLowerCase()){if(!r&&(e.nodeName!==`INPUT`||e.type!==`hidden`))break}else if(!r)if(t===`input`&&e.type===`hidden`){var a=i.name==null?null:``+i.name;if(i.type===`hidden`&&e.getAttribute(`name`)===a)return e}else return e;else if(!e[Ct])switch(t){case`meta`:if(!e.hasAttribute(`itemprop`))break;return e;case`link`:if(a=e.getAttribute(`rel`),a===`stylesheet`&&e.hasAttribute(`data-precedence`)||a!==i.rel||e.getAttribute(`href`)!==(i.href==null||i.href===``?null:i.href)||e.getAttribute(`crossorigin`)!==(i.crossOrigin==null?null:i.crossOrigin)||e.getAttribute(`title`)!==(i.title==null?null:i.title))break;return e;case`style`:if(e.hasAttribute(`data-precedence`))break;return e;case`script`:if(a=e.getAttribute(`src`),(a!==(i.src==null?null:i.src)||e.getAttribute(`type`)!==(i.type==null?null:i.type)||e.getAttribute(`crossorigin`)!==(i.crossOrigin==null?null:i.crossOrigin))&&a&&e.hasAttribute(`async`)&&!e.hasAttribute(`itemprop`))break;return e;default:return e}if(e=cf(e.nextSibling),e===null)break}return null}function nf(e,t,n){if(t===``)return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!==`INPUT`||e.type!==`hidden`)&&!n||(e=cf(e.nextSibling),e===null))return null;return e}function rf(e,t){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!==`INPUT`||e.type!==`hidden`)&&!t||(e=cf(e.nextSibling),e===null))return null;return e}function af(e){return e.data===`$?`||e.data===`$~`}function of(e){return e.data===`$!`||e.data===`$?`&&e.ownerDocument.readyState!==`loading`}function sf(e,t){var n=e.ownerDocument;if(e.data===`$~`)e._reactRetry=t;else if(e.data!==`$?`||n.readyState!==`loading`)t();else{var r=function(){t(),n.removeEventListener(`DOMContentLoaded`,r)};n.addEventListener(`DOMContentLoaded`,r),e._reactRetry=r}}function cf(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===`$?`||t===`$~`||t===`&`||t===`F!`||t===`F`)break;if(t===`/$`||t===`/&`)return null}}return e}var lf=null;function uf(e){e=e.nextSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===`/$`||n===`/&`){if(t===0)return cf(e.nextSibling);t--}else n!==`$`&&n!==`$!`&&n!==`$?`&&n!==`$~`&&n!==`&`||t++}e=e.nextSibling}return null}function df(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===`$`||n===`$!`||n===`$?`||n===`$~`||n===`&`){if(t===0)return e;t--}else n!==`/$`&&n!==`/&`||t++}e=e.previousSibling}return null}function ff(e,t,n){switch(t=Bd(n),e){case`html`:if(e=t.documentElement,!e)throw Error(i(452));return e;case`head`:if(e=t.head,!e)throw Error(i(453));return e;case`body`:if(e=t.body,!e)throw Error(i(454));return e;default:throw Error(i(451))}}function pf(e){for(var t=e.attributes;t.length;)e.removeAttributeNode(t[0]);wt(e)}var mf=new Map,hf=new Set;function gf(e){return typeof e.getRootNode==`function`?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var _f=E.d;E.d={f:vf,r:yf,D:Sf,C:Cf,L:wf,m:Tf,X:Df,S:Ef,M:Of};function vf(){var e=_f.f(),t=bu();return e||t}function yf(e){var t=Et(e);t!==null&&t.tag===5&&t.type===`form`?js(t):_f.r(e)}var bf=typeof document>`u`?null:document;function xf(e,t,n){var r=bf;if(r&&typeof t==`string`&&t){var i=qt(t);i=`link[rel="`+e+`"][href="`+i+`"]`,typeof n==`string`&&(i+=`[crossorigin="`+n+`"]`),hf.has(i)||(hf.add(i),e={rel:e,crossOrigin:n,href:t},r.querySelector(i)===null&&(t=r.createElement(`link`),Pd(t,`link`,e),k(t),r.head.appendChild(t)))}}function Sf(e){_f.D(e),xf(`dns-prefetch`,e,null)}function Cf(e,t){_f.C(e,t),xf(`preconnect`,e,t)}function wf(e,t,n){_f.L(e,t,n);var r=bf;if(r&&e&&t){var i=`link[rel="preload"][as="`+qt(t)+`"]`;t===`image`&&n&&n.imageSrcSet?(i+=`[imagesrcset="`+qt(n.imageSrcSet)+`"]`,typeof n.imageSizes==`string`&&(i+=`[imagesizes="`+qt(n.imageSizes)+`"]`)):i+=`[href="`+qt(e)+`"]`;var a=i;switch(t){case`style`:a=Af(e);break;case`script`:a=Pf(e)}mf.has(a)||(e=h({rel:`preload`,href:t===`image`&&n&&n.imageSrcSet?void 0:e,as:t},n),mf.set(a,e),r.querySelector(i)!==null||t===`style`&&r.querySelector(jf(a))||t===`script`&&r.querySelector(Ff(a))||(t=r.createElement(`link`),Pd(t,`link`,e),k(t),r.head.appendChild(t)))}}function Tf(e,t){_f.m(e,t);var n=bf;if(n&&e){var r=t&&typeof t.as==`string`?t.as:`script`,i=`link[rel="modulepreload"][as="`+qt(r)+`"][href="`+qt(e)+`"]`,a=i;switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:a=Pf(e)}if(!mf.has(a)&&(e=h({rel:`modulepreload`,href:e},t),mf.set(a,e),n.querySelector(i)===null)){switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:if(n.querySelector(Ff(a)))return}r=n.createElement(`link`),Pd(r,`link`,e),k(r),n.head.appendChild(r)}}}function Ef(e,t,n){_f.S(e,t,n);var r=bf;if(r&&e){var i=Ot(r).hoistableStyles,a=Af(e);t||=`default`;var o=i.get(a);if(!o){var s={loading:0,preload:null};if(o=r.querySelector(jf(a)))s.loading=5;else{e=h({rel:`stylesheet`,href:e,"data-precedence":t},n),(n=mf.get(a))&&Rf(e,n);var c=o=r.createElement(`link`);k(c),Pd(c,`link`,e),c._p=new Promise(function(e,t){c.onload=e,c.onerror=t}),c.addEventListener(`load`,function(){s.loading|=1}),c.addEventListener(`error`,function(){s.loading|=2}),s.loading|=4,Lf(o,t,r)}o={type:`stylesheet`,instance:o,count:1,state:s},i.set(a,o)}}}function Df(e,t){_f.X(e,t);var n=bf;if(n&&e){var r=Ot(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=h({src:e,async:!0},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),k(a),Pd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function Of(e,t){_f.M(e,t);var n=bf;if(n&&e){var r=Ot(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=h({src:e,async:!0,type:`module`},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),k(a),Pd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function kf(e,t,n,r){var a=(a=_e.current)?gf(a):null;if(!a)throw Error(i(446));switch(e){case`meta`:case`title`:return null;case`style`:return typeof n.precedence==`string`&&typeof n.href==`string`?(t=Af(n.href),n=Ot(a).hoistableStyles,r=n.get(t),r||(r={type:`style`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};case`link`:if(n.rel===`stylesheet`&&typeof n.href==`string`&&typeof n.precedence==`string`){e=Af(n.href);var o=Ot(a).hoistableStyles,s=o.get(e);if(s||(a=a.ownerDocument||a,s={type:`stylesheet`,instance:null,count:0,state:{loading:0,preload:null}},o.set(e,s),(o=a.querySelector(jf(e)))&&!o._p&&(s.instance=o,s.state.loading=5),mf.has(e)||(n={rel:`preload`,as:`style`,href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},mf.set(e,n),o||Nf(a,e,n,s.state))),t&&r===null)throw Error(i(528,``));return s}if(t&&r!==null)throw Error(i(529,``));return null;case`script`:return t=n.async,n=n.src,typeof n==`string`&&t&&typeof t!=`function`&&typeof t!=`symbol`?(t=Pf(n),n=Ot(a).hoistableScripts,r=n.get(t),r||(r={type:`script`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};default:throw Error(i(444,e))}}function Af(e){return`href="`+qt(e)+`"`}function jf(e){return`link[rel="stylesheet"][`+e+`]`}function Mf(e){return h({},e,{"data-precedence":e.precedence,precedence:null})}function Nf(e,t,n,r){e.querySelector(`link[rel="preload"][as="style"][`+t+`]`)?r.loading=1:(t=e.createElement(`link`),r.preload=t,t.addEventListener(`load`,function(){return r.loading|=1}),t.addEventListener(`error`,function(){return r.loading|=2}),Pd(t,`link`,n),k(t),e.head.appendChild(t))}function Pf(e){return`[src="`+qt(e)+`"]`}function Ff(e){return`script[async]`+e}function If(e,t,n){if(t.count++,t.instance===null)switch(t.type){case`style`:var r=e.querySelector(`style[data-href~="`+qt(n.href)+`"]`);if(r)return t.instance=r,k(r),r;var a=h({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return r=(e.ownerDocument||e).createElement(`style`),k(r),Pd(r,`style`,a),Lf(r,n.precedence,e),t.instance=r;case`stylesheet`:a=Af(n.href);var o=e.querySelector(jf(a));if(o)return t.state.loading|=4,t.instance=o,k(o),o;r=Mf(n),(a=mf.get(a))&&Rf(r,a),o=(e.ownerDocument||e).createElement(`link`),k(o);var s=o;return s._p=new Promise(function(e,t){s.onload=e,s.onerror=t}),Pd(o,`link`,r),t.state.loading|=4,Lf(o,n.precedence,e),t.instance=o;case`script`:return o=Pf(n.src),(a=e.querySelector(Ff(o)))?(t.instance=a,k(a),a):(r=n,(a=mf.get(o))&&(r=h({},n),zf(r,a)),e=e.ownerDocument||e,a=e.createElement(`script`),k(a),Pd(a,`link`,r),e.head.appendChild(a),t.instance=a);case`void`:return null;default:throw Error(i(443,t.type))}else t.type===`stylesheet`&&!(t.state.loading&4)&&(r=t.instance,t.state.loading|=4,Lf(r,n.precedence,e));return t.instance}function Lf(e,t,n){for(var r=n.querySelectorAll(`link[rel="stylesheet"][data-precedence],style[data-precedence]`),i=r.length?r[r.length-1]:null,a=i,o=0;o<r.length;o++){var s=r[o];if(s.dataset.precedence===t)a=s;else if(a!==i)break}a?a.parentNode.insertBefore(e,a.nextSibling):(t=n.nodeType===9?n.head:n,t.insertBefore(e,t.firstChild))}function Rf(e,t){e.crossOrigin??=t.crossOrigin,e.referrerPolicy??=t.referrerPolicy,e.title??=t.title}function zf(e,t){e.crossOrigin??=t.crossOrigin,e.referrerPolicy??=t.referrerPolicy,e.integrity??=t.integrity}var Bf=null;function Vf(e,t,n){if(Bf===null){var r=new Map,i=Bf=new Map;i.set(n,r)}else i=Bf,r=i.get(n),r||(r=new Map,i.set(n,r));if(r.has(e))return r;for(r.set(e,null),n=n.getElementsByTagName(e),i=0;i<n.length;i++){var a=n[i];if(!(a[Ct]||a[gt]||e===`link`&&a.getAttribute(`rel`)===`stylesheet`)&&a.namespaceURI!==`http://www.w3.org/2000/svg`){var o=a.getAttribute(t)||``;o=e+o;var s=r.get(o);s?s.push(a):r.set(o,[a])}}return r}function Hf(e,t,n){e=e.ownerDocument||e,e.head.insertBefore(n,t===`title`?e.querySelector(`head > title`):null)}function Uf(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case`meta`:case`title`:return!0;case`style`:if(typeof t.precedence!=`string`||typeof t.href!=`string`||t.href===``)break;return!0;case`link`:if(typeof t.rel!=`string`||typeof t.href!=`string`||t.href===``||t.onLoad||t.onError)break;switch(t.rel){case`stylesheet`:return e=t.disabled,typeof t.precedence==`string`&&e==null;default:return!0}case`script`:if(t.async&&typeof t.async!=`function`&&typeof t.async!=`symbol`&&!t.onLoad&&!t.onError&&t.src&&typeof t.src==`string`)return!0}return!1}function Wf(e){return!(e.type===`stylesheet`&&!(e.state.loading&3))}function Gf(e,t,n,r){if(n.type===`stylesheet`&&(typeof r.media!=`string`||!1!==matchMedia(r.media).matches)&&!(n.state.loading&4)){if(n.instance===null){var i=Af(r.href),a=t.querySelector(jf(i));if(a){t=a._p,typeof t==`object`&&t&&typeof t.then==`function`&&(e.count++,e=Jf.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=a,k(a);return}a=t.ownerDocument||t,r=Mf(r),(i=mf.get(i))&&Rf(r,i),a=a.createElement(`link`),k(a);var o=a;o._p=new Promise(function(e,t){o.onload=e,o.onerror=t}),Pd(a,`link`,r),n.instance=a}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=Jf.bind(e),t.addEventListener(`load`,n),t.addEventListener(`error`,n))}}var Kf=0;function qf(e,t){return e.stylesheets&&e.count===0&&Xf(e,e.stylesheets),0<e.count||0<e.imgCount?function(n){var r=setTimeout(function(){if(e.stylesheets&&Xf(e,e.stylesheets),e.unsuspend){var t=e.unsuspend;e.unsuspend=null,t()}},6e4+t);0<e.imgBytes&&Kf===0&&(Kf=62500*Ld());var i=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Xf(e,e.stylesheets),e.unsuspend)){var t=e.unsuspend;e.unsuspend=null,t()}},(e.imgBytes>Kf?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(r),clearTimeout(i)}}:null}function Jf(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Xf(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Yf=null;function Xf(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Yf=new Map,t.forEach(Zf,e),Yf=null,Jf.call(e))}function Zf(e,t){if(!(t.state.loading&4)){var n=Yf.get(e);if(n)var r=n.get(null);else{n=new Map,Yf.set(e,n);for(var i=e.querySelectorAll(`link[data-precedence],style[data-precedence]`),a=0;a<i.length;a++){var o=i[a];(o.nodeName===`LINK`||o.getAttribute(`media`)!==`not all`)&&(n.set(o.dataset.precedence,o),r=o)}r&&n.set(null,r)}i=t.instance,o=i.getAttribute(`data-precedence`),a=n.get(o)||r,a===r&&n.set(null,i),n.set(o,i),this.count++,r=Jf.bind(this),i.addEventListener(`load`,r),i.addEventListener(`error`,r),a?a.parentNode.insertBefore(i,a.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(i,e.firstChild)),t.state.loading|=4}}var Qf={$$typeof:S,Provider:null,Consumer:null,_currentValue:de,_currentValue2:de,_threadCount:0};function $f(e,t,n,r,i,a,o,s,c){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=at(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=at(0),this.hiddenUpdates=at(null),this.identifierPrefix=r,this.onUncaughtError=i,this.onCaughtError=a,this.onRecoverableError=o,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=c,this.incompleteTransitions=new Map}function ep(e,t,n,r,i,a,o,s,c,l,u,d){return e=new $f(e,t,n,o,c,l,u,d,s),t=1,!0===a&&(t|=24),a=_i(3,null,null,t),e.current=a,a.stateNode=e,t=ha(),t.refCount++,e.pooledCache=t,t.refCount++,a.memoizedState={element:r,isDehydrated:n,cache:t},Ja(a),e}function tp(e){return e?(e=hi,e):hi}function np(e,t,n,r,i,a){i=tp(i),r.context===null?r.context=i:r.pendingContext=i,r=Xa(t),r.payload={element:n},a=a===void 0?null:a,a!==null&&(r.callback=a),n=Za(e,r,t),n!==null&&(hu(n,e,t),Qa(n,e,t))}function rp(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function ip(e,t){rp(e,t),(e=e.alternate)&&rp(e,t)}function ap(e){if(e.tag===13||e.tag===31){var t=fi(e,67108864);t!==null&&hu(t,e,67108864),ip(e,67108864)}}function op(e){if(e.tag===13||e.tag===31){var t=pu();t=dt(t);var n=fi(e,t);n!==null&&hu(n,e,t),ip(e,t)}}var sp=!0;function cp(e,t,n,r){var i=T.T;T.T=null;var a=E.p;try{E.p=2,up(e,t,n,r)}finally{E.p=a,T.T=i}}function lp(e,t,n,r){var i=T.T;T.T=null;var a=E.p;try{E.p=8,up(e,t,n,r)}finally{E.p=a,T.T=i}}function up(e,t,n,r){if(sp){var i=dp(r);if(i===null)wd(e,t,r,fp,n),Cp(e,r);else if(Tp(i,e,t,n,r))r.stopPropagation();else if(Cp(e,r),t&4&&-1<Sp.indexOf(e)){for(;i!==null;){var a=Et(i);if(a!==null)switch(a.tag){case 3:if(a=a.stateNode,a.current.memoizedState.isDehydrated){var o=et(a.pendingLanes);if(o!==0){var s=a;for(s.pendingLanes|=2,s.entangledLanes|=2;o;){var c=1<<31-qe(o);s.entanglements[1]|=c,o&=~c}rd(a),!(W&6)&&(nu=Fe()+500,id(0,!1))}}break;case 31:case 13:s=fi(a,2),s!==null&&hu(s,a,2),bu(),ip(a,2)}if(a=dp(r),a===null&&wd(e,t,r,fp,n),a===i)break;i=a}i!==null&&r.stopPropagation()}else wd(e,t,r,null,n)}}function dp(e){return e=dn(e),pp(e)}var fp=null;function pp(e){if(fp=null,e=Tt(e),e!==null){var t=o(e);if(t===null)e=null;else{var n=t.tag;if(n===13){if(e=s(t),e!==null)return e;e=null}else if(n===31){if(e=c(t),e!==null)return e;e=null}else if(n===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null)}}return fp=e,null}function mp(e){switch(e){case`beforetoggle`: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`toggle`: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 2;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`touchmove`:case`wheel`:case`mouseenter`:case`mouseleave`:case`pointerenter`:case`pointerleave`:return 8;case`message`:switch(Ie()){case Le:return 2;case Re:return 8;case ze:case Be:return 32;case Ve:return 268435456;default:return 32}default:return 32}}var hp=!1,gp=null,_p=null,vp=null,yp=new Map,bp=new Map,xp=[],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`.split(` `);function Cp(e,t){switch(e){case`focusin`:case`focusout`:gp=null;break;case`dragenter`:case`dragleave`:_p=null;break;case`mouseover`:case`mouseout`:vp=null;break;case`pointerover`:case`pointerout`:yp.delete(t.pointerId);break;case`gotpointercapture`:case`lostpointercapture`:bp.delete(t.pointerId)}}function wp(e,t,n,r,i,a){return e===null||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[i]},t!==null&&(t=Et(t),t!==null&&ap(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,i!==null&&t.indexOf(i)===-1&&t.push(i),e)}function Tp(e,t,n,r,i){switch(t){case`focusin`:return gp=wp(gp,e,t,n,r,i),!0;case`dragenter`:return _p=wp(_p,e,t,n,r,i),!0;case`mouseover`:return vp=wp(vp,e,t,n,r,i),!0;case`pointerover`:var a=i.pointerId;return yp.set(a,wp(yp.get(a)||null,e,t,n,r,i)),!0;case`gotpointercapture`:return a=i.pointerId,bp.set(a,wp(bp.get(a)||null,e,t,n,r,i)),!0}return!1}function Ep(e){var t=Tt(e.target);if(t!==null){var n=o(t);if(n!==null){if(t=n.tag,t===13){if(t=s(n),t!==null){e.blockedOn=t,mt(e.priority,function(){op(n)});return}}else if(t===31){if(t=c(n),t!==null){e.blockedOn=t,mt(e.priority,function(){op(n)});return}}else if(t===3&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=n.tag===3?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Dp(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=dp(e.nativeEvent);if(n===null){n=e.nativeEvent;var r=new n.constructor(n.type,n);un=r,n.target.dispatchEvent(r),un=null}else return t=Et(n),t!==null&&ap(t),e.blockedOn=n,!1;t.shift()}return!0}function Op(e,t,n){Dp(e)&&n.delete(t)}function kp(){hp=!1,gp!==null&&Dp(gp)&&(gp=null),_p!==null&&Dp(_p)&&(_p=null),vp!==null&&Dp(vp)&&(vp=null),yp.forEach(Op),bp.forEach(Op)}function Ap(e,n){e.blockedOn===n&&(e.blockedOn=null,hp||(hp=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,kp)))}var jp=null;function Mp(e){jp!==e&&(jp=e,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){jp===e&&(jp=null);for(var t=0;t<e.length;t+=3){var n=e[t],r=e[t+1],i=e[t+2];if(typeof r!=`function`){if(pp(r||n)===null)continue;break}var a=Et(n);a!==null&&(e.splice(t,3),t-=3,ks(a,{pending:!0,data:i,method:n.method,action:r},r,i))}}))}function Np(e){function t(t){return Ap(t,e)}gp!==null&&Ap(gp,e),_p!==null&&Ap(_p,e),vp!==null&&Ap(vp,e),yp.forEach(t),bp.forEach(t);for(var n=0;n<xp.length;n++){var r=xp[n];r.blockedOn===e&&(r.blockedOn=null)}for(;0<xp.length&&(n=xp[0],n.blockedOn===null);)Ep(n),n.blockedOn===null&&xp.shift();if(n=(e.ownerDocument||e).$$reactFormReplay,n!=null)for(r=0;r<n.length;r+=3){var i=n[r],a=n[r+1],o=i[_t]||null;if(typeof a==`function`)o||Mp(n);else if(o){var s=null;if(a&&a.hasAttribute(`formAction`)){if(i=a,o=a[_t]||null)s=o.formAction;else if(pp(i)!==null)continue}else s=o.action;typeof s==`function`?n[r+1]=s:(n.splice(r,3),r-=3),Mp(n)}}}function Pp(){function e(e){e.canIntercept&&e.info===`react-transition`&&e.intercept({handler:function(){return new Promise(function(e){return i=e})},focusReset:`manual`,scroll:`manual`})}function t(){i!==null&&(i(),i=null),r||setTimeout(n,20)}function n(){if(!r&&!navigation.transition){var e=navigation.currentEntry;e&&e.url!=null&&navigation.navigate(e.url,{state:e.getState(),info:`react-transition`,history:`replace`})}}if(typeof navigation==`object`){var r=!1,i=null;return navigation.addEventListener(`navigate`,e),navigation.addEventListener(`navigatesuccess`,t),navigation.addEventListener(`navigateerror`,t),setTimeout(n,100),function(){r=!0,navigation.removeEventListener(`navigate`,e),navigation.removeEventListener(`navigatesuccess`,t),navigation.removeEventListener(`navigateerror`,t),i!==null&&(i(),i=null)}}}function Fp(e){this._internalRoot=e}Ip.prototype.render=Fp.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(i(409));var n=t.current;np(n,pu(),e,t,null,null)},Ip.prototype.unmount=Fp.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;np(e.current,2,null,e,null,null),bu(),t[vt]=null}};function Ip(e){this._internalRoot=e}Ip.prototype.unstable_scheduleHydration=function(e){if(e){var t=pt();e={blockedOn:null,target:e,priority:t};for(var n=0;n<xp.length&&t!==0&&t<xp[n].priority;n++);xp.splice(n,0,e),n===0&&Ep(e)}};var Lp=n.version;if(Lp!==`19.2.6`)throw Error(i(527,Lp,`19.2.6`));E.findDOMNode=function(e){var t=e._reactInternals;if(t===void 0)throw typeof e.render==`function`?Error(i(188)):(e=Object.keys(e).join(`,`),Error(i(268,e)));return e=d(t),e=e===null?null:p(e),e=e===null?null:e.stateNode,e};var Rp={bundleType:0,version:`19.2.6`,rendererPackageName:`react-dom`,currentDispatcherRef:T,reconcilerVersion:`19.2.6`};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<`u`){var zp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!zp.isDisabled&&zp.supportsFiber)try{We=zp.inject(Rp),Ge=zp}catch{}}e.createRoot=function(e,t){if(!a(e))throw Error(i(299));var n=!1,r=``,o=Qs,s=$s,c=ec;return t!=null&&(!0===t.unstable_strictMode&&(n=!0),t.identifierPrefix!==void 0&&(r=t.identifierPrefix),t.onUncaughtError!==void 0&&(o=t.onUncaughtError),t.onCaughtError!==void 0&&(s=t.onCaughtError),t.onRecoverableError!==void 0&&(c=t.onRecoverableError)),t=ep(e,1,!1,null,null,n,r,null,o,s,c,Pp),e[vt]=t.current,Sd(e),new Fp(t)}})),g=o(((e,t)=>{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=h()})),_=c(u(),1),v=g(),y={nodeWidth:188,nodeHeight:52,columnGap:52,rowGap:18,groupPadding:18,headingHeight:32,margin:24};function b(e){let{nodeWidth:t,nodeHeight:n,columnGap:r,rowGap:i,groupPadding:a,headingHeight:o,margin:s}=y,c=t+a*2,l=0,u=new Map;return e.groups.forEach((e,d)=>{let f=s+d*(c+r),p=C(e.nodes.length);l=Math.max(l,s+p+s),e.nodes.forEach((e,r)=>{u.set(e,{x:f+a,y:s+a+o+r*(n+i),width:t,height:n})}),e.frame={x:f,y:s,width:c,height:p}}),{width:s*2+e.groups.length*c+Math.max(0,e.groups.length-1)*r,height:l,positions:u}}function x(e,t){let n=e.x+e.width,r=e.y+e.height/2,i=t.x,a=t.y+t.height/2,o=Math.max(28,(i-n)/2);return`M ${n} ${r} C ${n+o} ${r}, ${i-o} ${a}, ${i} ${a}`}function ee(e){return new Map([...e.entries()].map(([e,t])=>[e,{...t}]))}function S(e){return new Map([...e.entries()].map(([e,t])=>[e,{...t}]))}function C(e){let{nodeHeight:t,rowGap:n,groupPadding:r,headingHeight:i}=y;return r+i+e*t+Math.max(0,e-1)*n+r}var te=/^[A-Za-z0-9_]+$/;function ne(e){let t=[],n=new Map,r=[],i=null;for(let a of re(e)){let e=w(a),o=ie(a),s=ae(a);if(e){i={id:e.id,label:e.label,nodes:[]},t.push(i);continue}if(a===`end`){i=null;continue}if(o&&i){let e={id:o.id,label:o.label,group:i.id};i.nodes.push(e.id),n.set(e.id,e);continue}s&&r.push(s)}return{groups:t,nodes:n,edges:r}}function re(e){return e.split(`
|
|
10
|
-
`).map(e=>e.trim()).filter(e=>e!==``&&!e.startsWith(`flowchart`))}function w(e){return e.startsWith(`subgraph `)?oe(e.slice(9).trim()):null}function ie(e){return oe(e)}function ae(e){let t=e.split(`-->`);if(t.length!==2)return null;let n=t[0].trim(),r=t[1].trim();return!se(n)||!se(r)?null:{from:n,to:r}}function oe(e){let t=e.indexOf(`["`);if(t<=0||!e.endsWith(`"]`))return null;let n=e.slice(0,t).trim(),r=e.slice(t+2,-2);return!se(n)||r.length===0?null:{id:n,label:r}}function se(e){return te.test(e)}var ce=`http://www.w3.org/2000/svg`,{groupPadding:le}=y,ue=.55,T=2.4;function E({nodeElement:e,groupElement:t}){return e?`node`:t?`group`:`canvas`}function de(e){let t=e.target.closest?.(`.architecture-node`);if(t)return{nodeElement:t,groupElement:null,dragMode:`node`};let n=e.target.closest?.(`.architecture-group`);return{nodeElement:null,groupElement:n,dragMode:E({nodeElement:null,groupElement:n})}}function fe(e){return e>0?-.1:.1}function pe({container:e,controls:t,sourceLink:n,panel:r}){if(!e||!t)return()=>{};let i={scale:1,defaultScale:1,x:0,defaultX:0,y:0,defaultY:0,isDragging:!1,dragMode:null,activeNodeId:null,activeGroupId:null,dragStartX:0,dragStartY:0,originX:0,originY:0,nodeOriginX:0,nodeOriginY:0,groupOriginX:0,groupOriginY:0,edges:[],edgeLayer:null,groupElements:new Map,groupFrames:new Map,groupNodes:new Map,defaultGroupFrames:new Map,nodeElements:new Map,nodePositions:new Map,nodeDragOrigins:new Map,defaultNodePositions:new Map,viewport:null};function a(e,t={}){let n=document.createElementNS(ce,e);return Object.entries(t).forEach(([e,t])=>{n.setAttribute(e,String(t))}),n}function o(t){let n=ne(t),r=b(n);i.groupElements=new Map,i.nodeElements=new Map;let o=a(`svg`,{role:`img`,"aria-label":`Open Orchestra architecture diagram`,preserveAspectRatio:`xMinYMid meet`,viewBox:`0 0 ${r.width} ${r.height}`}),s=a(`defs`),l=a(`marker`,{id:`architecture-arrow`,viewBox:`0 0 10 10`,refX:`8`,refY:`5`,markerWidth:`6`,markerHeight:`6`,orient:`auto-start-reverse`});l.appendChild(a(`path`,{d:`M 0 0 L 10 5 L 0 10 z`})),s.appendChild(l),o.appendChild(s);let u=a(`g`,{class:`architecture-viewport`}),d=a(`g`,{class:`architecture-edges`}),f=a(`g`,{class:`architecture-groups`}),p=a(`g`,{class:`architecture-nodes`});n.edges.forEach(e=>{d.appendChild(a(`path`,{"data-from":e.from,"data-to":e.to}))}),n.groups.forEach(e=>{let t=a(`g`,{class:`architecture-group`,"data-group-id":e.id});t.appendChild(a(`rect`,{x:e.frame.x,y:e.frame.y,width:e.frame.width,height:e.frame.height,rx:`8`}));let n=a(`text`,{x:e.frame.x+le,y:e.frame.y+24});n.textContent=e.label,t.appendChild(n),f.appendChild(t),i.groupElements.set(e.id,t)}),n.nodes.forEach(e=>{let t=r.positions.get(e.id),n=a(`g`,{class:`architecture-node`,"data-node-id":e.id});n.appendChild(a(`rect`,{x:t.x,y:t.y,width:t.width,height:t.height,rx:`7`}));let o=a(`text`,{x:t.x+t.width/2,y:t.y+t.height/2+5,"text-anchor":`middle`});o.textContent=e.label,n.appendChild(o),p.appendChild(n),i.nodeElements.set(e.id,n)}),u.append(d,f,p),o.appendChild(u),e.replaceChildren(o),i.edges=n.edges,i.edgeLayer=d,i.groupFrames=new Map(n.groups.map(e=>[e.id,{...e.frame}])),i.groupNodes=new Map(n.groups.map(e=>[e.id,[...e.nodes]])),i.defaultGroupFrames=S(i.groupFrames),i.nodePositions=ee(r.positions),i.defaultNodePositions=ee(r.positions),i.viewport=u,m(),c()}function s(){return{scale:1,x:0,y:0}}function c(){let e=s();i.defaultScale=e.scale,i.defaultX=e.x,i.defaultY=e.y,i.scale=e.scale,i.x=e.x,i.y=e.y,l()}function l(){i.viewport&&i.viewport.setAttribute(`transform`,`translate(${i.x} ${i.y}) scale(${i.scale})`)}function u(e){i.scale=Math.min(T,Math.max(ue,i.scale+e)),l()}function d(){i.scale=i.defaultScale,i.x=i.defaultX,i.y=i.defaultY,i.nodePositions=ee(i.defaultNodePositions),i.groupFrames=S(i.defaultGroupFrames),i.groupFrames.forEach((e,t)=>{f(t,e)}),i.nodePositions.forEach((e,t)=>{p(t,e)}),m(),l()}function f(e,t){let n=i.groupElements.get(e),r=n?.querySelector(`rect`),a=n?.querySelector(`text`);!r||!a||(r.setAttribute(`x`,String(t.x)),r.setAttribute(`y`,String(t.y)),r.setAttribute(`width`,String(t.width)),r.setAttribute(`height`,String(t.height)),a.setAttribute(`x`,String(t.x+le)),a.setAttribute(`y`,String(t.y+24)))}function p(e,t){let n=i.nodeElements.get(e),r=n?.querySelector(`rect`),a=n?.querySelector(`text`);!r||!a||(r.setAttribute(`x`,String(t.x)),r.setAttribute(`y`,String(t.y)),a.setAttribute(`x`,String(t.x+t.width/2)),a.setAttribute(`y`,String(t.y+t.height/2+5)))}function m(){i.edgeLayer&&i.edgeLayer.querySelectorAll(`path`).forEach(e=>{let t=i.nodePositions.get(e.dataset.from),n=i.nodePositions.get(e.dataset.to);!t||!n||e.setAttribute(`d`,x(t,n))})}function h(){if(!document.fullscreenElement){r?.requestFullscreen?.();return}document.exitFullscreen?.()}function g(e){let t=e.target.closest(`button`);if(!t)return;let n=t.dataset.action;n===`zoom-in`?u(.15):n===`zoom-out`?u(-.15):n===`reset`?d():n===`fullscreen`&&h()}function _(t){let{nodeElement:n,groupElement:r,dragMode:a}=de(t);if(i.isDragging=!0,i.dragMode=a,i.dragStartX=t.clientX,i.dragStartY=t.clientY,i.originX=i.x,i.originY=i.y,i.activeNodeId=n?.dataset.nodeId??null,i.activeGroupId=r?.dataset.groupId??null,i.activeNodeId){let e=i.nodePositions.get(i.activeNodeId);i.nodeOriginX=e?.x??0,i.nodeOriginY=e?.y??0}if(i.activeGroupId){let e=i.groupFrames.get(i.activeGroupId),t=i.groupNodes.get(i.activeGroupId)??[];i.groupOriginX=e?.x??0,i.groupOriginY=e?.y??0,i.nodeDragOrigins=new Map(t.map(e=>[e,{...i.nodePositions.get(e)}]))}e.setPointerCapture(t.pointerId)}function v(e){if(i.isDragging){if(i.dragMode===`node`&&i.activeNodeId){let t=i.nodePositions.get(i.activeNodeId);if(!t)return;t.x=i.nodeOriginX+(e.clientX-i.dragStartX)/i.scale,t.y=i.nodeOriginY+(e.clientY-i.dragStartY)/i.scale,p(i.activeNodeId,t),m();return}if(i.dragMode===`group`&&i.activeGroupId){let t=i.groupFrames.get(i.activeGroupId);if(!t)return;let n=(e.clientX-i.dragStartX)/i.scale,r=(e.clientY-i.dragStartY)/i.scale;t.x=i.groupOriginX+n,t.y=i.groupOriginY+r,f(i.activeGroupId,t),i.nodeDragOrigins.forEach((e,t)=>{let a=i.nodePositions.get(t);!a||!e||(a.x=e.x+n,a.y=e.y+r,p(t,a))}),m();return}i.x=i.originX+(e.clientX-i.dragStartX)/i.scale,i.y=i.originY+(e.clientY-i.dragStartY)/i.scale,l()}}function y(t){i.isDragging=!1,i.dragMode=null,i.activeNodeId=null,i.activeGroupId=null,i.nodeDragOrigins=new Map,e.hasPointerCapture?.(t.pointerId)&&e.releasePointerCapture(t.pointerId)}function C(e){e.preventDefault(),u(fe(e.deltaY))}async function te(){let e=await fetch(`/architecture.mmd`);if(!e.ok)throw Error(`Architecture Mermaid source could not be loaded.`);let t=await e.text();n?.setAttribute(`href`,`/architecture.mmd`),o(t)}return t.addEventListener(`click`,g),e.addEventListener(`pointerdown`,_),e.addEventListener(`pointermove`,v),e.addEventListener(`pointerup`,y),e.addEventListener(`pointercancel`,y),e.addEventListener(`wheel`,C,{passive:!1}),te().catch(t=>{e.textContent=t.message}),()=>{t.removeEventListener(`click`,g),e.removeEventListener(`pointerdown`,_),e.removeEventListener(`pointermove`,v),e.removeEventListener(`pointerup`,y),e.removeEventListener(`pointercancel`,y),e.removeEventListener(`wheel`,C)}}var me={navLinks:[{href:`/`,label:`Home`},{href:`/docs`,label:`Docs`},{href:`/console`,label:`Web Console`},{href:`/personas`,label:`Personas`},{href:`/architecture`,label:`Architecture`},{href:`/release`,label:`Release`},{href:`/reference`,label:`Reference`},{href:`https://jterrats.dev`,label:`Main site`}],pages:[{path:`/`,label:`Home`,title:`Start with governed local delivery`,sections:[`hero`,`quickstart`,`capabilities`]},{path:`/docs`,label:`Docs`,title:`Documentation map`,sections:[`docsCatalog`]},{path:`/console`,label:`Web Console`,title:`Local web console`,sections:[`consoleGuide`]},{path:`/personas`,label:`Personas`,title:`Work by role`,sections:[`personas`,`workflow`]},{path:`/architecture`,label:`Architecture`,title:`Architecture and system boundaries`,sections:[`architecture`]},{path:`/release`,label:`Release`,title:`Release readiness`,sections:[`releaseGuide`]},{path:`/reference`,label:`Reference`,title:`Command and integration reference`,sections:[`referenceGuide`]}],hero:{eyebrow:`Open Orchestra`,title:`Governed multi-agent delivery with autonomous workflow runs.`,lead:`AI-assisted development gets messy fast: prompts drift, context is assembled by hand, and evidence is often reconstructed after the fact. Open Orchestra gives Codex, Claude Code, Cursor, and agentic CLIs a repeatable delivery workflow. Register a task, run the workflow, and Orchestra selects the right playbook, injects structured context into the agent, records handoffs and evidence, and leaves a resumable audit trail. The public CLI is orchestra.`,primary:{label:`View repository`,href:`https://github.com/jterrats/open-orchestra`},secondary:{label:`Start locally`,href:`/docs#quickstart`},metrics:[{label:`phase`,value:`PM to release lifecycle`},{label:`gates`,value:`none, phase, or all`},{label:`runtime`,value:`local-first adapters`},{label:`release`,value:`AC evidence and smoke gates`}],commands:[`orchestra init`,`orchestra task add --id DEMO-001 --title "Ship a governed README update" --owner developer --paths "<files>"`,`orchestra workflow run --task DEMO-001 --gates none`,`orchestra status`]},quickstart:{eyebrow:`Quickstart`,title:`First visible value in minutes`,body:`What happens automatically:`,steps:[{label:`Install`,command:`npm install -g @jterrats/open-orchestra`,description:`Install the published CLI package.`},{label:`Initialize`,command:`orchestra init`,description:`Create local workflow state for the project.`},{label:`Create Work`,command:`orchestra task add --id DEMO-001 --title "Ship a governed README update" --owner developer --paths "<files>"`,description:`Register durable work before implementation starts.`},{label:`Run Workflow`,command:`orchestra workflow run --task DEMO-001 --gates none`,description:`Execute the governed local lifecycle.`},{label:`Inspect Status`,command:`orchestra status`,description:`Inspect active tasks, workflow runs, and gaps.`}]},capabilities:{eyebrow:`Capabilities`,title:`Core product surface`,body:`The public command surface stays small enough to learn quickly while still covering workspace setup, work intake, governed execution, tracker sync, release readiness, and workflow tooling.`,items:[{title:`Workspace`,body:`orchestra init, orchestra health --json, orchestra status.`},{title:`Work intake`,body:`orchestra task add, orchestra task list, orchestra task show.`},{title:`Governed execution`,body:`orchestra workflow run, orchestra decision add, orchestra evidence add, orchestra review.`},{title:`Tracker and release`,body:`orchestra github sync --issue <number>, orchestra release check --json, orchestra upgrade --smoke --json.`},{title:`Workflow tooling`,body:`orchestra workflow phase-plan --task <id>, orchestra refresh --check --json, orchestra cursor canvas status --json.`}]},architecture:{eyebrow:`Architecture`,title:`Local-first control plane`,body:`Open Orchestra is a local-first workflow control plane. The CLI remains the source of truth, while web, VS Code, and agent runtimes use the same workflow files and JSON command contracts. The canonical diagram source is Mermaid so it can be reviewed as text and rendered consistently by GitHub, docs tooling, and the project site.`,sourceHref:`/architecture.mmd`},launch:{eyebrow:`1.0.0 launch`,title:`Production adoption path`,body:`The public path is installable, local-first, and evidence-driven. Use the release matrix before promoting a candidate.`,links:[{title:`Install`,label:`npm`,href:`https://www.npmjs.com/package/@jterrats/open-orchestra`,body:`What happens automatically:`},{title:`Quickstart`,label:`README`,href:`https://github.com/jterrats/open-orchestra#quick-start`,body:`What happens automatically:`},{title:`Release matrix`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/release-test-matrix.md`,body:`The release test matrix is the minimum validation surface for a production 1.0.0 candidate. It is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`},{title:`Runtime adapters`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/runtime-adapters.md`,body:`Open Orchestra uses one adapter catalog for LLM runtimes, IDEs, and CLI agents. The catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`}]},docs:{eyebrow:`Docs`,title:`Documentation map`,body:`Start from the smallest public guide for the workflow you are running. The site content is generated from these docs so public copy stays aligned with the repository.`,links:[{title:`Adoption guide`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/adoption-guide.md`,body:`This guide is the documentation map for teams evaluating or adopting Open Orchestra. Start here, then follow the focused document for the workflow you are running.`},{title:`Core command surface`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/core-command-surface.md`,body:`Open Orchestra exposes many commands because it covers intake, workflow, evidence, runtime adapters, release readiness, and local memory. Product onboarding should not present every command at once. Use this surface to decide what belongs in README, the public site, generated runtime bootstrap text, and full reference docs.`},{title:`E2E test batteries`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/e2e-test-batteries.md`,body:`Open Orchestra needs E2E coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. Unit tests can prove helpers; E2E batteries must prove observable behavior from the public entry points a user or CI runner actually executes.`},{title:`Duplicate-code enforcement`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/duplicate-code-enforcement.md`,body:`Open Orchestra uses jscpd to make the existing DRY and collection-standards rules enforceable in CI.`},{title:`Sonar quality gates`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-quality-gates.md`,body:`Open Orchestra uses Sonar as a repository and SaaS project-quality signal. It does not replace secret scanning or runtime policy enforcement.`},{title:`Sonar architecture model`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-architecture-model.md`,body:`This document defines the intended module boundaries that Sonar architecture analysis should eventually enforce for Open Orchestra. Until Sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`},{title:`Runtime adapters`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/runtime-adapters.md`,body:`Open Orchestra uses one adapter catalog for LLM runtimes, IDEs, and CLI agents. The catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`},{title:`Context vault`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/context-vault.md`,body:`Context vault is the planned workspace catalog for source materials that inform agent work but should not be pasted directly into every prompt. It covers documents, statements of work, PDFs, diagrams, images, audio/video recordings, transcripts, and client reference artifacts.`},{title:`Site content workflow`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/site-content-workflow.md`,body:`The public site is a generated documentation surface. The source of truth stays in versioned documentation, while React renders a compact generated content module.`}]},console:{eyebrow:`Web Console`,title:`Operate workflows from the local browser console`,body:`The web console is a local browser surface for inspecting workflow state, creating tasks, attaching evidence, running or resuming workflows, and reviewing release readiness through the same JSON contracts as the CLI.`,links:[{title:`Web console QA`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/web-console-qa.md`,body:`The web console is a local browser surface for workflow operations. It is not a replacement for the CLI; it consumes the same JSON contracts and should remain usable when a user needs to inspect state, create tasks, attach evidence, run or resume workflows, and review release readiness.`},{title:`Local web console`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/orchestra-mvp.md`,body:`Use the installed CLI form in project documentation and automation:`},{title:`Workflow progress API`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra#quick-start`,body:`The 1.0.0 workflow surface keeps the CLI as the source of truth while making generated files and runtime views easier to audit:`},{title:`Delivery dashboard`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/adoption-guide.md`,body:`Before a production release candidate, run:`}]},consoleGuide:{eyebrow:`Web Console`,title:`Operate workflows without leaving the browser`,body:`Use the local console when you need to inspect tasks, run or resume workflows, attach evidence, review readiness, or recover interrupted state. It uses the same local workflow data as the CLI.`,items:[{label:`Start`,title:`Open the local console`,body:`Run the web console from the project, then use the Overview page to confirm workspace health and the next best action.`},{label:`Work`,title:`Manage tasks and workflow runs`,body:`Create tasks, inspect task detail, start workflows, approve gates, request changes, block gates, and resume approved runs from the Workflow page.`},{label:`Evidence`,title:`Attach proof before release`,body:`Use Evidence to add command output, reports, screenshots, traces, videos, and artifact references that map back to acceptance criteria.`},{label:`Recover`,title:`Resolve interrupted local state`,body:`Use Operations to review stale locks and recovery warnings before making repairs that affect workflow state.`}]},docsCatalog:{eyebrow:`Docs`,title:`Find the right guide for the job`,body:`Use this catalog to choose what to read next. Start with the guided path if you are new, or search by the work you are trying to do: install, run a workflow, validate release evidence, operate the web console, or integrate automation.`,paths:[{title:`First run`,body:`Install the CLI, initialize a workspace, and complete a local workflow without provider credentials.`,target:`Adoption guide`},{title:`Ship safely`,body:`Check acceptance evidence, release readiness, package status, and rollback expectations.`,target:`Release test matrix`},{title:`Operate locally`,body:`Use the browser console to inspect tasks, evidence, workflow runs, recovery state, and settings.`,target:`Web console QA`}],groups:[{title:`Start here`,description:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,audience:`New users`,items:[{title:`Adoption guide`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/adoption-guide.md`,heading:`Open Orchestra 1.0.0 Adoption Guide`,body:`This guide is the documentation map for teams evaluating or adopting Open Orchestra. Start here, then follow the focused document for the workflow you are running.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`adoption guide guide open orchestra 1.0.0 adoption guide this guide is the documentation map for teams evaluating or adopting open orchestra. start here, then follow the focused document for the workflow you are running.`},{title:`Core command surface`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/core-command-surface.md`,heading:`Core Command Surface`,body:`Open Orchestra exposes many commands because it covers intake, workflow, evidence, runtime adapters, release readiness, and local memory. Product onboarding should not present every command at once. Use this surface to decide what belongs in README, the public site, generated runtime bootstrap text, and full reference docs.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`core command surface guide core command surface open orchestra exposes many commands because it covers intake, workflow, evidence, runtime adapters, release readiness, and local memory. product onboarding should not present every command at once. use this surface to decide what belongs in readme, the public site, generated runtime bootstrap text, and full reference docs.`},{title:`E2E test batteries`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/e2e-test-batteries.md`,heading:`End-to-End Test Batteries`,body:`Open Orchestra needs E2E coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. Unit tests can prove helpers; E2E batteries must prove observable behavior from the public entry points a user or CI runner actually executes.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`e2e test batteries guide end-to-end test batteries open orchestra needs e2e coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. unit tests can prove helpers; e2e batteries must prove observable behavior from the public entry points a user or ci runner actually executes.`},{title:`Duplicate-code enforcement`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/duplicate-code-enforcement.md`,heading:`Duplicate-Code Enforcement`,body:`Open Orchestra uses jscpd to make the existing DRY and collection-standards rules enforceable in CI.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`duplicate-code enforcement guide duplicate-code enforcement open orchestra uses jscpd to make the existing dry and collection-standards rules enforceable in ci.`},{title:`Sonar quality gates`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/sonar-quality-gates.md`,heading:`Sonar Quality Gates`,body:`Open Orchestra uses Sonar as a repository and SaaS project-quality signal. It does not replace secret scanning or runtime policy enforcement.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`sonar quality gates guide sonar quality gates open orchestra uses sonar as a repository and saas project-quality signal. it does not replace secret scanning or runtime policy enforcement.`},{title:`Sonar architecture model`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/sonar-architecture-model.md`,heading:`Sonar Architecture Model`,body:`This document defines the intended module boundaries that Sonar architecture analysis should eventually enforce for Open Orchestra. Until Sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`sonar architecture model guide sonar architecture model this document defines the intended module boundaries that sonar architecture analysis should eventually enforce for open orchestra. until sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`},{title:`Runtime adapters`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/runtime-adapters.md`,heading:`Runtime Adapters`,body:`Open Orchestra uses one adapter catalog for LLM runtimes, IDEs, and CLI agents. The catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`runtime adapters guide runtime adapters open orchestra uses one adapter catalog for llm runtimes, ides, and cli agents. the catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`},{title:`Context vault`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/context-vault.md`,heading:`Context Vault`,body:`Context vault is the planned workspace catalog for source materials that inform agent work but should not be pasted directly into every prompt. It covers documents, statements of work, PDFs, diagrams, images, audio/video recordings, transcripts, and client reference artifacts.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`context vault guide context vault context vault is the planned workspace catalog for source materials that inform agent work but should not be pasted directly into every prompt. it covers documents, statements of work, pdfs, diagrams, images, audio/video recordings, transcripts, and client reference artifacts.`},{title:`Site content workflow`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/site-content-workflow.md`,heading:`Public Site Content Workflow`,body:`The public site is a generated documentation surface. The source of truth stays in versioned documentation, while React renders a compact generated content module.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`site content workflow guide public site content workflow the public site is a generated documentation surface. the source of truth stays in versioned documentation, while react renders a compact generated content module.`}]},{title:`Release readiness`,description:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,audience:`Release teams`,items:[{title:`Release test matrix`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`docs/release-test-matrix.md`,heading:`1.0.0 Release Test Matrix`,body:`The release test matrix is the minimum validation surface for a production 1.0.0 candidate. It is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`release test matrix guide 1.0.0 release test matrix the release test matrix is the minimum validation surface for a production 1.0.0 candidate. it is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`},{title:`QA evidence`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`docs/site-content-workflow.md`,heading:`QA Evidence`,body:`For public site or docs-driven content changes, attach evidence for:`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`qa evidence guide qa evidence for public site or docs-driven content changes, attach evidence for:`},{title:`Package naming`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`docs/package-naming.md`,heading:`Package Naming Decision`,body:`Open Orchestra keeps two public names with different meanings:`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`package naming guide package naming decision open orchestra keeps two public names with different meanings:`},{title:`Upgrade dogfooding`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`README.md`,heading:`Quick Start`,body:`What happens automatically:`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`upgrade dogfooding guide quick start what happens automatically:`}]},{title:`Web console`,description:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,audience:`Operators`,items:[{title:`Web console QA`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`docs/web-console-qa.md`,heading:`Web Console QA Notes`,body:`The web console is a local browser surface for workflow operations. It is not a replacement for the CLI; it consumes the same JSON contracts and should remain usable when a user needs to inspect state, create tasks, attach evidence, run or resume workflows, and review release readiness.`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`web console qa guide web console qa notes the web console is a local browser surface for workflow operations. it is not a replacement for the cli; it consumes the same json contracts and should remain usable when a user needs to inspect state, create tasks, attach evidence, run or resume workflows, and review release readiness.`},{title:`Local web console`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`docs/orchestra-mvp.md`,heading:`Commands`,body:`Use the installed CLI form in project documentation and automation:`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`local web console guide commands use the installed cli form in project documentation and automation:`},{title:`Workflow progress API`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`README.md`,heading:`1.0.0 Workflow Tooling`,body:`The 1.0.0 workflow surface keeps the CLI as the source of truth while making generated files and runtime views easier to audit:`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`workflow progress api guide 1.0.0 workflow tooling the 1.0.0 workflow surface keeps the cli as the source of truth while making generated files and runtime views easier to audit:`},{title:`Delivery dashboard`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`docs/adoption-guide.md`,heading:`Release Operations`,body:`Before a production release candidate, run:`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`delivery dashboard guide release operations before a production release candidate, run:`}]},{title:`Automation reference`,description:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,audience:`Integrators`,items:[{title:`Command contracts`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/command-contracts.md`,heading:`Command Contracts`,body:`orchestra commands manifest --json is the supported discovery surface for automation. Entries include command text, required and optional flags, JSON support, surface classification, compatibility status, contract version, exit codes, error shape, and reusable schema/message references.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`command contracts guide command contracts orchestra commands manifest --json is the supported discovery surface for automation. entries include command text, required and optional flags, json support, surface classification, compatibility status, contract version, exit codes, error shape, and reusable schema/message references.`},{title:`Generated artifact APIs`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/generated-artifact-api-catalog.md`,heading:`Generated Artifact API Catalog`,body:`Open Orchestra keeps the human-facing flow small: use orchestra init to create or repair a workspace, and use orchestra refresh to reconcile managed generated artifacts after initialization.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`generated artifact apis guide generated artifact api catalog open orchestra keeps the human-facing flow small: use orchestra init to create or repair a workspace, and use orchestra refresh to reconcile managed generated artifacts after initialization.`},{title:`Runtime LLM flow`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/runtime-llm-flow.md`,heading:`Runtime LLM Flow`,body:`Open Orchestra is the local control plane. The active LLM runtime is the parent agent today.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`runtime llm flow guide runtime llm flow open orchestra is the local control plane. the active llm runtime is the parent agent today.`},{title:`Tracker adapter contract`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/tracker-adapter-contract.md`,heading:`Tracker Adapter Contract`,body:`Open Orchestra currently ships a GitHub-oriented tracker command:`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`tracker adapter contract guide tracker adapter contract open orchestra currently ships a github-oriented tracker command:`},{title:`Source of truth and learning`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/source-of-truth-and-agent-learning.md`,heading:`Source of Truth and Agent Learning`,body:`Open Orchestra should make context provenance explicit. Agents and subagents should know where to look before acting, and they should record repeatable failure lessons after an action fails.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`source of truth and learning guide source of truth and agent learning open orchestra should make context provenance explicit. agents and subagents should know where to look before acting, and they should record repeatable failure lessons after an action fails.`}]}]},personas:{id:`personas`,eyebrow:`Persona paths`,title:`Use Orchestra by job-to-be-done`,body:`Use these paths when you want to operate Open Orchestra by role instead of learning the full command catalog first. Commands assume the installed CLI form: orchestra.`,items:[{label:`PO`,text:`turn a backlog item into a task that is ready for architecture and delivery.`},{label:`Dev`,text:`implement a scoped task with role handoffs, evidence, and workflow gates.`},{label:`QA`,text:`prove acceptance criteria with traceable evidence and release-ready coverage.`},{label:`TL`,text:`keep parallel work coordinated and reviewable.`},{label:`RM`,text:`decide whether a story or candidate release can ship.`},{label:`TW`,text:`keep public documentation, site copy, command examples, release notes, and help content accurate for the intended audience.`}]},release:{eyebrow:`Release`,title:`Evidence before promotion`,body:`Release decisions depend on acceptance coverage, smoke and rollback evidence, package readiness, documentation review, and unresolved risk visibility.`,links:[{title:`Release test matrix`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/release-test-matrix.md`,body:`The release test matrix is the minimum validation surface for a production 1.0.0 candidate. It is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`},{title:`E2E test batteries`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/e2e-test-batteries.md`,body:`Open Orchestra needs E2E coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. Unit tests can prove helpers; E2E batteries must prove observable behavior from the public entry points a user or CI runner actually executes.`},{title:`Sonar quality gates`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-quality-gates.md`,body:`Open Orchestra uses Sonar as a repository and SaaS project-quality signal. It does not replace secret scanning or runtime policy enforcement.`},{title:`Sonar architecture model`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-architecture-model.md`,body:`This document defines the intended module boundaries that Sonar architecture analysis should eventually enforce for Open Orchestra. Until Sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`},{title:`QA evidence`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/site-content-workflow.md`,body:`For public site or docs-driven content changes, attach evidence for:`},{title:`Package naming`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/package-naming.md`,body:`Open Orchestra keeps two public names with different meanings:`},{title:`Upgrade dogfooding`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra#quick-start`,body:`What happens automatically:`}]},releaseGuide:{eyebrow:`Release`,title:`Decide if the package is ready to promote`,body:`Use this page as the human checklist before publishing or tagging. The goal is to make release decisions evidence-driven instead of relying on conversational approval.`,items:[{label:`1`,title:`Confirm acceptance coverage`,body:`Every accepted story should have evidence tied to its acceptance criteria, including edge cases and known residual risk.`},{label:`2`,title:`Review QA and cross-role sign-off`,body:`QA results should be visible, and BA/Architect review should confirm the tested behavior still matches the story and design intent.`},{label:`3`,title:`Check release readiness`,body:`Run release checks, package build, browser smoke, rollback expectations, and documentation review before a candidate is promoted.`},{label:`4`,title:`Record go/no-go`,body:`Capture the decision, unresolved risks, rollback notes, and post-release monitoring expectations before closing the release task.`}]},reference:{eyebrow:`Reference`,title:`Automation contracts and integration boundaries`,body:`Use these references when automating against the CLI, routing runtimes, integrating trackers, or governing memory and lessons.`,links:[{title:`Command contracts`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/command-contracts.md`,body:`orchestra commands manifest --json is the supported discovery surface for automation. Entries include command text, required and optional flags, JSON support, surface classification, compatibility status, contract version, exit codes, error shape, and reusable schema/message references.`},{title:`Generated artifact APIs`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/generated-artifact-api-catalog.md`,body:`Open Orchestra keeps the human-facing flow small: use orchestra init to create or repair a workspace, and use orchestra refresh to reconcile managed generated artifacts after initialization.`},{title:`Runtime LLM flow`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/runtime-llm-flow.md`,body:`Open Orchestra is the local control plane. The active LLM runtime is the parent agent today.`},{title:`Tracker adapter contract`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/tracker-adapter-contract.md`,body:`Open Orchestra currently ships a GitHub-oriented tracker command:`},{title:`Source of truth and learning`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/source-of-truth-and-agent-learning.md`,body:`Open Orchestra should make context provenance explicit. Agents and subagents should know where to look before acting, and they should record repeatable failure lessons after an action fails.`}]},referenceGuide:{eyebrow:`Reference`,title:`Automation contracts at a glance`,body:`Use this reference when building automation around Orchestra. The site summarizes the stable concepts; the generated command manifest remains the machine-readable contract.`,items:[{label:`Commands`,title:`Discover supported command contracts`,body:`Use the command manifest for public command names, flags, JSON support, compatibility status, exit codes, and reusable schemas.`},{label:`Runtime`,title:`Route work through the active runtime`,body:`Runtime adapters describe how local agents, IDEs, and CLI runtimes receive task context without assuming provider execution.`},{label:`Trackers`,title:`Sync backlog state deliberately`,body:`Tracker integrations should normalize issue metadata, preserve local task history, and avoid closing work before release readiness passes.`},{label:`Learning`,title:`Keep lessons bounded and auditable`,body:`Lessons, prompts, and evidence should be recorded with provenance, redaction, and context limits so future agents can learn without bloating the active prompt.`}]},workflow:{id:`workflow`,eyebrow:`Delivery model`,title:`From story intake to release candidate`,body:`The lifecycle records durable state in .agent-workflow/, routes role handoffs through reviews, and captures evidence needed for release readiness.`,items:[{label:`1`,text:`PM frames scope, priority, and success metrics`},{label:`2`,text:`PO refines acceptance criteria and clarification paths`},{label:`3`,text:`Architect records design handoff and sizing`},{label:`4`,text:`Developer implements with evidence and retry context`},{label:`5`,text:`QA verifies, blocks, or routes issues back to development`},{label:`6`,text:`Release manager prepares summary, gates, and PR evidence`}]}},D=o((e=>{var t=Symbol.for(`react.transitional.element`),n=Symbol.for(`react.fragment`);function r(e,n,r){var i=null;if(r!==void 0&&(i=``+r),n.key!==void 0&&(i=``+n.key),`key`in n)for(var a in r={},n)a!==`key`&&(r[a]=n[a]);else r=n;return n=r.ref,{$$typeof:t,type:e,key:i,ref:n===void 0?null:n,props:r}}e.Fragment=n,e.jsx=r,e.jsxs=r})),O=o(((e,t)=>{t.exports=D()}))(),he={architecture:De,capabilities:Se,console:Ce,consoleGuide:Te,docs:Ce,docsCatalog:Ee,hero:be,launch:ye,personas:Ae,quickstart:xe,reference:Ce,referenceGuide:Te,release:Ce,releaseGuide:Te,workflow:Ae};function ge(){let e=_e();return(0,O.jsxs)(O.Fragment,{children:[(0,O.jsxs)(`nav`,{className:`topbar`,"aria-label":`Primary navigation`,children:[(0,O.jsx)(`a`,{className:`brand`,href:`/`,children:`open-orchestra`}),(0,O.jsx)(`div`,{className:`nav-links`,children:me.navLinks.map(({href:t,label:n})=>(0,O.jsx)(`a`,{"aria-current":t===e.path?`page`:void 0,href:t,children:n},t))})]}),(0,O.jsx)(`main`,{children:e.sections.map(t=>(0,O.jsx)(ve,{id:t},`${e.path}-${t}`))})]})}function _e(){let e=window.location.pathname.endsWith(`/`)&&window.location.pathname!==`/`?window.location.pathname.slice(0,-1):window.location.pathname;return me.pages.find(t=>t.path===e)??me.pages.find(e=>e.path===`/`)}function ve({id:e}){let t=he[e];return t?(0,O.jsx)(t,{section:me[e]}):null}function ye({section:e}){return(0,O.jsxs)(`section`,{className:`launch`,id:`launch`,"aria-label":`1.0 launch readiness`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(we,{links:e.links})]})}function be({section:e}){return(0,O.jsxs)(`section`,{className:`hero`,children:[(0,O.jsxs)(`div`,{className:`hero-copy`,children:[(0,O.jsx)(`p`,{className:`eyebrow`,children:e.eyebrow}),(0,O.jsx)(`h1`,{children:e.title}),(0,O.jsx)(`p`,{className:`lead`,children:e.lead}),(0,O.jsxs)(`div`,{className:`actions`,children:[(0,O.jsx)(`a`,{className:`primary`,href:e.primary.href,children:e.primary.label}),(0,O.jsx)(`a`,{className:`secondary`,href:e.secondary.href,children:e.secondary.label})]})]}),(0,O.jsxs)(`div`,{className:`console`,"aria-label":`Open Orchestra workflow summary`,children:[(0,O.jsxs)(`div`,{className:`console-header`,children:[(0,O.jsx)(`span`,{children:`Autonomous Workflow`}),(0,O.jsx)(`strong`,{children:`orchestra`})]}),(0,O.jsx)(`div`,{className:`metrics`,children:e.metrics.map(({label:e,value:t})=>(0,O.jsxs)(`div`,{children:[(0,O.jsx)(`strong`,{children:e}),(0,O.jsx)(`span`,{children:t})]},e))}),(0,O.jsx)(`ul`,{className:`rows`,children:e.commands.map(e=>(0,O.jsxs)(`li`,{children:[(0,O.jsx)(`code`,{children:`CLI`}),(0,O.jsx)(`span`,{children:e}),(0,O.jsx)(`em`,{children:`public`})]},e))})]})]})}function xe({section:e}){return(0,O.jsxs)(`section`,{className:`quickstart`,id:`quickstart`,"aria-label":`Quickstart`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`div`,{className:`quickstart-grid`,children:e.steps.map(({label:e,command:t,description:n},r)=>(0,O.jsxs)(`article`,{className:`quickstart-step`,children:[(0,O.jsx)(`span`,{children:String(r+1).padStart(2,`0`)}),(0,O.jsx)(`h3`,{children:e}),(0,O.jsx)(`code`,{children:t}),(0,O.jsx)(`p`,{children:n})]},t))})]})}function Se({section:e}){return(0,O.jsxs)(`section`,{className:`capabilities`,id:`capabilities`,"aria-label":`Capabilities`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`div`,{className:`cards`,children:e.items.map(({title:e,body:t})=>(0,O.jsxs)(`article`,{children:[(0,O.jsx)(`h2`,{children:e}),(0,O.jsx)(`p`,{children:t})]},e))})]})}function Ce({section:e}){return(0,O.jsxs)(`section`,{className:`launch`,id:e.eyebrow.toLowerCase(),children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(we,{links:e.links})]})}function we({links:e}){return(0,O.jsx)(`div`,{className:`launch-grid`,children:e.map(({title:e,label:t,href:n,body:r})=>(0,O.jsxs)(`a`,{className:`launch-link`,href:n,children:[(0,O.jsx)(`span`,{children:t}),(0,O.jsx)(`strong`,{children:e}),(0,O.jsx)(`p`,{children:r})]},e))})}function Te({section:e}){return(0,O.jsxs)(`section`,{className:`guide-section`,id:e.eyebrow.toLowerCase(),children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`div`,{className:`guide-grid`,children:e.items.map(({label:e,title:t,body:n})=>(0,O.jsxs)(`article`,{className:`guide-card`,children:[(0,O.jsx)(`span`,{children:e}),(0,O.jsx)(`h3`,{children:t}),(0,O.jsx)(`p`,{children:n})]},t))})]})}function Ee({section:e}){let t=(0,_.useMemo)(()=>e.groups.flatMap(e=>e.items),[e.groups]),[n,r]=(0,_.useState)(``),[i,a]=(0,_.useState)(`${t[0]?.source??``}#${t[0]?.heading??``}`),o=n.trim().toLowerCase(),s=e.groups.map(e=>({...e,items:o?e.items.filter(e=>e.keywords.includes(o)):e.items})).filter(e=>e.items.length>0),c=s.flatMap(e=>e.items),l=c.length===1?`1 guide`:`${c.length} guides`,u=c.find(e=>`${e.source}#${e.heading}`===i)??c[0]??t[0];return(0,O.jsxs)(`section`,{className:`docs-catalog`,id:`docs`,children:[(0,O.jsxs)(`div`,{className:`docs-catalog-header`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsxs)(`label`,{className:`docs-search`,children:[(0,O.jsx)(`span`,{children:`Search docs`}),(0,O.jsx)(`input`,{type:`search`,value:n,onChange:e=>r(e.target.value),placeholder:`Search guides, commands, release, runtime...`})]})]}),(0,O.jsx)(`div`,{className:`docs-paths`,"aria-label":`Recommended reading paths`,children:e.paths.map(e=>(0,O.jsxs)(`button`,{type:`button`,onClick:()=>{let n=t.find(t=>t.title===e.target);n&&a(`${n.source}#${n.heading}`)},children:[(0,O.jsx)(`span`,{children:e.title}),(0,O.jsx)(`strong`,{children:e.target}),(0,O.jsx)(`p`,{children:e.body})]},e.title))}),(0,O.jsxs)(`div`,{className:`docs-catalog-shell`,children:[(0,O.jsxs)(`aside`,{className:`docs-sidebar`,"aria-label":`Documentation catalog`,children:[(0,O.jsx)(`p`,{className:`docs-result-count`,children:l}),s.map((e,t)=>(0,O.jsxs)(`details`,{open:t===0||!!n,children:[(0,O.jsx)(`summary`,{children:e.title}),(0,O.jsx)(`p`,{children:e.description}),(0,O.jsx)(`div`,{className:`docs-sidebar-list`,children:e.items.map(e=>{let t=`${e.source}#${e.heading}`;return(0,O.jsxs)(`button`,{"aria-current":t===i?`true`:void 0,type:`button`,onClick:()=>a(t),children:[(0,O.jsx)(`span`,{children:e.label}),(0,O.jsx)(`strong`,{children:e.title})]},t)})})]},e.title)),s.length===0?(0,O.jsx)(`p`,{className:`docs-empty`,children:`No matching documentation found.`}):null]}),(0,O.jsxs)(`article`,{className:`docs-preview`,children:[(0,O.jsx)(`span`,{children:u?.audience}),(0,O.jsx)(`h2`,{children:u?.title}),(0,O.jsx)(`p`,{children:u?.body}),(0,O.jsxs)(`div`,{className:`docs-next-step`,children:[(0,O.jsx)(`strong`,{children:`Use this when`}),(0,O.jsx)(`p`,{children:u?.useWhen})]})]})]})]})}function De({section:e}){return(0,O.jsx)(`section`,{className:`architecture`,id:`architecture`,"aria-labelledby":`architecture-heading`,children:(0,O.jsxs)(`div`,{className:`architecture-inner`,children:[(0,O.jsx)(Oe,{headingId:`architecture-heading`,section:e}),(0,O.jsx)(ke,{sourceHref:e.sourceHref})]})})}function Oe({headingId:e,section:t}){return(0,O.jsxs)(`div`,{className:`section-copy`,children:[(0,O.jsx)(`p`,{className:`eyebrow`,children:t.eyebrow}),(0,O.jsx)(`h2`,{id:e,children:t.title}),(0,O.jsx)(`p`,{children:t.body})]})}function ke({sourceHref:e}){let t=(0,_.useRef)(null),n=(0,_.useRef)(null),r=(0,_.useRef)(null),i=(0,_.useRef)(null);return(0,_.useEffect)(()=>pe({container:i.current,controls:n.current,sourceLink:r.current,panel:t.current}),[]),(0,O.jsxs)(`div`,{className:`architecture-panel`,ref:t,children:[(0,O.jsxs)(`div`,{className:`architecture-toolbar`,"data-architecture-controls":!0,ref:n,children:[(0,O.jsx)(`a`,{"data-architecture-source":!0,href:e,"aria-label":`Open Mermaid source`,title:`Open Mermaid source`,ref:r,children:`{}`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`zoom-out`,"aria-label":`Zoom out`,title:`Zoom out`,children:`-`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`zoom-in`,"aria-label":`Zoom in`,title:`Zoom in`,children:`+`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`reset`,"aria-label":`Reset layout and view`,title:`Reset layout and view`,children:`↺`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`fullscreen`,"aria-label":`Fullscreen`,title:`Fullscreen`,children:`⛶`})]}),(0,O.jsx)(`div`,{className:`architecture-stage`,"data-architecture-diagram":!0,"aria-live":`polite`,ref:i})]})}function Ae({section:e}){return(0,O.jsxs)(`section`,{className:`workflow`,id:e.id,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`ol`,{children:e.items.map(({label:e,text:t})=>(0,O.jsxs)(`li`,{children:[(0,O.jsx)(`span`,{children:e}),t]},`${e}-${t}`))})]})}(0,v.createRoot)(document.getElementById(`root`)).render((0,O.jsx)(_.StrictMode,{children:(0,O.jsx)(ge,{})}));
|
|
10
|
+
`).map(e=>e.trim()).filter(e=>e!==``&&!e.startsWith(`flowchart`))}function w(e){return e.startsWith(`subgraph `)?oe(e.slice(9).trim()):null}function ie(e){return oe(e)}function ae(e){let t=e.split(`-->`);if(t.length!==2)return null;let n=t[0].trim(),r=t[1].trim();return!se(n)||!se(r)?null:{from:n,to:r}}function oe(e){let t=e.indexOf(`["`);if(t<=0||!e.endsWith(`"]`))return null;let n=e.slice(0,t).trim(),r=e.slice(t+2,-2);return!se(n)||r.length===0?null:{id:n,label:r}}function se(e){return te.test(e)}var ce=`http://www.w3.org/2000/svg`,{groupPadding:le}=y,ue=.55,T=2.4;function E({nodeElement:e,groupElement:t}){return e?`node`:t?`group`:`canvas`}function de(e){let t=e.target.closest?.(`.architecture-node`);if(t)return{nodeElement:t,groupElement:null,dragMode:`node`};let n=e.target.closest?.(`.architecture-group`);return{nodeElement:null,groupElement:n,dragMode:E({nodeElement:null,groupElement:n})}}function fe(e){return e>0?-.1:.1}function pe({container:e,controls:t,sourceLink:n,panel:r}){if(!e||!t)return()=>{};let i={scale:1,defaultScale:1,x:0,defaultX:0,y:0,defaultY:0,isDragging:!1,dragMode:null,activeNodeId:null,activeGroupId:null,dragStartX:0,dragStartY:0,originX:0,originY:0,nodeOriginX:0,nodeOriginY:0,groupOriginX:0,groupOriginY:0,edges:[],edgeLayer:null,groupElements:new Map,groupFrames:new Map,groupNodes:new Map,defaultGroupFrames:new Map,nodeElements:new Map,nodePositions:new Map,nodeDragOrigins:new Map,defaultNodePositions:new Map,viewport:null};function a(e,t={}){let n=document.createElementNS(ce,e);return Object.entries(t).forEach(([e,t])=>{n.setAttribute(e,String(t))}),n}function o(t){let n=ne(t),r=b(n);i.groupElements=new Map,i.nodeElements=new Map;let o=a(`svg`,{role:`img`,"aria-label":`Open Orchestra architecture diagram`,preserveAspectRatio:`xMinYMid meet`,viewBox:`0 0 ${r.width} ${r.height}`}),s=a(`defs`),l=a(`marker`,{id:`architecture-arrow`,viewBox:`0 0 10 10`,refX:`8`,refY:`5`,markerWidth:`6`,markerHeight:`6`,orient:`auto-start-reverse`});l.appendChild(a(`path`,{d:`M 0 0 L 10 5 L 0 10 z`})),s.appendChild(l),o.appendChild(s);let u=a(`g`,{class:`architecture-viewport`}),d=a(`g`,{class:`architecture-edges`}),f=a(`g`,{class:`architecture-groups`}),p=a(`g`,{class:`architecture-nodes`});n.edges.forEach(e=>{d.appendChild(a(`path`,{"data-from":e.from,"data-to":e.to}))}),n.groups.forEach(e=>{let t=a(`g`,{class:`architecture-group`,"data-group-id":e.id});t.appendChild(a(`rect`,{x:e.frame.x,y:e.frame.y,width:e.frame.width,height:e.frame.height,rx:`8`}));let n=a(`text`,{x:e.frame.x+le,y:e.frame.y+24});n.textContent=e.label,t.appendChild(n),f.appendChild(t),i.groupElements.set(e.id,t)}),n.nodes.forEach(e=>{let t=r.positions.get(e.id),n=a(`g`,{class:`architecture-node`,"data-node-id":e.id});n.appendChild(a(`rect`,{x:t.x,y:t.y,width:t.width,height:t.height,rx:`7`}));let o=a(`text`,{x:t.x+t.width/2,y:t.y+t.height/2+5,"text-anchor":`middle`});o.textContent=e.label,n.appendChild(o),p.appendChild(n),i.nodeElements.set(e.id,n)}),u.append(d,f,p),o.appendChild(u),e.replaceChildren(o),i.edges=n.edges,i.edgeLayer=d,i.groupFrames=new Map(n.groups.map(e=>[e.id,{...e.frame}])),i.groupNodes=new Map(n.groups.map(e=>[e.id,[...e.nodes]])),i.defaultGroupFrames=S(i.groupFrames),i.nodePositions=ee(r.positions),i.defaultNodePositions=ee(r.positions),i.viewport=u,m(),c()}function s(){return{scale:1,x:0,y:0}}function c(){let e=s();i.defaultScale=e.scale,i.defaultX=e.x,i.defaultY=e.y,i.scale=e.scale,i.x=e.x,i.y=e.y,l()}function l(){i.viewport&&i.viewport.setAttribute(`transform`,`translate(${i.x} ${i.y}) scale(${i.scale})`)}function u(e){i.scale=Math.min(T,Math.max(ue,i.scale+e)),l()}function d(){i.scale=i.defaultScale,i.x=i.defaultX,i.y=i.defaultY,i.nodePositions=ee(i.defaultNodePositions),i.groupFrames=S(i.defaultGroupFrames),i.groupFrames.forEach((e,t)=>{f(t,e)}),i.nodePositions.forEach((e,t)=>{p(t,e)}),m(),l()}function f(e,t){let n=i.groupElements.get(e),r=n?.querySelector(`rect`),a=n?.querySelector(`text`);!r||!a||(r.setAttribute(`x`,String(t.x)),r.setAttribute(`y`,String(t.y)),r.setAttribute(`width`,String(t.width)),r.setAttribute(`height`,String(t.height)),a.setAttribute(`x`,String(t.x+le)),a.setAttribute(`y`,String(t.y+24)))}function p(e,t){let n=i.nodeElements.get(e),r=n?.querySelector(`rect`),a=n?.querySelector(`text`);!r||!a||(r.setAttribute(`x`,String(t.x)),r.setAttribute(`y`,String(t.y)),a.setAttribute(`x`,String(t.x+t.width/2)),a.setAttribute(`y`,String(t.y+t.height/2+5)))}function m(){i.edgeLayer&&i.edgeLayer.querySelectorAll(`path`).forEach(e=>{let t=i.nodePositions.get(e.dataset.from),n=i.nodePositions.get(e.dataset.to);!t||!n||e.setAttribute(`d`,x(t,n))})}function h(){if(!document.fullscreenElement){r?.requestFullscreen?.();return}document.exitFullscreen?.()}function g(e){let t=e.target.closest(`button`);if(!t)return;let n=t.dataset.action;n===`zoom-in`?u(.15):n===`zoom-out`?u(-.15):n===`reset`?d():n===`fullscreen`&&h()}function _(t){let{nodeElement:n,groupElement:r,dragMode:a}=de(t);if(i.isDragging=!0,i.dragMode=a,i.dragStartX=t.clientX,i.dragStartY=t.clientY,i.originX=i.x,i.originY=i.y,i.activeNodeId=n?.dataset.nodeId??null,i.activeGroupId=r?.dataset.groupId??null,i.activeNodeId){let e=i.nodePositions.get(i.activeNodeId);i.nodeOriginX=e?.x??0,i.nodeOriginY=e?.y??0}if(i.activeGroupId){let e=i.groupFrames.get(i.activeGroupId),t=i.groupNodes.get(i.activeGroupId)??[];i.groupOriginX=e?.x??0,i.groupOriginY=e?.y??0,i.nodeDragOrigins=new Map(t.map(e=>[e,{...i.nodePositions.get(e)}]))}e.setPointerCapture(t.pointerId)}function v(e){if(i.isDragging){if(i.dragMode===`node`&&i.activeNodeId){let t=i.nodePositions.get(i.activeNodeId);if(!t)return;t.x=i.nodeOriginX+(e.clientX-i.dragStartX)/i.scale,t.y=i.nodeOriginY+(e.clientY-i.dragStartY)/i.scale,p(i.activeNodeId,t),m();return}if(i.dragMode===`group`&&i.activeGroupId){let t=i.groupFrames.get(i.activeGroupId);if(!t)return;let n=(e.clientX-i.dragStartX)/i.scale,r=(e.clientY-i.dragStartY)/i.scale;t.x=i.groupOriginX+n,t.y=i.groupOriginY+r,f(i.activeGroupId,t),i.nodeDragOrigins.forEach((e,t)=>{let a=i.nodePositions.get(t);!a||!e||(a.x=e.x+n,a.y=e.y+r,p(t,a))}),m();return}i.x=i.originX+(e.clientX-i.dragStartX)/i.scale,i.y=i.originY+(e.clientY-i.dragStartY)/i.scale,l()}}function y(t){i.isDragging=!1,i.dragMode=null,i.activeNodeId=null,i.activeGroupId=null,i.nodeDragOrigins=new Map,e.hasPointerCapture?.(t.pointerId)&&e.releasePointerCapture(t.pointerId)}function C(e){e.preventDefault(),u(fe(e.deltaY))}async function te(){let e=await fetch(`/architecture.mmd`);if(!e.ok)throw Error(`Architecture Mermaid source could not be loaded.`);let t=await e.text();n?.setAttribute(`href`,`/architecture.mmd`),o(t)}return t.addEventListener(`click`,g),e.addEventListener(`pointerdown`,_),e.addEventListener(`pointermove`,v),e.addEventListener(`pointerup`,y),e.addEventListener(`pointercancel`,y),e.addEventListener(`wheel`,C,{passive:!1}),te().catch(t=>{e.textContent=t.message}),()=>{t.removeEventListener(`click`,g),e.removeEventListener(`pointerdown`,_),e.removeEventListener(`pointermove`,v),e.removeEventListener(`pointerup`,y),e.removeEventListener(`pointercancel`,y),e.removeEventListener(`wheel`,C)}}var me={navLinks:[{href:`/`,label:`Home`},{href:`/docs`,label:`Docs`},{href:`/console`,label:`Web Console`},{href:`/personas`,label:`Personas`},{href:`/architecture`,label:`Architecture`},{href:`/release`,label:`Release`},{href:`/reference`,label:`Reference`},{href:`https://jterrats.dev`,label:`Main site`}],pages:[{path:`/`,label:`Home`,title:`Start with governed local delivery`,sections:[`hero`,`quickstart`,`capabilities`]},{path:`/docs`,label:`Docs`,title:`Documentation map`,sections:[`docsCatalog`]},{path:`/console`,label:`Web Console`,title:`Local web console`,sections:[`consoleGuide`]},{path:`/personas`,label:`Personas`,title:`Work by role`,sections:[`personas`,`workflow`]},{path:`/architecture`,label:`Architecture`,title:`Architecture and system boundaries`,sections:[`architecture`]},{path:`/release`,label:`Release`,title:`Release readiness`,sections:[`releaseGuide`]},{path:`/reference`,label:`Reference`,title:`Command and integration reference`,sections:[`referenceGuide`]}],hero:{eyebrow:`Open Orchestra`,title:`Governed multi-agent delivery with autonomous workflow runs.`,lead:`You already have Claude Code, Codex, or Cursor. The problem is everything around them: prompts drift, context is assembled by hand, handoffs get lost, and "done" means different things every time. Open Orchestra is the governance layer that runs on top of the agents you already use. It sequences PM → PO → Architect → Developer → QA → Release, injects the right context at each phase, enforces human gates where it matters, and leaves a verifiable audit trail. The public CLI is orchestra.`,primary:{label:`View repository`,href:`https://github.com/jterrats/open-orchestra`},secondary:{label:`Start locally`,href:`/docs#quickstart`},metrics:[{label:`phase`,value:`PM to release lifecycle`},{label:`gates`,value:`none, phase, or all`},{label:`runtime`,value:`local-first adapters`},{label:`release`,value:`AC evidence and smoke gates`}],commands:[`orchestra init`,`orchestra task add --id DEMO-001 --title "Ship a governed README update" --owner developer --paths "<files>"`,`orchestra workflow run --task DEMO-001 --gates none`,`orchestra status`]},quickstart:{eyebrow:`Quickstart`,title:`First visible value in minutes`,body:`What happens automatically:`,steps:[{label:`Install`,command:`npm install -g @jterrats/open-orchestra`,description:`Install the published CLI package.`},{label:`Initialize`,command:`orchestra init`,description:`Create local workflow state for the project.`},{label:`Create Work`,command:`orchestra task add --id DEMO-001 --title "Ship a governed README update" --owner developer --paths "<files>"`,description:`Register durable work before implementation starts.`},{label:`Run Workflow`,command:`orchestra workflow run --task DEMO-001 --gates none`,description:`Execute the governed local lifecycle.`},{label:`Inspect Status`,command:`orchestra status`,description:`Inspect active tasks, workflow runs, and gaps.`}]},capabilities:{eyebrow:`Capabilities`,title:`Core product surface`,body:`The public command surface stays small enough to learn quickly while still covering workspace setup, work intake, governed execution, tracker sync, release readiness, and workflow tooling.`,items:[{title:`Workspace`,body:`orchestra init, orchestra health --json, orchestra status.`},{title:`Work intake`,body:`orchestra task add, orchestra task list, orchestra task show.`},{title:`Governed execution`,body:`orchestra workflow run, orchestra decision add, orchestra evidence add, orchestra review.`},{title:`Tracker and release`,body:`orchestra github sync --issue <number>, orchestra release check --json, orchestra upgrade --smoke --json.`},{title:`Workflow tooling`,body:`orchestra workflow phase-plan --task <id>, orchestra refresh --check --json, orchestra cursor canvas status --json.`}]},architecture:{eyebrow:`Architecture`,title:`Local-first control plane`,body:`Open Orchestra is a local-first workflow control plane. The CLI remains the source of truth, while web, VS Code, and agent runtimes use the same workflow files and JSON command contracts. The canonical diagram source is Mermaid so it can be reviewed as text and rendered consistently by GitHub, docs tooling, and the project site.`,sourceHref:`/architecture.mmd`},launch:{eyebrow:`1.0.0 launch`,title:`Production adoption path`,body:`The public path is installable, local-first, and evidence-driven. Use the release matrix before promoting a candidate.`,links:[{title:`Install`,label:`npm`,href:`https://www.npmjs.com/package/@jterrats/open-orchestra`,body:`What happens automatically:`},{title:`Quickstart`,label:`README`,href:`https://github.com/jterrats/open-orchestra#quick-start`,body:`What happens automatically:`},{title:`Release matrix`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/release-test-matrix.md`,body:`The release test matrix is the minimum validation surface for a production 1.0.0 candidate. It is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`},{title:`Runtime adapters`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/runtime-adapters.md`,body:`Open Orchestra uses one adapter catalog for LLM runtimes, IDEs, and CLI agents. The catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`}]},docs:{eyebrow:`Docs`,title:`Documentation map`,body:`Start from the smallest public guide for the workflow you are running. The site content is generated from these docs so public copy stays aligned with the repository.`,links:[{title:`Adoption guide`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/adoption-guide.md`,body:`This guide is the documentation map for teams evaluating or adopting Open Orchestra. Start here, then follow the focused document for the workflow you are running.`},{title:`Core command surface`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/core-command-surface.md`,body:`Open Orchestra exposes many commands because it covers intake, workflow, evidence, runtime adapters, release readiness, and local memory. Product onboarding should not present every command at once. Use this surface to decide what belongs in README, the public site, generated runtime bootstrap text, and full reference docs.`},{title:`E2E test batteries`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/e2e-test-batteries.md`,body:`Open Orchestra needs E2E coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. Unit tests can prove helpers; E2E batteries must prove observable behavior from the public entry points a user or CI runner actually executes.`},{title:`Duplicate-code enforcement`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/duplicate-code-enforcement.md`,body:`Open Orchestra uses jscpd to make the existing DRY and collection-standards rules enforceable in CI.`},{title:`Sonar quality gates`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-quality-gates.md`,body:`Open Orchestra uses Sonar as a repository and SaaS project-quality signal. It does not replace secret scanning or runtime policy enforcement.`},{title:`Sonar architecture model`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-architecture-model.md`,body:`This document defines the intended module boundaries that Sonar architecture analysis should eventually enforce for Open Orchestra. Until Sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`},{title:`Runtime adapters`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/runtime-adapters.md`,body:`Open Orchestra uses one adapter catalog for LLM runtimes, IDEs, and CLI agents. The catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`},{title:`Context vault`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/context-vault.md`,body:`Context vault is the planned workspace catalog for source materials that inform agent work but should not be pasted directly into every prompt. It covers documents, statements of work, PDFs, diagrams, images, audio/video recordings, transcripts, and client reference artifacts.`},{title:`Site content workflow`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/site-content-workflow.md`,body:`The public site is a generated documentation surface. The source of truth stays in versioned documentation, while React renders a compact generated content module.`}]},console:{eyebrow:`Web Console`,title:`Operate workflows from the local browser console`,body:`The web console is a local browser surface for inspecting workflow state, creating tasks, attaching evidence, running or resuming workflows, and reviewing release readiness through the same JSON contracts as the CLI.`,links:[{title:`Web console QA`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/web-console-qa.md`,body:`The web console is a local browser surface for workflow operations. It is not a replacement for the CLI; it consumes the same JSON contracts and should remain usable when a user needs to inspect state, create tasks, attach evidence, run or resume workflows, and review release readiness.`},{title:`Local web console`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/orchestra-mvp.md`,body:`Use the installed CLI form in project documentation and automation:`},{title:`Workflow progress API`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra#quick-start`,body:`The 1.0.0 workflow surface keeps the CLI as the source of truth while making generated files and runtime views easier to audit:`},{title:`Delivery dashboard`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/adoption-guide.md`,body:`Before a production release candidate, run:`}]},consoleGuide:{eyebrow:`Web Console`,title:`Operate workflows without leaving the browser`,body:`Use the local console when you need to inspect tasks, run or resume workflows, attach evidence, review readiness, or recover interrupted state. It uses the same local workflow data as the CLI.`,items:[{label:`Start`,title:`Open the local console`,body:`Run the web console from the project, then use the Overview page to confirm workspace health and the next best action.`},{label:`Work`,title:`Manage tasks and workflow runs`,body:`Create tasks, inspect task detail, start workflows, approve gates, request changes, block gates, and resume approved runs from the Workflow page.`},{label:`Evidence`,title:`Attach proof before release`,body:`Use Evidence to add command output, reports, screenshots, traces, videos, and artifact references that map back to acceptance criteria.`},{label:`Recover`,title:`Resolve interrupted local state`,body:`Use Operations to review stale locks and recovery warnings before making repairs that affect workflow state.`}]},docsCatalog:{eyebrow:`Docs`,title:`Find the right guide for the job`,body:`Use this catalog to choose what to read next. Start with the guided path if you are new, or search by the work you are trying to do: install, run a workflow, validate release evidence, operate the web console, or integrate automation.`,paths:[{title:`First run`,body:`Install the CLI, initialize a workspace, and complete a local workflow without provider credentials.`,target:`Adoption guide`},{title:`Ship safely`,body:`Check acceptance evidence, release readiness, package status, and rollback expectations.`,target:`Release test matrix`},{title:`Operate locally`,body:`Use the browser console to inspect tasks, evidence, workflow runs, recovery state, and settings.`,target:`Web console QA`}],groups:[{title:`Start here`,description:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,audience:`New users`,items:[{title:`Adoption guide`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/adoption-guide.md`,heading:`Open Orchestra 1.0.0 Adoption Guide`,body:`This guide is the documentation map for teams evaluating or adopting Open Orchestra. Start here, then follow the focused document for the workflow you are running.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`adoption guide guide open orchestra 1.0.0 adoption guide this guide is the documentation map for teams evaluating or adopting open orchestra. start here, then follow the focused document for the workflow you are running.`},{title:`Core command surface`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/core-command-surface.md`,heading:`Core Command Surface`,body:`Open Orchestra exposes many commands because it covers intake, workflow, evidence, runtime adapters, release readiness, and local memory. Product onboarding should not present every command at once. Use this surface to decide what belongs in README, the public site, generated runtime bootstrap text, and full reference docs.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`core command surface guide core command surface open orchestra exposes many commands because it covers intake, workflow, evidence, runtime adapters, release readiness, and local memory. product onboarding should not present every command at once. use this surface to decide what belongs in readme, the public site, generated runtime bootstrap text, and full reference docs.`},{title:`E2E test batteries`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/e2e-test-batteries.md`,heading:`End-to-End Test Batteries`,body:`Open Orchestra needs E2E coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. Unit tests can prove helpers; E2E batteries must prove observable behavior from the public entry points a user or CI runner actually executes.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`e2e test batteries guide end-to-end test batteries open orchestra needs e2e coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. unit tests can prove helpers; e2e batteries must prove observable behavior from the public entry points a user or ci runner actually executes.`},{title:`Duplicate-code enforcement`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/duplicate-code-enforcement.md`,heading:`Duplicate-Code Enforcement`,body:`Open Orchestra uses jscpd to make the existing DRY and collection-standards rules enforceable in CI.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`duplicate-code enforcement guide duplicate-code enforcement open orchestra uses jscpd to make the existing dry and collection-standards rules enforceable in ci.`},{title:`Sonar quality gates`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/sonar-quality-gates.md`,heading:`Sonar Quality Gates`,body:`Open Orchestra uses Sonar as a repository and SaaS project-quality signal. It does not replace secret scanning or runtime policy enforcement.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`sonar quality gates guide sonar quality gates open orchestra uses sonar as a repository and saas project-quality signal. it does not replace secret scanning or runtime policy enforcement.`},{title:`Sonar architecture model`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/sonar-architecture-model.md`,heading:`Sonar Architecture Model`,body:`This document defines the intended module boundaries that Sonar architecture analysis should eventually enforce for Open Orchestra. Until Sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`sonar architecture model guide sonar architecture model this document defines the intended module boundaries that sonar architecture analysis should eventually enforce for open orchestra. until sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`},{title:`Runtime adapters`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/runtime-adapters.md`,heading:`Runtime Adapters`,body:`Open Orchestra uses one adapter catalog for LLM runtimes, IDEs, and CLI agents. The catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`runtime adapters guide runtime adapters open orchestra uses one adapter catalog for llm runtimes, ides, and cli agents. the catalog keeps target names, default files, managed-block support, structured payload support, and usage guidance in one place.`},{title:`Context vault`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/context-vault.md`,heading:`Context Vault`,body:`Context vault is the planned workspace catalog for source materials that inform agent work but should not be pasted directly into every prompt. It covers documents, statements of work, PDFs, diagrams, images, audio/video recordings, transcripts, and client reference artifacts.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`context vault guide context vault context vault is the planned workspace catalog for source materials that inform agent work but should not be pasted directly into every prompt. it covers documents, statements of work, pdfs, diagrams, images, audio/video recordings, transcripts, and client reference artifacts.`},{title:`Site content workflow`,label:`New users`,group:`Start here`,audience:`New users`,source:`docs/site-content-workflow.md`,heading:`Public Site Content Workflow`,body:`The public site is a generated documentation surface. The source of truth stays in versioned documentation, while React renders a compact generated content module.`,useWhen:`Use these guides when you are installing Orchestra or learning the first governed workflow.`,keywords:`site content workflow guide public site content workflow the public site is a generated documentation surface. the source of truth stays in versioned documentation, while react renders a compact generated content module.`}]},{title:`Release readiness`,description:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,audience:`Release teams`,items:[{title:`Release test matrix`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`docs/release-test-matrix.md`,heading:`1.0.0 Release Test Matrix`,body:`The release test matrix is the minimum validation surface for a production 1.0.0 candidate. It is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`release test matrix guide 1.0.0 release test matrix the release test matrix is the minimum validation surface for a production 1.0.0 candidate. it is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`},{title:`QA evidence`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`docs/site-content-workflow.md`,heading:`QA Evidence`,body:`For public site or docs-driven content changes, attach evidence for:`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`qa evidence guide qa evidence for public site or docs-driven content changes, attach evidence for:`},{title:`Package naming`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`docs/package-naming.md`,heading:`Package Naming Decision`,body:`Open Orchestra keeps two public names with different meanings:`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`package naming guide package naming decision open orchestra keeps two public names with different meanings:`},{title:`Upgrade dogfooding`,label:`Release teams`,group:`Release readiness`,audience:`Release teams`,source:`README.md`,heading:`Quick Start`,body:`What happens automatically:`,useWhen:`Use this set when you are preparing a candidate, validating evidence, or deciding go/no-go.`,keywords:`upgrade dogfooding guide quick start what happens automatically:`}]},{title:`Web console`,description:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,audience:`Operators`,items:[{title:`Web console QA`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`docs/web-console-qa.md`,heading:`Web Console QA Notes`,body:`The web console is a local browser surface for workflow operations. It is not a replacement for the CLI; it consumes the same JSON contracts and should remain usable when a user needs to inspect state, create tasks, attach evidence, run or resume workflows, and review release readiness.`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`web console qa guide web console qa notes the web console is a local browser surface for workflow operations. it is not a replacement for the cli; it consumes the same json contracts and should remain usable when a user needs to inspect state, create tasks, attach evidence, run or resume workflows, and review release readiness.`},{title:`Local web console`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`docs/orchestra-mvp.md`,heading:`Commands`,body:`Use the installed CLI form in project documentation and automation:`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`local web console guide commands use the installed cli form in project documentation and automation:`},{title:`Workflow progress API`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`README.md`,heading:`1.0.0 Workflow Tooling`,body:`The 1.0.0 workflow surface keeps the CLI as the source of truth while making generated files and runtime views easier to audit:`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`workflow progress api guide 1.0.0 workflow tooling the 1.0.0 workflow surface keeps the cli as the source of truth while making generated files and runtime views easier to audit:`},{title:`Delivery dashboard`,label:`Operators`,group:`Web console`,audience:`Operators`,source:`docs/adoption-guide.md`,heading:`Release Operations`,body:`Before a production release candidate, run:`,useWhen:`Use these notes when operating workflows, evidence, and recovery from the local browser UI.`,keywords:`delivery dashboard guide release operations before a production release candidate, run:`}]},{title:`Automation reference`,description:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,audience:`Integrators`,items:[{title:`Command contracts`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/command-contracts.md`,heading:`Command Contracts`,body:`orchestra commands manifest --json is the supported discovery surface for automation. Entries include command text, required and optional flags, JSON support, surface classification, compatibility status, contract version, exit codes, error shape, and reusable schema/message references.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`command contracts guide command contracts orchestra commands manifest --json is the supported discovery surface for automation. entries include command text, required and optional flags, json support, surface classification, compatibility status, contract version, exit codes, error shape, and reusable schema/message references.`},{title:`Generated artifact APIs`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/generated-artifact-api-catalog.md`,heading:`Generated Artifact API Catalog`,body:`Open Orchestra keeps the human-facing flow small: use orchestra init to create or repair a workspace, and use orchestra refresh to reconcile managed generated artifacts after initialization.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`generated artifact apis guide generated artifact api catalog open orchestra keeps the human-facing flow small: use orchestra init to create or repair a workspace, and use orchestra refresh to reconcile managed generated artifacts after initialization.`},{title:`Runtime LLM flow`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/runtime-llm-flow.md`,heading:`Runtime LLM Flow`,body:`Open Orchestra is the local control plane. The active LLM runtime is the parent agent today.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`runtime llm flow guide runtime llm flow open orchestra is the local control plane. the active llm runtime is the parent agent today.`},{title:`Tracker adapter contract`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/tracker-adapter-contract.md`,heading:`Tracker Adapter Contract`,body:`Open Orchestra currently ships a GitHub-oriented tracker command:`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`tracker adapter contract guide tracker adapter contract open orchestra currently ships a github-oriented tracker command:`},{title:`Source of truth and learning`,label:`Integrators`,group:`Automation reference`,audience:`Integrators`,source:`docs/source-of-truth-and-agent-learning.md`,heading:`Source of Truth and Agent Learning`,body:`Open Orchestra should make context provenance explicit. Agents and subagents should know where to look before acting, and they should record repeatable failure lessons after an action fails.`,useWhen:`Use these references when integrating commands, runtimes, trackers, or governed learning.`,keywords:`source of truth and learning guide source of truth and agent learning open orchestra should make context provenance explicit. agents and subagents should know where to look before acting, and they should record repeatable failure lessons after an action fails.`}]}]},personas:{id:`personas`,eyebrow:`Persona paths`,title:`Use Orchestra by job-to-be-done`,body:`Use these paths when you want to operate Open Orchestra by role instead of learning the full command catalog first. Commands assume the installed CLI form: orchestra.`,items:[{label:`PO`,text:`turn a backlog item into a task that is ready for architecture and delivery.`},{label:`Dev`,text:`implement a scoped task with role handoffs, evidence, and workflow gates.`},{label:`QA`,text:`prove acceptance criteria with traceable evidence and release-ready coverage.`},{label:`TL`,text:`keep parallel work coordinated and reviewable.`},{label:`RM`,text:`decide whether a story or candidate release can ship.`},{label:`TW`,text:`keep public documentation, site copy, command examples, release notes, and help content accurate for the intended audience.`}]},release:{eyebrow:`Release`,title:`Evidence before promotion`,body:`Release decisions depend on acceptance coverage, smoke and rollback evidence, package readiness, documentation review, and unresolved risk visibility.`,links:[{title:`Release test matrix`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/release-test-matrix.md`,body:`The release test matrix is the minimum validation surface for a production 1.0.0 candidate. It is intentionally explicit so release readiness can attach reviewable evidence instead of relying on conversational sign-off.`},{title:`E2E test batteries`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/e2e-test-batteries.md`,body:`Open Orchestra needs E2E coverage that proves installed-user journeys, browser journeys, runtime delegation, and release gates work together. Unit tests can prove helpers; E2E batteries must prove observable behavior from the public entry points a user or CI runner actually executes.`},{title:`Sonar quality gates`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-quality-gates.md`,body:`Open Orchestra uses Sonar as a repository and SaaS project-quality signal. It does not replace secret scanning or runtime policy enforcement.`},{title:`Sonar architecture model`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/sonar-architecture-model.md`,body:`This document defines the intended module boundaries that Sonar architecture analysis should eventually enforce for Open Orchestra. Until Sonar-specific directives are configured, this is the portable source of truth for architecture review, code review, and workflow gate evidence.`},{title:`QA evidence`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/site-content-workflow.md`,body:`For public site or docs-driven content changes, attach evidence for:`},{title:`Package naming`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/package-naming.md`,body:`Open Orchestra keeps two public names with different meanings:`},{title:`Upgrade dogfooding`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra#quick-start`,body:`What happens automatically:`}]},releaseGuide:{eyebrow:`Release`,title:`Decide if the package is ready to promote`,body:`Use this page as the human checklist before publishing or tagging. The goal is to make release decisions evidence-driven instead of relying on conversational approval.`,items:[{label:`1`,title:`Confirm acceptance coverage`,body:`Every accepted story should have evidence tied to its acceptance criteria, including edge cases and known residual risk.`},{label:`2`,title:`Review QA and cross-role sign-off`,body:`QA results should be visible, and BA/Architect review should confirm the tested behavior still matches the story and design intent.`},{label:`3`,title:`Check release readiness`,body:`Run release checks, package build, browser smoke, rollback expectations, and documentation review before a candidate is promoted.`},{label:`4`,title:`Record go/no-go`,body:`Capture the decision, unresolved risks, rollback notes, and post-release monitoring expectations before closing the release task.`}]},reference:{eyebrow:`Reference`,title:`Automation contracts and integration boundaries`,body:`Use these references when automating against the CLI, routing runtimes, integrating trackers, or governing memory and lessons.`,links:[{title:`Command contracts`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/command-contracts.md`,body:`orchestra commands manifest --json is the supported discovery surface for automation. Entries include command text, required and optional flags, JSON support, surface classification, compatibility status, contract version, exit codes, error shape, and reusable schema/message references.`},{title:`Generated artifact APIs`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/generated-artifact-api-catalog.md`,body:`Open Orchestra keeps the human-facing flow small: use orchestra init to create or repair a workspace, and use orchestra refresh to reconcile managed generated artifacts after initialization.`},{title:`Runtime LLM flow`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/runtime-llm-flow.md`,body:`Open Orchestra is the local control plane. The active LLM runtime is the parent agent today.`},{title:`Tracker adapter contract`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/tracker-adapter-contract.md`,body:`Open Orchestra currently ships a GitHub-oriented tracker command:`},{title:`Source of truth and learning`,label:`Guide`,href:`https://github.com/jterrats/open-orchestra/blob/main/docs/source-of-truth-and-agent-learning.md`,body:`Open Orchestra should make context provenance explicit. Agents and subagents should know where to look before acting, and they should record repeatable failure lessons after an action fails.`}]},referenceGuide:{eyebrow:`Reference`,title:`Automation contracts at a glance`,body:`Use this reference when building automation around Orchestra. The site summarizes the stable concepts; the generated command manifest remains the machine-readable contract.`,items:[{label:`Commands`,title:`Discover supported command contracts`,body:`Use the command manifest for public command names, flags, JSON support, compatibility status, exit codes, and reusable schemas.`},{label:`Runtime`,title:`Route work through the active runtime`,body:`Runtime adapters describe how local agents, IDEs, and CLI runtimes receive task context without assuming provider execution.`},{label:`Trackers`,title:`Sync backlog state deliberately`,body:`Tracker integrations should normalize issue metadata, preserve local task history, and avoid closing work before release readiness passes.`},{label:`Learning`,title:`Keep lessons bounded and auditable`,body:`Lessons, prompts, and evidence should be recorded with provenance, redaction, and context limits so future agents can learn without bloating the active prompt.`}]},workflow:{id:`workflow`,eyebrow:`Delivery model`,title:`From story intake to release candidate`,body:`The lifecycle records durable state in .agent-workflow/, routes role handoffs through reviews, and captures evidence needed for release readiness.`,items:[{label:`1`,text:`PM frames scope, priority, and success metrics`},{label:`2`,text:`PO refines acceptance criteria and clarification paths`},{label:`3`,text:`Architect records design handoff and sizing`},{label:`4`,text:`Developer implements with evidence and retry context`},{label:`5`,text:`QA verifies, blocks, or routes issues back to development`},{label:`6`,text:`Release manager prepares summary, gates, and PR evidence`}]}},D=o((e=>{var t=Symbol.for(`react.transitional.element`),n=Symbol.for(`react.fragment`);function r(e,n,r){var i=null;if(r!==void 0&&(i=``+r),n.key!==void 0&&(i=``+n.key),`key`in n)for(var a in r={},n)a!==`key`&&(r[a]=n[a]);else r=n;return n=r.ref,{$$typeof:t,type:e,key:i,ref:n===void 0?null:n,props:r}}e.Fragment=n,e.jsx=r,e.jsxs=r})),O=o(((e,t)=>{t.exports=D()}))(),he={architecture:De,capabilities:Se,console:Ce,consoleGuide:Te,docs:Ce,docsCatalog:Ee,hero:be,launch:ye,personas:Ae,quickstart:xe,reference:Ce,referenceGuide:Te,release:Ce,releaseGuide:Te,workflow:Ae};function ge(){let e=_e();return(0,O.jsxs)(O.Fragment,{children:[(0,O.jsxs)(`nav`,{className:`topbar`,"aria-label":`Primary navigation`,children:[(0,O.jsx)(`a`,{className:`brand`,href:`/`,children:`open-orchestra`}),(0,O.jsx)(`div`,{className:`nav-links`,children:me.navLinks.map(({href:t,label:n})=>(0,O.jsx)(`a`,{"aria-current":t===e.path?`page`:void 0,href:t,children:n},t))})]}),(0,O.jsx)(`main`,{children:e.sections.map(t=>(0,O.jsx)(ve,{id:t},`${e.path}-${t}`))})]})}function _e(){let e=window.location.pathname.endsWith(`/`)&&window.location.pathname!==`/`?window.location.pathname.slice(0,-1):window.location.pathname;return me.pages.find(t=>t.path===e)??me.pages.find(e=>e.path===`/`)}function ve({id:e}){let t=he[e];return t?(0,O.jsx)(t,{section:me[e]}):null}function ye({section:e}){return(0,O.jsxs)(`section`,{className:`launch`,id:`launch`,"aria-label":`1.0 launch readiness`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(we,{links:e.links})]})}function be({section:e}){return(0,O.jsxs)(`section`,{className:`hero`,children:[(0,O.jsxs)(`div`,{className:`hero-copy`,children:[(0,O.jsx)(`p`,{className:`eyebrow`,children:e.eyebrow}),(0,O.jsx)(`h1`,{children:e.title}),(0,O.jsx)(`p`,{className:`lead`,children:e.lead}),(0,O.jsxs)(`div`,{className:`actions`,children:[(0,O.jsx)(`a`,{className:`primary`,href:e.primary.href,children:e.primary.label}),(0,O.jsx)(`a`,{className:`secondary`,href:e.secondary.href,children:e.secondary.label})]})]}),(0,O.jsxs)(`div`,{className:`console`,"aria-label":`Open Orchestra workflow summary`,children:[(0,O.jsxs)(`div`,{className:`console-header`,children:[(0,O.jsx)(`span`,{children:`Autonomous Workflow`}),(0,O.jsx)(`strong`,{children:`orchestra`})]}),(0,O.jsx)(`div`,{className:`metrics`,children:e.metrics.map(({label:e,value:t})=>(0,O.jsxs)(`div`,{children:[(0,O.jsx)(`strong`,{children:e}),(0,O.jsx)(`span`,{children:t})]},e))}),(0,O.jsx)(`ul`,{className:`rows`,children:e.commands.map(e=>(0,O.jsxs)(`li`,{children:[(0,O.jsx)(`code`,{children:`CLI`}),(0,O.jsx)(`span`,{children:e}),(0,O.jsx)(`em`,{children:`public`})]},e))})]})]})}function xe({section:e}){return(0,O.jsxs)(`section`,{className:`quickstart`,id:`quickstart`,"aria-label":`Quickstart`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`div`,{className:`quickstart-grid`,children:e.steps.map(({label:e,command:t,description:n},r)=>(0,O.jsxs)(`article`,{className:`quickstart-step`,children:[(0,O.jsx)(`span`,{children:String(r+1).padStart(2,`0`)}),(0,O.jsx)(`h3`,{children:e}),(0,O.jsx)(`code`,{children:t}),(0,O.jsx)(`p`,{children:n})]},t))})]})}function Se({section:e}){return(0,O.jsxs)(`section`,{className:`capabilities`,id:`capabilities`,"aria-label":`Capabilities`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`div`,{className:`cards`,children:e.items.map(({title:e,body:t})=>(0,O.jsxs)(`article`,{children:[(0,O.jsx)(`h2`,{children:e}),(0,O.jsx)(`p`,{children:t})]},e))})]})}function Ce({section:e}){return(0,O.jsxs)(`section`,{className:`launch`,id:e.eyebrow.toLowerCase(),children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(we,{links:e.links})]})}function we({links:e}){return(0,O.jsx)(`div`,{className:`launch-grid`,children:e.map(({title:e,label:t,href:n,body:r})=>(0,O.jsxs)(`a`,{className:`launch-link`,href:n,children:[(0,O.jsx)(`span`,{children:t}),(0,O.jsx)(`strong`,{children:e}),(0,O.jsx)(`p`,{children:r})]},e))})}function Te({section:e}){return(0,O.jsxs)(`section`,{className:`guide-section`,id:e.eyebrow.toLowerCase(),children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`div`,{className:`guide-grid`,children:e.items.map(({label:e,title:t,body:n})=>(0,O.jsxs)(`article`,{className:`guide-card`,children:[(0,O.jsx)(`span`,{children:e}),(0,O.jsx)(`h3`,{children:t}),(0,O.jsx)(`p`,{children:n})]},t))})]})}function Ee({section:e}){let t=(0,_.useMemo)(()=>e.groups.flatMap(e=>e.items),[e.groups]),[n,r]=(0,_.useState)(``),[i,a]=(0,_.useState)(`${t[0]?.source??``}#${t[0]?.heading??``}`),o=n.trim().toLowerCase(),s=e.groups.map(e=>({...e,items:o?e.items.filter(e=>e.keywords.includes(o)):e.items})).filter(e=>e.items.length>0),c=s.flatMap(e=>e.items),l=c.length===1?`1 guide`:`${c.length} guides`,u=c.find(e=>`${e.source}#${e.heading}`===i)??c[0]??t[0];return(0,O.jsxs)(`section`,{className:`docs-catalog`,id:`docs`,children:[(0,O.jsxs)(`div`,{className:`docs-catalog-header`,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsxs)(`label`,{className:`docs-search`,children:[(0,O.jsx)(`span`,{children:`Search docs`}),(0,O.jsx)(`input`,{type:`search`,value:n,onChange:e=>r(e.target.value),placeholder:`Search guides, commands, release, runtime...`})]})]}),(0,O.jsx)(`div`,{className:`docs-paths`,"aria-label":`Recommended reading paths`,children:e.paths.map(e=>(0,O.jsxs)(`button`,{type:`button`,onClick:()=>{let n=t.find(t=>t.title===e.target);n&&a(`${n.source}#${n.heading}`)},children:[(0,O.jsx)(`span`,{children:e.title}),(0,O.jsx)(`strong`,{children:e.target}),(0,O.jsx)(`p`,{children:e.body})]},e.title))}),(0,O.jsxs)(`div`,{className:`docs-catalog-shell`,children:[(0,O.jsxs)(`aside`,{className:`docs-sidebar`,"aria-label":`Documentation catalog`,children:[(0,O.jsx)(`p`,{className:`docs-result-count`,children:l}),s.map((e,t)=>(0,O.jsxs)(`details`,{open:t===0||!!n,children:[(0,O.jsx)(`summary`,{children:e.title}),(0,O.jsx)(`p`,{children:e.description}),(0,O.jsx)(`div`,{className:`docs-sidebar-list`,children:e.items.map(e=>{let t=`${e.source}#${e.heading}`;return(0,O.jsxs)(`button`,{"aria-current":t===i?`true`:void 0,type:`button`,onClick:()=>a(t),children:[(0,O.jsx)(`span`,{children:e.label}),(0,O.jsx)(`strong`,{children:e.title})]},t)})})]},e.title)),s.length===0?(0,O.jsx)(`p`,{className:`docs-empty`,children:`No matching documentation found.`}):null]}),(0,O.jsxs)(`article`,{className:`docs-preview`,children:[(0,O.jsx)(`span`,{children:u?.audience}),(0,O.jsx)(`h2`,{children:u?.title}),(0,O.jsx)(`p`,{children:u?.body}),(0,O.jsxs)(`div`,{className:`docs-next-step`,children:[(0,O.jsx)(`strong`,{children:`Use this when`}),(0,O.jsx)(`p`,{children:u?.useWhen})]})]})]})]})}function De({section:e}){return(0,O.jsx)(`section`,{className:`architecture`,id:`architecture`,"aria-labelledby":`architecture-heading`,children:(0,O.jsxs)(`div`,{className:`architecture-inner`,children:[(0,O.jsx)(Oe,{headingId:`architecture-heading`,section:e}),(0,O.jsx)(ke,{sourceHref:e.sourceHref})]})})}function Oe({headingId:e,section:t}){return(0,O.jsxs)(`div`,{className:`section-copy`,children:[(0,O.jsx)(`p`,{className:`eyebrow`,children:t.eyebrow}),(0,O.jsx)(`h2`,{id:e,children:t.title}),(0,O.jsx)(`p`,{children:t.body})]})}function ke({sourceHref:e}){let t=(0,_.useRef)(null),n=(0,_.useRef)(null),r=(0,_.useRef)(null),i=(0,_.useRef)(null);return(0,_.useEffect)(()=>pe({container:i.current,controls:n.current,sourceLink:r.current,panel:t.current}),[]),(0,O.jsxs)(`div`,{className:`architecture-panel`,ref:t,children:[(0,O.jsxs)(`div`,{className:`architecture-toolbar`,"data-architecture-controls":!0,ref:n,children:[(0,O.jsx)(`a`,{"data-architecture-source":!0,href:e,"aria-label":`Open Mermaid source`,title:`Open Mermaid source`,ref:r,children:`{}`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`zoom-out`,"aria-label":`Zoom out`,title:`Zoom out`,children:`-`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`zoom-in`,"aria-label":`Zoom in`,title:`Zoom in`,children:`+`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`reset`,"aria-label":`Reset layout and view`,title:`Reset layout and view`,children:`↺`}),(0,O.jsx)(`button`,{type:`button`,"data-action":`fullscreen`,"aria-label":`Fullscreen`,title:`Fullscreen`,children:`⛶`})]}),(0,O.jsx)(`div`,{className:`architecture-stage`,"data-architecture-diagram":!0,"aria-live":`polite`,ref:i})]})}function Ae({section:e}){return(0,O.jsxs)(`section`,{className:`workflow`,id:e.id,children:[(0,O.jsx)(Oe,{section:e}),(0,O.jsx)(`ol`,{children:e.items.map(({label:e,text:t})=>(0,O.jsxs)(`li`,{children:[(0,O.jsx)(`span`,{children:e}),t]},`${e}-${t}`))})]})}(0,v.createRoot)(document.getElementById(`root`)).render((0,O.jsx)(_.StrictMode,{children:(0,O.jsx)(ge,{})}));
|