zora-agent 0.9.4 → 0.9.6

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.
Files changed (245) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +103 -92
  3. package/dist/cli/audit-commands.d.ts.map +1 -1
  4. package/dist/cli/audit-commands.js +3 -1
  5. package/dist/cli/audit-commands.js.map +1 -1
  6. package/dist/cli/daemon.js +86 -28
  7. package/dist/cli/daemon.js.map +1 -1
  8. package/dist/cli/edit-commands.d.ts.map +1 -1
  9. package/dist/cli/edit-commands.js +3 -1
  10. package/dist/cli/edit-commands.js.map +1 -1
  11. package/dist/cli/hook-commands.d.ts +9 -0
  12. package/dist/cli/hook-commands.d.ts.map +1 -0
  13. package/dist/cli/hook-commands.js +106 -0
  14. package/dist/cli/hook-commands.js.map +1 -0
  15. package/dist/cli/index.js +87 -35
  16. package/dist/cli/index.js.map +1 -1
  17. package/dist/cli/init-command.d.ts.map +1 -1
  18. package/dist/cli/init-command.js +108 -9
  19. package/dist/cli/init-command.js.map +1 -1
  20. package/dist/cli/memory-commands.d.ts +1 -1
  21. package/dist/cli/memory-commands.d.ts.map +1 -1
  22. package/dist/cli/memory-commands.js +213 -1
  23. package/dist/cli/memory-commands.js.map +1 -1
  24. package/dist/cli/presets.d.ts.map +1 -1
  25. package/dist/cli/presets.js +2 -1
  26. package/dist/cli/presets.js.map +1 -1
  27. package/dist/cli/skill-commands.d.ts.map +1 -1
  28. package/dist/cli/skill-commands.js +4 -2
  29. package/dist/cli/skill-commands.js.map +1 -1
  30. package/dist/cli/steer-commands.d.ts.map +1 -1
  31. package/dist/cli/steer-commands.js +6 -4
  32. package/dist/cli/steer-commands.js.map +1 -1
  33. package/dist/cli/team-commands.d.ts.map +1 -1
  34. package/dist/cli/team-commands.js +3 -1
  35. package/dist/cli/team-commands.js.map +1 -1
  36. package/dist/config/defaults.d.ts.map +1 -1
  37. package/dist/config/defaults.js +12 -2
  38. package/dist/config/defaults.js.map +1 -1
  39. package/dist/config/loader.d.ts +23 -0
  40. package/dist/config/loader.d.ts.map +1 -1
  41. package/dist/config/loader.js +64 -3
  42. package/dist/config/loader.js.map +1 -1
  43. package/dist/config/policy-loader.d.ts +14 -0
  44. package/dist/config/policy-loader.d.ts.map +1 -1
  45. package/dist/config/policy-loader.js +33 -0
  46. package/dist/config/policy-loader.js.map +1 -1
  47. package/dist/dashboard/frontend/dist/assets/index-BcOGj1EF.css +1 -0
  48. package/dist/dashboard/frontend/dist/assets/index-BtiFO9YN.js +261 -0
  49. package/dist/dashboard/frontend/dist/assets/index-Cfjy5acU.css +1 -0
  50. package/dist/dashboard/frontend/dist/assets/index-D41hcjgc.js +253 -0
  51. package/dist/dashboard/frontend/dist/assets/index-D83BawFd.css +1 -0
  52. package/dist/dashboard/frontend/dist/assets/index-DAODjoxu.css +1 -0
  53. package/dist/dashboard/frontend/dist/assets/index-DB-Eu5oV.js +253 -0
  54. package/dist/dashboard/frontend/dist/assets/index-W0VVEDu6.js +253 -0
  55. package/dist/dashboard/frontend/dist/index.html +17 -0
  56. package/dist/dashboard/server.d.ts +19 -2
  57. package/dist/dashboard/server.d.ts.map +1 -1
  58. package/dist/dashboard/server.js +121 -20
  59. package/dist/dashboard/server.js.map +1 -1
  60. package/dist/hooks/hook-runner.d.ts +55 -0
  61. package/dist/hooks/hook-runner.d.ts.map +1 -0
  62. package/dist/hooks/hook-runner.js +120 -0
  63. package/dist/hooks/hook-runner.js.map +1 -0
  64. package/dist/hooks/hook-types.d.ts +82 -0
  65. package/dist/hooks/hook-types.d.ts.map +1 -0
  66. package/dist/hooks/hook-types.js +20 -0
  67. package/dist/hooks/hook-types.js.map +1 -0
  68. package/dist/hooks/index.d.ts +6 -0
  69. package/dist/hooks/index.d.ts.map +1 -0
  70. package/dist/hooks/index.js +6 -0
  71. package/dist/hooks/index.js.map +1 -0
  72. package/dist/memory/context-compressor.d.ts +108 -0
  73. package/dist/memory/context-compressor.d.ts.map +1 -0
  74. package/dist/memory/context-compressor.js +307 -0
  75. package/dist/memory/context-compressor.js.map +1 -0
  76. package/dist/memory/index.d.ts +1 -0
  77. package/dist/memory/index.d.ts.map +1 -1
  78. package/dist/memory/index.js +1 -0
  79. package/dist/memory/index.js.map +1 -1
  80. package/dist/memory/memory-manager.d.ts +88 -4
  81. package/dist/memory/memory-manager.d.ts.map +1 -1
  82. package/dist/memory/memory-manager.js +299 -7
  83. package/dist/memory/memory-manager.js.map +1 -1
  84. package/dist/memory/observation-store.d.ts +75 -0
  85. package/dist/memory/observation-store.d.ts.map +1 -0
  86. package/dist/memory/observation-store.js +162 -0
  87. package/dist/memory/observation-store.js.map +1 -0
  88. package/dist/memory/observer-worker.d.ts +34 -0
  89. package/dist/memory/observer-worker.d.ts.map +1 -0
  90. package/dist/memory/observer-worker.js +161 -0
  91. package/dist/memory/observer-worker.js.map +1 -0
  92. package/dist/memory/reflector-worker.d.ts +40 -0
  93. package/dist/memory/reflector-worker.d.ts.map +1 -0
  94. package/dist/memory/reflector-worker.js +185 -0
  95. package/dist/memory/reflector-worker.js.map +1 -0
  96. package/dist/memory/salience-scorer.d.ts +16 -6
  97. package/dist/memory/salience-scorer.d.ts.map +1 -1
  98. package/dist/memory/salience-scorer.js +42 -22
  99. package/dist/memory/salience-scorer.js.map +1 -1
  100. package/dist/memory/structured-memory.d.ts +36 -1
  101. package/dist/memory/structured-memory.d.ts.map +1 -1
  102. package/dist/memory/structured-memory.js +207 -8
  103. package/dist/memory/structured-memory.js.map +1 -1
  104. package/dist/memory/token-estimator.d.ts +31 -0
  105. package/dist/memory/token-estimator.d.ts.map +1 -0
  106. package/dist/memory/token-estimator.js +77 -0
  107. package/dist/memory/token-estimator.js.map +1 -0
  108. package/dist/memory/validation-pipeline.d.ts +37 -0
  109. package/dist/memory/validation-pipeline.d.ts.map +1 -0
  110. package/dist/memory/validation-pipeline.js +106 -0
  111. package/dist/memory/validation-pipeline.js.map +1 -0
  112. package/dist/orchestrator/auth-monitor.d.ts.map +1 -1
  113. package/dist/orchestrator/auth-monitor.js +3 -1
  114. package/dist/orchestrator/auth-monitor.js.map +1 -1
  115. package/dist/orchestrator/execution-loop.d.ts +23 -0
  116. package/dist/orchestrator/execution-loop.d.ts.map +1 -1
  117. package/dist/orchestrator/execution-loop.js +60 -19
  118. package/dist/orchestrator/execution-loop.js.map +1 -1
  119. package/dist/orchestrator/failover-controller.d.ts +26 -2
  120. package/dist/orchestrator/failover-controller.d.ts.map +1 -1
  121. package/dist/orchestrator/failover-controller.js +143 -23
  122. package/dist/orchestrator/failover-controller.js.map +1 -1
  123. package/dist/orchestrator/orchestrator.d.ts +70 -7
  124. package/dist/orchestrator/orchestrator.d.ts.map +1 -1
  125. package/dist/orchestrator/orchestrator.js +416 -92
  126. package/dist/orchestrator/orchestrator.js.map +1 -1
  127. package/dist/orchestrator/retry-queue.d.ts.map +1 -1
  128. package/dist/orchestrator/retry-queue.js +24 -9
  129. package/dist/orchestrator/retry-queue.js.map +1 -1
  130. package/dist/orchestrator/router.d.ts +16 -1
  131. package/dist/orchestrator/router.d.ts.map +1 -1
  132. package/dist/orchestrator/router.js +79 -20
  133. package/dist/orchestrator/router.js.map +1 -1
  134. package/dist/orchestrator/session-manager.d.ts +26 -1
  135. package/dist/orchestrator/session-manager.d.ts.map +1 -1
  136. package/dist/orchestrator/session-manager.js +88 -4
  137. package/dist/orchestrator/session-manager.js.map +1 -1
  138. package/dist/providers/circuit-breaker.d.ts +78 -0
  139. package/dist/providers/circuit-breaker.d.ts.map +1 -0
  140. package/dist/providers/circuit-breaker.js +129 -0
  141. package/dist/providers/circuit-breaker.js.map +1 -0
  142. package/dist/providers/claude-provider.d.ts +27 -11
  143. package/dist/providers/claude-provider.d.ts.map +1 -1
  144. package/dist/providers/claude-provider.js +161 -46
  145. package/dist/providers/claude-provider.js.map +1 -1
  146. package/dist/providers/gemini-provider.d.ts +9 -1
  147. package/dist/providers/gemini-provider.d.ts.map +1 -1
  148. package/dist/providers/gemini-provider.js +97 -48
  149. package/dist/providers/gemini-provider.js.map +1 -1
  150. package/dist/providers/index.d.ts +1 -0
  151. package/dist/providers/index.d.ts.map +1 -1
  152. package/dist/providers/index.js +1 -0
  153. package/dist/providers/index.js.map +1 -1
  154. package/dist/providers/ollama-provider.d.ts +7 -0
  155. package/dist/providers/ollama-provider.d.ts.map +1 -1
  156. package/dist/providers/ollama-provider.js +89 -18
  157. package/dist/providers/ollama-provider.js.map +1 -1
  158. package/dist/routines/heartbeat.d.ts +10 -2
  159. package/dist/routines/heartbeat.d.ts.map +1 -1
  160. package/dist/routines/heartbeat.js +42 -5
  161. package/dist/routines/heartbeat.js.map +1 -1
  162. package/dist/routines/routine-manager.d.ts.map +1 -1
  163. package/dist/routines/routine-manager.js +22 -15
  164. package/dist/routines/routine-manager.js.map +1 -1
  165. package/dist/security/audit-logger.d.ts.map +1 -1
  166. package/dist/security/audit-logger.js +5 -7
  167. package/dist/security/audit-logger.js.map +1 -1
  168. package/dist/security/policy-engine.d.ts +28 -17
  169. package/dist/security/policy-engine.d.ts.map +1 -1
  170. package/dist/security/policy-engine.js +42 -185
  171. package/dist/security/policy-engine.js.map +1 -1
  172. package/dist/security/policy-serializer.d.ts +19 -0
  173. package/dist/security/policy-serializer.d.ts.map +1 -0
  174. package/dist/security/policy-serializer.js +100 -0
  175. package/dist/security/policy-serializer.js.map +1 -0
  176. package/dist/security/shell-validator.d.ts +42 -0
  177. package/dist/security/shell-validator.d.ts.map +1 -0
  178. package/dist/security/shell-validator.js +231 -0
  179. package/dist/security/shell-validator.js.map +1 -0
  180. package/dist/skills/index.d.ts +1 -0
  181. package/dist/skills/index.d.ts.map +1 -1
  182. package/dist/skills/index.js +1 -0
  183. package/dist/skills/index.js.map +1 -1
  184. package/dist/skills/skill-loader.d.ts +38 -2
  185. package/dist/skills/skill-loader.d.ts.map +1 -1
  186. package/dist/skills/skill-loader.js +83 -2
  187. package/dist/skills/skill-loader.js.map +1 -1
  188. package/dist/skills/subagent-loader.d.ts +66 -0
  189. package/dist/skills/subagent-loader.d.ts.map +1 -0
  190. package/dist/skills/subagent-loader.js +143 -0
  191. package/dist/skills/subagent-loader.js.map +1 -0
  192. package/dist/steering/flag-manager.d.ts +20 -0
  193. package/dist/steering/flag-manager.d.ts.map +1 -1
  194. package/dist/steering/flag-manager.js +94 -11
  195. package/dist/steering/flag-manager.js.map +1 -1
  196. package/dist/steering/steering-manager.d.ts +11 -0
  197. package/dist/steering/steering-manager.d.ts.map +1 -1
  198. package/dist/steering/steering-manager.js +23 -0
  199. package/dist/steering/steering-manager.js.map +1 -1
  200. package/dist/steering/telegram-gateway.d.ts +4 -1
  201. package/dist/steering/telegram-gateway.d.ts.map +1 -1
  202. package/dist/steering/telegram-gateway.js +49 -10
  203. package/dist/steering/telegram-gateway.js.map +1 -1
  204. package/dist/teams/bridge-watchdog.d.ts.map +1 -1
  205. package/dist/teams/bridge-watchdog.js +5 -3
  206. package/dist/teams/bridge-watchdog.js.map +1 -1
  207. package/dist/teams/gemini-bridge.d.ts.map +1 -1
  208. package/dist/teams/gemini-bridge.js +9 -4
  209. package/dist/teams/gemini-bridge.js.map +1 -1
  210. package/dist/tools/index.d.ts +2 -0
  211. package/dist/tools/index.d.ts.map +1 -1
  212. package/dist/tools/index.js +2 -0
  213. package/dist/tools/index.js.map +1 -1
  214. package/dist/tools/memory-tools.d.ts +16 -0
  215. package/dist/tools/memory-tools.d.ts.map +1 -0
  216. package/dist/tools/memory-tools.js +207 -0
  217. package/dist/tools/memory-tools.js.map +1 -0
  218. package/dist/tools/notifications.d.ts.map +1 -1
  219. package/dist/tools/notifications.js +3 -1
  220. package/dist/tools/notifications.js.map +1 -1
  221. package/dist/tools/tool-factory.d.ts +36 -0
  222. package/dist/tools/tool-factory.d.ts.map +1 -0
  223. package/dist/tools/tool-factory.js +55 -0
  224. package/dist/tools/tool-factory.js.map +1 -0
  225. package/dist/types.d.ts +205 -1
  226. package/dist/types.d.ts.map +1 -1
  227. package/dist/types.js +47 -1
  228. package/dist/types.js.map +1 -1
  229. package/dist/utils/errors.d.ts +21 -0
  230. package/dist/utils/errors.d.ts.map +1 -0
  231. package/dist/utils/errors.js +29 -0
  232. package/dist/utils/errors.js.map +1 -0
  233. package/dist/utils/event-filter.d.ts +25 -0
  234. package/dist/utils/event-filter.d.ts.map +1 -0
  235. package/dist/utils/event-filter.js +61 -0
  236. package/dist/utils/event-filter.js.map +1 -0
  237. package/dist/utils/logger.d.ts +33 -36
  238. package/dist/utils/logger.d.ts.map +1 -1
  239. package/dist/utils/logger.js +60 -130
  240. package/dist/utils/logger.js.map +1 -1
  241. package/dist/utils/validate-job-id.d.ts +6 -0
  242. package/dist/utils/validate-job-id.d.ts.map +1 -0
  243. package/dist/utils/validate-job-id.js +10 -0
  244. package/dist/utils/validate-job-id.js.map +1 -0
  245. package/package.json +12 -3
@@ -0,0 +1,253 @@
1
+ (function(){const i=document.createElement("link").relList;if(i&&i.supports&&i.supports("modulepreload"))return;for(const f of document.querySelectorAll('link[rel="modulepreload"]'))u(f);new MutationObserver(f=>{for(const p of f)if(p.type==="childList")for(const h of p.addedNodes)h.tagName==="LINK"&&h.rel==="modulepreload"&&u(h)}).observe(document,{childList:!0,subtree:!0});function l(f){const p={};return f.integrity&&(p.integrity=f.integrity),f.referrerPolicy&&(p.referrerPolicy=f.referrerPolicy),f.crossOrigin==="use-credentials"?p.credentials="include":f.crossOrigin==="anonymous"?p.credentials="omit":p.credentials="same-origin",p}function u(f){if(f.ep)return;f.ep=!0;const p=l(f);fetch(f.href,p)}})();function GD(o){return o&&o.__esModule&&Object.prototype.hasOwnProperty.call(o,"default")?o.default:o}var xy={exports:{}},cd={},wy={exports:{}},wu={exports:{}};wu.exports;var ZE;function UM(){return ZE||(ZE=1,(function(o,i){(function(){function l(S,U){Object.defineProperty(p.prototype,S,{get:function(){console.warn("%s(...) is deprecated in plain JavaScript React classes. %s",U[0],U[1])}})}function u(S){return S===null||typeof S!="object"?null:(S=Es&&S[Es]||S["@@iterator"],typeof S=="function"?S:null)}function f(S,U){S=(S=S.constructor)&&(S.displayName||S.name)||"ReactClass";var X=S+"."+U;Ai[X]||(console.error("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",U,S),Ai[X]=!0)}function p(S,U,X){this.props=S,this.context=U,this.refs=Fe,this.updater=X||Di}function h(){}function m(S,U,X){this.props=S,this.context=U,this.refs=Fe,this.updater=X||Di}function v(){}function E(S){return""+S}function b(S){try{E(S);var U=!1}catch{U=!0}if(U){U=console;var X=U.error,J=typeof Symbol=="function"&&Symbol.toStringTag&&S[Symbol.toStringTag]||S.constructor.name||"Object";return X.call(U,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",J),E(S)}}function A(S){if(S==null)return null;if(typeof S=="function")return S.$$typeof===Pd?null:S.displayName||S.name||null;if(typeof S=="string")return S;switch(S){case C:return"Fragment";case me:return"Profiler";case Q:return"StrictMode";case we:return"Suspense";case Vt:return"SuspenseList";case se:return"Activity"}if(typeof S=="object")switch(typeof S.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),S.$$typeof){case Be:return"Portal";case tt:return S.displayName||"Context";case re:return(S._context.displayName||"Context")+".Consumer";case Bn:var U=S.render;return S=S.displayName,S||(S=U.displayName||U.name||"",S=S!==""?"ForwardRef("+S+")":"ForwardRef"),S;case Qt:return U=S.displayName||null,U!==null?U:A(S.type)||"Memo";case oa:U=S._payload,S=S._init;try{return A(S(U))}catch{}}return null}function T(S){if(S===C)return"<>";if(typeof S=="object"&&S!==null&&S.$$typeof===oa)return"<...>";try{var U=A(S);return U?"<"+U+">":"<...>"}catch{return"<...>"}}function R(){var S=ue.A;return S===null?null:S.getOwner()}function D(){return Error("react-stack-top-frame")}function j(S){if(Ds.call(S,"key")){var U=Object.getOwnPropertyDescriptor(S,"key").get;if(U&&U.isReactWarning)return!1}return S.key!==void 0}function z(S,U){function X(){Ri||(Ri=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",U))}X.isReactWarning=!0,Object.defineProperty(S,"key",{get:X,configurable:!0})}function k(){var S=A(this.type);return Qu[S]||(Qu[S]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),S=this.props.ref,S!==void 0?S:null}function $(S,U,X,J,de,Oe){var pe=X.ref;return S={$$typeof:xe,type:S,key:U,props:X,_owner:J},(pe!==void 0?pe:null)!==null?Object.defineProperty(S,"ref",{enumerable:!1,get:k}):Object.defineProperty(S,"ref",{enumerable:!1,value:null}),S._store={},Object.defineProperty(S._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(S,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(S,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:de}),Object.defineProperty(S,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:Oe}),Object.freeze&&(Object.freeze(S.props),Object.freeze(S)),S}function Y(S,U){return U=$(S.type,U,S.props,S._owner,S._debugStack,S._debugTask),S._store&&(U._store.validated=S._store.validated),U}function I(S){Z(S)?S._store&&(S._store.validated=1):typeof S=="object"&&S!==null&&S.$$typeof===oa&&(S._payload.status==="fulfilled"?Z(S._payload.value)&&S._payload.value._store&&(S._payload.value._store.validated=1):S._store&&(S._store.validated=1))}function Z(S){return typeof S=="object"&&S!==null&&S.$$typeof===xe}function Te(S){var U={"=":"=0",":":"=2"};return"$"+S.replace(/[=:]/g,function(X){return U[X]})}function ve(S,U){return typeof S=="object"&&S!==null&&S.key!=null?(b(S.key),Te(""+S.key)):U.toString(36)}function W(S){switch(S.status){case"fulfilled":return S.value;case"rejected":throw S.reason;default:switch(typeof S.status=="string"?S.then(v,v):(S.status="pending",S.then(function(U){S.status==="pending"&&(S.status="fulfilled",S.value=U)},function(U){S.status==="pending"&&(S.status="rejected",S.reason=U)})),S.status){case"fulfilled":return S.value;case"rejected":throw S.reason}}throw S}function ce(S,U,X,J,de){var Oe=typeof S;(Oe==="undefined"||Oe==="boolean")&&(S=null);var pe=!1;if(S===null)pe=!0;else switch(Oe){case"bigint":case"string":case"number":pe=!0;break;case"object":switch(S.$$typeof){case xe:case Be:pe=!0;break;case oa:return pe=S._init,ce(pe(S._payload),U,X,J,de)}}if(pe){pe=S,de=de(pe);var Ge=J===""?"."+ve(pe,0):J;return As(de)?(X="",Ge!=null&&(X=Ge.replace(Zu,"$&/")+"/"),ce(de,U,X,"",function(tn){return tn})):de!=null&&(Z(de)&&(de.key!=null&&(pe&&pe.key===de.key||b(de.key)),X=Y(de,X+(de.key==null||pe&&pe.key===de.key?"":(""+de.key).replace(Zu,"$&/")+"/")+Ge),J!==""&&pe!=null&&Z(pe)&&pe.key==null&&pe._store&&!pe._store.validated&&(X._store.validated=2),de=X),U.push(de)),1}if(pe=0,Ge=J===""?".":J+":",As(S))for(var Ce=0;Ce<S.length;Ce++)J=S[Ce],Oe=Ge+ve(J,Ce),pe+=ce(J,U,X,Oe,de);else if(Ce=u(S),typeof Ce=="function")for(Ce===S.entries&&(Mo||console.warn("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),Mo=!0),S=Ce.call(S),Ce=0;!(J=S.next()).done;)J=J.value,Oe=Ge+ve(J,Ce++),pe+=ce(J,U,X,Oe,de);else if(Oe==="object"){if(typeof S.then=="function")return ce(W(S),U,X,J,de);throw U=String(S),Error("Objects are not valid as a React child (found: "+(U==="[object Object]"?"object with keys {"+Object.keys(S).join(", ")+"}":U)+"). If you meant to render a collection of children, use an array instead.")}return pe}function F(S,U,X){if(S==null)return S;var J=[],de=0;return ce(S,J,"","",function(Oe){return U.call(X,Oe,de++)}),J}function Xe(S){if(S._status===-1){var U=S._ioInfo;U!=null&&(U.start=U.end=performance.now()),U=S._result;var X=U();if(X.then(function(de){if(S._status===0||S._status===-1){S._status=1,S._result=de;var Oe=S._ioInfo;Oe!=null&&(Oe.end=performance.now()),X.status===void 0&&(X.status="fulfilled",X.value=de)}},function(de){if(S._status===0||S._status===-1){S._status=2,S._result=de;var Oe=S._ioInfo;Oe!=null&&(Oe.end=performance.now()),X.status===void 0&&(X.status="rejected",X.reason=de)}}),U=S._ioInfo,U!=null){U.value=X;var J=X.displayName;typeof J=="string"&&(U.name=J)}S._status===-1&&(S._status=0,S._result=X)}if(S._status===1)return U=S._result,U===void 0&&console.error(`lazy: Expected the result of a dynamic import() call. Instead received: %s
2
+
3
+ Your code should look like:
4
+ const MyComponent = lazy(() => import('./MyComponent'))
5
+
6
+ Did you accidentally put curly braces around the import?`,U),"default"in U||console.error(`lazy: Expected the result of a dynamic import() call. Instead received: %s
7
+
8
+ Your code should look like:
9
+ const MyComponent = lazy(() => import('./MyComponent'))`,U),U.default;throw S._result}function fe(){var S=ue.H;return S===null&&console.error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
10
+ 1. You might have mismatching versions of React and the renderer (such as React DOM)
11
+ 2. You might be breaking the Rules of Hooks
12
+ 3. You might have more than one copy of React in the same app
13
+ See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`),S}function be(){ue.asyncTransitions--}function Ze(S){if(xi===null)try{var U=("require"+Math.random()).slice(0,7);xi=(o&&o[U]).call(o,"timers").setImmediate}catch{xi=function(J){Qr===!1&&(Qr=!0,typeof MessageChannel>"u"&&console.error("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."));var de=new MessageChannel;de.port1.onmessage=J,de.port2.postMessage(void 0)}}return xi(S)}function lt(S){return 1<S.length&&typeof AggregateError=="function"?new AggregateError(S):S[0]}function G(S,U){U!==_o-1&&console.error("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "),_o=U}function ae(S,U,X){var J=ue.actQueue;if(J!==null)if(J.length!==0)try{ie(J),Ze(function(){return ae(S,U,X)});return}catch(de){ue.thrownErrors.push(de)}else ue.actQueue=null;0<ue.thrownErrors.length?(J=lt(ue.thrownErrors),ue.thrownErrors.length=0,X(J)):U(S)}function ie(S){if(!Rs){Rs=!0;var U=0;try{for(;U<S.length;U++){var X=S[U];do{ue.didUsePromise=!1;var J=X(!1);if(J!==null){if(ue.didUsePromise){S[U]=X,S.splice(0,U);return}X=J}else break}while(!0)}S.length=0}catch(de){S.splice(0,U+1),ue.thrownErrors.push(de)}finally{Rs=!1}}}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var xe=Symbol.for("react.transitional.element"),Be=Symbol.for("react.portal"),C=Symbol.for("react.fragment"),Q=Symbol.for("react.strict_mode"),me=Symbol.for("react.profiler"),re=Symbol.for("react.consumer"),tt=Symbol.for("react.context"),Bn=Symbol.for("react.forward_ref"),we=Symbol.for("react.suspense"),Vt=Symbol.for("react.suspense_list"),Qt=Symbol.for("react.memo"),oa=Symbol.for("react.lazy"),se=Symbol.for("react.activity"),Es=Symbol.iterator,Ai={},Di={isMounted:function(){return!1},enqueueForceUpdate:function(S){f(S,"forceUpdate")},enqueueReplaceState:function(S){f(S,"replaceState")},enqueueSetState:function(S){f(S,"setState")}},Oo=Object.assign,Fe={};Object.freeze(Fe),p.prototype.isReactComponent={},p.prototype.setState=function(S,U){if(typeof S!="object"&&typeof S!="function"&&S!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,S,U,"setState")},p.prototype.forceUpdate=function(S){this.updater.enqueueForceUpdate(this,S,"forceUpdate")};var Zt={isMounted:["isMounted","Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."],replaceState:["replaceState","Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."]};for(No in Zt)Zt.hasOwnProperty(No)&&l(No,Zt[No]);h.prototype=p.prototype,Zt=m.prototype=new h,Zt.constructor=m,Oo(Zt,p.prototype),Zt.isPureReactComponent=!0;var As=Array.isArray,Pd=Symbol.for("react.client.reference"),ue={H:null,A:null,T:null,S:null,actQueue:null,asyncTransitions:0,isBatchingLegacy:!1,didScheduleLegacyUpdate:!1,didUsePromise:!1,thrownErrors:[],getCurrentStack:null,recentlyCreatedOwnerStacks:0},Ds=Object.prototype.hasOwnProperty,ba=console.createTask?console.createTask:function(){return null};Zt={react_stack_bottom_frame:function(S){return S()}};var Ri,Co,Qu={},Pr=Zt.react_stack_bottom_frame.bind(Zt,D)(),Xr=ba(T(D)),Mo=!1,Zu=/\/+/g,$r=typeof reportError=="function"?reportError:function(S){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var U=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof S=="object"&&S!==null&&typeof S.message=="string"?String(S.message):String(S),error:S});if(!window.dispatchEvent(U))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",S);return}console.error(S)},Qr=!1,xi=null,_o=0,wi=!1,Rs=!1,xs=typeof queueMicrotask=="function"?function(S){queueMicrotask(function(){return queueMicrotask(S)})}:Ze;Zt=Object.freeze({__proto__:null,c:function(S){return fe().useMemoCache(S)}});var No={map:F,forEach:function(S,U,X){F(S,function(){U.apply(this,arguments)},X)},count:function(S){var U=0;return F(S,function(){U++}),U},toArray:function(S){return F(S,function(U){return U})||[]},only:function(S){if(!Z(S))throw Error("React.Children.only expected to receive a single React element child.");return S}};i.Activity=se,i.Children=No,i.Component=p,i.Fragment=C,i.Profiler=me,i.PureComponent=m,i.StrictMode=Q,i.Suspense=we,i.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=ue,i.__COMPILER_RUNTIME=Zt,i.act=function(S){var U=ue.actQueue,X=_o;_o++;var J=ue.actQueue=U!==null?U:[],de=!1;try{var Oe=S()}catch(Ce){ue.thrownErrors.push(Ce)}if(0<ue.thrownErrors.length)throw G(U,X),S=lt(ue.thrownErrors),ue.thrownErrors.length=0,S;if(Oe!==null&&typeof Oe=="object"&&typeof Oe.then=="function"){var pe=Oe;return xs(function(){de||wi||(wi=!0,console.error("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"))}),{then:function(Ce,tn){de=!0,pe.then(function(Sa){if(G(U,X),X===0){try{ie(J),Ze(function(){return ae(Sa,Ce,tn)})}catch(ws){ue.thrownErrors.push(ws)}if(0<ue.thrownErrors.length){var Fu=lt(ue.thrownErrors);ue.thrownErrors.length=0,tn(Fu)}}else Ce(Sa)},function(Sa){G(U,X),0<ue.thrownErrors.length&&(Sa=lt(ue.thrownErrors),ue.thrownErrors.length=0),tn(Sa)})}}}var Ge=Oe;if(G(U,X),X===0&&(ie(J),J.length!==0&&xs(function(){de||wi||(wi=!0,console.error("A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"))}),ue.actQueue=null),0<ue.thrownErrors.length)throw S=lt(ue.thrownErrors),ue.thrownErrors.length=0,S;return{then:function(Ce,tn){de=!0,X===0?(ue.actQueue=J,Ze(function(){return ae(Ge,Ce,tn)})):Ce(Ge)}}},i.cache=function(S){return function(){return S.apply(null,arguments)}},i.cacheSignal=function(){return null},i.captureOwnerStack=function(){var S=ue.getCurrentStack;return S===null?null:S()},i.cloneElement=function(S,U,X){if(S==null)throw Error("The argument must be a React element, but you passed "+S+".");var J=Oo({},S.props),de=S.key,Oe=S._owner;if(U!=null){var pe;e:{if(Ds.call(U,"ref")&&(pe=Object.getOwnPropertyDescriptor(U,"ref").get)&&pe.isReactWarning){pe=!1;break e}pe=U.ref!==void 0}pe&&(Oe=R()),j(U)&&(b(U.key),de=""+U.key);for(Ge in U)!Ds.call(U,Ge)||Ge==="key"||Ge==="__self"||Ge==="__source"||Ge==="ref"&&U.ref===void 0||(J[Ge]=U[Ge])}var Ge=arguments.length-2;if(Ge===1)J.children=X;else if(1<Ge){pe=Array(Ge);for(var Ce=0;Ce<Ge;Ce++)pe[Ce]=arguments[Ce+2];J.children=pe}for(J=$(S.type,de,J,Oe,S._debugStack,S._debugTask),de=2;de<arguments.length;de++)I(arguments[de]);return J},i.createContext=function(S){return S={$$typeof:tt,_currentValue:S,_currentValue2:S,_threadCount:0,Provider:null,Consumer:null},S.Provider=S,S.Consumer={$$typeof:re,_context:S},S._currentRenderer=null,S._currentRenderer2=null,S},i.createElement=function(S,U,X){for(var J=2;J<arguments.length;J++)I(arguments[J]);J={};var de=null;if(U!=null)for(Ce in Co||!("__self"in U)||"key"in U||(Co=!0,console.warn("Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform")),j(U)&&(b(U.key),de=""+U.key),U)Ds.call(U,Ce)&&Ce!=="key"&&Ce!=="__self"&&Ce!=="__source"&&(J[Ce]=U[Ce]);var Oe=arguments.length-2;if(Oe===1)J.children=X;else if(1<Oe){for(var pe=Array(Oe),Ge=0;Ge<Oe;Ge++)pe[Ge]=arguments[Ge+2];Object.freeze&&Object.freeze(pe),J.children=pe}if(S&&S.defaultProps)for(Ce in Oe=S.defaultProps,Oe)J[Ce]===void 0&&(J[Ce]=Oe[Ce]);de&&z(J,typeof S=="function"?S.displayName||S.name||"Unknown":S);var Ce=1e4>ue.recentlyCreatedOwnerStacks++;return $(S,de,J,R(),Ce?Error("react-stack-top-frame"):Pr,Ce?ba(T(S)):Xr)},i.createRef=function(){var S={current:null};return Object.seal(S),S},i.forwardRef=function(S){S!=null&&S.$$typeof===Qt?console.error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."):typeof S!="function"?console.error("forwardRef requires a render function but was given %s.",S===null?"null":typeof S):S.length!==0&&S.length!==2&&console.error("forwardRef render functions accept exactly two parameters: props and ref. %s",S.length===1?"Did you forget to use the ref parameter?":"Any additional parameter will be undefined."),S!=null&&S.defaultProps!=null&&console.error("forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?");var U={$$typeof:Bn,render:S},X;return Object.defineProperty(U,"displayName",{enumerable:!1,configurable:!0,get:function(){return X},set:function(J){X=J,S.name||S.displayName||(Object.defineProperty(S,"name",{value:J}),S.displayName=J)}}),U},i.isValidElement=Z,i.lazy=function(S){S={_status:-1,_result:S};var U={$$typeof:oa,_payload:S,_init:Xe},X={name:"lazy",start:-1,end:-1,value:null,owner:null,debugStack:Error("react-stack-top-frame"),debugTask:console.createTask?console.createTask("lazy()"):null};return S._ioInfo=X,U._debugInfo=[{awaited:X}],U},i.memo=function(S,U){S==null&&console.error("memo: The first argument must be a component. Instead received: %s",S===null?"null":typeof S),U={$$typeof:Qt,type:S,compare:U===void 0?null:U};var X;return Object.defineProperty(U,"displayName",{enumerable:!1,configurable:!0,get:function(){return X},set:function(J){X=J,S.name||S.displayName||(Object.defineProperty(S,"name",{value:J}),S.displayName=J)}}),U},i.startTransition=function(S){var U=ue.T,X={};X._updatedFibers=new Set,ue.T=X;try{var J=S(),de=ue.S;de!==null&&de(X,J),typeof J=="object"&&J!==null&&typeof J.then=="function"&&(ue.asyncTransitions++,J.then(be,be),J.then(v,$r))}catch(Oe){$r(Oe)}finally{U===null&&X._updatedFibers&&(S=X._updatedFibers.size,X._updatedFibers.clear(),10<S&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.")),U!==null&&X.types!==null&&(U.types!==null&&U.types!==X.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),U.types=X.types),ue.T=U}},i.unstable_useCacheRefresh=function(){return fe().useCacheRefresh()},i.use=function(S){return fe().use(S)},i.useActionState=function(S,U,X){return fe().useActionState(S,U,X)},i.useCallback=function(S,U){return fe().useCallback(S,U)},i.useContext=function(S){var U=fe();return S.$$typeof===re&&console.error("Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"),U.useContext(S)},i.useDebugValue=function(S,U){return fe().useDebugValue(S,U)},i.useDeferredValue=function(S,U){return fe().useDeferredValue(S,U)},i.useEffect=function(S,U){return S==null&&console.warn("React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?"),fe().useEffect(S,U)},i.useEffectEvent=function(S){return fe().useEffectEvent(S)},i.useId=function(){return fe().useId()},i.useImperativeHandle=function(S,U,X){return fe().useImperativeHandle(S,U,X)},i.useInsertionEffect=function(S,U){return S==null&&console.warn("React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?"),fe().useInsertionEffect(S,U)},i.useLayoutEffect=function(S,U){return S==null&&console.warn("React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?"),fe().useLayoutEffect(S,U)},i.useMemo=function(S,U){return fe().useMemo(S,U)},i.useOptimistic=function(S,U){return fe().useOptimistic(S,U)},i.useReducer=function(S,U,X){return fe().useReducer(S,U,X)},i.useRef=function(S){return fe().useRef(S)},i.useState=function(S){return fe().useState(S)},i.useSyncExternalStore=function(S,U,X){return fe().useSyncExternalStore(S,U,X)},i.useTransition=function(){return fe().useTransition()},i.version="19.2.4",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()})(wu,wu.exports)),wu.exports}var FE;function Bu(){return FE||(FE=1,wy.exports=UM()),wy.exports}var JE;function zM(){if(JE)return cd;JE=1;return(function(){function o(C){if(C==null)return null;if(typeof C=="function")return C.$$typeof===Xe?null:C.displayName||C.name||null;if(typeof C=="string")return C;switch(C){case z:return"Fragment";case $:return"Profiler";case k:return"StrictMode";case Te:return"Suspense";case ve:return"SuspenseList";case F:return"Activity"}if(typeof C=="object")switch(typeof C.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),C.$$typeof){case j:return"Portal";case I:return C.displayName||"Context";case Y:return(C._context.displayName||"Context")+".Consumer";case Z:var Q=C.render;return C=C.displayName,C||(C=Q.displayName||Q.name||"",C=C!==""?"ForwardRef("+C+")":"ForwardRef"),C;case W:return Q=C.displayName||null,Q!==null?Q:o(C.type)||"Memo";case ce:Q=C._payload,C=C._init;try{return o(C(Q))}catch{}}return null}function i(C){return""+C}function l(C){try{i(C);var Q=!1}catch{Q=!0}if(Q){Q=console;var me=Q.error,re=typeof Symbol=="function"&&Symbol.toStringTag&&C[Symbol.toStringTag]||C.constructor.name||"Object";return me.call(Q,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",re),i(C)}}function u(C){if(C===z)return"<>";if(typeof C=="object"&&C!==null&&C.$$typeof===ce)return"<...>";try{var Q=o(C);return Q?"<"+Q+">":"<...>"}catch{return"<...>"}}function f(){var C=fe.A;return C===null?null:C.getOwner()}function p(){return Error("react-stack-top-frame")}function h(C){if(be.call(C,"key")){var Q=Object.getOwnPropertyDescriptor(C,"key").get;if(Q&&Q.isReactWarning)return!1}return C.key!==void 0}function m(C,Q){function me(){G||(G=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",Q))}me.isReactWarning=!0,Object.defineProperty(C,"key",{get:me,configurable:!0})}function v(){var C=o(this.type);return ae[C]||(ae[C]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),C=this.props.ref,C!==void 0?C:null}function E(C,Q,me,re,tt,Bn){var we=me.ref;return C={$$typeof:D,type:C,key:Q,props:me,_owner:re},(we!==void 0?we:null)!==null?Object.defineProperty(C,"ref",{enumerable:!1,get:v}):Object.defineProperty(C,"ref",{enumerable:!1,value:null}),C._store={},Object.defineProperty(C._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(C,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(C,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:tt}),Object.defineProperty(C,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:Bn}),Object.freeze&&(Object.freeze(C.props),Object.freeze(C)),C}function b(C,Q,me,re,tt,Bn){var we=Q.children;if(we!==void 0)if(re)if(Ze(we)){for(re=0;re<we.length;re++)A(we[re]);Object.freeze&&Object.freeze(we)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else A(we);if(be.call(Q,"key")){we=o(C);var Vt=Object.keys(Q).filter(function(oa){return oa!=="key"});re=0<Vt.length?"{key: someKey, "+Vt.join(": ..., ")+": ...}":"{key: someKey}",Be[we+re]||(Vt=0<Vt.length?"{"+Vt.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
14
+ let props = %s;
15
+ <%s {...props} />
16
+ React keys must be passed directly to JSX without using spread:
17
+ let props = %s;
18
+ <%s key={someKey} {...props} />`,re,we,Vt,we),Be[we+re]=!0)}if(we=null,me!==void 0&&(l(me),we=""+me),h(Q)&&(l(Q.key),we=""+Q.key),"key"in Q){me={};for(var Qt in Q)Qt!=="key"&&(me[Qt]=Q[Qt])}else me=Q;return we&&m(me,typeof C=="function"?C.displayName||C.name||"Unknown":C),E(C,we,me,f(),tt,Bn)}function A(C){T(C)?C._store&&(C._store.validated=1):typeof C=="object"&&C!==null&&C.$$typeof===ce&&(C._payload.status==="fulfilled"?T(C._payload.value)&&C._payload.value._store&&(C._payload.value._store.validated=1):C._store&&(C._store.validated=1))}function T(C){return typeof C=="object"&&C!==null&&C.$$typeof===D}var R=Bu(),D=Symbol.for("react.transitional.element"),j=Symbol.for("react.portal"),z=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),$=Symbol.for("react.profiler"),Y=Symbol.for("react.consumer"),I=Symbol.for("react.context"),Z=Symbol.for("react.forward_ref"),Te=Symbol.for("react.suspense"),ve=Symbol.for("react.suspense_list"),W=Symbol.for("react.memo"),ce=Symbol.for("react.lazy"),F=Symbol.for("react.activity"),Xe=Symbol.for("react.client.reference"),fe=R.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,be=Object.prototype.hasOwnProperty,Ze=Array.isArray,lt=console.createTask?console.createTask:function(){return null};R={react_stack_bottom_frame:function(C){return C()}};var G,ae={},ie=R.react_stack_bottom_frame.bind(R,p)(),xe=lt(u(p)),Be={};cd.Fragment=z,cd.jsxDEV=function(C,Q,me,re){var tt=1e4>fe.recentlyCreatedOwnerStacks++;return b(C,Q,me,re,tt?Error("react-stack-top-frame"):ie,tt?lt(u(C)):xe)}})(),cd}var KE;function VM(){return KE||(KE=1,xy.exports=zM()),xy.exports}var ee=VM(),ne=Bu();const jM=GD(ne);var Oy={exports:{}},Au={},Cy={exports:{}},My={},IE;function BM(){return IE||(IE=1,(function(o){(function(){function i(){if(Z=!1,ce){var G=o.unstable_now();fe=G;var ae=!0;try{e:{Y=!1,I&&(I=!1,ve(F),F=-1),$=!0;var ie=k;try{t:{for(h(G),z=u(R);z!==null&&!(z.expirationTime>G&&v());){var xe=z.callback;if(typeof xe=="function"){z.callback=null,k=z.priorityLevel;var Be=xe(z.expirationTime<=G);if(G=o.unstable_now(),typeof Be=="function"){z.callback=Be,h(G),ae=!0;break t}z===u(R)&&f(R),h(G)}else f(R);z=u(R)}if(z!==null)ae=!0;else{var C=u(D);C!==null&&E(m,C.startTime-G),ae=!1}}break e}finally{z=null,k=ie,$=!1}ae=void 0}}finally{ae?be():ce=!1}}}function l(G,ae){var ie=G.length;G.push(ae);e:for(;0<ie;){var xe=ie-1>>>1,Be=G[xe];if(0<p(Be,ae))G[xe]=ae,G[ie]=Be,ie=xe;else break e}}function u(G){return G.length===0?null:G[0]}function f(G){if(G.length===0)return null;var ae=G[0],ie=G.pop();if(ie!==ae){G[0]=ie;e:for(var xe=0,Be=G.length,C=Be>>>1;xe<C;){var Q=2*(xe+1)-1,me=G[Q],re=Q+1,tt=G[re];if(0>p(me,ie))re<Be&&0>p(tt,me)?(G[xe]=tt,G[re]=ie,xe=re):(G[xe]=me,G[Q]=ie,xe=Q);else if(re<Be&&0>p(tt,ie))G[xe]=tt,G[re]=ie,xe=re;else break e}}return ae}function p(G,ae){var ie=G.sortIndex-ae.sortIndex;return ie!==0?ie:G.id-ae.id}function h(G){for(var ae=u(D);ae!==null;){if(ae.callback===null)f(D);else if(ae.startTime<=G)f(D),ae.sortIndex=ae.expirationTime,l(R,ae);else break;ae=u(D)}}function m(G){if(I=!1,h(G),!Y)if(u(R)!==null)Y=!0,ce||(ce=!0,be());else{var ae=u(D);ae!==null&&E(m,ae.startTime-G)}}function v(){return Z?!0:!(o.unstable_now()-fe<Xe)}function E(G,ae){F=Te(function(){G(o.unstable_now())},ae)}if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()),o.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var b=performance;o.unstable_now=function(){return b.now()}}else{var A=Date,T=A.now();o.unstable_now=function(){return A.now()-T}}var R=[],D=[],j=1,z=null,k=3,$=!1,Y=!1,I=!1,Z=!1,Te=typeof setTimeout=="function"?setTimeout:null,ve=typeof clearTimeout=="function"?clearTimeout:null,W=typeof setImmediate<"u"?setImmediate:null,ce=!1,F=-1,Xe=5,fe=-1;if(typeof W=="function")var be=function(){W(i)};else if(typeof MessageChannel<"u"){var Ze=new MessageChannel,lt=Ze.port2;Ze.port1.onmessage=i,be=function(){lt.postMessage(null)}}else be=function(){Te(i,0)};o.unstable_IdlePriority=5,o.unstable_ImmediatePriority=1,o.unstable_LowPriority=4,o.unstable_NormalPriority=3,o.unstable_Profiling=null,o.unstable_UserBlockingPriority=2,o.unstable_cancelCallback=function(G){G.callback=null},o.unstable_forceFrameRate=function(G){0>G||125<G?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):Xe=0<G?Math.floor(1e3/G):5},o.unstable_getCurrentPriorityLevel=function(){return k},o.unstable_next=function(G){switch(k){case 1:case 2:case 3:var ae=3;break;default:ae=k}var ie=k;k=ae;try{return G()}finally{k=ie}},o.unstable_requestPaint=function(){Z=!0},o.unstable_runWithPriority=function(G,ae){switch(G){case 1:case 2:case 3:case 4:case 5:break;default:G=3}var ie=k;k=G;try{return ae()}finally{k=ie}},o.unstable_scheduleCallback=function(G,ae,ie){var xe=o.unstable_now();switch(typeof ie=="object"&&ie!==null?(ie=ie.delay,ie=typeof ie=="number"&&0<ie?xe+ie:xe):ie=xe,G){case 1:var Be=-1;break;case 2:Be=250;break;case 5:Be=1073741823;break;case 4:Be=1e4;break;default:Be=5e3}return Be=ie+Be,G={id:j++,callback:ae,priorityLevel:G,startTime:ie,expirationTime:Be,sortIndex:-1},ie>xe?(G.sortIndex=ie,l(D,G),u(R)===null&&G===u(D)&&(I?(ve(F),F=-1):I=!0,E(m,ie-xe))):(G.sortIndex=Be,l(R,G),Y||$||(Y=!0,ce||(ce=!0,be()))),G},o.unstable_shouldYield=v,o.unstable_wrapCallback=function(G){var ae=k;return function(){var ie=k;k=ae;try{return G.apply(this,arguments)}finally{k=ie}}},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()})(My)),My}var WE;function LM(){return WE||(WE=1,Cy.exports=BM()),Cy.exports}var _y={exports:{}},It={},eA;function HM(){if(eA)return It;eA=1;return(function(){function o(){}function i(A){return""+A}function l(A,T,R){var D=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;try{i(D);var j=!1}catch{j=!0}return j&&(console.error("The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",typeof Symbol=="function"&&Symbol.toStringTag&&D[Symbol.toStringTag]||D.constructor.name||"Object"),i(D)),{$$typeof:E,key:D==null?null:""+D,children:A,containerInfo:T,implementation:R}}function u(A,T){if(A==="font")return"";if(typeof T=="string")return T==="use-credentials"?T:""}function f(A){return A===null?"`null`":A===void 0?"`undefined`":A===""?"an empty string":'something with type "'+typeof A+'"'}function p(A){return A===null?"`null`":A===void 0?"`undefined`":A===""?"an empty string":typeof A=="string"?JSON.stringify(A):typeof A=="number"?"`"+A+"`":'something with type "'+typeof A+'"'}function h(){var A=b.H;return A===null&&console.error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
19
+ 1. You might have mismatching versions of React and the renderer (such as React DOM)
20
+ 2. You might be breaking the Rules of Hooks
21
+ 3. You might have more than one copy of React in the same app
22
+ See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`),A}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var m=Bu(),v={d:{f:o,r:function(){throw Error("Invalid form element. requestFormReset must be passed a form that was rendered by React.")},D:o,C:o,L:o,m:o,X:o,S:o,M:o},p:0,findDOMNode:null},E=Symbol.for("react.portal"),b=m.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;typeof Map=="function"&&Map.prototype!=null&&typeof Map.prototype.forEach=="function"&&typeof Set=="function"&&Set.prototype!=null&&typeof Set.prototype.clear=="function"&&typeof Set.prototype.forEach=="function"||console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),It.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=v,It.createPortal=function(A,T){var R=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!T||T.nodeType!==1&&T.nodeType!==9&&T.nodeType!==11)throw Error("Target container is not a DOM element.");return l(A,T,null,R)},It.flushSync=function(A){var T=b.T,R=v.p;try{if(b.T=null,v.p=2,A)return A()}finally{b.T=T,v.p=R,v.d.f()&&console.error("flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.")}},It.preconnect=function(A,T){typeof A=="string"&&A?T!=null&&typeof T!="object"?console.error("ReactDOM.preconnect(): Expected the `options` argument (second) to be an object but encountered %s instead. The only supported option at this time is `crossOrigin` which accepts a string.",p(T)):T!=null&&typeof T.crossOrigin!="string"&&console.error("ReactDOM.preconnect(): Expected the `crossOrigin` option (second argument) to be a string but encountered %s instead. Try removing this option or passing a string value instead.",f(T.crossOrigin)):console.error("ReactDOM.preconnect(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",f(A)),typeof A=="string"&&(T?(T=T.crossOrigin,T=typeof T=="string"?T==="use-credentials"?T:"":void 0):T=null,v.d.C(A,T))},It.prefetchDNS=function(A){if(typeof A!="string"||!A)console.error("ReactDOM.prefetchDNS(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",f(A));else if(1<arguments.length){var T=arguments[1];typeof T=="object"&&T.hasOwnProperty("crossOrigin")?console.error("ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. It looks like the you are attempting to set a crossOrigin property for this DNS lookup hint. Browsers do not perform DNS queries using CORS and setting this attribute on the resource hint has no effect. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.",p(T)):console.error("ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.",p(T))}typeof A=="string"&&v.d.D(A)},It.preinit=function(A,T){if(typeof A=="string"&&A?T==null||typeof T!="object"?console.error("ReactDOM.preinit(): Expected the `options` argument (second) to be an object with an `as` property describing the type of resource to be preinitialized but encountered %s instead.",p(T)):T.as!=="style"&&T.as!=="script"&&console.error('ReactDOM.preinit(): Expected the `as` property in the `options` argument (second) to contain a valid value describing the type of resource to be preinitialized but encountered %s instead. Valid values for `as` are "style" and "script".',p(T.as)):console.error("ReactDOM.preinit(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",f(A)),typeof A=="string"&&T&&typeof T.as=="string"){var R=T.as,D=u(R,T.crossOrigin),j=typeof T.integrity=="string"?T.integrity:void 0,z=typeof T.fetchPriority=="string"?T.fetchPriority:void 0;R==="style"?v.d.S(A,typeof T.precedence=="string"?T.precedence:void 0,{crossOrigin:D,integrity:j,fetchPriority:z}):R==="script"&&v.d.X(A,{crossOrigin:D,integrity:j,fetchPriority:z,nonce:typeof T.nonce=="string"?T.nonce:void 0})}},It.preinitModule=function(A,T){var R="";typeof A=="string"&&A||(R+=" The `href` argument encountered was "+f(A)+"."),T!==void 0&&typeof T!="object"?R+=" The `options` argument encountered was "+f(T)+".":T&&"as"in T&&T.as!=="script"&&(R+=" The `as` option encountered was "+p(T.as)+"."),R?console.error("ReactDOM.preinitModule(): Expected up to two arguments, a non-empty `href` string and, optionally, an `options` object with a valid `as` property.%s",R):(R=T&&typeof T.as=="string"?T.as:"script",R)==="script"||(R=p(R),console.error('ReactDOM.preinitModule(): Currently the only supported "as" type for this function is "script" but received "%s" instead. This warning was generated for `href` "%s". In the future other module types will be supported, aligning with the import-attributes proposal. Learn more here: (https://github.com/tc39/proposal-import-attributes)',R,A)),typeof A=="string"&&(typeof T=="object"&&T!==null?(T.as==null||T.as==="script")&&(R=u(T.as,T.crossOrigin),v.d.M(A,{crossOrigin:R,integrity:typeof T.integrity=="string"?T.integrity:void 0,nonce:typeof T.nonce=="string"?T.nonce:void 0})):T==null&&v.d.M(A))},It.preload=function(A,T){var R="";if(typeof A=="string"&&A||(R+=" The `href` argument encountered was "+f(A)+"."),T==null||typeof T!="object"?R+=" The `options` argument encountered was "+f(T)+".":typeof T.as=="string"&&T.as||(R+=" The `as` option encountered was "+f(T.as)+"."),R&&console.error('ReactDOM.preload(): Expected two arguments, a non-empty `href` string and an `options` object with an `as` property valid for a `<link rel="preload" as="..." />` tag.%s',R),typeof A=="string"&&typeof T=="object"&&T!==null&&typeof T.as=="string"){R=T.as;var D=u(R,T.crossOrigin);v.d.L(A,R,{crossOrigin:D,integrity:typeof T.integrity=="string"?T.integrity:void 0,nonce:typeof T.nonce=="string"?T.nonce:void 0,type:typeof T.type=="string"?T.type:void 0,fetchPriority:typeof T.fetchPriority=="string"?T.fetchPriority:void 0,referrerPolicy:typeof T.referrerPolicy=="string"?T.referrerPolicy:void 0,imageSrcSet:typeof T.imageSrcSet=="string"?T.imageSrcSet:void 0,imageSizes:typeof T.imageSizes=="string"?T.imageSizes:void 0,media:typeof T.media=="string"?T.media:void 0})}},It.preloadModule=function(A,T){var R="";typeof A=="string"&&A||(R+=" The `href` argument encountered was "+f(A)+"."),T!==void 0&&typeof T!="object"?R+=" The `options` argument encountered was "+f(T)+".":T&&"as"in T&&typeof T.as!="string"&&(R+=" The `as` option encountered was "+f(T.as)+"."),R&&console.error('ReactDOM.preloadModule(): Expected two arguments, a non-empty `href` string and, optionally, an `options` object with an `as` property valid for a `<link rel="modulepreload" as="..." />` tag.%s',R),typeof A=="string"&&(T?(R=u(T.as,T.crossOrigin),v.d.m(A,{as:typeof T.as=="string"&&T.as!=="script"?T.as:void 0,crossOrigin:R,integrity:typeof T.integrity=="string"?T.integrity:void 0})):v.d.m(A))},It.requestFormReset=function(A){v.d.r(A)},It.unstable_batchedUpdates=function(A,T){return A(T)},It.useFormState=function(A,T,R){return h().useFormState(A,T,R)},It.useFormStatus=function(){return h().useHostTransitionStatus()},It.version="19.2.4",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})(),It}var tA;function kM(){return tA||(tA=1,_y.exports=HM()),_y.exports}var nA;function qM(){if(nA)return Au;nA=1;return(function(){function o(e,t){for(e=e.memoizedState;e!==null&&0<t;)e=e.next,t--;return e}function i(e,t,n,a){if(n>=t.length)return a;var s=t[n],r=_t(e)?e.slice():je({},e);return r[s]=i(e[s],t,n+1,a),r}function l(e,t,n){if(t.length!==n.length)console.warn("copyWithRename() expects paths of the same length");else{for(var a=0;a<n.length-1;a++)if(t[a]!==n[a]){console.warn("copyWithRename() expects paths to be the same except for the deepest key");return}return u(e,t,n,0)}}function u(e,t,n,a){var s=t[a],r=_t(e)?e.slice():je({},e);return a+1===t.length?(r[n[a]]=r[s],_t(r)?r.splice(s,1):delete r[s]):r[s]=u(e[s],t,n,a+1),r}function f(e,t,n){var a=t[n],s=_t(e)?e.slice():je({},e);return n+1===t.length?(_t(s)?s.splice(a,1):delete s[a],s):(s[a]=f(e[a],t,n+1),s)}function p(){return!1}function h(){return null}function m(){console.error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://react.dev/link/rules-of-hooks")}function v(){console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().")}function E(){}function b(){}function A(e){var t=[];return e.forEach(function(n){t.push(n)}),t.sort().join(", ")}function T(e,t,n,a){return new Sw(e,t,n,a)}function R(e,t){e.context===Io&&(Xp(e.current,2,t,e,null,null),ks())}function D(e,t){if(Pn!==null){var n=t.staleFamilies;t=t.updatedFamilies,vl(),e0(e.current,t,n),ks()}}function j(e){Pn=e}function z(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function k(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,(t.flags&4098)!==0&&(n=t.return),e=t.return;while(e)}return t.tag===3?n:null}function $(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function Y(e){if(e.tag===31){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function I(e){if(k(e)!==e)throw Error("Unable to find node on an unmounted component.")}function Z(e){var t=e.alternate;if(!t){if(t=k(e),t===null)throw Error("Unable to find node on an unmounted component.");return t!==e?null:e}for(var n=e,a=t;;){var s=n.return;if(s===null)break;var r=s.alternate;if(r===null){if(a=s.return,a!==null){n=a;continue}break}if(s.child===r.child){for(r=s.child;r;){if(r===n)return I(s),e;if(r===a)return I(s),t;r=r.sibling}throw Error("Unable to find node on an unmounted component.")}if(n.return!==a.return)n=s,a=r;else{for(var c=!1,d=s.child;d;){if(d===n){c=!0,n=s,a=r;break}if(d===a){c=!0,a=s,n=r;break}d=d.sibling}if(!c){for(d=r.child;d;){if(d===n){c=!0,n=r,a=s;break}if(d===a){c=!0,a=r,n=s;break}d=d.sibling}if(!c)throw Error("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.")}}if(n.alternate!==a)throw Error("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.")}if(n.tag!==3)throw Error("Unable to find node on an unmounted component.");return n.stateNode.current===n?e:t}function Te(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e;for(e=e.child;e!==null;){if(t=Te(e),t!==null)return t;e=e.sibling}return null}function ve(e){return e===null||typeof e!="object"?null:(e=r1&&e[r1]||e["@@iterator"],typeof e=="function"?e:null)}function W(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===YO?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Qs:return"Fragment";case Ip:return"Profiler";case af:return"StrictMode";case em:return"Suspense";case tm:return"SuspenseList";case nm:return"Activity"}if(typeof e=="object")switch(typeof e.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case $s:return"Portal";case La:return e.displayName||"Context";case Wp:return(e._context.displayName||"Context")+".Consumer";case Ol:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case of:return t=e.displayName||null,t!==null?t:W(e.type)||"Memo";case Mn:t=e._payload,e=e._init;try{return W(e(t))}catch{}}return null}function ce(e){return typeof e.tag=="number"?F(e):typeof e.name=="string"?e.name:null}function F(e){var t=e.type;switch(e.tag){case 31:return"Activity";case 24:return"Cache";case 9:return(t._context.displayName||"Context")+".Consumer";case 10:return t.displayName||"Context";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 26:case 27:case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return W(t);case 8:return t===af?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t;break;case 29:if(t=e._debugInfo,t!=null){for(var n=t.length-1;0<=n;n--)if(typeof t[n].name=="string")return t[n].name}if(e.return!==null)return F(e.return)}return null}function Xe(e){return{current:e}}function fe(e,t){0>so?console.error("Unexpected pop."):(t!==om[so]&&console.error("Unexpected Fiber popped."),e.current=am[so],am[so]=null,om[so]=null,so--)}function be(e,t,n){so++,am[so]=e.current,om[so]=n,e.current=t}function Ze(e){return e===null&&console.error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue."),e}function lt(e,t){be($o,t,e),be(Cl,e,e),be(Xo,null,e);var n=t.nodeType;switch(n){case 9:case 11:n=n===9?"#document":"#fragment",t=(t=t.documentElement)&&(t=t.namespaceURI)?_S(t):Eo;break;default:if(n=t.tagName,t=t.namespaceURI)t=_S(t),t=NS(t,n);else switch(n){case"svg":t=wr;break;case"math":t=ad;break;default:t=Eo}}n=n.toLowerCase(),n=Rv(null,n),n={context:t,ancestorInfo:n},fe(Xo,e),be(Xo,n,e)}function G(e){fe(Xo,e),fe(Cl,e),fe($o,e)}function ae(){return Ze(Xo.current)}function ie(e){e.memoizedState!==null&&be(sf,e,e);var t=Ze(Xo.current),n=e.type,a=NS(t.context,n);n=Rv(t.ancestorInfo,n),a={context:a,ancestorInfo:n},t!==a&&(be(Cl,e,e),be(Xo,a,e))}function xe(e){Cl.current===e&&(fe(Xo,e),fe(Cl,e)),sf.current===e&&(fe(sf,e),Su._currentValue=ds)}function Be(){}function C(){if(Ml===0){l1=console.log,u1=console.info,c1=console.warn,f1=console.error,d1=console.group,h1=console.groupCollapsed,p1=console.groupEnd;var e={configurable:!0,enumerable:!0,value:Be,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}Ml++}function Q(){if(Ml--,Ml===0){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:je({},e,{value:l1}),info:je({},e,{value:u1}),warn:je({},e,{value:c1}),error:je({},e,{value:f1}),group:je({},e,{value:d1}),groupCollapsed:je({},e,{value:h1}),groupEnd:je({},e,{value:p1})})}0>Ml&&console.error("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}function me(e){var t=Error.prepareStackTrace;if(Error.prepareStackTrace=void 0,e=e.stack,Error.prepareStackTrace=t,e.startsWith(`Error: react-stack-top-frame
23
+ `)&&(e=e.slice(29)),t=e.indexOf(`
24
+ `),t!==-1&&(e=e.slice(t+1)),t=e.indexOf("react_stack_bottom_frame"),t!==-1&&(t=e.lastIndexOf(`
25
+ `,t)),t!==-1)e=e.slice(0,t);else return"";return e}function re(e){if(im===void 0)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);im=t&&t[1]||"",m1=-1<n.stack.indexOf(`
26
+ at`)?" (<anonymous>)":-1<n.stack.indexOf("@")?"@unknown:0:0":""}return`
27
+ `+im+e+m1}function tt(e,t){if(!e||sm)return"";var n=rm.get(e);if(n!==void 0)return n;sm=!0,n=Error.prepareStackTrace,Error.prepareStackTrace=void 0;var a=null;a=L.H,L.H=null,C();try{var s={DetermineComponentFrameRoot:function(){try{if(t){var w=function(){throw Error()};if(Object.defineProperty(w.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(w,[])}catch(K){var V=K}Reflect.construct(e,[],w)}else{try{w.call()}catch(K){V=K}e.call(w.prototype)}}else{try{throw Error()}catch(K){V=K}(w=e())&&typeof w.catch=="function"&&w.catch(function(){})}}catch(K){if(K&&V&&typeof K.stack=="string")return[K.stack,V.stack]}return[null,null]}};s.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var r=Object.getOwnPropertyDescriptor(s.DetermineComponentFrameRoot,"name");r&&r.configurable&&Object.defineProperty(s.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var c=s.DetermineComponentFrameRoot(),d=c[0],y=c[1];if(d&&y){var g=d.split(`
28
+ `),_=y.split(`
29
+ `);for(c=r=0;r<g.length&&!g[r].includes("DetermineComponentFrameRoot");)r++;for(;c<_.length&&!_[c].includes("DetermineComponentFrameRoot");)c++;if(r===g.length||c===_.length)for(r=g.length-1,c=_.length-1;1<=r&&0<=c&&g[r]!==_[c];)c--;for(;1<=r&&0<=c;r--,c--)if(g[r]!==_[c]){if(r!==1||c!==1)do if(r--,c--,0>c||g[r]!==_[c]){var N=`
30
+ `+g[r].replace(" at new "," at ");return e.displayName&&N.includes("<anonymous>")&&(N=N.replace("<anonymous>",e.displayName)),typeof e=="function"&&rm.set(e,N),N}while(1<=r&&0<=c);break}}}finally{sm=!1,L.H=a,Q(),Error.prepareStackTrace=n}return g=(g=e?e.displayName||e.name:"")?re(g):"",typeof e=="function"&&rm.set(e,g),g}function Bn(e,t){switch(e.tag){case 26:case 27:case 5:return re(e.type);case 16:return re("Lazy");case 13:return e.child!==t&&t!==null?re("Suspense Fallback"):re("Suspense");case 19:return re("SuspenseList");case 0:case 15:return tt(e.type,!1);case 11:return tt(e.type.render,!1);case 1:return tt(e.type,!0);case 31:return re("Activity");default:return""}}function we(e){try{var t="",n=null;do{t+=Bn(e,n);var a=e._debugInfo;if(a)for(var s=a.length-1;0<=s;s--){var r=a[s];if(typeof r.name=="string"){var c=t;e:{var d=r.name,y=r.env,g=r.debugLocation;if(g!=null){var _=me(g),N=_.lastIndexOf(`
31
+ `),w=N===-1?_:_.slice(N+1);if(w.indexOf(d)!==-1){var V=`
32
+ `+w;break e}}V=re(d+(y?" ["+y+"]":""))}t=c+V}}n=e,e=e.return}while(e);return t}catch(K){return`
33
+ Error generating stack: `+K.message+`
34
+ `+K.stack}}function Vt(e){return(e=e?e.displayName||e.name:"")?re(e):""}function Qt(){if(_n===null)return null;var e=_n._debugOwner;return e!=null?ce(e):null}function oa(){if(_n===null)return"";var e=_n;try{var t="";switch(e.tag===6&&(e=e.return),e.tag){case 26:case 27:case 5:t+=re(e.type);break;case 13:t+=re("Suspense");break;case 19:t+=re("SuspenseList");break;case 31:t+=re("Activity");break;case 30:case 0:case 15:case 1:e._debugOwner||t!==""||(t+=Vt(e.type));break;case 11:e._debugOwner||t!==""||(t+=Vt(e.type.render))}for(;e;)if(typeof e.tag=="number"){var n=e;e=n._debugOwner;var a=n._debugStack;if(e&&a){var s=me(a);s!==""&&(t+=`
35
+ `+s)}}else if(e.debugStack!=null){var r=e.debugStack;(e=e.owner)&&r&&(t+=`
36
+ `+me(r))}else break;var c=t}catch(d){c=`
37
+ Error generating stack: `+d.message+`
38
+ `+d.stack}return c}function se(e,t,n,a,s,r,c){var d=_n;Es(e);try{return e!==null&&e._debugTask?e._debugTask.run(t.bind(null,n,a,s,r,c)):t(n,a,s,r,c)}finally{Es(d)}throw Error("runWithFiberInDEV should never be called in production. This is a bug in React.")}function Es(e){L.getCurrentStack=e===null?null:oa,Ha=!1,_n=e}function Ai(e){return typeof Symbol=="function"&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object"}function Di(e){try{return Oo(e),!1}catch{return!0}}function Oo(e){return""+e}function Fe(e,t){if(Di(e))return console.error("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before using it here.",t,Ai(e)),Oo(e)}function Zt(e,t){if(Di(e))return console.error("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before using it here.",t,Ai(e)),Oo(e)}function As(e){if(Di(e))return console.error("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before using it here.",Ai(e)),Oo(e)}function Pd(e){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled)return!0;if(!t.supportsFiber)return console.error("The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://react.dev/link/react-devtools"),!0;try{Fs=t.inject(e),Jt=t}catch(n){console.error("React instrumentation encountered an error: %o.",n)}return!!t.checkDCE}function ue(e){if(typeof FO=="function"&&JO(e),Jt&&typeof Jt.setStrictMode=="function")try{Jt.setStrictMode(Fs,e)}catch(t){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",t))}}function Ds(e){return e>>>=0,e===0?32:31-(KO(e)/IO|0)|0}function ba(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 console.error("Should have found matching lanes. This is a bug in React."),e}}function Ri(e,t,n){var a=e.pendingLanes;if(a===0)return 0;var s=0,r=e.suspendedLanes,c=e.pingedLanes;e=e.warmLanes;var d=a&134217727;return d!==0?(a=d&~r,a!==0?s=ba(a):(c&=d,c!==0?s=ba(c):n||(n=d&~e,n!==0&&(s=ba(n))))):(d=a&~r,d!==0?s=ba(d):c!==0?s=ba(c):n||(n=a&~e,n!==0&&(s=ba(n)))),s===0?0:t!==0&&t!==s&&(t&r)===0&&(r=s&-s,n=t&-t,r>=n||r===32&&(n&4194048)!==0)?t:s}function Co(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function Qu(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 console.error("Should have found matching lanes. This is a bug in React."),-1}}function Pr(){var e=uf;return uf<<=1,(uf&62914560)===0&&(uf=4194304),e}function Xr(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Mo(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function Zu(e,t,n,a,s,r){var c=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 d=e.entanglements,y=e.expirationTimes,g=e.hiddenUpdates;for(n=c&~n;0<n;){var _=31-an(n),N=1<<_;d[_]=0,y[_]=-1;var w=g[_];if(w!==null)for(g[_]=null,_=0;_<w.length;_++){var V=w[_];V!==null&&(V.lane&=-536870913)}n&=~N}a!==0&&$r(e,a,0),r!==0&&s===0&&e.tag!==0&&(e.suspendedLanes|=r&~(c&~t))}function $r(e,t,n){e.pendingLanes|=t,e.suspendedLanes&=~t;var a=31-an(t);e.entangledLanes|=t,e.entanglements[a]=e.entanglements[a]|1073741824|n&261930}function Qr(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var a=31-an(n),s=1<<a;s&t|e[a]&t&&(e[a]|=t),n&=~s}}function xi(e,t){var n=t&-t;return n=(n&42)!==0?1:_o(n),(n&(e.suspendedLanes|t))!==0?0:n}function _o(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 wi(e,t,n){if(qa)for(e=e.pendingUpdatersLaneMap;0<n;){var a=31-an(n),s=1<<a;e[a].add(t),n&=~s}}function Rs(e,t){if(qa)for(var n=e.pendingUpdatersLaneMap,a=e.memoizedUpdaters;0<t;){var s=31-an(t);e=1<<s,s=n[s],0<s.size&&(s.forEach(function(r){var c=r.alternate;c!==null&&a.has(c)||a.add(r)}),s.clear()),t&=~e}}function xs(e){return e&=-e,qn<e?Ya<e?(e&134217727)!==0?ro:cf:Ya:qn}function No(){var e=Qe.p;return e!==0?e:(e=window.event,e===void 0?ro:e1(e.type))}function S(e,t){var n=Qe.p;try{return Qe.p=e,t()}finally{Qe.p=n}}function U(e){delete e[Pt],delete e[on],delete e[dm],delete e[WO],delete e[eC]}function X(e){var t=e[Pt];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Zo]||n[Pt]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=kS(e);e!==null;){if(n=e[Pt])return n;e=kS(e)}return t}e=n,n=e.parentNode}return null}function J(e){if(e=e[Pt]||e[Zo]){var t=e.tag;if(t===5||t===6||t===13||t===31||t===26||t===27||t===3)return e}return null}function de(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e.stateNode;throw Error("getNodeFromInstance: Invalid argument.")}function Oe(e){var t=e[y1];return t||(t=e[y1]={hoistableStyles:new Map,hoistableScripts:new Map}),t}function pe(e){e[_l]=!0}function Ge(e,t){Ce(e,t),Ce(e+"Capture",t)}function Ce(e,t){Gi[e]&&console.error("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.",e),Gi[e]=t;var n=e.toLowerCase();for(hm[n]=e,e==="onDoubleClick"&&(hm.ondblclick=e),e=0;e<t.length;e++)g1.add(t[e])}function tn(e,t){tC[t.type]||t.onChange||t.onInput||t.readOnly||t.disabled||t.value==null||console.error(e==="select"?"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set `onChange`.":"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`."),t.onChange||t.readOnly||t.disabled||t.checked==null||console.error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.")}function Sa(e){return ua.call(b1,e)?!0:ua.call(v1,e)?!1:nC.test(e)?b1[e]=!0:(v1[e]=!0,console.error("Invalid attribute name: `%s`",e),!1)}function Fu(e,t,n){if(Sa(t)){if(!e.hasAttribute(t)){switch(typeof n){case"symbol":case"object":return n;case"function":return n;case"boolean":if(n===!1)return n}return n===void 0?void 0:null}return e=e.getAttribute(t),e===""&&n===!0?!0:(Fe(n,t),e===""+n?n:e)}}function ws(e,t,n){if(Sa(t))if(n===null)e.removeAttribute(t);else{switch(typeof n){case"undefined":case"function":case"symbol":e.removeAttribute(t);return;case"boolean":var a=t.toLowerCase().slice(0,5);if(a!=="data-"&&a!=="aria-"){e.removeAttribute(t);return}}Fe(n,t),e.setAttribute(t,""+n)}}function Ju(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}Fe(n,t),e.setAttribute(t,""+n)}}function Ka(e,t,n,a){if(a===null)e.removeAttribute(n);else{switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(n);return}Fe(a,n),e.setAttributeNS(t,n,""+a)}}function Ln(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":return e;case"object":return As(e),e;default:return""}}function fv(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Kx(e,t,n){var a=Object.getOwnPropertyDescriptor(e.constructor.prototype,t);if(!e.hasOwnProperty(t)&&typeof a<"u"&&typeof a.get=="function"&&typeof a.set=="function"){var s=a.get,r=a.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return s.call(this)},set:function(c){As(c),n=""+c,r.call(this,c)}}),Object.defineProperty(e,t,{enumerable:a.enumerable}),{getValue:function(){return n},setValue:function(c){As(c),n=""+c},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Xd(e){if(!e._valueTracker){var t=fv(e)?"checked":"value";e._valueTracker=Kx(e,t,""+e[t])}}function dv(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a="";return e&&(a=fv(e)?e.checked?"true":"false":e.value),e=a,e!==n?(t.setValue(e),!0):!1}function Ku(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Hn(e){return e.replace(aC,function(t){return"\\"+t.charCodeAt(0).toString(16)+" "})}function hv(e,t){t.checked===void 0||t.defaultChecked===void 0||T1||(console.error("%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components",Qt()||"A component",t.type),T1=!0),t.value===void 0||t.defaultValue===void 0||S1||(console.error("%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components",Qt()||"A component",t.type),S1=!0)}function $d(e,t,n,a,s,r,c,d){e.name="",c!=null&&typeof c!="function"&&typeof c!="symbol"&&typeof c!="boolean"?(Fe(c,"type"),e.type=c):e.removeAttribute("type"),t!=null?c==="number"?(t===0&&e.value===""||e.value!=t)&&(e.value=""+Ln(t)):e.value!==""+Ln(t)&&(e.value=""+Ln(t)):c!=="submit"&&c!=="reset"||e.removeAttribute("value"),t!=null?Qd(e,c,Ln(t)):n!=null?Qd(e,c,Ln(n)):a!=null&&e.removeAttribute("value"),s==null&&r!=null&&(e.defaultChecked=!!r),s!=null&&(e.checked=s&&typeof s!="function"&&typeof s!="symbol"),d!=null&&typeof d!="function"&&typeof d!="symbol"&&typeof d!="boolean"?(Fe(d,"name"),e.name=""+Ln(d)):e.removeAttribute("name")}function pv(e,t,n,a,s,r,c,d){if(r!=null&&typeof r!="function"&&typeof r!="symbol"&&typeof r!="boolean"&&(Fe(r,"type"),e.type=r),t!=null||n!=null){if(!(r!=="submit"&&r!=="reset"||t!=null)){Xd(e);return}n=n!=null?""+Ln(n):"",t=t!=null?""+Ln(t):n,d||t===e.value||(e.value=t),e.defaultValue=t}a=a??s,a=typeof a!="function"&&typeof a!="symbol"&&!!a,e.checked=d?e.checked:!!a,e.defaultChecked=!!a,c!=null&&typeof c!="function"&&typeof c!="symbol"&&typeof c!="boolean"&&(Fe(c,"name"),e.name=c),Xd(e)}function Qd(e,t,n){t==="number"&&Ku(e.ownerDocument)===e||e.defaultValue===""+n||(e.defaultValue=""+n)}function mv(e,t){t.value==null&&(typeof t.children=="object"&&t.children!==null?Kp.Children.forEach(t.children,function(n){n==null||typeof n=="string"||typeof n=="number"||typeof n=="bigint"||A1||(A1=!0,console.error("Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>."))}):t.dangerouslySetInnerHTML==null||D1||(D1=!0,console.error("Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected."))),t.selected==null||E1||(console.error("Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>."),E1=!0)}function yv(){var e=Qt();return e?`
39
+
40
+ Check the render method of \``+e+"`.":""}function Os(e,t,n,a){if(e=e.options,t){t={};for(var s=0;s<n.length;s++)t["$"+n[s]]=!0;for(n=0;n<e.length;n++)s=t.hasOwnProperty("$"+e[n].value),e[n].selected!==s&&(e[n].selected=s),s&&a&&(e[n].defaultSelected=!0)}else{for(n=""+Ln(n),t=null,s=0;s<e.length;s++){if(e[s].value===n){e[s].selected=!0,a&&(e[s].defaultSelected=!0);return}t!==null||e[s].disabled||(t=e[s])}t!==null&&(t.selected=!0)}}function gv(e,t){for(e=0;e<x1.length;e++){var n=x1[e];if(t[n]!=null){var a=_t(t[n]);t.multiple&&!a?console.error("The `%s` prop supplied to <select> must be an array if `multiple` is true.%s",n,yv()):!t.multiple&&a&&console.error("The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s",n,yv())}}t.value===void 0||t.defaultValue===void 0||R1||(console.error("Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://react.dev/link/controlled-components"),R1=!0)}function vv(e,t){t.value===void 0||t.defaultValue===void 0||w1||(console.error("%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://react.dev/link/controlled-components",Qt()||"A component"),w1=!0),t.children!=null&&t.value==null&&console.error("Use the `defaultValue` or `value` props instead of setting children on <textarea>.")}function bv(e,t,n){if(t!=null&&(t=""+Ln(t),t!==e.value&&(e.value=t),n==null)){e.defaultValue!==t&&(e.defaultValue=t);return}e.defaultValue=n!=null?""+Ln(n):""}function Sv(e,t,n,a){if(t==null){if(a!=null){if(n!=null)throw Error("If you supply `defaultValue` on a <textarea>, do not pass children.");if(_t(a)){if(1<a.length)throw Error("<textarea> can only have at most one child.");a=a[0]}n=a}n==null&&(n=""),t=n}n=Ln(t),e.defaultValue=n,a=e.textContent,a===n&&a!==""&&a!==null&&(e.value=a),Xd(e)}function Tv(e,t){return e.serverProps===void 0&&e.serverTail.length===0&&e.children.length===1&&3<e.distanceFromLeaf&&e.distanceFromLeaf>15-t?Tv(e.children[0],t):e}function An(e){return" "+" ".repeat(e)}function Cs(e){return"+ "+" ".repeat(e)}function Oi(e){return"- "+" ".repeat(e)}function Ev(e){switch(e.tag){case 26:case 27:case 5:return e.type;case 16:return"Lazy";case 31:return"Activity";case 13:return"Suspense";case 19:return"SuspenseList";case 0:case 15:return e=e.type,e.displayName||e.name||null;case 11:return e=e.type.render,e.displayName||e.name||null;case 1:return e=e.type,e.displayName||e.name||null;default:return null}}function Zr(e,t){return O1.test(e)?(e=JSON.stringify(e),e.length>t-2?8>t?'{"..."}':"{"+e.slice(0,t-7)+'..."}':"{"+e+"}"):e.length>t?5>t?'{"..."}':e.slice(0,t-3)+"...":e}function Iu(e,t,n){var a=120-2*n;if(t===null)return Cs(n)+Zr(e,a)+`
41
+ `;if(typeof t=="string"){for(var s=0;s<t.length&&s<e.length&&t.charCodeAt(s)===e.charCodeAt(s);s++);return s>a-8&&10<s&&(e="..."+e.slice(s-8),t="..."+t.slice(s-8)),Cs(n)+Zr(e,a)+`
42
+ `+Oi(n)+Zr(t,a)+`
43
+ `}return An(n)+Zr(e,a)+`
44
+ `}function Zd(e){return Object.prototype.toString.call(e).replace(/^\[object (.*)\]$/,function(t,n){return n})}function Fr(e,t){switch(typeof e){case"string":return e=JSON.stringify(e),e.length>t?5>t?'"..."':e.slice(0,t-4)+'..."':e;case"object":if(e===null)return"null";if(_t(e))return"[...]";if(e.$$typeof===Ba)return(t=W(e.type))?"<"+t+">":"<...>";var n=Zd(e);if(n==="Object"){n="",t-=2;for(var a in e)if(e.hasOwnProperty(a)){var s=JSON.stringify(a);if(s!=='"'+a+'"'&&(a=s),t-=a.length-2,s=Fr(e[a],15>t?t:15),t-=s.length,0>t){n+=n===""?"...":", ...";break}n+=(n===""?"":",")+a+":"+s}return"{"+n+"}"}return n;case"function":return(t=e.displayName||e.name)?"function "+t:"function";default:return String(e)}}function Ms(e,t){return typeof e!="string"||O1.test(e)?"{"+Fr(e,t-2)+"}":e.length>t-2?5>t?'"..."':'"'+e.slice(0,t-5)+'..."':'"'+e+'"'}function Fd(e,t,n){var a=120-n.length-e.length,s=[],r;for(r in t)if(t.hasOwnProperty(r)&&r!=="children"){var c=Ms(t[r],120-n.length-r.length-1);a-=r.length+c.length+2,s.push(r+"="+c)}return s.length===0?n+"<"+e+`>
45
+ `:0<a?n+"<"+e+" "+s.join(" ")+`>
46
+ `:n+"<"+e+`
47
+ `+n+" "+s.join(`
48
+ `+n+" ")+`
49
+ `+n+`>
50
+ `}function Ix(e,t,n){var a="",s=je({},t),r;for(r in e)if(e.hasOwnProperty(r)){delete s[r];var c=120-2*n-r.length-2,d=Fr(e[r],c);t.hasOwnProperty(r)?(c=Fr(t[r],c),a+=Cs(n)+r+": "+d+`
51
+ `,a+=Oi(n)+r+": "+c+`
52
+ `):a+=Cs(n)+r+": "+d+`
53
+ `}for(var y in s)s.hasOwnProperty(y)&&(e=Fr(s[y],120-2*n-y.length-2),a+=Oi(n)+y+": "+e+`
54
+ `);return a}function Wx(e,t,n,a){var s="",r=new Map;for(g in n)n.hasOwnProperty(g)&&r.set(g.toLowerCase(),g);if(r.size===1&&r.has("children"))s+=Fd(e,t,An(a));else{for(var c in t)if(t.hasOwnProperty(c)&&c!=="children"){var d=120-2*(a+1)-c.length-1,y=r.get(c.toLowerCase());if(y!==void 0){r.delete(c.toLowerCase());var g=t[c];y=n[y];var _=Ms(g,d);d=Ms(y,d),typeof g=="object"&&g!==null&&typeof y=="object"&&y!==null&&Zd(g)==="Object"&&Zd(y)==="Object"&&(2<Object.keys(g).length||2<Object.keys(y).length||-1<_.indexOf("...")||-1<d.indexOf("..."))?s+=An(a+1)+c+`={{
55
+ `+Ix(g,y,a+2)+An(a+1)+`}}
56
+ `:(s+=Cs(a+1)+c+"="+_+`
57
+ `,s+=Oi(a+1)+c+"="+d+`
58
+ `)}else s+=An(a+1)+c+"="+Ms(t[c],d)+`
59
+ `}r.forEach(function(N){if(N!=="children"){var w=120-2*(a+1)-N.length-1;s+=Oi(a+1)+N+"="+Ms(n[N],w)+`
60
+ `}}),s=s===""?An(a)+"<"+e+`>
61
+ `:An(a)+"<"+e+`
62
+ `+s+An(a)+`>
63
+ `}return e=n.children,t=t.children,typeof e=="string"||typeof e=="number"||typeof e=="bigint"?(r="",(typeof t=="string"||typeof t=="number"||typeof t=="bigint")&&(r=""+t),s+=Iu(r,""+e,a+1)):(typeof t=="string"||typeof t=="number"||typeof t=="bigint")&&(s=e==null?s+Iu(""+t,null,a+1):s+Iu(""+t,void 0,a+1)),s}function Av(e,t){var n=Ev(e);if(n===null){for(n="",e=e.child;e;)n+=Av(e,t),e=e.sibling;return n}return An(t)+"<"+n+`>
64
+ `}function Jd(e,t){var n=Tv(e,t);if(n!==e&&(e.children.length!==1||e.children[0]!==n))return An(t)+`...
65
+ `+Jd(n,t+1);n="";var a=e.fiber._debugInfo;if(a)for(var s=0;s<a.length;s++){var r=a[s].name;typeof r=="string"&&(n+=An(t)+"<"+r+`>
66
+ `,t++)}if(a="",s=e.fiber.pendingProps,e.fiber.tag===6)a=Iu(s,e.serverProps,t),t++;else if(r=Ev(e.fiber),r!==null)if(e.serverProps===void 0){a=t;var c=120-2*a-r.length-2,d="";for(g in s)if(s.hasOwnProperty(g)&&g!=="children"){var y=Ms(s[g],15);if(c-=g.length+y.length+2,0>c){d+=" ...";break}d+=" "+g+"="+y}a=An(a)+"<"+r+d+`>
67
+ `,t++}else e.serverProps===null?(a=Fd(r,s,Cs(t)),t++):typeof e.serverProps=="string"?console.error("Should not have matched a non HostText fiber to a Text node. This is a bug in React."):(a=Wx(r,s,e.serverProps,t),t++);var g="";for(s=e.fiber.child,r=0;s&&r<e.children.length;)c=e.children[r],c.fiber===s?(g+=Jd(c,t),r++):g+=Av(s,t),s=s.sibling;for(s&&0<e.children.length&&(g+=An(t)+`...
68
+ `),s=e.serverTail,e.serverProps===null&&t--,e=0;e<s.length;e++)r=s[e],g=typeof r=="string"?g+(Oi(t)+Zr(r,120-2*t)+`
69
+ `):g+Fd(r.type,r.props,Oi(t));return n+a+g}function Kd(e){try{return`
70
+
71
+ `+Jd(e,0)}catch{return""}}function Dv(e,t,n){for(var a=t,s=null,r=0;a;)a===e&&(r=0),s={fiber:a,children:s!==null?[s]:[],serverProps:a===t?n:a===e?null:void 0,serverTail:[],distanceFromLeaf:r},r++,a=a.return;return s!==null?Kd(s).replaceAll(/^[+-]/gm,">"):""}function Rv(e,t){var n=je({},e||M1),a={tag:t};return C1.indexOf(t)!==-1&&(n.aTagInScope=null,n.buttonTagInScope=null,n.nobrTagInScope=null),iC.indexOf(t)!==-1&&(n.pTagInButtonScope=null),oC.indexOf(t)!==-1&&t!=="address"&&t!=="div"&&t!=="p"&&(n.listItemTagAutoclosing=null,n.dlItemTagAutoclosing=null),n.current=a,t==="form"&&(n.formTag=a),t==="a"&&(n.aTagInScope=a),t==="button"&&(n.buttonTagInScope=a),t==="nobr"&&(n.nobrTagInScope=a),t==="p"&&(n.pTagInButtonScope=a),t==="li"&&(n.listItemTagAutoclosing=a),(t==="dd"||t==="dt")&&(n.dlItemTagAutoclosing=a),t==="#document"||t==="html"?n.containerTagInScope=null:n.containerTagInScope||(n.containerTagInScope=a),e!==null||t!=="#document"&&t!=="html"&&t!=="body"?n.implicitRootScope===!0&&(n.implicitRootScope=!1):n.implicitRootScope=!0,n}function xv(e,t,n){switch(t){case"select":return e==="hr"||e==="option"||e==="optgroup"||e==="script"||e==="template"||e==="#text";case"optgroup":return e==="option"||e==="#text";case"option":return e==="#text";case"tr":return e==="th"||e==="td"||e==="style"||e==="script"||e==="template";case"tbody":case"thead":case"tfoot":return e==="tr"||e==="style"||e==="script"||e==="template";case"colgroup":return e==="col"||e==="template";case"table":return e==="caption"||e==="colgroup"||e==="tbody"||e==="tfoot"||e==="thead"||e==="style"||e==="script"||e==="template";case"head":return e==="base"||e==="basefont"||e==="bgsound"||e==="link"||e==="meta"||e==="title"||e==="noscript"||e==="noframes"||e==="style"||e==="script"||e==="template";case"html":if(n)break;return e==="head"||e==="body"||e==="frameset";case"frameset":return e==="frame";case"#document":if(!n)return e==="html"}switch(e){case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":return t!=="h1"&&t!=="h2"&&t!=="h3"&&t!=="h4"&&t!=="h5"&&t!=="h6";case"rp":case"rt":return sC.indexOf(t)===-1;case"caption":case"col":case"colgroup":case"frameset":case"frame":case"tbody":case"td":case"tfoot":case"th":case"thead":case"tr":return t==null;case"head":return n||t===null;case"html":return n&&t==="#document"||t===null;case"body":return n&&(t==="#document"||t==="html")||t===null}return!0}function ew(e,t){switch(e){case"address":case"article":case"aside":case"blockquote":case"center":case"details":case"dialog":case"dir":case"div":case"dl":case"fieldset":case"figcaption":case"figure":case"footer":case"header":case"hgroup":case"main":case"menu":case"nav":case"ol":case"p":case"section":case"summary":case"ul":case"pre":case"listing":case"table":case"hr":case"xmp":case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":return t.pTagInButtonScope;case"form":return t.formTag||t.pTagInButtonScope;case"li":return t.listItemTagAutoclosing;case"dd":case"dt":return t.dlItemTagAutoclosing;case"button":return t.buttonTagInScope;case"a":return t.aTagInScope;case"nobr":return t.nobrTagInScope}return null}function wv(e,t){for(;e;){switch(e.tag){case 5:case 26:case 27:if(e.type===t)return e}e=e.return}return null}function Id(e,t){t=t||M1;var n=t.current;if(t=(n=xv(e,n&&n.tag,t.implicitRootScope)?null:n)?null:ew(e,t),t=n||t,!t)return!0;var a=t.tag;if(t=String(!!n)+"|"+e+"|"+a,ff[t])return!1;ff[t]=!0;var s=(t=_n)?wv(t.return,a):null,r=t!==null&&s!==null?Dv(s,t,null):"",c="<"+e+">";return n?(n="",a==="table"&&e==="tr"&&(n+=" Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser."),console.error(`In HTML, %s cannot be a child of <%s>.%s
72
+ This will cause a hydration error.%s`,c,a,n,r)):console.error(`In HTML, %s cannot be a descendant of <%s>.
73
+ This will cause a hydration error.%s`,c,a,r),t&&(e=t.return,s===null||e===null||s===e&&e._debugOwner===t._debugOwner||se(s,function(){console.error(`<%s> cannot contain a nested %s.
74
+ See this log for the ancestor stack trace.`,a,c)})),!1}function Wu(e,t,n){if(n||xv("#text",t,!1))return!0;if(n="#text|"+t,ff[n])return!1;ff[n]=!0;var a=(n=_n)?wv(n,t):null;return n=n!==null&&a!==null?Dv(a,n,n.tag!==6?{children:null}:null):"",/\S/.test(e)?console.error(`In HTML, text nodes cannot be a child of <%s>.
75
+ This will cause a hydration error.%s`,t,n):console.error(`In HTML, whitespace text nodes cannot be a child of <%s>. Make sure you don't have any extra whitespace between tags on each line of your source code.
76
+ This will cause a hydration error.%s`,t,n),!1}function Jr(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}function tw(e){return e.replace(uC,function(t,n){return n.toUpperCase()})}function Ov(e,t,n){var a=t.indexOf("--")===0;a||(-1<t.indexOf("-")?Js.hasOwnProperty(t)&&Js[t]||(Js[t]=!0,console.error("Unsupported style property %s. Did you mean %s?",t,tw(t.replace(lC,"ms-")))):rC.test(t)?Js.hasOwnProperty(t)&&Js[t]||(Js[t]=!0,console.error("Unsupported vendor-prefixed style property %s. Did you mean %s?",t,t.charAt(0).toUpperCase()+t.slice(1))):!U1.test(n)||mm.hasOwnProperty(n)&&mm[n]||(mm[n]=!0,console.error(`Style property values shouldn't contain a semicolon. Try "%s: %s" instead.`,t,n.replace(U1,""))),typeof n=="number"&&(isNaN(n)?z1||(z1=!0,console.error("`NaN` is an invalid value for the `%s` css style property.",t)):isFinite(n)||V1||(V1=!0,console.error("`Infinity` is an invalid value for the `%s` css style property.",t)))),n==null||typeof n=="boolean"||n===""?a?e.setProperty(t,""):t==="float"?e.cssFloat="":e[t]="":a?e.setProperty(t,n):typeof n!="number"||n===0||j1.has(t)?t==="float"?e.cssFloat=n:(Zt(n,t),e[t]=(""+n).trim()):e[t]=n+"px"}function Cv(e,t,n){if(t!=null&&typeof t!="object")throw Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");if(t&&Object.freeze(t),e=e.style,n!=null){if(t){var a={};if(n){for(var s in n)if(n.hasOwnProperty(s)&&!t.hasOwnProperty(s))for(var r=pm[s]||[s],c=0;c<r.length;c++)a[r[c]]=s}for(var d in t)if(t.hasOwnProperty(d)&&(!n||n[d]!==t[d]))for(s=pm[d]||[d],r=0;r<s.length;r++)a[s[r]]=d;d={};for(var y in t)for(s=pm[y]||[y],r=0;r<s.length;r++)d[s[r]]=y;y={};for(var g in a)if(s=a[g],(r=d[g])&&s!==r&&(c=s+","+r,!y[c])){y[c]=!0,c=console;var _=t[s];c.error.call(c,"%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.",_==null||typeof _=="boolean"||_===""?"Removing":"Updating",s,r)}}for(var N in n)!n.hasOwnProperty(N)||t!=null&&t.hasOwnProperty(N)||(N.indexOf("--")===0?e.setProperty(N,""):N==="float"?e.cssFloat="":e[N]="");for(var w in t)g=t[w],t.hasOwnProperty(w)&&n[w]!==g&&Ov(e,w,g)}else for(a in t)t.hasOwnProperty(a)&&Ov(e,a,t[a])}function Kr(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}}function Mv(e){return cC.get(e)||e}function nw(e,t){if(ua.call(Is,t)&&Is[t])return!0;if(dC.test(t)){if(e="aria-"+t.slice(4).toLowerCase(),e=B1.hasOwnProperty(e)?e:null,e==null)return console.error("Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.",t),Is[t]=!0;if(t!==e)return console.error("Invalid ARIA attribute `%s`. Did you mean `%s`?",t,e),Is[t]=!0}if(fC.test(t)){if(e=t.toLowerCase(),e=B1.hasOwnProperty(e)?e:null,e==null)return Is[t]=!0,!1;t!==e&&(console.error("Unknown ARIA attribute `%s`. Did you mean `%s`?",t,e),Is[t]=!0)}return!0}function aw(e,t){var n=[],a;for(a in t)nw(e,a)||n.push(a);t=n.map(function(s){return"`"+s+"`"}).join(", "),n.length===1?console.error("Invalid aria prop %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props",t,e):1<n.length&&console.error("Invalid aria props %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props",t,e)}function ow(e,t,n,a){if(ua.call(sn,t)&&sn[t])return!0;var s=t.toLowerCase();if(s==="onfocusin"||s==="onfocusout")return console.error("React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React."),sn[t]=!0;if(typeof n=="function"&&(e==="form"&&t==="action"||e==="input"&&t==="formAction"||e==="button"&&t==="formAction"))return!0;if(a!=null){if(e=a.possibleRegistrationNames,a.registrationNameDependencies.hasOwnProperty(t))return!0;if(a=e.hasOwnProperty(s)?e[s]:null,a!=null)return console.error("Invalid event handler property `%s`. Did you mean `%s`?",t,a),sn[t]=!0;if(H1.test(t))return console.error("Unknown event handler property `%s`. It will be ignored.",t),sn[t]=!0}else if(H1.test(t))return hC.test(t)&&console.error("Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.",t),sn[t]=!0;if(pC.test(t)||mC.test(t))return!0;if(s==="innerhtml")return console.error("Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`."),sn[t]=!0;if(s==="aria")return console.error("The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead."),sn[t]=!0;if(s==="is"&&n!==null&&n!==void 0&&typeof n!="string")return console.error("Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.",typeof n),sn[t]=!0;if(typeof n=="number"&&isNaN(n))return console.error("Received NaN for the `%s` attribute. If this is expected, cast the value to a string.",t),sn[t]=!0;if(hf.hasOwnProperty(s)){if(s=hf[s],s!==t)return console.error("Invalid DOM property `%s`. Did you mean `%s`?",t,s),sn[t]=!0}else if(t!==s)return console.error("React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.",t,s),sn[t]=!0;switch(t){case"dangerouslySetInnerHTML":case"children":case"style":case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":return!0;case"innerText":case"textContent":return!0}switch(typeof n){case"boolean":switch(t){case"autoFocus":case"checked":case"multiple":case"muted":case"selected":case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":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":case"capture":case"download":case"inert":return!0;default:return s=t.toLowerCase().slice(0,5),s==="data-"||s==="aria-"?!0:(n?console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.',n,t,t,n,t):console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.',n,t,t,n,t,t,t),sn[t]=!0)}case"function":case"symbol":return sn[t]=!0,!1;case"string":if(n==="false"||n==="true"){switch(t){case"checked":case"selected":case"multiple":case"muted":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":case"inert":break;default:return!0}console.error("Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?",n,t,n==="false"?"The browser will interpret it as a truthy value.":'Although this works, it will not work as expected if you pass the string "false".',t,n),sn[t]=!0}}return!0}function iw(e,t,n){var a=[],s;for(s in t)ow(e,s,t[s],n)||a.push(s);t=a.map(function(r){return"`"+r+"`"}).join(", "),a.length===1?console.error("Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://react.dev/link/attribute-behavior ",t,e):1<a.length&&console.error("Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://react.dev/link/attribute-behavior ",t,e)}function Ir(e){return yC.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function Ia(){}function Wd(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}function _v(e){var t=J(e);if(t&&(e=t.stateNode)){var n=e[on]||null;e:switch(e=t.stateNode,t.type){case"input":if($d(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(Fe(t,"name"),n=n.querySelectorAll('input[name="'+Hn(""+t)+'"][type="radio"]'),t=0;t<n.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var s=a[on]||null;if(!s)throw Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.");$d(a,s.value,s.defaultValue,s.defaultValue,s.checked,s.defaultChecked,s.type,s.name)}}for(t=0;t<n.length;t++)a=n[t],a.form===e.form&&dv(a)}break e;case"textarea":bv(e,n.value,n.defaultValue);break e;case"select":t=n.value,t!=null&&Os(e,!!n.multiple,t,!1)}}}function Nv(e,t,n){if(ym)return e(t,n);ym=!0;try{var a=e(t);return a}finally{if(ym=!1,(Ws!==null||er!==null)&&(ks(),Ws&&(t=Ws,e=er,er=Ws=null,_v(t),e)))for(t=0;t<e.length;t++)_v(e[t])}}function Wr(e,t){var n=e.stateNode;if(n===null)return null;var a=n[on]||null;if(a===null)return null;n=a[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(a=!a.disabled)||(e=e.type,a=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!a;break e;default:e=!1}if(e)return null;if(n&&typeof n!="function")throw Error("Expected `"+t+"` listener to be a function, instead got a value of `"+typeof n+"` type.");return n}function Uv(){if(pf)return pf;var e,t=vm,n=t.length,a,s="value"in Fo?Fo.value:Fo.textContent,r=s.length;for(e=0;e<n&&t[e]===s[e];e++);var c=n-e;for(a=1;a<=c&&t[n-a]===s[r-a];a++);return pf=s.slice(e,1<a?1-a:void 0)}function ec(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 tc(){return!0}function zv(){return!1}function pn(e){function t(n,a,s,r,c){this._reactName=n,this._targetInst=s,this.type=a,this.nativeEvent=r,this.target=c,this.currentTarget=null;for(var d in e)e.hasOwnProperty(d)&&(n=e[d],this[d]=n?n(r):r[d]);return this.isDefaultPrevented=(r.defaultPrevented!=null?r.defaultPrevented:r.returnValue===!1)?tc:zv,this.isPropagationStopped=zv,this}return je(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var n=this.nativeEvent;n&&(n.preventDefault?n.preventDefault():typeof n.returnValue!="unknown"&&(n.returnValue=!1),this.isDefaultPrevented=tc)},stopPropagation:function(){var n=this.nativeEvent;n&&(n.stopPropagation?n.stopPropagation():typeof n.cancelBubble!="unknown"&&(n.cancelBubble=!0),this.isPropagationStopped=tc)},persist:function(){},isPersistent:tc}),t}function sw(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=CC[e])?!!t[e]:!1}function eh(){return sw}function Vv(e,t){switch(e){case"keyup":return qC.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==G1;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function jv(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}function rw(e,t){switch(e){case"compositionend":return jv(t);case"keypress":return t.which!==X1?null:(Q1=!0,$1);case"textInput":return e=t.data,e===$1&&Q1?null:e;default:return null}}function lw(e,t){if(tr)return e==="compositionend"||!Em&&Vv(e,t)?(e=Uv(),pf=vm=Fo=null,tr=!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 P1&&t.locale!=="ko"?null:t.data;default:return null}}function Bv(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t==="input"?!!GC[e.type]:t==="textarea"}function uw(e){if(!Ga)return!1;e="on"+e;var t=e in document;return t||(t=document.createElement("div"),t.setAttribute(e,"return;"),t=typeof t[e]=="function"),t}function Lv(e,t,n,a){Ws?er?er.push(a):er=[a]:Ws=a,t=Qc(t,"onChange"),0<t.length&&(n=new mf("onChange","change",null,n,a),e.push({event:n,listeners:t}))}function cw(e){SS(e,0)}function nc(e){var t=de(e);if(dv(t))return e}function Hv(e,t){if(e==="change")return t}function kv(){Bl&&(Bl.detachEvent("onpropertychange",qv),Ll=Bl=null)}function qv(e){if(e.propertyName==="value"&&nc(Ll)){var t=[];Lv(t,Ll,e,Wd(e)),Nv(cw,t)}}function fw(e,t,n){e==="focusin"?(kv(),Bl=t,Ll=n,Bl.attachEvent("onpropertychange",qv)):e==="focusout"&&kv()}function dw(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return nc(Ll)}function hw(e,t){if(e==="click")return nc(t)}function pw(e,t){if(e==="input"||e==="change")return nc(t)}function mw(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}function el(e,t){if(rn(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a<n.length;a++){var s=n[a];if(!ua.call(t,s)||!rn(e[s],t[s]))return!1}return!0}function Yv(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Gv(e,t){var n=Yv(e);e=0;for(var a;n;){if(n.nodeType===3){if(a=e+n.textContent.length,e<=t&&a>=t)return{node:n,offset:t-e};e=a}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=Yv(n)}}function Pv(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Pv(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Xv(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=Ku(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=Ku(e.document)}return t}function th(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function $v(e,t,n){var a=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Dm||nr==null||nr!==Ku(a)||(a=nr,"selectionStart"in a&&th(a)?a={start:a.selectionStart,end:a.selectionEnd}:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection(),a={anchorNode:a.anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset}),Hl&&el(Hl,a)||(Hl=a,a=Qc(Am,"onSelect"),0<a.length&&(t=new mf("onSelect","select",null,t,n),e.push({event:t,listeners:a}),t.target=nr)))}function Ci(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}function Mi(e){if(Rm[e])return Rm[e];if(!ar[e])return e;var t=ar[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in F1)return Rm[e]=t[n];return e}function ia(e,t){eT.set(e,t),Ge(t,[e])}function yw(e){for(var t=gf,n=0;n<e.length;n++){var a=e[n];if(typeof a=="object"&&a!==null)if(_t(a)&&a.length===2&&typeof a[0]=="string"){if(t!==gf&&t!==Mm)return Om;t=Mm}else return Om;else{if(typeof a=="function"||typeof a=="string"&&50<a.length||t!==gf&&t!==Cm)return Om;t=Cm}}return t}function nh(e,t,n,a){for(var s in e)ua.call(e,s)&&s[0]!=="_"&&Ta(s,e[s],t,n,a)}function Ta(e,t,n,a,s){switch(typeof t){case"object":if(t===null){t="null";break}else{if(t.$$typeof===Ba){var r=W(t.type)||"…",c=t.key;t=t.props;var d=Object.keys(t),y=d.length;if(c==null&&y===0){t="<"+r+" />";break}if(3>a||y===1&&d[0]==="children"&&c==null){t="<"+r+" … />";break}n.push([s+"  ".repeat(a)+e,"<"+r]),c!==null&&Ta("key",c,n,a+1,s),e=!1;for(var g in t)g==="children"?t.children!=null&&(!_t(t.children)||0<t.children.length)&&(e=!0):ua.call(t,g)&&g[0]!=="_"&&Ta(g,t[g],n,a+1,s);n.push(["",e?">…</"+r+">":"/>"]);return}if(r=Object.prototype.toString.call(t),r=r.slice(8,r.length-1),r==="Array"){if(g=yw(t),g===Cm||g===gf){t=JSON.stringify(t);break}else if(g===Mm){for(n.push([s+"  ".repeat(a)+e,""]),e=0;e<t.length;e++)r=t[e],Ta(r[0],r[1],n,a+1,s);return}}if(r==="Promise"){if(t.status==="fulfilled"){if(r=n.length,Ta(e,t.value,n,a,s),n.length>r){n=n[r],n[1]="Promise<"+(n[1]||"Object")+">";return}}else if(t.status==="rejected"&&(r=n.length,Ta(e,t.reason,n,a,s),n.length>r)){n=n[r],n[1]="Rejected Promise<"+n[1]+">";return}n.push(["  ".repeat(a)+e,"Promise"]);return}r==="Object"&&(g=Object.getPrototypeOf(t))&&typeof g.constructor=="function"&&(r=g.constructor.name),n.push([s+"  ".repeat(a)+e,r==="Object"?3>a?"":"…":r]),3>a&&nh(t,n,a+1,s);return}case"function":t=t.name===""?"() => {}":t.name+"() {}";break;case"string":t=t===JC?"…":JSON.stringify(t);break;case"undefined":t="undefined";break;case"boolean":t=t?"true":"false";break;default:t=String(t)}n.push([s+"  ".repeat(a)+e,t])}function Qv(e,t,n,a){var s=!0;for(c in e)c in t||(n.push([vf+"  ".repeat(a)+c,"…"]),s=!1);for(var r in t)if(r in e){var c=e[r],d=t[r];if(c!==d){if(a===0&&r==="children")s="  ".repeat(a)+r,n.push([vf+s,"…"],[bf+s,"…"]);else{if(!(3<=a)){if(typeof c=="object"&&typeof d=="object"&&c!==null&&d!==null&&c.$$typeof===d.$$typeof)if(d.$$typeof===Ba){if(c.type===d.type&&c.key===d.key){c=W(d.type)||"…",s="  ".repeat(a)+r,c="<"+c+" … />",n.push([vf+s,c],[bf+s,c]),s=!1;continue}}else{var y=Object.prototype.toString.call(c),g=Object.prototype.toString.call(d);if(y===g&&(g==="[object Object]"||g==="[object Array]")){y=[aT+"  ".repeat(a)+r,g==="[object Array]"?"Array":""],n.push(y),g=n.length,Qv(c,d,n,a+1)?g===n.length&&(y[1]="Referentially unequal but deeply equal objects. Consider memoization."):s=!1;continue}}else if(typeof c=="function"&&typeof d=="function"&&c.name===d.name&&c.length===d.length&&(y=Function.prototype.toString.call(c),g=Function.prototype.toString.call(d),y===g)){c=d.name===""?"() => {}":d.name+"() {}",n.push([aT+"  ".repeat(a)+r,c+" Referentially unequal function closure. Consider memoization."]);continue}}Ta(r,c,n,a,vf),Ta(r,d,n,a,bf)}s=!1}}else n.push([bf+"  ".repeat(a)+r,"…"]),s=!1;return s}function sa(e){Ye=e&63?"Blocking":e&64?"Gesture":e&4194176?"Transition":e&62914560?"Suspense":e&2080374784?"Idle":"Other"}function Ea(e,t,n,a){ot&&(Ko.start=t,Ko.end=n,lo.color="warning",lo.tooltipText=a,lo.properties=null,(e=e._debugTask)?e.run(performance.measure.bind(performance,a,Ko)):performance.measure(a,Ko))}function ac(e,t,n){Ea(e,t,n,"Reconnect")}function oc(e,t,n,a,s){var r=F(e);if(r!==null&&ot){var c=e.alternate,d=e.actualDuration;if(c===null||c.child!==e.child)for(var y=e.child;y!==null;y=y.sibling)d-=y.actualDuration;a=.5>d?a?"tertiary-light":"primary-light":10>d?a?"tertiary":"primary":100>d?a?"tertiary-dark":"primary-dark":"error";var g=e.memoizedProps;d=e._debugTask,g!==null&&c!==null&&c.memoizedProps!==g?(y=[KC],g=Qv(c.memoizedProps,g,y,0),1<y.length&&(g&&!Jo&&(c.lanes&s)===0&&100<e.actualDuration?(Jo=!0,y[0]=IC,lo.color="warning",lo.tooltipText=oT):(lo.color=a,lo.tooltipText=r),lo.properties=y,Ko.start=t,Ko.end=n,d!=null?d.run(performance.measure.bind(performance,"​"+r,Ko)):performance.measure("​"+r,Ko))):d!=null?d.run(console.timeStamp.bind(console,r,t,n,Yn,void 0,a)):console.timeStamp(r,t,n,Yn,void 0,a)}}function ah(e,t,n,a){if(ot){var s=F(e);if(s!==null){for(var r=null,c=[],d=0;d<a.length;d++){var y=a[d];r==null&&y.source!==null&&(r=y.source._debugTask),y=y.value,c.push(["Error",typeof y=="object"&&y!==null&&typeof y.message=="string"?String(y.message):String(y)])}e.key!==null&&Ta("key",e.key,c,0,""),e.memoizedProps!==null&&nh(e.memoizedProps,c,0,""),r==null&&(r=e._debugTask),e={start:t,end:n,detail:{devtools:{color:"error",track:Yn,tooltipText:e.tag===13?"Hydration failed":"Error boundary caught an error",properties:c}}},r?r.run(performance.measure.bind(performance,"​"+s,e)):performance.measure("​"+s,e)}}}function Aa(e,t,n,a,s){if(s!==null){if(ot){var r=F(e);if(r!==null){a=[];for(var c=0;c<s.length;c++){var d=s[c].value;a.push(["Error",typeof d=="object"&&d!==null&&typeof d.message=="string"?String(d.message):String(d)])}e.key!==null&&Ta("key",e.key,a,0,""),e.memoizedProps!==null&&nh(e.memoizedProps,a,0,""),t={start:t,end:n,detail:{devtools:{color:"error",track:Yn,tooltipText:"A lifecycle or effect errored",properties:a}}},(e=e._debugTask)?e.run(performance.measure.bind(performance,"​"+r,t)):performance.measure("​"+r,t)}}}else r=F(e),r!==null&&ot&&(s=1>a?"secondary-light":100>a?"secondary":500>a?"secondary-dark":"error",(e=e._debugTask)?e.run(console.timeStamp.bind(console,r,t,n,Yn,void 0,s)):console.timeStamp(r,t,n,Yn,void 0,s))}function gw(e,t,n,a){if(ot&&!(t<=e)){var s=(n&738197653)===n?"tertiary-dark":"primary-dark";n=(n&536870912)===n?"Prepared":(n&201326741)===n?"Hydrated":"Render",a?a.run(console.timeStamp.bind(console,n,e,t,Ye,ke,s)):console.timeStamp(n,e,t,Ye,ke,s)}}function Zv(e,t,n,a){!ot||t<=e||(n=(n&738197653)===n?"tertiary-dark":"primary-dark",a?a.run(console.timeStamp.bind(console,"Prewarm",e,t,Ye,ke,n)):console.timeStamp("Prewarm",e,t,Ye,ke,n))}function Fv(e,t,n,a){!ot||t<=e||(n=(n&738197653)===n?"tertiary-dark":"primary-dark",a?a.run(console.timeStamp.bind(console,"Suspended",e,t,Ye,ke,n)):console.timeStamp("Suspended",e,t,Ye,ke,n))}function vw(e,t,n,a,s,r){if(ot&&!(t<=e)){n=[];for(var c=0;c<a.length;c++){var d=a[c].value;n.push(["Recoverable Error",typeof d=="object"&&d!==null&&typeof d.message=="string"?String(d.message):String(d)])}e={start:e,end:t,detail:{devtools:{color:"primary-dark",track:Ye,trackGroup:ke,tooltipText:s?"Hydration Failed":"Recovered after Error",properties:n}}},r?r.run(performance.measure.bind(performance,"Recovered",e)):performance.measure("Recovered",e)}}function oh(e,t,n,a){!ot||t<=e||(a?a.run(console.timeStamp.bind(console,"Errored",e,t,Ye,ke,"error")):console.timeStamp("Errored",e,t,Ye,ke,"error"))}function bw(e,t,n,a){!ot||t<=e||(a?a.run(console.timeStamp.bind(console,n,e,t,Ye,ke,"secondary-light")):console.timeStamp(n,e,t,Ye,ke,"secondary-light"))}function Jv(e,t,n,a,s){if(ot&&!(t<=e)){for(var r=[],c=0;c<n.length;c++){var d=n[c].value;r.push(["Error",typeof d=="object"&&d!==null&&typeof d.message=="string"?String(d.message):String(d)])}e={start:e,end:t,detail:{devtools:{color:"error",track:Ye,trackGroup:ke,tooltipText:a?"Remaining Effects Errored":"Commit Errored",properties:r}}},s?s.run(performance.measure.bind(performance,"Errored",e)):performance.measure("Errored",e)}}function ih(e,t,n){!ot||t<=e||console.timeStamp("Animating",e,t,Ye,ke,"secondary-dark")}function ic(){for(var e=or,t=_m=or=0;t<e;){var n=Gn[t];Gn[t++]=null;var a=Gn[t];Gn[t++]=null;var s=Gn[t];Gn[t++]=null;var r=Gn[t];if(Gn[t++]=null,a!==null&&s!==null){var c=a.pending;c===null?s.next=s:(s.next=c.next,c.next=s),a.pending=s}r!==0&&Kv(n,s,r)}}function sc(e,t,n,a){Gn[or++]=e,Gn[or++]=t,Gn[or++]=n,Gn[or++]=a,_m|=a,e.lanes|=a,e=e.alternate,e!==null&&(e.lanes|=a)}function sh(e,t,n,a){return sc(e,t,n,a),rc(e)}function Ft(e,t){return sc(e,null,null,t),rc(e)}function Kv(e,t,n){e.lanes|=n;var a=e.alternate;a!==null&&(a.lanes|=n);for(var s=!1,r=e.return;r!==null;)r.childLanes|=n,a=r.alternate,a!==null&&(a.childLanes|=n),r.tag===22&&(e=r.stateNode,e===null||e._visibility&kl||(s=!0)),e=r,r=r.return;return e.tag===3?(r=e.stateNode,s&&t!==null&&(s=31-an(n),e=r.hiddenUpdates,a=e[s],a===null?e[s]=[t]:a.push(t),t.lane=n|536870912),r):null}function rc(e){if(hu>pM)throw ss=hu=0,pu=cy=null,Error("Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.");ss>mM&&(ss=0,pu=null,console.error("Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.")),e.alternate===null&&(e.flags&4098)!==0&&hS(e);for(var t=e,n=t.return;n!==null;)t.alternate===null&&(t.flags&4098)!==0&&hS(e),t=n,n=t.return;return t.tag===3?t.stateNode:null}function _i(e){if(Pn===null)return e;var t=Pn(e);return t===void 0?e:t.current}function rh(e){if(Pn===null)return e;var t=Pn(e);return t===void 0?e!=null&&typeof e.render=="function"&&(t=_i(e.render),e.render!==t)?(t={$$typeof:Ol,render:t},e.displayName!==void 0&&(t.displayName=e.displayName),t):e:t.current}function Iv(e,t){if(Pn===null)return!1;var n=e.elementType;t=t.type;var a=!1,s=typeof t=="object"&&t!==null?t.$$typeof:null;switch(e.tag){case 1:typeof t=="function"&&(a=!0);break;case 0:(typeof t=="function"||s===Mn)&&(a=!0);break;case 11:(s===Ol||s===Mn)&&(a=!0);break;case 14:case 15:(s===of||s===Mn)&&(a=!0);break;default:return!1}return!!(a&&(e=Pn(n),e!==void 0&&e===Pn(t)))}function Wv(e){Pn!==null&&typeof WeakSet=="function"&&(ir===null&&(ir=new WeakSet),ir.add(e))}function e0(e,t,n){do{var a=e,s=a.alternate,r=a.child,c=a.sibling,d=a.tag;a=a.type;var y=null;switch(d){case 0:case 15:case 1:y=a;break;case 11:y=a.render}if(Pn===null)throw Error("Expected resolveFamily to be set during hot reload.");var g=!1;if(a=!1,y!==null&&(y=Pn(y),y!==void 0&&(n.has(y)?a=!0:t.has(y)&&(d===1?a=!0:g=!0))),ir!==null&&(ir.has(e)||s!==null&&ir.has(s))&&(a=!0),a&&(e._debugNeedsRemount=!0),(a||g)&&(s=Ft(e,2),s!==null&&ht(s,e,2)),r===null||a||e0(r,t,n),c===null)break;e=c}while(!0)}function Sw(e,t,n,a){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=a,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null,this.actualDuration=-0,this.actualStartTime=-1.1,this.treeBaseDuration=this.selfBaseDuration=-0,this._debugTask=this._debugStack=this._debugOwner=this._debugInfo=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,iT||typeof Object.preventExtensions!="function"||Object.preventExtensions(this)}function lh(e){return e=e.prototype,!(!e||!e.isReactComponent)}function Wa(e,t){var n=e.alternate;switch(n===null?(n=T(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n._debugOwner=e._debugOwner,n._debugStack=e._debugStack,n._debugTask=e._debugTask,n._debugHookTypes=e._debugHookTypes,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null,n.actualDuration=-0,n.actualStartTime=-1.1),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,_debugThenableState:t._debugThenableState},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.refCleanup=e.refCleanup,n.selfBaseDuration=e.selfBaseDuration,n.treeBaseDuration=e.treeBaseDuration,n._debugInfo=e._debugInfo,n._debugNeedsRemount=e._debugNeedsRemount,n.tag){case 0:case 15:n.type=_i(e.type);break;case 1:n.type=_i(e.type);break;case 11:n.type=rh(e.type)}return n}function t0(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.selfBaseDuration=0,e.treeBaseDuration=0):(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,_debugThenableState:t._debugThenableState},e.selfBaseDuration=n.selfBaseDuration,e.treeBaseDuration=n.treeBaseDuration),e}function uh(e,t,n,a,s,r){var c=0,d=e;if(typeof e=="function")lh(e)&&(c=1),d=_i(d);else if(typeof e=="string")c=ae(),c=CO(e,n,c)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case nm:return t=T(31,n,t,s),t.elementType=nm,t.lanes=r,t;case Qs:return Ni(n.children,s,r,t);case af:c=8,s|=Kt,s|=ca;break;case Ip:return e=n,a=s,typeof e.id!="string"&&console.error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.',typeof e.id),t=T(12,e,t,a|_e),t.elementType=Ip,t.lanes=r,t.stateNode={effectDuration:0,passiveEffectDuration:0},t;case em:return t=T(13,n,t,s),t.elementType=em,t.lanes=r,t;case tm:return t=T(19,n,t,s),t.elementType=tm,t.lanes=r,t;default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case La:c=10;break e;case Wp:c=9;break e;case Ol:c=11,d=rh(d);break e;case of:c=14;break e;case Mn:c=16,d=null;break e}d="",(e===void 0||typeof e=="object"&&e!==null&&Object.keys(e).length===0)&&(d+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."),e===null?n="null":_t(e)?n="array":e!==void 0&&e.$$typeof===Ba?(n="<"+(W(e.type)||"Unknown")+" />",d=" Did you accidentally export a JSX literal instead of a component?"):n=typeof e,(c=a?ce(a):null)&&(d+=`
77
+
78
+ Check the render method of \``+c+"`."),c=29,n=Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: "+(n+"."+d)),d=null}return t=T(c,n,t,s),t.elementType=e,t.type=d,t.lanes=r,t._debugOwner=a,t}function lc(e,t,n){return t=uh(e.type,e.key,e.props,e._owner,t,n),t._debugOwner=e._owner,t._debugStack=e._debugStack,t._debugTask=e._debugTask,t}function Ni(e,t,n,a){return e=T(7,e,a,t),e.lanes=n,e}function ch(e,t,n){return e=T(6,e,null,t),e.lanes=n,e}function n0(e){var t=T(18,null,null,Ee);return t.stateNode=e,t}function fh(e,t,n){return t=T(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Dn(e,t){if(typeof e=="object"&&e!==null){var n=Nm.get(e);return n!==void 0?n:(t={value:e,source:t,stack:we(t)},Nm.set(e,t),t)}return{value:e,source:t,stack:we(t)}}function eo(e,t){Uo(),sr[rr++]=ql,sr[rr++]=Sf,Sf=e,ql=t}function a0(e,t,n){Uo(),Xn[$n++]=co,Xn[$n++]=fo,Xn[$n++]=Xi,Xi=e;var a=co;e=fo;var s=32-an(a)-1;a&=~(1<<s),n+=1;var r=32-an(t)+s;if(30<r){var c=s-s%5;r=(a&(1<<c)-1).toString(32),a>>=c,s-=c,co=1<<32-an(t)+s|n<<s|a,fo=r+e}else co=1<<r|n<<s|a,fo=e}function dh(e){Uo(),e.return!==null&&(eo(e,1),a0(e,1,0))}function hh(e){for(;e===Sf;)Sf=sr[--rr],sr[rr]=null,ql=sr[--rr],sr[rr]=null;for(;e===Xi;)Xi=Xn[--$n],Xn[$n]=null,fo=Xn[--$n],Xn[$n]=null,co=Xn[--$n],Xn[$n]=null}function o0(){return Uo(),Xi!==null?{id:co,overflow:fo}:null}function i0(e,t){Uo(),Xn[$n++]=co,Xn[$n++]=fo,Xn[$n++]=Xi,co=t.id,fo=t.overflow,Xi=e}function Uo(){Le||console.error("Expected to be hydrating. This is a bug in React. Please file an issue.")}function Ui(e,t){if(e.return===null){if(Nn===null)Nn={fiber:e,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:t};else{if(Nn.fiber!==e)throw Error("Saw multiple hydration diff roots in a pass. This is a bug in React.");Nn.distanceFromLeaf>t&&(Nn.distanceFromLeaf=t)}return Nn}var n=Ui(e.return,t+1).children;return 0<n.length&&n[n.length-1].fiber===e?(n=n[n.length-1],n.distanceFromLeaf>t&&(n.distanceFromLeaf=t),n):(t={fiber:e,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:t},n.push(t),t)}function s0(){Le&&console.error("We should not be hydrating here. This is a bug in React. Please file a bug.")}function uc(e,t){Pa||(e=Ui(e,0),e.serverProps=null,t!==null&&(t=LS(t),e.serverTail.push(t)))}function zo(e){var t=1<arguments.length&&arguments[1]!==void 0?arguments[1]:!1,n="",a=Nn;throw a!==null&&(Nn=null,n=Kd(a)),tl(Dn(Error("Hydration failed because the server rendered "+(t?"text":"HTML")+` didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:
79
+
80
+ - A server/client branch \`if (typeof window !== 'undefined')\`.
81
+ - Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
82
+ - Date formatting in a user's locale which doesn't match the server.
83
+ - External changing data without sending a snapshot of it along with the HTML.
84
+ - Invalid HTML tag nesting.
85
+
86
+ It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
87
+
88
+ https://react.dev/link/hydration-mismatch`+n),e)),Um}function r0(e){var t=e.stateNode,n=e.type,a=e.memoizedProps;switch(t[Pt]=e,t[on]=a,Up(n,a),n){case"dialog":He("cancel",t),He("close",t);break;case"iframe":case"object":case"embed":He("load",t);break;case"video":case"audio":for(n=0;n<mu.length;n++)He(mu[n],t);break;case"source":He("error",t);break;case"img":case"image":case"link":He("error",t),He("load",t);break;case"details":He("toggle",t);break;case"input":tn("input",a),He("invalid",t),hv(t,a),pv(t,a.value,a.defaultValue,a.checked,a.defaultChecked,a.type,a.name,!0);break;case"option":mv(t,a);break;case"select":tn("select",a),He("invalid",t),gv(t,a);break;case"textarea":tn("textarea",a),He("invalid",t),vv(t,a),Sv(t,a.value,a.defaultValue,a.children)}n=a.children,typeof n!="string"&&typeof n!="number"&&typeof n!="bigint"||t.textContent===""+n||a.suppressHydrationWarning===!0||DS(t.textContent,n)?(a.popover!=null&&(He("beforetoggle",t),He("toggle",t)),a.onScroll!=null&&He("scroll",t),a.onScrollEnd!=null&&He("scrollend",t),a.onClick!=null&&(t.onclick=Ia),t=!0):t=!1,t||zo(e,!0)}function l0(e){for(Xt=e.return;Xt;)switch(Xt.tag){case 5:case 31:case 13:Qn=!1;return;case 27:case 3:Qn=!0;return;default:Xt=Xt.return}}function _s(e){if(e!==Xt)return!1;if(!Le)return l0(e),Le=!0,!1;var t=e.tag,n;if((n=t!==3&&t!==27)&&((n=t===5)&&(n=e.type,n=!(n!=="form"&&n!=="button")||Lp(e.type,e.memoizedProps)),n=!n),n&&it){for(n=it;n;){var a=Ui(e,0),s=LS(n);a.serverTail.push(s),n=s.type==="Suspense"?Yp(n):Cn(n.nextSibling)}zo(e)}if(l0(e),t===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");it=Yp(e)}else if(t===31){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");it=Yp(e)}else t===27?(t=it,Po(e.type)?(e=Ey,Ey=null,it=e):it=t):it=Xt?Cn(e.stateNode.nextSibling):null;return!0}function zi(){it=Xt=null,Pa=Le=!1}function ph(){var e=Wo;return e!==null&&(fn===null?fn=e:fn.push.apply(fn,e),Wo=null),e}function tl(e){Wo===null?Wo=[e]:Wo.push(e)}function mh(){var e=Nn;if(e!==null){Nn=null;for(var t=Kd(e);0<e.children.length;)e=e.children[0];se(e.fiber,function(){console.error(`A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:
89
+
90
+ - A server/client branch \`if (typeof window !== 'undefined')\`.
91
+ - Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
92
+ - Date formatting in a user's locale which doesn't match the server.
93
+ - External changing data without sending a snapshot of it along with the HTML.
94
+ - Invalid HTML tag nesting.
95
+
96
+ It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
97
+
98
+ %s%s`,"https://react.dev/link/hydration-mismatch",t)})}}function cc(){lr=Tf=null,ur=!1}function Vo(e,t,n){be(zm,t._currentValue,e),t._currentValue=n,be(Vm,t._currentRenderer,e),t._currentRenderer!==void 0&&t._currentRenderer!==null&&t._currentRenderer!==rT&&console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."),t._currentRenderer=rT}function to(e,t){e._currentValue=zm.current;var n=Vm.current;fe(Vm,t),e._currentRenderer=n,fe(zm,t)}function yh(e,t,n){for(;e!==null;){var a=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,a!==null&&(a.childLanes|=t)):a!==null&&(a.childLanes&t)!==t&&(a.childLanes|=t),e===n)break;e=e.return}e!==n&&console.error("Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.")}function gh(e,t,n,a){var s=e.child;for(s!==null&&(s.return=e);s!==null;){var r=s.dependencies;if(r!==null){var c=s.child;r=r.firstContext;e:for(;r!==null;){var d=r;r=s;for(var y=0;y<t.length;y++)if(d.context===t[y]){r.lanes|=n,d=r.alternate,d!==null&&(d.lanes|=n),yh(r.return,n,e),a||(c=null);break e}r=d.next}}else if(s.tag===18){if(c=s.return,c===null)throw Error("We just came from a parent so we must have had a parent. This is a bug in React.");c.lanes|=n,r=c.alternate,r!==null&&(r.lanes|=n),yh(c,n,e),c=null}else c=s.child;if(c!==null)c.return=s;else for(c=s;c!==null;){if(c===e){c=null;break}if(s=c.sibling,s!==null){s.return=c.return,c=s;break}c=c.return}s=c}}function Ns(e,t,n,a){e=null;for(var s=t,r=!1;s!==null;){if(!r){if((s.flags&524288)!==0)r=!0;else if((s.flags&262144)!==0)break}if(s.tag===10){var c=s.alternate;if(c===null)throw Error("Should have a current fiber. This is a bug in React.");if(c=c.memoizedProps,c!==null){var d=s.type;rn(s.pendingProps.value,c.value)||(e!==null?e.push(d):e=[d])}}else if(s===sf.current){if(c=s.alternate,c===null)throw Error("Should have a current fiber. This is a bug in React.");c.memoizedState.memoizedState!==s.memoizedState.memoizedState&&(e!==null?e.push(Su):e=[Su])}s=s.return}e!==null&&gh(t,e,n,a),t.flags|=262144}function fc(e){for(e=e.firstContext;e!==null;){if(!rn(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Vi(e){Tf=e,lr=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function ut(e){return ur&&console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."),u0(Tf,e)}function dc(e,t){return Tf===null&&Vi(e),u0(e,t)}function u0(e,t){var n=t._currentValue;if(t={context:t,memoizedValue:n,next:null},lr===null){if(e===null)throw Error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");lr=t,e.dependencies={lanes:0,firstContext:t,_debugThenableState:null},e.flags|=524288}else lr=lr.next=t;return n}function vh(){return{controller:new tM,data:new Map,refCount:0}}function ji(e){e.controller.signal.aborted&&console.warn("A cache instance was retained after it was already freed. This likely indicates a bug in React."),e.refCount++}function nl(e){e.refCount--,0>e.refCount&&console.warn("A cache instance was released after it was already freed. This likely indicates a bug in React."),e.refCount===0&&nM(aM,function(){e.controller.abort()})}function Da(e,t,n){(e&127)!==0?0>Xa&&(Xa=Dt(),Gl=Ef(t),jm=t,n!=null&&(Bm=F(n)),(Pe&(Ut|Vn))!==kt&&(pt=!0,ti=Yl),e=Al(),t=El(),e!==cr||t!==Pl?cr=-1.1:t!==null&&(ti=Yl),Zi=e,Pl=t):(e&4194048)!==0&&0>Zn&&(Zn=Dt(),Xl=Ef(t),lT=t,n!=null&&(uT=F(n)),0>yo)&&(e=Al(),t=El(),(e!==ai||t!==Fi)&&(ai=-1.1),ni=e,Fi=t)}function Tw(e){if(0>Xa){Xa=Dt(),Gl=e._debugTask!=null?e._debugTask:null,(Pe&(Ut|Vn))!==kt&&(ti=Yl);var t=Al(),n=El();t!==cr||n!==Pl?cr=-1.1:n!==null&&(ti=Yl),Zi=t,Pl=n}0>Zn&&(Zn=Dt(),Xl=e._debugTask!=null?e._debugTask:null,0>yo)&&(e=Al(),t=El(),(e!==ai||t!==Fi)&&(ai=-1.1),ni=e,Fi=t)}function no(){var e=$i;return $i=0,e}function hc(e){var t=$i;return $i=e,t}function al(e){var t=$i;return $i+=e,t}function pc(){Se=ge=-1.1}function Rn(){var e=ge;return ge=-1.1,e}function xn(e){0<=e&&(ge=e)}function Ra(){var e=ft;return ft=-0,e}function xa(e){0<=e&&(ft=e)}function wa(){var e=ct;return ct=null,e}function Oa(){var e=pt;return pt=!1,e}function bh(e){ln=Dt(),0>e.actualStartTime&&(e.actualStartTime=ln)}function Sh(e){if(0<=ln){var t=Dt()-ln;e.actualDuration+=t,e.selfBaseDuration=t,ln=-1}}function c0(e){if(0<=ln){var t=Dt()-ln;e.actualDuration+=t,ln=-1}}function Ca(){if(0<=ln){var e=Dt(),t=e-ln;ln=-1,$i+=t,ft+=t,Se=e}}function f0(e){ct===null&&(ct=[]),ct.push(e),po===null&&(po=[]),po.push(e)}function Ma(){ln=Dt(),0>ge&&(ge=ln)}function ol(e){for(var t=e.child;t;)e.actualDuration+=t.actualDuration,t=t.sibling}function Ew(e,t){if(Ql===null){var n=Ql=[];Hm=0,Ji=Cp(),fr={status:"pending",value:void 0,then:function(a){n.push(a)}}}return Hm++,t.then(d0,d0),t}function d0(){if(--Hm===0&&(-1<Zn||(yo=-1.1),Ql!==null)){fr!==null&&(fr.status="fulfilled");var e=Ql;Ql=null,Ji=0,fr=null;for(var t=0;t<e.length;t++)(0,e[t])()}}function Aw(e,t){var n=[],a={status:"pending",value:null,reason:null,then:function(s){n.push(s)}};return e.then(function(){a.status="fulfilled",a.value=t;for(var s=0;s<n.length;s++)(0,n[s])(t)},function(s){for(a.status="rejected",a.reason=s,s=0;s<n.length;s++)(0,n[s])(void 0)}),a}function Th(){var e=Ki.current;return e!==null?e:et.pooledCache}function mc(e,t){t===null?be(Ki,Ki.current,e):be(Ki,t.pool,e)}function h0(){var e=Th();return e===null?null:{parent:At._currentValue,pool:e}}function p0(){return{didWarnAboutUncachedPromise:!1,thenables:[]}}function m0(e){return e=e.status,e==="fulfilled"||e==="rejected"}function y0(e,t,n){L.actQueue!==null&&(L.didUsePromise=!0);var a=e.thenables;if(n=a[n],n===void 0?a.push(t):n!==t&&(e.didWarnAboutUncachedPromise||(e.didWarnAboutUncachedPromise=!0,console.error("A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework.")),t.then(Ia,Ia),t=n),t._debugInfo===void 0){e=performance.now(),a=t.displayName;var s={name:typeof a=="string"?a:"Promise",start:e,end:e,value:t};t._debugInfo=[{awaited:s}],t.status!=="fulfilled"&&t.status!=="rejected"&&(e=function(){s.end=performance.now()},t.then(e,e))}switch(t.status){case"fulfilled":return t.value;case"rejected":throw e=t.reason,v0(e),e;default:if(typeof t.status=="string")t.then(Ia,Ia);else{if(e=et,e!==null&&100<e.shellSuspendCounter)throw Error("An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.");e=t,e.status="pending",e.then(function(r){if(t.status==="pending"){var c=t;c.status="fulfilled",c.value=r}},function(r){if(t.status==="pending"){var c=t;c.status="rejected",c.reason=r}})}switch(t.status){case"fulfilled":return t.value;case"rejected":throw e=t.reason,v0(e),e}throw Wi=t,eu=!0,dr}}function jo(e){try{return lM(e)}catch(t){throw t!==null&&typeof t=="object"&&typeof t.then=="function"?(Wi=t,eu=!0,dr):t}}function g0(){if(Wi===null)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var e=Wi;return Wi=null,eu=!1,e}function v0(e){if(e===dr||e===Mf)throw Error("Hooks are not supported inside an async component. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.")}function qt(e){var t=Ne;return e!=null&&(Ne=t===null?e:t.concat(e)),t}function Eh(){var e=Ne;if(e!=null){for(var t=e.length-1;0<=t;t--)if(e[t].name!=null){var n=e[t].debugTask;if(n!=null)return n}}return null}function yc(e,t,n){for(var a=Object.keys(e.props),s=0;s<a.length;s++){var r=a[s];if(r!=="children"&&r!=="key"){t===null&&(t=lc(e,n.mode,0),t._debugInfo=Ne,t.return=n),se(t,function(c){console.error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",c)},r);break}}}function gc(e){var t=tu;return tu+=1,hr===null&&(hr=p0()),y0(hr,e,t)}function il(e,t){t=t.props.ref,e.ref=t!==void 0?t:null}function b0(e,t){throw t.$$typeof===kO?Error(`A React Element from an older version of React was rendered. This is not supported. It can happen if:
99
+ - Multiple copies of the "react" package is used.
100
+ - A library pre-bundled an old copy of "react" or "react/jsx-runtime".
101
+ - A compiler tries to "inline" JSX instead of using the runtime.`):(e=Object.prototype.toString.call(t),Error("Objects are not valid as a React child (found: "+(e==="[object Object]"?"object with keys {"+Object.keys(t).join(", ")+"}":e)+"). If you meant to render a collection of children, use an array instead."))}function vc(e,t){var n=Eh();n!==null?n.run(b0.bind(null,e,t)):b0(e,t)}function S0(e,t){var n=F(e)||"Component";CT[n]||(CT[n]=!0,t=t.displayName||t.name||"Component",e.tag===3?console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
102
+ root.render(%s)`,t,t,t):console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
103
+ <%s>{%s}</%s>`,t,t,n,t,n))}function bc(e,t){var n=Eh();n!==null?n.run(S0.bind(null,e,t)):S0(e,t)}function T0(e,t){var n=F(e)||"Component";MT[n]||(MT[n]=!0,t=String(t),e.tag===3?console.error(`Symbols are not valid as a React child.
104
+ root.render(%s)`,t):console.error(`Symbols are not valid as a React child.
105
+ <%s>%s</%s>`,n,t,n))}function Sc(e,t){var n=Eh();n!==null?n.run(T0.bind(null,e,t)):T0(e,t)}function E0(e){function t(x,O){if(e){var M=x.deletions;M===null?(x.deletions=[O],x.flags|=16):M.push(O)}}function n(x,O){if(!e)return null;for(;O!==null;)t(x,O),O=O.sibling;return null}function a(x){for(var O=new Map;x!==null;)x.key!==null?O.set(x.key,x):O.set(x.index,x),x=x.sibling;return O}function s(x,O){return x=Wa(x,O),x.index=0,x.sibling=null,x}function r(x,O,M){return x.index=M,e?(M=x.alternate,M!==null?(M=M.index,M<O?(x.flags|=67108866,O):M):(x.flags|=67108866,O)):(x.flags|=1048576,O)}function c(x){return e&&x.alternate===null&&(x.flags|=67108866),x}function d(x,O,M,q){return O===null||O.tag!==6?(O=ch(M,x.mode,q),O.return=x,O._debugOwner=x,O._debugTask=x._debugTask,O._debugInfo=Ne,O):(O=s(O,M),O.return=x,O._debugInfo=Ne,O)}function y(x,O,M,q){var te=M.type;return te===Qs?(O=_(x,O,M.props.children,q,M.key),yc(M,O,x),O):O!==null&&(O.elementType===te||Iv(O,M)||typeof te=="object"&&te!==null&&te.$$typeof===Mn&&jo(te)===O.type)?(O=s(O,M.props),il(O,M),O.return=x,O._debugOwner=M._owner,O._debugInfo=Ne,O):(O=lc(M,x.mode,q),il(O,M),O.return=x,O._debugInfo=Ne,O)}function g(x,O,M,q){return O===null||O.tag!==4||O.stateNode.containerInfo!==M.containerInfo||O.stateNode.implementation!==M.implementation?(O=fh(M,x.mode,q),O.return=x,O._debugInfo=Ne,O):(O=s(O,M.children||[]),O.return=x,O._debugInfo=Ne,O)}function _(x,O,M,q,te){return O===null||O.tag!==7?(O=Ni(M,x.mode,q,te),O.return=x,O._debugOwner=x,O._debugTask=x._debugTask,O._debugInfo=Ne,O):(O=s(O,M),O.return=x,O._debugInfo=Ne,O)}function N(x,O,M){if(typeof O=="string"&&O!==""||typeof O=="number"||typeof O=="bigint")return O=ch(""+O,x.mode,M),O.return=x,O._debugOwner=x,O._debugTask=x._debugTask,O._debugInfo=Ne,O;if(typeof O=="object"&&O!==null){switch(O.$$typeof){case Ba:return M=lc(O,x.mode,M),il(M,O),M.return=x,x=qt(O._debugInfo),M._debugInfo=Ne,Ne=x,M;case $s:return O=fh(O,x.mode,M),O.return=x,O._debugInfo=Ne,O;case Mn:var q=qt(O._debugInfo);return O=jo(O),x=N(x,O,M),Ne=q,x}if(_t(O)||ve(O))return M=Ni(O,x.mode,M,null),M.return=x,M._debugOwner=x,M._debugTask=x._debugTask,x=qt(O._debugInfo),M._debugInfo=Ne,Ne=x,M;if(typeof O.then=="function")return q=qt(O._debugInfo),x=N(x,gc(O),M),Ne=q,x;if(O.$$typeof===La)return N(x,dc(x,O),M);vc(x,O)}return typeof O=="function"&&bc(x,O),typeof O=="symbol"&&Sc(x,O),null}function w(x,O,M,q){var te=O!==null?O.key:null;if(typeof M=="string"&&M!==""||typeof M=="number"||typeof M=="bigint")return te!==null?null:d(x,O,""+M,q);if(typeof M=="object"&&M!==null){switch(M.$$typeof){case Ba:return M.key===te?(te=qt(M._debugInfo),x=y(x,O,M,q),Ne=te,x):null;case $s:return M.key===te?g(x,O,M,q):null;case Mn:return te=qt(M._debugInfo),M=jo(M),x=w(x,O,M,q),Ne=te,x}if(_t(M)||ve(M))return te!==null?null:(te=qt(M._debugInfo),x=_(x,O,M,q,null),Ne=te,x);if(typeof M.then=="function")return te=qt(M._debugInfo),x=w(x,O,gc(M),q),Ne=te,x;if(M.$$typeof===La)return w(x,O,dc(x,M),q);vc(x,M)}return typeof M=="function"&&bc(x,M),typeof M=="symbol"&&Sc(x,M),null}function V(x,O,M,q,te){if(typeof q=="string"&&q!==""||typeof q=="number"||typeof q=="bigint")return x=x.get(M)||null,d(O,x,""+q,te);if(typeof q=="object"&&q!==null){switch(q.$$typeof){case Ba:return M=x.get(q.key===null?M:q.key)||null,x=qt(q._debugInfo),O=y(O,M,q,te),Ne=x,O;case $s:return x=x.get(q.key===null?M:q.key)||null,g(O,x,q,te);case Mn:var De=qt(q._debugInfo);return q=jo(q),O=V(x,O,M,q,te),Ne=De,O}if(_t(q)||ve(q))return M=x.get(M)||null,x=qt(q._debugInfo),O=_(O,M,q,te,null),Ne=x,O;if(typeof q.then=="function")return De=qt(q._debugInfo),O=V(x,O,M,gc(q),te),Ne=De,O;if(q.$$typeof===La)return V(x,O,M,dc(O,q),te);vc(O,q)}return typeof q=="function"&&bc(O,q),typeof q=="symbol"&&Sc(O,q),null}function K(x,O,M,q){if(typeof M!="object"||M===null)return q;switch(M.$$typeof){case Ba:case $s:b(x,O,M);var te=M.key;if(typeof te!="string")break;if(q===null){q=new Set,q.add(te);break}if(!q.has(te)){q.add(te);break}se(O,function(){console.error("Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted — the behavior is unsupported and could change in a future version.",te)});break;case Mn:M=jo(M),K(x,O,M,q)}return q}function oe(x,O,M,q){for(var te=null,De=null,ye=null,he=O,Me=O=0,st=null;he!==null&&Me<M.length;Me++){he.index>Me?(st=he,he=null):st=he.sibling;var Tt=w(x,he,M[Me],q);if(Tt===null){he===null&&(he=st);break}te=K(x,Tt,M[Me],te),e&&he&&Tt.alternate===null&&t(x,he),O=r(Tt,O,Me),ye===null?De=Tt:ye.sibling=Tt,ye=Tt,he=st}if(Me===M.length)return n(x,he),Le&&eo(x,Me),De;if(he===null){for(;Me<M.length;Me++)he=N(x,M[Me],q),he!==null&&(te=K(x,he,M[Me],te),O=r(he,O,Me),ye===null?De=he:ye.sibling=he,ye=he);return Le&&eo(x,Me),De}for(he=a(he);Me<M.length;Me++)st=V(he,x,Me,M[Me],q),st!==null&&(te=K(x,st,M[Me],te),e&&st.alternate!==null&&he.delete(st.key===null?Me:st.key),O=r(st,O,Me),ye===null?De=st:ye.sibling=st,ye=st);return e&&he.forEach(function(Do){return t(x,Do)}),Le&&eo(x,Me),De}function at(x,O,M,q){if(M==null)throw Error("An iterable object provided no iterator.");for(var te=null,De=null,ye=O,he=O=0,Me=null,st=null,Tt=M.next();ye!==null&&!Tt.done;he++,Tt=M.next()){ye.index>he?(Me=ye,ye=null):Me=ye.sibling;var Do=w(x,ye,Tt.value,q);if(Do===null){ye===null&&(ye=Me);break}st=K(x,Do,Tt.value,st),e&&ye&&Do.alternate===null&&t(x,ye),O=r(Do,O,he),De===null?te=Do:De.sibling=Do,De=Do,ye=Me}if(Tt.done)return n(x,ye),Le&&eo(x,he),te;if(ye===null){for(;!Tt.done;he++,Tt=M.next())ye=N(x,Tt.value,q),ye!==null&&(st=K(x,ye,Tt.value,st),O=r(ye,O,he),De===null?te=ye:De.sibling=ye,De=ye);return Le&&eo(x,he),te}for(ye=a(ye);!Tt.done;he++,Tt=M.next())Me=V(ye,x,he,Tt.value,q),Me!==null&&(st=K(x,Me,Tt.value,st),e&&Me.alternate!==null&&ye.delete(Me.key===null?he:Me.key),O=r(Me,O,he),De===null?te=Me:De.sibling=Me,De=Me);return e&&ye.forEach(function(NM){return t(x,NM)}),Le&&eo(x,he),te}function qe(x,O,M,q){if(typeof M=="object"&&M!==null&&M.type===Qs&&M.key===null&&(yc(M,null,x),M=M.props.children),typeof M=="object"&&M!==null){switch(M.$$typeof){case Ba:var te=qt(M._debugInfo);e:{for(var De=M.key;O!==null;){if(O.key===De){if(De=M.type,De===Qs){if(O.tag===7){n(x,O.sibling),q=s(O,M.props.children),q.return=x,q._debugOwner=M._owner,q._debugInfo=Ne,yc(M,q,x),x=q;break e}}else if(O.elementType===De||Iv(O,M)||typeof De=="object"&&De!==null&&De.$$typeof===Mn&&jo(De)===O.type){n(x,O.sibling),q=s(O,M.props),il(q,M),q.return=x,q._debugOwner=M._owner,q._debugInfo=Ne,x=q;break e}n(x,O);break}else t(x,O);O=O.sibling}M.type===Qs?(q=Ni(M.props.children,x.mode,q,M.key),q.return=x,q._debugOwner=x,q._debugTask=x._debugTask,q._debugInfo=Ne,yc(M,q,x),x=q):(q=lc(M,x.mode,q),il(q,M),q.return=x,q._debugInfo=Ne,x=q)}return x=c(x),Ne=te,x;case $s:e:{for(te=M,M=te.key;O!==null;){if(O.key===M)if(O.tag===4&&O.stateNode.containerInfo===te.containerInfo&&O.stateNode.implementation===te.implementation){n(x,O.sibling),q=s(O,te.children||[]),q.return=x,x=q;break e}else{n(x,O);break}else t(x,O);O=O.sibling}q=fh(te,x.mode,q),q.return=x,x=q}return c(x);case Mn:return te=qt(M._debugInfo),M=jo(M),x=qe(x,O,M,q),Ne=te,x}if(_t(M))return te=qt(M._debugInfo),x=oe(x,O,M,q),Ne=te,x;if(ve(M)){if(te=qt(M._debugInfo),De=ve(M),typeof De!="function")throw Error("An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.");var ye=De.call(M);return ye===M?(x.tag!==0||Object.prototype.toString.call(x.type)!=="[object GeneratorFunction]"||Object.prototype.toString.call(ye)!=="[object Generator]")&&(wT||console.error("Using Iterators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. You can also use an Iterable that can iterate multiple times over the same items."),wT=!0):M.entries!==De||Gm||(console.error("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),Gm=!0),x=at(x,O,ye,q),Ne=te,x}if(typeof M.then=="function")return te=qt(M._debugInfo),x=qe(x,O,gc(M),q),Ne=te,x;if(M.$$typeof===La)return qe(x,O,dc(x,M),q);vc(x,M)}return typeof M=="string"&&M!==""||typeof M=="number"||typeof M=="bigint"?(te=""+M,O!==null&&O.tag===6?(n(x,O.sibling),q=s(O,te),q.return=x,x=q):(n(x,O),q=ch(te,x.mode,q),q.return=x,q._debugOwner=x,q._debugTask=x._debugTask,q._debugInfo=Ne,x=q),c(x)):(typeof M=="function"&&bc(x,M),typeof M=="symbol"&&Sc(x,M),n(x,O))}return function(x,O,M,q){var te=Ne;Ne=null;try{tu=0;var De=qe(x,O,M,q);return hr=null,De}catch(st){if(st===dr||st===Mf)throw st;var ye=T(29,st,null,x.mode);ye.lanes=q,ye.return=x;var he=ye._debugInfo=Ne;if(ye._debugOwner=x._debugOwner,ye._debugTask=x._debugTask,he!=null){for(var Me=he.length-1;0<=Me;Me--)if(typeof he[Me].stack=="string"){ye._debugOwner=he[Me],ye._debugTask=he[Me].debugTask;break}}return ye}finally{Ne=te}}}function A0(e,t){var n=_t(e);return e=!n&&typeof ve(e)=="function",n||e?(n=n?"array":"iterable",console.error("A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",n,t,n),!1):!0}function Ah(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Dh(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 Bo(e){return{lane:e,tag:NT,payload:null,callback:null,next:null}}function Lo(e,t,n){var a=e.updateQueue;if(a===null)return null;if(a=a.shared,Xm===a&&!VT){var s=F(e);console.error(`An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.
106
+
107
+ Please update the following component: %s`,s),VT=!0}return(Pe&Ut)!==kt?(s=a.pending,s===null?t.next=t:(t.next=s.next,s.next=t),a.pending=t,t=rc(e),Kv(e,null,n),t):(sc(e,a,t,n),rc(e))}function sl(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194048)!==0)){var a=t.lanes;a&=e.pendingLanes,n|=a,t.lanes=n,Qr(e,n)}}function Tc(e,t){var n=e.updateQueue,a=e.alternate;if(a!==null&&(a=a.updateQueue,n===a)){var s=null,r=null;if(n=n.firstBaseUpdate,n!==null){do{var c={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};r===null?s=r=c:r=r.next=c,n=n.next}while(n!==null);r===null?s=r=t:r=r.next=t}else s=r=t;n={baseState:a.baseState,firstBaseUpdate:s,lastBaseUpdate:r,shared:a.shared,callbacks:a.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function rl(){if($m){var e=fr;if(e!==null)throw e}}function ll(e,t,n,a){$m=!1;var s=e.updateQueue;oi=!1,Xm=s.shared;var r=s.firstBaseUpdate,c=s.lastBaseUpdate,d=s.shared.pending;if(d!==null){s.shared.pending=null;var y=d,g=y.next;y.next=null,c===null?r=g:c.next=g,c=y;var _=e.alternate;_!==null&&(_=_.updateQueue,d=_.lastBaseUpdate,d!==c&&(d===null?_.firstBaseUpdate=g:d.next=g,_.lastBaseUpdate=y))}if(r!==null){var N=s.baseState;c=0,_=g=y=null,d=r;do{var w=d.lane&-536870913,V=w!==d.lane;if(V?(Ue&w)===w:(a&w)===w){w!==0&&w===Ji&&($m=!0),_!==null&&(_=_.next={lane:0,tag:d.tag,payload:d.payload,callback:null,next:null});e:{w=e;var K=d,oe=t,at=n;switch(K.tag){case UT:if(K=K.payload,typeof K=="function"){ur=!0;var qe=K.call(at,N,oe);if(w.mode&Kt){ue(!0);try{K.call(at,N,oe)}finally{ue(!1)}}ur=!1,N=qe;break e}N=K;break e;case Pm:w.flags=w.flags&-65537|128;case NT:if(qe=K.payload,typeof qe=="function"){if(ur=!0,K=qe.call(at,N,oe),w.mode&Kt){ue(!0);try{qe.call(at,N,oe)}finally{ue(!1)}}ur=!1}else K=qe;if(K==null)break e;N=je({},N,K);break e;case zT:oi=!0}}w=d.callback,w!==null&&(e.flags|=64,V&&(e.flags|=8192),V=s.callbacks,V===null?s.callbacks=[w]:V.push(w))}else V={lane:w,tag:d.tag,payload:d.payload,callback:d.callback,next:null},_===null?(g=_=V,y=N):_=_.next=V,c|=w;if(d=d.next,d===null){if(d=s.shared.pending,d===null)break;V=d,d=V.next,V.next=null,s.lastBaseUpdate=V,s.shared.pending=null}}while(!0);_===null&&(y=N),s.baseState=y,s.firstBaseUpdate=g,s.lastBaseUpdate=_,r===null&&(s.shared.lanes=0),ri|=c,e.lanes=c,e.memoizedState=N}Xm=null}function D0(e,t){if(typeof e!="function")throw Error("Invalid argument passed as callback. Expected a function. Instead received: "+e);e.call(t)}function Dw(e,t){var n=e.shared.hiddenCallbacks;if(n!==null)for(e.shared.hiddenCallbacks=null,e=0;e<n.length;e++)D0(n[e],t)}function R0(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;e<n.length;e++)D0(n[e],t)}function x0(e,t){var n=Qa;be(Nf,n,e),be(pr,t,e),Qa=n|t.baseLanes}function Rh(e){be(Nf,Qa,e),be(pr,pr.current,e)}function xh(e){Qa=Nf.current,fe(pr,e),fe(Nf,e)}function Ho(e){var t=e.alternate;be(St,St.current&mr,e),be(Un,e,e),Fn===null&&(t===null||pr.current!==null||t.memoizedState!==null)&&(Fn=e)}function wh(e){be(St,St.current,e),be(Un,e,e),Fn===null&&(Fn=e)}function w0(e){e.tag===22?(be(St,St.current,e),be(Un,e,e),Fn===null&&(Fn=e)):ko(e)}function ko(e){be(St,St.current,e),be(Un,Un.current,e)}function wn(e){fe(Un,e),Fn===e&&(Fn=null),fe(St,e)}function Ec(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||kp(n)||qp(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)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function Ve(){var e=B;Kn===null?Kn=[e]:Kn.push(e)}function P(){var e=B;if(Kn!==null&&(bo++,Kn[bo]!==e)){var t=F(Ae);if(!jT.has(t)&&(jT.add(t),Kn!==null)){for(var n="",a=0;a<=bo;a++){var s=Kn[a],r=a===bo?e:s;for(s=a+1+". "+s;30>s.length;)s+=" ";s+=r+`
108
+ `,n+=s}console.error(`React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks
109
+
110
+ Previous render Next render
111
+ ------------------------------------------------------
112
+ %s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
113
+ `,t,n)}}}function Us(e){e==null||_t(e)||console.error("%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.",B,typeof e)}function Ac(){var e=F(Ae);LT.has(e)||(LT.add(e),console.error("ReactDOM.useFormState has been renamed to React.useActionState. Please update %s to use React.useActionState.",e))}function vt(){throw Error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
114
+ 1. You might have mismatching versions of React and the renderer (such as React DOM)
115
+ 2. You might be breaking the Rules of Hooks
116
+ 3. You might have more than one copy of React in the same app
117
+ See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`)}function Oh(e,t){if(ou)return!1;if(t===null)return console.error("%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.",B),!1;e.length!==t.length&&console.error(`The final argument passed to %s changed size between renders. The order and size of this array must remain constant.
118
+
119
+ Previous: %s
120
+ Incoming: %s`,B,"["+t.join(", ")+"]","["+e.join(", ")+"]");for(var n=0;n<t.length&&n<e.length;n++)if(!rn(e[n],t[n]))return!1;return!0}function Ch(e,t,n,a,s,r){go=r,Ae=t,Kn=e!==null?e._debugHookTypes:null,bo=-1,ou=e!==null&&e.type!==t.type,(Object.prototype.toString.call(n)==="[object AsyncFunction]"||Object.prototype.toString.call(n)==="[object AsyncGeneratorFunction]")&&(r=F(Ae),Qm.has(r)||(Qm.add(r),console.error("%s is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.",r===null?"An unknown Component":"<"+r+">"))),t.memoizedState=null,t.updateQueue=null,t.lanes=0,L.H=e!==null&&e.memoizedState!==null?Fm:Kn!==null?HT:Zm,ts=r=(t.mode&Kt)!==Ee;var c=km(n,a,s);if(ts=!1,gr&&(c=Mh(t,n,a,s)),r){ue(!0);try{c=Mh(t,n,a,s)}finally{ue(!1)}}return O0(e,t),c}function O0(e,t){t._debugHookTypes=Kn,t.dependencies===null?vo!==null&&(t.dependencies={lanes:0,firstContext:null,_debugThenableState:vo}):t.dependencies._debugThenableState=vo,L.H=iu;var n=We!==null&&We.next!==null;if(go=0,Kn=B=Rt=We=Ae=null,bo=-1,e!==null&&(e.flags&65011712)!==(t.flags&65011712)&&console.error("Internal React error: Expected static flag was missing. Please notify the React team."),zf=!1,au=0,vo=null,n)throw Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");e===null||xt||(e=e.dependencies,e!==null&&fc(e)&&(xt=!0)),eu?(eu=!1,e=!0):e=!1,e&&(t=F(t)||"Unknown",BT.has(t)||Qm.has(t)||(BT.add(t),console.error("`use` was called from inside a try/catch block. This is not allowed and can lead to unexpected behavior. To handle errors triggered by `use`, wrap your component in a error boundary.")))}function Mh(e,t,n,a){Ae=e;var s=0;do{if(gr&&(vo=null),au=0,gr=!1,s>=cM)throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");if(s+=1,ou=!1,Rt=We=null,e.updateQueue!=null){var r=e.updateQueue;r.lastEffect=null,r.events=null,r.stores=null,r.memoCache!=null&&(r.memoCache.index=0)}bo=-1,L.H=kT,r=km(t,n,a)}while(gr);return r}function Rw(){var e=L.H,t=e.useState()[0];return t=typeof t.then=="function"?ul(t):t,e=e.useState()[0],(We!==null?We.memoizedState:null)!==e&&(Ae.flags|=1024),t}function _h(){var e=Vf!==0;return Vf=0,e}function Nh(e,t,n){t.updateQueue=e.updateQueue,t.flags=(t.mode&ca)!==Ee?t.flags&-402655237:t.flags&-2053,e.lanes&=~n}function Uh(e){if(zf){for(e=e.memoizedState;e!==null;){var t=e.queue;t!==null&&(t.pending=null),e=e.next}zf=!1}go=0,Kn=Rt=We=Ae=null,bo=-1,B=null,gr=!1,au=Vf=0,vo=null}function nn(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Rt===null?Ae.memoizedState=Rt=e:Rt=Rt.next=e,Rt}function Je(){if(We===null){var e=Ae.alternate;e=e!==null?e.memoizedState:null}else e=We.next;var t=Rt===null?Ae.memoizedState:Rt.next;if(t!==null)Rt=t,We=e;else{if(e===null)throw Ae.alternate===null?Error("Update hook called on initial render. This is likely a bug in React. Please file an issue."):Error("Rendered more hooks than during the previous render.");We=e,e={memoizedState:We.memoizedState,baseState:We.baseState,baseQueue:We.baseQueue,queue:We.queue,next:null},Rt===null?Ae.memoizedState=Rt=e:Rt=Rt.next=e}return Rt}function Dc(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function ul(e){var t=au;return au+=1,vo===null&&(vo=p0()),e=y0(vo,e,t),t=Ae,(Rt===null?t.memoizedState:Rt.next)===null&&(t=t.alternate,L.H=t!==null&&t.memoizedState!==null?Fm:Zm),e}function qo(e){if(e!==null&&typeof e=="object"){if(typeof e.then=="function")return ul(e);if(e.$$typeof===La)return ut(e)}throw Error("An unsupported type was passed to use(): "+String(e))}function Bi(e){var t=null,n=Ae.updateQueue;if(n!==null&&(t=n.memoCache),t==null){var a=Ae.alternate;a!==null&&(a=a.updateQueue,a!==null&&(a=a.memoCache,a!=null&&(t={data:a.data.map(function(s){return s.slice()}),index:0})))}if(t==null&&(t={data:[],index:0}),n===null&&(n=Dc(),Ae.updateQueue=n),n.memoCache=t,n=t.data[t.index],n===void 0||ou)for(n=t.data[t.index]=Array(e),a=0;a<e;a++)n[a]=qO;else n.length!==e&&console.error("Expected a constant size argument for each invocation of useMemoCache. The previous cache was allocated with size %s but size %s was requested.",n.length,e);return t.index++,n}function ra(e,t){return typeof t=="function"?t(e):t}function zh(e,t,n){var a=nn();if(n!==void 0){var s=n(t);if(ts){ue(!0);try{n(t)}finally{ue(!1)}}}else s=t;return a.memoizedState=a.baseState=s,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:s},a.queue=e,e=e.dispatch=Mw.bind(null,Ae,e),[a.memoizedState,e]}function zs(e){var t=Je();return Vh(t,We,e)}function Vh(e,t,n){var a=e.queue;if(a===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");a.lastRenderedReducer=n;var s=e.baseQueue,r=a.pending;if(r!==null){if(s!==null){var c=s.next;s.next=r.next,r.next=c}t.baseQueue!==s&&console.error("Internal error: Expected work-in-progress queue to be a clone. This is a bug in React."),t.baseQueue=s=r,a.pending=null}if(r=e.baseState,s===null)e.memoizedState=r;else{t=s.next;var d=c=null,y=null,g=t,_=!1;do{var N=g.lane&-536870913;if(N!==g.lane?(Ue&N)===N:(go&N)===N){var w=g.revertLane;if(w===0)y!==null&&(y=y.next={lane:0,revertLane:0,gesture:null,action:g.action,hasEagerState:g.hasEagerState,eagerState:g.eagerState,next:null}),N===Ji&&(_=!0);else if((go&w)===w){g=g.next,w===Ji&&(_=!0);continue}else N={lane:0,revertLane:g.revertLane,gesture:null,action:g.action,hasEagerState:g.hasEagerState,eagerState:g.eagerState,next:null},y===null?(d=y=N,c=r):y=y.next=N,Ae.lanes|=w,ri|=w;N=g.action,ts&&n(r,N),r=g.hasEagerState?g.eagerState:n(r,N)}else w={lane:N,revertLane:g.revertLane,gesture:g.gesture,action:g.action,hasEagerState:g.hasEagerState,eagerState:g.eagerState,next:null},y===null?(d=y=w,c=r):y=y.next=w,Ae.lanes|=N,ri|=N;g=g.next}while(g!==null&&g!==t);if(y===null?c=r:y.next=d,!rn(r,e.memoizedState)&&(xt=!0,_&&(n=fr,n!==null)))throw n;e.memoizedState=r,e.baseState=c,e.baseQueue=y,a.lastRenderedState=r}return s===null&&(a.lanes=0),[e.memoizedState,a.dispatch]}function cl(e){var t=Je(),n=t.queue;if(n===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");n.lastRenderedReducer=e;var a=n.dispatch,s=n.pending,r=t.memoizedState;if(s!==null){n.pending=null;var c=s=s.next;do r=e(r,c.action),c=c.next;while(c!==s);rn(r,t.memoizedState)||(xt=!0),t.memoizedState=r,t.baseQueue===null&&(t.baseState=r),n.lastRenderedState=r}return[r,a]}function jh(e,t,n){var a=Ae,s=nn();if(Le){if(n===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");var r=n();yr||r===n()||(console.error("The result of getServerSnapshot should be cached to avoid an infinite loop"),yr=!0)}else{if(r=t(),yr||(n=t(),rn(r,n)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),yr=!0)),et===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");(Ue&127)!==0||C0(a,t,r)}return s.memoizedState=r,n={value:r,getSnapshot:t},s.queue=n,Oc(_0.bind(null,a,n,e),[e]),a.flags|=2048,js(Jn|cn,{destroy:void 0},M0.bind(null,a,n,r,t),null),r}function Rc(e,t,n){var a=Ae,s=Je(),r=Le;if(r){if(n===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");n=n()}else if(n=t(),!yr){var c=t();rn(n,c)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),yr=!0)}(c=!rn((We||s).memoizedState,n))&&(s.memoizedState=n,xt=!0),s=s.queue;var d=_0.bind(null,a,s,e);if(mn(2048,cn,d,[e]),s.getSnapshot!==t||c||Rt!==null&&Rt.memoizedState.tag&Jn){if(a.flags|=2048,js(Jn|cn,{destroy:void 0},M0.bind(null,a,s,n,t),null),et===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");r||(go&127)!==0||C0(a,t,n)}return n}function C0(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=Ae.updateQueue,t===null?(t=Dc(),Ae.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function M0(e,t,n,a){t.value=n,t.getSnapshot=a,N0(t)&&U0(e)}function _0(e,t,n){return n(function(){N0(t)&&(Da(2,"updateSyncExternalStore()",e),U0(e))})}function N0(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!rn(e,n)}catch{return!0}}function U0(e){var t=Ft(e,2);t!==null&&ht(t,e,2)}function Bh(e){var t=nn();if(typeof e=="function"){var n=e;if(e=n(),ts){ue(!0);try{n()}finally{ue(!1)}}}return t.memoizedState=t.baseState=e,t.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:ra,lastRenderedState:e},t}function Lh(e){e=Bh(e);var t=e.queue,n=I0.bind(null,Ae,t);return t.dispatch=n,[e.memoizedState,n]}function Hh(e){var t=nn();t.memoizedState=t.baseState=e;var n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return t.queue=n,t=Wh.bind(null,Ae,!0,n),n.dispatch=t,[e,t]}function z0(e,t){var n=Je();return V0(n,We,e,t)}function V0(e,t,n,a){return e.baseState=n,Vh(e,We,typeof a=="function"?a:ra)}function j0(e,t){var n=Je();return We!==null?V0(n,We,e,t):(n.baseState=e,[e,n.queue.dispatch])}function xw(e,t,n,a,s){if(zc(e))throw Error("Cannot update form state while rendering.");if(e=t.action,e!==null){var r={payload:s,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(c){r.listeners.push(c)}};L.T!==null?n(!0):r.isTransition=!1,a(r),n=t.pending,n===null?(r.next=t.pending=r,B0(t,r)):(r.next=n.next,t.pending=n.next=r)}}function B0(e,t){var n=t.action,a=t.payload,s=e.state;if(t.isTransition){var r=L.T,c={};c._updatedFibers=new Set,L.T=c;try{var d=n(s,a),y=L.S;y!==null&&y(c,d),L0(e,t,d)}catch(g){kh(e,t,g)}finally{r!==null&&c.types!==null&&(r.types!==null&&r.types!==c.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),r.types=c.types),L.T=r,r===null&&c._updatedFibers&&(e=c._updatedFibers.size,c._updatedFibers.clear(),10<e&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}else try{c=n(s,a),L0(e,t,c)}catch(g){kh(e,t,g)}}function L0(e,t,n){n!==null&&typeof n=="object"&&typeof n.then=="function"?(L.asyncTransitions++,n.then(Uc,Uc),n.then(function(a){H0(e,t,a)},function(a){return kh(e,t,a)}),t.isTransition||console.error("An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop.")):H0(e,t,n)}function H0(e,t,n){t.status="fulfilled",t.value=n,k0(t),e.state=n,t=e.pending,t!==null&&(n=t.next,n===t?e.pending=null:(n=n.next,t.next=n,B0(e,n)))}function kh(e,t,n){var a=e.pending;if(e.pending=null,a!==null){a=a.next;do t.status="rejected",t.reason=n,k0(t),t=t.next;while(t!==a)}e.action=null}function k0(e){e=e.listeners;for(var t=0;t<e.length;t++)(0,e[t])()}function q0(e,t){return t}function Vs(e,t){if(Le){var n=et.formState;if(n!==null){e:{var a=Ae;if(Le){if(it){t:{for(var s=it,r=Qn;s.nodeType!==8;){if(!r){s=null;break t}if(s=Cn(s.nextSibling),s===null){s=null;break t}}r=s.data,s=r===vy||r===RE?s:null}if(s){it=Cn(s.nextSibling),a=s.data===vy;break e}}zo(a)}a=!1}a&&(t=n[0])}}return n=nn(),n.memoizedState=n.baseState=t,a={pending:null,lanes:0,dispatch:null,lastRenderedReducer:q0,lastRenderedState:t},n.queue=a,n=I0.bind(null,Ae,a),a.dispatch=n,a=Bh(!1),r=Wh.bind(null,Ae,!1,a.queue),a=nn(),s={state:t,dispatch:null,action:e,pending:null},a.queue=s,n=xw.bind(null,Ae,s,r,n),s.dispatch=n,a.memoizedState=e,[t,n,!1]}function xc(e){var t=Je();return Y0(t,We,e)}function Y0(e,t,n){if(t=Vh(e,t,q0)[0],e=zs(ra)[0],typeof t=="object"&&t!==null&&typeof t.then=="function")try{var a=ul(t)}catch(c){throw c===dr?Mf:c}else a=t;t=Je();var s=t.queue,r=s.dispatch;return n!==t.memoizedState&&(Ae.flags|=2048,js(Jn|cn,{destroy:void 0},ww.bind(null,s,n),null)),[a,r,e]}function ww(e,t){e.action=t}function wc(e){var t=Je(),n=We;if(n!==null)return Y0(t,n,e);Je(),t=t.memoizedState,n=Je();var a=n.queue.dispatch;return n.memoizedState=e,[t,a,!1]}function js(e,t,n,a){return e={tag:e,create:n,deps:a,inst:t,next:null},t=Ae.updateQueue,t===null&&(t=Dc(),Ae.updateQueue=t),n=t.lastEffect,n===null?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function qh(e){var t=nn();return e={current:e},t.memoizedState=e}function Li(e,t,n,a){var s=nn();Ae.flags|=e,s.memoizedState=js(Jn|t,{destroy:void 0},n,a===void 0?null:a)}function mn(e,t,n,a){var s=Je();a=a===void 0?null:a;var r=s.memoizedState.inst;We!==null&&a!==null&&Oh(a,We.memoizedState.deps)?s.memoizedState=js(t,r,n,a):(Ae.flags|=e,s.memoizedState=js(Jn|t,r,n,a))}function Oc(e,t){(Ae.mode&ca)!==Ee?Li(276826112,cn,e,t):Li(8390656,cn,e,t)}function Ow(e){Ae.flags|=4;var t=Ae.updateQueue;if(t===null)t=Dc(),Ae.updateQueue=t,t.events=[e];else{var n=t.events;n===null?t.events=[e]:n.push(e)}}function Yh(e){var t=nn(),n={impl:e};return t.memoizedState=n,function(){if((Pe&Ut)!==kt)throw Error("A function wrapped in useEffectEvent can't be called during rendering.");return n.impl.apply(void 0,arguments)}}function Cc(e){var t=Je().memoizedState;return Ow({ref:t,nextImpl:e}),function(){if((Pe&Ut)!==kt)throw Error("A function wrapped in useEffectEvent can't be called during rendering.");return t.impl.apply(void 0,arguments)}}function Gh(e,t){var n=4194308;return(Ae.mode&ca)!==Ee&&(n|=134217728),Li(n,zn,e,t)}function G0(e,t){if(typeof t=="function"){e=e();var n=t(e);return function(){typeof n=="function"?n():t(null)}}if(t!=null)return t.hasOwnProperty("current")||console.error("Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.","an object with keys {"+Object.keys(t).join(", ")+"}"),e=e(),t.current=e,function(){t.current=null}}function Ph(e,t,n){typeof t!="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",t!==null?typeof t:"null"),n=n!=null?n.concat([e]):null;var a=4194308;(Ae.mode&ca)!==Ee&&(a|=134217728),Li(a,zn,G0.bind(null,t,e),n)}function Mc(e,t,n){typeof t!="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",t!==null?typeof t:"null"),n=n!=null?n.concat([e]):null,mn(4,zn,G0.bind(null,t,e),n)}function Xh(e,t){return nn().memoizedState=[e,t===void 0?null:t],e}function _c(e,t){var n=Je();t=t===void 0?null:t;var a=n.memoizedState;return t!==null&&Oh(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function $h(e,t){var n=nn();t=t===void 0?null:t;var a=e();if(ts){ue(!0);try{e()}finally{ue(!1)}}return n.memoizedState=[a,t],a}function Nc(e,t){var n=Je();t=t===void 0?null:t;var a=n.memoizedState;if(t!==null&&Oh(t,a[1]))return a[0];if(a=e(),ts){ue(!0);try{e()}finally{ue(!1)}}return n.memoizedState=[a,t],a}function Qh(e,t){var n=nn();return Zh(n,e,t)}function P0(e,t){var n=Je();return $0(n,We.memoizedState,e,t)}function X0(e,t){var n=Je();return We===null?Zh(n,e,t):$0(n,We.memoizedState,e,t)}function Zh(e,t,n){return n===void 0||(go&1073741824)!==0&&(Ue&261930)===0?e.memoizedState=t:(e.memoizedState=n,e=Qb(),Ae.lanes|=e,ri|=e,n)}function $0(e,t,n,a){return rn(n,t)?n:pr.current!==null?(e=Zh(e,n,a),rn(e,t)||(xt=!0),e):(go&42)===0||(go&1073741824)!==0&&(Ue&261930)===0?(xt=!0,e.memoizedState=n):(e=Qb(),Ae.lanes|=e,ri|=e,t)}function Uc(){L.asyncTransitions--}function Q0(e,t,n,a,s){var r=Qe.p;Qe.p=r!==0&&r<Ya?r:Ya;var c=L.T,d={};d._updatedFibers=new Set,L.T=d,Wh(e,!1,t,n);try{var y=s(),g=L.S;if(g!==null&&g(d,y),y!==null&&typeof y=="object"&&typeof y.then=="function"){L.asyncTransitions++,y.then(Uc,Uc);var _=Aw(y,a);fl(e,t,_,On(e))}else fl(e,t,a,On(e))}catch(N){fl(e,t,{then:function(){},status:"rejected",reason:N},On(e))}finally{Qe.p=r,c!==null&&d.types!==null&&(c.types!==null&&c.types!==d.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),c.types=d.types),L.T=c,c===null&&d._updatedFibers&&(e=d._updatedFibers.size,d._updatedFibers.clear(),10<e&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}function Fh(e,t,n,a){if(e.tag!==5)throw Error("Expected the form instance to be a HostComponent. This is a bug in React.");var s=Z0(e).queue;Tw(e),Q0(e,s,t,ds,n===null?E:function(){return F0(e),n(a)})}function Z0(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:ds,baseState:ds,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ra,lastRenderedState:ds},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ra,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function F0(e){L.T===null&&console.error("requestFormReset was called outside a transition or action. To fix, move to an action, or wrap with startTransition.");var t=Z0(e);t.next===null&&(t=e.alternate.memoizedState),fl(e,t.next.queue,{},On(e))}function Jh(){var e=Bh(!1);return e=Q0.bind(null,Ae,e.queue,!0,!1),nn().memoizedState=e,[!1,e]}function J0(){var e=zs(ra)[0],t=Je().memoizedState;return[typeof e=="boolean"?e:ul(e),t]}function K0(){var e=cl(ra)[0],t=Je().memoizedState;return[typeof e=="boolean"?e:ul(e),t]}function Hi(){return ut(Su)}function Kh(){var e=nn(),t=et.identifierPrefix;if(Le){var n=fo,a=co;n=(a&~(1<<32-an(a)-1)).toString(32)+n,t="_"+t+"R_"+n,n=Vf++,0<n&&(t+="H"+n.toString(32)),t+="_"}else n=uM++,t="_"+t+"r_"+n.toString(32)+"_";return e.memoizedState=t}function Ih(){return nn().memoizedState=Cw.bind(null,Ae)}function Cw(e,t){for(var n=e.return;n!==null;){switch(n.tag){case 24:case 3:var a=On(n),s=Bo(a),r=Lo(n,s,a);r!==null&&(Da(a,"refresh()",e),ht(r,n,a),sl(r,n,a)),e=vh(),t!=null&&r!==null&&console.error("The seed argument is not enabled outside experimental channels."),s.payload={cache:e};return}n=n.return}}function Mw(e,t,n){var a=arguments;typeof a[3]=="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),a=On(e);var s={lane:a,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};zc(e)?W0(t,s):(s=sh(e,t,s,a),s!==null&&(Da(a,"dispatch()",e),ht(s,e,a),eb(s,t,a)))}function I0(e,t,n){var a=arguments;typeof a[3]=="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),a=On(e),fl(e,t,n,a)&&Da(a,"setState()",e)}function fl(e,t,n,a){var s={lane:a,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(zc(e))W0(t,s);else{var r=e.alternate;if(e.lanes===0&&(r===null||r.lanes===0)&&(r=t.lastRenderedReducer,r!==null)){var c=L.H;L.H=da;try{var d=t.lastRenderedState,y=r(d,n);if(s.hasEagerState=!0,s.eagerState=y,rn(y,d))return sc(e,t,s,0),et===null&&ic(),!1}catch{}finally{L.H=c}}if(n=sh(e,t,s,a),n!==null)return ht(n,e,a),eb(n,t,a),!0}return!1}function Wh(e,t,n,a){if(L.T===null&&Ji===0&&console.error("An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition."),a={lane:2,revertLane:Cp(),gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null},zc(e)){if(t)throw Error("Cannot update optimistic state while rendering.");console.error("Cannot call startTransition while rendering.")}else t=sh(e,n,a,2),t!==null&&(Da(2,"setOptimistic()",e),ht(t,e,2))}function zc(e){var t=e.alternate;return e===Ae||t!==null&&t===Ae}function W0(e,t){gr=zf=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function eb(e,t,n){if((n&4194048)!==0){var a=t.lanes;a&=e.pendingLanes,n|=a,t.lanes=n,Qr(e,n)}}function ep(e){if(e!==null&&typeof e!="function"){var t=String(e);KT.has(t)||(KT.add(t),console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",e))}}function tp(e,t,n,a){var s=e.memoizedState,r=n(a,s);if(e.mode&Kt){ue(!0);try{r=n(a,s)}finally{ue(!1)}}r===void 0&&(t=W(t)||"Component",QT.has(t)||(QT.add(t),console.error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.",t))),s=r==null?s:je({},s,r),e.memoizedState=s,e.lanes===0&&(e.updateQueue.baseState=s)}function tb(e,t,n,a,s,r,c){var d=e.stateNode;if(typeof d.shouldComponentUpdate=="function"){if(n=d.shouldComponentUpdate(a,r,c),e.mode&Kt){ue(!0);try{n=d.shouldComponentUpdate(a,r,c)}finally{ue(!1)}}return n===void 0&&console.error("%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.",W(t)||"Component"),n}return t.prototype&&t.prototype.isPureReactComponent?!el(n,a)||!el(s,r):!0}function nb(e,t,n,a){var s=t.state;typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps(n,a),typeof t.UNSAFE_componentWillReceiveProps=="function"&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==s&&(e=F(e)||"Component",YT.has(e)||(YT.add(e),console.error("%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",e)),Jm.enqueueReplaceState(t,t.state,null))}function ki(e,t){var n=t;if("ref"in t){n={};for(var a in t)a!=="ref"&&(n[a]=t[a])}if(e=e.defaultProps){n===t&&(n=je({},n));for(var s in e)n[s]===void 0&&(n[s]=e[s])}return n}function ab(e){wm(e),console.warn(`%s
121
+
122
+ %s
123
+ `,vr?"An error occurred in the <"+vr+"> component.":"An error occurred in one of your React components.",`Consider adding an error boundary to your tree to customize error handling behavior.
124
+ Visit https://react.dev/link/error-boundaries to learn more about error boundaries.`)}function ob(e){var t=vr?"The above error occurred in the <"+vr+"> component.":"The above error occurred in one of your React components.",n="React will try to recreate this component tree from scratch using the error boundary you provided, "+((Km||"Anonymous")+".");if(typeof e=="object"&&e!==null&&typeof e.environmentName=="string"){var a=e.environmentName;e=[`%o
125
+
126
+ %s
127
+
128
+ %s
129
+ `,e,t,n].slice(0),typeof e[0]=="string"?e.splice(0,1,UE+" "+e[0],zE,sd+a+sd,VE):e.splice(0,0,UE,zE,sd+a+sd,VE),e.unshift(console),a=MM.apply(console.error,e),a()}else console.error(`%o
130
+
131
+ %s
132
+
133
+ %s
134
+ `,e,t,n)}function ib(e){wm(e)}function Vc(e,t){try{vr=t.source?F(t.source):null,Km=null;var n=t.value;if(L.actQueue!==null)L.thrownErrors.push(n);else{var a=e.onUncaughtError;a(n,{componentStack:t.stack})}}catch(s){setTimeout(function(){throw s})}}function sb(e,t,n){try{vr=n.source?F(n.source):null,Km=F(t);var a=e.onCaughtError;a(n.value,{componentStack:n.stack,errorBoundary:t.tag===1?t.stateNode:null})}catch(s){setTimeout(function(){throw s})}}function np(e,t,n){return n=Bo(n),n.tag=Pm,n.payload={element:null},n.callback=function(){se(t.source,Vc,e,t)},n}function ap(e){return e=Bo(e),e.tag=Pm,e}function op(e,t,n,a){var s=n.type.getDerivedStateFromError;if(typeof s=="function"){var r=a.value;e.payload=function(){return s(r)},e.callback=function(){Wv(n),se(a.source,sb,t,n,a)}}var c=n.stateNode;c!==null&&typeof c.componentDidCatch=="function"&&(e.callback=function(){Wv(n),se(a.source,sb,t,n,a),typeof s!="function"&&(ui===null?ui=new Set([this]):ui.add(this)),iM(this,a),typeof s=="function"||(n.lanes&2)===0&&console.error("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.",F(n)||"Unknown")})}function _w(e,t,n,a,s){if(n.flags|=32768,qa&&bl(e,s),a!==null&&typeof a=="object"&&typeof a.then=="function"){if(t=n.alternate,t!==null&&Ns(t,n,s,!0),Le&&(Pa=!0),n=Un.current,n!==null){switch(n.tag){case 31:case 13:return Fn===null?Pc():n.alternate===null&&dt===To&&(dt=Lf),n.flags&=-257,n.flags|=65536,n.lanes=s,a===_f?n.flags|=16384:(t=n.updateQueue,t===null?n.updateQueue=new Set([a]):t.add(a),Rp(e,a,s)),!1;case 22:return n.flags|=65536,a===_f?n.flags|=16384:(t=n.updateQueue,t===null?(t={transitions:null,markerInstances:null,retryQueue:new Set([a])},n.updateQueue=t):(n=t.retryQueue,n===null?t.retryQueue=new Set([a]):n.add(a)),Rp(e,a,s)),!1}throw Error("Unexpected Suspense handler tag ("+n.tag+"). This is a bug in React.")}return Rp(e,a,s),Pc(),!1}if(Le)return Pa=!0,t=Un.current,t!==null?((t.flags&65536)===0&&(t.flags|=256),t.flags|=65536,t.lanes=s,a!==Um&&tl(Dn(Error("There was an error while hydrating but React was able to recover by instead client rendering from the nearest Suspense boundary.",{cause:a}),n))):(a!==Um&&tl(Dn(Error("There was an error while hydrating but React was able to recover by instead client rendering the entire root.",{cause:a}),n)),e=e.current.alternate,e.flags|=65536,s&=-s,e.lanes|=s,a=Dn(a,n),s=np(e.stateNode,a,s),Tc(e,s),dt!==ii&&(dt=ns)),!1;var r=Dn(Error("There was an error during concurrent rendering but React was able to recover by instead synchronously rendering the entire root.",{cause:a}),n);if(fu===null?fu=[r]:fu.push(r),dt!==ii&&(dt=ns),t===null)return!0;a=Dn(a,n),n=t;do{switch(n.tag){case 3:return n.flags|=65536,e=s&-s,n.lanes|=e,e=np(n.stateNode,a,e),Tc(n,e),!1;case 1:if(t=n.type,r=n.stateNode,(n.flags&128)===0&&(typeof t.getDerivedStateFromError=="function"||r!==null&&typeof r.componentDidCatch=="function"&&(ui===null||!ui.has(r))))return n.flags|=65536,s&=-s,n.lanes|=s,s=ap(s),op(s,e,n,a),Tc(n,s),!1}n=n.return}while(n!==null);return!1}function Yt(e,t,n,a){t.child=e===null?_T(t,null,n,a):es(t,e.child,n,a)}function rb(e,t,n,a,s){n=n.render;var r=t.ref;if("ref"in a){var c={};for(var d in a)d!=="ref"&&(c[d]=a[d])}else c=a;return Vi(t),a=Ch(e,t,n,c,r,s),d=_h(),e!==null&&!xt?(Nh(e,t,s),ao(e,t,s)):(Le&&d&&dh(t),t.flags|=1,Yt(e,t,a,s),t.child)}function lb(e,t,n,a,s){if(e===null){var r=n.type;return typeof r=="function"&&!lh(r)&&r.defaultProps===void 0&&n.compare===null?(n=_i(r),t.tag=15,t.type=n,sp(t,r),ub(e,t,n,a,s)):(e=uh(n.type,null,a,t,t.mode,s),e.ref=t.ref,e.return=t,t.child=e)}if(r=e.child,!dp(e,s)){var c=r.memoizedProps;if(n=n.compare,n=n!==null?n:el,n(c,a)&&e.ref===t.ref)return ao(e,t,s)}return t.flags|=1,e=Wa(r,a),e.ref=t.ref,e.return=t,t.child=e}function ub(e,t,n,a,s){if(e!==null){var r=e.memoizedProps;if(el(r,a)&&e.ref===t.ref&&t.type===e.type)if(xt=!1,t.pendingProps=a=r,dp(e,s))(e.flags&131072)!==0&&(xt=!0);else return t.lanes=e.lanes,ao(e,t,s)}return ip(e,t,n,a,s)}function cb(e,t,n,a){var s=a.children,r=e!==null?e.memoizedState:null;if(e===null&&t.stateNode===null&&(t.stateNode={_visibility:kl,_pendingMarkers:null,_retryCache:null,_transitions:null}),a.mode==="hidden"){if((t.flags&128)!==0){if(r=r!==null?r.baseLanes|n:n,e!==null){for(a=t.child=e.child,s=0;a!==null;)s=s|a.lanes|a.childLanes,a=a.sibling;a=s&~r}else a=0,t.child=null;return fb(e,t,r,n,a)}if((n&536870912)!==0)t.memoizedState={baseLanes:0,cachePool:null},e!==null&&mc(t,r!==null?r.cachePool:null),r!==null?x0(t,r):Rh(t),w0(t);else return a=t.lanes=536870912,fb(e,t,r!==null?r.baseLanes|n:n,n,a)}else r!==null?(mc(t,r.cachePool),x0(t,r),ko(t),t.memoizedState=null):(e!==null&&mc(t,null),Rh(t),ko(t));return Yt(e,t,s,n),t.child}function dl(e,t){return e!==null&&e.tag===22||t.stateNode!==null||(t.stateNode={_visibility:kl,_pendingMarkers:null,_retryCache:null,_transitions:null}),t.sibling}function fb(e,t,n,a,s){var r=Th();return r=r===null?null:{parent:At._currentValue,pool:r},t.memoizedState={baseLanes:n,cachePool:r},e!==null&&mc(t,null),Rh(t),w0(t),e!==null&&Ns(e,t,a,!0),t.childLanes=s,null}function jc(e,t){var n=t.hidden;return n!==void 0&&console.error(`<Activity> doesn't accept a hidden prop. Use mode="hidden" instead.
135
+ - <Activity %s>
136
+ + <Activity %s>`,n===!0?"hidden":n===!1?"hidden={false}":"hidden={...}",n?'mode="hidden"':'mode="visible"'),t=Lc({mode:t.mode,children:t.children},e.mode),t.ref=e.ref,e.child=t,t.return=e,t}function db(e,t,n){return es(t,e.child,null,n),e=jc(t,t.pendingProps),e.flags|=2,wn(t),t.memoizedState=null,e}function Nw(e,t,n){var a=t.pendingProps,s=(t.flags&128)!==0;if(t.flags&=-129,e===null){if(Le){if(a.mode==="hidden")return e=jc(t,a),t.lanes=536870912,dl(null,e);if(wh(t),(e=it)?(n=BS(e,Qn),n=n!==null&&n.data===ls?n:null,n!==null&&(a={dehydrated:n,treeContext:o0(),retryLane:536870912,hydrationErrors:null},t.memoizedState=a,a=n0(n),a.return=t,t.child=a,Xt=t,it=null)):n=null,n===null)throw uc(t,e),zo(t);return t.lanes=536870912,null}return jc(t,a)}var r=e.memoizedState;if(r!==null){var c=r.dehydrated;if(wh(t),s)if(t.flags&256)t.flags&=-257,t=db(e,t,n);else if(t.memoizedState!==null)t.child=e.child,t.flags|=128,t=null;else throw Error("Client rendering an Activity suspended it again. This is a bug in React.");else if(s0(),(n&536870912)!==0&&Gc(t),xt||Ns(e,t,n,!1),s=(n&e.childLanes)!==0,xt||s){if(a=et,a!==null&&(c=xi(a,n),c!==0&&c!==r.retryLane))throw r.retryLane=c,Ft(e,c),ht(a,e,c),Im;Pc(),t=db(e,t,n)}else e=r.treeContext,it=Cn(c.nextSibling),Xt=t,Le=!0,Wo=null,Pa=!1,Nn=null,Qn=!1,e!==null&&i0(t,e),t=jc(t,a),t.flags|=4096;return t}return r=e.child,a={mode:a.mode,children:a.children},(n&536870912)!==0&&(n&e.lanes)!==0&&Gc(t),e=Wa(r,a),e.ref=t.ref,t.child=e,e.return=t,e}function Bc(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("Expected ref to be a function, an object returned by React.createRef(), or undefined/null.");(e===null||e.ref!==n)&&(t.flags|=4194816)}}function ip(e,t,n,a,s){if(n.prototype&&typeof n.prototype.render=="function"){var r=W(n)||"Unknown";IT[r]||(console.error("The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.",r,r),IT[r]=!0)}return t.mode&Kt&&fa.recordLegacyContextWarning(t,null),e===null&&(sp(t,t.type),n.contextTypes&&(r=W(n)||"Unknown",eE[r]||(eE[r]=!0,console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with React.useContext() instead. (https://react.dev/link/legacy-context)",r)))),Vi(t),n=Ch(e,t,n,a,void 0,s),a=_h(),e!==null&&!xt?(Nh(e,t,s),ao(e,t,s)):(Le&&a&&dh(t),t.flags|=1,Yt(e,t,n,s),t.child)}function hb(e,t,n,a,s,r){return Vi(t),bo=-1,ou=e!==null&&e.type!==t.type,t.updateQueue=null,n=Mh(t,a,n,s),O0(e,t),a=_h(),e!==null&&!xt?(Nh(e,t,r),ao(e,t,r)):(Le&&a&&dh(t),t.flags|=1,Yt(e,t,n,r),t.child)}function pb(e,t,n,a,s){switch(h(t)){case!1:var r=t.stateNode,c=new t.type(t.memoizedProps,r.context).state;r.updater.enqueueSetState(r,c,null);break;case!0:t.flags|=128,t.flags|=65536,r=Error("Simulated error coming from DevTools");var d=s&-s;if(t.lanes|=d,c=et,c===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");d=ap(d),op(d,c,t,Dn(r,t)),Tc(t,d)}if(Vi(t),t.stateNode===null){if(c=Io,r=n.contextType,"contextType"in n&&r!==null&&(r===void 0||r.$$typeof!==La)&&!JT.has(n)&&(JT.add(n),d=r===void 0?" However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.":typeof r!="object"?" However, it is set to a "+typeof r+".":r.$$typeof===Wp?" Did you accidentally pass the Context.Consumer instead?":" However, it is set to an object with keys {"+Object.keys(r).join(", ")+"}.",console.error("%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s",W(n)||"Component",d)),typeof r=="object"&&r!==null&&(c=ut(r)),r=new n(a,c),t.mode&Kt){ue(!0);try{r=new n(a,c)}finally{ue(!1)}}if(c=t.memoizedState=r.state!==null&&r.state!==void 0?r.state:null,r.updater=Jm,t.stateNode=r,r._reactInternals=t,r._reactInternalInstance=qT,typeof n.getDerivedStateFromProps=="function"&&c===null&&(c=W(n)||"Component",GT.has(c)||(GT.add(c),console.error("`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.",c,r.state===null?"null":"undefined",c))),typeof n.getDerivedStateFromProps=="function"||typeof r.getSnapshotBeforeUpdate=="function"){var y=d=c=null;if(typeof r.componentWillMount=="function"&&r.componentWillMount.__suppressDeprecationWarning!==!0?c="componentWillMount":typeof r.UNSAFE_componentWillMount=="function"&&(c="UNSAFE_componentWillMount"),typeof r.componentWillReceiveProps=="function"&&r.componentWillReceiveProps.__suppressDeprecationWarning!==!0?d="componentWillReceiveProps":typeof r.UNSAFE_componentWillReceiveProps=="function"&&(d="UNSAFE_componentWillReceiveProps"),typeof r.componentWillUpdate=="function"&&r.componentWillUpdate.__suppressDeprecationWarning!==!0?y="componentWillUpdate":typeof r.UNSAFE_componentWillUpdate=="function"&&(y="UNSAFE_componentWillUpdate"),c!==null||d!==null||y!==null){r=W(n)||"Component";var g=typeof n.getDerivedStateFromProps=="function"?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";XT.has(r)||(XT.add(r),console.error(`Unsafe legacy lifecycles will not be called for components using new component APIs.
137
+
138
+ %s uses %s but also contains the following legacy lifecycles:%s%s%s
139
+
140
+ The above lifecycles should be removed. Learn more about this warning here:
141
+ https://react.dev/link/unsafe-component-lifecycles`,r,g,c!==null?`
142
+ `+c:"",d!==null?`
143
+ `+d:"",y!==null?`
144
+ `+y:""))}}r=t.stateNode,c=W(n)||"Component",r.render||(n.prototype&&typeof n.prototype.render=="function"?console.error("No `render` method found on the %s instance: did you accidentally return an object from the constructor?",c):console.error("No `render` method found on the %s instance: you may have forgotten to define `render`.",c)),!r.getInitialState||r.getInitialState.isReactClassApproved||r.state||console.error("getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?",c),r.getDefaultProps&&!r.getDefaultProps.isReactClassApproved&&console.error("getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.",c),r.contextType&&console.error("contextType was defined as an instance property on %s. Use a static property to define contextType instead.",c),n.childContextTypes&&!FT.has(n)&&(FT.add(n),console.error("%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead. (https://react.dev/link/legacy-context)",c)),n.contextTypes&&!ZT.has(n)&&(ZT.add(n),console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead. (https://react.dev/link/legacy-context)",c)),typeof r.componentShouldUpdate=="function"&&console.error("%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",c),n.prototype&&n.prototype.isPureReactComponent&&typeof r.shouldComponentUpdate<"u"&&console.error("%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.",W(n)||"A pure component"),typeof r.componentDidUnmount=="function"&&console.error("%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?",c),typeof r.componentDidReceiveProps=="function"&&console.error("%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().",c),typeof r.componentWillRecieveProps=="function"&&console.error("%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?",c),typeof r.UNSAFE_componentWillRecieveProps=="function"&&console.error("%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?",c),d=r.props!==a,r.props!==void 0&&d&&console.error("When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.",c),r.defaultProps&&console.error("Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.",c,c),typeof r.getSnapshotBeforeUpdate!="function"||typeof r.componentDidUpdate=="function"||PT.has(n)||(PT.add(n),console.error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.",W(n))),typeof r.getDerivedStateFromProps=="function"&&console.error("%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.",c),typeof r.getDerivedStateFromError=="function"&&console.error("%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.",c),typeof n.getSnapshotBeforeUpdate=="function"&&console.error("%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.",c),(d=r.state)&&(typeof d!="object"||_t(d))&&console.error("%s.state: must be set to an object or null",c),typeof r.getChildContext=="function"&&typeof n.childContextTypes!="object"&&console.error("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().",c),r=t.stateNode,r.props=a,r.state=t.memoizedState,r.refs={},Ah(t),c=n.contextType,r.context=typeof c=="object"&&c!==null?ut(c):Io,r.state===a&&(c=W(n)||"Component",$T.has(c)||($T.add(c),console.error("%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.",c))),t.mode&Kt&&fa.recordLegacyContextWarning(t,r),fa.recordUnsafeLifecycleWarnings(t,r),r.state=t.memoizedState,c=n.getDerivedStateFromProps,typeof c=="function"&&(tp(t,n,c,a),r.state=t.memoizedState),typeof n.getDerivedStateFromProps=="function"||typeof r.getSnapshotBeforeUpdate=="function"||typeof r.UNSAFE_componentWillMount!="function"&&typeof r.componentWillMount!="function"||(c=r.state,typeof r.componentWillMount=="function"&&r.componentWillMount(),typeof r.UNSAFE_componentWillMount=="function"&&r.UNSAFE_componentWillMount(),c!==r.state&&(console.error("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",F(t)||"Component"),Jm.enqueueReplaceState(r,r.state,null)),ll(t,a,r,s),rl(),r.state=t.memoizedState),typeof r.componentDidMount=="function"&&(t.flags|=4194308),(t.mode&ca)!==Ee&&(t.flags|=134217728),r=!0}else if(e===null){r=t.stateNode;var _=t.memoizedProps;d=ki(n,_),r.props=d;var N=r.context;y=n.contextType,c=Io,typeof y=="object"&&y!==null&&(c=ut(y)),g=n.getDerivedStateFromProps,y=typeof g=="function"||typeof r.getSnapshotBeforeUpdate=="function",_=t.pendingProps!==_,y||typeof r.UNSAFE_componentWillReceiveProps!="function"&&typeof r.componentWillReceiveProps!="function"||(_||N!==c)&&nb(t,r,a,c),oi=!1;var w=t.memoizedState;r.state=w,ll(t,a,r,s),rl(),N=t.memoizedState,_||w!==N||oi?(typeof g=="function"&&(tp(t,n,g,a),N=t.memoizedState),(d=oi||tb(t,n,d,a,w,N,c))?(y||typeof r.UNSAFE_componentWillMount!="function"&&typeof r.componentWillMount!="function"||(typeof r.componentWillMount=="function"&&r.componentWillMount(),typeof r.UNSAFE_componentWillMount=="function"&&r.UNSAFE_componentWillMount()),typeof r.componentDidMount=="function"&&(t.flags|=4194308),(t.mode&ca)!==Ee&&(t.flags|=134217728)):(typeof r.componentDidMount=="function"&&(t.flags|=4194308),(t.mode&ca)!==Ee&&(t.flags|=134217728),t.memoizedProps=a,t.memoizedState=N),r.props=a,r.state=N,r.context=c,r=d):(typeof r.componentDidMount=="function"&&(t.flags|=4194308),(t.mode&ca)!==Ee&&(t.flags|=134217728),r=!1)}else{r=t.stateNode,Dh(e,t),c=t.memoizedProps,y=ki(n,c),r.props=y,g=t.pendingProps,w=r.context,N=n.contextType,d=Io,typeof N=="object"&&N!==null&&(d=ut(N)),_=n.getDerivedStateFromProps,(N=typeof _=="function"||typeof r.getSnapshotBeforeUpdate=="function")||typeof r.UNSAFE_componentWillReceiveProps!="function"&&typeof r.componentWillReceiveProps!="function"||(c!==g||w!==d)&&nb(t,r,a,d),oi=!1,w=t.memoizedState,r.state=w,ll(t,a,r,s),rl();var V=t.memoizedState;c!==g||w!==V||oi||e!==null&&e.dependencies!==null&&fc(e.dependencies)?(typeof _=="function"&&(tp(t,n,_,a),V=t.memoizedState),(y=oi||tb(t,n,y,a,w,V,d)||e!==null&&e.dependencies!==null&&fc(e.dependencies))?(N||typeof r.UNSAFE_componentWillUpdate!="function"&&typeof r.componentWillUpdate!="function"||(typeof r.componentWillUpdate=="function"&&r.componentWillUpdate(a,V,d),typeof r.UNSAFE_componentWillUpdate=="function"&&r.UNSAFE_componentWillUpdate(a,V,d)),typeof r.componentDidUpdate=="function"&&(t.flags|=4),typeof r.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof r.componentDidUpdate!="function"||c===e.memoizedProps&&w===e.memoizedState||(t.flags|=4),typeof r.getSnapshotBeforeUpdate!="function"||c===e.memoizedProps&&w===e.memoizedState||(t.flags|=1024),t.memoizedProps=a,t.memoizedState=V),r.props=a,r.state=V,r.context=d,r=y):(typeof r.componentDidUpdate!="function"||c===e.memoizedProps&&w===e.memoizedState||(t.flags|=4),typeof r.getSnapshotBeforeUpdate!="function"||c===e.memoizedProps&&w===e.memoizedState||(t.flags|=1024),r=!1)}if(d=r,Bc(e,t),c=(t.flags&128)!==0,d||c){if(d=t.stateNode,Es(t),c&&typeof n.getDerivedStateFromError!="function")n=null,ln=-1;else if(n=gT(d),t.mode&Kt){ue(!0);try{gT(d)}finally{ue(!1)}}t.flags|=1,e!==null&&c?(t.child=es(t,e.child,null,s),t.child=es(t,null,n,s)):Yt(e,t,n,s),t.memoizedState=d.state,e=t.child}else e=ao(e,t,s);return s=t.stateNode,r&&s.props!==a&&(br||console.error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.",F(t)||"a component"),br=!0),e}function mb(e,t,n,a){return zi(),t.flags|=256,Yt(e,t,n,a),t.child}function sp(e,t){t&&t.childContextTypes&&console.error(`childContextTypes cannot be defined on a function component.
145
+ %s.childContextTypes = ...`,t.displayName||t.name||"Component"),typeof t.getDerivedStateFromProps=="function"&&(e=W(t)||"Unknown",tE[e]||(console.error("%s: Function components do not support getDerivedStateFromProps.",e),tE[e]=!0)),typeof t.contextType=="object"&&t.contextType!==null&&(t=W(t)||"Unknown",WT[t]||(console.error("%s: Function components do not support contextType.",t),WT[t]=!0))}function rp(e){return{baseLanes:e,cachePool:h0()}}function lp(e,t,n){return e=e!==null?e.childLanes&~n:0,t&&(e|=Sn),e}function yb(e,t,n){var a,s=t.pendingProps;p(t)&&(t.flags|=128);var r=!1,c=(t.flags&128)!==0;if((a=c)||(a=e!==null&&e.memoizedState===null?!1:(St.current&nu)!==0),a&&(r=!0,t.flags&=-129),a=(t.flags&32)!==0,t.flags&=-33,e===null){if(Le){if(r?Ho(t):ko(t),(e=it)?(n=BS(e,Qn),n=n!==null&&n.data!==ls?n:null,n!==null&&(a={dehydrated:n,treeContext:o0(),retryLane:536870912,hydrationErrors:null},t.memoizedState=a,a=n0(n),a.return=t,t.child=a,Xt=t,it=null)):n=null,n===null)throw uc(t,e),zo(t);return qp(n)?t.lanes=32:t.lanes=536870912,null}var d=s.children;if(s=s.fallback,r){ko(t);var y=t.mode;return d=Lc({mode:"hidden",children:d},y),s=Ni(s,y,n,null),d.return=t,s.return=t,d.sibling=s,t.child=d,s=t.child,s.memoizedState=rp(n),s.childLanes=lp(e,a,n),t.memoizedState=Wm,dl(null,s)}return Ho(t),up(t,d)}var g=e.memoizedState;if(g!==null){var _=g.dehydrated;if(_!==null){if(c)t.flags&256?(Ho(t),t.flags&=-257,t=cp(e,t,n)):t.memoizedState!==null?(ko(t),t.child=e.child,t.flags|=128,t=null):(ko(t),d=s.fallback,y=t.mode,s=Lc({mode:"visible",children:s.children},y),d=Ni(d,y,n,null),d.flags|=2,s.return=t,d.return=t,s.sibling=d,t.child=s,es(t,e.child,null,n),s=t.child,s.memoizedState=rp(n),s.childLanes=lp(e,a,n),t.memoizedState=Wm,t=dl(null,s));else if(Ho(t),s0(),(n&536870912)!==0&&Gc(t),qp(_)){if(a=_.nextSibling&&_.nextSibling.dataset,a){d=a.dgst;var N=a.msg;y=a.stck;var w=a.cstck}r=N,a=d,s=y,_=w,d=r,y=_,d=Error(d||"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."),d.stack=s||"",d.digest=a,a=y===void 0?null:y,s={value:d,source:null,stack:a},typeof a=="string"&&Nm.set(d,s),tl(s),t=cp(e,t,n)}else if(xt||Ns(e,t,n,!1),a=(n&e.childLanes)!==0,xt||a){if(a=et,a!==null&&(s=xi(a,n),s!==0&&s!==g.retryLane))throw g.retryLane=s,Ft(e,s),ht(a,e,s),Im;kp(_)||Pc(),t=cp(e,t,n)}else kp(_)?(t.flags|=192,t.child=e.child,t=null):(e=g.treeContext,it=Cn(_.nextSibling),Xt=t,Le=!0,Wo=null,Pa=!1,Nn=null,Qn=!1,e!==null&&i0(t,e),t=up(t,s.children),t.flags|=4096);return t}}return r?(ko(t),d=s.fallback,y=t.mode,w=e.child,_=w.sibling,s=Wa(w,{mode:"hidden",children:s.children}),s.subtreeFlags=w.subtreeFlags&65011712,_!==null?d=Wa(_,d):(d=Ni(d,y,n,null),d.flags|=2),d.return=t,s.return=t,s.sibling=d,t.child=s,dl(null,s),s=t.child,d=e.child.memoizedState,d===null?d=rp(n):(y=d.cachePool,y!==null?(w=At._currentValue,y=y.parent!==w?{parent:w,pool:w}:y):y=h0(),d={baseLanes:d.baseLanes|n,cachePool:y}),s.memoizedState=d,s.childLanes=lp(e,a,n),t.memoizedState=Wm,dl(e.child,s)):(g!==null&&(n&62914560)===n&&(n&e.lanes)!==0&&Gc(t),Ho(t),n=e.child,e=n.sibling,n=Wa(n,{mode:"visible",children:s.children}),n.return=t,n.sibling=null,e!==null&&(a=t.deletions,a===null?(t.deletions=[e],t.flags|=16):a.push(e)),t.child=n,t.memoizedState=null,n)}function up(e,t){return t=Lc({mode:"visible",children:t},e.mode),t.return=e,e.child=t}function Lc(e,t){return e=T(22,e,null,t),e.lanes=0,e}function cp(e,t,n){return es(t,e.child,null,n),e=up(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function gb(e,t,n){e.lanes|=t;var a=e.alternate;a!==null&&(a.lanes|=t),yh(e.return,t,n)}function fp(e,t,n,a,s,r){var c=e.memoizedState;c===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:s,treeForkCount:r}:(c.isBackwards=t,c.rendering=null,c.renderingStartTime=0,c.last=a,c.tail=n,c.tailMode=s,c.treeForkCount=r)}function vb(e,t,n){var a=t.pendingProps,s=a.revealOrder,r=a.tail,c=a.children,d=St.current;if((a=(d&nu)!==0)?(d=d&mr|nu,t.flags|=128):d&=mr,be(St,d,t),d=s??"null",s!=="forwards"&&s!=="unstable_legacy-backwards"&&s!=="together"&&s!=="independent"&&!nE[d])if(nE[d]=!0,s==null)console.error('The default for the <SuspenseList revealOrder="..."> prop is changing. To be future compatible you must explictly specify either "independent" (the current default), "together", "forwards" or "legacy_unstable-backwards".');else if(s==="backwards")console.error('The rendering order of <SuspenseList revealOrder="backwards"> is changing. To be future compatible you must specify revealOrder="legacy_unstable-backwards" instead.');else if(typeof s=="string")switch(s.toLowerCase()){case"together":case"forwards":case"backwards":case"independent":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. Use lowercase "%s" instead.',s,s.toLowerCase());break;case"forward":case"backward":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use "%ss" instead.',s,s.toLowerCase());break;default:console.error('"%s" is not a supported revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?',s)}else console.error('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?',s);d=r??"null",Bf[d]||(r==null?(s==="forwards"||s==="backwards"||s==="unstable_legacy-backwards")&&(Bf[d]=!0,console.error('The default for the <SuspenseList tail="..."> prop is changing. To be future compatible you must explictly specify either "visible" (the current default), "collapsed" or "hidden".')):r!=="visible"&&r!=="collapsed"&&r!=="hidden"?(Bf[d]=!0,console.error('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "visible", "collapsed" or "hidden"?',r)):s!=="forwards"&&s!=="backwards"&&s!=="unstable_legacy-backwards"&&(Bf[d]=!0,console.error('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" or "backwards". Did you mean to specify revealOrder="forwards"?',r)));e:if((s==="forwards"||s==="backwards"||s==="unstable_legacy-backwards")&&c!==void 0&&c!==null&&c!==!1)if(_t(c)){for(d=0;d<c.length;d++)if(!A0(c[d],d))break e}else if(d=ve(c),typeof d=="function"){if(d=d.call(c))for(var y=d.next(),g=0;!y.done;y=d.next()){if(!A0(y.value,g))break e;g++}}else console.error('A single row was passed to a <SuspenseList revealOrder="%s" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?',s);if(Yt(e,t,c,n),Le?(Uo(),c=ql):c=0,!a&&e!==null&&(e.flags&128)!==0)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&gb(e,n,t);else if(e.tag===19)gb(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;e.sibling===null;){if(e.return===null||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(s){case"forwards":for(n=t.child,s=null;n!==null;)e=n.alternate,e!==null&&Ec(e)===null&&(s=n),n=n.sibling;n=s,n===null?(s=t.child,t.child=null):(s=n.sibling,n.sibling=null),fp(t,!1,s,n,r,c);break;case"backwards":case"unstable_legacy-backwards":for(n=null,s=t.child,t.child=null;s!==null;){if(e=s.alternate,e!==null&&Ec(e)===null){t.child=s;break}e=s.sibling,s.sibling=n,n=s,s=e}fp(t,!0,n,null,r,c);break;case"together":fp(t,!1,null,null,void 0,c);break;default:t.memoizedState=null}return t.child}function ao(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),ln=-1,ri|=t.lanes,(n&t.childLanes)===0)if(e!==null){if(Ns(e,t,n,!1),(n&t.childLanes)===0)return null}else return null;if(e!==null&&t.child!==e.child)throw Error("Resuming work not yet implemented.");if(t.child!==null){for(e=t.child,n=Wa(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=Wa(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function dp(e,t){return(e.lanes&t)!==0?!0:(e=e.dependencies,!!(e!==null&&fc(e)))}function Uw(e,t,n){switch(t.tag){case 3:lt(t,t.stateNode.containerInfo),Vo(t,At,e.memoizedState.cache),zi();break;case 27:case 5:ie(t);break;case 4:lt(t,t.stateNode.containerInfo);break;case 10:Vo(t,t.type,t.memoizedProps.value);break;case 12:(n&t.childLanes)!==0&&(t.flags|=4),t.flags|=2048;var a=t.stateNode;a.effectDuration=-0,a.passiveEffectDuration=-0;break;case 31:if(t.memoizedState!==null)return t.flags|=128,wh(t),null;break;case 13:if(a=t.memoizedState,a!==null)return a.dehydrated!==null?(Ho(t),t.flags|=128,null):(n&t.child.childLanes)!==0?yb(e,t,n):(Ho(t),e=ao(e,t,n),e!==null?e.sibling:null);Ho(t);break;case 19:var s=(e.flags&128)!==0;if(a=(n&t.childLanes)!==0,a||(Ns(e,t,n,!1),a=(n&t.childLanes)!==0),s){if(a)return vb(e,t,n);t.flags|=128}if(s=t.memoizedState,s!==null&&(s.rendering=null,s.tail=null,s.lastEffect=null),be(St,St.current,t),a)break;return null;case 22:return t.lanes=0,cb(e,t,n,t.pendingProps);case 24:Vo(t,At,e.memoizedState.cache)}return ao(e,t,n)}function hp(e,t,n){if(t._debugNeedsRemount&&e!==null){n=uh(t.type,t.key,t.pendingProps,t._debugOwner||null,t.mode,t.lanes),n._debugStack=t._debugStack,n._debugTask=t._debugTask;var a=t.return;if(a===null)throw Error("Cannot swap the root fiber.");if(e.alternate=null,t.alternate=null,n.index=t.index,n.sibling=t.sibling,n.return=t.return,n.ref=t.ref,n._debugInfo=t._debugInfo,t===a.child)a.child=n;else{var s=a.child;if(s===null)throw Error("Expected parent to have a child.");for(;s.sibling!==t;)if(s=s.sibling,s===null)throw Error("Expected to find the previous sibling.");s.sibling=n}return t=a.deletions,t===null?(a.deletions=[e],a.flags|=16):t.push(e),n.flags|=2,n}if(e!==null)if(e.memoizedProps!==t.pendingProps||t.type!==e.type)xt=!0;else{if(!dp(e,n)&&(t.flags&128)===0)return xt=!1,Uw(e,t,n);xt=(e.flags&131072)!==0}else xt=!1,(a=Le)&&(Uo(),a=(t.flags&1048576)!==0),a&&(a=t.index,Uo(),a0(t,ql,a));switch(t.lanes=0,t.tag){case 16:e:if(a=t.pendingProps,e=jo(t.elementType),t.type=e,typeof e=="function")lh(e)?(a=ki(e,a),t.tag=1,t.type=e=_i(e),t=pb(null,t,e,a,n)):(t.tag=0,sp(t,e),t.type=e=_i(e),t=ip(null,t,e,a,n));else{if(e!=null){if(s=e.$$typeof,s===Ol){t.tag=11,t.type=e=rh(e),t=rb(null,t,e,a,n);break e}else if(s===of){t.tag=14,t=lb(null,t,e,a,n);break e}}throw t="",e!==null&&typeof e=="object"&&e.$$typeof===Mn&&(t=" Did you wrap a component in React.lazy() more than once?"),n=W(e)||e,Error("Element type is invalid. Received a promise that resolves to: "+n+". Lazy element type must resolve to a class or function."+t)}return t;case 0:return ip(e,t,t.type,t.pendingProps,n);case 1:return a=t.type,s=ki(a,t.pendingProps),pb(e,t,a,s,n);case 3:e:{if(lt(t,t.stateNode.containerInfo),e===null)throw Error("Should have a current fiber. This is a bug in React.");a=t.pendingProps;var r=t.memoizedState;s=r.element,Dh(e,t),ll(t,a,null,n);var c=t.memoizedState;if(a=c.cache,Vo(t,At,a),a!==r.cache&&gh(t,[At],n,!0),rl(),a=c.element,r.isDehydrated)if(r={element:a,isDehydrated:!1,cache:c.cache},t.updateQueue.baseState=r,t.memoizedState=r,t.flags&256){t=mb(e,t,a,n);break e}else if(a!==s){s=Dn(Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."),t),tl(s),t=mb(e,t,a,n);break e}else for(e=t.stateNode.containerInfo,e.nodeType===9?e=e.body:e=e.nodeName==="HTML"?e.ownerDocument.body:e,it=Cn(e.firstChild),Xt=t,Le=!0,Wo=null,Pa=!1,Nn=null,Qn=!0,n=_T(t,null,a,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(zi(),a===s){t=ao(e,t,n);break e}Yt(e,t,a,n)}t=t.child}return t;case 26:return Bc(e,t),e===null?(n=GS(t.type,null,t.pendingProps,null))?t.memoizedState=n:Le||(n=t.type,e=t.pendingProps,a=Ze($o.current),a=Zc(a).createElement(n),a[Pt]=t,a[on]=e,Gt(a,n,e),pe(a),t.stateNode=a):t.memoizedState=GS(t.type,e.memoizedProps,t.pendingProps,e.memoizedState),null;case 27:return ie(t),e===null&&Le&&(a=Ze($o.current),s=ae(),a=t.stateNode=qS(t.type,t.pendingProps,a,s,!1),Pa||(s=CS(a,t.type,t.pendingProps,s),s!==null&&(Ui(t,0).serverProps=s)),Xt=t,Qn=!0,s=it,Po(t.type)?(Ey=s,it=Cn(a.firstChild)):it=s),Yt(e,t,t.pendingProps.children,n),Bc(e,t),e===null&&(t.flags|=4194304),t.child;case 5:return e===null&&Le&&(r=ae(),a=Id(t.type,r.ancestorInfo),s=it,(c=!s)||(c=TO(s,t.type,t.pendingProps,Qn),c!==null?(t.stateNode=c,Pa||(r=CS(c,t.type,t.pendingProps,r),r!==null&&(Ui(t,0).serverProps=r)),Xt=t,it=Cn(c.firstChild),Qn=!1,r=!0):r=!1,c=!r),c&&(a&&uc(t,s),zo(t))),ie(t),s=t.type,r=t.pendingProps,c=e!==null?e.memoizedProps:null,a=r.children,Lp(s,r)?a=null:c!==null&&Lp(s,c)&&(t.flags|=32),t.memoizedState!==null&&(s=Ch(e,t,Rw,null,null,n),Su._currentValue=s),Bc(e,t),Yt(e,t,a,n),t.child;case 6:return e===null&&Le&&(n=t.pendingProps,e=ae(),a=e.ancestorInfo.current,n=a!=null?Wu(n,a.tag,e.ancestorInfo.implicitRootScope):!0,e=it,(a=!e)||(a=EO(e,t.pendingProps,Qn),a!==null?(t.stateNode=a,Xt=t,it=null,a=!0):a=!1,a=!a),a&&(n&&uc(t,e),zo(t))),null;case 13:return yb(e,t,n);case 4:return lt(t,t.stateNode.containerInfo),a=t.pendingProps,e===null?t.child=es(t,null,a,n):Yt(e,t,a,n),t.child;case 11:return rb(e,t,t.type,t.pendingProps,n);case 7:return Yt(e,t,t.pendingProps,n),t.child;case 8:return Yt(e,t,t.pendingProps.children,n),t.child;case 12:return t.flags|=4,t.flags|=2048,a=t.stateNode,a.effectDuration=-0,a.passiveEffectDuration=-0,Yt(e,t,t.pendingProps.children,n),t.child;case 10:return a=t.type,s=t.pendingProps,r=s.value,"value"in s||aE||(aE=!0,console.error("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?")),Vo(t,a,r),Yt(e,t,s.children,n),t.child;case 9:return s=t.type._context,a=t.pendingProps.children,typeof a!="function"&&console.error("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."),Vi(t),s=ut(s),a=km(a,s,void 0),t.flags|=1,Yt(e,t,a,n),t.child;case 14:return lb(e,t,t.type,t.pendingProps,n);case 15:return ub(e,t,t.type,t.pendingProps,n);case 19:return vb(e,t,n);case 31:return Nw(e,t,n);case 22:return cb(e,t,n,t.pendingProps);case 24:return Vi(t),a=ut(At),e===null?(s=Th(),s===null&&(s=et,r=vh(),s.pooledCache=r,ji(r),r!==null&&(s.pooledCacheLanes|=n),s=r),t.memoizedState={parent:a,cache:s},Ah(t),Vo(t,At,s)):((e.lanes&n)!==0&&(Dh(e,t),ll(t,null,null,n),rl()),s=e.memoizedState,r=t.memoizedState,s.parent!==a?(s={parent:a,cache:a},t.memoizedState=s,t.lanes===0&&(t.memoizedState=t.updateQueue.baseState=s),Vo(t,At,a)):(a=r.cache,Vo(t,At,a),a!==s.cache&&gh(t,[At],n,!0))),Yt(e,t,t.pendingProps.children,n),t.child;case 29:throw t.pendingProps}throw Error("Unknown unit of work tag ("+t.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function oo(e){e.flags|=4}function pp(e,t,n,a,s){if((t=(e.mode&eM)!==Ee)&&(t=!1),t){if(e.flags|=16777216,(s&335544128)===s)if(e.stateNode.complete)e.flags|=8192;else if(Kb())e.flags|=8192;else throw Wi=_f,Ym}else e.flags&=-16777217}function bb(e,t){if(t.type!=="stylesheet"||(t.state.loading&In)!==fs)e.flags&=-16777217;else if(e.flags|=16777216,!ZS(t))if(Kb())e.flags|=8192;else throw Wi=_f,Ym}function Hc(e,t){t!==null&&(e.flags|=4),e.flags&16384&&(t=e.tag!==22?Pr():536870912,e.lanes|=t,is|=t)}function hl(e,t){if(!Le)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 a=null;n!==null;)n.alternate!==null&&(a=n),n=n.sibling;a===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:a.sibling=null}}function nt(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,a=0;if(t)if((e.mode&_e)!==Ee){for(var s=e.selfBaseDuration,r=e.child;r!==null;)n|=r.lanes|r.childLanes,a|=r.subtreeFlags&65011712,a|=r.flags&65011712,s+=r.treeBaseDuration,r=r.sibling;e.treeBaseDuration=s}else for(s=e.child;s!==null;)n|=s.lanes|s.childLanes,a|=s.subtreeFlags&65011712,a|=s.flags&65011712,s.return=e,s=s.sibling;else if((e.mode&_e)!==Ee){s=e.actualDuration,r=e.selfBaseDuration;for(var c=e.child;c!==null;)n|=c.lanes|c.childLanes,a|=c.subtreeFlags,a|=c.flags,s+=c.actualDuration,r+=c.treeBaseDuration,c=c.sibling;e.actualDuration=s,e.treeBaseDuration=r}else for(s=e.child;s!==null;)n|=s.lanes|s.childLanes,a|=s.subtreeFlags,a|=s.flags,s.return=e,s=s.sibling;return e.subtreeFlags|=a,e.childLanes=n,t}function zw(e,t,n){var a=t.pendingProps;switch(hh(t),t.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return nt(t),null;case 1:return nt(t),null;case 3:return n=t.stateNode,a=null,e!==null&&(a=e.memoizedState.cache),t.memoizedState.cache!==a&&(t.flags|=2048),to(At,t),G(t),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(e===null||e.child===null)&&(_s(t)?(mh(),oo(t)):e===null||e.memoizedState.isDehydrated&&(t.flags&256)===0||(t.flags|=1024,ph())),nt(t),null;case 26:var s=t.type,r=t.memoizedState;return e===null?(oo(t),r!==null?(nt(t),bb(t,r)):(nt(t),pp(t,s,null,a,n))):r?r!==e.memoizedState?(oo(t),nt(t),bb(t,r)):(nt(t),t.flags&=-16777217):(e=e.memoizedProps,e!==a&&oo(t),nt(t),pp(t,s,e,a,n)),null;case 27:if(xe(t),n=Ze($o.current),s=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==a&&oo(t);else{if(!a){if(t.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return nt(t),null}e=ae(),_s(t)?r0(t):(e=qS(s,a,n,e,!0),t.stateNode=e,oo(t))}return nt(t),null;case 5:if(xe(t),s=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==a&&oo(t);else{if(!a){if(t.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return nt(t),null}var c=ae();if(_s(t))r0(t);else{switch(r=Ze($o.current),Id(s,c.ancestorInfo),c=c.context,r=Zc(r),c){case wr:r=r.createElementNS(Ks,s);break;case ad:r=r.createElementNS(df,s);break;default:switch(s){case"svg":r=r.createElementNS(Ks,s);break;case"math":r=r.createElementNS(df,s);break;case"script":r=r.createElement("div"),r.innerHTML="<script><\/script>",r=r.removeChild(r.firstChild);break;case"select":r=typeof a.is=="string"?r.createElement("select",{is:a.is}):r.createElement("select"),a.multiple?r.multiple=!0:a.size&&(r.size=a.size);break;default:r=typeof a.is=="string"?r.createElement(s,{is:a.is}):r.createElement(s),s.indexOf("-")===-1&&(s!==s.toLowerCase()&&console.error("<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.",s),Object.prototype.toString.call(r)!=="[object HTMLUnknownElement]"||ua.call(wE,s)||(wE[s]=!0,console.error("The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.",s)))}}r[Pt]=t,r[on]=a;e:for(c=t.child;c!==null;){if(c.tag===5||c.tag===6)r.appendChild(c.stateNode);else if(c.tag!==4&&c.tag!==27&&c.child!==null){c.child.return=c,c=c.child;continue}if(c===t)break e;for(;c.sibling===null;){if(c.return===null||c.return===t)break e;c=c.return}c.sibling.return=c.return,c=c.sibling}t.stateNode=r;e:switch(Gt(r,s,a),s){case"button":case"input":case"select":case"textarea":a=!!a.autoFocus;break e;case"img":a=!0;break e;default:a=!1}a&&oo(t)}}return nt(t),pp(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==a&&oo(t);else{if(typeof a!="string"&&t.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");if(e=Ze($o.current),n=ae(),_s(t)){if(e=t.stateNode,n=t.memoizedProps,s=!Pa,a=null,r=Xt,r!==null)switch(r.tag){case 3:s&&(s=HS(e,n,a),s!==null&&(Ui(t,0).serverProps=s));break;case 27:case 5:a=r.memoizedProps,s&&(s=HS(e,n,a),s!==null&&(Ui(t,0).serverProps=s))}e[Pt]=t,e=!!(e.nodeValue===n||a!==null&&a.suppressHydrationWarning===!0||DS(e.nodeValue,n)),e||zo(t,!0)}else s=n.ancestorInfo.current,s!=null&&Wu(a,s.tag,n.ancestorInfo.implicitRootScope),e=Zc(e).createTextNode(a),e[Pt]=t,t.stateNode=e}return nt(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(a=_s(t),n!==null){if(e===null){if(!a)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(e=t.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error("Expected to have a hydrated activity instance. This error is likely caused by a bug in React. Please file an issue.");e[Pt]=t,nt(t),(t.mode&_e)!==Ee&&n!==null&&(e=t.child,e!==null&&(t.treeBaseDuration-=e.treeBaseDuration))}else mh(),zi(),(t.flags&128)===0&&(n=t.memoizedState=null),t.flags|=4,nt(t),(t.mode&_e)!==Ee&&n!==null&&(e=t.child,e!==null&&(t.treeBaseDuration-=e.treeBaseDuration));e=!1}else n=ph(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(wn(t),t):(wn(t),null);if((t.flags&128)!==0)throw Error("Client rendering an Activity suspended it again. This is a bug in React.")}return nt(t),null;case 13:if(a=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(s=a,r=_s(t),s!==null&&s.dehydrated!==null){if(e===null){if(!r)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(r=t.memoizedState,r=r!==null?r.dehydrated:null,!r)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");r[Pt]=t,nt(t),(t.mode&_e)!==Ee&&s!==null&&(s=t.child,s!==null&&(t.treeBaseDuration-=s.treeBaseDuration))}else mh(),zi(),(t.flags&128)===0&&(s=t.memoizedState=null),t.flags|=4,nt(t),(t.mode&_e)!==Ee&&s!==null&&(s=t.child,s!==null&&(t.treeBaseDuration-=s.treeBaseDuration));s=!1}else s=ph(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=s),s=!0;if(!s)return t.flags&256?(wn(t),t):(wn(t),null)}return wn(t),(t.flags&128)!==0?(t.lanes=n,(t.mode&_e)!==Ee&&ol(t),t):(n=a!==null,e=e!==null&&e.memoizedState!==null,n&&(a=t.child,s=null,a.alternate!==null&&a.alternate.memoizedState!==null&&a.alternate.memoizedState.cachePool!==null&&(s=a.alternate.memoizedState.cachePool.pool),r=null,a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(r=a.memoizedState.cachePool.pool),r!==s&&(a.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),Hc(t,t.updateQueue),nt(t),(t.mode&_e)!==Ee&&n&&(e=t.child,e!==null&&(t.treeBaseDuration-=e.treeBaseDuration)),null);case 4:return G(t),e===null&&_p(t.stateNode.containerInfo),nt(t),null;case 10:return to(t.type,t),nt(t),null;case 19:if(fe(St,t),a=t.memoizedState,a===null)return nt(t),null;if(s=(t.flags&128)!==0,r=a.rendering,r===null)if(s)hl(a,!1);else{if(dt!==To||e!==null&&(e.flags&128)!==0)for(e=t.child;e!==null;){if(r=Ec(e),r!==null){for(t.flags|=128,hl(a,!1),e=r.updateQueue,t.updateQueue=e,Hc(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)t0(n,e),n=n.sibling;return be(St,St.current&mr|nu,t),Le&&eo(t,a.treeForkCount),t.child}e=e.sibling}a.tail!==null&&Bt()>Pf&&(t.flags|=128,s=!0,hl(a,!1),t.lanes=4194304)}else{if(!s)if(e=Ec(r),e!==null){if(t.flags|=128,s=!0,e=e.updateQueue,t.updateQueue=e,Hc(t,e),hl(a,!0),a.tail===null&&a.tailMode==="hidden"&&!r.alternate&&!Le)return nt(t),null}else 2*Bt()-a.renderingStartTime>Pf&&n!==536870912&&(t.flags|=128,s=!0,hl(a,!1),t.lanes=4194304);a.isBackwards?(r.sibling=t.child,t.child=r):(e=a.last,e!==null?e.sibling=r:t.child=r,a.last=r)}return a.tail!==null?(e=a.tail,a.rendering=e,a.tail=e.sibling,a.renderingStartTime=Bt(),e.sibling=null,n=St.current,n=s?n&mr|nu:n&mr,be(St,n,t),Le&&eo(t,a.treeForkCount),e):(nt(t),null);case 22:case 23:return wn(t),xh(t),a=t.memoizedState!==null,e!==null?e.memoizedState!==null!==a&&(t.flags|=8192):a&&(t.flags|=8192),a?(n&536870912)!==0&&(t.flags&128)===0&&(nt(t),t.subtreeFlags&6&&(t.flags|=8192)):nt(t),n=t.updateQueue,n!==null&&Hc(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),a=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(a=t.memoizedState.cachePool.pool),a!==n&&(t.flags|=2048),e!==null&&fe(Ki,t),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),to(At,t),nt(t),null;case 25:return null;case 30:return null}throw Error("Unknown unit of work tag ("+t.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function Vw(e,t){switch(hh(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,(t.mode&_e)!==Ee&&ol(t),t):null;case 3:return to(At,t),G(t),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return xe(t),null;case 31:if(t.memoizedState!==null){if(wn(t),t.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");zi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,(t.mode&_e)!==Ee&&ol(t),t):null;case 13:if(wn(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");zi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,(t.mode&_e)!==Ee&&ol(t),t):null;case 19:return fe(St,t),null;case 4:return G(t),null;case 10:return to(t.type,t),null;case 22:case 23:return wn(t),xh(t),e!==null&&fe(Ki,t),e=t.flags,e&65536?(t.flags=e&-65537|128,(t.mode&_e)!==Ee&&ol(t),t):null;case 24:return to(At,t),null;case 25:return null;default:return null}}function Sb(e,t){switch(hh(t),t.tag){case 3:to(At,t),G(t);break;case 26:case 27:case 5:xe(t);break;case 4:G(t);break;case 31:t.memoizedState!==null&&wn(t);break;case 13:wn(t);break;case 19:fe(St,t);break;case 10:to(t.type,t);break;case 22:case 23:wn(t),xh(t),e!==null&&fe(Ki,t);break;case 24:to(At,t)}}function _a(e){return(e.mode&_e)!==Ee}function Tb(e,t){_a(e)?(Ma(),pl(t,e),Ca()):pl(t,e)}function mp(e,t,n){_a(e)?(Ma(),Bs(n,e,t),Ca()):Bs(n,e,t)}function pl(e,t){try{var n=t.updateQueue,a=n!==null?n.lastEffect:null;if(a!==null){var s=a.next;n=s;do{if((n.tag&e)===e&&(a=void 0,(e&un)!==Uf&&(Dr=!0),a=se(t,sM,n),(e&un)!==Uf&&(Dr=!1),a!==void 0&&typeof a!="function")){var r=void 0;r=(n.tag&zn)!==0?"useLayoutEffect":(n.tag&un)!==0?"useInsertionEffect":"useEffect";var c=void 0;c=a===null?" You returned null. If your effect does not require clean up, return undefined (or nothing).":typeof a.then=="function"?`
146
+
147
+ It looks like you wrote `+r+`(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:
148
+
149
+ `+r+`(() => {
150
+ async function fetchData() {
151
+ // You can await here
152
+ const response = await MyAPI.getData(someId);
153
+ // ...
154
+ }
155
+ fetchData();
156
+ }, [someId]); // Or [] if effect doesn't need props or state
157
+
158
+ Learn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching`:" You returned: "+a,se(t,function(d,y){console.error("%s must not return anything besides a function, which is used for clean-up.%s",d,y)},r,c)}n=n.next}while(n!==s)}}catch(d){$e(t,t.return,d)}}function Bs(e,t,n){try{var a=t.updateQueue,s=a!==null?a.lastEffect:null;if(s!==null){var r=s.next;a=r;do{if((a.tag&e)===e){var c=a.inst,d=c.destroy;d!==void 0&&(c.destroy=void 0,(e&un)!==Uf&&(Dr=!0),s=t,se(s,rM,s,n,d),(e&un)!==Uf&&(Dr=!1))}a=a.next}while(a!==r)}}catch(y){$e(t,t.return,y)}}function Eb(e,t){_a(e)?(Ma(),pl(t,e),Ca()):pl(t,e)}function yp(e,t,n){_a(e)?(Ma(),Bs(n,e,t),Ca()):Bs(n,e,t)}function Ab(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;e.type.defaultProps||"ref"in e.memoizedProps||br||(n.props!==e.memoizedProps&&console.error("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",F(e)||"instance"),n.state!==e.memoizedState&&console.error("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",F(e)||"instance"));try{se(e,R0,t,n)}catch(a){$e(e,e.return,a)}}}function jw(e,t,n){return e.getSnapshotBeforeUpdate(t,n)}function Bw(e,t){var n=t.memoizedProps,a=t.memoizedState;t=e.stateNode,e.type.defaultProps||"ref"in e.memoizedProps||br||(t.props!==e.memoizedProps&&console.error("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",F(e)||"instance"),t.state!==e.memoizedState&&console.error("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",F(e)||"instance"));try{var s=ki(e.type,n),r=se(e,jw,t,s,a);n=oE,r!==void 0||n.has(e.type)||(n.add(e.type),se(e,function(){console.error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.",F(e))})),t.__reactInternalSnapshotBeforeUpdate=r}catch(c){$e(e,e.return,c)}}function Db(e,t,n){n.props=ki(e.type,e.memoizedProps),n.state=e.memoizedState,_a(e)?(Ma(),se(e,AT,e,t,n),Ca()):se(e,AT,e,t,n)}function Lw(e){var t=e.ref;if(t!==null){switch(e.tag){case 26:case 27:case 5:var n=e.stateNode;break;case 30:n=e.stateNode;break;default:n=e.stateNode}if(typeof t=="function")if(_a(e))try{Ma(),e.refCleanup=t(n)}finally{Ca()}else e.refCleanup=t(n);else typeof t=="string"?console.error("String refs are no longer supported."):t.hasOwnProperty("current")||console.error("Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().",F(e)),t.current=n}}function ml(e,t){try{se(e,Lw,e)}catch(n){$e(e,t,n)}}function Na(e,t){var n=e.ref,a=e.refCleanup;if(n!==null)if(typeof a=="function")try{if(_a(e))try{Ma(),se(e,a)}finally{Ca(e)}else se(e,a)}catch(s){$e(e,t,s)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n=="function")try{if(_a(e))try{Ma(),se(e,n,null)}finally{Ca(e)}else se(e,n,null)}catch(s){$e(e,t,s)}else n.current=null}function Rb(e,t,n,a){var s=e.memoizedProps,r=s.id,c=s.onCommit;s=s.onRender,t=t===null?"mount":"update",wf&&(t="nested-update"),typeof s=="function"&&s(r,t,e.actualDuration,e.treeBaseDuration,e.actualStartTime,n),typeof c=="function"&&c(r,t,a,n)}function Hw(e,t,n,a){var s=e.memoizedProps;e=s.id,s=s.onPostCommit,t=t===null?"mount":"update",wf&&(t="nested-update"),typeof s=="function"&&s(e,t,a,n)}function xb(e){var t=e.type,n=e.memoizedProps,a=e.stateNode;try{se(e,uO,a,t,n,e)}catch(s){$e(e,e.return,s)}}function gp(e,t,n){try{se(e,fO,e.stateNode,e.type,n,t,e)}catch(a){$e(e,e.return,a)}}function wb(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Po(e.type)||e.tag===4}function vp(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||wb(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&&Po(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function bp(e,t,n){var a=e.tag;if(a===5||a===6)e=e.stateNode,t?(zS(n),(n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n).insertBefore(e,t)):(zS(n),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=Ia));else if(a!==4&&(a===27&&Po(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(bp(e,t,n),e=e.sibling;e!==null;)bp(e,t,n),e=e.sibling}function kc(e,t,n){var a=e.tag;if(a===5||a===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(a!==4&&(a===27&&Po(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(kc(e,t,n),e=e.sibling;e!==null;)kc(e,t,n),e=e.sibling}function kw(e){for(var t,n=e.return;n!==null;){if(wb(n)){t=n;break}n=n.return}if(t==null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");switch(t.tag){case 27:t=t.stateNode,n=vp(e),kc(e,n,t);break;case 5:n=t.stateNode,t.flags&32&&(US(n),t.flags&=-33),t=vp(e),kc(e,t,n);break;case 3:case 4:t=t.stateNode.containerInfo,n=vp(e),bp(e,n,t);break;default:throw Error("Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.")}}function Ob(e){var t=e.stateNode,n=e.memoizedProps;try{se(e,wO,e.type,n,t,e)}catch(a){$e(e,e.return,a)}}function Cb(e,t){return t.tag===31?(t=t.memoizedState,e.memoizedState!==null&&t===null):t.tag===13?(e=e.memoizedState,t=t.memoizedState,e!==null&&e.dehydrated!==null&&(t===null||t.dehydrated===null)):t.tag===3?e.memoizedState.isDehydrated&&(t.flags&256)===0:!1}function qw(e,t){if(e=e.containerInfo,by=rd,e=Xv(e),th(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var a=n.getSelection&&n.getSelection();if(a&&a.rangeCount!==0){n=a.anchorNode;var s=a.anchorOffset,r=a.focusNode;a=a.focusOffset;try{n.nodeType,r.nodeType}catch{n=null;break e}var c=0,d=-1,y=-1,g=0,_=0,N=e,w=null;t:for(;;){for(var V;N!==n||s!==0&&N.nodeType!==3||(d=c+s),N!==r||a!==0&&N.nodeType!==3||(y=c+a),N.nodeType===3&&(c+=N.nodeValue.length),(V=N.firstChild)!==null;)w=N,N=V;for(;;){if(N===e)break t;if(w===n&&++g===s&&(d=c),w===r&&++_===a&&(y=c),(V=N.nextSibling)!==null)break;N=w,w=N.parentNode}N=V}n=d===-1||y===-1?null:{start:d,end:y}}else n=null}n=n||{start:0,end:0}}else n=null;for(Sy={focusedElem:e,selectionRange:n},rd=!1,Ht=t;Ht!==null;)if(t=Ht,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,Ht=e;else for(;Ht!==null;){switch(e=t=Ht,n=e.alternate,s=e.flags,e.tag){case 0:if((s&4)!==0&&(e=e.updateQueue,e=e!==null?e.events:null,e!==null))for(n=0;n<e.length;n++)s=e[n],s.ref.impl=s.nextImpl;break;case 11:case 15:break;case 1:(s&1024)!==0&&n!==null&&Bw(e,n);break;case 3:if((s&1024)!==0){if(e=e.stateNode.containerInfo,n=e.nodeType,n===9)Hp(e);else if(n===1)switch(e.nodeName){case"HEAD":case"HTML":case"BODY":Hp(e);break;default:e.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((s&1024)!==0)throw Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.")}if(e=t.sibling,e!==null){e.return=t.return,Ht=e;break}Ht=t.return}}function Mb(e,t,n){var a=Rn(),s=Ra(),r=wa(),c=Oa(),d=n.flags;switch(n.tag){case 0:case 11:case 15:Ua(e,n),d&4&&Tb(n,zn|Jn);break;case 1:if(Ua(e,n),d&4)if(e=n.stateNode,t===null)n.type.defaultProps||"ref"in n.memoizedProps||br||(e.props!==n.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",F(n)||"instance"),e.state!==n.memoizedState&&console.error("Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",F(n)||"instance")),_a(n)?(Ma(),se(n,qm,n,e),Ca()):se(n,qm,n,e);else{var y=ki(n.type,t.memoizedProps);t=t.memoizedState,n.type.defaultProps||"ref"in n.memoizedProps||br||(e.props!==n.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",F(n)||"instance"),e.state!==n.memoizedState&&console.error("Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",F(n)||"instance")),_a(n)?(Ma(),se(n,ST,n,e,y,t,e.__reactInternalSnapshotBeforeUpdate),Ca()):se(n,ST,n,e,y,t,e.__reactInternalSnapshotBeforeUpdate)}d&64&&Ab(n),d&512&&ml(n,n.return);break;case 3:if(t=no(),Ua(e,n),d&64&&(d=n.updateQueue,d!==null)){if(y=null,n.child!==null)switch(n.child.tag){case 27:case 5:y=n.child.stateNode;break;case 1:y=n.child.stateNode}try{se(n,R0,d,y)}catch(_){$e(n,n.return,_)}}e.effectDuration+=hc(t);break;case 27:t===null&&d&4&&Ob(n);case 26:case 5:if(Ua(e,n),t===null){if(d&4)xb(n);else if(d&64){e=n.type,t=n.memoizedProps,y=n.stateNode;try{se(n,cO,y,e,t,n)}catch(_){$e(n,n.return,_)}}}d&512&&ml(n,n.return);break;case 12:if(d&4){d=no(),Ua(e,n),e=n.stateNode,e.effectDuration+=al(d);try{se(n,Rb,n,t,ei,e.effectDuration)}catch(_){$e(n,n.return,_)}}else Ua(e,n);break;case 31:Ua(e,n),d&4&&Ub(e,n);break;case 13:Ua(e,n),d&4&&zb(e,n),d&64&&(e=n.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(d=Jw.bind(null,n),AO(e,d))));break;case 22:if(d=n.memoizedState!==null||So,!d){t=t!==null&&t.memoizedState!==null||wt,y=So;var g=wt;So=d,(wt=t)&&!g?(za(e,n,(n.subtreeFlags&8772)!==0),(n.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&ac(n,ge,Se)):Ua(e,n),So=y,wt=g}break;case 30:break;default:Ua(e,n)}(n.mode&_e)!==Ee&&0<=ge&&0<=Se&&((pt||.05<ft)&&Aa(n,ge,Se,ft,ct),n.alternate===null&&n.return!==null&&n.return.alternate!==null&&.05<Se-ge&&(Cb(n.return.alternate,n.return)||Ea(n,ge,Se,"Mount"))),xn(a),xa(s),ct=r,pt=c}function _b(e){var t=e.alternate;t!==null&&(e.alternate=null,_b(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&U(t)),e.stateNode=null,e._debugOwner=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function io(e,t,n){for(n=n.child;n!==null;)Nb(e,t,n),n=n.sibling}function Nb(e,t,n){if(Jt&&typeof Jt.onCommitFiberUnmount=="function")try{Jt.onCommitFiberUnmount(Fs,n)}catch(g){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",g))}var a=Rn(),s=Ra(),r=wa(),c=Oa();switch(n.tag){case 26:wt||Na(n,t),io(e,t,n),n.memoizedState?n.memoizedState.count--:n.stateNode&&(e=n.stateNode,e.parentNode.removeChild(e));break;case 27:wt||Na(n,t);var d=Ot,y=vn;Po(n.type)&&(Ot=n.stateNode,vn=!1),io(e,t,n),se(n,Dl,n.stateNode),Ot=d,vn=y;break;case 5:wt||Na(n,t);case 6:if(d=Ot,y=vn,Ot=null,io(e,t,n),Ot=d,vn=y,Ot!==null)if(vn)try{se(n,pO,Ot,n.stateNode)}catch(g){$e(n,t,g)}else try{se(n,hO,Ot,n.stateNode)}catch(g){$e(n,t,g)}break;case 18:Ot!==null&&(vn?(e=Ot,VS(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,n.stateNode),Xs(e)):VS(Ot,n.stateNode));break;case 4:d=Ot,y=vn,Ot=n.stateNode.containerInfo,vn=!0,io(e,t,n),Ot=d,vn=y;break;case 0:case 11:case 14:case 15:Bs(un,n,t),wt||mp(n,t,zn),io(e,t,n);break;case 1:wt||(Na(n,t),d=n.stateNode,typeof d.componentWillUnmount=="function"&&Db(n,t,d)),io(e,t,n);break;case 21:io(e,t,n);break;case 22:wt=(d=wt)||n.memoizedState!==null,io(e,t,n),wt=d;break;default:io(e,t,n)}(n.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(n,ge,Se,ft,ct),xn(a),xa(s),ct=r,pt=c}function Ub(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{se(t,RO,e)}catch(n){$e(t,t.return,n)}}}function zb(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{se(t,xO,e)}catch(n){$e(t,t.return,n)}}function Yw(e){switch(e.tag){case 31:case 13:case 19:var t=e.stateNode;return t===null&&(t=e.stateNode=new iE),t;case 22:return e=e.stateNode,t=e._retryCache,t===null&&(t=e._retryCache=new iE),t;default:throw Error("Unexpected Suspense handler tag ("+e.tag+"). This is a bug in React.")}}function qc(e,t){var n=Yw(e);t.forEach(function(a){if(!n.has(a)){if(n.add(a),qa)if(Sr!==null&&Tr!==null)bl(Tr,Sr);else throw Error("Expected finished root and lanes to be set. This is a bug in React.");var s=Kw.bind(null,e,a);a.then(s,s)}})}function yn(e,t){var n=t.deletions;if(n!==null)for(var a=0;a<n.length;a++){var s=e,r=t,c=n[a],d=Rn(),y=r;e:for(;y!==null;){switch(y.tag){case 27:if(Po(y.type)){Ot=y.stateNode,vn=!1;break e}break;case 5:Ot=y.stateNode,vn=!1;break e;case 3:case 4:Ot=y.stateNode.containerInfo,vn=!0;break e}y=y.return}if(Ot===null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");Nb(s,r,c),Ot=null,vn=!1,(c.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&Ea(c,ge,Se,"Unmount"),xn(d),s=c,r=s.alternate,r!==null&&(r.return=null),s.return=null}if(t.subtreeFlags&13886)for(t=t.child;t!==null;)Vb(t,e),t=t.sibling}function Vb(e,t){var n=Rn(),a=Ra(),s=wa(),r=Oa(),c=e.alternate,d=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:yn(t,e),gn(e),d&4&&(Bs(un|Jn,e,e.return),pl(un|Jn,e),mp(e,e.return,zn|Jn));break;case 1:if(yn(t,e),gn(e),d&512&&(wt||c===null||Na(c,c.return)),d&64&&So&&(d=e.updateQueue,d!==null&&(c=d.callbacks,c!==null))){var y=d.shared.hiddenCallbacks;d.shared.hiddenCallbacks=y===null?c:y.concat(c)}break;case 26:if(y=ha,yn(t,e),gn(e),d&512&&(wt||c===null||Na(c,c.return)),d&4){var g=c!==null?c.memoizedState:null;if(d=e.memoizedState,c===null)if(d===null)if(e.stateNode===null){e:{d=e.type,c=e.memoizedProps,y=y.ownerDocument||y;t:switch(d){case"title":g=y.getElementsByTagName("title")[0],(!g||g[_l]||g[Pt]||g.namespaceURI===Ks||g.hasAttribute("itemprop"))&&(g=y.createElement(d),y.head.insertBefore(g,y.querySelector("head > title"))),Gt(g,d,c),g[Pt]=e,pe(g),d=g;break e;case"link":var _=$S("link","href",y).get(d+(c.href||""));if(_){for(var N=0;N<_.length;N++)if(g=_[N],g.getAttribute("href")===(c.href==null||c.href===""?null:c.href)&&g.getAttribute("rel")===(c.rel==null?null:c.rel)&&g.getAttribute("title")===(c.title==null?null:c.title)&&g.getAttribute("crossorigin")===(c.crossOrigin==null?null:c.crossOrigin)){_.splice(N,1);break t}}g=y.createElement(d),Gt(g,d,c),y.head.appendChild(g);break;case"meta":if(_=$S("meta","content",y).get(d+(c.content||""))){for(N=0;N<_.length;N++)if(g=_[N],Fe(c.content,"content"),g.getAttribute("content")===(c.content==null?null:""+c.content)&&g.getAttribute("name")===(c.name==null?null:c.name)&&g.getAttribute("property")===(c.property==null?null:c.property)&&g.getAttribute("http-equiv")===(c.httpEquiv==null?null:c.httpEquiv)&&g.getAttribute("charset")===(c.charSet==null?null:c.charSet)){_.splice(N,1);break t}}g=y.createElement(d),Gt(g,d,c),y.head.appendChild(g);break;default:throw Error('getNodesForType encountered a type it did not expect: "'+d+'". This is a bug in React.')}g[Pt]=e,pe(g),d=g}e.stateNode=d}else QS(y,e.type,e.stateNode);else e.stateNode=XS(y,d,e.memoizedProps);else g!==d?(g===null?c.stateNode!==null&&(c=c.stateNode,c.parentNode.removeChild(c)):g.count--,d===null?QS(y,e.type,e.stateNode):XS(y,d,e.memoizedProps)):d===null&&e.stateNode!==null&&gp(e,e.memoizedProps,c.memoizedProps)}break;case 27:yn(t,e),gn(e),d&512&&(wt||c===null||Na(c,c.return)),c!==null&&d&4&&gp(e,e.memoizedProps,c.memoizedProps);break;case 5:if(yn(t,e),gn(e),d&512&&(wt||c===null||Na(c,c.return)),e.flags&32){y=e.stateNode;try{se(e,US,y)}catch(oe){$e(e,e.return,oe)}}d&4&&e.stateNode!=null&&(y=e.memoizedProps,gp(e,y,c!==null?c.memoizedProps:y)),d&1024&&(ey=!0,e.type!=="form"&&console.error("Unexpected host component type. Expected a form. This is a bug in React."));break;case 6:if(yn(t,e),gn(e),d&4){if(e.stateNode===null)throw Error("This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.");d=e.memoizedProps,c=c!==null?c.memoizedProps:d,y=e.stateNode;try{se(e,dO,y,c,d)}catch(oe){$e(e,e.return,oe)}}break;case 3:if(y=no(),od=null,g=ha,ha=Fc(t.containerInfo),yn(t,e),ha=g,gn(e),d&4&&c!==null&&c.memoizedState.isDehydrated)try{se(e,DO,t.containerInfo)}catch(oe){$e(e,e.return,oe)}ey&&(ey=!1,jb(e)),t.effectDuration+=hc(y);break;case 4:d=ha,ha=Fc(e.stateNode.containerInfo),yn(t,e),gn(e),ha=d;break;case 12:d=no(),yn(t,e),gn(e),e.stateNode.effectDuration+=al(d);break;case 31:yn(t,e),gn(e),d&4&&(d=e.updateQueue,d!==null&&(e.updateQueue=null,qc(e,d)));break;case 13:yn(t,e),gn(e),e.child.flags&8192&&e.memoizedState!==null!=(c!==null&&c.memoizedState!==null)&&(Gf=Bt()),d&4&&(d=e.updateQueue,d!==null&&(e.updateQueue=null,qc(e,d)));break;case 22:y=e.memoizedState!==null;var w=c!==null&&c.memoizedState!==null,V=So,K=wt;if(So=V||y,wt=K||w,yn(t,e),wt=K,So=V,w&&!y&&!V&&!K&&(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&ac(e,ge,Se),gn(e),d&8192)e:for(t=e.stateNode,t._visibility=y?t._visibility&~kl:t._visibility|kl,!y||c===null||w||So||wt||(qi(e),(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&Ea(e,ge,Se,"Disconnect")),c=null,t=e;;){if(t.tag===5||t.tag===26){if(c===null){w=c=t;try{g=w.stateNode,y?se(w,yO,g):se(w,bO,w.stateNode,w.memoizedProps)}catch(oe){$e(w,w.return,oe)}}}else if(t.tag===6){if(c===null){w=t;try{_=w.stateNode,y?se(w,gO,_):se(w,SO,_,w.memoizedProps)}catch(oe){$e(w,w.return,oe)}}}else if(t.tag===18){if(c===null){w=t;try{N=w.stateNode,y?se(w,mO,N):se(w,vO,w.stateNode)}catch(oe){$e(w,w.return,oe)}}}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 e;for(;t.sibling===null;){if(t.return===null||t.return===e)break e;c===t&&(c=null),t=t.return}c===t&&(c=null),t.sibling.return=t.return,t=t.sibling}d&4&&(d=e.updateQueue,d!==null&&(c=d.retryQueue,c!==null&&(d.retryQueue=null,qc(e,c))));break;case 19:yn(t,e),gn(e),d&4&&(d=e.updateQueue,d!==null&&(e.updateQueue=null,qc(e,d)));break;case 30:break;case 21:break;default:yn(t,e),gn(e)}(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&((pt||.05<ft)&&Aa(e,ge,Se,ft,ct),e.alternate===null&&e.return!==null&&e.return.alternate!==null&&.05<Se-ge&&(Cb(e.return.alternate,e.return)||Ea(e,ge,Se,"Mount"))),xn(n),xa(a),ct=s,pt=r}function gn(e){var t=e.flags;if(t&2){try{se(e,kw,e)}catch(n){$e(e,e.return,n)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function jb(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var t=e;jb(t),t.tag===5&&t.flags&1024&&t.stateNode.reset(),e=e.sibling}}function Ua(e,t){if(t.subtreeFlags&8772)for(t=t.child;t!==null;)Mb(e,t.alternate,t),t=t.sibling}function Bb(e){var t=Rn(),n=Ra(),a=wa(),s=Oa();switch(e.tag){case 0:case 11:case 14:case 15:mp(e,e.return,zn),qi(e);break;case 1:Na(e,e.return);var r=e.stateNode;typeof r.componentWillUnmount=="function"&&Db(e,e.return,r),qi(e);break;case 27:se(e,Dl,e.stateNode);case 26:case 5:Na(e,e.return),qi(e);break;case 22:e.memoizedState===null&&qi(e);break;case 30:qi(e);break;default:qi(e)}(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(e,ge,Se,ft,ct),xn(t),xa(n),ct=a,pt=s}function qi(e){for(e=e.child;e!==null;)Bb(e),e=e.sibling}function Lb(e,t,n,a){var s=Rn(),r=Ra(),c=wa(),d=Oa(),y=n.flags;switch(n.tag){case 0:case 11:case 15:za(e,n,a),Tb(n,zn);break;case 1:if(za(e,n,a),t=n.stateNode,typeof t.componentDidMount=="function"&&se(n,qm,n,t),t=n.updateQueue,t!==null){e=n.stateNode;try{se(n,Dw,t,e)}catch(g){$e(n,n.return,g)}}a&&y&64&&Ab(n),ml(n,n.return);break;case 27:Ob(n);case 26:case 5:za(e,n,a),a&&t===null&&y&4&&xb(n),ml(n,n.return);break;case 12:if(a&&y&4){y=no(),za(e,n,a),a=n.stateNode,a.effectDuration+=al(y);try{se(n,Rb,n,t,ei,a.effectDuration)}catch(g){$e(n,n.return,g)}}else za(e,n,a);break;case 31:za(e,n,a),a&&y&4&&Ub(e,n);break;case 13:za(e,n,a),a&&y&4&&zb(e,n);break;case 22:n.memoizedState===null&&za(e,n,a),ml(n,n.return);break;case 30:break;default:za(e,n,a)}(n.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(n,ge,Se,ft,ct),xn(s),xa(r),ct=c,pt=d}function za(e,t,n){for(n=n&&(t.subtreeFlags&8772)!==0,t=t.child;t!==null;)Lb(e,t.alternate,t,n),t=t.sibling}function Sp(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&&ji(e),n!=null&&nl(n))}function Tp(e,t){e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(ji(t),e!=null&&nl(e))}function la(e,t,n,a,s){if(t.subtreeFlags&10256||t.actualDuration!==0&&(t.alternate===null||t.alternate.child!==t.child))for(t=t.child;t!==null;){var r=t.sibling;Hb(e,t,n,a,r!==null?r.actualStartTime:s),t=r}}function Hb(e,t,n,a,s){var r=Rn(),c=Ra(),d=wa(),y=Oa(),g=Jo,_=t.flags;switch(t.tag){case 0:case 11:case 15:(t.mode&_e)!==Ee&&0<t.actualStartTime&&(t.flags&1)!==0&&oc(t,t.actualStartTime,s,Nt,n),la(e,t,n,a,s),_&2048&&Eb(t,cn|Jn);break;case 1:(t.mode&_e)!==Ee&&0<t.actualStartTime&&((t.flags&128)!==0?ah(t,t.actualStartTime,s,[]):(t.flags&1)!==0&&oc(t,t.actualStartTime,s,Nt,n)),la(e,t,n,a,s);break;case 3:var N=no(),w=Nt;Nt=t.alternate!==null&&t.alternate.memoizedState.isDehydrated&&(t.flags&256)===0,la(e,t,n,a,s),Nt=w,_&2048&&(n=null,t.alternate!==null&&(n=t.alternate.memoizedState.cache),a=t.memoizedState.cache,a!==n&&(ji(a),n!=null&&nl(n))),e.passiveEffectDuration+=hc(N);break;case 12:if(_&2048){_=no(),la(e,t,n,a,s),e=t.stateNode,e.passiveEffectDuration+=al(_);try{se(t,Hw,t,t.alternate,ei,e.passiveEffectDuration)}catch(V){$e(t,t.return,V)}}else la(e,t,n,a,s);break;case 31:_=Nt,N=t.alternate!==null?t.alternate.memoizedState:null,w=t.memoizedState,N!==null&&w===null?(w=t.deletions,w!==null&&0<w.length&&w[0].tag===18?(Nt=!1,N=N.hydrationErrors,N!==null&&ah(t,t.actualStartTime,s,N)):Nt=!0):Nt=!1,la(e,t,n,a,s),Nt=_;break;case 13:_=Nt,N=t.alternate!==null?t.alternate.memoizedState:null,w=t.memoizedState,N===null||N.dehydrated===null||w!==null&&w.dehydrated!==null?Nt=!1:(w=t.deletions,w!==null&&0<w.length&&w[0].tag===18?(Nt=!1,N=N.hydrationErrors,N!==null&&ah(t,t.actualStartTime,s,N)):Nt=!0),la(e,t,n,a,s),Nt=_;break;case 23:break;case 22:w=t.stateNode,N=t.alternate,t.memoizedState!==null?w._visibility&uo?la(e,t,n,a,s):yl(e,t,n,a,s):w._visibility&uo?la(e,t,n,a,s):(w._visibility|=uo,Ls(e,t,n,a,(t.subtreeFlags&10256)!==0||t.actualDuration!==0&&(t.alternate===null||t.alternate.child!==t.child),s),(t.mode&_e)===Ee||Nt||(e=t.actualStartTime,0<=e&&.05<s-e&&ac(t,e,s),0<=ge&&0<=Se&&.05<Se-ge&&ac(t,ge,Se))),_&2048&&Sp(N,t);break;case 24:la(e,t,n,a,s),_&2048&&Tp(t.alternate,t);break;default:la(e,t,n,a,s)}(t.mode&_e)!==Ee&&((e=!Nt&&t.alternate===null&&t.return!==null&&t.return.alternate!==null)&&(n=t.actualStartTime,0<=n&&.05<s-n&&Ea(t,n,s,"Mount")),0<=ge&&0<=Se&&((pt||.05<ft)&&Aa(t,ge,Se,ft,ct),e&&.05<Se-ge&&Ea(t,ge,Se,"Mount"))),xn(r),xa(c),ct=d,pt=y,Jo=g}function Ls(e,t,n,a,s,r){for(s=s&&((t.subtreeFlags&10256)!==0||t.actualDuration!==0&&(t.alternate===null||t.alternate.child!==t.child)),t=t.child;t!==null;){var c=t.sibling;kb(e,t,n,a,s,c!==null?c.actualStartTime:r),t=c}}function kb(e,t,n,a,s,r){var c=Rn(),d=Ra(),y=wa(),g=Oa(),_=Jo;s&&(t.mode&_e)!==Ee&&0<t.actualStartTime&&(t.flags&1)!==0&&oc(t,t.actualStartTime,r,Nt,n);var N=t.flags;switch(t.tag){case 0:case 11:case 15:Ls(e,t,n,a,s,r),Eb(t,cn);break;case 23:break;case 22:var w=t.stateNode;t.memoizedState!==null?w._visibility&uo?Ls(e,t,n,a,s,r):yl(e,t,n,a,r):(w._visibility|=uo,Ls(e,t,n,a,s,r)),s&&N&2048&&Sp(t.alternate,t);break;case 24:Ls(e,t,n,a,s,r),s&&N&2048&&Tp(t.alternate,t);break;default:Ls(e,t,n,a,s,r)}(t.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(t,ge,Se,ft,ct),xn(c),xa(d),ct=y,pt=g,Jo=_}function yl(e,t,n,a,s){if(t.subtreeFlags&10256||t.actualDuration!==0&&(t.alternate===null||t.alternate.child!==t.child))for(var r=t.child;r!==null;){t=r.sibling;var c=e,d=n,y=a,g=t!==null?t.actualStartTime:s,_=Jo;(r.mode&_e)!==Ee&&0<r.actualStartTime&&(r.flags&1)!==0&&oc(r,r.actualStartTime,g,Nt,d);var N=r.flags;switch(r.tag){case 22:yl(c,r,d,y,g),N&2048&&Sp(r.alternate,r);break;case 24:yl(c,r,d,y,g),N&2048&&Tp(r.alternate,r);break;default:yl(c,r,d,y,g)}Jo=_,r=t}}function Hs(e,t,n){if(e.subtreeFlags&su)for(e=e.child;e!==null;)qb(e,t,n),e=e.sibling}function qb(e,t,n){switch(e.tag){case 26:Hs(e,t,n),e.flags&su&&e.memoizedState!==null&&MO(n,ha,e.memoizedState,e.memoizedProps);break;case 5:Hs(e,t,n);break;case 3:case 4:var a=ha;ha=Fc(e.stateNode.containerInfo),Hs(e,t,n),ha=a;break;case 22:e.memoizedState===null&&(a=e.alternate,a!==null&&a.memoizedState!==null?(a=su,su=16777216,Hs(e,t,n),su=a):Hs(e,t,n));break;default:Hs(e,t,n)}}function Yb(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 gl(e){var t=e.deletions;if((e.flags&16)!==0){if(t!==null)for(var n=0;n<t.length;n++){var a=t[n],s=Rn();Ht=a,Xb(a,e),(a.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&Ea(a,ge,Se,"Unmount"),xn(s)}Yb(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)Gb(e),e=e.sibling}function Gb(e){var t=Rn(),n=Ra(),a=wa(),s=Oa();switch(e.tag){case 0:case 11:case 15:gl(e),e.flags&2048&&yp(e,e.return,cn|Jn);break;case 3:var r=no();gl(e),e.stateNode.passiveEffectDuration+=hc(r);break;case 12:r=no(),gl(e),e.stateNode.passiveEffectDuration+=al(r);break;case 22:r=e.stateNode,e.memoizedState!==null&&r._visibility&uo&&(e.return===null||e.return.tag!==13)?(r._visibility&=~uo,Yc(e),(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&Ea(e,ge,Se,"Disconnect")):gl(e);break;default:gl(e)}(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(e,ge,Se,ft,ct),xn(t),xa(n),pt=s,ct=a}function Yc(e){var t=e.deletions;if((e.flags&16)!==0){if(t!==null)for(var n=0;n<t.length;n++){var a=t[n],s=Rn();Ht=a,Xb(a,e),(a.mode&_e)!==Ee&&0<=ge&&0<=Se&&.05<Se-ge&&Ea(a,ge,Se,"Unmount"),xn(s)}Yb(e)}for(e=e.child;e!==null;)Pb(e),e=e.sibling}function Pb(e){var t=Rn(),n=Ra(),a=wa(),s=Oa();switch(e.tag){case 0:case 11:case 15:yp(e,e.return,cn),Yc(e);break;case 22:var r=e.stateNode;r._visibility&uo&&(r._visibility&=~uo,Yc(e));break;default:Yc(e)}(e.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(e,ge,Se,ft,ct),xn(t),xa(n),pt=s,ct=a}function Xb(e,t){for(;Ht!==null;){var n=Ht,a=n,s=t,r=Rn(),c=Ra(),d=wa(),y=Oa();switch(a.tag){case 0:case 11:case 15:yp(a,s,cn);break;case 23:case 22:a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(s=a.memoizedState.cachePool.pool,s!=null&&ji(s));break;case 24:nl(a.memoizedState.cache)}if((a.mode&_e)!==Ee&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(a,ge,Se,ft,ct),xn(r),xa(c),pt=y,ct=d,a=n.child,a!==null)a.return=n,Ht=a;else e:for(n=e;Ht!==null;){if(a=Ht,r=a.sibling,c=a.return,_b(a),a===n){Ht=null;break e}if(r!==null){r.return=c,Ht=r;break e}Ht=c}}}function Gw(){dM.forEach(function(e){return e()})}function $b(){var e=typeof IS_REACT_ACT_ENVIRONMENT<"u"?IS_REACT_ACT_ENVIRONMENT:void 0;return e||L.actQueue===null||console.error("The current testing environment is not configured to support act(...)"),e}function On(e){if((Pe&Ut)!==kt&&Ue!==0)return Ue&-Ue;var t=L.T;return t!==null?(t._updatedFibers||(t._updatedFibers=new Set),t._updatedFibers.add(e),Cp()):No()}function Qb(){if(Sn===0)if((Ue&536870912)===0||Le){var e=lf;lf<<=1,(lf&3932160)===0&&(lf=262144),Sn=e}else Sn=536870912;return e=Un.current,e!==null&&(e.flags|=32),Sn}function ht(e,t,n){if(Dr&&console.error("useInsertionEffect must not schedule updates."),fy&&(Qf=!0),(e===et&&(Ke===as||Ke===os)||e.cancelPendingCommit!==null)&&(qs(e,0),Yo(e,Ue,Sn,!1)),Mo(e,n),(Pe&Ut)!==kt&&e===et){if(Ha)switch(t.tag){case 0:case 11:case 15:e=ze&&F(ze)||"Unknown",SE.has(e)||(SE.add(e),t=F(t)||"Unknown",console.error("Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://react.dev/link/setstate-in-render",t,e,e));break;case 1:bE||(console.error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state."),bE=!0)}}else qa&&wi(e,t,n),Ww(t),e===et&&((Pe&Ut)===kt&&(li|=n),dt===ii&&Yo(e,Ue,Sn,!1)),Va(e)}function Zb(e,t,n){if((Pe&(Ut|Vn))!==kt)throw Error("Should not already be working.");if(Ue!==0&&ze!==null){var a=ze,s=Bt();switch(dT){case uu:case as:var r=$l;ot&&((a=a._debugTask)?a.run(console.timeStamp.bind(console,"Suspended",r,s,Yn,void 0,"primary-light")):console.timeStamp("Suspended",r,s,Yn,void 0,"primary-light"));break;case os:r=$l,ot&&((a=a._debugTask)?a.run(console.timeStamp.bind(console,"Action",r,s,Yn,void 0,"primary-light")):console.timeStamp("Action",r,s,Yn,void 0,"primary-light"));break;default:ot&&(a=s-$l,3>a||console.timeStamp("Blocked",$l,s,Yn,void 0,5>a?"primary-light":10>a?"primary":100>a?"primary-dark":"error"))}}r=(n=!n&&(t&127)===0&&(t&e.expiredLanes)===0||Co(e,t))?Xw(e,t):Ap(e,t,!0);var c=n;do{if(r===To){Er&&!n&&Yo(e,t,0,!1),t=Ke,$l=Dt(),dT=t;break}else{if(a=Bt(),s=e.current.alternate,c&&!Pw(s)){sa(t),s=Lt,r=a,!ot||r<=s||(bt?bt.run(console.timeStamp.bind(console,"Teared Render",s,r,Ye,ke,"error")):console.timeStamp("Teared Render",s,r,Ye,ke,"error")),Yi(t,a),r=Ap(e,t,!1),c=!1;continue}if(r===ns){if(c=t,e.errorRecoveryDisabledLanes&c)var d=0;else d=e.pendingLanes&-536870913,d=d!==0?d:d&536870912?536870912:0;if(d!==0){sa(t),oh(Lt,a,t,bt),Yi(t,a),t=d;e:{a=e,r=c,c=fu;var y=a.current.memoizedState.isDehydrated;if(y&&(qs(a,d).flags|=256),d=Ap(a,d,!1),d!==ns){if(ay&&!y){a.errorRecoveryDisabledLanes|=r,li|=r,r=ii;break e}a=fn,fn=c,a!==null&&(fn===null?fn=a:fn.push.apply(fn,a))}r=d}if(c=!1,r!==ns)continue;a=Bt()}}if(r===lu){sa(t),oh(Lt,a,t,bt),Yi(t,a),qs(e,0),Yo(e,t,0,!0);break}e:{switch(n=e,r){case To:case lu:throw Error("Root did not complete. This is a bug in React.");case ii:if((t&4194048)!==t)break;case Hf:sa(t),Zv(Lt,a,t,bt),Yi(t,a),s=t,(s&127)!==0?Df=a:(s&4194048)!==0&&(Rf=a),Yo(n,t,Sn,!si);break e;case ns:fn=null;break;case Lf:case sE:break;default:throw Error("Unknown root exit status.")}if(L.actQueue!==null)Dp(n,s,t,fn,du,Yf,Sn,li,is,r,null,null,Lt,a);else{if((t&62914560)===t&&(c=Gf+uE-Bt(),10<c)){if(Yo(n,t,Sn,!si),Ri(n,0,!0)!==0)break e;pa=t,n.timeoutHandle=OE(Fb.bind(null,n,s,fn,du,Yf,t,Sn,li,is,si,r,"Throttled",Lt,a),c);break e}Fb(n,s,fn,du,Yf,t,Sn,li,is,si,r,null,Lt,a)}}}break}while(!0);Va(e)}function Fb(e,t,n,a,s,r,c,d,y,g,_,N,w,V){e.timeoutHandle=cs;var K=t.subtreeFlags,oe=null;if((K&8192||(K&16785408)===16785408)&&(oe={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:Ia},qb(t,r,oe),K=(r&62914560)===r?Gf-Bt():(r&4194048)===r?lE-Bt():0,K=_O(oe,K),K!==null)){pa=r,e.cancelPendingCommit=K(Dp.bind(null,e,t,r,n,a,s,c,d,y,_,oe,oe.waitingForViewTransition?"Waiting for the previous Animation":0<oe.count?0<oe.imgCount?"Suspended on CSS and Images":"Suspended on CSS":oe.imgCount===1?"Suspended on an Image":0<oe.imgCount?"Suspended on Images":null,w,V)),Yo(e,r,c,!g);return}Dp(e,t,r,n,a,s,c,d,y,_,oe,N,w,V)}function Pw(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 a=0;a<n.length;a++){var s=n[a],r=s.getSnapshot;s=s.value;try{if(!rn(r(),s))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 Yo(e,t,n,a){t&=~oy,t&=~li,e.suspendedLanes|=t,e.pingedLanes&=~t,a&&(e.warmLanes|=t),a=e.expirationTimes;for(var s=t;0<s;){var r=31-an(s),c=1<<r;a[r]=-1,s&=~c}n!==0&&$r(e,n,t)}function ks(){return(Pe&(Ut|Vn))===kt?(Sl(0),!1):!0}function Ep(){if(ze!==null){if(Ke===bn)var e=ze.return;else e=ze,cc(),Uh(e),hr=null,tu=0,e=ze;for(;e!==null;)Sb(e.alternate,e),e=e.return;ze=null}}function Yi(e,t){(e&127)!==0&&(Qi=t),(e&4194048)!==0&&(mo=t),(e&62914560)!==0&&(cT=t),(e&2080374784)!==0&&(fT=t)}function qs(e,t){ot&&(console.timeStamp("Blocking Track",.003,.003,"Blocking",ke,"primary-light"),console.timeStamp("Transition Track",.003,.003,"Transition",ke,"primary-light"),console.timeStamp("Suspense Track",.003,.003,"Suspense",ke,"primary-light"),console.timeStamp("Idle Track",.003,.003,"Idle",ke,"primary-light"));var n=Lt;if(Lt=Dt(),Ue!==0&&0<n){if(sa(Ue),dt===Lf||dt===ii)Zv(n,Lt,t,bt);else{var a=Lt,s=bt;if(ot&&!(a<=n)){var r=(t&738197653)===t?"tertiary-dark":"primary-dark",c=(t&536870912)===t?"Prewarm":(t&201326741)===t?"Interrupted Hydration":"Interrupted Render";s?s.run(console.timeStamp.bind(console,c,n,a,Ye,ke,r)):console.timeStamp(c,n,a,Ye,ke,r)}}Yi(Ue,Lt)}if(n=bt,bt=null,(t&127)!==0){bt=Gl,s=0<=Xa&&Xa<Qi?Qi:Xa,a=0<=Zi&&Zi<Qi?Qi:Zi,r=0<=a?a:0<=s?s:Lt,0<=Df?(sa(2),Fv(Df,r,t,n)):xf&127,n=s;var d=a,y=Pl,g=0<cr,_=ti===Yl,N=ti===Af;if(s=Lt,a=Gl,r=jm,c=Bm,ot){if(Ye="Blocking",0<n?n>s&&(n=s):n=s,0<d?d>n&&(d=n):d=n,y!==null&&n>d){var w=g?"secondary-light":"warning";a?a.run(console.timeStamp.bind(console,g?"Consecutive":"Event: "+y,d,n,Ye,ke,w)):console.timeStamp(g?"Consecutive":"Event: "+y,d,n,Ye,ke,w)}s>n&&(d=_?"error":(t&738197653)===t?"tertiary-light":"primary-light",_=N?"Promise Resolved":_?"Cascading Update":5<s-n?"Update Blocked":"Update",N=[],c!=null&&N.push(["Component name",c]),r!=null&&N.push(["Method name",r]),n={start:n,end:s,detail:{devtools:{properties:N,track:Ye,trackGroup:ke,color:d}}},a?a.run(performance.measure.bind(performance,_,n)):performance.measure(_,n))}Xa=-1.1,ti=0,Bm=jm=null,Df=-1.1,cr=Zi,Zi=-1.1,Qi=Dt()}if((t&4194048)!==0&&(bt=Xl,s=0<=yo&&yo<mo?mo:yo,n=0<=Zn&&Zn<mo?mo:Zn,a=0<=ni&&ni<mo?mo:ni,r=0<=a?a:0<=n?n:Lt,0<=Rf?(sa(256),Fv(Rf,r,t,bt)):xf&4194048,N=a,d=Fi,y=0<ai,g=Lm===Af,r=Lt,a=Xl,c=lT,_=uT,ot&&(Ye="Transition",0<n?n>r&&(n=r):n=r,0<s?s>n&&(s=n):s=n,0<N?N>s&&(N=s):N=s,s>N&&d!==null&&(w=y?"secondary-light":"warning",a?a.run(console.timeStamp.bind(console,y?"Consecutive":"Event: "+d,N,s,Ye,ke,w)):console.timeStamp(y?"Consecutive":"Event: "+d,N,s,Ye,ke,w)),n>s&&(a?a.run(console.timeStamp.bind(console,"Action",s,n,Ye,ke,"primary-dark")):console.timeStamp("Action",s,n,Ye,ke,"primary-dark")),r>n&&(s=g?"Promise Resolved":5<r-n?"Update Blocked":"Update",N=[],_!=null&&N.push(["Component name",_]),c!=null&&N.push(["Method name",c]),n={start:n,end:r,detail:{devtools:{properties:N,track:Ye,trackGroup:ke,color:"primary-light"}}},a?a.run(performance.measure.bind(performance,s,n)):performance.measure(s,n))),Zn=yo=-1.1,Lm=0,Rf=-1.1,ai=ni,ni=-1.1,mo=Dt()),(t&62914560)!==0&&(xf&62914560)!==0&&(sa(4194304),ih(cT,Lt)),(t&2080374784)!==0&&(xf&2080374784)!==0&&(sa(268435456),ih(fT,Lt)),n=e.timeoutHandle,n!==cs&&(e.timeoutHandle=cs,RM(n)),n=e.cancelPendingCommit,n!==null&&(e.cancelPendingCommit=null,n()),pa=0,Ep(),et=e,ze=n=Wa(e.current,null),Ue=t,Ke=bn,jn=null,si=!1,Er=Co(e,t),ay=!1,dt=To,is=Sn=oy=li=ri=0,fn=fu=null,Yf=!1,(t&8)!==0&&(t|=t&32),a=e.entangledLanes,a!==0)for(e=e.entanglements,a&=t;0<a;)s=31-an(a),r=1<<s,t|=e[s],a&=~r;return Qa=t,ic(),e=nT(),1e3<e-tT&&(L.recentlyCreatedOwnerStacks=0,tT=e),fa.discardPendingWarnings(),n}function Jb(e,t){Ae=null,L.H=iu,L.getCurrentStack=null,Ha=!1,_n=null,t===dr||t===Mf?(t=g0(),Ke=uu):t===Ym?(t=g0(),Ke=rE):Ke=t===Im?ny:t!==null&&typeof t=="object"&&typeof t.then=="function"?cu:kf,jn=t;var n=ze;n===null?(dt=lu,Vc(e,Dn(t,e.current))):n.mode&_e&&Sh(n)}function Kb(){var e=Un.current;return e===null?!0:(Ue&4194048)===Ue?Fn===null:(Ue&62914560)===Ue||(Ue&536870912)!==0?e===Fn:!1}function Ib(){var e=L.H;return L.H=iu,e===null?iu:e}function Wb(){var e=L.A;return L.A=fM,e}function Gc(e){bt===null&&(bt=e._debugTask==null?null:e._debugTask)}function Pc(){dt=ii,si||(Ue&4194048)!==Ue&&Un.current!==null||(Er=!0),(ri&134217727)===0&&(li&134217727)===0||et===null||Yo(et,Ue,Sn,!1)}function Ap(e,t,n){var a=Pe;Pe|=Ut;var s=Ib(),r=Wb();if(et!==e||Ue!==t){if(qa){var c=e.memoizedUpdaters;0<c.size&&(bl(e,Ue),c.clear()),Rs(e,t)}du=null,qs(e,t)}t=!1,c=dt;e:do try{if(Ke!==bn&&ze!==null){var d=ze,y=jn;switch(Ke){case ny:Ep(),c=Hf;break e;case uu:case as:case os:case cu:Un.current===null&&(t=!0);var g=Ke;if(Ke=bn,jn=null,Ys(e,d,y,g),n&&Er){c=To;break e}break;default:g=Ke,Ke=bn,jn=null,Ys(e,d,y,g)}}eS(),c=dt;break}catch(_){Jb(e,_)}while(!0);return t&&e.shellSuspendCounter++,cc(),Pe=a,L.H=s,L.A=r,ze===null&&(et=null,Ue=0,ic()),c}function eS(){for(;ze!==null;)tS(ze)}function Xw(e,t){var n=Pe;Pe|=Ut;var a=Ib(),s=Wb();if(et!==e||Ue!==t){if(qa){var r=e.memoizedUpdaters;0<r.size&&(bl(e,Ue),r.clear()),Rs(e,t)}du=null,Pf=Bt()+cE,qs(e,t)}else Er=Co(e,t);e:do try{if(Ke!==bn&&ze!==null)t:switch(t=ze,r=jn,Ke){case kf:Ke=bn,jn=null,Ys(e,t,r,kf);break;case as:case os:if(m0(r)){Ke=bn,jn=null,nS(t);break}t=function(){Ke!==as&&Ke!==os||et!==e||(Ke=qf),Va(e)},r.then(t,t);break e;case uu:Ke=qf;break e;case rE:Ke=ty;break e;case qf:m0(r)?(Ke=bn,jn=null,nS(t)):(Ke=bn,jn=null,Ys(e,t,r,qf));break;case ty:var c=null;switch(ze.tag){case 26:c=ze.memoizedState;case 5:case 27:var d=ze;if(c?ZS(c):d.stateNode.complete){Ke=bn,jn=null;var y=d.sibling;if(y!==null)ze=y;else{var g=d.return;g!==null?(ze=g,Xc(g)):ze=null}break t}break;default:console.error("Unexpected type of fiber triggered a suspensey commit. This is a bug in React.")}Ke=bn,jn=null,Ys(e,t,r,ty);break;case cu:Ke=bn,jn=null,Ys(e,t,r,cu);break;case ny:Ep(),dt=Hf;break e;default:throw Error("Unexpected SuspendedReason. This is a bug in React.")}L.actQueue!==null?eS():$w();break}catch(_){Jb(e,_)}while(!0);return cc(),L.H=a,L.A=s,Pe=n,ze!==null?To:(et=null,Ue=0,ic(),dt)}function $w(){for(;ze!==null&&!XO();)tS(ze)}function tS(e){var t=e.alternate;(e.mode&_e)!==Ee?(bh(e),t=se(e,hp,t,e,Qa),Sh(e)):t=se(e,hp,t,e,Qa),e.memoizedProps=e.pendingProps,t===null?Xc(e):ze=t}function nS(e){var t=se(e,Qw,e);e.memoizedProps=e.pendingProps,t===null?Xc(e):ze=t}function Qw(e){var t=e.alternate,n=(e.mode&_e)!==Ee;switch(n&&bh(e),e.tag){case 15:case 0:t=hb(t,e,e.pendingProps,e.type,void 0,Ue);break;case 11:t=hb(t,e,e.pendingProps,e.type.render,e.ref,Ue);break;case 5:Uh(e);default:Sb(t,e),e=ze=t0(e,Qa),t=hp(t,e,Qa)}return n&&Sh(e),t}function Ys(e,t,n,a){cc(),Uh(t),hr=null,tu=0;var s=t.return;try{if(_w(e,s,t,n,Ue)){dt=lu,Vc(e,Dn(n,e.current)),ze=null;return}}catch(r){if(s!==null)throw ze=s,r;dt=lu,Vc(e,Dn(n,e.current)),ze=null;return}t.flags&32768?(Le||a===kf?e=!0:Er||(Ue&536870912)!==0?e=!1:(si=e=!0,(a===as||a===os||a===uu||a===cu)&&(a=Un.current,a!==null&&a.tag===13&&(a.flags|=16384))),aS(t,e)):Xc(t)}function Xc(e){var t=e;do{if((t.flags&32768)!==0){aS(t,si);return}var n=t.alternate;if(e=t.return,bh(t),n=se(t,zw,n,t,Qa),(t.mode&_e)!==Ee&&c0(t),n!==null){ze=n;return}if(t=t.sibling,t!==null){ze=t;return}ze=t=e}while(t!==null);dt===To&&(dt=sE)}function aS(e,t){do{var n=Vw(e.alternate,e);if(n!==null){n.flags&=32767,ze=n;return}if((e.mode&_e)!==Ee){c0(e),n=e.actualDuration;for(var a=e.child;a!==null;)n+=a.actualDuration,a=a.sibling;e.actualDuration=n}if(n=e.return,n!==null&&(n.flags|=32768,n.subtreeFlags=0,n.deletions=null),!t&&(e=e.sibling,e!==null)){ze=e;return}ze=e=n}while(e!==null);dt=Hf,ze=null}function Dp(e,t,n,a,s,r,c,d,y,g,_,N,w,V){e.cancelPendingCommit=null;do vl();while(Ct!==ci);if(fa.flushLegacyContextWarning(),fa.flushPendingUnsafeLifecycleWarnings(),(Pe&(Ut|Vn))!==kt)throw Error("Should not already be working.");if(sa(n),g===ns?oh(w,V,n,bt):a!==null?vw(w,V,n,a,t!==null&&t.alternate!==null&&t.alternate.memoizedState.isDehydrated&&(t.flags&256)!==0,bt):gw(w,V,n,bt),t!==null){if(n===0&&console.error("finishedLanes should not be empty during a commit. This is a bug in React."),t===e.current)throw Error("Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.");if(r=t.lanes|t.childLanes,r|=_m,Zu(e,n,r,c,d,y),e===et&&(ze=et=null,Ue=0),Ar=t,fi=e,pa=n,ry=r,uy=s,yE=a,ly=V,gE=N,ma=Xf,vE=null,t.actualDuration!==0||(t.subtreeFlags&10256)!==0||(t.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,Iw(Zs,function(){return vu=window.event,ma===Xf&&(ma=sy),lS(),null})):(e.callbackNode=null,e.callbackPriority=0),po=null,ei=Dt(),N!==null&&bw(V,ei,N,bt),a=(t.flags&13878)!==0,(t.subtreeFlags&13878)!==0||a){a=L.T,L.T=null,s=Qe.p,Qe.p=qn,c=Pe,Pe|=Vn;try{qw(e,t,n)}finally{Pe=c,Qe.p=s,L.T=a}}Ct=dE,oS(),iS(),sS()}}function oS(){if(Ct===dE){Ct=ci;var e=fi,t=Ar,n=pa,a=(t.flags&13878)!==0;if((t.subtreeFlags&13878)!==0||a){a=L.T,L.T=null;var s=Qe.p;Qe.p=qn;var r=Pe;Pe|=Vn;try{Sr=n,Tr=e,pc(),Vb(t,e),Tr=Sr=null,n=Sy;var c=Xv(e.containerInfo),d=n.focusedElem,y=n.selectionRange;if(c!==d&&d&&d.ownerDocument&&Pv(d.ownerDocument.documentElement,d)){if(y!==null&&th(d)){var g=y.start,_=y.end;if(_===void 0&&(_=g),"selectionStart"in d)d.selectionStart=g,d.selectionEnd=Math.min(_,d.value.length);else{var N=d.ownerDocument||document,w=N&&N.defaultView||window;if(w.getSelection){var V=w.getSelection(),K=d.textContent.length,oe=Math.min(y.start,K),at=y.end===void 0?oe:Math.min(y.end,K);!V.extend&&oe>at&&(c=at,at=oe,oe=c);var qe=Gv(d,oe),x=Gv(d,at);if(qe&&x&&(V.rangeCount!==1||V.anchorNode!==qe.node||V.anchorOffset!==qe.offset||V.focusNode!==x.node||V.focusOffset!==x.offset)){var O=N.createRange();O.setStart(qe.node,qe.offset),V.removeAllRanges(),oe>at?(V.addRange(O),V.extend(x.node,x.offset)):(O.setEnd(x.node,x.offset),V.addRange(O))}}}}for(N=[],V=d;V=V.parentNode;)V.nodeType===1&&N.push({element:V,left:V.scrollLeft,top:V.scrollTop});for(typeof d.focus=="function"&&d.focus(),d=0;d<N.length;d++){var M=N[d];M.element.scrollLeft=M.left,M.element.scrollTop=M.top}}rd=!!by,Sy=by=null}finally{Pe=r,Qe.p=s,L.T=a}}e.current=t,Ct=hE}}function iS(){if(Ct===hE){Ct=ci;var e=vE;if(e!==null){ei=Dt();var t=ho,n=ei;!ot||n<=t||console.timeStamp(e,t,n,Ye,ke,"secondary-light")}e=fi,t=Ar,n=pa;var a=(t.flags&8772)!==0;if((t.subtreeFlags&8772)!==0||a){a=L.T,L.T=null;var s=Qe.p;Qe.p=qn;var r=Pe;Pe|=Vn;try{Sr=n,Tr=e,pc(),Mb(e,t.alternate,t),Tr=Sr=null}finally{Pe=r,Qe.p=s,L.T=a}}e=ly,t=gE,ho=Dt(),e=t===null?e:ei,t=ho,n=ma===iy,a=bt,po!==null?Jv(e,t,po,!1,a):!ot||t<=e||(a?a.run(console.timeStamp.bind(console,n?"Commit Interrupted View Transition":"Commit",e,t,Ye,ke,n?"error":"secondary-dark")):console.timeStamp(n?"Commit Interrupted View Transition":"Commit",e,t,Ye,ke,n?"error":"secondary-dark")),Ct=pE}}function sS(){if(Ct===mE||Ct===pE){if(Ct===mE){var e=ho;ho=Dt();var t=ho,n=ma===iy;!ot||t<=e||console.timeStamp(n?"Interrupted View Transition":"Starting Animation",e,t,Ye,ke,n?" error":"secondary-light"),ma!==iy&&(ma=fE)}Ct=ci,$O(),e=fi;var a=Ar;t=pa,n=yE;var s=a.actualDuration!==0||(a.subtreeFlags&10256)!==0||(a.flags&10256)!==0;s?Ct=$f:(Ct=ci,Ar=fi=null,rS(e,e.pendingLanes),ss=0,pu=null);var r=e.pendingLanes;if(r===0&&(ui=null),s||dS(e),r=xs(t),a=a.stateNode,Jt&&typeof Jt.onCommitFiberRoot=="function")try{var c=(a.current.flags&128)===128;switch(r){case qn:var d=um;break;case Ya:d=cm;break;case ro:d=Zs;break;case cf:d=fm;break;default:d=Zs}Jt.onCommitFiberRoot(Fs,a,d,c)}catch(N){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",N))}if(qa&&e.memoizedUpdaters.clear(),Gw(),n!==null){c=L.T,d=Qe.p,Qe.p=qn,L.T=null;try{var y=e.onRecoverableError;for(a=0;a<n.length;a++){var g=n[a],_=Zw(g.stack);se(g.source,y,g.value,_)}}finally{L.T=c,Qe.p=d}}(pa&3)!==0&&vl(),Va(e),r=e.pendingLanes,(t&261930)!==0&&(r&42)!==0?(Of=!0,e===cy?hu++:(hu=0,cy=e)):hu=0,s||Yi(t,ho),Sl(0)}}function Zw(e){return e={componentStack:e},Object.defineProperty(e,"digest",{get:function(){console.error('You are accessing "digest" from the errorInfo object passed to onRecoverableError. This property is no longer provided as part of errorInfo but can be accessed as a property of the Error instance itself.')}}),e}function rS(e,t){(e.pooledCacheLanes&=t)===0&&(t=e.pooledCache,t!=null&&(e.pooledCache=null,nl(t)))}function vl(){return oS(),iS(),sS(),lS()}function lS(){if(Ct!==$f)return!1;var e=fi,t=ry;ry=0;var n=xs(pa),a=ro>n?ro:n;n=L.T;var s=Qe.p;try{Qe.p=a,L.T=null;var r=uy;uy=null,a=fi;var c=pa;if(Ct=ci,Ar=fi=null,pa=0,(Pe&(Ut|Vn))!==kt)throw Error("Cannot flush passive effects while already rendering.");sa(c),fy=!0,Qf=!1;var d=0;if(po=null,d=Bt(),ma===fE)ih(ho,d,oM);else{var y=ho,g=d,_=ma===sy;!ot||g<=y||(bt?bt.run(console.timeStamp.bind(console,_?"Waiting for Paint":"Waiting",y,g,Ye,ke,"secondary-light")):console.timeStamp(_?"Waiting for Paint":"Waiting",y,g,Ye,ke,"secondary-light"))}y=Pe,Pe|=Vn;var N=a.current;pc(),Gb(N);var w=a.current;N=ly,pc(),Hb(a,w,c,r,N),dS(a),Pe=y;var V=Bt();if(w=d,N=bt,po!==null?Jv(w,V,po,!0,N):!ot||V<=w||(N?N.run(console.timeStamp.bind(console,"Remaining Effects",w,V,Ye,ke,"secondary-dark")):console.timeStamp("Remaining Effects",w,V,Ye,ke,"secondary-dark")),Yi(c,V),Sl(0,!1),Qf?a===pu?ss++:(ss=0,pu=a):ss=0,Qf=fy=!1,Jt&&typeof Jt.onPostCommitFiberRoot=="function")try{Jt.onPostCommitFiberRoot(Fs,a)}catch(oe){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",oe))}var K=a.current.stateNode;return K.effectDuration=0,K.passiveEffectDuration=0,!0}finally{Qe.p=s,L.T=n,rS(e,t)}}function uS(e,t,n){t=Dn(n,t),f0(t),t=np(e.stateNode,t,2),e=Lo(e,t,2),e!==null&&(Mo(e,2),Va(e))}function $e(e,t,n){if(Dr=!1,e.tag===3)uS(e,e,n);else{for(;t!==null;){if(t.tag===3){uS(t,e,n);return}if(t.tag===1){var a=t.stateNode;if(typeof t.type.getDerivedStateFromError=="function"||typeof a.componentDidCatch=="function"&&(ui===null||!ui.has(a))){e=Dn(n,e),f0(e),n=ap(2),a=Lo(t,n,2),a!==null&&(op(n,a,t,e),Mo(a,2),Va(a));return}}t=t.return}console.error(`Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Potential causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.
159
+
160
+ Error message:
161
+
162
+ %s`,n)}}function Rp(e,t,n){var a=e.pingCache;if(a===null){a=e.pingCache=new hM;var s=new Set;a.set(t,s)}else s=a.get(t),s===void 0&&(s=new Set,a.set(t,s));s.has(n)||(ay=!0,s.add(n),a=Fw.bind(null,e,t,n),qa&&bl(e,n),t.then(a,a))}function Fw(e,t,n){var a=e.pingCache;a!==null&&a.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,(n&127)!==0?0>Xa&&(Qi=Xa=Dt(),Gl=Ef("Promise Resolved"),ti=Af):(n&4194048)!==0&&0>Zn&&(mo=Zn=Dt(),Xl=Ef("Promise Resolved"),Lm=Af),$b()&&L.actQueue===null&&console.error(`A suspended resource finished loading inside a test, but the event was not wrapped in act(...).
163
+
164
+ When testing, code that resolves suspended data should be wrapped into act(...):
165
+
166
+ act(() => {
167
+ /* finish loading suspended data */
168
+ });
169
+ /* assert on the output */
170
+
171
+ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`),et===e&&(Ue&n)===n&&(dt===ii||dt===Lf&&(Ue&62914560)===Ue&&Bt()-Gf<uE?(Pe&Ut)===kt&&qs(e,0):oy|=n,is===Ue&&(is=0)),Va(e)}function cS(e,t){t===0&&(t=Pr()),e=Ft(e,t),e!==null&&(Mo(e,t),Va(e))}function Jw(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),cS(e,n)}function Kw(e,t){var n=0;switch(e.tag){case 31:case 13:var a=e.stateNode,s=e.memoizedState;s!==null&&(n=s.retryLane);break;case 19:a=e.stateNode;break;case 22:a=e.stateNode._retryCache;break;default:throw Error("Pinged unknown suspense boundary type. This is probably a bug in React.")}a!==null&&a.delete(t),cS(e,n)}function xp(e,t,n){if((t.subtreeFlags&67117056)!==0)for(t=t.child;t!==null;){var a=e,s=t,r=s.type===af;r=n||r,s.tag!==22?s.flags&67108864?r&&se(s,fS,a,s):xp(a,s,r):s.memoizedState===null&&(r&&s.flags&8192?se(s,fS,a,s):s.subtreeFlags&67108864&&se(s,xp,a,s,r)),t=t.sibling}}function fS(e,t){ue(!0);try{Bb(t),Pb(t),Lb(e,t.alternate,t,!1),kb(e,t,0,null,!1,0)}finally{ue(!1)}}function dS(e){var t=!0;e.current.mode&(Kt|ca)||(t=!1),xp(e,e.current,t)}function hS(e){if((Pe&Ut)===kt){var t=e.tag;if(t===3||t===1||t===0||t===11||t===14||t===15){if(t=F(e)||"ReactComponent",Zf!==null){if(Zf.has(t))return;Zf.add(t)}else Zf=new Set([t]);se(e,function(){console.error("Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead.")})}}}function bl(e,t){qa&&e.memoizedUpdaters.forEach(function(n){wi(e,n,t)})}function Iw(e,t){var n=L.actQueue;return n!==null?(n.push(t),yM):lm(e,t)}function Ww(e){$b()&&L.actQueue===null&&se(e,function(){console.error(`An update to %s inside a test was not wrapped in act(...).
172
+
173
+ When testing, code that causes React state updates should be wrapped into act(...):
174
+
175
+ act(() => {
176
+ /* fire events that update state */
177
+ });
178
+ /* assert on the output */
179
+
180
+ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`,F(e))})}function Va(e){e!==Rr&&e.next===null&&(Rr===null?Ff=Rr=e:Rr=Rr.next=e),Jf=!0,L.actQueue!==null?hy||(hy=!0,gS()):dy||(dy=!0,gS())}function Sl(e,t){if(!py&&Jf){py=!0;do for(var n=!1,a=Ff;a!==null;){if(e!==0){var s=a.pendingLanes;if(s===0)var r=0;else{var c=a.suspendedLanes,d=a.pingedLanes;r=(1<<31-an(42|e)+1)-1,r&=s&~(c&~d),r=r&201326741?r&201326741|1:r?r|2:0}r!==0&&(n=!0,yS(a,r))}else r=Ue,r=Ri(a,a===et?r:0,a.cancelPendingCommit!==null||a.timeoutHandle!==cs),(r&3)===0||Co(a,r)||(n=!0,yS(a,r));a=a.next}while(n);py=!1}}function eO(){vu=window.event,wp()}function wp(){Jf=hy=dy=!1;var e=0;di!==0&&rO()&&(e=di);for(var t=Bt(),n=null,a=Ff;a!==null;){var s=a.next,r=pS(a,t);r===0?(a.next=null,n===null?Ff=s:n.next=s,s===null&&(Rr=n)):(n=a,(e!==0||(r&3)!==0)&&(Jf=!0)),a=s}Ct!==ci&&Ct!==$f||Sl(e),di!==0&&(di=0)}function pS(e,t){for(var n=e.suspendedLanes,a=e.pingedLanes,s=e.expirationTimes,r=e.pendingLanes&-62914561;0<r;){var c=31-an(r),d=1<<c,y=s[c];y===-1?((d&n)===0||(d&a)!==0)&&(s[c]=Qu(d,t)):y<=t&&(e.expiredLanes|=d),r&=~d}if(t=et,n=Ue,n=Ri(e,e===t?n:0,e.cancelPendingCommit!==null||e.timeoutHandle!==cs),a=e.callbackNode,n===0||e===t&&(Ke===as||Ke===os)||e.cancelPendingCommit!==null)return a!==null&&Op(a),e.callbackNode=null,e.callbackPriority=0;if((n&3)===0||Co(e,n)){if(t=n&-n,t!==e.callbackPriority||L.actQueue!==null&&a!==my)Op(a);else return t;switch(xs(n)){case qn:case Ya:n=cm;break;case ro:n=Zs;break;case cf:n=fm;break;default:n=Zs}return a=mS.bind(null,e),L.actQueue!==null?(L.actQueue.push(a),n=my):n=lm(n,a),e.callbackPriority=t,e.callbackNode=n,t}return a!==null&&Op(a),e.callbackPriority=2,e.callbackNode=null,2}function mS(e,t){if(Of=wf=!1,vu=window.event,Ct!==ci&&Ct!==$f)return e.callbackNode=null,e.callbackPriority=0,null;var n=e.callbackNode;if(ma===Xf&&(ma=sy),vl()&&e.callbackNode!==n)return null;var a=Ue;return a=Ri(e,e===et?a:0,e.cancelPendingCommit!==null||e.timeoutHandle!==cs),a===0?null:(Zb(e,a,t),pS(e,Bt()),e.callbackNode!=null&&e.callbackNode===n?mS.bind(null,e):null)}function yS(e,t){if(vl())return null;wf=Of,Of=!1,Zb(e,t,!0)}function Op(e){e!==my&&e!==null&&PO(e)}function gS(){L.actQueue!==null&&L.actQueue.push(function(){return wp(),null}),xM(function(){(Pe&(Ut|Vn))!==kt?lm(um,eO):wp()})}function Cp(){if(di===0){var e=Ji;e===0&&(e=rf,rf<<=1,(rf&261888)===0&&(rf=256)),di=e}return di}function vS(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:(Fe(e,"action"),Ir(""+e))}function bS(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 tO(e,t,n,a,s){if(t==="submit"&&n&&n.stateNode===s){var r=vS((s[on]||null).action),c=a.submitter;c&&(t=(t=c[on]||null)?vS(t.formAction):c.getAttribute("formAction"),t!==null&&(r=t,c=null));var d=new mf("action","action",null,a,s);e.push({event:d,listeners:[{instance:null,listener:function(){if(a.defaultPrevented){if(di!==0){var y=c?bS(s,c):new FormData(s),g={pending:!0,data:y,method:s.method,action:r};Object.freeze(g),Fh(n,g,null,y)}}else typeof r=="function"&&(d.preventDefault(),y=c?bS(s,c):new FormData(s),g={pending:!0,data:y,method:s.method,action:r},Object.freeze(g),Fh(n,g,r,y))},currentTarget:s}]})}}function $c(e,t,n){e.currentTarget=n;try{t(e)}catch(a){wm(a)}e.currentTarget=null}function SS(e,t){t=(t&4)!==0;for(var n=0;n<e.length;n++){var a=e[n];e:{var s=void 0,r=a.event;if(a=a.listeners,t)for(var c=a.length-1;0<=c;c--){var d=a[c],y=d.instance,g=d.currentTarget;if(d=d.listener,y!==s&&r.isPropagationStopped())break e;y!==null?se(y,$c,r,d,g):$c(r,d,g),s=y}else for(c=0;c<a.length;c++){if(d=a[c],y=d.instance,g=d.currentTarget,d=d.listener,y!==s&&r.isPropagationStopped())break e;y!==null?se(y,$c,r,d,g):$c(r,d,g),s=y}}}}function He(e,t){yy.has(e)||console.error('Did not expect a listenToNonDelegatedEvent() call for "%s". This is a bug in React. Please file an issue.',e);var n=t[dm];n===void 0&&(n=t[dm]=new Set);var a=e+"__bubble";n.has(a)||(TS(t,e,2,!1),n.add(a))}function Mp(e,t,n){yy.has(e)&&!t&&console.error('Did not expect a listenToNativeEvent() call for "%s" in the bubble phase. This is a bug in React. Please file an issue.',e);var a=0;t&&(a|=4),TS(n,e,a,t)}function _p(e){if(!e[Kf]){e[Kf]=!0,g1.forEach(function(n){n!=="selectionchange"&&(yy.has(n)||Mp(n,!1,e),Mp(n,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[Kf]||(t[Kf]=!0,Mp("selectionchange",!1,t))}}function TS(e,t,n,a){switch(e1(t)){case qn:var s=VO;break;case Ya:s=jO;break;default:s=Qp}n=s.bind(null,t,n,e),s=void 0,!gm||t!=="touchstart"&&t!=="touchmove"&&t!=="wheel"||(s=!0),a?s!==void 0?e.addEventListener(t,n,{capture:!0,passive:s}):e.addEventListener(t,n,!0):s!==void 0?e.addEventListener(t,n,{passive:s}):e.addEventListener(t,n,!1)}function Np(e,t,n,a,s){var r=a;if((t&1)===0&&(t&2)===0&&a!==null)e:for(;;){if(a===null)return;var c=a.tag;if(c===3||c===4){var d=a.stateNode.containerInfo;if(d===s)break;if(c===4)for(c=a.return;c!==null;){var y=c.tag;if((y===3||y===4)&&c.stateNode.containerInfo===s)return;c=c.return}for(;d!==null;){if(c=X(d),c===null)return;if(y=c.tag,y===5||y===6||y===26||y===27){a=r=c;continue e}d=d.parentNode}}a=a.return}Nv(function(){var g=r,_=Wd(n),N=[];e:{var w=eT.get(e);if(w!==void 0){var V=mf,K=e;switch(e){case"keypress":if(ec(n)===0)break e;case"keydown":case"keyup":V=_C;break;case"focusin":K="focus",V=Tm;break;case"focusout":K="blur",V=Tm;break;case"beforeblur":case"afterblur":V=Tm;break;case"click":if(n.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":V=k1;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":V=bC;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":V=zC;break;case J1:case K1:case I1:V=EC;break;case W1:V=jC;break;case"scroll":case"scrollend":V=gC;break;case"wheel":V=LC;break;case"copy":case"cut":case"paste":V=DC;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":V=Y1;break;case"toggle":case"beforetoggle":V=kC}var oe=(t&4)!==0,at=!oe&&(e==="scroll"||e==="scrollend"),qe=oe?w!==null?w+"Capture":null:w;oe=[];for(var x=g,O;x!==null;){var M=x;if(O=M.stateNode,M=M.tag,M!==5&&M!==26&&M!==27||O===null||qe===null||(M=Wr(x,qe),M!=null&&oe.push(Tl(x,M,O))),at)break;x=x.return}0<oe.length&&(w=new V(w,K,null,n,_),N.push({event:w,listeners:oe}))}}if((t&7)===0){e:{if(w=e==="mouseover"||e==="pointerover",V=e==="mouseout"||e==="pointerout",w&&n!==Nl&&(K=n.relatedTarget||n.fromElement)&&(X(K)||K[Zo]))break e;if((V||w)&&(w=_.window===_?_:(w=_.ownerDocument)?w.defaultView||w.parentWindow:window,V?(K=n.relatedTarget||n.toElement,V=g,K=K?X(K):null,K!==null&&(at=k(K),oe=K.tag,K!==at||oe!==5&&oe!==27&&oe!==6)&&(K=null)):(V=null,K=g),V!==K)){if(oe=k1,M="onMouseLeave",qe="onMouseEnter",x="mouse",(e==="pointerout"||e==="pointerover")&&(oe=Y1,M="onPointerLeave",qe="onPointerEnter",x="pointer"),at=V==null?w:de(V),O=K==null?w:de(K),w=new oe(M,x+"leave",V,n,_),w.target=at,w.relatedTarget=O,M=null,X(_)===g&&(oe=new oe(qe,x+"enter",K,n,_),oe.target=O,oe.relatedTarget=at,M=oe),at=M,V&&K)t:{for(oe=nO,qe=V,x=K,O=0,M=qe;M;M=oe(M))O++;M=0;for(var q=x;q;q=oe(q))M++;for(;0<O-M;)qe=oe(qe),O--;for(;0<M-O;)x=oe(x),M--;for(;O--;){if(qe===x||x!==null&&qe===x.alternate){oe=qe;break t}qe=oe(qe),x=oe(x)}oe=null}else oe=null;V!==null&&ES(N,w,V,oe,!1),K!==null&&at!==null&&ES(N,at,K,oe,!0)}}e:{if(w=g?de(g):window,V=w.nodeName&&w.nodeName.toLowerCase(),V==="select"||V==="input"&&w.type==="file")var te=Hv;else if(Bv(w))if(Z1)te=pw;else{te=dw;var De=fw}else V=w.nodeName,!V||V.toLowerCase()!=="input"||w.type!=="checkbox"&&w.type!=="radio"?g&&Kr(g.elementType)&&(te=Hv):te=hw;if(te&&(te=te(e,g))){Lv(N,te,n,_);break e}De&&De(e,w,g),e==="focusout"&&g&&w.type==="number"&&g.memoizedProps.value!=null&&Qd(w,"number",w.value)}switch(De=g?de(g):window,e){case"focusin":(Bv(De)||De.contentEditable==="true")&&(nr=De,Am=g,Hl=null);break;case"focusout":Hl=Am=nr=null;break;case"mousedown":Dm=!0;break;case"contextmenu":case"mouseup":case"dragend":Dm=!1,$v(N,n,_);break;case"selectionchange":if(PC)break;case"keydown":case"keyup":$v(N,n,_)}var ye;if(Em)e:{switch(e){case"compositionstart":var he="onCompositionStart";break e;case"compositionend":he="onCompositionEnd";break e;case"compositionupdate":he="onCompositionUpdate";break e}he=void 0}else tr?Vv(e,n)&&(he="onCompositionEnd"):e==="keydown"&&n.keyCode===G1&&(he="onCompositionStart");he&&(P1&&n.locale!=="ko"&&(tr||he!=="onCompositionStart"?he==="onCompositionEnd"&&tr&&(ye=Uv()):(Fo=_,vm="value"in Fo?Fo.value:Fo.textContent,tr=!0)),De=Qc(g,he),0<De.length&&(he=new q1(he,e,null,n,_),N.push({event:he,listeners:De}),ye?he.data=ye:(ye=jv(n),ye!==null&&(he.data=ye)))),(ye=YC?rw(e,n):lw(e,n))&&(he=Qc(g,"onBeforeInput"),0<he.length&&(De=new xC("onBeforeInput","beforeinput",null,n,_),N.push({event:De,listeners:he}),De.data=ye)),tO(N,e,g,n,_)}SS(N,t)})}function Tl(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Qc(e,t){for(var n=t+"Capture",a=[];e!==null;){var s=e,r=s.stateNode;if(s=s.tag,s!==5&&s!==26&&s!==27||r===null||(s=Wr(e,n),s!=null&&a.unshift(Tl(e,s,r)),s=Wr(e,t),s!=null&&a.push(Tl(e,s,r))),e.tag===3)return a;e=e.return}return[]}function nO(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function ES(e,t,n,a,s){for(var r=t._reactName,c=[];n!==null&&n!==a;){var d=n,y=d.alternate,g=d.stateNode;if(d=d.tag,y!==null&&y===a)break;d!==5&&d!==26&&d!==27||g===null||(y=g,s?(g=Wr(n,r),g!=null&&c.unshift(Tl(n,g,y))):s||(g=Wr(n,r),g!=null&&c.push(Tl(n,g,y)))),n=n.return}c.length!==0&&e.push({event:t,listeners:c})}function Up(e,t){aw(e,t),e!=="input"&&e!=="textarea"&&e!=="select"||t==null||t.value!==null||L1||(L1=!0,e==="select"&&t.multiple?console.error("`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.",e):console.error("`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.",e));var n={registrationNameDependencies:Gi,possibleRegistrationNames:hm};Kr(e)||typeof t.is=="string"||iw(e,t,n),t.contentEditable&&!t.suppressContentEditableWarning&&t.children!=null&&console.error("A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.")}function jt(e,t,n,a){t!==n&&(n=Go(n),Go(t)!==n&&(a[e]=t))}function aO(e,t,n){t.forEach(function(a){n[RS(a)]=a==="style"?Vp(e):e.getAttribute(a)})}function ja(e,t){t===!1?console.error("Expected `%s` listener to be a function, instead got `false`.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.",e,e,e):console.error("Expected `%s` listener to be a function, instead got a value of `%s` type.",e,typeof t)}function AS(e,t){return e=e.namespaceURI===df||e.namespaceURI===Ks?e.ownerDocument.createElementNS(e.namespaceURI,e.tagName):e.ownerDocument.createElement(e.tagName),e.innerHTML=t,e.innerHTML}function Go(e){return Di(e)&&(console.error("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before using it here.",Ai(e)),Oo(e)),(typeof e=="string"?e:""+e).replace(gM,`
181
+ `).replace(vM,"")}function DS(e,t){return t=Go(t),Go(e)===t}function Ie(e,t,n,a,s,r){switch(n){case"children":typeof a=="string"?(Wu(a,t,!1),t==="body"||t==="textarea"&&a===""||Jr(e,a)):(typeof a=="number"||typeof a=="bigint")&&(Wu(""+a,t,!1),t!=="body"&&Jr(e,""+a));break;case"className":Ju(e,"class",a);break;case"tabIndex":Ju(e,"tabindex",a);break;case"dir":case"role":case"viewBox":case"width":case"height":Ju(e,n,a);break;case"style":Cv(e,a,r);break;case"data":if(t!=="object"){Ju(e,"data",a);break}case"src":case"href":if(a===""&&(t!=="a"||n!=="href")){console.error(n==="src"?'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.':'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',n,n),e.removeAttribute(n);break}if(a==null||typeof a=="function"||typeof a=="symbol"||typeof a=="boolean"){e.removeAttribute(n);break}Fe(a,n),a=Ir(""+a),e.setAttribute(n,a);break;case"action":case"formAction":if(a!=null&&(t==="form"?n==="formAction"?console.error("You can only pass the formAction prop to <input> or <button>. Use the action prop on <form>."):typeof a=="function"&&(s.encType==null&&s.method==null||ed||(ed=!0,console.error("Cannot specify a encType or method for a form that specifies a function as the action. React provides those automatically. They will get overridden.")),s.target==null||Wf||(Wf=!0,console.error("Cannot specify a target for a form that specifies a function as the action. The function will always be executed in the same window."))):t==="input"||t==="button"?n==="action"?console.error("You can only pass the action prop to <form>. Use the formAction prop on <input> or <button>."):t!=="input"||s.type==="submit"||s.type==="image"||If?t!=="button"||s.type==null||s.type==="submit"||If?typeof a=="function"&&(s.name==null||AE||(AE=!0,console.error('Cannot specify a "name" prop for a button that specifies a function as a formAction. React needs it to encode which action should be invoked. It will get overridden.')),s.formEncType==null&&s.formMethod==null||ed||(ed=!0,console.error("Cannot specify a formEncType or formMethod for a button that specifies a function as a formAction. React provides those automatically. They will get overridden.")),s.formTarget==null||Wf||(Wf=!0,console.error("Cannot specify a formTarget for a button that specifies a function as a formAction. The function will always be executed in the same window."))):(If=!0,console.error('A button can only specify a formAction along with type="submit" or no type.')):(If=!0,console.error('An input can only specify a formAction along with type="submit" or type="image".')):console.error(n==="action"?"You can only pass the action prop to <form>.":"You can only pass the formAction prop to <input> or <button>.")),typeof a=="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 r=="function"&&(n==="formAction"?(t!=="input"&&Ie(e,t,"name",s.name,s,null),Ie(e,t,"formEncType",s.formEncType,s,null),Ie(e,t,"formMethod",s.formMethod,s,null),Ie(e,t,"formTarget",s.formTarget,s,null)):(Ie(e,t,"encType",s.encType,s,null),Ie(e,t,"method",s.method,s,null),Ie(e,t,"target",s.target,s,null)));if(a==null||typeof a=="symbol"||typeof a=="boolean"){e.removeAttribute(n);break}Fe(a,n),a=Ir(""+a),e.setAttribute(n,a);break;case"onClick":a!=null&&(typeof a!="function"&&ja(n,a),e.onclick=Ia);break;case"onScroll":a!=null&&(typeof a!="function"&&ja(n,a),He("scroll",e));break;case"onScrollEnd":a!=null&&(typeof a!="function"&&ja(n,a),He("scrollend",e));break;case"dangerouslySetInnerHTML":if(a!=null){if(typeof a!="object"||!("__html"in a))throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.");if(n=a.__html,n!=null){if(s.children!=null)throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");e.innerHTML=n}}break;case"multiple":e.multiple=a&&typeof a!="function"&&typeof a!="symbol";break;case"muted":e.muted=a&&typeof a!="function"&&typeof a!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(a==null||typeof a=="function"||typeof a=="boolean"||typeof a=="symbol"){e.removeAttribute("xlink:href");break}Fe(a,n),n=Ir(""+a),e.setAttributeNS(rs,"xlink:href",n);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":a!=null&&typeof a!="function"&&typeof a!="symbol"?(Fe(a,n),e.setAttribute(n,""+a)):e.removeAttribute(n);break;case"inert":a!==""||td[n]||(td[n]=!0,console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.",n));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":a&&typeof a!="function"&&typeof a!="symbol"?e.setAttribute(n,""):e.removeAttribute(n);break;case"capture":case"download":a===!0?e.setAttribute(n,""):a!==!1&&a!=null&&typeof a!="function"&&typeof a!="symbol"?(Fe(a,n),e.setAttribute(n,a)):e.removeAttribute(n);break;case"cols":case"rows":case"size":case"span":a!=null&&typeof a!="function"&&typeof a!="symbol"&&!isNaN(a)&&1<=a?(Fe(a,n),e.setAttribute(n,a)):e.removeAttribute(n);break;case"rowSpan":case"start":a==null||typeof a=="function"||typeof a=="symbol"||isNaN(a)?e.removeAttribute(n):(Fe(a,n),e.setAttribute(n,a));break;case"popover":He("beforetoggle",e),He("toggle",e),ws(e,"popover",a);break;case"xlinkActuate":Ka(e,rs,"xlink:actuate",a);break;case"xlinkArcrole":Ka(e,rs,"xlink:arcrole",a);break;case"xlinkRole":Ka(e,rs,"xlink:role",a);break;case"xlinkShow":Ka(e,rs,"xlink:show",a);break;case"xlinkTitle":Ka(e,rs,"xlink:title",a);break;case"xlinkType":Ka(e,rs,"xlink:type",a);break;case"xmlBase":Ka(e,gy,"xml:base",a);break;case"xmlLang":Ka(e,gy,"xml:lang",a);break;case"xmlSpace":Ka(e,gy,"xml:space",a);break;case"is":r!=null&&console.error('Cannot update the "is" prop after it has been initialized.'),ws(e,"is",a);break;case"innerText":case"textContent":break;case"popoverTarget":DE||a==null||typeof a!="object"||(DE=!0,console.error("The `popoverTarget` prop expects the ID of an Element as a string. Received %s instead.",a));default:!(2<n.length)||n[0]!=="o"&&n[0]!=="O"||n[1]!=="n"&&n[1]!=="N"?(n=Mv(n),ws(e,n,a)):Gi.hasOwnProperty(n)&&a!=null&&typeof a!="function"&&ja(n,a)}}function zp(e,t,n,a,s,r){switch(n){case"style":Cv(e,a,r);break;case"dangerouslySetInnerHTML":if(a!=null){if(typeof a!="object"||!("__html"in a))throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.");if(n=a.__html,n!=null){if(s.children!=null)throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");e.innerHTML=n}}break;case"children":typeof a=="string"?Jr(e,a):(typeof a=="number"||typeof a=="bigint")&&Jr(e,""+a);break;case"onScroll":a!=null&&(typeof a!="function"&&ja(n,a),He("scroll",e));break;case"onScrollEnd":a!=null&&(typeof a!="function"&&ja(n,a),He("scrollend",e));break;case"onClick":a!=null&&(typeof a!="function"&&ja(n,a),e.onclick=Ia);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(Gi.hasOwnProperty(n))a!=null&&typeof a!="function"&&ja(n,a);else e:{if(n[0]==="o"&&n[1]==="n"&&(s=n.endsWith("Capture"),t=n.slice(2,s?n.length-7:void 0),r=e[on]||null,r=r!=null?r[n]:null,typeof r=="function"&&e.removeEventListener(t,r,s),typeof a=="function")){typeof r!="function"&&r!==null&&(n in e?e[n]=null:e.hasAttribute(n)&&e.removeAttribute(n)),e.addEventListener(t,a,s);break e}n in e?e[n]=a:a===!0?e.setAttribute(n,""):ws(e,n,a)}}}function Gt(e,t,n){switch(Up(t,n),t){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":He("error",e),He("load",e);var a=!1,s=!1,r;for(r in n)if(n.hasOwnProperty(r)){var c=n[r];if(c!=null)switch(r){case"src":a=!0;break;case"srcSet":s=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");default:Ie(e,t,r,c,n,null)}}s&&Ie(e,t,"srcSet",n.srcSet,n,null),a&&Ie(e,t,"src",n.src,n,null);return;case"input":tn("input",n),He("invalid",e);var d=r=c=s=null,y=null,g=null;for(a in n)if(n.hasOwnProperty(a)){var _=n[a];if(_!=null)switch(a){case"name":s=_;break;case"type":c=_;break;case"checked":y=_;break;case"defaultChecked":g=_;break;case"value":r=_;break;case"defaultValue":d=_;break;case"children":case"dangerouslySetInnerHTML":if(_!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:Ie(e,t,a,_,n,null)}}hv(e,n),pv(e,r,d,y,g,c,s,!1);return;case"select":tn("select",n),He("invalid",e),a=c=r=null;for(s in n)if(n.hasOwnProperty(s)&&(d=n[s],d!=null))switch(s){case"value":r=d;break;case"defaultValue":c=d;break;case"multiple":a=d;default:Ie(e,t,s,d,n,null)}gv(e,n),t=r,n=c,e.multiple=!!a,t!=null?Os(e,!!a,t,!1):n!=null&&Os(e,!!a,n,!0);return;case"textarea":tn("textarea",n),He("invalid",e),r=s=a=null;for(c in n)if(n.hasOwnProperty(c)&&(d=n[c],d!=null))switch(c){case"value":a=d;break;case"defaultValue":s=d;break;case"children":r=d;break;case"dangerouslySetInnerHTML":if(d!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:Ie(e,t,c,d,n,null)}vv(e,n),Sv(e,a,s,r);return;case"option":mv(e,n);for(y in n)n.hasOwnProperty(y)&&(a=n[y],a!=null)&&(y==="selected"?e.selected=a&&typeof a!="function"&&typeof a!="symbol":Ie(e,t,y,a,n,null));return;case"dialog":He("beforetoggle",e),He("toggle",e),He("cancel",e),He("close",e);break;case"iframe":case"object":He("load",e);break;case"video":case"audio":for(a=0;a<mu.length;a++)He(mu[a],e);break;case"image":He("error",e),He("load",e);break;case"details":He("toggle",e);break;case"embed":case"source":case"link":He("error",e),He("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(g in n)if(n.hasOwnProperty(g)&&(a=n[g],a!=null))switch(g){case"children":case"dangerouslySetInnerHTML":throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");default:Ie(e,t,g,a,n,null)}return;default:if(Kr(t)){for(_ in n)n.hasOwnProperty(_)&&(a=n[_],a!==void 0&&zp(e,t,_,a,n,void 0));return}}for(d in n)n.hasOwnProperty(d)&&(a=n[d],a!=null&&Ie(e,t,d,a,n,null))}function oO(e,t,n,a){switch(Up(t,a),t){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var s=null,r=null,c=null,d=null,y=null,g=null,_=null;for(V in n){var N=n[V];if(n.hasOwnProperty(V)&&N!=null)switch(V){case"checked":break;case"value":break;case"defaultValue":y=N;default:a.hasOwnProperty(V)||Ie(e,t,V,null,a,N)}}for(var w in a){var V=a[w];if(N=n[w],a.hasOwnProperty(w)&&(V!=null||N!=null))switch(w){case"type":r=V;break;case"name":s=V;break;case"checked":g=V;break;case"defaultChecked":_=V;break;case"value":c=V;break;case"defaultValue":d=V;break;case"children":case"dangerouslySetInnerHTML":if(V!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:V!==N&&Ie(e,t,w,V,a,N)}}t=n.type==="checkbox"||n.type==="radio"?n.checked!=null:n.value!=null,a=a.type==="checkbox"||a.type==="radio"?a.checked!=null:a.value!=null,t||!a||EE||(console.error("A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"),EE=!0),!t||a||TE||(console.error("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"),TE=!0),$d(e,c,d,y,g,_,r,s);return;case"select":V=c=d=w=null;for(r in n)if(y=n[r],n.hasOwnProperty(r)&&y!=null)switch(r){case"value":break;case"multiple":V=y;default:a.hasOwnProperty(r)||Ie(e,t,r,null,a,y)}for(s in a)if(r=a[s],y=n[s],a.hasOwnProperty(s)&&(r!=null||y!=null))switch(s){case"value":w=r;break;case"defaultValue":d=r;break;case"multiple":c=r;default:r!==y&&Ie(e,t,s,r,a,y)}a=d,t=c,n=V,w!=null?Os(e,!!t,w,!1):!!n!=!!t&&(a!=null?Os(e,!!t,a,!0):Os(e,!!t,t?[]:"",!1));return;case"textarea":V=w=null;for(d in n)if(s=n[d],n.hasOwnProperty(d)&&s!=null&&!a.hasOwnProperty(d))switch(d){case"value":break;case"children":break;default:Ie(e,t,d,null,a,s)}for(c in a)if(s=a[c],r=n[c],a.hasOwnProperty(c)&&(s!=null||r!=null))switch(c){case"value":w=s;break;case"defaultValue":V=s;break;case"children":break;case"dangerouslySetInnerHTML":if(s!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:s!==r&&Ie(e,t,c,s,a,r)}bv(e,w,V);return;case"option":for(var K in n)w=n[K],n.hasOwnProperty(K)&&w!=null&&!a.hasOwnProperty(K)&&(K==="selected"?e.selected=!1:Ie(e,t,K,null,a,w));for(y in a)w=a[y],V=n[y],a.hasOwnProperty(y)&&w!==V&&(w!=null||V!=null)&&(y==="selected"?e.selected=w&&typeof w!="function"&&typeof w!="symbol":Ie(e,t,y,w,a,V));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 oe in n)w=n[oe],n.hasOwnProperty(oe)&&w!=null&&!a.hasOwnProperty(oe)&&Ie(e,t,oe,null,a,w);for(g in a)if(w=a[g],V=n[g],a.hasOwnProperty(g)&&w!==V&&(w!=null||V!=null))switch(g){case"children":case"dangerouslySetInnerHTML":if(w!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:Ie(e,t,g,w,a,V)}return;default:if(Kr(t)){for(var at in n)w=n[at],n.hasOwnProperty(at)&&w!==void 0&&!a.hasOwnProperty(at)&&zp(e,t,at,void 0,a,w);for(_ in a)w=a[_],V=n[_],!a.hasOwnProperty(_)||w===V||w===void 0&&V===void 0||zp(e,t,_,w,a,V);return}}for(var qe in n)w=n[qe],n.hasOwnProperty(qe)&&w!=null&&!a.hasOwnProperty(qe)&&Ie(e,t,qe,null,a,w);for(N in a)w=a[N],V=n[N],!a.hasOwnProperty(N)||w===V||w==null&&V==null||Ie(e,t,N,w,a,V)}function RS(e){switch(e){case"class":return"className";case"for":return"htmlFor";default:return e}}function Vp(e){var t={};e=e.style;for(var n=0;n<e.length;n++){var a=e[n];t[a]=e.getPropertyValue(a)}return t}function xS(e,t,n){if(t!=null&&typeof t!="object")console.error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");else{var a,s=a="",r;for(r in t)if(t.hasOwnProperty(r)){var c=t[r];c!=null&&typeof c!="boolean"&&c!==""&&(r.indexOf("--")===0?(Zt(c,r),a+=s+r+":"+(""+c).trim()):typeof c!="number"||c===0||j1.has(r)?(Zt(c,r),a+=s+r.replace(_1,"-$1").toLowerCase().replace(N1,"-ms-")+":"+(""+c).trim()):a+=s+r.replace(_1,"-$1").toLowerCase().replace(N1,"-ms-")+":"+c+"px",s=";")}a=a||null,t=e.getAttribute("style"),t!==a&&(a=Go(a),Go(t)!==a&&(n.style=Vp(e)))}}function kn(e,t,n,a,s,r){if(s.delete(n),e=e.getAttribute(n),e===null)switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":return}else if(a!=null)switch(typeof a){case"function":case"symbol":case"boolean":break;default:if(Fe(a,t),e===""+a)return}jt(t,e,a,r)}function wS(e,t,n,a,s,r){if(s.delete(n),e=e.getAttribute(n),e===null){switch(typeof a){case"function":case"symbol":return}if(!a)return}else switch(typeof a){case"function":case"symbol":break;default:if(a)return}jt(t,e,a,r)}function jp(e,t,n,a,s,r){if(s.delete(n),e=e.getAttribute(n),e===null)switch(typeof a){case"undefined":case"function":case"symbol":return}else if(a!=null)switch(typeof a){case"function":case"symbol":break;default:if(Fe(a,n),e===""+a)return}jt(t,e,a,r)}function OS(e,t,n,a,s,r){if(s.delete(n),e=e.getAttribute(n),e===null)switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":return;default:if(isNaN(a))return}else if(a!=null)switch(typeof a){case"function":case"symbol":case"boolean":break;default:if(!isNaN(a)&&(Fe(a,t),e===""+a))return}jt(t,e,a,r)}function Bp(e,t,n,a,s,r){if(s.delete(n),e=e.getAttribute(n),e===null)switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":return}else if(a!=null)switch(typeof a){case"function":case"symbol":case"boolean":break;default:if(Fe(a,t),n=Ir(""+a),e===n)return}jt(t,e,a,r)}function CS(e,t,n,a){for(var s={},r=new Set,c=e.attributes,d=0;d<c.length;d++)switch(c[d].name.toLowerCase()){case"value":break;case"checked":break;case"selected":break;default:r.add(c[d].name)}if(Kr(t)){for(var y in n)if(n.hasOwnProperty(y)){var g=n[y];if(g!=null){if(Gi.hasOwnProperty(y))typeof g!="function"&&ja(y,g);else if(n.suppressHydrationWarning!==!0)switch(y){case"children":typeof g!="string"&&typeof g!="number"||jt("children",e.textContent,g,s);continue;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":continue;case"dangerouslySetInnerHTML":c=e.innerHTML,g=g?g.__html:void 0,g!=null&&(g=AS(e,g),jt(y,c,g,s));continue;case"style":r.delete(y),xS(e,g,s);continue;case"offsetParent":case"offsetTop":case"offsetLeft":case"offsetWidth":case"offsetHeight":case"isContentEditable":case"outerText":case"outerHTML":r.delete(y.toLowerCase()),console.error("Assignment to read-only property will result in a no-op: `%s`",y);continue;case"className":r.delete("class"),c=Fu(e,"class",g),jt("className",c,g,s);continue;default:a.context===Eo&&t!=="svg"&&t!=="math"?r.delete(y.toLowerCase()):r.delete(y),c=Fu(e,y,g),jt(y,c,g,s)}}}}else for(g in n)if(n.hasOwnProperty(g)&&(y=n[g],y!=null)){if(Gi.hasOwnProperty(g))typeof y!="function"&&ja(g,y);else if(n.suppressHydrationWarning!==!0)switch(g){case"children":typeof y!="string"&&typeof y!="number"||jt("children",e.textContent,y,s);continue;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"value":case"checked":case"selected":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":continue;case"dangerouslySetInnerHTML":c=e.innerHTML,y=y?y.__html:void 0,y!=null&&(y=AS(e,y),c!==y&&(s[g]={__html:c}));continue;case"className":kn(e,g,"class",y,r,s);continue;case"tabIndex":kn(e,g,"tabindex",y,r,s);continue;case"style":r.delete(g),xS(e,y,s);continue;case"multiple":r.delete(g),jt(g,e.multiple,y,s);continue;case"muted":r.delete(g),jt(g,e.muted,y,s);continue;case"autoFocus":r.delete("autofocus"),jt(g,e.autofocus,y,s);continue;case"data":if(t!=="object"){r.delete(g),c=e.getAttribute("data"),jt(g,c,y,s);continue}case"src":case"href":if(!(y!==""||t==="a"&&g==="href"||t==="object"&&g==="data")){console.error(g==="src"?'An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.':'An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',g,g);continue}Bp(e,g,g,y,r,s);continue;case"action":case"formAction":if(c=e.getAttribute(g),typeof y=="function"){r.delete(g.toLowerCase()),g==="formAction"?(r.delete("name"),r.delete("formenctype"),r.delete("formmethod"),r.delete("formtarget")):(r.delete("enctype"),r.delete("method"),r.delete("target"));continue}else if(c===bM){r.delete(g.toLowerCase()),jt(g,"function",y,s);continue}Bp(e,g,g.toLowerCase(),y,r,s);continue;case"xlinkHref":Bp(e,g,"xlink:href",y,r,s);continue;case"contentEditable":jp(e,g,"contenteditable",y,r,s);continue;case"spellCheck":jp(e,g,"spellcheck",y,r,s);continue;case"draggable":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":jp(e,g,g,y,r,s);continue;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":wS(e,g,g.toLowerCase(),y,r,s);continue;case"capture":case"download":e:{d=e;var _=c=g,N=s;if(r.delete(_),d=d.getAttribute(_),d===null)switch(typeof y){case"undefined":case"function":case"symbol":break e;default:if(y===!1)break e}else if(y!=null)switch(typeof y){case"function":case"symbol":break;case"boolean":if(y===!0&&d==="")break e;break;default:if(Fe(y,c),d===""+y)break e}jt(c,d,y,N)}continue;case"cols":case"rows":case"size":case"span":e:{if(d=e,_=c=g,N=s,r.delete(_),d=d.getAttribute(_),d===null)switch(typeof y){case"undefined":case"function":case"symbol":case"boolean":break e;default:if(isNaN(y)||1>y)break e}else if(y!=null)switch(typeof y){case"function":case"symbol":case"boolean":break;default:if(!(isNaN(y)||1>y)&&(Fe(y,c),d===""+y))break e}jt(c,d,y,N)}continue;case"rowSpan":OS(e,g,"rowspan",y,r,s);continue;case"start":OS(e,g,g,y,r,s);continue;case"xHeight":kn(e,g,"x-height",y,r,s);continue;case"xlinkActuate":kn(e,g,"xlink:actuate",y,r,s);continue;case"xlinkArcrole":kn(e,g,"xlink:arcrole",y,r,s);continue;case"xlinkRole":kn(e,g,"xlink:role",y,r,s);continue;case"xlinkShow":kn(e,g,"xlink:show",y,r,s);continue;case"xlinkTitle":kn(e,g,"xlink:title",y,r,s);continue;case"xlinkType":kn(e,g,"xlink:type",y,r,s);continue;case"xmlBase":kn(e,g,"xml:base",y,r,s);continue;case"xmlLang":kn(e,g,"xml:lang",y,r,s);continue;case"xmlSpace":kn(e,g,"xml:space",y,r,s);continue;case"inert":y!==""||td[g]||(td[g]=!0,console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.",g)),wS(e,g,g,y,r,s);continue;default:if(!(2<g.length)||g[0]!=="o"&&g[0]!=="O"||g[1]!=="n"&&g[1]!=="N"){d=Mv(g),c=!1,a.context===Eo&&t!=="svg"&&t!=="math"?r.delete(d.toLowerCase()):(_=g.toLowerCase(),_=hf.hasOwnProperty(_)&&hf[_]||null,_!==null&&_!==g&&(c=!0,r.delete(_)),r.delete(d));e:if(_=e,N=d,d=y,Sa(N))if(_.hasAttribute(N))_=_.getAttribute(N),Fe(d,N),d=_===""+d?d:_;else{switch(typeof d){case"function":case"symbol":break e;case"boolean":if(_=N.toLowerCase().slice(0,5),_!=="data-"&&_!=="aria-")break e}d=d===void 0?void 0:null}else d=void 0;c||jt(g,d,y,s)}}}return 0<r.size&&n.suppressHydrationWarning!==!0&&aO(e,r,s),Object.keys(s).length===0?null:s}function iO(e,t){switch(e.length){case 0:return"";case 1:return e[0];case 2:return e[0]+" "+t+" "+e[1];default:return e.slice(0,-1).join(", ")+", "+t+" "+e[e.length-1]}}function MS(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function sO(){if(typeof performance.getEntriesByType=="function"){for(var e=0,t=0,n=performance.getEntriesByType("resource"),a=0;a<n.length;a++){var s=n[a],r=s.transferSize,c=s.initiatorType,d=s.duration;if(r&&d&&MS(c)){for(c=0,d=s.responseEnd,a+=1;a<n.length;a++){var y=n[a],g=y.startTime;if(g>d)break;var _=y.transferSize,N=y.initiatorType;_&&MS(N)&&(y=y.responseEnd,c+=_*(y<d?1:(d-g)/(y-g)))}if(--a,t+=8*(r+c)/(s.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}function Zc(e){return e.nodeType===9?e:e.ownerDocument}function _S(e){switch(e){case Ks:return wr;case df:return ad;default:return Eo}}function NS(e,t){if(e===Eo)switch(t){case"svg":return wr;case"math":return ad;default:return Eo}return e===wr&&t==="foreignObject"?Eo:e}function Lp(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}function rO(){var e=window.event;return e&&e.type==="popstate"?e===Ty?!1:(Ty=e,!0):(Ty=null,!1)}function El(){var e=window.event;return e&&e!==vu?e.type:null}function Al(){var e=window.event;return e&&e!==vu?e.timeStamp:-1.1}function lO(e){setTimeout(function(){throw e})}function uO(e,t,n){switch(t){case"button":case"input":case"select":case"textarea":n.autoFocus&&e.focus();break;case"img":n.src?e.src=n.src:n.srcSet&&(e.srcset=n.srcSet)}}function cO(){}function fO(e,t,n,a){oO(e,t,n,a),e[on]=a}function US(e){Jr(e,"")}function dO(e,t,n){e.nodeValue=n}function zS(e){if(!e.__reactWarnedAboutChildrenConflict){var t=e[on]||null;if(t!==null){var n=J(e);n!==null&&(typeof t.children=="string"||typeof t.children=="number"?(e.__reactWarnedAboutChildrenConflict=!0,se(n,function(){console.error('Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets "children" text content using React. It should be a leaf with no children. Otherwise it\'s ambiguous which children should be used.')})):t.dangerouslySetInnerHTML!=null&&(e.__reactWarnedAboutChildrenConflict=!0,se(n,function(){console.error('Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets "dangerouslySetInnerHTML" using React. It should be a leaf with no children. Otherwise it\'s ambiguous which children should be used.')})))}}}function Po(e){return e==="head"}function hO(e,t){e.removeChild(t)}function pO(e,t){(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e).removeChild(t)}function VS(e,t){var n=t,a=0;do{var s=n.nextSibling;if(e.removeChild(n),s&&s.nodeType===8)if(n=s.data,n===gu||n===nd){if(a===0){e.removeChild(s),Xs(t);return}a--}else if(n===yu||n===hi||n===us||n===xr||n===ls)a++;else if(n===TM)Dl(e.ownerDocument.documentElement);else if(n===AM){n=e.ownerDocument.head,Dl(n);for(var r=n.firstChild;r;){var c=r.nextSibling,d=r.nodeName;r[_l]||d==="SCRIPT"||d==="STYLE"||d==="LINK"&&r.rel.toLowerCase()==="stylesheet"||n.removeChild(r),r=c}}else n===EM&&Dl(e.ownerDocument.body);n=s}while(n);Xs(t)}function jS(e,t){var n=e;e=0;do{var a=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||""),a&&a.nodeType===8)if(n=a.data,n===gu){if(e===0)break;e--}else n!==yu&&n!==hi&&n!==us&&n!==xr||e++;n=a}while(n)}function mO(e){jS(e,!0)}function yO(e){e=e.style,typeof e.setProperty=="function"?e.setProperty("display","none","important"):e.display="none"}function gO(e){e.nodeValue=""}function vO(e){jS(e,!1)}function bO(e,t){t=t[DM],t=t!=null&&t.hasOwnProperty("display")?t.display:null,e.style.display=t==null||typeof t=="boolean"?"":(""+t).trim()}function SO(e,t){e.nodeValue=t}function Hp(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":Hp(n),U(n);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(n.rel.toLowerCase()==="stylesheet")continue}e.removeChild(n)}}function TO(e,t,n,a){for(;e.nodeType===1;){var s=n;if(e.nodeName.toLowerCase()!==t.toLowerCase()){if(!a&&(e.nodeName!=="INPUT"||e.type!=="hidden"))break}else if(a){if(!e[_l])switch(t){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if(r=e.getAttribute("rel"),r==="stylesheet"&&e.hasAttribute("data-precedence"))break;if(r!==s.rel||e.getAttribute("href")!==(s.href==null||s.href===""?null:s.href)||e.getAttribute("crossorigin")!==(s.crossOrigin==null?null:s.crossOrigin)||e.getAttribute("title")!==(s.title==null?null:s.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(r=e.getAttribute("src"),(r!==(s.src==null?null:s.src)||e.getAttribute("type")!==(s.type==null?null:s.type)||e.getAttribute("crossorigin")!==(s.crossOrigin==null?null:s.crossOrigin))&&r&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else if(t==="input"&&e.type==="hidden"){Fe(s.name,"name");var r=s.name==null?null:""+s.name;if(s.type==="hidden"&&e.getAttribute("name")===r)return e}else return e;if(e=Cn(e.nextSibling),e===null)break}return null}function EO(e,t,n){if(t==="")return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!n||(e=Cn(e.nextSibling),e===null))return null;return e}function BS(e,t){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!t||(e=Cn(e.nextSibling),e===null))return null;return e}function kp(e){return e.data===hi||e.data===us}function qp(e){return e.data===xr||e.data===hi&&e.ownerDocument.readyState!==xE}function AO(e,t){var n=e.ownerDocument;if(e.data===us)e._reactRetry=t;else if(e.data!==hi||n.readyState!==xE)t();else{var a=function(){t(),n.removeEventListener("DOMContentLoaded",a)};n.addEventListener("DOMContentLoaded",a),e._reactRetry=a}}function Cn(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===yu||t===xr||t===hi||t===us||t===ls||t===vy||t===RE)break;if(t===gu||t===nd)return null}}return e}function LS(e){if(e.nodeType===1){for(var t=e.nodeName.toLowerCase(),n={},a=e.attributes,s=0;s<a.length;s++){var r=a[s];n[RS(r.name)]=r.name.toLowerCase()==="style"?Vp(e):r.value}return{type:t,props:n}}return e.nodeType===8?e.data===ls?{type:"Activity",props:{}}:{type:"Suspense",props:{}}:e.nodeValue}function HS(e,t,n){return n===null||n[SM]!==!0?(e.nodeValue===t?e=null:(t=Go(t),e=Go(e.nodeValue)===t?null:e.nodeValue),e):null}function Yp(e){e=e.nextSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===gu||n===nd){if(t===0)return Cn(e.nextSibling);t--}else n!==yu&&n!==xr&&n!==hi&&n!==us&&n!==ls||t++}e=e.nextSibling}return null}function kS(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===yu||n===xr||n===hi||n===us||n===ls){if(t===0)return e;t--}else n!==gu&&n!==nd||t++}e=e.previousSibling}return null}function DO(e){Xs(e)}function RO(e){Xs(e)}function xO(e){Xs(e)}function qS(e,t,n,a,s){switch(s&&Id(e,a.ancestorInfo),t=Zc(n),e){case"html":if(e=t.documentElement,!e)throw Error("React expected an <html> element (document.documentElement) to exist in the Document but one was not found. React never removes the documentElement for any Document it renders into so the cause is likely in some other script running on this page.");return e;case"head":if(e=t.head,!e)throw Error("React expected a <head> element (document.head) to exist in the Document but one was not found. React never removes the head for any Document it renders into so the cause is likely in some other script running on this page.");return e;case"body":if(e=t.body,!e)throw Error("React expected a <body> element (document.body) to exist in the Document but one was not found. React never removes the body for any Document it renders into so the cause is likely in some other script running on this page.");return e;default:throw Error("resolveSingletonInstance was called with an element type that is not supported. This is a bug in React.")}}function wO(e,t,n,a){if(!n[Zo]&&J(n)){var s=n.tagName.toLowerCase();console.error("You are mounting a new %s component when a previous one has not first unmounted. It is an error to render more than one %s component at a time and attributes and children of these components will likely fail in unpredictable ways. Please only render a single instance of <%s> and if you need to mount a new one, ensure any previous ones have unmounted first.",s,s,s)}switch(e){case"html":case"head":case"body":break;default:console.error("acquireSingletonInstance was called with an element type that is not supported. This is a bug in React.")}for(s=n.attributes;s.length;)n.removeAttributeNode(s[0]);Gt(n,e,t),n[Pt]=a,n[on]=t}function Dl(e){for(var t=e.attributes;t.length;)e.removeAttributeNode(t[0]);U(e)}function Fc(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}function YS(e,t,n){var a=Or;if(a&&typeof t=="string"&&t){var s=Hn(t);s='link[rel="'+e+'"][href="'+s+'"]',typeof n=="string"&&(s+='[crossorigin="'+n+'"]'),NE.has(s)||(NE.add(s),e={rel:e,crossOrigin:n,href:t},a.querySelector(s)===null&&(t=a.createElement("link"),Gt(t,"link",e),pe(t),a.head.appendChild(t)))}}function GS(e,t,n,a){var s=(s=$o.current)?Fc(s):null;if(!s)throw Error('"resourceRoot" was expected to exist. This is a bug in React.');switch(e){case"meta":case"title":return null;case"style":return typeof n.precedence=="string"&&typeof n.href=="string"?(n=Gs(n.href),t=Oe(s).hoistableStyles,a=t.get(n),a||(a={type:"style",instance:null,count:0,state:null},t.set(n,a)),a):{type:"void",instance:null,count:0,state:null};case"link":if(n.rel==="stylesheet"&&typeof n.href=="string"&&typeof n.precedence=="string"){e=Gs(n.href);var r=Oe(s).hoistableStyles,c=r.get(e);if(!c&&(s=s.ownerDocument||s,c={type:"stylesheet",instance:null,count:0,state:{loading:fs,preload:null}},r.set(e,c),(r=s.querySelector(Rl(e)))&&!r._p&&(c.instance=r,c.state.loading=bu|In),!Wn.has(e))){var d={rel:"preload",as:"style",href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy};Wn.set(e,d),r||OO(s,e,d,c.state)}if(t&&a===null)throw n=`
182
+
183
+ - `+Jc(t)+`
184
+ + `+Jc(n),Error("Expected <link> not to update to be updated to a stylesheet with precedence. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key."+n);return c}if(t&&a!==null)throw n=`
185
+
186
+ - `+Jc(t)+`
187
+ + `+Jc(n),Error("Expected stylesheet with precedence to not be updated to a different kind of <link>. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key."+n);return null;case"script":return t=n.async,n=n.src,typeof n=="string"&&t&&typeof t!="function"&&typeof t!="symbol"?(n=Ps(n),t=Oe(s).hoistableScripts,a=t.get(n),a||(a={type:"script",instance:null,count:0,state:null},t.set(n,a)),a):{type:"void",instance:null,count:0,state:null};default:throw Error('getResource encountered a type it did not expect: "'+e+'". this is a bug in React.')}}function Jc(e){var t=0,n="<link";return typeof e.rel=="string"?(t++,n+=' rel="'+e.rel+'"'):ua.call(e,"rel")&&(t++,n+=' rel="'+(e.rel===null?"null":"invalid type "+typeof e.rel)+'"'),typeof e.href=="string"?(t++,n+=' href="'+e.href+'"'):ua.call(e,"href")&&(t++,n+=' href="'+(e.href===null?"null":"invalid type "+typeof e.href)+'"'),typeof e.precedence=="string"?(t++,n+=' precedence="'+e.precedence+'"'):ua.call(e,"precedence")&&(t++,n+=" precedence={"+(e.precedence===null?"null":"invalid type "+typeof e.precedence)+"}"),Object.getOwnPropertyNames(e).length>t&&(n+=" ..."),n+" />"}function Gs(e){return'href="'+Hn(e)+'"'}function Rl(e){return'link[rel="stylesheet"]['+e+"]"}function PS(e){return je({},e,{"data-precedence":e.precedence,precedence:null})}function OO(e,t,n,a){e.querySelector('link[rel="preload"][as="style"]['+t+"]")?a.loading=bu:(t=e.createElement("link"),a.preload=t,t.addEventListener("load",function(){return a.loading|=bu}),t.addEventListener("error",function(){return a.loading|=ME}),Gt(t,"link",n),pe(t),e.head.appendChild(t))}function Ps(e){return'[src="'+Hn(e)+'"]'}function xl(e){return"script[async]"+e}function XS(e,t,n){if(t.count++,t.instance===null)switch(t.type){case"style":var a=e.querySelector('style[data-href~="'+Hn(n.href)+'"]');if(a)return t.instance=a,pe(a),a;var s=je({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return a=(e.ownerDocument||e).createElement("style"),pe(a),Gt(a,"style",s),Kc(a,n.precedence,e),t.instance=a;case"stylesheet":s=Gs(n.href);var r=e.querySelector(Rl(s));if(r)return t.state.loading|=In,t.instance=r,pe(r),r;a=PS(n),(s=Wn.get(s))&&Gp(a,s),r=(e.ownerDocument||e).createElement("link"),pe(r);var c=r;return c._p=new Promise(function(d,y){c.onload=d,c.onerror=y}),Gt(r,"link",a),t.state.loading|=In,Kc(r,n.precedence,e),t.instance=r;case"script":return r=Ps(n.src),(s=e.querySelector(xl(r)))?(t.instance=s,pe(s),s):(a=n,(s=Wn.get(r))&&(a=je({},n),Pp(a,s)),e=e.ownerDocument||e,s=e.createElement("script"),pe(s),Gt(s,"link",a),e.head.appendChild(s),t.instance=s);case"void":return null;default:throw Error('acquireResource encountered a resource type it did not expect: "'+t.type+'". this is a bug in React.')}else t.type==="stylesheet"&&(t.state.loading&In)===fs&&(a=t.instance,t.state.loading|=In,Kc(a,n.precedence,e));return t.instance}function Kc(e,t,n){for(var a=n.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),s=a.length?a[a.length-1]:null,r=s,c=0;c<a.length;c++){var d=a[c];if(d.dataset.precedence===t)r=d;else if(r!==s)break}r?r.parentNode.insertBefore(e,r.nextSibling):(t=n.nodeType===9?n.head:n,t.insertBefore(e,t.firstChild))}function Gp(e,t){e.crossOrigin==null&&(e.crossOrigin=t.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=t.referrerPolicy),e.title==null&&(e.title=t.title)}function Pp(e,t){e.crossOrigin==null&&(e.crossOrigin=t.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=t.referrerPolicy),e.integrity==null&&(e.integrity=t.integrity)}function $S(e,t,n){if(od===null){var a=new Map,s=od=new Map;s.set(n,a)}else s=od,a=s.get(n),a||(a=new Map,s.set(n,a));if(a.has(e))return a;for(a.set(e,null),n=n.getElementsByTagName(e),s=0;s<n.length;s++){var r=n[s];if(!(r[_l]||r[Pt]||e==="link"&&r.getAttribute("rel")==="stylesheet")&&r.namespaceURI!==Ks){var c=r.getAttribute(t)||"";c=e+c;var d=a.get(c);d?d.push(r):a.set(c,[r])}}return a}function QS(e,t,n){e=e.ownerDocument||e,e.head.insertBefore(n,t==="title"?e.querySelector("head > title"):null)}function CO(e,t,n){var a=!n.ancestorInfo.containerTagInScope;if(n.context===wr||t.itemProp!=null)return!a||t.itemProp==null||e!=="meta"&&e!=="title"&&e!=="style"&&e!=="link"&&e!=="script"||console.error("Cannot render a <%s> outside the main document if it has an `itemProp` prop. `itemProp` suggests the tag belongs to an `itemScope` which can appear anywhere in the DOM. If you were intending for React to hoist this <%s> remove the `itemProp` prop. Otherwise, try moving this tag into the <head> or <body> of the Document.",e,e),!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof t.precedence!="string"||typeof t.href!="string"||t.href===""){a&&console.error('Cannot render a <style> outside the main document without knowing its precedence and a unique href key. React can hoist and deduplicate <style> tags if you provide a `precedence` prop along with an `href` prop that does not conflict with the `href` values used in any other hoisted <style> or <link rel="stylesheet" ...> tags. Note that hoisting <style> tags is considered an advanced feature that most will not use directly. Consider moving the <style> tag to the <head> or consider adding a `precedence="default"` and `href="some unique resource identifier"`.');break}return!0;case"link":if(typeof t.rel!="string"||typeof t.href!="string"||t.href===""||t.onLoad||t.onError){if(t.rel==="stylesheet"&&typeof t.precedence=="string"){e=t.href;var s=t.onError,r=t.disabled;n=[],t.onLoad&&n.push("`onLoad`"),s&&n.push("`onError`"),r!=null&&n.push("`disabled`"),s=iO(n,"and"),s+=n.length===1?" prop":" props",r=n.length===1?"an "+s:"the "+s,n.length&&console.error('React encountered a <link rel="stylesheet" href="%s" ... /> with a `precedence` prop that also included %s. The presence of loading and error handlers indicates an intent to manage the stylesheet loading state from your from your Component code and React will not hoist or deduplicate this stylesheet. If your intent was to have React hoist and deduplciate this stylesheet using the `precedence` prop remove the %s, otherwise remove the `precedence` prop.',e,r,s)}a&&(typeof t.rel!="string"||typeof t.href!="string"||t.href===""?console.error("Cannot render a <link> outside the main document without a `rel` and `href` prop. Try adding a `rel` and/or `href` prop to this <link> or moving the link into the <head> tag"):(t.onError||t.onLoad)&&console.error("Cannot render a <link> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>."));break}return t.rel==="stylesheet"?(e=t.precedence,t=t.disabled,typeof e!="string"&&a&&console.error('Cannot render a <link rel="stylesheet" /> outside the main document without knowing its precedence. Consider adding precedence="default" or moving it into the root <head> tag.'),typeof e=="string"&&t==null):!0;case"script":if(e=t.async&&typeof t.async!="function"&&typeof t.async!="symbol",!e||t.onLoad||t.onError||!t.src||typeof t.src!="string"){a&&(e?t.onLoad||t.onError?console.error("Cannot render a <script> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>."):console.error("Cannot render a <script> outside the main document without `async={true}` and a non-empty `src` prop. Ensure there is a valid `src` and either make the script async or move it into the root <head> tag or somewhere in the <body>."):console.error('Cannot render a sync or defer <script> outside the main document without knowing its order. Try adding async="" or moving it into the root <head> tag.'));break}return!0;case"noscript":case"template":a&&console.error("Cannot render <%s> outside the main document. Try moving it into the root <head> tag.",e)}return!1}function ZS(e){return!(e.type==="stylesheet"&&(e.state.loading&_E)===fs)}function MO(e,t,n,a){if(n.type==="stylesheet"&&(typeof a.media!="string"||matchMedia(a.media).matches!==!1)&&(n.state.loading&In)===fs){if(n.instance===null){var s=Gs(a.href),r=t.querySelector(Rl(s));if(r){t=r._p,t!==null&&typeof t=="object"&&typeof t.then=="function"&&(e.count++,e=Ic.bind(e),t.then(e,e)),n.state.loading|=In,n.instance=r,pe(r);return}r=t.ownerDocument||t,a=PS(a),(s=Wn.get(s))&&Gp(a,s),r=r.createElement("link"),pe(r);var c=r;c._p=new Promise(function(d,y){c.onload=d,c.onerror=y}),Gt(r,"link",a),n.instance=r}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&(n.state.loading&_E)===fs&&(e.count++,n=Ic.bind(e),t.addEventListener("load",n),t.addEventListener("error",n))}}function _O(e,t){return e.stylesheets&&e.count===0&&Wc(e,e.stylesheets),0<e.count||0<e.imgCount?function(n){var a=setTimeout(function(){if(e.stylesheets&&Wc(e,e.stylesheets),e.unsuspend){var r=e.unsuspend;e.unsuspend=null,r()}},wM+t);0<e.imgBytes&&Ay===0&&(Ay=125*sO()*CM);var s=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Wc(e,e.stylesheets),e.unsuspend)){var r=e.unsuspend;e.unsuspend=null,r()}},(e.imgBytes>Ay?50:OM)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(a),clearTimeout(s)}}:null}function Ic(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Wc(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}function Wc(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,id=new Map,t.forEach(NO,e),id=null,Ic.call(e))}function NO(e,t){if(!(t.state.loading&In)){var n=id.get(e);if(n)var a=n.get(Dy);else{n=new Map,id.set(e,n);for(var s=e.querySelectorAll("link[data-precedence],style[data-precedence]"),r=0;r<s.length;r++){var c=s[r];(c.nodeName==="LINK"||c.getAttribute("media")!=="not all")&&(n.set(c.dataset.precedence,c),a=c)}a&&n.set(Dy,a)}s=t.instance,c=s.getAttribute("data-precedence"),r=n.get(c)||a,r===a&&n.set(Dy,s),n.set(c,s),this.count++,a=Ic.bind(this),s.addEventListener("load",a),s.addEventListener("error",a),r?r.parentNode.insertBefore(s,r.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(s,e.firstChild)),t.state.loading|=In}}function UO(e,t,n,a,s,r,c,d,y){for(this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=cs,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Xr(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Xr(0),this.hiddenUpdates=Xr(null),this.identifierPrefix=a,this.onUncaughtError=s,this.onCaughtError=r,this.onRecoverableError=c,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=y,this.incompleteTransitions=new Map,this.passiveEffectDuration=this.effectDuration=-0,this.memoizedUpdaters=new Set,e=this.pendingUpdatersLaneMap=[],t=0;31>t;t++)e.push(new Set);this._debugRootType=n?"hydrateRoot()":"createRoot()"}function FS(e,t,n,a,s,r,c,d,y,g,_,N){return e=new UO(e,t,n,c,y,g,_,N,d),t=WC,r===!0&&(t|=Kt|ca),t|=_e,r=T(3,null,null,t),e.current=r,r.stateNode=e,t=vh(),ji(t),e.pooledCache=t,ji(t),r.memoizedState={element:a,isDehydrated:n,cache:t},Ah(r),e}function JS(e){return e?(e=Io,e):Io}function Xp(e,t,n,a,s,r){if(Jt&&typeof Jt.onScheduleFiberRoot=="function")try{Jt.onScheduleFiberRoot(Fs,a,n)}catch(c){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",c))}s=JS(s),a.context===null?a.context=s:a.pendingContext=s,Ha&&_n!==null&&!jE&&(jE=!0,console.error(`Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.
188
+
189
+ Check the render method of %s.`,F(_n)||"Unknown")),a=Bo(t),a.payload={element:n},r=r===void 0?null:r,r!==null&&(typeof r!="function"&&console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",r),a.callback=r),n=Lo(e,a,t),n!==null&&(Da(t,"root.render()",null),ht(n,e,t),sl(n,e,t))}function KS(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function $p(e,t){KS(e,t),(e=e.alternate)&&KS(e,t)}function IS(e){if(e.tag===13||e.tag===31){var t=Ft(e,67108864);t!==null&&ht(t,e,67108864),$p(e,67108864)}}function WS(e){if(e.tag===13||e.tag===31){var t=On(e);t=_o(t);var n=Ft(e,t);n!==null&&ht(n,e,t),$p(e,t)}}function zO(){return _n}function VO(e,t,n,a){var s=L.T;L.T=null;var r=Qe.p;try{Qe.p=qn,Qp(e,t,n,a)}finally{Qe.p=r,L.T=s}}function jO(e,t,n,a){var s=L.T;L.T=null;var r=Qe.p;try{Qe.p=Ya,Qp(e,t,n,a)}finally{Qe.p=r,L.T=s}}function Qp(e,t,n,a){if(rd){var s=Zp(a);if(s===null)Np(e,t,a,ld,n),t1(e,a);else if(BO(s,e,t,n,a))a.stopPropagation();else if(t1(e,a),t&4&&-1<_M.indexOf(e)){for(;s!==null;){var r=J(s);if(r!==null)switch(r.tag){case 3:if(r=r.stateNode,r.current.memoizedState.isDehydrated){var c=ba(r.pendingLanes);if(c!==0){var d=r;for(d.pendingLanes|=2,d.entangledLanes|=2;c;){var y=1<<31-an(c);d.entanglements[1]|=y,c&=~y}Va(r),(Pe&(Ut|Vn))===kt&&(Pf=Bt()+cE,Sl(0))}}break;case 31:case 13:d=Ft(r,2),d!==null&&ht(d,r,2),ks(),$p(r,2)}if(r=Zp(a),r===null&&Np(e,t,a,ld,n),r===s)break;s=r}s!==null&&a.stopPropagation()}else Np(e,t,a,null,n)}}function Zp(e){return e=Wd(e),Fp(e)}function Fp(e){if(ld=null,e=X(e),e!==null){var t=k(e);if(t===null)e=null;else{var n=t.tag;if(n===13){if(e=$(t),e!==null)return e;e=null}else if(n===31){if(e=Y(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 ld=e,null}function e1(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 qn;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 Ya;case"message":switch(QO()){case um:return qn;case cm:return Ya;case Zs:case ZO:return ro;case fm:return cf;default:return ro}default:return ro}}function t1(e,t){switch(e){case"focusin":case"focusout":pi=null;break;case"dragenter":case"dragleave":mi=null;break;case"mouseover":case"mouseout":yi=null;break;case"pointerover":case"pointerout":Tu.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Eu.delete(t.pointerId)}}function wl(e,t,n,a,s,r){return e===null||e.nativeEvent!==r?(e={blockedOn:t,domEventName:n,eventSystemFlags:a,nativeEvent:r,targetContainers:[s]},t!==null&&(t=J(t),t!==null&&IS(t)),e):(e.eventSystemFlags|=a,t=e.targetContainers,s!==null&&t.indexOf(s)===-1&&t.push(s),e)}function BO(e,t,n,a,s){switch(t){case"focusin":return pi=wl(pi,e,t,n,a,s),!0;case"dragenter":return mi=wl(mi,e,t,n,a,s),!0;case"mouseover":return yi=wl(yi,e,t,n,a,s),!0;case"pointerover":var r=s.pointerId;return Tu.set(r,wl(Tu.get(r)||null,e,t,n,a,s)),!0;case"gotpointercapture":return r=s.pointerId,Eu.set(r,wl(Eu.get(r)||null,e,t,n,a,s)),!0}return!1}function n1(e){var t=X(e.target);if(t!==null){var n=k(t);if(n!==null){if(t=n.tag,t===13){if(t=$(n),t!==null){e.blockedOn=t,S(e.priority,function(){WS(n)});return}}else if(t===31){if(t=Y(n),t!==null){e.blockedOn=t,S(e.priority,function(){WS(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 ef(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=Zp(e.nativeEvent);if(n===null){n=e.nativeEvent;var a=new n.constructor(n.type,n),s=a;Nl!==null&&console.error("Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue."),Nl=s,n.target.dispatchEvent(a),Nl===null&&console.error("Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue."),Nl=null}else return t=J(n),t!==null&&IS(t),e.blockedOn=n,!1;t.shift()}return!0}function a1(e,t,n){ef(e)&&n.delete(t)}function LO(){Ry=!1,pi!==null&&ef(pi)&&(pi=null),mi!==null&&ef(mi)&&(mi=null),yi!==null&&ef(yi)&&(yi=null),Tu.forEach(a1),Eu.forEach(a1)}function tf(e,t){e.blockedOn===t&&(e.blockedOn=null,Ry||(Ry=!0,Et.unstable_scheduleCallback(Et.unstable_NormalPriority,LO)))}function o1(e){ud!==e&&(ud=e,Et.unstable_scheduleCallback(Et.unstable_NormalPriority,function(){ud===e&&(ud=null);for(var t=0;t<e.length;t+=3){var n=e[t],a=e[t+1],s=e[t+2];if(typeof a!="function"){if(Fp(a||n)===null)continue;break}var r=J(n);r!==null&&(e.splice(t,3),t-=3,n={pending:!0,data:s,method:n.method,action:a},Object.freeze(n),Fh(r,n,a,s))}}))}function Xs(e){function t(y){return tf(y,e)}pi!==null&&tf(pi,e),mi!==null&&tf(mi,e),yi!==null&&tf(yi,e),Tu.forEach(t),Eu.forEach(t);for(var n=0;n<gi.length;n++){var a=gi[n];a.blockedOn===e&&(a.blockedOn=null)}for(;0<gi.length&&(n=gi[0],n.blockedOn===null);)n1(n),n.blockedOn===null&&gi.shift();if(n=(e.ownerDocument||e).$$reactFormReplay,n!=null)for(a=0;a<n.length;a+=3){var s=n[a],r=n[a+1],c=s[on]||null;if(typeof r=="function")c||o1(n);else if(c){var d=null;if(r&&r.hasAttribute("formAction")){if(s=r,c=r[on]||null)d=c.formAction;else if(Fp(s)!==null)continue}else d=c.action;typeof d=="function"?n[a+1]=d:(n.splice(a,3),a-=3),o1(n)}}}function i1(){function e(r){r.canIntercept&&r.info==="react-transition"&&r.intercept({handler:function(){return new Promise(function(c){return s=c})},focusReset:"manual",scroll:"manual"})}function t(){s!==null&&(s(),s=null),a||setTimeout(n,20)}function n(){if(!a&&!navigation.transition){var r=navigation.currentEntry;r&&r.url!=null&&navigation.navigate(r.url,{state:r.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var a=!1,s=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",t),navigation.addEventListener("navigateerror",t),setTimeout(n,100),function(){a=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",t),navigation.removeEventListener("navigateerror",t),s!==null&&(s(),s=null)}}}function Jp(e){this._internalRoot=e}function nf(e){this._internalRoot=e}function s1(e){e[Zo]&&(e._reactRootContainer?console.error("You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported."):console.error("You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it."))}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var Et=LM(),Kp=Bu(),HO=kM(),je=Object.assign,kO=Symbol.for("react.element"),Ba=Symbol.for("react.transitional.element"),$s=Symbol.for("react.portal"),Qs=Symbol.for("react.fragment"),af=Symbol.for("react.strict_mode"),Ip=Symbol.for("react.profiler"),Wp=Symbol.for("react.consumer"),La=Symbol.for("react.context"),Ol=Symbol.for("react.forward_ref"),em=Symbol.for("react.suspense"),tm=Symbol.for("react.suspense_list"),of=Symbol.for("react.memo"),Mn=Symbol.for("react.lazy"),nm=Symbol.for("react.activity"),qO=Symbol.for("react.memo_cache_sentinel"),r1=Symbol.iterator,YO=Symbol.for("react.client.reference"),_t=Array.isArray,L=Kp.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Qe=HO.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,GO=Object.freeze({pending:!1,data:null,method:null,action:null}),am=[],om=[],so=-1,Xo=Xe(null),Cl=Xe(null),$o=Xe(null),sf=Xe(null),Ml=0,l1,u1,c1,f1,d1,h1,p1;Be.__reactDisabledLog=!0;var im,m1,sm=!1,rm=new(typeof WeakMap=="function"?WeakMap:Map),_n=null,Ha=!1,ua=Object.prototype.hasOwnProperty,lm=Et.unstable_scheduleCallback,PO=Et.unstable_cancelCallback,XO=Et.unstable_shouldYield,$O=Et.unstable_requestPaint,Bt=Et.unstable_now,QO=Et.unstable_getCurrentPriorityLevel,um=Et.unstable_ImmediatePriority,cm=Et.unstable_UserBlockingPriority,Zs=Et.unstable_NormalPriority,ZO=Et.unstable_LowPriority,fm=Et.unstable_IdlePriority,FO=Et.log,JO=Et.unstable_setDisableYieldValue,Fs=null,Jt=null,ka=!1,qa=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u",an=Math.clz32?Math.clz32:Ds,KO=Math.log,IO=Math.LN2,rf=256,lf=262144,uf=4194304,qn=2,Ya=8,ro=32,cf=268435456,Qo=Math.random().toString(36).slice(2),Pt="__reactFiber$"+Qo,on="__reactProps$"+Qo,Zo="__reactContainer$"+Qo,dm="__reactEvents$"+Qo,WO="__reactListeners$"+Qo,eC="__reactHandles$"+Qo,y1="__reactResources$"+Qo,_l="__reactMarker$"+Qo,g1=new Set,Gi={},hm={},tC={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0},nC=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]*$"),v1={},b1={},aC=/[\n"\\]/g,S1=!1,T1=!1,E1=!1,A1=!1,D1=!1,R1=!1,x1=["value","defaultValue"],w1=!1,O1=/["'&<>\n\t]|^\s|\s$/,oC="address applet area article aside base basefont bgsound blockquote body br button caption center col colgroup dd details dir div dl dt embed fieldset figcaption figure footer form frame frameset h1 h2 h3 h4 h5 h6 head header hgroup hr html iframe img input isindex li link listing main marquee menu menuitem meta nav noembed noframes noscript object ol p param plaintext pre script section select source style summary table tbody td template textarea tfoot th thead title tr track ul wbr xmp".split(" "),C1="applet caption html table td th marquee object template foreignObject desc title".split(" "),iC=C1.concat(["button"]),sC="dd dt li option optgroup p rp rt".split(" "),M1={current:null,formTag:null,aTagInScope:null,buttonTagInScope:null,nobrTagInScope:null,pTagInButtonScope:null,listItemTagAutoclosing:null,dlItemTagAutoclosing:null,containerTagInScope:null,implicitRootScope:!1},ff={},pm={animation:"animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationPlayState animationTimingFunction".split(" "),background:"backgroundAttachment backgroundClip backgroundColor backgroundImage backgroundOrigin backgroundPositionX backgroundPositionY backgroundRepeat backgroundSize".split(" "),backgroundPosition:["backgroundPositionX","backgroundPositionY"],border:"borderBottomColor borderBottomStyle borderBottomWidth borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeftColor borderLeftStyle borderLeftWidth borderRightColor borderRightStyle borderRightWidth borderTopColor borderTopStyle borderTopWidth".split(" "),borderBlockEnd:["borderBlockEndColor","borderBlockEndStyle","borderBlockEndWidth"],borderBlockStart:["borderBlockStartColor","borderBlockStartStyle","borderBlockStartWidth"],borderBottom:["borderBottomColor","borderBottomStyle","borderBottomWidth"],borderColor:["borderBottomColor","borderLeftColor","borderRightColor","borderTopColor"],borderImage:["borderImageOutset","borderImageRepeat","borderImageSlice","borderImageSource","borderImageWidth"],borderInlineEnd:["borderInlineEndColor","borderInlineEndStyle","borderInlineEndWidth"],borderInlineStart:["borderInlineStartColor","borderInlineStartStyle","borderInlineStartWidth"],borderLeft:["borderLeftColor","borderLeftStyle","borderLeftWidth"],borderRadius:["borderBottomLeftRadius","borderBottomRightRadius","borderTopLeftRadius","borderTopRightRadius"],borderRight:["borderRightColor","borderRightStyle","borderRightWidth"],borderStyle:["borderBottomStyle","borderLeftStyle","borderRightStyle","borderTopStyle"],borderTop:["borderTopColor","borderTopStyle","borderTopWidth"],borderWidth:["borderBottomWidth","borderLeftWidth","borderRightWidth","borderTopWidth"],columnRule:["columnRuleColor","columnRuleStyle","columnRuleWidth"],columns:["columnCount","columnWidth"],flex:["flexBasis","flexGrow","flexShrink"],flexFlow:["flexDirection","flexWrap"],font:"fontFamily fontFeatureSettings fontKerning fontLanguageOverride fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition fontWeight lineHeight".split(" "),fontVariant:"fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition".split(" "),gap:["columnGap","rowGap"],grid:"gridAutoColumns gridAutoFlow gridAutoRows gridTemplateAreas gridTemplateColumns gridTemplateRows".split(" "),gridArea:["gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart"],gridColumn:["gridColumnEnd","gridColumnStart"],gridColumnGap:["columnGap"],gridGap:["columnGap","rowGap"],gridRow:["gridRowEnd","gridRowStart"],gridRowGap:["rowGap"],gridTemplate:["gridTemplateAreas","gridTemplateColumns","gridTemplateRows"],listStyle:["listStyleImage","listStylePosition","listStyleType"],margin:["marginBottom","marginLeft","marginRight","marginTop"],marker:["markerEnd","markerMid","markerStart"],mask:"maskClip maskComposite maskImage maskMode maskOrigin maskPositionX maskPositionY maskRepeat maskSize".split(" "),maskPosition:["maskPositionX","maskPositionY"],outline:["outlineColor","outlineStyle","outlineWidth"],overflow:["overflowX","overflowY"],padding:["paddingBottom","paddingLeft","paddingRight","paddingTop"],placeContent:["alignContent","justifyContent"],placeItems:["alignItems","justifyItems"],placeSelf:["alignSelf","justifySelf"],textDecoration:["textDecorationColor","textDecorationLine","textDecorationStyle"],textEmphasis:["textEmphasisColor","textEmphasisStyle"],transition:["transitionDelay","transitionDuration","transitionProperty","transitionTimingFunction"],wordWrap:["overflowWrap"]},_1=/([A-Z])/g,N1=/^ms-/,rC=/^(?:webkit|moz|o)[A-Z]/,lC=/^-ms-/,uC=/-(.)/g,U1=/;\s*$/,Js={},mm={},z1=!1,V1=!1,j1=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(" ")),df="http://www.w3.org/1998/Math/MathML",Ks="http://www.w3.org/2000/svg",cC=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"]]),hf={accept:"accept",acceptcharset:"acceptCharset","accept-charset":"acceptCharset",accesskey:"accessKey",action:"action",allowfullscreen:"allowFullScreen",alt:"alt",as:"as",async:"async",autocapitalize:"autoCapitalize",autocomplete:"autoComplete",autocorrect:"autoCorrect",autofocus:"autoFocus",autoplay:"autoPlay",autosave:"autoSave",capture:"capture",cellpadding:"cellPadding",cellspacing:"cellSpacing",challenge:"challenge",charset:"charSet",checked:"checked",children:"children",cite:"cite",class:"className",classid:"classID",classname:"className",cols:"cols",colspan:"colSpan",content:"content",contenteditable:"contentEditable",contextmenu:"contextMenu",controls:"controls",controlslist:"controlsList",coords:"coords",crossorigin:"crossOrigin",dangerouslysetinnerhtml:"dangerouslySetInnerHTML",data:"data",datetime:"dateTime",default:"default",defaultchecked:"defaultChecked",defaultvalue:"defaultValue",defer:"defer",dir:"dir",disabled:"disabled",disablepictureinpicture:"disablePictureInPicture",disableremoteplayback:"disableRemotePlayback",download:"download",draggable:"draggable",enctype:"encType",enterkeyhint:"enterKeyHint",fetchpriority:"fetchPriority",for:"htmlFor",form:"form",formmethod:"formMethod",formaction:"formAction",formenctype:"formEncType",formnovalidate:"formNoValidate",formtarget:"formTarget",frameborder:"frameBorder",headers:"headers",height:"height",hidden:"hidden",high:"high",href:"href",hreflang:"hrefLang",htmlfor:"htmlFor",httpequiv:"httpEquiv","http-equiv":"httpEquiv",icon:"icon",id:"id",imagesizes:"imageSizes",imagesrcset:"imageSrcSet",inert:"inert",innerhtml:"innerHTML",inputmode:"inputMode",integrity:"integrity",is:"is",itemid:"itemID",itemprop:"itemProp",itemref:"itemRef",itemscope:"itemScope",itemtype:"itemType",keyparams:"keyParams",keytype:"keyType",kind:"kind",label:"label",lang:"lang",list:"list",loop:"loop",low:"low",manifest:"manifest",marginwidth:"marginWidth",marginheight:"marginHeight",max:"max",maxlength:"maxLength",media:"media",mediagroup:"mediaGroup",method:"method",min:"min",minlength:"minLength",multiple:"multiple",muted:"muted",name:"name",nomodule:"noModule",nonce:"nonce",novalidate:"noValidate",open:"open",optimum:"optimum",pattern:"pattern",placeholder:"placeholder",playsinline:"playsInline",poster:"poster",preload:"preload",profile:"profile",radiogroup:"radioGroup",readonly:"readOnly",referrerpolicy:"referrerPolicy",rel:"rel",required:"required",reversed:"reversed",role:"role",rows:"rows",rowspan:"rowSpan",sandbox:"sandbox",scope:"scope",scoped:"scoped",scrolling:"scrolling",seamless:"seamless",selected:"selected",shape:"shape",size:"size",sizes:"sizes",span:"span",spellcheck:"spellCheck",src:"src",srcdoc:"srcDoc",srclang:"srcLang",srcset:"srcSet",start:"start",step:"step",style:"style",summary:"summary",tabindex:"tabIndex",target:"target",title:"title",type:"type",usemap:"useMap",value:"value",width:"width",wmode:"wmode",wrap:"wrap",about:"about",accentheight:"accentHeight","accent-height":"accentHeight",accumulate:"accumulate",additive:"additive",alignmentbaseline:"alignmentBaseline","alignment-baseline":"alignmentBaseline",allowreorder:"allowReorder",alphabetic:"alphabetic",amplitude:"amplitude",arabicform:"arabicForm","arabic-form":"arabicForm",ascent:"ascent",attributename:"attributeName",attributetype:"attributeType",autoreverse:"autoReverse",azimuth:"azimuth",basefrequency:"baseFrequency",baselineshift:"baselineShift","baseline-shift":"baselineShift",baseprofile:"baseProfile",bbox:"bbox",begin:"begin",bias:"bias",by:"by",calcmode:"calcMode",capheight:"capHeight","cap-height":"capHeight",clip:"clip",clippath:"clipPath","clip-path":"clipPath",clippathunits:"clipPathUnits",cliprule:"clipRule","clip-rule":"clipRule",color:"color",colorinterpolation:"colorInterpolation","color-interpolation":"colorInterpolation",colorinterpolationfilters:"colorInterpolationFilters","color-interpolation-filters":"colorInterpolationFilters",colorprofile:"colorProfile","color-profile":"colorProfile",colorrendering:"colorRendering","color-rendering":"colorRendering",contentscripttype:"contentScriptType",contentstyletype:"contentStyleType",cursor:"cursor",cx:"cx",cy:"cy",d:"d",datatype:"datatype",decelerate:"decelerate",descent:"descent",diffuseconstant:"diffuseConstant",direction:"direction",display:"display",divisor:"divisor",dominantbaseline:"dominantBaseline","dominant-baseline":"dominantBaseline",dur:"dur",dx:"dx",dy:"dy",edgemode:"edgeMode",elevation:"elevation",enablebackground:"enableBackground","enable-background":"enableBackground",end:"end",exponent:"exponent",externalresourcesrequired:"externalResourcesRequired",fill:"fill",fillopacity:"fillOpacity","fill-opacity":"fillOpacity",fillrule:"fillRule","fill-rule":"fillRule",filter:"filter",filterres:"filterRes",filterunits:"filterUnits",floodopacity:"floodOpacity","flood-opacity":"floodOpacity",floodcolor:"floodColor","flood-color":"floodColor",focusable:"focusable",fontfamily:"fontFamily","font-family":"fontFamily",fontsize:"fontSize","font-size":"fontSize",fontsizeadjust:"fontSizeAdjust","font-size-adjust":"fontSizeAdjust",fontstretch:"fontStretch","font-stretch":"fontStretch",fontstyle:"fontStyle","font-style":"fontStyle",fontvariant:"fontVariant","font-variant":"fontVariant",fontweight:"fontWeight","font-weight":"fontWeight",format:"format",from:"from",fx:"fx",fy:"fy",g1:"g1",g2:"g2",glyphname:"glyphName","glyph-name":"glyphName",glyphorientationhorizontal:"glyphOrientationHorizontal","glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphorientationvertical:"glyphOrientationVertical","glyph-orientation-vertical":"glyphOrientationVertical",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits",hanging:"hanging",horizadvx:"horizAdvX","horiz-adv-x":"horizAdvX",horizoriginx:"horizOriginX","horiz-origin-x":"horizOriginX",ideographic:"ideographic",imagerendering:"imageRendering","image-rendering":"imageRendering",in2:"in2",in:"in",inlist:"inlist",intercept:"intercept",k1:"k1",k2:"k2",k3:"k3",k4:"k4",k:"k",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",kerning:"kerning",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",lengthadjust:"lengthAdjust",letterspacing:"letterSpacing","letter-spacing":"letterSpacing",lightingcolor:"lightingColor","lighting-color":"lightingColor",limitingconeangle:"limitingConeAngle",local:"local",markerend:"markerEnd","marker-end":"markerEnd",markerheight:"markerHeight",markermid:"markerMid","marker-mid":"markerMid",markerstart:"markerStart","marker-start":"markerStart",markerunits:"markerUnits",markerwidth:"markerWidth",mask:"mask",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",mathematical:"mathematical",mode:"mode",numoctaves:"numOctaves",offset:"offset",opacity:"opacity",operator:"operator",order:"order",orient:"orient",orientation:"orientation",origin:"origin",overflow:"overflow",overlineposition:"overlinePosition","overline-position":"overlinePosition",overlinethickness:"overlineThickness","overline-thickness":"overlineThickness",paintorder:"paintOrder","paint-order":"paintOrder",panose1:"panose1","panose-1":"panose1",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",pointerevents:"pointerEvents","pointer-events":"pointerEvents",points:"points",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",popover:"popover",popovertarget:"popoverTarget",popovertargetaction:"popoverTargetAction",prefix:"prefix",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",property:"property",r:"r",radius:"radius",refx:"refX",refy:"refY",renderingintent:"renderingIntent","rendering-intent":"renderingIntent",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",resource:"resource",restart:"restart",result:"result",results:"results",rotate:"rotate",rx:"rx",ry:"ry",scale:"scale",security:"security",seed:"seed",shaperendering:"shapeRendering","shape-rendering":"shapeRendering",slope:"slope",spacing:"spacing",specularconstant:"specularConstant",specularexponent:"specularExponent",speed:"speed",spreadmethod:"spreadMethod",startoffset:"startOffset",stddeviation:"stdDeviation",stemh:"stemh",stemv:"stemv",stitchtiles:"stitchTiles",stopcolor:"stopColor","stop-color":"stopColor",stopopacity:"stopOpacity","stop-opacity":"stopOpacity",strikethroughposition:"strikethroughPosition","strikethrough-position":"strikethroughPosition",strikethroughthickness:"strikethroughThickness","strikethrough-thickness":"strikethroughThickness",string:"string",stroke:"stroke",strokedasharray:"strokeDasharray","stroke-dasharray":"strokeDasharray",strokedashoffset:"strokeDashoffset","stroke-dashoffset":"strokeDashoffset",strokelinecap:"strokeLinecap","stroke-linecap":"strokeLinecap",strokelinejoin:"strokeLinejoin","stroke-linejoin":"strokeLinejoin",strokemiterlimit:"strokeMiterlimit","stroke-miterlimit":"strokeMiterlimit",strokewidth:"strokeWidth","stroke-width":"strokeWidth",strokeopacity:"strokeOpacity","stroke-opacity":"strokeOpacity",suppresscontenteditablewarning:"suppressContentEditableWarning",suppresshydrationwarning:"suppressHydrationWarning",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",textanchor:"textAnchor","text-anchor":"textAnchor",textdecoration:"textDecoration","text-decoration":"textDecoration",textlength:"textLength",textrendering:"textRendering","text-rendering":"textRendering",to:"to",transform:"transform",transformorigin:"transformOrigin","transform-origin":"transformOrigin",typeof:"typeof",u1:"u1",u2:"u2",underlineposition:"underlinePosition","underline-position":"underlinePosition",underlinethickness:"underlineThickness","underline-thickness":"underlineThickness",unicode:"unicode",unicodebidi:"unicodeBidi","unicode-bidi":"unicodeBidi",unicoderange:"unicodeRange","unicode-range":"unicodeRange",unitsperem:"unitsPerEm","units-per-em":"unitsPerEm",unselectable:"unselectable",valphabetic:"vAlphabetic","v-alphabetic":"vAlphabetic",values:"values",vectoreffect:"vectorEffect","vector-effect":"vectorEffect",version:"version",vertadvy:"vertAdvY","vert-adv-y":"vertAdvY",vertoriginx:"vertOriginX","vert-origin-x":"vertOriginX",vertoriginy:"vertOriginY","vert-origin-y":"vertOriginY",vhanging:"vHanging","v-hanging":"vHanging",videographic:"vIdeographic","v-ideographic":"vIdeographic",viewbox:"viewBox",viewtarget:"viewTarget",visibility:"visibility",vmathematical:"vMathematical","v-mathematical":"vMathematical",vocab:"vocab",widths:"widths",wordspacing:"wordSpacing","word-spacing":"wordSpacing",writingmode:"writingMode","writing-mode":"writingMode",x1:"x1",x2:"x2",x:"x",xchannelselector:"xChannelSelector",xheight:"xHeight","x-height":"xHeight",xlinkactuate:"xlinkActuate","xlink:actuate":"xlinkActuate",xlinkarcrole:"xlinkArcrole","xlink:arcrole":"xlinkArcrole",xlinkhref:"xlinkHref","xlink:href":"xlinkHref",xlinkrole:"xlinkRole","xlink:role":"xlinkRole",xlinkshow:"xlinkShow","xlink:show":"xlinkShow",xlinktitle:"xlinkTitle","xlink:title":"xlinkTitle",xlinktype:"xlinkType","xlink:type":"xlinkType",xmlbase:"xmlBase","xml:base":"xmlBase",xmllang:"xmlLang","xml:lang":"xmlLang",xmlns:"xmlns","xml:space":"xmlSpace",xmlnsxlink:"xmlnsXlink","xmlns:xlink":"xmlnsXlink",xmlspace:"xmlSpace",y1:"y1",y2:"y2",y:"y",ychannelselector:"yChannelSelector",z:"z",zoomandpan:"zoomAndPan"},B1={"aria-current":0,"aria-description":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0,"aria-braillelabel":0,"aria-brailleroledescription":0,"aria-colindextext":0,"aria-rowindextext":0},Is={},fC=RegExp("^(aria)-[: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]*$"),dC=RegExp("^(aria)[A-Z][: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]*$"),L1=!1,sn={},H1=/^on./,hC=/^on[^A-Z]/,pC=RegExp("^(aria)-[: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]*$"),mC=RegExp("^(aria)[A-Z][: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]*$"),yC=/^[\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,Nl=null,Ws=null,er=null,ym=!1,Ga=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),gm=!1;if(Ga)try{var Ul={};Object.defineProperty(Ul,"passive",{get:function(){gm=!0}}),window.addEventListener("test",Ul,Ul),window.removeEventListener("test",Ul,Ul)}catch{gm=!1}var Fo=null,vm=null,pf=null,Pi={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},mf=pn(Pi),zl=je({},Pi,{view:0,detail:0}),gC=pn(zl),bm,Sm,Vl,yf=je({},zl,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:eh,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!==Vl&&(Vl&&e.type==="mousemove"?(bm=e.screenX-Vl.screenX,Sm=e.screenY-Vl.screenY):Sm=bm=0,Vl=e),bm)},movementY:function(e){return"movementY"in e?e.movementY:Sm}}),k1=pn(yf),vC=je({},yf,{dataTransfer:0}),bC=pn(vC),SC=je({},zl,{relatedTarget:0}),Tm=pn(SC),TC=je({},Pi,{animationName:0,elapsedTime:0,pseudoElement:0}),EC=pn(TC),AC=je({},Pi,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),DC=pn(AC),RC=je({},Pi,{data:0}),q1=pn(RC),xC=q1,wC={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},OC={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"},CC={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"},MC=je({},zl,{key:function(e){if(e.key){var t=wC[e.key]||e.key;if(t!=="Unidentified")return t}return e.type==="keypress"?(e=ec(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?OC[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:eh,charCode:function(e){return e.type==="keypress"?ec(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?ec(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),_C=pn(MC),NC=je({},yf,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),Y1=pn(NC),UC=je({},zl,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:eh}),zC=pn(UC),VC=je({},Pi,{propertyName:0,elapsedTime:0,pseudoElement:0}),jC=pn(VC),BC=je({},yf,{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}),LC=pn(BC),HC=je({},Pi,{newState:0,oldState:0}),kC=pn(HC),qC=[9,13,27,32],G1=229,Em=Ga&&"CompositionEvent"in window,jl=null;Ga&&"documentMode"in document&&(jl=document.documentMode);var YC=Ga&&"TextEvent"in window&&!jl,P1=Ga&&(!Em||jl&&8<jl&&11>=jl),X1=32,$1=String.fromCharCode(X1),Q1=!1,tr=!1,GC={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},Bl=null,Ll=null,Z1=!1;Ga&&(Z1=uw("input")&&(!document.documentMode||9<document.documentMode));var rn=typeof Object.is=="function"?Object.is:mw,PC=Ga&&"documentMode"in document&&11>=document.documentMode,nr=null,Am=null,Hl=null,Dm=!1,ar={animationend:Ci("Animation","AnimationEnd"),animationiteration:Ci("Animation","AnimationIteration"),animationstart:Ci("Animation","AnimationStart"),transitionrun:Ci("Transition","TransitionRun"),transitionstart:Ci("Transition","TransitionStart"),transitioncancel:Ci("Transition","TransitionCancel"),transitionend:Ci("Transition","TransitionEnd")},Rm={},F1={};Ga&&(F1=document.createElement("div").style,"AnimationEvent"in window||(delete ar.animationend.animation,delete ar.animationiteration.animation,delete ar.animationstart.animation),"TransitionEvent"in window||delete ar.transitionend.transition);var J1=Mi("animationend"),K1=Mi("animationiteration"),I1=Mi("animationstart"),XC=Mi("transitionrun"),$C=Mi("transitionstart"),QC=Mi("transitioncancel"),W1=Mi("transitionend"),eT=new Map,xm="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(" ");xm.push("scrollEnd");var tT=0;if(typeof performance=="object"&&typeof performance.now=="function")var ZC=performance,nT=function(){return ZC.now()};else{var FC=Date;nT=function(){return FC.now()}}var wm=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!==null&&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)},JC="This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.",gf=0,Om=1,Cm=2,Mm=3,vf="– ",bf="+ ",aT="  ",ot=typeof console<"u"&&typeof console.timeStamp=="function"&&typeof performance<"u"&&typeof performance.measure=="function",Yn="Components ⚛",ke="Scheduler ⚛",Ye="Blocking",Jo=!1,lo={color:"primary",properties:null,tooltipText:"",track:Yn},Ko={start:-0,end:-0,detail:{devtools:lo}},KC=["Changed Props",""],oT="This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner.",IC=["Changed Props",oT],kl=1,uo=2,Gn=[],or=0,_m=0,Io={};Object.freeze(Io);var Pn=null,ir=null,Ee=0,WC=1,_e=2,Kt=8,ca=16,eM=32,iT=!1;try{var sT=Object.preventExtensions({})}catch{iT=!0}var Nm=new WeakMap,sr=[],rr=0,Sf=null,ql=0,Xn=[],$n=0,Xi=null,co=1,fo="",Xt=null,it=null,Le=!1,Pa=!1,Nn=null,Wo=null,Qn=!1,Um=Error("Hydration Mismatch Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),zm=Xe(null),Vm=Xe(null),rT={},Tf=null,lr=null,ur=!1,tM=typeof AbortController<"u"?AbortController:function(){var e=[],t=this.signal={aborted:!1,addEventListener:function(n,a){e.push(a)}};this.abort=function(){t.aborted=!0,e.forEach(function(n){return n()})}},nM=Et.unstable_scheduleCallback,aM=Et.unstable_NormalPriority,At={$$typeof:La,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0,_currentRenderer:null,_currentRenderer2:null},Dt=Et.unstable_now,Ef=console.createTask?console.createTask:function(){return null},Yl=1,Af=2,Lt=-0,ei=-0,ho=-0,po=null,ln=-1.1,$i=-0,ft=-0,ge=-1.1,Se=-1.1,ct=null,pt=!1,Qi=-0,Xa=-1.1,Gl=null,ti=0,jm=null,Bm=null,Zi=-1.1,Pl=null,cr=-1.1,Df=-1.1,mo=-0,yo=-1.1,Zn=-1.1,Lm=0,Xl=null,lT=null,uT=null,ni=-1.1,Fi=null,ai=-1.1,Rf=-1.1,cT=-0,fT=-0,xf=0,oM=null,dT=0,$l=-1.1,wf=!1,Of=!1,Ql=null,Hm=0,Ji=0,fr=null,hT=L.S;L.S=function(e,t){if(lE=Bt(),typeof t=="object"&&t!==null&&typeof t.then=="function"){if(0>yo&&0>Zn){yo=Dt();var n=Al(),a=El();(n!==ai||a!==Fi)&&(ai=-1.1),ni=n,Fi=a}Ew(e,t)}hT!==null&&hT(e,t)};var Ki=Xe(null),fa={recordUnsafeLifecycleWarnings:function(){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},Zl=[],Fl=[],Jl=[],Kl=[],Il=[],Wl=[],Ii=new Set;fa.recordUnsafeLifecycleWarnings=function(e,t){Ii.has(e.type)||(typeof t.componentWillMount=="function"&&t.componentWillMount.__suppressDeprecationWarning!==!0&&Zl.push(e),e.mode&Kt&&typeof t.UNSAFE_componentWillMount=="function"&&Fl.push(e),typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps.__suppressDeprecationWarning!==!0&&Jl.push(e),e.mode&Kt&&typeof t.UNSAFE_componentWillReceiveProps=="function"&&Kl.push(e),typeof t.componentWillUpdate=="function"&&t.componentWillUpdate.__suppressDeprecationWarning!==!0&&Il.push(e),e.mode&Kt&&typeof t.UNSAFE_componentWillUpdate=="function"&&Wl.push(e))},fa.flushPendingUnsafeLifecycleWarnings=function(){var e=new Set;0<Zl.length&&(Zl.forEach(function(d){e.add(F(d)||"Component"),Ii.add(d.type)}),Zl=[]);var t=new Set;0<Fl.length&&(Fl.forEach(function(d){t.add(F(d)||"Component"),Ii.add(d.type)}),Fl=[]);var n=new Set;0<Jl.length&&(Jl.forEach(function(d){n.add(F(d)||"Component"),Ii.add(d.type)}),Jl=[]);var a=new Set;0<Kl.length&&(Kl.forEach(function(d){a.add(F(d)||"Component"),Ii.add(d.type)}),Kl=[]);var s=new Set;0<Il.length&&(Il.forEach(function(d){s.add(F(d)||"Component"),Ii.add(d.type)}),Il=[]);var r=new Set;if(0<Wl.length&&(Wl.forEach(function(d){r.add(F(d)||"Component"),Ii.add(d.type)}),Wl=[]),0<t.size){var c=A(t);console.error(`Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
190
+
191
+ * Move code with side effects to componentDidMount, and set initial state in the constructor.
192
+
193
+ Please update the following components: %s`,c)}0<a.size&&(c=A(a),console.error(`Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
194
+
195
+ * Move data fetching code or side effects to componentDidUpdate.
196
+ * If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
197
+
198
+ Please update the following components: %s`,c)),0<r.size&&(c=A(r),console.error(`Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
199
+
200
+ * Move data fetching code or side effects to componentDidUpdate.
201
+
202
+ Please update the following components: %s`,c)),0<e.size&&(c=A(e),console.warn(`componentWillMount has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
203
+
204
+ * Move code with side effects to componentDidMount, and set initial state in the constructor.
205
+ * Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
206
+
207
+ Please update the following components: %s`,c)),0<n.size&&(c=A(n),console.warn(`componentWillReceiveProps has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
208
+
209
+ * Move data fetching code or side effects to componentDidUpdate.
210
+ * If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
211
+ * Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
212
+
213
+ Please update the following components: %s`,c)),0<s.size&&(c=A(s),console.warn(`componentWillUpdate has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
214
+
215
+ * Move data fetching code or side effects to componentDidUpdate.
216
+ * Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
217
+
218
+ Please update the following components: %s`,c))};var Cf=new Map,pT=new Set;fa.recordLegacyContextWarning=function(e,t){for(var n=null,a=e;a!==null;)a.mode&Kt&&(n=a),a=a.return;n===null?console.error("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue."):!pT.has(e.type)&&(a=Cf.get(n),e.type.contextTypes!=null||e.type.childContextTypes!=null||t!==null&&typeof t.getChildContext=="function")&&(a===void 0&&(a=[],Cf.set(n,a)),a.push(e))},fa.flushLegacyContextWarning=function(){Cf.forEach(function(e){if(e.length!==0){var t=e[0],n=new Set;e.forEach(function(s){n.add(F(s)||"Component"),pT.add(s.type)});var a=A(n);se(t,function(){console.error(`Legacy context API has been detected within a strict-mode tree.
219
+
220
+ The old API will be supported in all 16.x releases, but applications using it should migrate to the new version.
221
+
222
+ Please update the following components: %s
223
+
224
+ Learn more about this warning here: https://react.dev/link/legacy-context`,a)})}})},fa.discardPendingWarnings=function(){Zl=[],Fl=[],Jl=[],Kl=[],Il=[],Wl=[],Cf=new Map};var mT={react_stack_bottom_frame:function(e,t,n){var a=Ha;Ha=!0;try{return e(t,n)}finally{Ha=a}}},km=mT.react_stack_bottom_frame.bind(mT),yT={react_stack_bottom_frame:function(e){var t=Ha;Ha=!0;try{return e.render()}finally{Ha=t}}},gT=yT.react_stack_bottom_frame.bind(yT),vT={react_stack_bottom_frame:function(e,t){try{t.componentDidMount()}catch(n){$e(e,e.return,n)}}},qm=vT.react_stack_bottom_frame.bind(vT),bT={react_stack_bottom_frame:function(e,t,n,a,s){try{t.componentDidUpdate(n,a,s)}catch(r){$e(e,e.return,r)}}},ST=bT.react_stack_bottom_frame.bind(bT),TT={react_stack_bottom_frame:function(e,t){var n=t.stack;e.componentDidCatch(t.value,{componentStack:n!==null?n:""})}},iM=TT.react_stack_bottom_frame.bind(TT),ET={react_stack_bottom_frame:function(e,t,n){try{n.componentWillUnmount()}catch(a){$e(e,t,a)}}},AT=ET.react_stack_bottom_frame.bind(ET),DT={react_stack_bottom_frame:function(e){var t=e.create;return e=e.inst,t=t(),e.destroy=t}},sM=DT.react_stack_bottom_frame.bind(DT),RT={react_stack_bottom_frame:function(e,t,n){try{n()}catch(a){$e(e,t,a)}}},rM=RT.react_stack_bottom_frame.bind(RT),xT={react_stack_bottom_frame:function(e){var t=e._init;return t(e._payload)}},lM=xT.react_stack_bottom_frame.bind(xT),dr=Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."),Ym=Error("Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),Mf=Error("Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."),_f={then:function(){console.error('Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.')}},Wi=null,eu=!1,hr=null,tu=0,Ne=null,Gm,wT=Gm=!1,OT={},CT={},MT={};b=function(e,t,n){if(n!==null&&typeof n=="object"&&n._store&&(!n._store.validated&&n.key==null||n._store.validated===2)){if(typeof n._store!="object")throw Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.");n._store.validated=1;var a=F(e),s=a||"null";if(!OT[s]){OT[s]=!0,n=n._owner,e=e._debugOwner;var r="";e&&typeof e.tag=="number"&&(s=F(e))&&(r=`
225
+
226
+ Check the render method of \``+s+"`."),r||a&&(r=`
227
+
228
+ Check the top-level render call using <`+a+">.");var c="";n!=null&&e!==n&&(a=null,typeof n.tag=="number"?a=F(n):typeof n.name=="string"&&(a=n.name),a&&(c=" It was passed a child from "+a+".")),se(t,function(){console.error('Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',r,c)})}}};var es=E0(!0),_T=E0(!1),NT=0,UT=1,zT=2,Pm=3,oi=!1,VT=!1,Xm=null,$m=!1,pr=Xe(null),Nf=Xe(0),Un=Xe(null),Fn=null,mr=1,nu=2,St=Xe(0),Uf=0,Jn=1,un=2,zn=4,cn=8,yr,jT=new Set,BT=new Set,Qm=new Set,LT=new Set,go=0,Ae=null,We=null,Rt=null,zf=!1,gr=!1,ts=!1,Vf=0,au=0,vo=null,uM=0,cM=25,B=null,Kn=null,bo=-1,ou=!1,iu={readContext:ut,use:qo,useCallback:vt,useContext:vt,useEffect:vt,useImperativeHandle:vt,useLayoutEffect:vt,useInsertionEffect:vt,useMemo:vt,useReducer:vt,useRef:vt,useState:vt,useDebugValue:vt,useDeferredValue:vt,useTransition:vt,useSyncExternalStore:vt,useId:vt,useHostTransitionStatus:vt,useFormState:vt,useActionState:vt,useOptimistic:vt,useMemoCache:vt,useCacheRefresh:vt};iu.useEffectEvent=vt;var Zm=null,HT=null,Fm=null,kT=null,$a=null,da=null,jf=null;Zm={readContext:function(e){return ut(e)},use:qo,useCallback:function(e,t){return B="useCallback",Ve(),Us(t),Xh(e,t)},useContext:function(e){return B="useContext",Ve(),ut(e)},useEffect:function(e,t){return B="useEffect",Ve(),Us(t),Oc(e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",Ve(),Us(n),Ph(e,t,n)},useInsertionEffect:function(e,t){B="useInsertionEffect",Ve(),Us(t),Li(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",Ve(),Us(t),Gh(e,t)},useMemo:function(e,t){B="useMemo",Ve(),Us(t);var n=L.H;L.H=$a;try{return $h(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",Ve();var a=L.H;L.H=$a;try{return zh(e,t,n)}finally{L.H=a}},useRef:function(e){return B="useRef",Ve(),qh(e)},useState:function(e){B="useState",Ve();var t=L.H;L.H=$a;try{return Lh(e)}finally{L.H=t}},useDebugValue:function(){B="useDebugValue",Ve()},useDeferredValue:function(e,t){return B="useDeferredValue",Ve(),Qh(e,t)},useTransition:function(){return B="useTransition",Ve(),Jh()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",Ve(),jh(e,t,n)},useId:function(){return B="useId",Ve(),Kh()},useFormState:function(e,t){return B="useFormState",Ve(),Ac(),Vs(e,t)},useActionState:function(e,t){return B="useActionState",Ve(),Vs(e,t)},useOptimistic:function(e){return B="useOptimistic",Ve(),Hh(e)},useHostTransitionStatus:Hi,useMemoCache:Bi,useCacheRefresh:function(){return B="useCacheRefresh",Ve(),Ih()},useEffectEvent:function(e){return B="useEffectEvent",Ve(),Yh(e)}},HT={readContext:function(e){return ut(e)},use:qo,useCallback:function(e,t){return B="useCallback",P(),Xh(e,t)},useContext:function(e){return B="useContext",P(),ut(e)},useEffect:function(e,t){return B="useEffect",P(),Oc(e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",P(),Ph(e,t,n)},useInsertionEffect:function(e,t){B="useInsertionEffect",P(),Li(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",P(),Gh(e,t)},useMemo:function(e,t){B="useMemo",P();var n=L.H;L.H=$a;try{return $h(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",P();var a=L.H;L.H=$a;try{return zh(e,t,n)}finally{L.H=a}},useRef:function(e){return B="useRef",P(),qh(e)},useState:function(e){B="useState",P();var t=L.H;L.H=$a;try{return Lh(e)}finally{L.H=t}},useDebugValue:function(){B="useDebugValue",P()},useDeferredValue:function(e,t){return B="useDeferredValue",P(),Qh(e,t)},useTransition:function(){return B="useTransition",P(),Jh()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",P(),jh(e,t,n)},useId:function(){return B="useId",P(),Kh()},useActionState:function(e,t){return B="useActionState",P(),Vs(e,t)},useFormState:function(e,t){return B="useFormState",P(),Ac(),Vs(e,t)},useOptimistic:function(e){return B="useOptimistic",P(),Hh(e)},useHostTransitionStatus:Hi,useMemoCache:Bi,useCacheRefresh:function(){return B="useCacheRefresh",P(),Ih()},useEffectEvent:function(e){return B="useEffectEvent",P(),Yh(e)}},Fm={readContext:function(e){return ut(e)},use:qo,useCallback:function(e,t){return B="useCallback",P(),_c(e,t)},useContext:function(e){return B="useContext",P(),ut(e)},useEffect:function(e,t){B="useEffect",P(),mn(2048,cn,e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",P(),Mc(e,t,n)},useInsertionEffect:function(e,t){return B="useInsertionEffect",P(),mn(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",P(),mn(4,zn,e,t)},useMemo:function(e,t){B="useMemo",P();var n=L.H;L.H=da;try{return Nc(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",P();var a=L.H;L.H=da;try{return zs(e,t,n)}finally{L.H=a}},useRef:function(){return B="useRef",P(),Je().memoizedState},useState:function(){B="useState",P();var e=L.H;L.H=da;try{return zs(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",P()},useDeferredValue:function(e,t){return B="useDeferredValue",P(),P0(e,t)},useTransition:function(){return B="useTransition",P(),J0()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",P(),Rc(e,t,n)},useId:function(){return B="useId",P(),Je().memoizedState},useFormState:function(e){return B="useFormState",P(),Ac(),xc(e)},useActionState:function(e){return B="useActionState",P(),xc(e)},useOptimistic:function(e,t){return B="useOptimistic",P(),z0(e,t)},useHostTransitionStatus:Hi,useMemoCache:Bi,useCacheRefresh:function(){return B="useCacheRefresh",P(),Je().memoizedState},useEffectEvent:function(e){return B="useEffectEvent",P(),Cc(e)}},kT={readContext:function(e){return ut(e)},use:qo,useCallback:function(e,t){return B="useCallback",P(),_c(e,t)},useContext:function(e){return B="useContext",P(),ut(e)},useEffect:function(e,t){B="useEffect",P(),mn(2048,cn,e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",P(),Mc(e,t,n)},useInsertionEffect:function(e,t){return B="useInsertionEffect",P(),mn(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",P(),mn(4,zn,e,t)},useMemo:function(e,t){B="useMemo",P();var n=L.H;L.H=jf;try{return Nc(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",P();var a=L.H;L.H=jf;try{return cl(e,t,n)}finally{L.H=a}},useRef:function(){return B="useRef",P(),Je().memoizedState},useState:function(){B="useState",P();var e=L.H;L.H=jf;try{return cl(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",P()},useDeferredValue:function(e,t){return B="useDeferredValue",P(),X0(e,t)},useTransition:function(){return B="useTransition",P(),K0()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",P(),Rc(e,t,n)},useId:function(){return B="useId",P(),Je().memoizedState},useFormState:function(e){return B="useFormState",P(),Ac(),wc(e)},useActionState:function(e){return B="useActionState",P(),wc(e)},useOptimistic:function(e,t){return B="useOptimistic",P(),j0(e,t)},useHostTransitionStatus:Hi,useMemoCache:Bi,useCacheRefresh:function(){return B="useCacheRefresh",P(),Je().memoizedState},useEffectEvent:function(e){return B="useEffectEvent",P(),Cc(e)}},$a={readContext:function(e){return v(),ut(e)},use:function(e){return m(),qo(e)},useCallback:function(e,t){return B="useCallback",m(),Ve(),Xh(e,t)},useContext:function(e){return B="useContext",m(),Ve(),ut(e)},useEffect:function(e,t){return B="useEffect",m(),Ve(),Oc(e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",m(),Ve(),Ph(e,t,n)},useInsertionEffect:function(e,t){B="useInsertionEffect",m(),Ve(),Li(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",m(),Ve(),Gh(e,t)},useMemo:function(e,t){B="useMemo",m(),Ve();var n=L.H;L.H=$a;try{return $h(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",m(),Ve();var a=L.H;L.H=$a;try{return zh(e,t,n)}finally{L.H=a}},useRef:function(e){return B="useRef",m(),Ve(),qh(e)},useState:function(e){B="useState",m(),Ve();var t=L.H;L.H=$a;try{return Lh(e)}finally{L.H=t}},useDebugValue:function(){B="useDebugValue",m(),Ve()},useDeferredValue:function(e,t){return B="useDeferredValue",m(),Ve(),Qh(e,t)},useTransition:function(){return B="useTransition",m(),Ve(),Jh()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",m(),Ve(),jh(e,t,n)},useId:function(){return B="useId",m(),Ve(),Kh()},useFormState:function(e,t){return B="useFormState",m(),Ve(),Vs(e,t)},useActionState:function(e,t){return B="useActionState",m(),Ve(),Vs(e,t)},useOptimistic:function(e){return B="useOptimistic",m(),Ve(),Hh(e)},useMemoCache:function(e){return m(),Bi(e)},useHostTransitionStatus:Hi,useCacheRefresh:function(){return B="useCacheRefresh",Ve(),Ih()},useEffectEvent:function(e){return B="useEffectEvent",m(),Ve(),Yh(e)}},da={readContext:function(e){return v(),ut(e)},use:function(e){return m(),qo(e)},useCallback:function(e,t){return B="useCallback",m(),P(),_c(e,t)},useContext:function(e){return B="useContext",m(),P(),ut(e)},useEffect:function(e,t){B="useEffect",m(),P(),mn(2048,cn,e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",m(),P(),Mc(e,t,n)},useInsertionEffect:function(e,t){return B="useInsertionEffect",m(),P(),mn(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",m(),P(),mn(4,zn,e,t)},useMemo:function(e,t){B="useMemo",m(),P();var n=L.H;L.H=da;try{return Nc(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",m(),P();var a=L.H;L.H=da;try{return zs(e,t,n)}finally{L.H=a}},useRef:function(){return B="useRef",m(),P(),Je().memoizedState},useState:function(){B="useState",m(),P();var e=L.H;L.H=da;try{return zs(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",m(),P()},useDeferredValue:function(e,t){return B="useDeferredValue",m(),P(),P0(e,t)},useTransition:function(){return B="useTransition",m(),P(),J0()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",m(),P(),Rc(e,t,n)},useId:function(){return B="useId",m(),P(),Je().memoizedState},useFormState:function(e){return B="useFormState",m(),P(),xc(e)},useActionState:function(e){return B="useActionState",m(),P(),xc(e)},useOptimistic:function(e,t){return B="useOptimistic",m(),P(),z0(e,t)},useMemoCache:function(e){return m(),Bi(e)},useHostTransitionStatus:Hi,useCacheRefresh:function(){return B="useCacheRefresh",P(),Je().memoizedState},useEffectEvent:function(e){return B="useEffectEvent",m(),P(),Cc(e)}},jf={readContext:function(e){return v(),ut(e)},use:function(e){return m(),qo(e)},useCallback:function(e,t){return B="useCallback",m(),P(),_c(e,t)},useContext:function(e){return B="useContext",m(),P(),ut(e)},useEffect:function(e,t){B="useEffect",m(),P(),mn(2048,cn,e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",m(),P(),Mc(e,t,n)},useInsertionEffect:function(e,t){return B="useInsertionEffect",m(),P(),mn(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",m(),P(),mn(4,zn,e,t)},useMemo:function(e,t){B="useMemo",m(),P();var n=L.H;L.H=da;try{return Nc(e,t)}finally{L.H=n}},useReducer:function(e,t,n){B="useReducer",m(),P();var a=L.H;L.H=da;try{return cl(e,t,n)}finally{L.H=a}},useRef:function(){return B="useRef",m(),P(),Je().memoizedState},useState:function(){B="useState",m(),P();var e=L.H;L.H=da;try{return cl(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",m(),P()},useDeferredValue:function(e,t){return B="useDeferredValue",m(),P(),X0(e,t)},useTransition:function(){return B="useTransition",m(),P(),K0()},useSyncExternalStore:function(e,t,n){return B="useSyncExternalStore",m(),P(),Rc(e,t,n)},useId:function(){return B="useId",m(),P(),Je().memoizedState},useFormState:function(e){return B="useFormState",m(),P(),wc(e)},useActionState:function(e){return B="useActionState",m(),P(),wc(e)},useOptimistic:function(e,t){return B="useOptimistic",m(),P(),j0(e,t)},useMemoCache:function(e){return m(),Bi(e)},useHostTransitionStatus:Hi,useCacheRefresh:function(){return B="useCacheRefresh",P(),Je().memoizedState},useEffectEvent:function(e){return B="useEffectEvent",m(),P(),Cc(e)}};var qT={},YT=new Set,GT=new Set,PT=new Set,XT=new Set,$T=new Set,QT=new Set,ZT=new Set,FT=new Set,JT=new Set,KT=new Set;Object.freeze(qT);var Jm={enqueueSetState:function(e,t,n){e=e._reactInternals;var a=On(e),s=Bo(a);s.payload=t,n!=null&&(ep(n),s.callback=n),t=Lo(e,s,a),t!==null&&(Da(a,"this.setState()",e),ht(t,e,a),sl(t,e,a))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=On(e),s=Bo(a);s.tag=UT,s.payload=t,n!=null&&(ep(n),s.callback=n),t=Lo(e,s,a),t!==null&&(Da(a,"this.replaceState()",e),ht(t,e,a),sl(t,e,a))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=On(e),a=Bo(n);a.tag=zT,t!=null&&(ep(t),a.callback=t),t=Lo(e,a,n),t!==null&&(Da(n,"this.forceUpdate()",e),ht(t,e,n),sl(t,e,n))}},vr=null,Km=null,Im=Error("This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue."),xt=!1,IT={},WT={},eE={},tE={},br=!1,nE={},Bf={},Wm={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},aE=!1,oE=null;oE=new Set;var So=!1,wt=!1,ey=!1,iE=typeof WeakSet=="function"?WeakSet:Set,Ht=null,Sr=null,Tr=null,Ot=null,vn=!1,ha=null,Nt=!1,su=8192,fM={getCacheForType:function(e){var t=ut(At),n=t.data.get(e);return n===void 0&&(n=e(),t.data.set(e,n)),n},cacheSignal:function(){return ut(At).controller.signal},getOwner:function(){return _n}};if(typeof Symbol=="function"&&Symbol.for){var ru=Symbol.for;ru("selector.component"),ru("selector.has_pseudo_class"),ru("selector.role"),ru("selector.test_id"),ru("selector.text")}var dM=[],hM=typeof WeakMap=="function"?WeakMap:Map,kt=0,Ut=2,Vn=4,To=0,lu=1,ns=2,Lf=3,ii=4,Hf=6,sE=5,Pe=kt,et=null,ze=null,Ue=0,bn=0,kf=1,as=2,uu=3,rE=4,ty=5,cu=6,qf=7,ny=8,os=9,Ke=bn,jn=null,si=!1,Er=!1,ay=!1,Qa=0,dt=To,ri=0,li=0,oy=0,Sn=0,is=0,fu=null,fn=null,Yf=!1,Gf=0,lE=0,uE=300,Pf=1/0,cE=500,du=null,bt=null,ui=null,Xf=0,iy=1,sy=2,fE=3,ci=0,dE=1,hE=2,pE=3,mE=4,$f=5,Ct=0,fi=null,Ar=null,pa=0,ry=0,ly=-0,uy=null,yE=null,gE=null,ma=Xf,vE=null,pM=50,hu=0,cy=null,fy=!1,Qf=!1,mM=50,ss=0,pu=null,Dr=!1,Zf=null,bE=!1,SE=new Set,yM={},Ff=null,Rr=null,dy=!1,hy=!1,Jf=!1,py=!1,di=0,my={};(function(){for(var e=0;e<xm.length;e++){var t=xm[e],n=t.toLowerCase();t=t[0].toUpperCase()+t.slice(1),ia(n,"on"+t)}ia(J1,"onAnimationEnd"),ia(K1,"onAnimationIteration"),ia(I1,"onAnimationStart"),ia("dblclick","onDoubleClick"),ia("focusin","onFocus"),ia("focusout","onBlur"),ia(XC,"onTransitionRun"),ia($C,"onTransitionStart"),ia(QC,"onTransitionCancel"),ia(W1,"onTransitionEnd")})(),Ce("onMouseEnter",["mouseout","mouseover"]),Ce("onMouseLeave",["mouseout","mouseover"]),Ce("onPointerEnter",["pointerout","pointerover"]),Ce("onPointerLeave",["pointerout","pointerover"]),Ge("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),Ge("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),Ge("onBeforeInput",["compositionend","keypress","textInput","paste"]),Ge("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),Ge("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),Ge("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var mu="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(" "),yy=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(mu)),Kf="_reactListening"+Math.random().toString(36).slice(2),TE=!1,EE=!1,If=!1,AE=!1,Wf=!1,ed=!1,DE=!1,td={},gM=/\r\n?/g,vM=/\u0000|\uFFFD/g,rs="http://www.w3.org/1999/xlink",gy="http://www.w3.org/XML/1998/namespace",bM="javascript:throw new Error('React form unexpectedly submitted.')",SM="suppressHydrationWarning",ls="&",nd="/&",yu="$",gu="/$",hi="$?",us="$~",xr="$!",TM="html",EM="body",AM="head",vy="F!",RE="F",xE="loading",DM="style",Eo=0,wr=1,ad=2,by=null,Sy=null,wE={dialog:!0,webview:!0},Ty=null,vu=void 0,OE=typeof setTimeout=="function"?setTimeout:void 0,RM=typeof clearTimeout=="function"?clearTimeout:void 0,cs=-1,CE=typeof Promise=="function"?Promise:void 0,xM=typeof queueMicrotask=="function"?queueMicrotask:typeof CE<"u"?function(e){return CE.resolve(null).then(e).catch(lO)}:OE,Ey=null,fs=0,bu=1,ME=2,_E=3,In=4,Wn=new Map,NE=new Set,Ao=Qe.d;Qe.d={f:function(){var e=Ao.f(),t=ks();return e||t},r:function(e){var t=J(e);t!==null&&t.tag===5&&t.type==="form"?F0(t):Ao.r(e)},D:function(e){Ao.D(e),YS("dns-prefetch",e,null)},C:function(e,t){Ao.C(e,t),YS("preconnect",e,t)},L:function(e,t,n){Ao.L(e,t,n);var a=Or;if(a&&e&&t){var s='link[rel="preload"][as="'+Hn(t)+'"]';t==="image"&&n&&n.imageSrcSet?(s+='[imagesrcset="'+Hn(n.imageSrcSet)+'"]',typeof n.imageSizes=="string"&&(s+='[imagesizes="'+Hn(n.imageSizes)+'"]')):s+='[href="'+Hn(e)+'"]';var r=s;switch(t){case"style":r=Gs(e);break;case"script":r=Ps(e)}Wn.has(r)||(e=je({rel:"preload",href:t==="image"&&n&&n.imageSrcSet?void 0:e,as:t},n),Wn.set(r,e),a.querySelector(s)!==null||t==="style"&&a.querySelector(Rl(r))||t==="script"&&a.querySelector(xl(r))||(t=a.createElement("link"),Gt(t,"link",e),pe(t),a.head.appendChild(t)))}},m:function(e,t){Ao.m(e,t);var n=Or;if(n&&e){var a=t&&typeof t.as=="string"?t.as:"script",s='link[rel="modulepreload"][as="'+Hn(a)+'"][href="'+Hn(e)+'"]',r=s;switch(a){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":r=Ps(e)}if(!Wn.has(r)&&(e=je({rel:"modulepreload",href:e},t),Wn.set(r,e),n.querySelector(s)===null)){switch(a){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(n.querySelector(xl(r)))return}a=n.createElement("link"),Gt(a,"link",e),pe(a),n.head.appendChild(a)}}},X:function(e,t){Ao.X(e,t);var n=Or;if(n&&e){var a=Oe(n).hoistableScripts,s=Ps(e),r=a.get(s);r||(r=n.querySelector(xl(s)),r||(e=je({src:e,async:!0},t),(t=Wn.get(s))&&Pp(e,t),r=n.createElement("script"),pe(r),Gt(r,"link",e),n.head.appendChild(r)),r={type:"script",instance:r,count:1,state:null},a.set(s,r))}},S:function(e,t,n){Ao.S(e,t,n);var a=Or;if(a&&e){var s=Oe(a).hoistableStyles,r=Gs(e);t=t||"default";var c=s.get(r);if(!c){var d={loading:fs,preload:null};if(c=a.querySelector(Rl(r)))d.loading=bu|In;else{e=je({rel:"stylesheet",href:e,"data-precedence":t},n),(n=Wn.get(r))&&Gp(e,n);var y=c=a.createElement("link");pe(y),Gt(y,"link",e),y._p=new Promise(function(g,_){y.onload=g,y.onerror=_}),y.addEventListener("load",function(){d.loading|=bu}),y.addEventListener("error",function(){d.loading|=ME}),d.loading|=In,Kc(c,t,a)}c={type:"stylesheet",instance:c,count:1,state:d},s.set(r,c)}}},M:function(e,t){Ao.M(e,t);var n=Or;if(n&&e){var a=Oe(n).hoistableScripts,s=Ps(e),r=a.get(s);r||(r=n.querySelector(xl(s)),r||(e=je({src:e,async:!0,type:"module"},t),(t=Wn.get(s))&&Pp(e,t),r=n.createElement("script"),pe(r),Gt(r,"link",e),n.head.appendChild(r)),r={type:"script",instance:r,count:1,state:null},a.set(s,r))}}};var Or=typeof document>"u"?null:document,od=null,wM=6e4,OM=800,CM=500,Ay=0,Dy=null,id=null,ds=GO,Su={$$typeof:La,Provider:null,Consumer:null,_currentValue:ds,_currentValue2:ds,_threadCount:0},UE="%c%s%c",zE="background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",VE="",sd=" ",MM=Function.prototype.bind,jE=!1,BE=null,LE=null,HE=null,kE=null,qE=null,YE=null,GE=null,PE=null,XE=null,$E=null;BE=function(e,t,n,a){t=o(e,t),t!==null&&(n=i(t.memoizedState,n,0,a),t.memoizedState=n,t.baseState=n,e.memoizedProps=je({},e.memoizedProps),n=Ft(e,2),n!==null&&ht(n,e,2))},LE=function(e,t,n){t=o(e,t),t!==null&&(n=f(t.memoizedState,n,0),t.memoizedState=n,t.baseState=n,e.memoizedProps=je({},e.memoizedProps),n=Ft(e,2),n!==null&&ht(n,e,2))},HE=function(e,t,n,a){t=o(e,t),t!==null&&(n=l(t.memoizedState,n,a),t.memoizedState=n,t.baseState=n,e.memoizedProps=je({},e.memoizedProps),n=Ft(e,2),n!==null&&ht(n,e,2))},kE=function(e,t,n){e.pendingProps=i(e.memoizedProps,t,0,n),e.alternate&&(e.alternate.pendingProps=e.pendingProps),t=Ft(e,2),t!==null&&ht(t,e,2)},qE=function(e,t){e.pendingProps=f(e.memoizedProps,t,0),e.alternate&&(e.alternate.pendingProps=e.pendingProps),t=Ft(e,2),t!==null&&ht(t,e,2)},YE=function(e,t,n){e.pendingProps=l(e.memoizedProps,t,n),e.alternate&&(e.alternate.pendingProps=e.pendingProps),t=Ft(e,2),t!==null&&ht(t,e,2)},GE=function(e){var t=Ft(e,2);t!==null&&ht(t,e,2)},PE=function(e){var t=Pr(),n=Ft(e,t);n!==null&&ht(n,e,t)},XE=function(e){h=e},$E=function(e){p=e};var rd=!0,ld=null,Ry=!1,pi=null,mi=null,yi=null,Tu=new Map,Eu=new Map,gi=[],_M="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(" "),ud=null;if(nf.prototype.render=Jp.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error("Cannot update an unmounted root.");var n=arguments;typeof n[1]=="function"?console.error("does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."):z(n[1])?console.error("You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root."):typeof n[1]<"u"&&console.error("You passed a second argument to root.render(...) but it only accepts one argument."),n=e;var a=t.current,s=On(a);Xp(a,s,n,t,null,null)},nf.prototype.unmount=Jp.prototype.unmount=function(){var e=arguments;if(typeof e[0]=="function"&&console.error("does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."),e=this._internalRoot,e!==null){this._internalRoot=null;var t=e.containerInfo;(Pe&(Ut|Vn))!==kt&&console.error("Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition."),Xp(e.current,2,null,e,null,null),ks(),t[Zo]=null}},nf.prototype.unstable_scheduleHydration=function(e){if(e){var t=No();e={blockedOn:null,target:e,priority:t};for(var n=0;n<gi.length&&t!==0&&t<gi[n].priority;n++);gi.splice(n,0,e),n===0&&n1(e)}},(function(){var e=Kp.version;if(e!=="19.2.4")throw Error(`Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:
229
+ - react: `+(e+`
230
+ - react-dom: 19.2.4
231
+ Learn more: https://react.dev/warnings/version-mismatch`))})(),typeof Map=="function"&&Map.prototype!=null&&typeof Map.prototype.forEach=="function"&&typeof Set=="function"&&Set.prototype!=null&&typeof Set.prototype.clear=="function"&&typeof Set.prototype.forEach=="function"||console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://react.dev/link/react-polyfills"),Qe.findDOMNode=function(e){var t=e._reactInternals;if(t===void 0)throw typeof e.render=="function"?Error("Unable to find node on an unmounted component."):(e=Object.keys(e).join(","),Error("Argument appears to not be a ReactComponent. Keys: "+e));return e=Z(t),e=e!==null?Te(e):null,e=e===null?null:e.stateNode,e},!(function(){var e={bundleType:1,version:"19.2.4",rendererPackageName:"react-dom",currentDispatcherRef:L,reconcilerVersion:"19.2.4"};return e.overrideHookState=BE,e.overrideHookStateDeletePath=LE,e.overrideHookStateRenamePath=HE,e.overrideProps=kE,e.overridePropsDeletePath=qE,e.overridePropsRenamePath=YE,e.scheduleUpdate=GE,e.scheduleRetry=PE,e.setErrorHandler=XE,e.setSuspenseHandler=$E,e.scheduleRefresh=D,e.scheduleRoot=R,e.setRefreshHandler=j,e.getCurrentFiber=zO,Pd(e)})()&&Ga&&window.top===window.self&&(-1<navigator.userAgent.indexOf("Chrome")&&navigator.userAgent.indexOf("Edge")===-1||-1<navigator.userAgent.indexOf("Firefox"))){var QE=window.location.protocol;/^(https?|file):$/.test(QE)&&console.info("%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools"+(QE==="file:"?`
232
+ You might need to use a local HTTP server (instead of file://): https://react.dev/link/react-devtools-faq`:""),"font-weight:bold")}Au.createRoot=function(e,t){if(!z(e))throw Error("Target container is not a DOM element.");s1(e);var n=!1,a="",s=ab,r=ob,c=ib;return t!=null&&(t.hydrate?console.warn("hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead."):typeof t=="object"&&t!==null&&t.$$typeof===Ba&&console.error(`You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:
233
+
234
+ let root = createRoot(domContainer);
235
+ root.render(<App />);`),t.unstable_strictMode===!0&&(n=!0),t.identifierPrefix!==void 0&&(a=t.identifierPrefix),t.onUncaughtError!==void 0&&(s=t.onUncaughtError),t.onCaughtError!==void 0&&(r=t.onCaughtError),t.onRecoverableError!==void 0&&(c=t.onRecoverableError)),t=FS(e,1,!1,null,null,n,a,null,s,r,c,i1),e[Zo]=t.current,_p(e),new Jp(t)},Au.hydrateRoot=function(e,t,n){if(!z(e))throw Error("Target container is not a DOM element.");s1(e),t===void 0&&console.error("Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)");var a=!1,s="",r=ab,c=ob,d=ib,y=null;return n!=null&&(n.unstable_strictMode===!0&&(a=!0),n.identifierPrefix!==void 0&&(s=n.identifierPrefix),n.onUncaughtError!==void 0&&(r=n.onUncaughtError),n.onCaughtError!==void 0&&(c=n.onCaughtError),n.onRecoverableError!==void 0&&(d=n.onRecoverableError),n.formState!==void 0&&(y=n.formState)),t=FS(e,1,!0,t,n??null,a,s,y,r,c,d,i1),t.context=JS(null),n=t.current,a=On(n),a=_o(a),s=Bo(a),s.callback=null,Lo(n,s,a),Da(a,"hydrateRoot()",null),n=a,t.current.lanes=n,Mo(t,n),Va(t),e[Zo]=t.current,_p(e),new nf(t)},Au.version="19.2.4",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})(),Au}var aA;function YM(){return aA||(aA=1,Oy.exports=qM()),Oy.exports}var GM=YM();const PM=GD(GM);const PD=(...o)=>o.filter((i,l,u)=>!!i&&i.trim()!==""&&u.indexOf(i)===l).join(" ").trim();const XM=o=>o.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const $M=o=>o.replace(/^([A-Z])|[\s-_]+(\w)/g,(i,l,u)=>u?u.toUpperCase():l.toLowerCase());const oA=o=>{const i=$M(o);return i.charAt(0).toUpperCase()+i.slice(1)};var QM={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const ZM=o=>{for(const i in o)if(i.startsWith("aria-")||i==="role"||i==="title")return!0;return!1};const FM=ne.forwardRef(({color:o="currentColor",size:i=24,strokeWidth:l=2,absoluteStrokeWidth:u,className:f="",children:p,iconNode:h,...m},v)=>ne.createElement("svg",{ref:v,...QM,width:i,height:i,stroke:o,strokeWidth:u?Number(l)*24/Number(i):l,className:PD("lucide",f),...!p&&!ZM(m)&&{"aria-hidden":"true"},...m},[...h.map(([E,b])=>ne.createElement(E,b)),...Array.isArray(p)?p:[p]]));const Ts=(o,i)=>{const l=ne.forwardRef(({className:u,...f},p)=>ne.createElement(FM,{ref:p,iconNode:i,className:PD(`lucide-${XM(oA(o))}`,`lucide-${o}`,u),...f}));return l.displayName=oA(o),l};const JM=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]],iA=Ts("activity",JM);const KM=[["line",{x1:"12",x2:"12",y1:"2",y2:"22",key:"7eqyqh"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6",key:"1b0p4s"}]],IM=Ts("dollar-sign",KM);const WM=[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]],e_=Ts("gauge",WM);const t_=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]],n_=Ts("send",t_);const a_=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]],o_=Ts("shield",a_);const i_=[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]],s_=Ts("terminal",i_);const r_=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],l_=Ts("zap",r_);var Ny={exports:{}},Du={},sA;function u_(){if(sA)return Du;sA=1;return(function(){function o(C){if(C==null)return null;if(typeof C=="function")return C.$$typeof===Xe?null:C.displayName||C.name||null;if(typeof C=="string")return C;switch(C){case z:return"Fragment";case $:return"Profiler";case k:return"StrictMode";case Te:return"Suspense";case ve:return"SuspenseList";case F:return"Activity"}if(typeof C=="object")switch(typeof C.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),C.$$typeof){case j:return"Portal";case I:return C.displayName||"Context";case Y:return(C._context.displayName||"Context")+".Consumer";case Z:var Q=C.render;return C=C.displayName,C||(C=Q.displayName||Q.name||"",C=C!==""?"ForwardRef("+C+")":"ForwardRef"),C;case W:return Q=C.displayName||null,Q!==null?Q:o(C.type)||"Memo";case ce:Q=C._payload,C=C._init;try{return o(C(Q))}catch{}}return null}function i(C){return""+C}function l(C){try{i(C);var Q=!1}catch{Q=!0}if(Q){Q=console;var me=Q.error,re=typeof Symbol=="function"&&Symbol.toStringTag&&C[Symbol.toStringTag]||C.constructor.name||"Object";return me.call(Q,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",re),i(C)}}function u(C){if(C===z)return"<>";if(typeof C=="object"&&C!==null&&C.$$typeof===ce)return"<...>";try{var Q=o(C);return Q?"<"+Q+">":"<...>"}catch{return"<...>"}}function f(){var C=fe.A;return C===null?null:C.getOwner()}function p(){return Error("react-stack-top-frame")}function h(C){if(be.call(C,"key")){var Q=Object.getOwnPropertyDescriptor(C,"key").get;if(Q&&Q.isReactWarning)return!1}return C.key!==void 0}function m(C,Q){function me(){G||(G=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",Q))}me.isReactWarning=!0,Object.defineProperty(C,"key",{get:me,configurable:!0})}function v(){var C=o(this.type);return ae[C]||(ae[C]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),C=this.props.ref,C!==void 0?C:null}function E(C,Q,me,re,tt,Bn){var we=me.ref;return C={$$typeof:D,type:C,key:Q,props:me,_owner:re},(we!==void 0?we:null)!==null?Object.defineProperty(C,"ref",{enumerable:!1,get:v}):Object.defineProperty(C,"ref",{enumerable:!1,value:null}),C._store={},Object.defineProperty(C._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(C,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(C,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:tt}),Object.defineProperty(C,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:Bn}),Object.freeze&&(Object.freeze(C.props),Object.freeze(C)),C}function b(C,Q,me,re,tt,Bn){var we=Q.children;if(we!==void 0)if(re)if(Ze(we)){for(re=0;re<we.length;re++)A(we[re]);Object.freeze&&Object.freeze(we)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else A(we);if(be.call(Q,"key")){we=o(C);var Vt=Object.keys(Q).filter(function(oa){return oa!=="key"});re=0<Vt.length?"{key: someKey, "+Vt.join(": ..., ")+": ...}":"{key: someKey}",Be[we+re]||(Vt=0<Vt.length?"{"+Vt.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
236
+ let props = %s;
237
+ <%s {...props} />
238
+ React keys must be passed directly to JSX without using spread:
239
+ let props = %s;
240
+ <%s key={someKey} {...props} />`,re,we,Vt,we),Be[we+re]=!0)}if(we=null,me!==void 0&&(l(me),we=""+me),h(Q)&&(l(Q.key),we=""+Q.key),"key"in Q){me={};for(var Qt in Q)Qt!=="key"&&(me[Qt]=Q[Qt])}else me=Q;return we&&m(me,typeof C=="function"?C.displayName||C.name||"Unknown":C),E(C,we,me,f(),tt,Bn)}function A(C){T(C)?C._store&&(C._store.validated=1):typeof C=="object"&&C!==null&&C.$$typeof===ce&&(C._payload.status==="fulfilled"?T(C._payload.value)&&C._payload.value._store&&(C._payload.value._store.validated=1):C._store&&(C._store.validated=1))}function T(C){return typeof C=="object"&&C!==null&&C.$$typeof===D}var R=Bu(),D=Symbol.for("react.transitional.element"),j=Symbol.for("react.portal"),z=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),$=Symbol.for("react.profiler"),Y=Symbol.for("react.consumer"),I=Symbol.for("react.context"),Z=Symbol.for("react.forward_ref"),Te=Symbol.for("react.suspense"),ve=Symbol.for("react.suspense_list"),W=Symbol.for("react.memo"),ce=Symbol.for("react.lazy"),F=Symbol.for("react.activity"),Xe=Symbol.for("react.client.reference"),fe=R.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,be=Object.prototype.hasOwnProperty,Ze=Array.isArray,lt=console.createTask?console.createTask:function(){return null};R={react_stack_bottom_frame:function(C){return C()}};var G,ae={},ie=R.react_stack_bottom_frame.bind(R,p)(),xe=lt(u(p)),Be={};Du.Fragment=z,Du.jsx=function(C,Q,me){var re=1e4>fe.recentlyCreatedOwnerStacks++;return b(C,Q,me,!1,re?Error("react-stack-top-frame"):ie,re?lt(u(C)):xe)},Du.jsxs=function(C,Q,me){var re=1e4>fe.recentlyCreatedOwnerStacks++;return b(C,Q,me,!0,re?Error("react-stack-top-frame"):ie,re?lt(u(C)):xe)}})(),Du}var rA;function c_(){return rA||(rA=1,Ny.exports=u_()),Ny.exports}var Ro=c_();const Og=ne.createContext({});function Cg(o){const i=ne.useRef(null);return i.current===null&&(i.current=o()),i.current}const XD=typeof window<"u",$D=XD?ne.useLayoutEffect:ne.useEffect,Vd=ne.createContext(null);function Mg(o,i){o.indexOf(i)===-1&&o.push(i)}function xd(o,i){const l=o.indexOf(i);l>-1&&o.splice(l,1)}const Ja=(o,i,l)=>l>i?i:l<o?o:l;function eg(o,i){return i?`${o}. For more information and steps for solving, visit https://motion.dev/troubleshooting/${i}`:o}let Hr=()=>{},xo=()=>{};typeof process<"u"&&(Hr=(o,i,l)=>{!o&&typeof console<"u"&&console.warn(eg(i,l))},xo=(o,i,l)=>{if(!o)throw new Error(eg(i,l))});const wo={},QD=o=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(o);function ZD(o){return typeof o=="object"&&o!==null}const FD=o=>/^0[^.\s]+$/u.test(o);function _g(o){let i;return()=>(i===void 0&&(i=o()),i)}const na=o=>o,f_=(o,i)=>l=>i(o(l)),Lu=(...o)=>o.reduce(f_),Nu=(o,i,l)=>{const u=i-o;return u===0?1:(l-o)/u};class Ng{constructor(){this.subscriptions=[]}add(i){return Mg(this.subscriptions,i),()=>xd(this.subscriptions,i)}notify(i,l,u){const f=this.subscriptions.length;if(f)if(f===1)this.subscriptions[0](i,l,u);else for(let p=0;p<f;p++){const h=this.subscriptions[p];h&&h(i,l,u)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}const aa=o=>o*1e3,ta=o=>o/1e3;function JD(o,i){return i?o*(1e3/i):0}const lA=new Set;function Ug(o,i,l){o||lA.has(i)||(console.warn(eg(i,l)),lA.add(i))}const KD=(o,i,l)=>(((1-3*l+3*i)*o+(3*l-6*i))*o+3*i)*o,d_=1e-7,h_=12;function p_(o,i,l,u,f){let p,h,m=0;do h=i+(l-i)/2,p=KD(h,u,f)-o,p>0?l=h:i=h;while(Math.abs(p)>d_&&++m<h_);return h}function Hu(o,i,l,u){if(o===i&&l===u)return na;const f=p=>p_(p,0,1,o,l);return p=>p===0||p===1?p:KD(f(p),i,u)}const ID=o=>i=>i<=.5?o(2*i)/2:(2-o(2*(1-i)))/2,WD=o=>i=>1-o(1-i),eR=Hu(.33,1.53,.69,.99),zg=WD(eR),tR=ID(zg),nR=o=>(o*=2)<1?.5*zg(o):.5*(2-Math.pow(2,-10*(o-1))),Vg=o=>1-Math.sin(Math.acos(o)),aR=WD(Vg),oR=ID(Vg),m_=Hu(.42,0,1,1),y_=Hu(0,0,.58,1),iR=Hu(.42,0,.58,1),g_=o=>Array.isArray(o)&&typeof o[0]!="number",sR=o=>Array.isArray(o)&&typeof o[0]=="number",uA={linear:na,easeIn:m_,easeInOut:iR,easeOut:y_,circIn:Vg,circInOut:oR,circOut:aR,backIn:zg,backInOut:tR,backOut:eR,anticipate:nR},v_=o=>typeof o=="string",cA=o=>{if(sR(o)){xo(o.length===4,"Cubic bezier arrays must contain four numerical values.","cubic-bezier-length");const[i,l,u,f]=o;return Hu(i,l,u,f)}else if(v_(o))return xo(uA[o]!==void 0,`Invalid easing type '${o}'`,"invalid-easing-type"),uA[o];return o},fd=["setup","read","resolveKeyframes","preUpdate","update","preRender","render","postRender"];function b_(o,i){let l=new Set,u=new Set,f=!1,p=!1;const h=new WeakSet;let m={delta:0,timestamp:0,isProcessing:!1};function v(b){h.has(b)&&(E.schedule(b),o()),b(m)}const E={schedule:(b,A=!1,T=!1)=>{const D=T&&f?l:u;return A&&h.add(b),D.has(b)||D.add(b),b},cancel:b=>{u.delete(b),h.delete(b)},process:b=>{if(m=b,f){p=!0;return}f=!0,[l,u]=[u,l],l.forEach(v),l.clear(),f=!1,p&&(p=!1,E.process(b))}};return E}const S_=40;function rR(o,i){let l=!1,u=!0;const f={delta:0,timestamp:0,isProcessing:!1},p=()=>l=!0,h=fd.reduce((Y,I)=>(Y[I]=b_(p),Y),{}),{setup:m,read:v,resolveKeyframes:E,preUpdate:b,update:A,preRender:T,render:R,postRender:D}=h,j=()=>{const Y=wo.useManualTiming?f.timestamp:performance.now();l=!1,wo.useManualTiming||(f.delta=u?1e3/60:Math.max(Math.min(Y-f.timestamp,S_),1)),f.timestamp=Y,f.isProcessing=!0,m.process(f),v.process(f),E.process(f),b.process(f),A.process(f),T.process(f),R.process(f),D.process(f),f.isProcessing=!1,l&&i&&(u=!1,o(j))},z=()=>{l=!0,u=!0,f.isProcessing||o(j)};return{schedule:fd.reduce((Y,I)=>{const Z=h[I];return Y[I]=(Te,ve=!1,W=!1)=>(l||z(),Z.schedule(Te,ve,W)),Y},{}),cancel:Y=>{for(let I=0;I<fd.length;I++)h[fd[I]].cancel(Y)},state:f,steps:h}}const{schedule:rt,cancel:Si,state:$t,steps:Uy}=rR(typeof requestAnimationFrame<"u"?requestAnimationFrame:na,!0);let yd;function T_(){yd=void 0}const dn={now:()=>(yd===void 0&&dn.set($t.isProcessing||wo.useManualTiming?$t.timestamp:performance.now()),yd),set:o=>{yd=o,queueMicrotask(T_)}},lR=o=>i=>typeof i=="string"&&i.startsWith(o),uR=lR("--"),E_=lR("var(--"),jg=o=>E_(o)?A_.test(o.split("/*")[0].trim()):!1,A_=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu;function fA(o){return typeof o!="string"?!1:o.split("/*")[0].includes("var(--")}const kr={test:o=>typeof o=="number",parse:parseFloat,transform:o=>o},Uu={...kr,transform:o=>Ja(0,1,o)},dd={...kr,default:1},Cu=o=>Math.round(o*1e5)/1e5,Bg=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function D_(o){return o==null}const R_=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,Lg=(o,i)=>l=>!!(typeof l=="string"&&R_.test(l)&&l.startsWith(o)||i&&!D_(l)&&Object.prototype.hasOwnProperty.call(l,i)),cR=(o,i,l)=>u=>{if(typeof u!="string")return u;const[f,p,h,m]=u.match(Bg);return{[o]:parseFloat(f),[i]:parseFloat(p),[l]:parseFloat(h),alpha:m!==void 0?parseFloat(m):1}},x_=o=>Ja(0,255,o),zy={...kr,transform:o=>Math.round(x_(o))},ms={test:Lg("rgb","red"),parse:cR("red","green","blue"),transform:({red:o,green:i,blue:l,alpha:u=1})=>"rgba("+zy.transform(o)+", "+zy.transform(i)+", "+zy.transform(l)+", "+Cu(Uu.transform(u))+")"};function w_(o){let i="",l="",u="",f="";return o.length>5?(i=o.substring(1,3),l=o.substring(3,5),u=o.substring(5,7),f=o.substring(7,9)):(i=o.substring(1,2),l=o.substring(2,3),u=o.substring(3,4),f=o.substring(4,5),i+=i,l+=l,u+=u,f+=f),{red:parseInt(i,16),green:parseInt(l,16),blue:parseInt(u,16),alpha:f?parseInt(f,16)/255:1}}const tg={test:Lg("#"),parse:w_,transform:ms.transform},ku=o=>({test:i=>typeof i=="string"&&i.endsWith(o)&&i.split(" ").length===1,parse:parseFloat,transform:i=>`${i}${o}`}),vi=ku("deg"),Fa=ku("%"),le=ku("px"),O_=ku("vh"),C_=ku("vw"),dA={...Fa,parse:o=>Fa.parse(o)/100,transform:o=>Fa.transform(o*100)},Mr={test:Lg("hsl","hue"),parse:cR("hue","saturation","lightness"),transform:({hue:o,saturation:i,lightness:l,alpha:u=1})=>"hsla("+Math.round(o)+", "+Fa.transform(Cu(i))+", "+Fa.transform(Cu(l))+", "+Cu(Uu.transform(u))+")"},Mt={test:o=>ms.test(o)||tg.test(o)||Mr.test(o),parse:o=>ms.test(o)?ms.parse(o):Mr.test(o)?Mr.parse(o):tg.parse(o),transform:o=>typeof o=="string"?o:o.hasOwnProperty("red")?ms.transform(o):Mr.transform(o),getAnimatableNone:o=>{const i=Mt.parse(o);return i.alpha=0,Mt.transform(i)}},M_=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function __(o){return isNaN(o)&&typeof o=="string"&&(o.match(Bg)?.length||0)+(o.match(M_)?.length||0)>0}const fR="number",dR="color",N_="var",U_="var(",hA="${}",z_=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function zu(o){const i=o.toString(),l=[],u={color:[],number:[],var:[]},f=[];let p=0;const m=i.replace(z_,v=>(Mt.test(v)?(u.color.push(p),f.push(dR),l.push(Mt.parse(v))):v.startsWith(U_)?(u.var.push(p),f.push(N_),l.push(v)):(u.number.push(p),f.push(fR),l.push(parseFloat(v))),++p,hA)).split(hA);return{values:l,split:m,indexes:u,types:f}}function hR(o){return zu(o).values}function pR(o){const{split:i,types:l}=zu(o),u=i.length;return f=>{let p="";for(let h=0;h<u;h++)if(p+=i[h],f[h]!==void 0){const m=l[h];m===fR?p+=Cu(f[h]):m===dR?p+=Mt.transform(f[h]):p+=f[h]}return p}}const V_=o=>typeof o=="number"?0:Mt.test(o)?Mt.getAnimatableNone(o):o;function j_(o){const i=hR(o);return pR(o)(i.map(V_))}const Ti={test:__,parse:hR,createTransformer:pR,getAnimatableNone:j_};function Vy(o,i,l){return l<0&&(l+=1),l>1&&(l-=1),l<1/6?o+(i-o)*6*l:l<1/2?i:l<2/3?o+(i-o)*(2/3-l)*6:o}function B_({hue:o,saturation:i,lightness:l,alpha:u}){o/=360,i/=100,l/=100;let f=0,p=0,h=0;if(!i)f=p=h=l;else{const m=l<.5?l*(1+i):l+i-l*i,v=2*l-m;f=Vy(v,m,o+1/3),p=Vy(v,m,o),h=Vy(v,m,o-1/3)}return{red:Math.round(f*255),green:Math.round(p*255),blue:Math.round(h*255),alpha:u}}function wd(o,i){return l=>l>0?i:o}const yt=(o,i,l)=>o+(i-o)*l,jy=(o,i,l)=>{const u=o*o,f=l*(i*i-u)+u;return f<0?0:Math.sqrt(f)},L_=[tg,ms,Mr],H_=o=>L_.find(i=>i.test(o));function pA(o){const i=H_(o);if(Hr(!!i,`'${o}' is not an animatable color. Use the equivalent color code instead.`,"color-not-animatable"),!i)return!1;let l=i.parse(o);return i===Mr&&(l=B_(l)),l}const mA=(o,i)=>{const l=pA(o),u=pA(i);if(!l||!u)return wd(o,i);const f={...l};return p=>(f.red=jy(l.red,u.red,p),f.green=jy(l.green,u.green,p),f.blue=jy(l.blue,u.blue,p),f.alpha=yt(l.alpha,u.alpha,p),ms.transform(f))},ng=new Set(["none","hidden"]);function k_(o,i){return ng.has(o)?l=>l<=0?o:i:l=>l>=1?i:o}function q_(o,i){return l=>yt(o,i,l)}function Hg(o){return typeof o=="number"?q_:typeof o=="string"?jg(o)?wd:Mt.test(o)?mA:P_:Array.isArray(o)?mR:typeof o=="object"?Mt.test(o)?mA:Y_:wd}function mR(o,i){const l=[...o],u=l.length,f=o.map((p,h)=>Hg(p)(p,i[h]));return p=>{for(let h=0;h<u;h++)l[h]=f[h](p);return l}}function Y_(o,i){const l={...o,...i},u={};for(const f in l)o[f]!==void 0&&i[f]!==void 0&&(u[f]=Hg(o[f])(o[f],i[f]));return f=>{for(const p in u)l[p]=u[p](f);return l}}function G_(o,i){const l=[],u={color:0,var:0,number:0};for(let f=0;f<i.values.length;f++){const p=i.types[f],h=o.indexes[p][u[p]],m=o.values[h]??0;l[f]=m,u[p]++}return l}const P_=(o,i)=>{const l=Ti.createTransformer(i),u=zu(o),f=zu(i);return u.indexes.var.length===f.indexes.var.length&&u.indexes.color.length===f.indexes.color.length&&u.indexes.number.length>=f.indexes.number.length?ng.has(o)&&!f.values.length||ng.has(i)&&!u.values.length?k_(o,i):Lu(mR(G_(u,f),f.values),l):(Hr(!0,`Complex values '${o}' and '${i}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`,"complex-values-different"),wd(o,i))};function yR(o,i,l){return typeof o=="number"&&typeof i=="number"&&typeof l=="number"?yt(o,i,l):Hg(o)(o,i)}const X_=o=>{const i=({timestamp:l})=>o(l);return{start:(l=!0)=>rt.update(i,l),stop:()=>Si(i),now:()=>$t.isProcessing?$t.timestamp:dn.now()}},gR=(o,i,l=10)=>{let u="";const f=Math.max(Math.round(i/l),2);for(let p=0;p<f;p++)u+=Math.round(o(p/(f-1))*1e4)/1e4+", ";return`linear(${u.substring(0,u.length-2)})`},Od=2e4;function kg(o){let i=0;const l=50;let u=o.next(i);for(;!u.done&&i<Od;)i+=l,u=o.next(i);return i>=Od?1/0:i}function $_(o,i=100,l){const u=l({...o,keyframes:[0,i]}),f=Math.min(kg(u),Od);return{type:"keyframes",ease:p=>u.next(f*p).value/i,duration:ta(f)}}const Q_=5;function vR(o,i,l){const u=Math.max(i-Q_,0);return JD(l-o(u),i-u)}const mt={stiffness:100,damping:10,mass:1,velocity:0,duration:800,bounce:.3,visualDuration:.3,restSpeed:{granular:.01,default:2},restDelta:{granular:.005,default:.5},minDuration:.01,maxDuration:10,minDamping:.05,maxDamping:1},By=.001;function Z_({duration:o=mt.duration,bounce:i=mt.bounce,velocity:l=mt.velocity,mass:u=mt.mass}){let f,p;Hr(o<=aa(mt.maxDuration),"Spring duration must be 10 seconds or less","spring-duration-limit");let h=1-i;h=Ja(mt.minDamping,mt.maxDamping,h),o=Ja(mt.minDuration,mt.maxDuration,ta(o)),h<1?(f=E=>{const b=E*h,A=b*o,T=b-l,R=ag(E,h),D=Math.exp(-A);return By-T/R*D},p=E=>{const A=E*h*o,T=A*l+l,R=Math.pow(h,2)*Math.pow(E,2)*o,D=Math.exp(-A),j=ag(Math.pow(E,2),h);return(-f(E)+By>0?-1:1)*((T-R)*D)/j}):(f=E=>{const b=Math.exp(-E*o),A=(E-l)*o+1;return-By+b*A},p=E=>{const b=Math.exp(-E*o),A=(l-E)*(o*o);return b*A});const m=5/o,v=J_(f,p,m);if(o=aa(o),isNaN(v))return{stiffness:mt.stiffness,damping:mt.damping,duration:o};{const E=Math.pow(v,2)*u;return{stiffness:E,damping:h*2*Math.sqrt(u*E),duration:o}}}const F_=12;function J_(o,i,l){let u=l;for(let f=1;f<F_;f++)u=u-o(u)/i(u);return u}function ag(o,i){return o*Math.sqrt(1-i*i)}const K_=["duration","bounce"],I_=["stiffness","damping","mass"];function yA(o,i){return i.some(l=>o[l]!==void 0)}function W_(o){let i={velocity:mt.velocity,stiffness:mt.stiffness,damping:mt.damping,mass:mt.mass,isResolvedFromDuration:!1,...o};if(!yA(o,I_)&&yA(o,K_))if(o.visualDuration){const l=o.visualDuration,u=2*Math.PI/(l*1.2),f=u*u,p=2*Ja(.05,1,1-(o.bounce||0))*Math.sqrt(f);i={...i,mass:mt.mass,stiffness:f,damping:p}}else{const l=Z_(o);i={...i,...l,mass:mt.mass},i.isResolvedFromDuration=!0}return i}function Cd(o=mt.visualDuration,i=mt.bounce){const l=typeof o!="object"?{visualDuration:o,keyframes:[0,1],bounce:i}:o;let{restSpeed:u,restDelta:f}=l;const p=l.keyframes[0],h=l.keyframes[l.keyframes.length-1],m={done:!1,value:p},{stiffness:v,damping:E,mass:b,duration:A,velocity:T,isResolvedFromDuration:R}=W_({...l,velocity:-ta(l.velocity||0)}),D=T||0,j=E/(2*Math.sqrt(v*b)),z=h-p,k=ta(Math.sqrt(v/b)),$=Math.abs(z)<5;u||(u=$?mt.restSpeed.granular:mt.restSpeed.default),f||(f=$?mt.restDelta.granular:mt.restDelta.default);let Y;if(j<1){const Z=ag(k,j);Y=Te=>{const ve=Math.exp(-j*k*Te);return h-ve*((D+j*k*z)/Z*Math.sin(Z*Te)+z*Math.cos(Z*Te))}}else if(j===1)Y=Z=>h-Math.exp(-k*Z)*(z+(D+k*z)*Z);else{const Z=k*Math.sqrt(j*j-1);Y=Te=>{const ve=Math.exp(-j*k*Te),W=Math.min(Z*Te,300);return h-ve*((D+j*k*z)*Math.sinh(W)+Z*z*Math.cosh(W))/Z}}const I={calculatedDuration:R&&A||null,next:Z=>{const Te=Y(Z);if(R)m.done=Z>=A;else{let ve=Z===0?D:0;j<1&&(ve=Z===0?aa(D):vR(Y,Z,Te));const W=Math.abs(ve)<=u,ce=Math.abs(h-Te)<=f;m.done=W&&ce}return m.value=m.done?h:Te,m},toString:()=>{const Z=Math.min(kg(I),Od),Te=gR(ve=>I.next(Z*ve).value,Z,30);return Z+"ms "+Te},toTransition:()=>{}};return I}Cd.applyToOptions=o=>{const i=$_(o,100,Cd);return o.ease=i.ease,o.duration=aa(i.duration),o.type="keyframes",o};function og({keyframes:o,velocity:i=0,power:l=.8,timeConstant:u=325,bounceDamping:f=10,bounceStiffness:p=500,modifyTarget:h,min:m,max:v,restDelta:E=.5,restSpeed:b}){const A=o[0],T={done:!1,value:A},R=W=>m!==void 0&&W<m||v!==void 0&&W>v,D=W=>m===void 0?v:v===void 0||Math.abs(m-W)<Math.abs(v-W)?m:v;let j=l*i;const z=A+j,k=h===void 0?z:h(z);k!==z&&(j=k-A);const $=W=>-j*Math.exp(-W/u),Y=W=>k+$(W),I=W=>{const ce=$(W),F=Y(W);T.done=Math.abs(ce)<=E,T.value=T.done?k:F};let Z,Te;const ve=W=>{R(T.value)&&(Z=W,Te=Cd({keyframes:[T.value,D(T.value)],velocity:vR(Y,W,T.value),damping:f,stiffness:p,restDelta:E,restSpeed:b}))};return ve(0),{calculatedDuration:null,next:W=>{let ce=!1;return!Te&&Z===void 0&&(ce=!0,I(W),ve(W)),Z!==void 0&&W>=Z?Te.next(W-Z):(!ce&&I(W),T)}}}function eN(o,i,l){const u=[],f=l||wo.mix||yR,p=o.length-1;for(let h=0;h<p;h++){let m=f(o[h],o[h+1]);if(i){const v=Array.isArray(i)?i[h]||na:i;m=Lu(v,m)}u.push(m)}return u}function tN(o,i,{clamp:l=!0,ease:u,mixer:f}={}){const p=o.length;if(xo(p===i.length,"Both input and output ranges must be the same length","range-length"),p===1)return()=>i[0];if(p===2&&i[0]===i[1])return()=>i[1];const h=o[0]===o[1];o[0]>o[p-1]&&(o=[...o].reverse(),i=[...i].reverse());const m=eN(i,u,f),v=m.length,E=b=>{if(h&&b<o[0])return i[0];let A=0;if(v>1)for(;A<o.length-2&&!(b<o[A+1]);A++);const T=Nu(o[A],o[A+1],b);return m[A](T)};return l?b=>E(Ja(o[0],o[p-1],b)):E}function nN(o,i){const l=o[o.length-1];for(let u=1;u<=i;u++){const f=Nu(0,i,u);o.push(yt(l,1,f))}}function aN(o){const i=[0];return nN(i,o.length-1),i}function oN(o,i){return o.map(l=>l*i)}function iN(o,i){return o.map(()=>i||iR).splice(0,o.length-1)}function _r({duration:o=300,keyframes:i,times:l,ease:u="easeInOut"}){const f=g_(u)?u.map(cA):cA(u),p={done:!1,value:i[0]},h=oN(l&&l.length===i.length?l:aN(i),o),m=tN(h,i,{ease:Array.isArray(f)?f:iN(i,f)});return{calculatedDuration:o,next:v=>(p.value=m(v),p.done=v>=o,p)}}const sN=o=>o!==null;function qg(o,{repeat:i,repeatType:l="loop"},u,f=1){const p=o.filter(sN),m=f<0||i&&l!=="loop"&&i%2===1?0:p.length-1;return!m||u===void 0?p[m]:u}const rN={decay:og,inertia:og,tween:_r,keyframes:_r,spring:Cd};function bR(o){typeof o.type=="string"&&(o.type=rN[o.type])}class Yg{constructor(){this.updateFinished()}get finished(){return this._finished}updateFinished(){this._finished=new Promise(i=>{this.resolve=i})}notifyFinished(){this.resolve()}then(i,l){return this.finished.then(i,l)}}const lN=o=>o/100;class Gg extends Yg{constructor(i){super(),this.state="idle",this.startTime=null,this.isStopped=!1,this.currentTime=0,this.holdTime=null,this.playbackSpeed=1,this.stop=()=>{const{motionValue:l}=this.options;l&&l.updatedAt!==dn.now()&&this.tick(dn.now()),this.isStopped=!0,this.state!=="idle"&&(this.teardown(),this.options.onStop?.())},this.options=i,this.initAnimation(),this.play(),i.autoplay===!1&&this.pause()}initAnimation(){const{options:i}=this;bR(i);const{type:l=_r,repeat:u=0,repeatDelay:f=0,repeatType:p,velocity:h=0}=i;let{keyframes:m}=i;const v=l||_r;v!==_r&&xo(m.length<=2,`Only two keyframes currently supported with spring and inertia animations. Trying to animate ${m}`,"spring-two-frames"),v!==_r&&typeof m[0]!="number"&&(this.mixKeyframes=Lu(lN,yR(m[0],m[1])),m=[0,100]);const E=v({...i,keyframes:m});p==="mirror"&&(this.mirroredGenerator=v({...i,keyframes:[...m].reverse(),velocity:-h})),E.calculatedDuration===null&&(E.calculatedDuration=kg(E));const{calculatedDuration:b}=E;this.calculatedDuration=b,this.resolvedDuration=b+f,this.totalDuration=this.resolvedDuration*(u+1)-f,this.generator=E}updateTime(i){const l=Math.round(i-this.startTime)*this.playbackSpeed;this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=l}tick(i,l=!1){const{generator:u,totalDuration:f,mixKeyframes:p,mirroredGenerator:h,resolvedDuration:m,calculatedDuration:v}=this;if(this.startTime===null)return u.next(0);const{delay:E=0,keyframes:b,repeat:A,repeatType:T,repeatDelay:R,type:D,onUpdate:j,finalKeyframe:z}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,i):this.speed<0&&(this.startTime=Math.min(i-f/this.speed,this.startTime)),l?this.currentTime=i:this.updateTime(i);const k=this.currentTime-E*(this.playbackSpeed>=0?1:-1),$=this.playbackSpeed>=0?k<0:k>f;this.currentTime=Math.max(k,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=f);let Y=this.currentTime,I=u;if(A){const W=Math.min(this.currentTime,f)/m;let ce=Math.floor(W),F=W%1;!F&&W>=1&&(F=1),F===1&&ce--,ce=Math.min(ce,A+1),ce%2&&(T==="reverse"?(F=1-F,R&&(F-=R/m)):T==="mirror"&&(I=h)),Y=Ja(0,1,F)*m}const Z=$?{done:!1,value:b[0]}:I.next(Y);p&&(Z.value=p(Z.value));let{done:Te}=Z;!$&&v!==null&&(Te=this.playbackSpeed>=0?this.currentTime>=f:this.currentTime<=0);const ve=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&Te);return ve&&D!==og&&(Z.value=qg(b,this.options,z,this.speed)),j&&j(Z.value),ve&&this.finish(),Z}then(i,l){return this.finished.then(i,l)}get duration(){return ta(this.calculatedDuration)}get iterationDuration(){const{delay:i=0}=this.options||{};return this.duration+ta(i)}get time(){return ta(this.currentTime)}set time(i){i=aa(i),this.currentTime=i,this.startTime===null||this.holdTime!==null||this.playbackSpeed===0?this.holdTime=i:this.driver&&(this.startTime=this.driver.now()-i/this.playbackSpeed),this.driver?.start(!1)}get speed(){return this.playbackSpeed}set speed(i){this.updateTime(dn.now());const l=this.playbackSpeed!==i;this.playbackSpeed=i,l&&(this.time=ta(this.currentTime))}play(){if(this.isStopped)return;const{driver:i=X_,startTime:l}=this.options;this.driver||(this.driver=i(f=>this.tick(f))),this.options.onPlay?.();const u=this.driver.now();this.state==="finished"?(this.updateFinished(),this.startTime=u):this.holdTime!==null?this.startTime=u-this.holdTime:this.startTime||(this.startTime=l??u),this.state==="finished"&&this.speed<0&&(this.startTime+=this.calculatedDuration),this.holdTime=null,this.state="running",this.driver.start()}pause(){this.state="paused",this.updateTime(dn.now()),this.holdTime=this.currentTime}complete(){this.state!=="running"&&this.play(),this.state="finished",this.holdTime=null}finish(){this.notifyFinished(),this.teardown(),this.state="finished",this.options.onComplete?.()}cancel(){this.holdTime=null,this.startTime=0,this.tick(0),this.teardown(),this.options.onCancel?.()}teardown(){this.state="idle",this.stopDriver(),this.startTime=this.holdTime=null}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(i){return this.startTime=0,this.tick(i,!0)}attachTimeline(i){return this.options.allowFlatten&&(this.options.type="keyframes",this.options.ease="linear",this.initAnimation()),this.driver?.stop(),i.observe(this)}}function uN(o){for(let i=1;i<o.length;i++)o[i]??(o[i]=o[i-1])}const ys=o=>o*180/Math.PI,ig=o=>{const i=ys(Math.atan2(o[1],o[0]));return sg(i)},cN={x:4,y:5,translateX:4,translateY:5,scaleX:0,scaleY:3,scale:o=>(Math.abs(o[0])+Math.abs(o[3]))/2,rotate:ig,rotateZ:ig,skewX:o=>ys(Math.atan(o[1])),skewY:o=>ys(Math.atan(o[2])),skew:o=>(Math.abs(o[1])+Math.abs(o[2]))/2},sg=o=>(o=o%360,o<0&&(o+=360),o),gA=ig,vA=o=>Math.sqrt(o[0]*o[0]+o[1]*o[1]),bA=o=>Math.sqrt(o[4]*o[4]+o[5]*o[5]),fN={x:12,y:13,z:14,translateX:12,translateY:13,translateZ:14,scaleX:vA,scaleY:bA,scale:o=>(vA(o)+bA(o))/2,rotateX:o=>sg(ys(Math.atan2(o[6],o[5]))),rotateY:o=>sg(ys(Math.atan2(-o[2],o[0]))),rotateZ:gA,rotate:gA,skewX:o=>ys(Math.atan(o[4])),skewY:o=>ys(Math.atan(o[1])),skew:o=>(Math.abs(o[1])+Math.abs(o[4]))/2};function rg(o){return o.includes("scale")?1:0}function lg(o,i){if(!o||o==="none")return rg(i);const l=o.match(/^matrix3d\(([-\d.e\s,]+)\)$/u);let u,f;if(l)u=fN,f=l;else{const m=o.match(/^matrix\(([-\d.e\s,]+)\)$/u);u=cN,f=m}if(!f)return rg(i);const p=u[i],h=f[1].split(",").map(hN);return typeof p=="function"?p(h):h[p]}const dN=(o,i)=>{const{transform:l="none"}=getComputedStyle(o);return lg(l,i)};function hN(o){return parseFloat(o.trim())}const qr=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],Yr=new Set(qr),SA=o=>o===kr||o===le,pN=new Set(["x","y","z"]),mN=qr.filter(o=>!pN.has(o));function yN(o){const i=[];return mN.forEach(l=>{const u=o.getValue(l);u!==void 0&&(i.push([l,u.get()]),u.set(l.startsWith("scale")?1:0))}),i}const bi={width:({x:o},{paddingLeft:i="0",paddingRight:l="0"})=>o.max-o.min-parseFloat(i)-parseFloat(l),height:({y:o},{paddingTop:i="0",paddingBottom:l="0"})=>o.max-o.min-parseFloat(i)-parseFloat(l),top:(o,{top:i})=>parseFloat(i),left:(o,{left:i})=>parseFloat(i),bottom:({y:o},{top:i})=>parseFloat(i)+(o.max-o.min),right:({x:o},{left:i})=>parseFloat(i)+(o.max-o.min),x:(o,{transform:i})=>lg(i,"x"),y:(o,{transform:i})=>lg(i,"y")};bi.translateX=bi.x;bi.translateY=bi.y;const vs=new Set;let ug=!1,cg=!1,fg=!1;function SR(){if(cg){const o=Array.from(vs).filter(u=>u.needsMeasurement),i=new Set(o.map(u=>u.element)),l=new Map;i.forEach(u=>{const f=yN(u);f.length&&(l.set(u,f),u.render())}),o.forEach(u=>u.measureInitialState()),i.forEach(u=>{u.render();const f=l.get(u);f&&f.forEach(([p,h])=>{u.getValue(p)?.set(h)})}),o.forEach(u=>u.measureEndState()),o.forEach(u=>{u.suspendedScrollY!==void 0&&window.scrollTo(0,u.suspendedScrollY)})}cg=!1,ug=!1,vs.forEach(o=>o.complete(fg)),vs.clear()}function TR(){vs.forEach(o=>{o.readKeyframes(),o.needsMeasurement&&(cg=!0)})}function gN(){fg=!0,TR(),SR(),fg=!1}class Pg{constructor(i,l,u,f,p,h=!1){this.state="pending",this.isAsync=!1,this.needsMeasurement=!1,this.unresolvedKeyframes=[...i],this.onComplete=l,this.name=u,this.motionValue=f,this.element=p,this.isAsync=h}scheduleResolve(){this.state="scheduled",this.isAsync?(vs.add(this),ug||(ug=!0,rt.read(TR),rt.resolveKeyframes(SR))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:i,name:l,element:u,motionValue:f}=this;if(i[0]===null){const p=f?.get(),h=i[i.length-1];if(p!==void 0)i[0]=p;else if(u&&l){const m=u.readValue(l,h);m!=null&&(i[0]=m)}i[0]===void 0&&(i[0]=h),f&&p===void 0&&f.set(i[0])}uN(i)}setFinalKeyframe(){}measureInitialState(){}renderEndStyles(){}measureEndState(){}complete(i=!1){this.state="complete",this.onComplete(this.unresolvedKeyframes,this.finalKeyframe,i),vs.delete(this)}cancel(){this.state==="scheduled"&&(vs.delete(this),this.state="pending")}resume(){this.state==="pending"&&this.scheduleResolve()}}const vN=o=>o.startsWith("--");function bN(o,i,l){vN(i)?o.style.setProperty(i,l):o.style[i]=l}const SN=_g(()=>window.ScrollTimeline!==void 0),TN={};function EN(o,i){const l=_g(o);return()=>TN[i]??l()}const ER=EN(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch{return!1}return!0},"linearEasing"),Ou=([o,i,l,u])=>`cubic-bezier(${o}, ${i}, ${l}, ${u})`,TA={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:Ou([0,.65,.55,1]),circOut:Ou([.55,0,1,.45]),backIn:Ou([.31,.01,.66,-.59]),backOut:Ou([.33,1.53,.69,.99])};function AR(o,i){if(o)return typeof o=="function"?ER()?gR(o,i):"ease-out":sR(o)?Ou(o):Array.isArray(o)?o.map(l=>AR(l,i)||TA.easeOut):TA[o]}function AN(o,i,l,{delay:u=0,duration:f=300,repeat:p=0,repeatType:h="loop",ease:m="easeOut",times:v}={},E=void 0){const b={[i]:l};v&&(b.offset=v);const A=AR(m,f);Array.isArray(A)&&(b.easing=A);const T={delay:u,duration:f,easing:Array.isArray(A)?"linear":A,fill:"both",iterations:p+1,direction:h==="reverse"?"alternate":"normal"};return E&&(T.pseudoElement=E),o.animate(b,T)}function DR(o){return typeof o=="function"&&"applyToOptions"in o}function DN({type:o,...i}){return DR(o)&&ER()?o.applyToOptions(i):(i.duration??(i.duration=300),i.ease??(i.ease="easeOut"),i)}class RR extends Yg{constructor(i){if(super(),this.finishedTime=null,this.isStopped=!1,this.manualStartTime=null,!i)return;const{element:l,name:u,keyframes:f,pseudoElement:p,allowFlatten:h=!1,finalKeyframe:m,onComplete:v}=i;this.isPseudoElement=!!p,this.allowFlatten=h,this.options=i,xo(typeof i.type!="string",`Mini animate() doesn't support "type" as a string.`,"mini-spring");const E=DN(i);this.animation=AN(l,u,f,E,p),E.autoplay===!1&&this.animation.pause(),this.animation.onfinish=()=>{if(this.finishedTime=this.time,!p){const b=qg(f,this.options,m,this.speed);this.updateMotionValue?this.updateMotionValue(b):bN(l,u,b),this.animation.cancel()}v?.(),this.notifyFinished()}}play(){this.isStopped||(this.manualStartTime=null,this.animation.play(),this.state==="finished"&&this.updateFinished())}pause(){this.animation.pause()}complete(){this.animation.finish?.()}cancel(){try{this.animation.cancel()}catch{}}stop(){if(this.isStopped)return;this.isStopped=!0;const{state:i}=this;i==="idle"||i==="finished"||(this.updateMotionValue?this.updateMotionValue():this.commitStyles(),this.isPseudoElement||this.cancel())}commitStyles(){const i=this.options?.element;!this.isPseudoElement&&i?.isConnected&&this.animation.commitStyles?.()}get duration(){const i=this.animation.effect?.getComputedTiming?.().duration||0;return ta(Number(i))}get iterationDuration(){const{delay:i=0}=this.options||{};return this.duration+ta(i)}get time(){return ta(Number(this.animation.currentTime)||0)}set time(i){this.manualStartTime=null,this.finishedTime=null,this.animation.currentTime=aa(i)}get speed(){return this.animation.playbackRate}set speed(i){i<0&&(this.finishedTime=null),this.animation.playbackRate=i}get state(){return this.finishedTime!==null?"finished":this.animation.playState}get startTime(){return this.manualStartTime??Number(this.animation.startTime)}set startTime(i){this.manualStartTime=this.animation.startTime=i}attachTimeline({timeline:i,observe:l}){return this.allowFlatten&&this.animation.effect?.updateTiming({easing:"linear"}),this.animation.onfinish=null,i&&SN()?(this.animation.timeline=i,na):l(this)}}const xR={anticipate:nR,backInOut:tR,circInOut:oR};function RN(o){return o in xR}function xN(o){typeof o.ease=="string"&&RN(o.ease)&&(o.ease=xR[o.ease])}const Ly=10;class wN extends RR{constructor(i){xN(i),bR(i),super(i),i.startTime!==void 0&&(this.startTime=i.startTime),this.options=i}updateMotionValue(i){const{motionValue:l,onUpdate:u,onComplete:f,element:p,...h}=this.options;if(!l)return;if(i!==void 0){l.set(i);return}const m=new Gg({...h,autoplay:!1}),v=Math.max(Ly,dn.now()-this.startTime),E=Ja(0,Ly,v-Ly);l.setWithVelocity(m.sample(Math.max(0,v-E)).value,m.sample(v).value,E),m.stop()}}const EA=(o,i)=>i==="zIndex"?!1:!!(typeof o=="number"||Array.isArray(o)||typeof o=="string"&&(Ti.test(o)||o==="0")&&!o.startsWith("url("));function ON(o){const i=o[0];if(o.length===1)return!0;for(let l=0;l<o.length;l++)if(o[l]!==i)return!0}function CN(o,i,l,u){const f=o[0];if(f===null)return!1;if(i==="display"||i==="visibility")return!0;const p=o[o.length-1],h=EA(f,i),m=EA(p,i);return Hr(h===m,`You are trying to animate ${i} from "${f}" to "${p}". "${h?p:f}" is not an animatable value.`,"value-not-animatable"),!h||!m?!1:ON(o)||(l==="spring"||DR(l))&&u}function dg(o){o.duration=0,o.type="keyframes"}const MN=new Set(["opacity","clipPath","filter","transform"]),_N=_g(()=>Object.hasOwnProperty.call(Element.prototype,"animate"));function NN(o){const{motionValue:i,name:l,repeatDelay:u,repeatType:f,damping:p,type:h}=o;if(!(i?.owner?.current instanceof HTMLElement))return!1;const{onUpdate:v,transformTemplate:E}=i.owner.getProps();return _N()&&l&&MN.has(l)&&(l!=="transform"||!E)&&!v&&!u&&f!=="mirror"&&p!==0&&h!=="inertia"}const UN=40;class zN extends Yg{constructor({autoplay:i=!0,delay:l=0,type:u="keyframes",repeat:f=0,repeatDelay:p=0,repeatType:h="loop",keyframes:m,name:v,motionValue:E,element:b,...A}){super(),this.stop=()=>{this._animation&&(this._animation.stop(),this.stopTimeline?.()),this.keyframeResolver?.cancel()},this.createdAt=dn.now();const T={autoplay:i,delay:l,type:u,repeat:f,repeatDelay:p,repeatType:h,name:v,motionValue:E,element:b,...A},R=b?.KeyframeResolver||Pg;this.keyframeResolver=new R(m,(D,j,z)=>this.onKeyframesResolved(D,j,T,!z),v,E,b),this.keyframeResolver?.scheduleResolve()}onKeyframesResolved(i,l,u,f){this.keyframeResolver=void 0;const{name:p,type:h,velocity:m,delay:v,isHandoff:E,onUpdate:b}=u;this.resolvedAt=dn.now(),CN(i,p,h,m)||((wo.instantAnimations||!v)&&b?.(qg(i,u,l)),i[0]=i[i.length-1],dg(u),u.repeat=0);const T={startTime:f?this.resolvedAt?this.resolvedAt-this.createdAt>UN?this.resolvedAt:this.createdAt:this.createdAt:void 0,finalKeyframe:l,...u,keyframes:i},R=!E&&NN(T),D=T.motionValue?.owner?.current,j=R?new wN({...T,element:D}):new Gg(T);j.finished.then(()=>{this.notifyFinished()}).catch(na),this.pendingTimeline&&(this.stopTimeline=j.attachTimeline(this.pendingTimeline),this.pendingTimeline=void 0),this._animation=j}get finished(){return this._animation?this.animation.finished:this._finished}then(i,l){return this.finished.finally(i).then(()=>{})}get animation(){return this._animation||(this.keyframeResolver?.resume(),gN()),this._animation}get duration(){return this.animation.duration}get iterationDuration(){return this.animation.iterationDuration}get time(){return this.animation.time}set time(i){this.animation.time=i}get speed(){return this.animation.speed}get state(){return this.animation.state}set speed(i){this.animation.speed=i}get startTime(){return this.animation.startTime}attachTimeline(i){return this._animation?this.stopTimeline=this.animation.attachTimeline(i):this.pendingTimeline=i,()=>this.stop()}play(){this.animation.play()}pause(){this.animation.pause()}complete(){this.animation.complete()}cancel(){this._animation&&this.animation.cancel(),this.keyframeResolver?.cancel()}}function wR(o,i,l,u=0,f=1){const p=Array.from(o).sort((E,b)=>E.sortNodePosition(b)).indexOf(i),h=o.size,m=(h-1)*u;return typeof l=="function"?l(p,h):f===1?p*u:m-p*u}const VN=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function jN(o){const i=VN.exec(o);if(!i)return[,];const[,l,u,f]=i;return[`--${l??u}`,f]}const BN=4;function OR(o,i,l=1){xo(l<=BN,`Max CSS variable fallback depth detected in property "${o}". This may indicate a circular fallback dependency.`,"max-css-var-depth");const[u,f]=jN(o);if(!u)return;const p=window.getComputedStyle(i).getPropertyValue(u);if(p){const h=p.trim();return QD(h)?parseFloat(h):h}return jg(f)?OR(f,i,l+1):f}const LN={type:"spring",stiffness:500,damping:25,restSpeed:10},HN=o=>({type:"spring",stiffness:550,damping:o===0?2*Math.sqrt(550):30,restSpeed:10}),kN={type:"keyframes",duration:.8},qN={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},YN=(o,{keyframes:i})=>i.length>2?kN:Yr.has(o)?o.startsWith("scale")?HN(i[1]):LN:qN,GN=o=>o!==null;function PN(o,{repeat:i,repeatType:l="loop"},u){const f=o.filter(GN),p=i&&l!=="loop"&&i%2===1?0:f.length-1;return f[p]}function CR(o,i){if(o?.inherit&&i){const{inherit:l,...u}=o;return{...i,...u}}return o}function Xg(o,i){const l=o?.[i]??o?.default??o;return l!==o?CR(l,o):l}function XN({when:o,delay:i,delayChildren:l,staggerChildren:u,staggerDirection:f,repeat:p,repeatType:h,repeatDelay:m,from:v,elapsed:E,...b}){return!!Object.keys(b).length}const $g=(o,i,l,u={},f,p)=>h=>{const m=Xg(u,o)||{},v=m.delay||u.delay||0;let{elapsed:E=0}=u;E=E-aa(v);const b={keyframes:Array.isArray(l)?l:[null,l],ease:"easeOut",velocity:i.getVelocity(),...m,delay:-E,onUpdate:T=>{i.set(T),m.onUpdate&&m.onUpdate(T)},onComplete:()=>{h(),m.onComplete&&m.onComplete()},name:o,motionValue:i,element:p?void 0:f};XN(m)||Object.assign(b,YN(o,b)),b.duration&&(b.duration=aa(b.duration)),b.repeatDelay&&(b.repeatDelay=aa(b.repeatDelay)),b.from!==void 0&&(b.keyframes[0]=b.from);let A=!1;if((b.type===!1||b.duration===0&&!b.repeatDelay)&&(dg(b),b.delay===0&&(A=!0)),(wo.instantAnimations||wo.skipAnimations||f?.shouldSkipAnimations)&&(A=!0,dg(b),b.delay=0),b.allowFlatten=!m.type&&!m.ease,A&&!p&&i.get()!==void 0){const T=PN(b.keyframes,m);if(T!==void 0){rt.update(()=>{b.onUpdate(T),b.onComplete()});return}}return m.isSync?new Gg(b):new zN(b)};function AA(o){const i=[{},{}];return o?.values.forEach((l,u)=>{i[0][u]=l.get(),i[1][u]=l.getVelocity()}),i}function Qg(o,i,l,u){if(typeof i=="function"){const[f,p]=AA(u);i=i(l!==void 0?l:o.custom,f,p)}if(typeof i=="string"&&(i=o.variants&&o.variants[i]),typeof i=="function"){const[f,p]=AA(u);i=i(l!==void 0?l:o.custom,f,p)}return i}function jr(o,i,l){const u=o.getProps();return Qg(u,i,l!==void 0?l:u.custom,o)}const MR=new Set(["width","height","top","left","right","bottom",...qr]),DA=30,$N=o=>!isNaN(parseFloat(o));class QN{constructor(i,l={}){this.canTrackVelocity=null,this.events={},this.updateAndNotify=u=>{const f=dn.now();if(this.updatedAt!==f&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(u),this.current!==this.prev&&(this.events.change?.notify(this.current),this.dependents))for(const p of this.dependents)p.dirty()},this.hasAnimated=!1,this.setCurrent(i),this.owner=l.owner}setCurrent(i){this.current=i,this.updatedAt=dn.now(),this.canTrackVelocity===null&&i!==void 0&&(this.canTrackVelocity=$N(this.current))}setPrevFrameValue(i=this.current){this.prevFrameValue=i,this.prevUpdatedAt=this.updatedAt}onChange(i){return Ug(!1,'value.onChange(callback) is deprecated. Switch to value.on("change", callback).'),this.on("change",i)}on(i,l){this.events[i]||(this.events[i]=new Ng);const u=this.events[i].add(l);return i==="change"?()=>{u(),rt.read(()=>{this.events.change.getSize()||this.stop()})}:u}clearListeners(){for(const i in this.events)this.events[i].clear()}attach(i,l){this.passiveEffect=i,this.stopPassiveEffect=l}set(i){this.passiveEffect?this.passiveEffect(i,this.updateAndNotify):this.updateAndNotify(i)}setWithVelocity(i,l,u){this.set(l),this.prev=void 0,this.prevFrameValue=i,this.prevUpdatedAt=this.updatedAt-u}jump(i,l=!0){this.updateAndNotify(i),this.prev=i,this.prevUpdatedAt=this.prevFrameValue=void 0,l&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}dirty(){this.events.change?.notify(this.current)}addDependent(i){this.dependents||(this.dependents=new Set),this.dependents.add(i)}removeDependent(i){this.dependents&&this.dependents.delete(i)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const i=dn.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||i-this.updatedAt>DA)return 0;const l=Math.min(this.updatedAt-this.prevUpdatedAt,DA);return JD(parseFloat(this.current)-parseFloat(this.prevFrameValue),l)}start(i){return this.stop(),new Promise(l=>{this.hasAnimated=!0,this.animation=i(l),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.dependents?.clear(),this.events.destroy?.notify(),this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function Br(o,i){return new QN(o,i)}const hg=o=>Array.isArray(o);function ZN(o,i,l){o.hasValue(i)?o.getValue(i).set(l):o.addValue(i,Br(l))}function FN(o){return hg(o)?o[o.length-1]||0:o}function JN(o,i){const l=jr(o,i);let{transitionEnd:u={},transition:f={},...p}=l||{};p={...p,...u};for(const h in p){const m=FN(p[h]);ZN(o,h,m)}}const en=o=>!!(o&&o.getVelocity);function KN(o){return!!(en(o)&&o.add)}function pg(o,i){const l=o.getValue("willChange");if(KN(l))return l.add(i);if(!l&&wo.WillChange){const u=new wo.WillChange("auto");o.addValue("willChange",u),u.add(i)}}function Zg(o){return o.replace(/([A-Z])/g,i=>`-${i.toLowerCase()}`)}const IN="framerAppearId",_R="data-"+Zg(IN);function NR(o){return o.props[_R]}function WN({protectedKeys:o,needsAnimating:i},l){const u=o.hasOwnProperty(l)&&i[l]!==!0;return i[l]=!1,u}function UR(o,i,{delay:l=0,transitionOverride:u,type:f}={}){let{transition:p,transitionEnd:h,...m}=i;const v=o.getDefaultTransition();p=p?CR(p,v):v;const E=p?.reduceMotion;u&&(p=u);const b=[],A=f&&o.animationState&&o.animationState.getState()[f];for(const T in m){const R=o.getValue(T,o.latestValues[T]??null),D=m[T];if(D===void 0||A&&WN(A,T))continue;const j={delay:l,...Xg(p||{},T)},z=R.get();if(z!==void 0&&!R.isAnimating&&!Array.isArray(D)&&D===z&&!j.velocity)continue;let k=!1;if(window.MotionHandoffAnimation){const I=NR(o);if(I){const Z=window.MotionHandoffAnimation(I,T,rt);Z!==null&&(j.startTime=Z,k=!0)}}pg(o,T);const $=E??o.shouldReduceMotion;R.start($g(T,R,D,$&&MR.has(T)?{type:!1}:j,o,k));const Y=R.animation;Y&&b.push(Y)}if(h){const T=()=>rt.update(()=>{h&&JN(o,h)});b.length?Promise.all(b).then(T):T()}return b}function mg(o,i,l={}){const u=jr(o,i,l.type==="exit"?o.presenceContext?.custom:void 0);let{transition:f=o.getDefaultTransition()||{}}=u||{};l.transitionOverride&&(f=l.transitionOverride);const p=u?()=>Promise.all(UR(o,u,l)):()=>Promise.resolve(),h=o.variantChildren&&o.variantChildren.size?(v=0)=>{const{delayChildren:E=0,staggerChildren:b,staggerDirection:A}=f;return eU(o,i,v,E,b,A,l)}:()=>Promise.resolve(),{when:m}=f;if(m){const[v,E]=m==="beforeChildren"?[p,h]:[h,p];return v().then(()=>E())}else return Promise.all([p(),h(l.delay)])}function eU(o,i,l=0,u=0,f=0,p=1,h){const m=[];for(const v of o.variantChildren)v.notify("AnimationStart",i),m.push(mg(v,i,{...h,delay:l+(typeof u=="function"?0:u)+wR(o.variantChildren,v,u,f,p)}).then(()=>v.notify("AnimationComplete",i)));return Promise.all(m)}function tU(o,i,l={}){o.notify("AnimationStart",i);let u;if(Array.isArray(i)){const f=i.map(p=>mg(o,p,l));u=Promise.all(f)}else if(typeof i=="string")u=mg(o,i,l);else{const f=typeof i=="function"?jr(o,i,l.custom):i;u=Promise.all(UR(o,f,l))}return u.then(()=>{o.notify("AnimationComplete",i)})}const nU={test:o=>o==="auto",parse:o=>o},zR=o=>i=>i.test(o),VR=[kr,le,Fa,vi,C_,O_,nU],RA=o=>VR.find(zR(o));function aU(o){return typeof o=="number"?o===0:o!==null?o==="none"||o==="0"||FD(o):!0}const oU=new Set(["brightness","contrast","saturate","opacity"]);function iU(o){const[i,l]=o.slice(0,-1).split("(");if(i==="drop-shadow")return o;const[u]=l.match(Bg)||[];if(!u)return o;const f=l.replace(u,"");let p=oU.has(i)?1:0;return u!==l&&(p*=100),i+"("+p+f+")"}const sU=/\b([a-z-]*)\(.*?\)/gu,yg={...Ti,getAnimatableNone:o=>{const i=o.match(sU);return i?i.map(iU).join(" "):o}},xA={...kr,transform:Math.round},rU={rotate:vi,rotateX:vi,rotateY:vi,rotateZ:vi,scale:dd,scaleX:dd,scaleY:dd,scaleZ:dd,skew:vi,skewX:vi,skewY:vi,distance:le,translateX:le,translateY:le,translateZ:le,x:le,y:le,z:le,perspective:le,transformPerspective:le,opacity:Uu,originX:dA,originY:dA,originZ:le},Fg={borderWidth:le,borderTopWidth:le,borderRightWidth:le,borderBottomWidth:le,borderLeftWidth:le,borderRadius:le,borderTopLeftRadius:le,borderTopRightRadius:le,borderBottomRightRadius:le,borderBottomLeftRadius:le,width:le,maxWidth:le,height:le,maxHeight:le,top:le,right:le,bottom:le,left:le,inset:le,insetBlock:le,insetBlockStart:le,insetBlockEnd:le,insetInline:le,insetInlineStart:le,insetInlineEnd:le,padding:le,paddingTop:le,paddingRight:le,paddingBottom:le,paddingLeft:le,paddingBlock:le,paddingBlockStart:le,paddingBlockEnd:le,paddingInline:le,paddingInlineStart:le,paddingInlineEnd:le,margin:le,marginTop:le,marginRight:le,marginBottom:le,marginLeft:le,marginBlock:le,marginBlockStart:le,marginBlockEnd:le,marginInline:le,marginInlineStart:le,marginInlineEnd:le,fontSize:le,backgroundPositionX:le,backgroundPositionY:le,...rU,zIndex:xA,fillOpacity:Uu,strokeOpacity:Uu,numOctaves:xA},lU={...Fg,color:Mt,backgroundColor:Mt,outlineColor:Mt,fill:Mt,stroke:Mt,borderColor:Mt,borderTopColor:Mt,borderRightColor:Mt,borderBottomColor:Mt,borderLeftColor:Mt,filter:yg,WebkitFilter:yg},jR=o=>lU[o];function BR(o,i){let l=jR(o);return l!==yg&&(l=Ti),l.getAnimatableNone?l.getAnimatableNone(i):void 0}const uU=new Set(["auto","none","0"]);function cU(o,i,l){let u=0,f;for(;u<o.length&&!f;){const p=o[u];typeof p=="string"&&!uU.has(p)&&zu(p).values.length&&(f=o[u]),u++}if(f&&l)for(const p of i)o[p]=BR(l,f)}class fU extends Pg{constructor(i,l,u,f,p){super(i,l,u,f,p,!0)}readKeyframes(){const{unresolvedKeyframes:i,element:l,name:u}=this;if(!l||!l.current)return;super.readKeyframes();for(let b=0;b<i.length;b++){let A=i[b];if(typeof A=="string"&&(A=A.trim(),jg(A))){const T=OR(A,l.current);T!==void 0&&(i[b]=T),b===i.length-1&&(this.finalKeyframe=A)}}if(this.resolveNoneKeyframes(),!MR.has(u)||i.length!==2)return;const[f,p]=i,h=RA(f),m=RA(p),v=fA(f),E=fA(p);if(v!==E&&bi[u]){this.needsMeasurement=!0;return}if(h!==m)if(SA(h)&&SA(m))for(let b=0;b<i.length;b++){const A=i[b];typeof A=="string"&&(i[b]=parseFloat(A))}else bi[u]&&(this.needsMeasurement=!0)}resolveNoneKeyframes(){const{unresolvedKeyframes:i,name:l}=this,u=[];for(let f=0;f<i.length;f++)(i[f]===null||aU(i[f]))&&u.push(f);u.length&&cU(i,u,l)}measureInitialState(){const{element:i,unresolvedKeyframes:l,name:u}=this;if(!i||!i.current)return;u==="height"&&(this.suspendedScrollY=window.pageYOffset),this.measuredOrigin=bi[u](i.measureViewportBox(),window.getComputedStyle(i.current)),l[0]=this.measuredOrigin;const f=l[l.length-1];f!==void 0&&i.getValue(u,f).jump(f,!1)}measureEndState(){const{element:i,name:l,unresolvedKeyframes:u}=this;if(!i||!i.current)return;const f=i.getValue(l);f&&f.jump(this.measuredOrigin,!1);const p=u.length-1,h=u[p];u[p]=bi[l](i.measureViewportBox(),window.getComputedStyle(i.current)),h!==null&&this.finalKeyframe===void 0&&(this.finalKeyframe=h),this.removedTransforms?.length&&this.removedTransforms.forEach(([m,v])=>{i.getValue(m).set(v)}),this.resolveNoneKeyframes()}}const dU=new Set(["opacity","clipPath","filter","transform"]);function LR(o,i,l){if(o==null)return[];if(o instanceof EventTarget)return[o];if(typeof o=="string"){let u=document;const f=l?.[o]??u.querySelectorAll(o);return f?Array.from(f):[]}return Array.from(o).filter(u=>u!=null)}const HR=(o,i)=>i&&typeof o=="number"?i.transform(o):o;function gg(o){return ZD(o)&&"offsetHeight"in o}const{schedule:Jg}=rR(queueMicrotask,!1),ga={x:!1,y:!1};function kR(){return ga.x||ga.y}function hU(o){return o==="x"||o==="y"?ga[o]?null:(ga[o]=!0,()=>{ga[o]=!1}):ga.x||ga.y?null:(ga.x=ga.y=!0,()=>{ga.x=ga.y=!1})}function qR(o,i){const l=LR(o),u=new AbortController,f={passive:!0,...i,signal:u.signal};return[l,f,()=>u.abort()]}function pU(o){return!(o.pointerType==="touch"||kR())}function mU(o,i,l={}){const[u,f,p]=qR(o,l);return u.forEach(h=>{let m=!1,v=!1,E;const b=()=>{h.removeEventListener("pointerleave",D)},A=z=>{E&&(E(z),E=void 0),b()},T=z=>{m=!1,window.removeEventListener("pointerup",T),window.removeEventListener("pointercancel",T),v&&(v=!1,A(z))},R=()=>{m=!0,window.addEventListener("pointerup",T,f),window.addEventListener("pointercancel",T,f)},D=z=>{if(z.pointerType!=="touch"){if(m){v=!0;return}A(z)}},j=z=>{if(!pU(z))return;v=!1;const k=i(h,z);typeof k=="function"&&(E=k,h.addEventListener("pointerleave",D,f))};h.addEventListener("pointerenter",j,f),h.addEventListener("pointerdown",R,f)}),p}const YR=(o,i)=>i?o===i?!0:YR(o,i.parentElement):!1,Kg=o=>o.pointerType==="mouse"?typeof o.button!="number"||o.button<=0:o.isPrimary!==!1,yU=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]);function gU(o){return yU.has(o.tagName)||o.isContentEditable===!0}const vU=new Set(["INPUT","SELECT","TEXTAREA"]);function bU(o){return vU.has(o.tagName)||o.isContentEditable===!0}const gd=new WeakSet;function wA(o){return i=>{i.key==="Enter"&&o(i)}}function Hy(o,i){o.dispatchEvent(new PointerEvent("pointer"+i,{isPrimary:!0,bubbles:!0}))}const SU=(o,i)=>{const l=o.currentTarget;if(!l)return;const u=wA(()=>{if(gd.has(l))return;Hy(l,"down");const f=wA(()=>{Hy(l,"up")}),p=()=>Hy(l,"cancel");l.addEventListener("keyup",f,i),l.addEventListener("blur",p,i)});l.addEventListener("keydown",u,i),l.addEventListener("blur",()=>l.removeEventListener("keydown",u),i)};function OA(o){return Kg(o)&&!kR()}const CA=new WeakSet;function TU(o,i,l={}){const[u,f,p]=qR(o,l),h=m=>{const v=m.currentTarget;if(!OA(m)||CA.has(m))return;gd.add(v),l.stopPropagation&&CA.add(m);const E=i(v,m),b=(R,D)=>{window.removeEventListener("pointerup",A),window.removeEventListener("pointercancel",T),gd.has(v)&&gd.delete(v),OA(R)&&typeof E=="function"&&E(R,{success:D})},A=R=>{b(R,v===window||v===document||l.useGlobalTarget||YR(v,R.target))},T=R=>{b(R,!1)};window.addEventListener("pointerup",A,f),window.addEventListener("pointercancel",T,f)};return u.forEach(m=>{(l.useGlobalTarget?window:m).addEventListener("pointerdown",h,f),gg(m)&&(m.addEventListener("focus",E=>SU(E,f)),!gU(m)&&!m.hasAttribute("tabindex")&&(m.tabIndex=0))}),p}function Ig(o){return ZD(o)&&"ownerSVGElement"in o}const vd=new WeakMap;let bd;const GR=(o,i,l)=>(u,f)=>f&&f[0]?f[0][o+"Size"]:Ig(u)&&"getBBox"in u?u.getBBox()[i]:u[l],EU=GR("inline","width","offsetWidth"),AU=GR("block","height","offsetHeight");function DU({target:o,borderBoxSize:i}){vd.get(o)?.forEach(l=>{l(o,{get width(){return EU(o,i)},get height(){return AU(o,i)}})})}function RU(o){o.forEach(DU)}function xU(){typeof ResizeObserver>"u"||(bd=new ResizeObserver(RU))}function wU(o,i){bd||xU();const l=LR(o);return l.forEach(u=>{let f=vd.get(u);f||(f=new Set,vd.set(u,f)),f.add(i),bd?.observe(u)}),()=>{l.forEach(u=>{const f=vd.get(u);f?.delete(i),f?.size||bd?.unobserve(u)})}}const Sd=new Set;let Nr;function OU(){Nr=()=>{const o={get width(){return window.innerWidth},get height(){return window.innerHeight}};Sd.forEach(i=>i(o))},window.addEventListener("resize",Nr)}function CU(o){return Sd.add(o),Nr||OU(),()=>{Sd.delete(o),!Sd.size&&typeof Nr=="function"&&(window.removeEventListener("resize",Nr),Nr=void 0)}}function MA(o,i){return typeof o=="function"?CU(o):wU(o,i)}function MU(o){return Ig(o)&&o.tagName==="svg"}const _U=[...VR,Mt,Ti],NU=o=>_U.find(zR(o)),_A=()=>({translate:0,scale:1,origin:0,originPoint:0}),Ur=()=>({x:_A(),y:_A()}),NA=()=>({min:0,max:0}),zt=()=>({x:NA(),y:NA()}),UU=new WeakMap;function jd(o){return o!==null&&typeof o=="object"&&typeof o.start=="function"}function Vu(o){return typeof o=="string"||Array.isArray(o)}const Wg=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],ev=["initial",...Wg];function Bd(o){return jd(o.animate)||ev.some(i=>Vu(o[i]))}function PR(o){return!!(Bd(o)||o.variants)}function zU(o,i,l){for(const u in i){const f=i[u],p=l[u];if(en(f))o.addValue(u,f);else if(en(p))o.addValue(u,Br(f,{owner:o}));else if(p!==f)if(o.hasValue(u)){const h=o.getValue(u);h.liveStyle===!0?h.jump(f):h.hasAnimated||h.set(f)}else{const h=o.getStaticValue(u);o.addValue(u,Br(h!==void 0?h:f,{owner:o}))}}for(const u in l)i[u]===void 0&&o.removeValue(u);return i}const vg={current:null},XR={current:!1},VU=typeof window<"u";function jU(){if(XR.current=!0,!!VU)if(window.matchMedia){const o=window.matchMedia("(prefers-reduced-motion)"),i=()=>vg.current=o.matches;o.addEventListener("change",i),i()}else vg.current=!1}const UA=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];let Md={};function $R(o){Md=o}function BU(){return Md}class LU{scrapeMotionValuesFromProps(i,l,u){return{}}constructor({parent:i,props:l,presenceContext:u,reducedMotionConfig:f,skipAnimations:p,blockInitialAnimation:h,visualState:m},v={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.shouldSkipAnimations=!1,this.values=new Map,this.KeyframeResolver=Pg,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.hasBeenMounted=!1,this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const R=dn.now();this.renderScheduledAt<R&&(this.renderScheduledAt=R,rt.render(this.render,!1,!0))};const{latestValues:E,renderState:b}=m;this.latestValues=E,this.baseTarget={...E},this.initialValues=l.initial?{...E}:{},this.renderState=b,this.parent=i,this.props=l,this.presenceContext=u,this.depth=i?i.depth+1:0,this.reducedMotionConfig=f,this.skipAnimationsConfig=p,this.options=v,this.blockInitialAnimation=!!h,this.isControllingVariants=Bd(l),this.isVariantNode=PR(l),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(i&&i.current);const{willChange:A,...T}=this.scrapeMotionValuesFromProps(l,{},this);for(const R in T){const D=T[R];E[R]!==void 0&&en(D)&&D.set(E[R])}}mount(i){if(this.hasBeenMounted)for(const l in this.initialValues)this.values.get(l)?.jump(this.initialValues[l]),this.latestValues[l]=this.initialValues[l];this.current=i,UU.set(i,this),this.projection&&!this.projection.instance&&this.projection.mount(i),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach((l,u)=>this.bindToMotionValue(u,l)),this.reducedMotionConfig==="never"?this.shouldReduceMotion=!1:this.reducedMotionConfig==="always"?this.shouldReduceMotion=!0:(XR.current||jU(),this.shouldReduceMotion=vg.current),Ug(this.shouldReduceMotion!==!0,"You have Reduced Motion enabled on your device. Animations may not appear as expected.","reduced-motion-disabled"),this.shouldSkipAnimations=this.skipAnimationsConfig??!1,this.parent?.addChild(this),this.update(this.props,this.presenceContext),this.hasBeenMounted=!0}unmount(){this.projection&&this.projection.unmount(),Si(this.notifyUpdate),Si(this.render),this.valueSubscriptions.forEach(i=>i()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent?.removeChild(this);for(const i in this.events)this.events[i].clear();for(const i in this.features){const l=this.features[i];l&&(l.unmount(),l.isMounted=!1)}this.current=null}addChild(i){this.children.add(i),this.enteringChildren??(this.enteringChildren=new Set),this.enteringChildren.add(i)}removeChild(i){this.children.delete(i),this.enteringChildren&&this.enteringChildren.delete(i)}bindToMotionValue(i,l){if(this.valueSubscriptions.has(i)&&this.valueSubscriptions.get(i)(),l.accelerate&&dU.has(i)&&this.current instanceof HTMLElement){const{factory:h,keyframes:m,times:v,ease:E,duration:b}=l.accelerate,A=new RR({element:this.current,name:i,keyframes:m,times:v,ease:E,duration:aa(b)}),T=h(A);this.valueSubscriptions.set(i,()=>{T(),A.cancel()});return}const u=Yr.has(i);u&&this.onBindTransform&&this.onBindTransform();const f=l.on("change",h=>{this.latestValues[i]=h,this.props.onUpdate&&rt.preRender(this.notifyUpdate),u&&this.projection&&(this.projection.isTransformDirty=!0),this.scheduleRender()});let p;typeof window<"u"&&window.MotionCheckAppearSync&&(p=window.MotionCheckAppearSync(this,i,l)),this.valueSubscriptions.set(i,()=>{f(),p&&p(),l.owner&&l.stop()})}sortNodePosition(i){return!this.current||!this.sortInstanceNodePosition||this.type!==i.type?0:this.sortInstanceNodePosition(this.current,i.current)}updateFeatures(){let i="animation";for(i in Md){const l=Md[i];if(!l)continue;const{isEnabled:u,Feature:f}=l;if(!this.features[i]&&f&&u(this.props)&&(this.features[i]=new f(this)),this.features[i]){const p=this.features[i];p.isMounted?p.update():(p.mount(),p.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):zt()}getStaticValue(i){return this.latestValues[i]}setStaticValue(i,l){this.latestValues[i]=l}update(i,l){(i.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=i,this.prevPresenceContext=this.presenceContext,this.presenceContext=l;for(let u=0;u<UA.length;u++){const f=UA[u];this.propEventSubscriptions[f]&&(this.propEventSubscriptions[f](),delete this.propEventSubscriptions[f]);const p="on"+f,h=i[p];h&&(this.propEventSubscriptions[f]=this.on(f,h))}this.prevMotionValues=zU(this,this.scrapeMotionValuesFromProps(i,this.prevProps||{},this),this.prevMotionValues),this.handleChildMotionValue&&this.handleChildMotionValue()}getProps(){return this.props}getVariant(i){return this.props.variants?this.props.variants[i]:void 0}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){return this.isVariantNode?this:this.parent?this.parent.getClosestVariantNode():void 0}addVariantChild(i){const l=this.getClosestVariantNode();if(l)return l.variantChildren&&l.variantChildren.add(i),()=>l.variantChildren.delete(i)}addValue(i,l){const u=this.values.get(i);l!==u&&(u&&this.removeValue(i),this.bindToMotionValue(i,l),this.values.set(i,l),this.latestValues[i]=l.get())}removeValue(i){this.values.delete(i);const l=this.valueSubscriptions.get(i);l&&(l(),this.valueSubscriptions.delete(i)),delete this.latestValues[i],this.removeValueFromRenderState(i,this.renderState)}hasValue(i){return this.values.has(i)}getValue(i,l){if(this.props.values&&this.props.values[i])return this.props.values[i];let u=this.values.get(i);return u===void 0&&l!==void 0&&(u=Br(l===null?void 0:l,{owner:this}),this.addValue(i,u)),u}readValue(i,l){let u=this.latestValues[i]!==void 0||!this.current?this.latestValues[i]:this.getBaseTargetFromProps(this.props,i)??this.readValueFromInstance(this.current,i,this.options);return u!=null&&(typeof u=="string"&&(QD(u)||FD(u))?u=parseFloat(u):!NU(u)&&Ti.test(l)&&(u=BR(i,l)),this.setBaseTarget(i,en(u)?u.get():u)),en(u)?u.get():u}setBaseTarget(i,l){this.baseTarget[i]=l}getBaseTarget(i){const{initial:l}=this.props;let u;if(typeof l=="string"||typeof l=="object"){const p=Qg(this.props,l,this.presenceContext?.custom);p&&(u=p[i])}if(l&&u!==void 0)return u;const f=this.getBaseTargetFromProps(this.props,i);return f!==void 0&&!en(f)?f:this.initialValues[i]!==void 0&&u===void 0?void 0:this.baseTarget[i]}on(i,l){return this.events[i]||(this.events[i]=new Ng),this.events[i].add(l)}notify(i,...l){this.events[i]&&this.events[i].notify(...l)}scheduleRenderMicrotask(){Jg.render(this.render)}}class QR extends LU{constructor(){super(...arguments),this.KeyframeResolver=fU}sortInstanceNodePosition(i,l){return i.compareDocumentPosition(l)&2?1:-1}getBaseTargetFromProps(i,l){const u=i.style;return u?u[l]:void 0}removeValueFromRenderState(i,{vars:l,style:u}){delete l[i],delete u[i]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:i}=this.props;en(i)&&(this.childSubscription=i.on("change",l=>{this.current&&(this.current.textContent=`${l}`)}))}}class Ei{constructor(i){this.isMounted=!1,this.node=i}update(){}}function ZR({top:o,left:i,right:l,bottom:u}){return{x:{min:i,max:l},y:{min:o,max:u}}}function HU({x:o,y:i}){return{top:i.min,right:o.max,bottom:i.max,left:o.min}}function kU(o,i){if(!i)return o;const l=i({x:o.left,y:o.top}),u=i({x:o.right,y:o.bottom});return{top:l.y,left:l.x,bottom:u.y,right:u.x}}function ky(o){return o===void 0||o===1}function bg({scale:o,scaleX:i,scaleY:l}){return!ky(o)||!ky(i)||!ky(l)}function ps(o){return bg(o)||FR(o)||o.z||o.rotate||o.rotateX||o.rotateY||o.skewX||o.skewY}function FR(o){return zA(o.x)||zA(o.y)}function zA(o){return o&&o!=="0%"}function _d(o,i,l){const u=o-l,f=i*u;return l+f}function VA(o,i,l,u,f){return f!==void 0&&(o=_d(o,f,u)),_d(o,l,u)+i}function Sg(o,i=0,l=1,u,f){o.min=VA(o.min,i,l,u,f),o.max=VA(o.max,i,l,u,f)}function JR(o,{x:i,y:l}){Sg(o.x,i.translate,i.scale,i.originPoint),Sg(o.y,l.translate,l.scale,l.originPoint)}const jA=.999999999999,BA=1.0000000000001;function qU(o,i,l,u=!1){const f=l.length;if(!f)return;i.x=i.y=1;let p,h;for(let m=0;m<f;m++){p=l[m],h=p.projectionDelta;const{visualElement:v}=p.options;v&&v.props.style&&v.props.style.display==="contents"||(u&&p.options.layoutScroll&&p.scroll&&p!==p.root&&Vr(o,{x:-p.scroll.offset.x,y:-p.scroll.offset.y}),h&&(i.x*=h.x.scale,i.y*=h.y.scale,JR(o,h)),u&&ps(p.latestValues)&&Vr(o,p.latestValues))}i.x<BA&&i.x>jA&&(i.x=1),i.y<BA&&i.y>jA&&(i.y=1)}function zr(o,i){o.min=o.min+i,o.max=o.max+i}function LA(o,i,l,u,f=.5){const p=yt(o.min,o.max,f);Sg(o,i,l,p,u)}function Vr(o,i){LA(o.x,i.x,i.scaleX,i.scale,i.originX),LA(o.y,i.y,i.scaleY,i.scale,i.originY)}function KR(o,i){return ZR(kU(o.getBoundingClientRect(),i))}function YU(o,i,l){const u=KR(o,l),{scroll:f}=i;return f&&(zr(u.x,f.offset.x),zr(u.y,f.offset.y)),u}const GU={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},PU=qr.length;function XU(o,i,l){let u="",f=!0;for(let p=0;p<PU;p++){const h=qr[p],m=o[h];if(m===void 0)continue;let v=!0;if(typeof m=="number")v=m===(h.startsWith("scale")?1:0);else{const E=parseFloat(m);v=h.startsWith("scale")?E===1:E===0}if(!v||l){const E=HR(m,Fg[h]);if(!v){f=!1;const b=GU[h]||h;u+=`${b}(${E}) `}l&&(i[h]=E)}}return u=u.trim(),l?u=l(i,f?"":u):f&&(u="none"),u}function tv(o,i,l){const{style:u,vars:f,transformOrigin:p}=o;let h=!1,m=!1;for(const v in i){const E=i[v];if(Yr.has(v)){h=!0;continue}else if(uR(v)){f[v]=E;continue}else{const b=HR(E,Fg[v]);v.startsWith("origin")?(m=!0,p[v]=b):u[v]=b}}if(i.transform||(h||l?u.transform=XU(i,o.transform,l):u.transform&&(u.transform="none")),m){const{originX:v="50%",originY:E="50%",originZ:b=0}=p;u.transformOrigin=`${v} ${E} ${b}`}}function IR(o,{style:i,vars:l},u,f){const p=o.style;let h;for(h in i)p[h]=i[h];f?.applyProjectionStyles(p,u);for(h in l)p.setProperty(h,l[h])}function HA(o,i){return i.max===i.min?0:o/(i.max-i.min)*100}const Ru={correct:(o,i)=>{if(!i.target)return o;if(typeof o=="string")if(le.test(o))o=parseFloat(o);else return o;const l=HA(o,i.target.x),u=HA(o,i.target.y);return`${l}% ${u}%`}},$U={correct:(o,{treeScale:i,projectionDelta:l})=>{const u=o,f=Ti.parse(o);if(f.length>5)return u;const p=Ti.createTransformer(o),h=typeof f[0]!="number"?1:0,m=l.x.scale*i.x,v=l.y.scale*i.y;f[0+h]/=m,f[1+h]/=v;const E=yt(m,v,.5);return typeof f[2+h]=="number"&&(f[2+h]/=E),typeof f[3+h]=="number"&&(f[3+h]/=E),p(f)}},Tg={borderRadius:{...Ru,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Ru,borderTopRightRadius:Ru,borderBottomLeftRadius:Ru,borderBottomRightRadius:Ru,boxShadow:$U};function WR(o,{layout:i,layoutId:l}){return Yr.has(o)||o.startsWith("origin")||(i||l!==void 0)&&(!!Tg[o]||o==="opacity")}function nv(o,i,l){const u=o.style,f=i?.style,p={};if(!u)return p;for(const h in u)(en(u[h])||f&&en(f[h])||WR(h,o)||l?.getValue(h)?.liveStyle!==void 0)&&(p[h]=u[h]);return p}function QU(o){return window.getComputedStyle(o)}class ZU extends QR{constructor(){super(...arguments),this.type="html",this.renderInstance=IR}readValueFromInstance(i,l){if(Yr.has(l))return this.projection?.isProjecting?rg(l):dN(i,l);{const u=QU(i),f=(uR(l)?u.getPropertyValue(l):u[l])||0;return typeof f=="string"?f.trim():f}}measureInstanceViewportBox(i,{transformPagePoint:l}){return KR(i,l)}build(i,l,u){tv(i,l,u.transformTemplate)}scrapeMotionValuesFromProps(i,l,u){return nv(i,l,u)}}const FU={offset:"stroke-dashoffset",array:"stroke-dasharray"},JU={offset:"strokeDashoffset",array:"strokeDasharray"};function KU(o,i,l=1,u=0,f=!0){o.pathLength=1;const p=f?FU:JU;o[p.offset]=`${-u}`,o[p.array]=`${i} ${l}`}const IU=["offsetDistance","offsetPath","offsetRotate","offsetAnchor"];function ex(o,{attrX:i,attrY:l,attrScale:u,pathLength:f,pathSpacing:p=1,pathOffset:h=0,...m},v,E,b){if(tv(o,m,E),v){o.style.viewBox&&(o.attrs.viewBox=o.style.viewBox);return}o.attrs=o.style,o.style={};const{attrs:A,style:T}=o;A.transform&&(T.transform=A.transform,delete A.transform),(T.transform||A.transformOrigin)&&(T.transformOrigin=A.transformOrigin??"50% 50%",delete A.transformOrigin),T.transform&&(T.transformBox=b?.transformBox??"fill-box",delete A.transformBox);for(const R of IU)A[R]!==void 0&&(T[R]=A[R],delete A[R]);i!==void 0&&(A.x=i),l!==void 0&&(A.y=l),u!==void 0&&(A.scale=u),f!==void 0&&KU(A,f,p,h,!1)}const tx=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]),nx=o=>typeof o=="string"&&o.toLowerCase()==="svg";function WU(o,i,l,u){IR(o,i,void 0,u);for(const f in i.attrs)o.setAttribute(tx.has(f)?f:Zg(f),i.attrs[f])}function ax(o,i,l){const u=nv(o,i,l);for(const f in o)if(en(o[f])||en(i[f])){const p=qr.indexOf(f)!==-1?"attr"+f.charAt(0).toUpperCase()+f.substring(1):f;u[p]=o[f]}return u}class ez extends QR{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=zt}getBaseTargetFromProps(i,l){return i[l]}readValueFromInstance(i,l){if(Yr.has(l)){const u=jR(l);return u&&u.default||0}return l=tx.has(l)?l:Zg(l),i.getAttribute(l)}scrapeMotionValuesFromProps(i,l,u){return ax(i,l,u)}build(i,l,u){ex(i,l,this.isSVGTag,u.transformTemplate,u.style)}renderInstance(i,l,u,f){WU(i,l,u,f)}mount(i){this.isSVGTag=nx(i.tagName),super.mount(i)}}const tz=ev.length;function ox(o){if(!o)return;if(!o.isControllingVariants){const l=o.parent?ox(o.parent)||{}:{};return o.props.initial!==void 0&&(l.initial=o.props.initial),l}const i={};for(let l=0;l<tz;l++){const u=ev[l],f=o.props[u];(Vu(f)||f===!1)&&(i[u]=f)}return i}function ix(o,i){if(!Array.isArray(i))return!1;const l=i.length;if(l!==o.length)return!1;for(let u=0;u<l;u++)if(i[u]!==o[u])return!1;return!0}const nz=[...Wg].reverse(),az=Wg.length;function oz(o){return i=>Promise.all(i.map(({animation:l,options:u})=>tU(o,l,u)))}function iz(o){let i=oz(o),l=kA(),u=!0;const f=v=>(E,b)=>{const A=jr(o,b,v==="exit"?o.presenceContext?.custom:void 0);if(A){const{transition:T,transitionEnd:R,...D}=A;E={...E,...D,...R}}return E};function p(v){i=v(o)}function h(v){const{props:E}=o,b=ox(o.parent)||{},A=[],T=new Set;let R={},D=1/0;for(let z=0;z<az;z++){const k=nz[z],$=l[k],Y=E[k]!==void 0?E[k]:b[k],I=Vu(Y),Z=k===v?$.isActive:null;Z===!1&&(D=z);let Te=Y===b[k]&&Y!==E[k]&&I;if(Te&&u&&o.manuallyAnimateOnMount&&(Te=!1),$.protectedKeys={...R},!$.isActive&&Z===null||!Y&&!$.prevProp||jd(Y)||typeof Y=="boolean")continue;if(k==="exit"&&$.isActive&&Z!==!0){$.prevResolvedValues&&(R={...R,...$.prevResolvedValues});continue}const ve=sz($.prevProp,Y);let W=ve||k===v&&$.isActive&&!Te&&I||z>D&&I,ce=!1;const F=Array.isArray(Y)?Y:[Y];let Xe=F.reduce(f(k),{});Z===!1&&(Xe={});const{prevResolvedValues:fe={}}=$,be={...fe,...Xe},Ze=ae=>{W=!0,T.has(ae)&&(ce=!0,T.delete(ae)),$.needsAnimating[ae]=!0;const ie=o.getValue(ae);ie&&(ie.liveStyle=!1)};for(const ae in be){const ie=Xe[ae],xe=fe[ae];if(R.hasOwnProperty(ae))continue;let Be=!1;hg(ie)&&hg(xe)?Be=!ix(ie,xe):Be=ie!==xe,Be?ie!=null?Ze(ae):T.add(ae):ie!==void 0&&T.has(ae)?Ze(ae):$.protectedKeys[ae]=!0}$.prevProp=Y,$.prevResolvedValues=Xe,$.isActive&&(R={...R,...Xe}),u&&o.blockInitialAnimation&&(W=!1);const lt=Te&&ve;W&&(!lt||ce)&&A.push(...F.map(ae=>{const ie={type:k};if(typeof ae=="string"&&u&&!lt&&o.manuallyAnimateOnMount&&o.parent){const{parent:xe}=o,Be=jr(xe,ae);if(xe.enteringChildren&&Be){const{delayChildren:C}=Be.transition||{};ie.delay=wR(xe.enteringChildren,o,C)}}return{animation:ae,options:ie}}))}if(T.size){const z={};if(typeof E.initial!="boolean"){const k=jr(o,Array.isArray(E.initial)?E.initial[0]:E.initial);k&&k.transition&&(z.transition=k.transition)}T.forEach(k=>{const $=o.getBaseTarget(k),Y=o.getValue(k);Y&&(Y.liveStyle=!0),z[k]=$??null}),A.push({animation:z})}let j=!!A.length;return u&&(E.initial===!1||E.initial===E.animate)&&!o.manuallyAnimateOnMount&&(j=!1),u=!1,j?i(A):Promise.resolve()}function m(v,E){if(l[v].isActive===E)return Promise.resolve();o.variantChildren?.forEach(A=>A.animationState?.setActive(v,E)),l[v].isActive=E;const b=h(v);for(const A in l)l[A].protectedKeys={};return b}return{animateChanges:h,setActive:m,setAnimateFunction:p,getState:()=>l,reset:()=>{l=kA()}}}function sz(o,i){return typeof i=="string"?i!==o:Array.isArray(i)?!ix(i,o):!1}function hs(o=!1){return{isActive:o,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function kA(){return{animate:hs(!0),whileInView:hs(),whileHover:hs(),whileTap:hs(),whileDrag:hs(),whileFocus:hs(),exit:hs()}}function qA(o,i){o.min=i.min,o.max=i.max}function ya(o,i){qA(o.x,i.x),qA(o.y,i.y)}function YA(o,i){o.translate=i.translate,o.scale=i.scale,o.originPoint=i.originPoint,o.origin=i.origin}const sx=1e-4,rz=1-sx,lz=1+sx,rx=.01,uz=0-rx,cz=0+rx;function hn(o){return o.max-o.min}function fz(o,i,l){return Math.abs(o-i)<=l}function GA(o,i,l,u=.5){o.origin=u,o.originPoint=yt(i.min,i.max,o.origin),o.scale=hn(l)/hn(i),o.translate=yt(l.min,l.max,o.origin)-o.originPoint,(o.scale>=rz&&o.scale<=lz||isNaN(o.scale))&&(o.scale=1),(o.translate>=uz&&o.translate<=cz||isNaN(o.translate))&&(o.translate=0)}function Mu(o,i,l,u){GA(o.x,i.x,l.x,u?u.originX:void 0),GA(o.y,i.y,l.y,u?u.originY:void 0)}function PA(o,i,l){o.min=l.min+i.min,o.max=o.min+hn(i)}function dz(o,i,l){PA(o.x,i.x,l.x),PA(o.y,i.y,l.y)}function XA(o,i,l){o.min=i.min-l.min,o.max=o.min+hn(i)}function Nd(o,i,l){XA(o.x,i.x,l.x),XA(o.y,i.y,l.y)}function $A(o,i,l,u,f){return o-=i,o=_d(o,1/l,u),f!==void 0&&(o=_d(o,1/f,u)),o}function hz(o,i=0,l=1,u=.5,f,p=o,h=o){if(Fa.test(i)&&(i=parseFloat(i),i=yt(h.min,h.max,i/100)-h.min),typeof i!="number")return;let m=yt(p.min,p.max,u);o===p&&(m-=i),o.min=$A(o.min,i,l,m,f),o.max=$A(o.max,i,l,m,f)}function QA(o,i,[l,u,f],p,h){hz(o,i[l],i[u],i[f],i.scale,p,h)}const pz=["x","scaleX","originX"],mz=["y","scaleY","originY"];function ZA(o,i,l,u){QA(o.x,i,pz,l?l.x:void 0,u?u.x:void 0),QA(o.y,i,mz,l?l.y:void 0,u?u.y:void 0)}function FA(o){return o.translate===0&&o.scale===1}function lx(o){return FA(o.x)&&FA(o.y)}function JA(o,i){return o.min===i.min&&o.max===i.max}function yz(o,i){return JA(o.x,i.x)&&JA(o.y,i.y)}function KA(o,i){return Math.round(o.min)===Math.round(i.min)&&Math.round(o.max)===Math.round(i.max)}function ux(o,i){return KA(o.x,i.x)&&KA(o.y,i.y)}function IA(o){return hn(o.x)/hn(o.y)}function WA(o,i){return o.translate===i.translate&&o.scale===i.scale&&o.originPoint===i.originPoint}function Za(o){return[o("x"),o("y")]}function gz(o,i,l){let u="";const f=o.x.translate/i.x,p=o.y.translate/i.y,h=l?.z||0;if((f||p||h)&&(u=`translate3d(${f}px, ${p}px, ${h}px) `),(i.x!==1||i.y!==1)&&(u+=`scale(${1/i.x}, ${1/i.y}) `),l){const{transformPerspective:E,rotate:b,rotateX:A,rotateY:T,skewX:R,skewY:D}=l;E&&(u=`perspective(${E}px) ${u}`),b&&(u+=`rotate(${b}deg) `),A&&(u+=`rotateX(${A}deg) `),T&&(u+=`rotateY(${T}deg) `),R&&(u+=`skewX(${R}deg) `),D&&(u+=`skewY(${D}deg) `)}const m=o.x.scale*i.x,v=o.y.scale*i.y;return(m!==1||v!==1)&&(u+=`scale(${m}, ${v})`),u||"none"}const cx=["TopLeft","TopRight","BottomLeft","BottomRight"],vz=cx.length,eD=o=>typeof o=="string"?parseFloat(o):o,tD=o=>typeof o=="number"||le.test(o);function bz(o,i,l,u,f,p){f?(o.opacity=yt(0,l.opacity??1,Sz(u)),o.opacityExit=yt(i.opacity??1,0,Tz(u))):p&&(o.opacity=yt(i.opacity??1,l.opacity??1,u));for(let h=0;h<vz;h++){const m=`border${cx[h]}Radius`;let v=nD(i,m),E=nD(l,m);if(v===void 0&&E===void 0)continue;v||(v=0),E||(E=0),v===0||E===0||tD(v)===tD(E)?(o[m]=Math.max(yt(eD(v),eD(E),u),0),(Fa.test(E)||Fa.test(v))&&(o[m]+="%")):o[m]=E}(i.rotate||l.rotate)&&(o.rotate=yt(i.rotate||0,l.rotate||0,u))}function nD(o,i){return o[i]!==void 0?o[i]:o.borderRadius}const Sz=fx(0,.5,aR),Tz=fx(.5,.95,na);function fx(o,i,l){return u=>u<o?0:u>i?1:l(Nu(o,i,u))}function Ez(o,i,l){const u=en(o)?o:Br(o);return u.start($g("",u,i,l)),u.animation}function ju(o,i,l,u={passive:!0}){return o.addEventListener(i,l,u),()=>o.removeEventListener(i,l)}const Az=(o,i)=>o.depth-i.depth;class Dz{constructor(){this.children=[],this.isDirty=!1}add(i){Mg(this.children,i),this.isDirty=!0}remove(i){xd(this.children,i),this.isDirty=!0}forEach(i){this.isDirty&&this.children.sort(Az),this.isDirty=!1,this.children.forEach(i)}}function Rz(o,i){const l=dn.now(),u=({timestamp:f})=>{const p=f-l;p>=i&&(Si(u),o(p-i))};return rt.setup(u,!0),()=>Si(u)}function Td(o){return en(o)?o.get():o}class xz{constructor(){this.members=[]}add(i){Mg(this.members,i);for(let l=this.members.length-1;l>=0;l--){const u=this.members[l];if(u===i||u===this.lead||u===this.prevLead)continue;const f=u.instance;f&&f.isConnected===!1&&u.isPresent!==!1&&!u.snapshot&&xd(this.members,u)}i.scheduleRender()}remove(i){if(xd(this.members,i),i===this.prevLead&&(this.prevLead=void 0),i===this.lead){const l=this.members[this.members.length-1];l&&this.promote(l)}}relegate(i){const l=this.members.findIndex(f=>i===f);if(l===0)return!1;let u;for(let f=l;f>=0;f--){const p=this.members[f],h=p.instance;if(p.isPresent!==!1&&(!h||h.isConnected!==!1)){u=p;break}}return u?(this.promote(u),!0):!1}promote(i,l){const u=this.lead;if(i!==u&&(this.prevLead=u,this.lead=i,i.show(),u)){u.instance&&u.scheduleRender(),i.scheduleRender();const f=u.options.layoutDependency,p=i.options.layoutDependency;if(!(f!==void 0&&p!==void 0&&f===p)){const v=u.instance;v&&v.isConnected===!1&&!u.snapshot||(i.resumeFrom=u,l&&(i.resumeFrom.preserveOpacity=!0),u.snapshot&&(i.snapshot=u.snapshot,i.snapshot.latestValues=u.animationValues||u.latestValues),i.root&&i.root.isUpdating&&(i.isLayoutDirty=!0))}const{crossfade:m}=i.options;m===!1&&u.hide()}}exitAnimationComplete(){this.members.forEach(i=>{const{options:l,resumingFrom:u}=i;l.onExitComplete&&l.onExitComplete(),u&&u.options.onExitComplete&&u.options.onExitComplete()})}scheduleRender(){this.members.forEach(i=>{i.instance&&i.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const Ed={hasAnimatedSinceResize:!0,hasEverUpdated:!1},qy=["","X","Y","Z"],wz=1e3;let Oz=0;function Yy(o,i,l,u){const{latestValues:f}=i;f[o]&&(l[o]=f[o],i.setStaticValue(o,0),u&&(u[o]=0))}function dx(o){if(o.hasCheckedOptimisedAppear=!0,o.root===o)return;const{visualElement:i}=o.options;if(!i)return;const l=NR(i);if(window.MotionHasOptimisedAnimation(l,"transform")){const{layout:f,layoutId:p}=o.options;window.MotionCancelOptimisedAnimation(l,"transform",rt,!(f||p))}const{parent:u}=o;u&&!u.hasCheckedOptimisedAppear&&dx(u)}function hx({attachResizeListener:o,defaultParent:i,measureScroll:l,checkIsScrollRoot:u,resetTransform:f}){return class{constructor(h={},m=i?.()){this.id=Oz++,this.animationId=0,this.animationCommitId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.layoutVersion=0,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,this.nodes.forEach(_z),this.nodes.forEach(Vz),this.nodes.forEach(jz),this.nodes.forEach(Nz)},this.resolvedRelativeTargetAt=0,this.linkedParentVersion=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=h,this.root=m?m.root||m:this,this.path=m?[...m.path,m]:[],this.parent=m,this.depth=m?m.depth+1:0;for(let v=0;v<this.path.length;v++)this.path[v].shouldResetTransform=!0;this.root===this&&(this.nodes=new Dz)}addEventListener(h,m){return this.eventHandlers.has(h)||this.eventHandlers.set(h,new Ng),this.eventHandlers.get(h).add(m)}notifyListeners(h,...m){const v=this.eventHandlers.get(h);v&&v.notify(...m)}hasListeners(h){return this.eventHandlers.has(h)}mount(h){if(this.instance)return;this.isSVG=Ig(h)&&!MU(h),this.instance=h;const{layoutId:m,layout:v,visualElement:E}=this.options;if(E&&!E.current&&E.mount(h),this.root.nodes.add(this),this.parent&&this.parent.children.add(this),this.root.hasTreeAnimated&&(v||m)&&(this.isLayoutDirty=!0),o){let b,A=0;const T=()=>this.root.updateBlockedByResize=!1;rt.read(()=>{A=window.innerWidth}),o(h,()=>{const R=window.innerWidth;R!==A&&(A=R,this.root.updateBlockedByResize=!0,b&&b(),b=Rz(T,250),Ed.hasAnimatedSinceResize&&(Ed.hasAnimatedSinceResize=!1,this.nodes.forEach(iD)))})}m&&this.root.registerSharedNode(m,this),this.options.animate!==!1&&E&&(m||v)&&this.addEventListener("didUpdate",({delta:b,hasLayoutChanged:A,hasRelativeLayoutChanged:T,layout:R})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const D=this.options.transition||E.getDefaultTransition()||qz,{onLayoutAnimationStart:j,onLayoutAnimationComplete:z}=E.getProps(),k=!this.targetLayout||!ux(this.targetLayout,R),$=!A&&T;if(this.options.layoutRoot||this.resumeFrom||$||A&&(k||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0);const Y={...Xg(D,"layout"),onPlay:j,onComplete:z};(E.shouldReduceMotion||this.options.layoutRoot)&&(Y.delay=0,Y.type=!1),this.startAnimation(Y),this.setAnimationOrigin(b,$)}else A||iD(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=R})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const h=this.getStack();h&&h.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,this.eventHandlers.clear(),Si(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(Bz),this.animationId++)}getTransformTemplate(){const{visualElement:h}=this.options;return h&&h.getProps().transformTemplate}willUpdate(h=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&dx(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let b=0;b<this.path.length;b++){const A=this.path[b];A.shouldResetTransform=!0,A.updateScroll("snapshot"),A.options.layoutRoot&&A.willUpdate(!1)}const{layoutId:m,layout:v}=this.options;if(m===void 0&&!v)return;const E=this.getTransformTemplate();this.prevTransformTemplateValue=E?E(this.latestValues,""):void 0,this.updateSnapshot(),h&&this.notifyListeners("willUpdate")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked()){this.unblockUpdate(),this.clearAllSnapshots(),this.nodes.forEach(aD);return}if(this.animationId<=this.animationCommitId){this.nodes.forEach(oD);return}this.animationCommitId=this.animationId,this.isUpdating?(this.isUpdating=!1,this.nodes.forEach(zz),this.nodes.forEach(Cz),this.nodes.forEach(Mz)):this.nodes.forEach(oD),this.clearAllSnapshots();const m=dn.now();$t.delta=Ja(0,1e3/60,m-$t.timestamp),$t.timestamp=m,$t.isProcessing=!0,Uy.update.process($t),Uy.preRender.process($t),Uy.render.process($t),$t.isProcessing=!1}didUpdate(){this.updateScheduled||(this.updateScheduled=!0,Jg.read(this.scheduleUpdate))}clearAllSnapshots(){this.nodes.forEach(Uz),this.sharedNodes.forEach(Lz)}scheduleUpdateProjection(){this.projectionUpdateScheduled||(this.projectionUpdateScheduled=!0,rt.preRender(this.updateProjection,!1,!0))}scheduleCheckAfterUnmount(){rt.postRender(()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure(),this.snapshot&&!hn(this.snapshot.measuredBox.x)&&!hn(this.snapshot.measuredBox.y)&&(this.snapshot=void 0))}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let v=0;v<this.path.length;v++)this.path[v].updateScroll();const h=this.layout;this.layout=this.measure(!1),this.layoutVersion++,this.layoutCorrected=zt(),this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners("measure",this.layout.layoutBox);const{visualElement:m}=this.options;m&&m.notify("LayoutMeasure",this.layout.layoutBox,h?h.layoutBox:void 0)}updateScroll(h="measure"){let m=!!(this.options.layoutScroll&&this.instance);if(this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===h&&(m=!1),m&&this.instance){const v=u(this.instance);this.scroll={animationId:this.root.animationId,phase:h,isRoot:v,offset:l(this.instance),wasRoot:this.scroll?this.scroll.isRoot:v}}}resetTransform(){if(!f)return;const h=this.isLayoutDirty||this.shouldResetTransform||this.options.alwaysMeasureLayout,m=this.projectionDelta&&!lx(this.projectionDelta),v=this.getTransformTemplate(),E=v?v(this.latestValues,""):void 0,b=E!==this.prevTransformTemplateValue;h&&this.instance&&(m||ps(this.latestValues)||b)&&(f(this.instance,E),this.shouldResetTransform=!1,this.scheduleRender())}measure(h=!0){const m=this.measurePageBox();let v=this.removeElementScroll(m);return h&&(v=this.removeTransform(v)),Yz(v),{animationId:this.root.animationId,measuredBox:m,layoutBox:v,latestValues:{},source:this.id}}measurePageBox(){const{visualElement:h}=this.options;if(!h)return zt();const m=h.measureViewportBox();if(!(this.scroll?.wasRoot||this.path.some(Gz))){const{scroll:E}=this.root;E&&(zr(m.x,E.offset.x),zr(m.y,E.offset.y))}return m}removeElementScroll(h){const m=zt();if(ya(m,h),this.scroll?.wasRoot)return m;for(let v=0;v<this.path.length;v++){const E=this.path[v],{scroll:b,options:A}=E;E!==this.root&&b&&A.layoutScroll&&(b.wasRoot&&ya(m,h),zr(m.x,b.offset.x),zr(m.y,b.offset.y))}return m}applyTransform(h,m=!1){const v=zt();ya(v,h);for(let E=0;E<this.path.length;E++){const b=this.path[E];!m&&b.options.layoutScroll&&b.scroll&&b!==b.root&&Vr(v,{x:-b.scroll.offset.x,y:-b.scroll.offset.y}),ps(b.latestValues)&&Vr(v,b.latestValues)}return ps(this.latestValues)&&Vr(v,this.latestValues),v}removeTransform(h){const m=zt();ya(m,h);for(let v=0;v<this.path.length;v++){const E=this.path[v];if(!E.instance||!ps(E.latestValues))continue;bg(E.latestValues)&&E.updateSnapshot();const b=zt(),A=E.measurePageBox();ya(b,A),ZA(m,E.latestValues,E.snapshot?E.snapshot.layoutBox:void 0,b)}return ps(this.latestValues)&&ZA(m,this.latestValues),m}setTargetDelta(h){this.targetDelta=h,this.root.scheduleUpdateProjection(),this.isProjectionDirty=!0}setOptions(h){this.options={...this.options,...h,crossfade:h.crossfade!==void 0?h.crossfade:!0}}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}forceRelativeParentToResolveTarget(){this.relativeParent&&this.relativeParent.resolvedRelativeTargetAt!==$t.timestamp&&this.relativeParent.resolveTargetDelta(!0)}resolveTargetDelta(h=!1){const m=this.getLead();this.isProjectionDirty||(this.isProjectionDirty=m.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=m.isTransformDirty),this.isSharedProjectionDirty||(this.isSharedProjectionDirty=m.isSharedProjectionDirty);const v=!!this.resumingFrom||this!==m;if(!(h||v&&this.isSharedProjectionDirty||this.isProjectionDirty||this.parent?.isProjectionDirty||this.attemptToResolveRelativeTarget||this.root.updateBlockedByResize))return;const{layout:b,layoutId:A}=this.options;if(!this.layout||!(b||A))return;this.resolvedRelativeTargetAt=$t.timestamp;const T=this.getClosestProjectingParent();T&&this.linkedParentVersion!==T.layoutVersion&&!T.options.layoutRoot&&this.removeRelativeTarget(),!this.targetDelta&&!this.relativeTarget&&(T&&T.layout?this.createRelativeTarget(T,this.layout.layoutBox,T.layout.layoutBox):this.removeRelativeTarget()),!(!this.relativeTarget&&!this.targetDelta)&&(this.target||(this.target=zt(),this.targetWithTransforms=zt()),this.relativeTarget&&this.relativeTargetOrigin&&this.relativeParent&&this.relativeParent.target?(this.forceRelativeParentToResolveTarget(),dz(this.target,this.relativeTarget,this.relativeParent.target)):this.targetDelta?(this.resumingFrom?this.target=this.applyTransform(this.layout.layoutBox):ya(this.target,this.layout.layoutBox),JR(this.target,this.targetDelta)):ya(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget&&(this.attemptToResolveRelativeTarget=!1,T&&!!T.resumingFrom==!!this.resumingFrom&&!T.options.layoutScroll&&T.target&&this.animationProgress!==1?this.createRelativeTarget(T,this.target,T.target):this.relativeParent=this.relativeTarget=void 0))}getClosestProjectingParent(){if(!(!this.parent||bg(this.parent.latestValues)||FR(this.parent.latestValues)))return this.parent.isProjecting()?this.parent:this.parent.getClosestProjectingParent()}isProjecting(){return!!((this.relativeTarget||this.targetDelta||this.options.layoutRoot)&&this.layout)}createRelativeTarget(h,m,v){this.relativeParent=h,this.linkedParentVersion=h.layoutVersion,this.forceRelativeParentToResolveTarget(),this.relativeTarget=zt(),this.relativeTargetOrigin=zt(),Nd(this.relativeTargetOrigin,m,v),ya(this.relativeTarget,this.relativeTargetOrigin)}removeRelativeTarget(){this.relativeParent=this.relativeTarget=void 0}calcProjection(){const h=this.getLead(),m=!!this.resumingFrom||this!==h;let v=!0;if((this.isProjectionDirty||this.parent?.isProjectionDirty)&&(v=!1),m&&(this.isSharedProjectionDirty||this.isTransformDirty)&&(v=!1),this.resolvedRelativeTargetAt===$t.timestamp&&(v=!1),v)return;const{layout:E,layoutId:b}=this.options;if(this.isTreeAnimating=!!(this.parent&&this.parent.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!(E||b))return;ya(this.layoutCorrected,this.layout.layoutBox);const A=this.treeScale.x,T=this.treeScale.y;qU(this.layoutCorrected,this.treeScale,this.path,m),h.layout&&!h.target&&(this.treeScale.x!==1||this.treeScale.y!==1)&&(h.target=h.layout.layoutBox,h.targetWithTransforms=zt());const{target:R}=h;if(!R){this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender());return}!this.projectionDelta||!this.prevProjectionDelta?this.createProjectionDeltas():(YA(this.prevProjectionDelta.x,this.projectionDelta.x),YA(this.prevProjectionDelta.y,this.projectionDelta.y)),Mu(this.projectionDelta,this.layoutCorrected,R,this.latestValues),(this.treeScale.x!==A||this.treeScale.y!==T||!WA(this.projectionDelta.x,this.prevProjectionDelta.x)||!WA(this.projectionDelta.y,this.prevProjectionDelta.y))&&(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",R))}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(h=!0){if(this.options.visualElement?.scheduleRender(),h){const m=this.getStack();m&&m.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}createProjectionDeltas(){this.prevProjectionDelta=Ur(),this.projectionDelta=Ur(),this.projectionDeltaWithTransform=Ur()}setAnimationOrigin(h,m=!1){const v=this.snapshot,E=v?v.latestValues:{},b={...this.latestValues},A=Ur();(!this.relativeParent||!this.relativeParent.options.layoutRoot)&&(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!m;const T=zt(),R=v?v.source:void 0,D=this.layout?this.layout.source:void 0,j=R!==D,z=this.getStack(),k=!z||z.members.length<=1,$=!!(j&&!k&&this.options.crossfade===!0&&!this.path.some(kz));this.animationProgress=0;let Y;this.mixTargetDelta=I=>{const Z=I/1e3;sD(A.x,h.x,Z),sD(A.y,h.y,Z),this.setTargetDelta(A),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(Nd(T,this.layout.layoutBox,this.relativeParent.layout.layoutBox),Hz(this.relativeTarget,this.relativeTargetOrigin,T,Z),Y&&yz(this.relativeTarget,Y)&&(this.isProjectionDirty=!1),Y||(Y=zt()),ya(Y,this.relativeTarget)),j&&(this.animationValues=b,bz(b,E,this.latestValues,Z,$,k)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=Z},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(h){this.notifyListeners("animationStart"),this.currentAnimation?.stop(),this.resumingFrom?.currentAnimation?.stop(),this.pendingAnimation&&(Si(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=rt.update(()=>{Ed.hasAnimatedSinceResize=!0,this.motionValue||(this.motionValue=Br(0)),this.currentAnimation=Ez(this.motionValue,[0,1e3],{...h,velocity:0,isSync:!0,onUpdate:m=>{this.mixTargetDelta(m),h.onUpdate&&h.onUpdate(m)},onStop:()=>{},onComplete:()=>{h.onComplete&&h.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const h=this.getStack();h&&h.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(wz),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const h=this.getLead();let{targetWithTransforms:m,target:v,layout:E,latestValues:b}=h;if(!(!m||!v||!E)){if(this!==h&&this.layout&&E&&px(this.options.animationType,this.layout.layoutBox,E.layoutBox)){v=this.target||zt();const A=hn(this.layout.layoutBox.x);v.x.min=h.target.x.min,v.x.max=v.x.min+A;const T=hn(this.layout.layoutBox.y);v.y.min=h.target.y.min,v.y.max=v.y.min+T}ya(m,v),Vr(m,b),Mu(this.projectionDeltaWithTransform,this.layoutCorrected,m,b)}}registerSharedNode(h,m){this.sharedNodes.has(h)||this.sharedNodes.set(h,new xz),this.sharedNodes.get(h).add(m);const E=m.options.initialPromotionConfig;m.promote({transition:E?E.transition:void 0,preserveFollowOpacity:E&&E.shouldPreserveFollowOpacity?E.shouldPreserveFollowOpacity(m):void 0})}isLead(){const h=this.getStack();return h?h.lead===this:!0}getLead(){const{layoutId:h}=this.options;return h?this.getStack()?.lead||this:this}getPrevLead(){const{layoutId:h}=this.options;return h?this.getStack()?.prevLead:void 0}getStack(){const{layoutId:h}=this.options;if(h)return this.root.sharedNodes.get(h)}promote({needsReset:h,transition:m,preserveFollowOpacity:v}={}){const E=this.getStack();E&&E.promote(this,v),h&&(this.projectionDelta=void 0,this.needsReset=!0),m&&this.setOptions({transition:m})}relegate(){const h=this.getStack();return h?h.relegate(this):!1}resetSkewAndRotation(){const{visualElement:h}=this.options;if(!h)return;let m=!1;const{latestValues:v}=h;if((v.z||v.rotate||v.rotateX||v.rotateY||v.rotateZ||v.skewX||v.skewY)&&(m=!0),!m)return;const E={};v.z&&Yy("z",h,E,this.animationValues);for(let b=0;b<qy.length;b++)Yy(`rotate${qy[b]}`,h,E,this.animationValues),Yy(`skew${qy[b]}`,h,E,this.animationValues);h.render();for(const b in E)h.setStaticValue(b,E[b]),this.animationValues&&(this.animationValues[b]=E[b]);h.scheduleRender()}applyProjectionStyles(h,m){if(!this.instance||this.isSVG)return;if(!this.isVisible){h.visibility="hidden";return}const v=this.getTransformTemplate();if(this.needsReset){this.needsReset=!1,h.visibility="",h.opacity="",h.pointerEvents=Td(m?.pointerEvents)||"",h.transform=v?v(this.latestValues,""):"none";return}const E=this.getLead();if(!this.projectionDelta||!this.layout||!E.target){this.options.layoutId&&(h.opacity=this.latestValues.opacity!==void 0?this.latestValues.opacity:1,h.pointerEvents=Td(m?.pointerEvents)||""),this.hasProjected&&!ps(this.latestValues)&&(h.transform=v?v({},""):"none",this.hasProjected=!1);return}h.visibility="";const b=E.animationValues||E.latestValues;this.applyTransformsToTarget();let A=gz(this.projectionDeltaWithTransform,this.treeScale,b);v&&(A=v(b,A)),h.transform=A;const{x:T,y:R}=this.projectionDelta;h.transformOrigin=`${T.origin*100}% ${R.origin*100}% 0`,E.animationValues?h.opacity=E===this?b.opacity??this.latestValues.opacity??1:this.preserveOpacity?this.latestValues.opacity:b.opacityExit:h.opacity=E===this?b.opacity!==void 0?b.opacity:"":b.opacityExit!==void 0?b.opacityExit:0;for(const D in Tg){if(b[D]===void 0)continue;const{correct:j,applyTo:z,isCSSVariable:k}=Tg[D],$=A==="none"?b[D]:j(b[D],E);if(z){const Y=z.length;for(let I=0;I<Y;I++)h[z[I]]=$}else k?this.options.visualElement.renderState.vars[D]=$:h[D]=$}this.options.layoutId&&(h.pointerEvents=E===this?Td(m?.pointerEvents)||"":"none")}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach(h=>h.currentAnimation?.stop()),this.root.nodes.forEach(aD),this.root.sharedNodes.clear()}}}function Cz(o){o.updateLayout()}function Mz(o){const i=o.resumeFrom?.snapshot||o.snapshot;if(o.isLead()&&o.layout&&i&&o.hasListeners("didUpdate")){const{layoutBox:l,measuredBox:u}=o.layout,{animationType:f}=o.options,p=i.source!==o.layout.source;f==="size"?Za(b=>{const A=p?i.measuredBox[b]:i.layoutBox[b],T=hn(A);A.min=l[b].min,A.max=A.min+T}):px(f,i.layoutBox,l)&&Za(b=>{const A=p?i.measuredBox[b]:i.layoutBox[b],T=hn(l[b]);A.max=A.min+T,o.relativeTarget&&!o.currentAnimation&&(o.isProjectionDirty=!0,o.relativeTarget[b].max=o.relativeTarget[b].min+T)});const h=Ur();Mu(h,l,i.layoutBox);const m=Ur();p?Mu(m,o.applyTransform(u,!0),i.measuredBox):Mu(m,l,i.layoutBox);const v=!lx(h);let E=!1;if(!o.resumeFrom){const b=o.getClosestProjectingParent();if(b&&!b.resumeFrom){const{snapshot:A,layout:T}=b;if(A&&T){const R=zt();Nd(R,i.layoutBox,A.layoutBox);const D=zt();Nd(D,l,T.layoutBox),ux(R,D)||(E=!0),b.options.layoutRoot&&(o.relativeTarget=D,o.relativeTargetOrigin=R,o.relativeParent=b)}}}o.notifyListeners("didUpdate",{layout:l,snapshot:i,delta:m,layoutDelta:h,hasLayoutChanged:v,hasRelativeLayoutChanged:E})}else if(o.isLead()){const{onExitComplete:l}=o.options;l&&l()}o.options.transition=void 0}function _z(o){o.parent&&(o.isProjecting()||(o.isProjectionDirty=o.parent.isProjectionDirty),o.isSharedProjectionDirty||(o.isSharedProjectionDirty=!!(o.isProjectionDirty||o.parent.isProjectionDirty||o.parent.isSharedProjectionDirty)),o.isTransformDirty||(o.isTransformDirty=o.parent.isTransformDirty))}function Nz(o){o.isProjectionDirty=o.isSharedProjectionDirty=o.isTransformDirty=!1}function Uz(o){o.clearSnapshot()}function aD(o){o.clearMeasurements()}function oD(o){o.isLayoutDirty=!1}function zz(o){const{visualElement:i}=o.options;i&&i.getProps().onBeforeLayoutMeasure&&i.notify("BeforeLayoutMeasure"),o.resetTransform()}function iD(o){o.finishAnimation(),o.targetDelta=o.relativeTarget=o.target=void 0,o.isProjectionDirty=!0}function Vz(o){o.resolveTargetDelta()}function jz(o){o.calcProjection()}function Bz(o){o.resetSkewAndRotation()}function Lz(o){o.removeLeadSnapshot()}function sD(o,i,l){o.translate=yt(i.translate,0,l),o.scale=yt(i.scale,1,l),o.origin=i.origin,o.originPoint=i.originPoint}function rD(o,i,l,u){o.min=yt(i.min,l.min,u),o.max=yt(i.max,l.max,u)}function Hz(o,i,l,u){rD(o.x,i.x,l.x,u),rD(o.y,i.y,l.y,u)}function kz(o){return o.animationValues&&o.animationValues.opacityExit!==void 0}const qz={duration:.45,ease:[.4,0,.1,1]},lD=o=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(o),uD=lD("applewebkit/")&&!lD("chrome/")?Math.round:na;function cD(o){o.min=uD(o.min),o.max=uD(o.max)}function Yz(o){cD(o.x),cD(o.y)}function px(o,i,l){return o==="position"||o==="preserve-aspect"&&!fz(IA(i),IA(l),.2)}function Gz(o){return o!==o.root&&o.scroll?.wasRoot}const Pz=hx({attachResizeListener:(o,i)=>ju(o,"resize",i),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body?.scrollLeft||0,y:document.documentElement.scrollTop||document.body?.scrollTop||0}),checkIsScrollRoot:()=>!0}),Gy={current:void 0},mx=hx({measureScroll:o=>({x:o.scrollLeft,y:o.scrollTop}),defaultParent:()=>{if(!Gy.current){const o=new Pz({});o.mount(window),o.setOptions({layoutScroll:!0}),Gy.current=o}return Gy.current},resetTransform:(o,i)=>{o.style.transform=i!==void 0?i:"none"},checkIsScrollRoot:o=>window.getComputedStyle(o).position==="fixed"}),av=ne.createContext({transformPagePoint:o=>o,isStatic:!1,reducedMotion:"never"});function fD(o,i){if(typeof o=="function")return o(i);o!=null&&(o.current=i)}function Xz(...o){return i=>{let l=!1;const u=o.map(f=>{const p=fD(f,i);return!l&&typeof p=="function"&&(l=!0),p});if(l)return()=>{for(let f=0;f<u.length;f++){const p=u[f];typeof p=="function"?p():fD(o[f],null)}}}}function $z(...o){return ne.useCallback(Xz(...o),o)}class Qz extends ne.Component{getSnapshotBeforeUpdate(i){const l=this.props.childRef.current;if(l&&i.isPresent&&!this.props.isPresent&&this.props.pop!==!1){const u=l.offsetParent,f=gg(u)&&u.offsetWidth||0,p=gg(u)&&u.offsetHeight||0,h=this.props.sizeRef.current;h.height=l.offsetHeight||0,h.width=l.offsetWidth||0,h.top=l.offsetTop,h.left=l.offsetLeft,h.right=f-h.width-h.left,h.bottom=p-h.height-h.top}return null}componentDidUpdate(){}render(){return this.props.children}}function Zz({children:o,isPresent:i,anchorX:l,anchorY:u,root:f,pop:p}){const h=ne.useId(),m=ne.useRef(null),v=ne.useRef({width:0,height:0,top:0,left:0,right:0,bottom:0}),{nonce:E}=ne.useContext(av),b=o.props?.ref??o?.ref,A=$z(m,b);return ne.useInsertionEffect(()=>{const{width:T,height:R,top:D,left:j,right:z,bottom:k}=v.current;if(i||p===!1||!m.current||!T||!R)return;const $=l==="left"?`left: ${j}`:`right: ${z}`,Y=u==="bottom"?`bottom: ${k}`:`top: ${D}`;m.current.dataset.motionPopId=h;const I=document.createElement("style");E&&(I.nonce=E);const Z=f??document.head;return Z.appendChild(I),I.sheet&&I.sheet.insertRule(`
241
+ [data-motion-pop-id="${h}"] {
242
+ position: absolute !important;
243
+ width: ${T}px !important;
244
+ height: ${R}px !important;
245
+ ${$}px !important;
246
+ ${Y}px !important;
247
+ }
248
+ `),()=>{Z.contains(I)&&Z.removeChild(I)}},[i]),Ro.jsx(Qz,{isPresent:i,childRef:m,sizeRef:v,pop:p,children:p===!1?o:ne.cloneElement(o,{ref:A})})}const Fz=({children:o,initial:i,isPresent:l,onExitComplete:u,custom:f,presenceAffectsLayout:p,mode:h,anchorX:m,anchorY:v,root:E})=>{const b=Cg(Jz),A=ne.useId();let T=!0,R=ne.useMemo(()=>(T=!1,{id:A,initial:i,isPresent:l,custom:f,onExitComplete:D=>{b.set(D,!0);for(const j of b.values())if(!j)return;u&&u()},register:D=>(b.set(D,!1),()=>b.delete(D))}),[l,b,u]);return p&&T&&(R={...R}),ne.useMemo(()=>{b.forEach((D,j)=>b.set(j,!1))},[l]),ne.useEffect(()=>{!l&&!b.size&&u&&u()},[l]),o=Ro.jsx(Zz,{pop:h==="popLayout",isPresent:l,anchorX:m,anchorY:v,root:E,children:o}),Ro.jsx(Vd.Provider,{value:R,children:o})};function Jz(){return new Map}function yx(o=!0){const i=ne.useContext(Vd);if(i===null)return[!0,null];const{isPresent:l,onExitComplete:u,register:f}=i,p=ne.useId();ne.useEffect(()=>{if(o)return f(p)},[o]);const h=ne.useCallback(()=>o&&u&&u(p),[p,u,o]);return!l&&u?[!1,h]:[!0]}const hd=o=>o.key||"";function dD(o){const i=[];return ne.Children.forEach(o,l=>{ne.isValidElement(l)&&i.push(l)}),i}const Kz=({children:o,custom:i,initial:l=!0,onExitComplete:u,presenceAffectsLayout:f=!0,mode:p="sync",propagate:h=!1,anchorX:m="left",anchorY:v="top",root:E})=>{const[b,A]=yx(h),T=ne.useMemo(()=>dD(o),[o]),R=h&&!b?[]:T.map(hd),D=ne.useRef(!0),j=ne.useRef(T),z=Cg(()=>new Map),k=ne.useRef(new Set),[$,Y]=ne.useState(T),[I,Z]=ne.useState(T);$D(()=>{D.current=!1,j.current=T;for(let W=0;W<I.length;W++){const ce=hd(I[W]);R.includes(ce)?(z.delete(ce),k.current.delete(ce)):z.get(ce)!==!0&&z.set(ce,!1)}},[I,R.length,R.join("-")]);const Te=[];if(T!==$){let W=[...T];for(let ce=0;ce<I.length;ce++){const F=I[ce],Xe=hd(F);R.includes(Xe)||(W.splice(ce,0,F),Te.push(F))}return p==="wait"&&Te.length&&(W=Te),Z(dD(W)),Y(T),null}p==="wait"&&I.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.`);const{forceRender:ve}=ne.useContext(Og);return Ro.jsx(Ro.Fragment,{children:I.map(W=>{const ce=hd(W),F=h&&!b?!1:T===I||R.includes(ce),Xe=()=>{if(k.current.has(ce))return;if(k.current.add(ce),z.has(ce))z.set(ce,!0);else return;let fe=!0;z.forEach(be=>{be||(fe=!1)}),fe&&(ve?.(),Z(j.current),h&&A?.(),u&&u())};return Ro.jsx(Fz,{isPresent:F,initial:!D.current||l?void 0:!1,custom:i,presenceAffectsLayout:f,mode:p,root:E,onExitComplete:F?void 0:Xe,anchorX:m,anchorY:v,children:W},ce)})})},gx=ne.createContext({strict:!1}),hD={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]};let pD=!1;function Iz(){if(pD)return;const o={};for(const i in hD)o[i]={isEnabled:l=>hD[i].some(u=>!!l[u])};$R(o),pD=!0}function vx(){return Iz(),BU()}function Wz(o){const i=vx();for(const l in o)i[l]={...i[l],...o[l]};$R(i)}const e3=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","propagate","ignoreStrict","viewport"]);function Ud(o){return o.startsWith("while")||o.startsWith("drag")&&o!=="draggable"||o.startsWith("layout")||o.startsWith("onTap")||o.startsWith("onPan")||o.startsWith("onLayout")||e3.has(o)}let bx=o=>!Ud(o);function t3(o){typeof o=="function"&&(bx=i=>i.startsWith("on")?!Ud(i):o(i))}try{t3(require("@emotion/is-prop-valid").default)}catch{}function n3(o,i,l){const u={};for(const f in o)f==="values"&&typeof o.values=="object"||(bx(f)||l===!0&&Ud(f)||!i&&!Ud(f)||o.draggable&&f.startsWith("onDrag"))&&(u[f]=o[f]);return u}const Ld=ne.createContext({});function a3(o,i){if(Bd(o)){const{initial:l,animate:u}=o;return{initial:l===!1||Vu(l)?l:void 0,animate:Vu(u)?u:void 0}}return o.inherit!==!1?i:{}}function o3(o){const{initial:i,animate:l}=a3(o,ne.useContext(Ld));return ne.useMemo(()=>({initial:i,animate:l}),[mD(i),mD(l)])}function mD(o){return Array.isArray(o)?o.join(" "):o}const ov=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function Sx(o,i,l){for(const u in i)!en(i[u])&&!WR(u,l)&&(o[u]=i[u])}function i3({transformTemplate:o},i){return ne.useMemo(()=>{const l=ov();return tv(l,i,o),Object.assign({},l.vars,l.style)},[i])}function s3(o,i){const l=o.style||{},u={};return Sx(u,l,o),Object.assign(u,i3(o,i)),u}function r3(o,i){const l={},u=s3(o,i);return o.drag&&o.dragListener!==!1&&(l.draggable=!1,u.userSelect=u.WebkitUserSelect=u.WebkitTouchCallout="none",u.touchAction=o.drag===!0?"none":`pan-${o.drag==="x"?"y":"x"}`),o.tabIndex===void 0&&(o.onTap||o.onTapStart||o.whileTap)&&(l.tabIndex=0),l.style=u,l}const Tx=()=>({...ov(),attrs:{}});function l3(o,i,l,u){const f=ne.useMemo(()=>{const p=Tx();return ex(p,i,nx(u),o.transformTemplate,o.style),{...p.attrs,style:{...p.style}}},[i]);if(o.style){const p={};Sx(p,o.style,o),f.style={...p,...f.style}}return f}const u3=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function iv(o){return typeof o!="string"||o.includes("-")?!1:!!(u3.indexOf(o)>-1||/[A-Z]/u.test(o))}function c3(o,i,l,{latestValues:u},f,p=!1,h){const v=(h??iv(o)?l3:r3)(i,u,f,o),E=n3(i,typeof o=="string",p),b=o!==ne.Fragment?{...E,...v,ref:l}:{},{children:A}=i,T=ne.useMemo(()=>en(A)?A.get():A,[A]);return ne.createElement(o,{...b,children:T})}function f3({scrapeMotionValuesFromProps:o,createRenderState:i},l,u,f){return{latestValues:d3(l,u,f,o),renderState:i()}}function d3(o,i,l,u){const f={},p=u(o,{});for(const T in p)f[T]=Td(p[T]);let{initial:h,animate:m}=o;const v=Bd(o),E=PR(o);i&&E&&!v&&o.inherit!==!1&&(h===void 0&&(h=i.initial),m===void 0&&(m=i.animate));let b=l?l.initial===!1:!1;b=b||h===!1;const A=b?m:h;if(A&&typeof A!="boolean"&&!jd(A)){const T=Array.isArray(A)?A:[A];for(let R=0;R<T.length;R++){const D=Qg(o,T[R]);if(D){const{transitionEnd:j,transition:z,...k}=D;for(const $ in k){let Y=k[$];if(Array.isArray(Y)){const I=b?Y.length-1:0;Y=Y[I]}Y!==null&&(f[$]=Y)}for(const $ in j)f[$]=j[$]}}}return f}const Ex=o=>(i,l)=>{const u=ne.useContext(Ld),f=ne.useContext(Vd),p=()=>f3(o,i,u,f);return l?p():Cg(p)},h3=Ex({scrapeMotionValuesFromProps:nv,createRenderState:ov}),p3=Ex({scrapeMotionValuesFromProps:ax,createRenderState:Tx}),m3=Symbol.for("motionComponentSymbol");function y3(o,i,l){const u=ne.useRef(l);ne.useInsertionEffect(()=>{u.current=l});const f=ne.useRef(null);return ne.useCallback(p=>{p&&o.onMount?.(p),i&&(p?i.mount(p):i.unmount());const h=u.current;if(typeof h=="function")if(p){const m=h(p);typeof m=="function"&&(f.current=m)}else f.current?(f.current(),f.current=null):h(p);else h&&(h.current=p)},[i])}const Ax=ne.createContext({});function Cr(o){return o&&typeof o=="object"&&Object.prototype.hasOwnProperty.call(o,"current")}function g3(o,i,l,u,f,p){const{visualElement:h}=ne.useContext(Ld),m=ne.useContext(gx),v=ne.useContext(Vd),E=ne.useContext(av),b=E.reducedMotion,A=E.skipAnimations,T=ne.useRef(null),R=ne.useRef(!1);u=u||m.renderer,!T.current&&u&&(T.current=u(o,{visualState:i,parent:h,props:l,presenceContext:v,blockInitialAnimation:v?v.initial===!1:!1,reducedMotionConfig:b,skipAnimations:A,isSVG:p}),R.current&&T.current&&(T.current.manuallyAnimateOnMount=!0));const D=T.current,j=ne.useContext(Ax);D&&!D.projection&&f&&(D.type==="html"||D.type==="svg")&&v3(T.current,l,f,j);const z=ne.useRef(!1);ne.useInsertionEffect(()=>{D&&z.current&&D.update(l,v)});const k=l[_R],$=ne.useRef(!!k&&!window.MotionHandoffIsComplete?.(k)&&window.MotionHasOptimisedAnimation?.(k));return $D(()=>{R.current=!0,D&&(z.current=!0,window.MotionIsMounted=!0,D.updateFeatures(),D.scheduleRenderMicrotask(),$.current&&D.animationState&&D.animationState.animateChanges())}),ne.useEffect(()=>{D&&(!$.current&&D.animationState&&D.animationState.animateChanges(),$.current&&(queueMicrotask(()=>{window.MotionHandoffMarkAsComplete?.(k)}),$.current=!1),D.enteringChildren=void 0)}),D}function v3(o,i,l,u){const{layoutId:f,layout:p,drag:h,dragConstraints:m,layoutScroll:v,layoutRoot:E,layoutCrossfade:b}=i;o.projection=new l(o.latestValues,i["data-framer-portal-id"]?void 0:Dx(o.parent)),o.projection.setOptions({layoutId:f,layout:p,alwaysMeasureLayout:!!h||m&&Cr(m),visualElement:o,animationType:typeof p=="string"?p:"both",initialPromotionConfig:u,crossfade:b,layoutScroll:v,layoutRoot:E})}function Dx(o){if(o)return o.options.allowProjection!==!1?o.projection:Dx(o.parent)}function Py(o,{forwardMotionProps:i=!1,type:l}={},u,f){u&&Wz(u);const p=l?l==="svg":iv(o),h=p?p3:h3;function m(E,b){let A;const T={...ne.useContext(av),...E,layoutId:b3(E)},{isStatic:R}=T,D=o3(E),j=h(E,R);if(!R&&XD){S3(T,u);const z=T3(T);A=z.MeasureLayout,D.visualElement=g3(o,j,T,f,z.ProjectionNode,p)}return Ro.jsxs(Ld.Provider,{value:D,children:[A&&D.visualElement?Ro.jsx(A,{visualElement:D.visualElement,...T}):null,c3(o,E,y3(j,D.visualElement,b),j,R,i,p)]})}m.displayName=`motion.${typeof o=="string"?o:`create(${o.displayName??o.name??""})`}`;const v=ne.forwardRef(m);return v[m3]=o,v}function b3({layoutId:o}){const i=ne.useContext(Og).id;return i&&o!==void 0?i+"-"+o:o}function S3(o,i){const l=ne.useContext(gx).strict;if(i&&l){const u="You have rendered a `motion` component within a `LazyMotion` component. This will break tree shaking. Import and render a `m` component instead.";o.ignoreStrict?Hr(!1,u,"lazy-strict-mode"):xo(!1,u,"lazy-strict-mode")}}function T3(o){const i=vx(),{drag:l,layout:u}=i;if(!l&&!u)return{};const f={...l,...u};return{MeasureLayout:l?.isEnabled(o)||u?.isEnabled(o)?f.MeasureLayout:void 0,ProjectionNode:f.ProjectionNode}}function E3(o,i){if(typeof Proxy>"u")return Py;const l=new Map,u=(p,h)=>Py(p,h,o,i),f=(p,h)=>(Ug(!1,"motion() is deprecated. Use motion.create() instead."),u(p,h));return new Proxy(f,{get:(p,h)=>h==="create"?u:(l.has(h)||l.set(h,Py(h,void 0,o,i)),l.get(h))})}const A3=(o,i)=>i.isSVG??iv(o)?new ez(i):new ZU(i,{allowProjection:o!==ne.Fragment});class D3 extends Ei{constructor(i){super(i),i.animationState||(i.animationState=iz(i))}updateAnimationControlsSubscription(){const{animate:i}=this.node.getProps();jd(i)&&(this.unmountControls=i.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:i}=this.node.getProps(),{animate:l}=this.node.prevProps||{};i!==l&&this.updateAnimationControlsSubscription()}unmount(){this.node.animationState.reset(),this.unmountControls?.()}}let R3=0;class x3 extends Ei{constructor(){super(...arguments),this.id=R3++}update(){if(!this.node.presenceContext)return;const{isPresent:i,onExitComplete:l}=this.node.presenceContext,{isPresent:u}=this.node.prevPresenceContext||{};if(!this.node.animationState||i===u)return;const f=this.node.animationState.setActive("exit",!i);l&&!i&&f.then(()=>{l(this.id)})}mount(){const{register:i,onExitComplete:l}=this.node.presenceContext||{};l&&l(this.id),i&&(this.unmount=i(this.id))}unmount(){}}const w3={animation:{Feature:D3},exit:{Feature:x3}};function qu(o){return{point:{x:o.pageX,y:o.pageY}}}const O3=o=>i=>Kg(i)&&o(i,qu(i));function _u(o,i,l,u){return ju(o,i,O3(l),u)}const Rx=({current:o})=>o?o.ownerDocument.defaultView:null,yD=(o,i)=>Math.abs(o-i);function C3(o,i){const l=yD(o.x,i.x),u=yD(o.y,i.y);return Math.sqrt(l**2+u**2)}const gD=new Set(["auto","scroll"]);class xx{constructor(i,l,{transformPagePoint:u,contextWindow:f=window,dragSnapToOrigin:p=!1,distanceThreshold:h=3,element:m}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.scrollPositions=new Map,this.removeScrollListeners=null,this.onElementScroll=R=>{this.handleScroll(R.target)},this.onWindowScroll=()=>{this.handleScroll(window)},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const R=$y(this.lastMoveEventInfo,this.history),D=this.startEvent!==null,j=C3(R.offset,{x:0,y:0})>=this.distanceThreshold;if(!D&&!j)return;const{point:z}=R,{timestamp:k}=$t;this.history.push({...z,timestamp:k});const{onStart:$,onMove:Y}=this.handlers;D||($&&$(this.lastMoveEvent,R),this.startEvent=this.lastMoveEvent),Y&&Y(this.lastMoveEvent,R)},this.handlePointerMove=(R,D)=>{this.lastMoveEvent=R,this.lastMoveEventInfo=Xy(D,this.transformPagePoint),rt.update(this.updatePoint,!0)},this.handlePointerUp=(R,D)=>{this.end();const{onEnd:j,onSessionEnd:z,resumeAnimation:k}=this.handlers;if((this.dragSnapToOrigin||!this.startEvent)&&k&&k(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const $=$y(R.type==="pointercancel"?this.lastMoveEventInfo:Xy(D,this.transformPagePoint),this.history);this.startEvent&&j&&j(R,$),z&&z(R,$)},!Kg(i))return;this.dragSnapToOrigin=p,this.handlers=l,this.transformPagePoint=u,this.distanceThreshold=h,this.contextWindow=f||window;const v=qu(i),E=Xy(v,this.transformPagePoint),{point:b}=E,{timestamp:A}=$t;this.history=[{...b,timestamp:A}];const{onSessionStart:T}=l;T&&T(i,$y(E,this.history)),this.removeListeners=Lu(_u(this.contextWindow,"pointermove",this.handlePointerMove),_u(this.contextWindow,"pointerup",this.handlePointerUp),_u(this.contextWindow,"pointercancel",this.handlePointerUp)),m&&this.startScrollTracking(m)}startScrollTracking(i){let l=i.parentElement;for(;l;){const u=getComputedStyle(l);(gD.has(u.overflowX)||gD.has(u.overflowY))&&this.scrollPositions.set(l,{x:l.scrollLeft,y:l.scrollTop}),l=l.parentElement}this.scrollPositions.set(window,{x:window.scrollX,y:window.scrollY}),window.addEventListener("scroll",this.onElementScroll,{capture:!0,passive:!0}),window.addEventListener("scroll",this.onWindowScroll,{passive:!0}),this.removeScrollListeners=()=>{window.removeEventListener("scroll",this.onElementScroll,{capture:!0}),window.removeEventListener("scroll",this.onWindowScroll)}}handleScroll(i){const l=this.scrollPositions.get(i);if(!l)return;const u=i===window,f=u?{x:window.scrollX,y:window.scrollY}:{x:i.scrollLeft,y:i.scrollTop},p={x:f.x-l.x,y:f.y-l.y};p.x===0&&p.y===0||(u?this.lastMoveEventInfo&&(this.lastMoveEventInfo.point.x+=p.x,this.lastMoveEventInfo.point.y+=p.y):this.history.length>0&&(this.history[0].x-=p.x,this.history[0].y-=p.y),this.scrollPositions.set(i,f),rt.update(this.updatePoint,!0))}updateHandlers(i){this.handlers=i}end(){this.removeListeners&&this.removeListeners(),this.removeScrollListeners&&this.removeScrollListeners(),this.scrollPositions.clear(),Si(this.updatePoint)}}function Xy(o,i){return i?{point:i(o.point)}:o}function vD(o,i){return{x:o.x-i.x,y:o.y-i.y}}function $y({point:o},i){return{point:o,delta:vD(o,wx(i)),offset:vD(o,M3(i)),velocity:_3(i,.1)}}function M3(o){return o[0]}function wx(o){return o[o.length-1]}function _3(o,i){if(o.length<2)return{x:0,y:0};let l=o.length-1,u=null;const f=wx(o);for(;l>=0&&(u=o[l],!(f.timestamp-u.timestamp>aa(i)));)l--;if(!u)return{x:0,y:0};u===o[0]&&o.length>2&&f.timestamp-u.timestamp>aa(i)*2&&(u=o[1]);const p=ta(f.timestamp-u.timestamp);if(p===0)return{x:0,y:0};const h={x:(f.x-u.x)/p,y:(f.y-u.y)/p};return h.x===1/0&&(h.x=0),h.y===1/0&&(h.y=0),h}function N3(o,{min:i,max:l},u){return i!==void 0&&o<i?o=u?yt(i,o,u.min):Math.max(o,i):l!==void 0&&o>l&&(o=u?yt(l,o,u.max):Math.min(o,l)),o}function bD(o,i,l){return{min:i!==void 0?o.min+i:void 0,max:l!==void 0?o.max+l-(o.max-o.min):void 0}}function U3(o,{top:i,left:l,bottom:u,right:f}){return{x:bD(o.x,l,f),y:bD(o.y,i,u)}}function SD(o,i){let l=i.min-o.min,u=i.max-o.max;return i.max-i.min<o.max-o.min&&([l,u]=[u,l]),{min:l,max:u}}function z3(o,i){return{x:SD(o.x,i.x),y:SD(o.y,i.y)}}function V3(o,i){let l=.5;const u=hn(o),f=hn(i);return f>u?l=Nu(i.min,i.max-u,o.min):u>f&&(l=Nu(o.min,o.max-f,i.min)),Ja(0,1,l)}function j3(o,i){const l={};return i.min!==void 0&&(l.min=i.min-o.min),i.max!==void 0&&(l.max=i.max-o.min),l}const Eg=.35;function B3(o=Eg){return o===!1?o=0:o===!0&&(o=Eg),{x:TD(o,"left","right"),y:TD(o,"top","bottom")}}function TD(o,i,l){return{min:ED(o,i),max:ED(o,l)}}function ED(o,i){return typeof o=="number"?o:o[i]||0}const L3=new WeakMap;class H3{constructor(i){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=zt(),this.latestPointerEvent=null,this.latestPanInfo=null,this.visualElement=i}start(i,{snapToCursor:l=!1,distanceThreshold:u}={}){const{presenceContext:f}=this.visualElement;if(f&&f.isPresent===!1)return;const p=A=>{l&&this.snapToCursor(qu(A).point),this.stopAnimation()},h=(A,T)=>{const{drag:R,dragPropagation:D,onDragStart:j}=this.getProps();if(R&&!D&&(this.openDragLock&&this.openDragLock(),this.openDragLock=hU(R),!this.openDragLock))return;this.latestPointerEvent=A,this.latestPanInfo=T,this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Za(k=>{let $=this.getAxisMotionValue(k).get()||0;if(Fa.test($)){const{projection:Y}=this.visualElement;if(Y&&Y.layout){const I=Y.layout.layoutBox[k];I&&($=hn(I)*(parseFloat($)/100))}}this.originPoint[k]=$}),j&&rt.update(()=>j(A,T),!1,!0),pg(this.visualElement,"transform");const{animationState:z}=this.visualElement;z&&z.setActive("whileDrag",!0)},m=(A,T)=>{this.latestPointerEvent=A,this.latestPanInfo=T;const{dragPropagation:R,dragDirectionLock:D,onDirectionLock:j,onDrag:z}=this.getProps();if(!R&&!this.openDragLock)return;const{offset:k}=T;if(D&&this.currentDirection===null){this.currentDirection=q3(k),this.currentDirection!==null&&j&&j(this.currentDirection);return}this.updateAxis("x",T.point,k),this.updateAxis("y",T.point,k),this.visualElement.render(),z&&rt.update(()=>z(A,T),!1,!0)},v=(A,T)=>{this.latestPointerEvent=A,this.latestPanInfo=T,this.stop(A,T),this.latestPointerEvent=null,this.latestPanInfo=null},E=()=>{const{dragSnapToOrigin:A}=this.getProps();(A||this.constraints)&&this.startAnimation({x:0,y:0})},{dragSnapToOrigin:b}=this.getProps();this.panSession=new xx(i,{onSessionStart:p,onStart:h,onMove:m,onSessionEnd:v,resumeAnimation:E},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:b,distanceThreshold:u,contextWindow:Rx(this.visualElement),element:this.visualElement.current})}stop(i,l){const u=i||this.latestPointerEvent,f=l||this.latestPanInfo,p=this.isDragging;if(this.cancel(),!p||!f||!u)return;const{velocity:h}=f;this.startAnimation(h);const{onDragEnd:m}=this.getProps();m&&rt.postRender(()=>m(u,f))}cancel(){this.isDragging=!1;const{projection:i,animationState:l}=this.visualElement;i&&(i.isAnimationBlocked=!1),this.endPanSession();const{dragPropagation:u}=this.getProps();!u&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),l&&l.setActive("whileDrag",!1)}endPanSession(){this.panSession&&this.panSession.end(),this.panSession=void 0}updateAxis(i,l,u){const{drag:f}=this.getProps();if(!u||!pd(i,f,this.currentDirection))return;const p=this.getAxisMotionValue(i);let h=this.originPoint[i]+u[i];this.constraints&&this.constraints[i]&&(h=N3(h,this.constraints[i],this.elastic[i])),p.set(h)}resolveConstraints(){const{dragConstraints:i,dragElastic:l}=this.getProps(),u=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):this.visualElement.projection?.layout,f=this.constraints;i&&Cr(i)?this.constraints||(this.constraints=this.resolveRefConstraints()):i&&u?this.constraints=U3(u.layoutBox,i):this.constraints=!1,this.elastic=B3(l),f!==this.constraints&&!Cr(i)&&u&&this.constraints&&!this.hasMutatedConstraints&&Za(p=>{this.constraints!==!1&&this.getAxisMotionValue(p)&&(this.constraints[p]=j3(u.layoutBox[p],this.constraints[p]))})}resolveRefConstraints(){const{dragConstraints:i,onMeasureDragConstraints:l}=this.getProps();if(!i||!Cr(i))return!1;const u=i.current;xo(u!==null,"If `dragConstraints` is set as a React ref, that ref must be passed to another component's `ref` prop.","drag-constraints-ref");const{projection:f}=this.visualElement;if(!f||!f.layout)return!1;const p=YU(u,f.root,this.visualElement.getTransformPagePoint());let h=z3(f.layout.layoutBox,p);if(l){const m=l(HU(h));this.hasMutatedConstraints=!!m,m&&(h=ZR(m))}return h}startAnimation(i){const{drag:l,dragMomentum:u,dragElastic:f,dragTransition:p,dragSnapToOrigin:h,onDragTransitionEnd:m}=this.getProps(),v=this.constraints||{},E=Za(b=>{if(!pd(b,l,this.currentDirection))return;let A=v&&v[b]||{};h&&(A={min:0,max:0});const T=f?200:1e6,R=f?40:1e7,D={type:"inertia",velocity:u?i[b]:0,bounceStiffness:T,bounceDamping:R,timeConstant:750,restDelta:1,restSpeed:10,...p,...A};return this.startAxisValueAnimation(b,D)});return Promise.all(E).then(m)}startAxisValueAnimation(i,l){const u=this.getAxisMotionValue(i);return pg(this.visualElement,i),u.start($g(i,u,0,l,this.visualElement,!1))}stopAnimation(){Za(i=>this.getAxisMotionValue(i).stop())}getAxisMotionValue(i){const l=`_drag${i.toUpperCase()}`,u=this.visualElement.getProps(),f=u[l];return f||this.visualElement.getValue(i,(u.initial?u.initial[i]:void 0)||0)}snapToCursor(i){Za(l=>{const{drag:u}=this.getProps();if(!pd(l,u,this.currentDirection))return;const{projection:f}=this.visualElement,p=this.getAxisMotionValue(l);if(f&&f.layout){const{min:h,max:m}=f.layout.layoutBox[l],v=p.get()||0;p.set(i[l]-yt(h,m,.5)+v)}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:i,dragConstraints:l}=this.getProps(),{projection:u}=this.visualElement;if(!Cr(l)||!u||!this.constraints)return;this.stopAnimation();const f={x:0,y:0};Za(h=>{const m=this.getAxisMotionValue(h);if(m&&this.constraints!==!1){const v=m.get();f[h]=V3({min:v,max:v},this.constraints[h])}});const{transformTemplate:p}=this.visualElement.getProps();this.visualElement.current.style.transform=p?p({},""):"none",u.root&&u.root.updateScroll(),u.updateLayout(),this.constraints=!1,this.resolveConstraints(),Za(h=>{if(!pd(h,i,null))return;const m=this.getAxisMotionValue(h),{min:v,max:E}=this.constraints[h];m.set(yt(v,E,f[h]))}),this.visualElement.render()}addListeners(){if(!this.visualElement.current)return;L3.set(this.visualElement,this);const i=this.visualElement.current,l=_u(i,"pointerdown",E=>{const{drag:b,dragListener:A=!0}=this.getProps(),T=E.target,R=T!==i&&bU(T);b&&A&&!R&&this.start(E)});let u;const f=()=>{const{dragConstraints:E}=this.getProps();Cr(E)&&E.current&&(this.constraints=this.resolveRefConstraints(),u||(u=k3(i,E.current,()=>this.scalePositionWithinConstraints())))},{projection:p}=this.visualElement,h=p.addEventListener("measure",f);p&&!p.layout&&(p.root&&p.root.updateScroll(),p.updateLayout()),rt.read(f);const m=ju(window,"resize",()=>this.scalePositionWithinConstraints()),v=p.addEventListener("didUpdate",(({delta:E,hasLayoutChanged:b})=>{this.isDragging&&b&&(Za(A=>{const T=this.getAxisMotionValue(A);T&&(this.originPoint[A]+=E[A].translate,T.set(T.get()+E[A].translate))}),this.visualElement.render())}));return()=>{m(),l(),h(),v&&v(),u&&u()}}getProps(){const i=this.visualElement.getProps(),{drag:l=!1,dragDirectionLock:u=!1,dragPropagation:f=!1,dragConstraints:p=!1,dragElastic:h=Eg,dragMomentum:m=!0}=i;return{...i,drag:l,dragDirectionLock:u,dragPropagation:f,dragConstraints:p,dragElastic:h,dragMomentum:m}}}function AD(o){let i=!0;return()=>{if(i){i=!1;return}o()}}function k3(o,i,l){const u=MA(o,AD(l)),f=MA(i,AD(l));return()=>{u(),f()}}function pd(o,i,l){return(i===!0||i===o)&&(l===null||l===o)}function q3(o,i=10){let l=null;return Math.abs(o.y)>i?l="y":Math.abs(o.x)>i&&(l="x"),l}class Y3 extends Ei{constructor(i){super(i),this.removeGroupControls=na,this.removeListeners=na,this.controls=new H3(i)}mount(){const{dragControls:i}=this.node.getProps();i&&(this.removeGroupControls=i.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||na}update(){const{dragControls:i}=this.node.getProps(),{dragControls:l}=this.node.prevProps||{};i!==l&&(this.removeGroupControls(),i&&(this.removeGroupControls=i.subscribe(this.controls)))}unmount(){this.removeGroupControls(),this.removeListeners(),this.controls.isDragging||this.controls.endPanSession()}}const Qy=o=>(i,l)=>{o&&rt.update(()=>o(i,l),!1,!0)};class G3 extends Ei{constructor(){super(...arguments),this.removePointerDownListener=na}onPointerDown(i){this.session=new xx(i,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Rx(this.node)})}createPanHandlers(){const{onPanSessionStart:i,onPanStart:l,onPan:u,onPanEnd:f}=this.node.getProps();return{onSessionStart:Qy(i),onStart:Qy(l),onMove:Qy(u),onEnd:(p,h)=>{delete this.session,f&&rt.postRender(()=>f(p,h))}}}mount(){this.removePointerDownListener=_u(this.node.current,"pointerdown",i=>this.onPointerDown(i))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}let Zy=!1;class P3 extends ne.Component{componentDidMount(){const{visualElement:i,layoutGroup:l,switchLayoutGroup:u,layoutId:f}=this.props,{projection:p}=i;p&&(l.group&&l.group.add(p),u&&u.register&&f&&u.register(p),Zy&&p.root.didUpdate(),p.addEventListener("animationComplete",()=>{this.safeToRemove()}),p.setOptions({...p.options,layoutDependency:this.props.layoutDependency,onExitComplete:()=>this.safeToRemove()})),Ed.hasEverUpdated=!0}getSnapshotBeforeUpdate(i){const{layoutDependency:l,visualElement:u,drag:f,isPresent:p}=this.props,{projection:h}=u;return h&&(h.isPresent=p,i.layoutDependency!==l&&h.setOptions({...h.options,layoutDependency:l}),Zy=!0,f||i.layoutDependency!==l||l===void 0||i.isPresent!==p?h.willUpdate():this.safeToRemove(),i.isPresent!==p&&(p?h.promote():h.relegate()||rt.postRender(()=>{const m=h.getStack();(!m||!m.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:i}=this.props.visualElement;i&&(i.root.didUpdate(),Jg.postRender(()=>{!i.currentAnimation&&i.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:i,layoutGroup:l,switchLayoutGroup:u}=this.props,{projection:f}=i;Zy=!0,f&&(f.scheduleCheckAfterUnmount(),l&&l.group&&l.group.remove(f),u&&u.deregister&&u.deregister(f))}safeToRemove(){const{safeToRemove:i}=this.props;i&&i()}render(){return null}}function Ox(o){const[i,l]=yx(),u=ne.useContext(Og);return Ro.jsx(P3,{...o,layoutGroup:u,switchLayoutGroup:ne.useContext(Ax),isPresent:i,safeToRemove:l})}const X3={pan:{Feature:G3},drag:{Feature:Y3,ProjectionNode:mx,MeasureLayout:Ox}};function DD(o,i,l){const{props:u}=o;o.animationState&&u.whileHover&&o.animationState.setActive("whileHover",l==="Start");const f="onHover"+l,p=u[f];p&&rt.postRender(()=>p(i,qu(i)))}class $3 extends Ei{mount(){const{current:i}=this.node;i&&(this.unmount=mU(i,(l,u)=>(DD(this.node,u,"Start"),f=>DD(this.node,f,"End"))))}unmount(){}}class Q3 extends Ei{constructor(){super(...arguments),this.isActive=!1}onFocus(){let i=!1;try{i=this.node.current.matches(":focus-visible")}catch{i=!0}!i||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=Lu(ju(this.node.current,"focus",()=>this.onFocus()),ju(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}function RD(o,i,l){const{props:u}=o;if(o.current instanceof HTMLButtonElement&&o.current.disabled)return;o.animationState&&u.whileTap&&o.animationState.setActive("whileTap",l==="Start");const f="onTap"+(l==="End"?"":l),p=u[f];p&&rt.postRender(()=>p(i,qu(i)))}class Z3 extends Ei{mount(){const{current:i}=this.node;if(!i)return;const{globalTapTarget:l,propagate:u}=this.node.props;this.unmount=TU(i,(f,p)=>(RD(this.node,p,"Start"),(h,{success:m})=>RD(this.node,h,m?"End":"Cancel")),{useGlobalTarget:l,stopPropagation:u?.tap===!1})}unmount(){}}const Ag=new WeakMap,Fy=new WeakMap,F3=o=>{const i=Ag.get(o.target);i&&i(o)},J3=o=>{o.forEach(F3)};function K3({root:o,...i}){const l=o||document;Fy.has(l)||Fy.set(l,{});const u=Fy.get(l),f=JSON.stringify(i);return u[f]||(u[f]=new IntersectionObserver(J3,{root:o,...i})),u[f]}function I3(o,i,l){const u=K3(i);return Ag.set(o,l),u.observe(o),()=>{Ag.delete(o),u.unobserve(o)}}const W3={some:0,all:1};class eV extends Ei{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:i={}}=this.node.getProps(),{root:l,margin:u,amount:f="some",once:p}=i,h={root:l?l.current:void 0,rootMargin:u,threshold:typeof f=="number"?f:W3[f]},m=v=>{const{isIntersecting:E}=v;if(this.isInView===E||(this.isInView=E,p&&!E&&this.hasEnteredView))return;E&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",E);const{onViewportEnter:b,onViewportLeave:A}=this.node.getProps(),T=E?b:A;T&&T(v)};return I3(this.node.current,h,m)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:i,prevProps:l}=this.node;["amount","margin","root"].some(tV(i,l))&&this.startObserver()}unmount(){}}function tV({viewport:o={}},{viewport:i={}}={}){return l=>o[l]!==i[l]}const nV={inView:{Feature:eV},tap:{Feature:Z3},focus:{Feature:Q3},hover:{Feature:$3}},aV={layout:{ProjectionNode:mx,MeasureLayout:Ox}},oV={...w3,...nV,...X3,...aV},iV=E3(oV,A3);function Cx(o,i){return function(){return o.apply(i,arguments)}}const{toString:sV}=Object.prototype,{getPrototypeOf:sv}=Object,{iterator:Hd,toStringTag:Mx}=Symbol,kd=(o=>i=>{const l=sV.call(i);return o[l]||(o[l]=l.slice(8,-1).toLowerCase())})(Object.create(null)),va=o=>(o=o.toLowerCase(),i=>kd(i)===o),qd=o=>i=>typeof i===o,{isArray:Gr}=Array,Lr=qd("undefined");function Yu(o){return o!==null&&!Lr(o)&&o.constructor!==null&&!Lr(o.constructor)&&Tn(o.constructor.isBuffer)&&o.constructor.isBuffer(o)}const _x=va("ArrayBuffer");function rV(o){let i;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?i=ArrayBuffer.isView(o):i=o&&o.buffer&&_x(o.buffer),i}const lV=qd("string"),Tn=qd("function"),Nx=qd("number"),Gu=o=>o!==null&&typeof o=="object",uV=o=>o===!0||o===!1,Ad=o=>{if(kd(o)!=="object")return!1;const i=sv(o);return(i===null||i===Object.prototype||Object.getPrototypeOf(i)===null)&&!(Mx in o)&&!(Hd in o)},cV=o=>{if(!Gu(o)||Yu(o))return!1;try{return Object.keys(o).length===0&&Object.getPrototypeOf(o)===Object.prototype}catch{return!1}},fV=va("Date"),dV=va("File"),hV=va("Blob"),pV=va("FileList"),mV=o=>Gu(o)&&Tn(o.pipe),yV=o=>{let i;return o&&(typeof FormData=="function"&&o instanceof FormData||Tn(o.append)&&((i=kd(o))==="formdata"||i==="object"&&Tn(o.toString)&&o.toString()==="[object FormData]"))},gV=va("URLSearchParams"),[vV,bV,SV,TV]=["ReadableStream","Request","Response","Headers"].map(va),EV=o=>o.trim?o.trim():o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Pu(o,i,{allOwnKeys:l=!1}={}){if(o===null||typeof o>"u")return;let u,f;if(typeof o!="object"&&(o=[o]),Gr(o))for(u=0,f=o.length;u<f;u++)i.call(null,o[u],u,o);else{if(Yu(o))return;const p=l?Object.getOwnPropertyNames(o):Object.keys(o),h=p.length;let m;for(u=0;u<h;u++)m=p[u],i.call(null,o[m],m,o)}}function Ux(o,i){if(Yu(o))return null;i=i.toLowerCase();const l=Object.keys(o);let u=l.length,f;for(;u-- >0;)if(f=l[u],i===f.toLowerCase())return f;return null}const gs=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,zx=o=>!Lr(o)&&o!==gs;function Dg(){const{caseless:o,skipUndefined:i}=zx(this)&&this||{},l={},u=(f,p)=>{if(p==="__proto__"||p==="constructor"||p==="prototype")return;const h=o&&Ux(l,p)||p;Ad(l[h])&&Ad(f)?l[h]=Dg(l[h],f):Ad(f)?l[h]=Dg({},f):Gr(f)?l[h]=f.slice():(!i||!Lr(f))&&(l[h]=f)};for(let f=0,p=arguments.length;f<p;f++)arguments[f]&&Pu(arguments[f],u);return l}const AV=(o,i,l,{allOwnKeys:u}={})=>(Pu(i,(f,p)=>{l&&Tn(f)?Object.defineProperty(o,p,{value:Cx(f,l),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(o,p,{value:f,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:u}),o),DV=o=>(o.charCodeAt(0)===65279&&(o=o.slice(1)),o),RV=(o,i,l,u)=>{o.prototype=Object.create(i.prototype,u),Object.defineProperty(o.prototype,"constructor",{value:o,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(o,"super",{value:i.prototype}),l&&Object.assign(o.prototype,l)},xV=(o,i,l,u)=>{let f,p,h;const m={};if(i=i||{},o==null)return i;do{for(f=Object.getOwnPropertyNames(o),p=f.length;p-- >0;)h=f[p],(!u||u(h,o,i))&&!m[h]&&(i[h]=o[h],m[h]=!0);o=l!==!1&&sv(o)}while(o&&(!l||l(o,i))&&o!==Object.prototype);return i},wV=(o,i,l)=>{o=String(o),(l===void 0||l>o.length)&&(l=o.length),l-=i.length;const u=o.indexOf(i,l);return u!==-1&&u===l},OV=o=>{if(!o)return null;if(Gr(o))return o;let i=o.length;if(!Nx(i))return null;const l=new Array(i);for(;i-- >0;)l[i]=o[i];return l},CV=(o=>i=>o&&i instanceof o)(typeof Uint8Array<"u"&&sv(Uint8Array)),MV=(o,i)=>{const u=(o&&o[Hd]).call(o);let f;for(;(f=u.next())&&!f.done;){const p=f.value;i.call(o,p[0],p[1])}},_V=(o,i)=>{let l;const u=[];for(;(l=o.exec(i))!==null;)u.push(l);return u},NV=va("HTMLFormElement"),UV=o=>o.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(l,u,f){return u.toUpperCase()+f}),xD=(({hasOwnProperty:o})=>(i,l)=>o.call(i,l))(Object.prototype),zV=va("RegExp"),Vx=(o,i)=>{const l=Object.getOwnPropertyDescriptors(o),u={};Pu(l,(f,p)=>{let h;(h=i(f,p,o))!==!1&&(u[p]=h||f)}),Object.defineProperties(o,u)},VV=o=>{Vx(o,(i,l)=>{if(Tn(o)&&["arguments","caller","callee"].indexOf(l)!==-1)return!1;const u=o[l];if(Tn(u)){if(i.enumerable=!1,"writable"in i){i.writable=!1;return}i.set||(i.set=()=>{throw Error("Can not rewrite read-only method '"+l+"'")})}})},jV=(o,i)=>{const l={},u=f=>{f.forEach(p=>{l[p]=!0})};return Gr(o)?u(o):u(String(o).split(i)),l},BV=()=>{},LV=(o,i)=>o!=null&&Number.isFinite(o=+o)?o:i;function HV(o){return!!(o&&Tn(o.append)&&o[Mx]==="FormData"&&o[Hd])}const kV=o=>{const i=new Array(10),l=(u,f)=>{if(Gu(u)){if(i.indexOf(u)>=0)return;if(Yu(u))return u;if(!("toJSON"in u)){i[f]=u;const p=Gr(u)?[]:{};return Pu(u,(h,m)=>{const v=l(h,f+1);!Lr(v)&&(p[m]=v)}),i[f]=void 0,p}}return u};return l(o,0)},qV=va("AsyncFunction"),YV=o=>o&&(Gu(o)||Tn(o))&&Tn(o.then)&&Tn(o.catch),jx=((o,i)=>o?setImmediate:i?((l,u)=>(gs.addEventListener("message",({source:f,data:p})=>{f===gs&&p===l&&u.length&&u.shift()()},!1),f=>{u.push(f),gs.postMessage(l,"*")}))(`axios@${Math.random()}`,[]):l=>setTimeout(l))(typeof setImmediate=="function",Tn(gs.postMessage)),GV=typeof queueMicrotask<"u"?queueMicrotask.bind(gs):typeof process<"u"&&process.nextTick||jx,PV=o=>o!=null&&Tn(o[Hd]),H={isArray:Gr,isArrayBuffer:_x,isBuffer:Yu,isFormData:yV,isArrayBufferView:rV,isString:lV,isNumber:Nx,isBoolean:uV,isObject:Gu,isPlainObject:Ad,isEmptyObject:cV,isReadableStream:vV,isRequest:bV,isResponse:SV,isHeaders:TV,isUndefined:Lr,isDate:fV,isFile:dV,isBlob:hV,isRegExp:zV,isFunction:Tn,isStream:mV,isURLSearchParams:gV,isTypedArray:CV,isFileList:pV,forEach:Pu,merge:Dg,extend:AV,trim:EV,stripBOM:DV,inherits:RV,toFlatObject:xV,kindOf:kd,kindOfTest:va,endsWith:wV,toArray:OV,forEachEntry:MV,matchAll:_V,isHTMLForm:NV,hasOwnProperty:xD,hasOwnProp:xD,reduceDescriptors:Vx,freezeMethods:VV,toObjectSet:jV,toCamelCase:UV,noop:BV,toFiniteNumber:LV,findKey:Ux,global:gs,isContextDefined:zx,isSpecCompliantForm:HV,toJSONObject:kV,isAsyncFn:qV,isThenable:YV,setImmediate:jx,asap:GV,isIterable:PV};let Re=class Bx extends Error{static from(i,l,u,f,p,h){const m=new Bx(i.message,l||i.code,u,f,p);return m.cause=i,m.name=i.name,h&&Object.assign(m,h),m}constructor(i,l,u,f,p){super(i),this.name="AxiosError",this.isAxiosError=!0,l&&(this.code=l),u&&(this.config=u),f&&(this.request=f),p&&(this.response=p,this.status=p.status)}toJSON(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:H.toJSONObject(this.config),code:this.code,status:this.status}}};Re.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE";Re.ERR_BAD_OPTION="ERR_BAD_OPTION";Re.ECONNABORTED="ECONNABORTED";Re.ETIMEDOUT="ETIMEDOUT";Re.ERR_NETWORK="ERR_NETWORK";Re.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS";Re.ERR_DEPRECATED="ERR_DEPRECATED";Re.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE";Re.ERR_BAD_REQUEST="ERR_BAD_REQUEST";Re.ERR_CANCELED="ERR_CANCELED";Re.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT";Re.ERR_INVALID_URL="ERR_INVALID_URL";const XV=null;function Rg(o){return H.isPlainObject(o)||H.isArray(o)}function Lx(o){return H.endsWith(o,"[]")?o.slice(0,-2):o}function wD(o,i,l){return o?o.concat(i).map(function(f,p){return f=Lx(f),!l&&p?"["+f+"]":f}).join(l?".":""):i}function $V(o){return H.isArray(o)&&!o.some(Rg)}const QV=H.toFlatObject(H,{},null,function(i){return/^is[A-Z]/.test(i)});function Yd(o,i,l){if(!H.isObject(o))throw new TypeError("target must be an object");i=i||new FormData,l=H.toFlatObject(l,{metaTokens:!0,dots:!1,indexes:!1},!1,function(j,z){return!H.isUndefined(z[j])});const u=l.metaTokens,f=l.visitor||b,p=l.dots,h=l.indexes,v=(l.Blob||typeof Blob<"u"&&Blob)&&H.isSpecCompliantForm(i);if(!H.isFunction(f))throw new TypeError("visitor must be a function");function E(D){if(D===null)return"";if(H.isDate(D))return D.toISOString();if(H.isBoolean(D))return D.toString();if(!v&&H.isBlob(D))throw new Re("Blob is not supported. Use a Buffer instead.");return H.isArrayBuffer(D)||H.isTypedArray(D)?v&&typeof Blob=="function"?new Blob([D]):Buffer.from(D):D}function b(D,j,z){let k=D;if(D&&!z&&typeof D=="object"){if(H.endsWith(j,"{}"))j=u?j:j.slice(0,-2),D=JSON.stringify(D);else if(H.isArray(D)&&$V(D)||(H.isFileList(D)||H.endsWith(j,"[]"))&&(k=H.toArray(D)))return j=Lx(j),k.forEach(function(Y,I){!(H.isUndefined(Y)||Y===null)&&i.append(h===!0?wD([j],I,p):h===null?j:j+"[]",E(Y))}),!1}return Rg(D)?!0:(i.append(wD(z,j,p),E(D)),!1)}const A=[],T=Object.assign(QV,{defaultVisitor:b,convertValue:E,isVisitable:Rg});function R(D,j){if(!H.isUndefined(D)){if(A.indexOf(D)!==-1)throw Error("Circular reference detected in "+j.join("."));A.push(D),H.forEach(D,function(k,$){(!(H.isUndefined(k)||k===null)&&f.call(i,k,H.isString($)?$.trim():$,j,T))===!0&&R(k,j?j.concat($):[$])}),A.pop()}}if(!H.isObject(o))throw new TypeError("data must be an object");return R(o),i}function OD(o){const i={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(o).replace(/[!'()~]|%20|%00/g,function(u){return i[u]})}function rv(o,i){this._pairs=[],o&&Yd(o,this,i)}const Hx=rv.prototype;Hx.append=function(i,l){this._pairs.push([i,l])};Hx.toString=function(i){const l=i?function(u){return i.call(this,u,OD)}:OD;return this._pairs.map(function(f){return l(f[0])+"="+l(f[1])},"").join("&")};function ZV(o){return encodeURIComponent(o).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function kx(o,i,l){if(!i)return o;const u=l&&l.encode||ZV,f=H.isFunction(l)?{serialize:l}:l,p=f&&f.serialize;let h;if(p?h=p(i,f):h=H.isURLSearchParams(i)?i.toString():new rv(i,f).toString(u),h){const m=o.indexOf("#");m!==-1&&(o=o.slice(0,m)),o+=(o.indexOf("?")===-1?"?":"&")+h}return o}class CD{constructor(){this.handlers=[]}use(i,l,u){return this.handlers.push({fulfilled:i,rejected:l,synchronous:u?u.synchronous:!1,runWhen:u?u.runWhen:null}),this.handlers.length-1}eject(i){this.handlers[i]&&(this.handlers[i]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(i){H.forEach(this.handlers,function(u){u!==null&&i(u)})}}const lv={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0},FV=typeof URLSearchParams<"u"?URLSearchParams:rv,JV=typeof FormData<"u"?FormData:null,KV=typeof Blob<"u"?Blob:null,IV={isBrowser:!0,classes:{URLSearchParams:FV,FormData:JV,Blob:KV},protocols:["http","https","file","blob","url","data"]},uv=typeof window<"u"&&typeof document<"u",xg=typeof navigator=="object"&&navigator||void 0,WV=uv&&(!xg||["ReactNative","NativeScript","NS"].indexOf(xg.product)<0),ej=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",tj=uv&&window.location.href||"http://localhost",nj=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:uv,hasStandardBrowserEnv:WV,hasStandardBrowserWebWorkerEnv:ej,navigator:xg,origin:tj},Symbol.toStringTag,{value:"Module"})),Wt={...nj,...IV};function aj(o,i){return Yd(o,new Wt.classes.URLSearchParams,{visitor:function(l,u,f,p){return Wt.isNode&&H.isBuffer(l)?(this.append(u,l.toString("base64")),!1):p.defaultVisitor.apply(this,arguments)},...i})}function oj(o){return H.matchAll(/\w+|\[(\w*)]/g,o).map(i=>i[0]==="[]"?"":i[1]||i[0])}function ij(o){const i={},l=Object.keys(o);let u;const f=l.length;let p;for(u=0;u<f;u++)p=l[u],i[p]=o[p];return i}function qx(o){function i(l,u,f,p){let h=l[p++];if(h==="__proto__")return!0;const m=Number.isFinite(+h),v=p>=l.length;return h=!h&&H.isArray(f)?f.length:h,v?(H.hasOwnProp(f,h)?f[h]=[f[h],u]:f[h]=u,!m):((!f[h]||!H.isObject(f[h]))&&(f[h]=[]),i(l,u,f[h],p)&&H.isArray(f[h])&&(f[h]=ij(f[h])),!m)}if(H.isFormData(o)&&H.isFunction(o.entries)){const l={};return H.forEachEntry(o,(u,f)=>{i(oj(u),f,l,0)}),l}return null}function sj(o,i,l){if(H.isString(o))try{return(i||JSON.parse)(o),H.trim(o)}catch(u){if(u.name!=="SyntaxError")throw u}return(l||JSON.stringify)(o)}const Xu={transitional:lv,adapter:["xhr","http","fetch"],transformRequest:[function(i,l){const u=l.getContentType()||"",f=u.indexOf("application/json")>-1,p=H.isObject(i);if(p&&H.isHTMLForm(i)&&(i=new FormData(i)),H.isFormData(i))return f?JSON.stringify(qx(i)):i;if(H.isArrayBuffer(i)||H.isBuffer(i)||H.isStream(i)||H.isFile(i)||H.isBlob(i)||H.isReadableStream(i))return i;if(H.isArrayBufferView(i))return i.buffer;if(H.isURLSearchParams(i))return l.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),i.toString();let m;if(p){if(u.indexOf("application/x-www-form-urlencoded")>-1)return aj(i,this.formSerializer).toString();if((m=H.isFileList(i))||u.indexOf("multipart/form-data")>-1){const v=this.env&&this.env.FormData;return Yd(m?{"files[]":i}:i,v&&new v,this.formSerializer)}}return p||f?(l.setContentType("application/json",!1),sj(i)):i}],transformResponse:[function(i){const l=this.transitional||Xu.transitional,u=l&&l.forcedJSONParsing,f=this.responseType==="json";if(H.isResponse(i)||H.isReadableStream(i))return i;if(i&&H.isString(i)&&(u&&!this.responseType||f)){const h=!(l&&l.silentJSONParsing)&&f;try{return JSON.parse(i,this.parseReviver)}catch(m){if(h)throw m.name==="SyntaxError"?Re.from(m,Re.ERR_BAD_RESPONSE,this,null,this.response):m}}return i}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Wt.classes.FormData,Blob:Wt.classes.Blob},validateStatus:function(i){return i>=200&&i<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};H.forEach(["delete","get","head","post","put","patch"],o=>{Xu.headers[o]={}});const rj=H.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),lj=o=>{const i={};let l,u,f;return o&&o.split(`
249
+ `).forEach(function(h){f=h.indexOf(":"),l=h.substring(0,f).trim().toLowerCase(),u=h.substring(f+1).trim(),!(!l||i[l]&&rj[l])&&(l==="set-cookie"?i[l]?i[l].push(u):i[l]=[u]:i[l]=i[l]?i[l]+", "+u:u)}),i},MD=Symbol("internals");function xu(o){return o&&String(o).trim().toLowerCase()}function Dd(o){return o===!1||o==null?o:H.isArray(o)?o.map(Dd):String(o)}function uj(o){const i=Object.create(null),l=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let u;for(;u=l.exec(o);)i[u[1]]=u[2];return i}const cj=o=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(o.trim());function Jy(o,i,l,u,f){if(H.isFunction(u))return u.call(this,i,l);if(f&&(i=l),!!H.isString(i)){if(H.isString(u))return i.indexOf(u)!==-1;if(H.isRegExp(u))return u.test(i)}}function fj(o){return o.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(i,l,u)=>l.toUpperCase()+u)}function dj(o,i){const l=H.toCamelCase(" "+i);["get","set","has"].forEach(u=>{Object.defineProperty(o,u+l,{value:function(f,p,h){return this[u].call(this,i,f,p,h)},configurable:!0})})}let En=class{constructor(i){i&&this.set(i)}set(i,l,u){const f=this;function p(m,v,E){const b=xu(v);if(!b)throw new Error("header name must be a non-empty string");const A=H.findKey(f,b);(!A||f[A]===void 0||E===!0||E===void 0&&f[A]!==!1)&&(f[A||v]=Dd(m))}const h=(m,v)=>H.forEach(m,(E,b)=>p(E,b,v));if(H.isPlainObject(i)||i instanceof this.constructor)h(i,l);else if(H.isString(i)&&(i=i.trim())&&!cj(i))h(lj(i),l);else if(H.isObject(i)&&H.isIterable(i)){let m={},v,E;for(const b of i){if(!H.isArray(b))throw TypeError("Object iterator must return a key-value pair");m[E=b[0]]=(v=m[E])?H.isArray(v)?[...v,b[1]]:[v,b[1]]:b[1]}h(m,l)}else i!=null&&p(l,i,u);return this}get(i,l){if(i=xu(i),i){const u=H.findKey(this,i);if(u){const f=this[u];if(!l)return f;if(l===!0)return uj(f);if(H.isFunction(l))return l.call(this,f,u);if(H.isRegExp(l))return l.exec(f);throw new TypeError("parser must be boolean|regexp|function")}}}has(i,l){if(i=xu(i),i){const u=H.findKey(this,i);return!!(u&&this[u]!==void 0&&(!l||Jy(this,this[u],u,l)))}return!1}delete(i,l){const u=this;let f=!1;function p(h){if(h=xu(h),h){const m=H.findKey(u,h);m&&(!l||Jy(u,u[m],m,l))&&(delete u[m],f=!0)}}return H.isArray(i)?i.forEach(p):p(i),f}clear(i){const l=Object.keys(this);let u=l.length,f=!1;for(;u--;){const p=l[u];(!i||Jy(this,this[p],p,i,!0))&&(delete this[p],f=!0)}return f}normalize(i){const l=this,u={};return H.forEach(this,(f,p)=>{const h=H.findKey(u,p);if(h){l[h]=Dd(f),delete l[p];return}const m=i?fj(p):String(p).trim();m!==p&&delete l[p],l[m]=Dd(f),u[m]=!0}),this}concat(...i){return this.constructor.concat(this,...i)}toJSON(i){const l=Object.create(null);return H.forEach(this,(u,f)=>{u!=null&&u!==!1&&(l[f]=i&&H.isArray(u)?u.join(", "):u)}),l}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([i,l])=>i+": "+l).join(`
250
+ `)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(i){return i instanceof this?i:new this(i)}static concat(i,...l){const u=new this(i);return l.forEach(f=>u.set(f)),u}static accessor(i){const u=(this[MD]=this[MD]={accessors:{}}).accessors,f=this.prototype;function p(h){const m=xu(h);u[m]||(dj(f,h),u[m]=!0)}return H.isArray(i)?i.forEach(p):p(i),this}};En.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);H.reduceDescriptors(En.prototype,({value:o},i)=>{let l=i[0].toUpperCase()+i.slice(1);return{get:()=>o,set(u){this[l]=u}}});H.freezeMethods(En);function Ky(o,i){const l=this||Xu,u=i||l,f=En.from(u.headers);let p=u.data;return H.forEach(o,function(m){p=m.call(l,p,f.normalize(),i?i.status:void 0)}),f.normalize(),p}function Yx(o){return!!(o&&o.__CANCEL__)}let $u=class extends Re{constructor(i,l,u){super(i??"canceled",Re.ERR_CANCELED,l,u),this.name="CanceledError",this.__CANCEL__=!0}};function Gx(o,i,l){const u=l.config.validateStatus;!l.status||!u||u(l.status)?o(l):i(new Re("Request failed with status code "+l.status,[Re.ERR_BAD_REQUEST,Re.ERR_BAD_RESPONSE][Math.floor(l.status/100)-4],l.config,l.request,l))}function hj(o){const i=/^([-+\w]{1,25})(:?\/\/|:)/.exec(o);return i&&i[1]||""}function pj(o,i){o=o||10;const l=new Array(o),u=new Array(o);let f=0,p=0,h;return i=i!==void 0?i:1e3,function(v){const E=Date.now(),b=u[p];h||(h=E),l[f]=v,u[f]=E;let A=p,T=0;for(;A!==f;)T+=l[A++],A=A%o;if(f=(f+1)%o,f===p&&(p=(p+1)%o),E-h<i)return;const R=b&&E-b;return R?Math.round(T*1e3/R):void 0}}function mj(o,i){let l=0,u=1e3/i,f,p;const h=(E,b=Date.now())=>{l=b,f=null,p&&(clearTimeout(p),p=null),o(...E)};return[(...E)=>{const b=Date.now(),A=b-l;A>=u?h(E,b):(f=E,p||(p=setTimeout(()=>{p=null,h(f)},u-A)))},()=>f&&h(f)]}const zd=(o,i,l=3)=>{let u=0;const f=pj(50,250);return mj(p=>{const h=p.loaded,m=p.lengthComputable?p.total:void 0,v=h-u,E=f(v),b=h<=m;u=h;const A={loaded:h,total:m,progress:m?h/m:void 0,bytes:v,rate:E||void 0,estimated:E&&m&&b?(m-h)/E:void 0,event:p,lengthComputable:m!=null,[i?"download":"upload"]:!0};o(A)},l)},_D=(o,i)=>{const l=o!=null;return[u=>i[0]({lengthComputable:l,total:o,loaded:u}),i[1]]},ND=o=>(...i)=>H.asap(()=>o(...i)),yj=Wt.hasStandardBrowserEnv?((o,i)=>l=>(l=new URL(l,Wt.origin),o.protocol===l.protocol&&o.host===l.host&&(i||o.port===l.port)))(new URL(Wt.origin),Wt.navigator&&/(msie|trident)/i.test(Wt.navigator.userAgent)):()=>!0,gj=Wt.hasStandardBrowserEnv?{write(o,i,l,u,f,p,h){if(typeof document>"u")return;const m=[`${o}=${encodeURIComponent(i)}`];H.isNumber(l)&&m.push(`expires=${new Date(l).toUTCString()}`),H.isString(u)&&m.push(`path=${u}`),H.isString(f)&&m.push(`domain=${f}`),p===!0&&m.push("secure"),H.isString(h)&&m.push(`SameSite=${h}`),document.cookie=m.join("; ")},read(o){if(typeof document>"u")return null;const i=document.cookie.match(new RegExp("(?:^|; )"+o+"=([^;]*)"));return i?decodeURIComponent(i[1]):null},remove(o){this.write(o,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function vj(o){return typeof o!="string"?!1:/^([a-z][a-z\d+\-.]*:)?\/\//i.test(o)}function bj(o,i){return i?o.replace(/\/?\/$/,"")+"/"+i.replace(/^\/+/,""):o}function Px(o,i,l){let u=!vj(i);return o&&(u||l==!1)?bj(o,i):i}const UD=o=>o instanceof En?{...o}:o;function Ss(o,i){i=i||{};const l={};function u(E,b,A,T){return H.isPlainObject(E)&&H.isPlainObject(b)?H.merge.call({caseless:T},E,b):H.isPlainObject(b)?H.merge({},b):H.isArray(b)?b.slice():b}function f(E,b,A,T){if(H.isUndefined(b)){if(!H.isUndefined(E))return u(void 0,E,A,T)}else return u(E,b,A,T)}function p(E,b){if(!H.isUndefined(b))return u(void 0,b)}function h(E,b){if(H.isUndefined(b)){if(!H.isUndefined(E))return u(void 0,E)}else return u(void 0,b)}function m(E,b,A){if(A in i)return u(E,b);if(A in o)return u(void 0,E)}const v={url:p,method:p,data:p,baseURL:h,transformRequest:h,transformResponse:h,paramsSerializer:h,timeout:h,timeoutMessage:h,withCredentials:h,withXSRFToken:h,adapter:h,responseType:h,xsrfCookieName:h,xsrfHeaderName:h,onUploadProgress:h,onDownloadProgress:h,decompress:h,maxContentLength:h,maxBodyLength:h,beforeRedirect:h,transport:h,httpAgent:h,httpsAgent:h,cancelToken:h,socketPath:h,responseEncoding:h,validateStatus:m,headers:(E,b,A)=>f(UD(E),UD(b),A,!0)};return H.forEach(Object.keys({...o,...i}),function(b){if(b==="__proto__"||b==="constructor"||b==="prototype")return;const A=H.hasOwnProp(v,b)?v[b]:f,T=A(o[b],i[b],b);H.isUndefined(T)&&A!==m||(l[b]=T)}),l}const Xx=o=>{const i=Ss({},o);let{data:l,withXSRFToken:u,xsrfHeaderName:f,xsrfCookieName:p,headers:h,auth:m}=i;if(i.headers=h=En.from(h),i.url=kx(Px(i.baseURL,i.url,i.allowAbsoluteUrls),o.params,o.paramsSerializer),m&&h.set("Authorization","Basic "+btoa((m.username||"")+":"+(m.password?unescape(encodeURIComponent(m.password)):""))),H.isFormData(l)){if(Wt.hasStandardBrowserEnv||Wt.hasStandardBrowserWebWorkerEnv)h.setContentType(void 0);else if(H.isFunction(l.getHeaders)){const v=l.getHeaders(),E=["content-type","content-length"];Object.entries(v).forEach(([b,A])=>{E.includes(b.toLowerCase())&&h.set(b,A)})}}if(Wt.hasStandardBrowserEnv&&(u&&H.isFunction(u)&&(u=u(i)),u||u!==!1&&yj(i.url))){const v=f&&p&&gj.read(p);v&&h.set(f,v)}return i},Sj=typeof XMLHttpRequest<"u",Tj=Sj&&function(o){return new Promise(function(l,u){const f=Xx(o);let p=f.data;const h=En.from(f.headers).normalize();let{responseType:m,onUploadProgress:v,onDownloadProgress:E}=f,b,A,T,R,D;function j(){R&&R(),D&&D(),f.cancelToken&&f.cancelToken.unsubscribe(b),f.signal&&f.signal.removeEventListener("abort",b)}let z=new XMLHttpRequest;z.open(f.method.toUpperCase(),f.url,!0),z.timeout=f.timeout;function k(){if(!z)return;const Y=En.from("getAllResponseHeaders"in z&&z.getAllResponseHeaders()),Z={data:!m||m==="text"||m==="json"?z.responseText:z.response,status:z.status,statusText:z.statusText,headers:Y,config:o,request:z};Gx(function(ve){l(ve),j()},function(ve){u(ve),j()},Z),z=null}"onloadend"in z?z.onloadend=k:z.onreadystatechange=function(){!z||z.readyState!==4||z.status===0&&!(z.responseURL&&z.responseURL.indexOf("file:")===0)||setTimeout(k)},z.onabort=function(){z&&(u(new Re("Request aborted",Re.ECONNABORTED,o,z)),z=null)},z.onerror=function(I){const Z=I&&I.message?I.message:"Network Error",Te=new Re(Z,Re.ERR_NETWORK,o,z);Te.event=I||null,u(Te),z=null},z.ontimeout=function(){let I=f.timeout?"timeout of "+f.timeout+"ms exceeded":"timeout exceeded";const Z=f.transitional||lv;f.timeoutErrorMessage&&(I=f.timeoutErrorMessage),u(new Re(I,Z.clarifyTimeoutError?Re.ETIMEDOUT:Re.ECONNABORTED,o,z)),z=null},p===void 0&&h.setContentType(null),"setRequestHeader"in z&&H.forEach(h.toJSON(),function(I,Z){z.setRequestHeader(Z,I)}),H.isUndefined(f.withCredentials)||(z.withCredentials=!!f.withCredentials),m&&m!=="json"&&(z.responseType=f.responseType),E&&([T,D]=zd(E,!0),z.addEventListener("progress",T)),v&&z.upload&&([A,R]=zd(v),z.upload.addEventListener("progress",A),z.upload.addEventListener("loadend",R)),(f.cancelToken||f.signal)&&(b=Y=>{z&&(u(!Y||Y.type?new $u(null,o,z):Y),z.abort(),z=null)},f.cancelToken&&f.cancelToken.subscribe(b),f.signal&&(f.signal.aborted?b():f.signal.addEventListener("abort",b)));const $=hj(f.url);if($&&Wt.protocols.indexOf($)===-1){u(new Re("Unsupported protocol "+$+":",Re.ERR_BAD_REQUEST,o));return}z.send(p||null)})},Ej=(o,i)=>{const{length:l}=o=o?o.filter(Boolean):[];if(i||l){let u=new AbortController,f;const p=function(E){if(!f){f=!0,m();const b=E instanceof Error?E:this.reason;u.abort(b instanceof Re?b:new $u(b instanceof Error?b.message:b))}};let h=i&&setTimeout(()=>{h=null,p(new Re(`timeout of ${i}ms exceeded`,Re.ETIMEDOUT))},i);const m=()=>{o&&(h&&clearTimeout(h),h=null,o.forEach(E=>{E.unsubscribe?E.unsubscribe(p):E.removeEventListener("abort",p)}),o=null)};o.forEach(E=>E.addEventListener("abort",p));const{signal:v}=u;return v.unsubscribe=()=>H.asap(m),v}},Aj=function*(o,i){let l=o.byteLength;if(l<i){yield o;return}let u=0,f;for(;u<l;)f=u+i,yield o.slice(u,f),u=f},Dj=async function*(o,i){for await(const l of Rj(o))yield*Aj(l,i)},Rj=async function*(o){if(o[Symbol.asyncIterator]){yield*o;return}const i=o.getReader();try{for(;;){const{done:l,value:u}=await i.read();if(l)break;yield u}}finally{await i.cancel()}},zD=(o,i,l,u)=>{const f=Dj(o,i);let p=0,h,m=v=>{h||(h=!0,u&&u(v))};return new ReadableStream({async pull(v){try{const{done:E,value:b}=await f.next();if(E){m(),v.close();return}let A=b.byteLength;if(l){let T=p+=A;l(T)}v.enqueue(new Uint8Array(b))}catch(E){throw m(E),E}},cancel(v){return m(v),f.return()}},{highWaterMark:2})},VD=64*1024,{isFunction:md}=H,xj=(({Request:o,Response:i})=>({Request:o,Response:i}))(H.global),{ReadableStream:jD,TextEncoder:BD}=H.global,LD=(o,...i)=>{try{return!!o(...i)}catch{return!1}},wj=o=>{o=H.merge.call({skipUndefined:!0},xj,o);const{fetch:i,Request:l,Response:u}=o,f=i?md(i):typeof fetch=="function",p=md(l),h=md(u);if(!f)return!1;const m=f&&md(jD),v=f&&(typeof BD=="function"?(D=>j=>D.encode(j))(new BD):async D=>new Uint8Array(await new l(D).arrayBuffer())),E=p&&m&&LD(()=>{let D=!1;const j=new l(Wt.origin,{body:new jD,method:"POST",get duplex(){return D=!0,"half"}}).headers.has("Content-Type");return D&&!j}),b=h&&m&&LD(()=>H.isReadableStream(new u("").body)),A={stream:b&&(D=>D.body)};f&&["text","arrayBuffer","blob","formData","stream"].forEach(D=>{!A[D]&&(A[D]=(j,z)=>{let k=j&&j[D];if(k)return k.call(j);throw new Re(`Response type '${D}' is not supported`,Re.ERR_NOT_SUPPORT,z)})});const T=async D=>{if(D==null)return 0;if(H.isBlob(D))return D.size;if(H.isSpecCompliantForm(D))return(await new l(Wt.origin,{method:"POST",body:D}).arrayBuffer()).byteLength;if(H.isArrayBufferView(D)||H.isArrayBuffer(D))return D.byteLength;if(H.isURLSearchParams(D)&&(D=D+""),H.isString(D))return(await v(D)).byteLength},R=async(D,j)=>{const z=H.toFiniteNumber(D.getContentLength());return z??T(j)};return async D=>{let{url:j,method:z,data:k,signal:$,cancelToken:Y,timeout:I,onDownloadProgress:Z,onUploadProgress:Te,responseType:ve,headers:W,withCredentials:ce="same-origin",fetchOptions:F}=Xx(D),Xe=i||fetch;ve=ve?(ve+"").toLowerCase():"text";let fe=Ej([$,Y&&Y.toAbortSignal()],I),be=null;const Ze=fe&&fe.unsubscribe&&(()=>{fe.unsubscribe()});let lt;try{if(Te&&E&&z!=="get"&&z!=="head"&&(lt=await R(W,k))!==0){let C=new l(j,{method:"POST",body:k,duplex:"half"}),Q;if(H.isFormData(k)&&(Q=C.headers.get("content-type"))&&W.setContentType(Q),C.body){const[me,re]=_D(lt,zd(ND(Te)));k=zD(C.body,VD,me,re)}}H.isString(ce)||(ce=ce?"include":"omit");const G=p&&"credentials"in l.prototype,ae={...F,signal:fe,method:z.toUpperCase(),headers:W.normalize().toJSON(),body:k,duplex:"half",credentials:G?ce:void 0};be=p&&new l(j,ae);let ie=await(p?Xe(be,F):Xe(j,ae));const xe=b&&(ve==="stream"||ve==="response");if(b&&(Z||xe&&Ze)){const C={};["status","statusText","headers"].forEach(tt=>{C[tt]=ie[tt]});const Q=H.toFiniteNumber(ie.headers.get("content-length")),[me,re]=Z&&_D(Q,zd(ND(Z),!0))||[];ie=new u(zD(ie.body,VD,me,()=>{re&&re(),Ze&&Ze()}),C)}ve=ve||"text";let Be=await A[H.findKey(A,ve)||"text"](ie,D);return!xe&&Ze&&Ze(),await new Promise((C,Q)=>{Gx(C,Q,{data:Be,headers:En.from(ie.headers),status:ie.status,statusText:ie.statusText,config:D,request:be})})}catch(G){throw Ze&&Ze(),G&&G.name==="TypeError"&&/Load failed|fetch/i.test(G.message)?Object.assign(new Re("Network Error",Re.ERR_NETWORK,D,be,G&&G.response),{cause:G.cause||G}):Re.from(G,G&&G.code,D,be,G&&G.response)}}},Oj=new Map,$x=o=>{let i=o&&o.env||{};const{fetch:l,Request:u,Response:f}=i,p=[u,f,l];let h=p.length,m=h,v,E,b=Oj;for(;m--;)v=p[m],E=b.get(v),E===void 0&&b.set(v,E=m?new Map:wj(i)),b=E;return E};$x();const cv={http:XV,xhr:Tj,fetch:{get:$x}};H.forEach(cv,(o,i)=>{if(o){try{Object.defineProperty(o,"name",{value:i})}catch{}Object.defineProperty(o,"adapterName",{value:i})}});const HD=o=>`- ${o}`,Cj=o=>H.isFunction(o)||o===null||o===!1;function Mj(o,i){o=H.isArray(o)?o:[o];const{length:l}=o;let u,f;const p={};for(let h=0;h<l;h++){u=o[h];let m;if(f=u,!Cj(u)&&(f=cv[(m=String(u)).toLowerCase()],f===void 0))throw new Re(`Unknown adapter '${m}'`);if(f&&(H.isFunction(f)||(f=f.get(i))))break;p[m||"#"+h]=f}if(!f){const h=Object.entries(p).map(([v,E])=>`adapter ${v} `+(E===!1?"is not supported by the environment":"is not available in the build"));let m=l?h.length>1?`since :
251
+ `+h.map(HD).join(`
252
+ `):" "+HD(h[0]):"as no adapter specified";throw new Re("There is no suitable adapter to dispatch the request "+m,"ERR_NOT_SUPPORT")}return f}const Qx={getAdapter:Mj,adapters:cv};function Iy(o){if(o.cancelToken&&o.cancelToken.throwIfRequested(),o.signal&&o.signal.aborted)throw new $u(null,o)}function kD(o){return Iy(o),o.headers=En.from(o.headers),o.data=Ky.call(o,o.transformRequest),["post","put","patch"].indexOf(o.method)!==-1&&o.headers.setContentType("application/x-www-form-urlencoded",!1),Qx.getAdapter(o.adapter||Xu.adapter,o)(o).then(function(u){return Iy(o),u.data=Ky.call(o,o.transformResponse,u),u.headers=En.from(u.headers),u},function(u){return Yx(u)||(Iy(o),u&&u.response&&(u.response.data=Ky.call(o,o.transformResponse,u.response),u.response.headers=En.from(u.response.headers))),Promise.reject(u)})}const Zx="1.13.5",Gd={};["object","boolean","number","function","string","symbol"].forEach((o,i)=>{Gd[o]=function(u){return typeof u===o||"a"+(i<1?"n ":" ")+o}});const qD={};Gd.transitional=function(i,l,u){function f(p,h){return"[Axios v"+Zx+"] Transitional option '"+p+"'"+h+(u?". "+u:"")}return(p,h,m)=>{if(i===!1)throw new Re(f(h," has been removed"+(l?" in "+l:"")),Re.ERR_DEPRECATED);return l&&!qD[h]&&(qD[h]=!0,console.warn(f(h," has been deprecated since v"+l+" and will be removed in the near future"))),i?i(p,h,m):!0}};Gd.spelling=function(i){return(l,u)=>(console.warn(`${u} is likely a misspelling of ${i}`),!0)};function _j(o,i,l){if(typeof o!="object")throw new Re("options must be an object",Re.ERR_BAD_OPTION_VALUE);const u=Object.keys(o);let f=u.length;for(;f-- >0;){const p=u[f],h=i[p];if(h){const m=o[p],v=m===void 0||h(m,p,o);if(v!==!0)throw new Re("option "+p+" must be "+v,Re.ERR_BAD_OPTION_VALUE);continue}if(l!==!0)throw new Re("Unknown option "+p,Re.ERR_BAD_OPTION)}}const Rd={assertOptions:_j,validators:Gd},ea=Rd.validators;let bs=class{constructor(i){this.defaults=i||{},this.interceptors={request:new CD,response:new CD}}async request(i,l){try{return await this._request(i,l)}catch(u){if(u instanceof Error){let f={};Error.captureStackTrace?Error.captureStackTrace(f):f=new Error;const p=f.stack?f.stack.replace(/^.+\n/,""):"";try{u.stack?p&&!String(u.stack).endsWith(p.replace(/^.+\n.+\n/,""))&&(u.stack+=`
253
+ `+p):u.stack=p}catch{}}throw u}}_request(i,l){typeof i=="string"?(l=l||{},l.url=i):l=i||{},l=Ss(this.defaults,l);const{transitional:u,paramsSerializer:f,headers:p}=l;u!==void 0&&Rd.assertOptions(u,{silentJSONParsing:ea.transitional(ea.boolean),forcedJSONParsing:ea.transitional(ea.boolean),clarifyTimeoutError:ea.transitional(ea.boolean),legacyInterceptorReqResOrdering:ea.transitional(ea.boolean)},!1),f!=null&&(H.isFunction(f)?l.paramsSerializer={serialize:f}:Rd.assertOptions(f,{encode:ea.function,serialize:ea.function},!0)),l.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?l.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:l.allowAbsoluteUrls=!0),Rd.assertOptions(l,{baseUrl:ea.spelling("baseURL"),withXsrfToken:ea.spelling("withXSRFToken")},!0),l.method=(l.method||this.defaults.method||"get").toLowerCase();let h=p&&H.merge(p.common,p[l.method]);p&&H.forEach(["delete","get","head","post","put","patch","common"],D=>{delete p[D]}),l.headers=En.concat(h,p);const m=[];let v=!0;this.interceptors.request.forEach(function(j){if(typeof j.runWhen=="function"&&j.runWhen(l)===!1)return;v=v&&j.synchronous;const z=l.transitional||lv;z&&z.legacyInterceptorReqResOrdering?m.unshift(j.fulfilled,j.rejected):m.push(j.fulfilled,j.rejected)});const E=[];this.interceptors.response.forEach(function(j){E.push(j.fulfilled,j.rejected)});let b,A=0,T;if(!v){const D=[kD.bind(this),void 0];for(D.unshift(...m),D.push(...E),T=D.length,b=Promise.resolve(l);A<T;)b=b.then(D[A++],D[A++]);return b}T=m.length;let R=l;for(;A<T;){const D=m[A++],j=m[A++];try{R=D(R)}catch(z){j.call(this,z);break}}try{b=kD.call(this,R)}catch(D){return Promise.reject(D)}for(A=0,T=E.length;A<T;)b=b.then(E[A++],E[A++]);return b}getUri(i){i=Ss(this.defaults,i);const l=Px(i.baseURL,i.url,i.allowAbsoluteUrls);return kx(l,i.params,i.paramsSerializer)}};H.forEach(["delete","get","head","options"],function(i){bs.prototype[i]=function(l,u){return this.request(Ss(u||{},{method:i,url:l,data:(u||{}).data}))}});H.forEach(["post","put","patch"],function(i){function l(u){return function(p,h,m){return this.request(Ss(m||{},{method:i,headers:u?{"Content-Type":"multipart/form-data"}:{},url:p,data:h}))}}bs.prototype[i]=l(),bs.prototype[i+"Form"]=l(!0)});let Nj=class Fx{constructor(i){if(typeof i!="function")throw new TypeError("executor must be a function.");let l;this.promise=new Promise(function(p){l=p});const u=this;this.promise.then(f=>{if(!u._listeners)return;let p=u._listeners.length;for(;p-- >0;)u._listeners[p](f);u._listeners=null}),this.promise.then=f=>{let p;const h=new Promise(m=>{u.subscribe(m),p=m}).then(f);return h.cancel=function(){u.unsubscribe(p)},h},i(function(p,h,m){u.reason||(u.reason=new $u(p,h,m),l(u.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(i){if(this.reason){i(this.reason);return}this._listeners?this._listeners.push(i):this._listeners=[i]}unsubscribe(i){if(!this._listeners)return;const l=this._listeners.indexOf(i);l!==-1&&this._listeners.splice(l,1)}toAbortSignal(){const i=new AbortController,l=u=>{i.abort(u)};return this.subscribe(l),i.signal.unsubscribe=()=>this.unsubscribe(l),i.signal}static source(){let i;return{token:new Fx(function(f){i=f}),cancel:i}}};function Uj(o){return function(l){return o.apply(null,l)}}function zj(o){return H.isObject(o)&&o.isAxiosError===!0}const wg={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(wg).forEach(([o,i])=>{wg[i]=o});function Jx(o){const i=new bs(o),l=Cx(bs.prototype.request,i);return H.extend(l,bs.prototype,i,{allOwnKeys:!0}),H.extend(l,i,null,{allOwnKeys:!0}),l.create=function(f){return Jx(Ss(o,f))},l}const gt=Jx(Xu);gt.Axios=bs;gt.CanceledError=$u;gt.CancelToken=Nj;gt.isCancel=Yx;gt.VERSION=Zx;gt.toFormData=Yd;gt.AxiosError=Re;gt.Cancel=gt.CanceledError;gt.all=function(i){return Promise.all(i)};gt.spread=Uj;gt.isAxiosError=zj;gt.mergeConfig=Ss;gt.AxiosHeaders=En;gt.formToJSON=o=>qx(H.isHTMLForm(o)?new FormData(o):o);gt.getAdapter=Qx.getAdapter;gt.HttpStatusCode=wg;gt.default=gt;const{Axios:qj,AxiosError:Yj,CanceledError:Gj,isCancel:Pj,CancelToken:Xj,VERSION:$j,all:Qj,Cancel:Zj,isAxiosError:Fj,spread:Jj,toFormData:Kj,AxiosHeaders:Ij,HttpStatusCode:Wj,formToJSON:e4,getAdapter:t4,mergeConfig:n4}=gt;function YD(o){return o>=1e6?`${(o/1e6).toFixed(1)}M`:o>=1e3?`${(o/1e3).toFixed(1)}K`:String(o)}function Wy(o){return o>=.7?"text-green-500":o>=.3?"text-zora-amber":"text-red-500"}function Vj(o){return o>=.7?"bg-green-500":o>=.3?"bg-zora-amber":"bg-red-500"}const jj=()=>{const[o,i]=ne.useState([]),[l,u]=ne.useState([]),[f,p]=ne.useState(""),[h,m]=ne.useState("job_active"),[v,E]=ne.useState(["Zora is running.","Waiting for tasks..."]);ne.useEffect(()=>{const R=async()=>{try{const j=await gt.get("/api/health");j.data.ok&&i(j.data.providers)}catch(j){console.error("Health check failed",j)}};R();const D=setInterval(R,3e4);return()=>clearInterval(D)},[]),ne.useEffect(()=>{const R=async()=>{try{const j=await gt.get("/api/quota");j.data.ok&&u(j.data.providers)}catch(j){console.error("Quota fetch failed",j)}};R();const D=setInterval(R,1e4);return()=>clearInterval(D)},[]);const b=async()=>{if(f)try{await gt.post("/api/steer",{jobId:h,message:f,author:"operator",source:"dashboard"}),E(R=>[`Message sent: ${f}`,...R].slice(0,50)),p("")}catch(R){console.error("Steering message failed",R),E(D=>["Failed to send message",...D].slice(0,50))}},A=l.reduce((R,D)=>R+D.usage.totalCostUsd,0),T=l.reduce((R,D)=>R+D.usage.requestCount,0);return ee.jsxDEV("div",{className:"h-screen w-screen flex flex-col p-4 bg-zora-obsidian relative overflow-hidden",children:[ee.jsxDEV("div",{className:"scanline"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:98,columnNumber:7},void 0),ee.jsxDEV("div",{className:"flex items-center gap-4 mb-6",children:[ee.jsxDEV("div",{className:"lcars-bar flex-1 bg-zora-amber",children:"ZORA // DASHBOARD"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:102,columnNumber:9},void 0),ee.jsxDEV("div",{className:"w-32 bg-zora-cyan h-8 rounded-r-full"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:105,columnNumber:9},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:101,columnNumber:7},void 0),ee.jsxDEV("div",{className:"flex-1 grid grid-cols-12 gap-4 min-h-0",children:[ee.jsxDEV("div",{className:"col-span-3 flex flex-col gap-4",children:[ee.jsxDEV("div",{className:"lcars-bar bg-zora-magenta",children:"Provider Status"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:112,columnNumber:11},void 0),ee.jsxDEV("div",{className:"flex-1 lcars-panel border-zora-magenta bg-zora-magenta/5 overflow-y-auto",children:ee.jsxDEV(Kz,{children:o.map(R=>{const D=l.find(j=>j.name===R.name);return ee.jsxDEV(iV.div,{initial:{opacity:0,x:-20},animate:{opacity:1,x:0},className:"mb-4 p-2 bg-black/40 border-l-2 border-zora-cyan",children:[ee.jsxDEV("div",{className:"flex justify-between items-center mb-1",children:[ee.jsxDEV("span",{className:"text-zora-cyan font-bold uppercase text-xs",children:R.name},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:125,columnNumber:23},void 0),ee.jsxDEV(iA,{size:14,className:R.valid?"text-green-500":"text-red-500"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:126,columnNumber:23},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:124,columnNumber:21},void 0),ee.jsxDEV("div",{className:"text-[10px] font-data text-zora-amber uppercase mb-2",children:R.valid?"Connected":"Disconnected"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:128,columnNumber:21},void 0),D&&ee.jsxDEV("div",{className:"space-y-1",children:[ee.jsxDEV("div",{className:"flex items-center gap-2",children:[ee.jsxDEV(e_,{size:10,className:Wy(D.quota.healthScore)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:135,columnNumber:27},void 0),ee.jsxDEV("div",{className:"flex-1 h-1.5 bg-black/60 rounded-full overflow-hidden",children:ee.jsxDEV("div",{className:`h-full rounded-full transition-all ${Vj(D.quota.healthScore)}`,style:{width:`${D.quota.healthScore*100}%`}},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:137,columnNumber:29},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:136,columnNumber:27},void 0),ee.jsxDEV("span",{className:`text-[9px] font-data ${Wy(D.quota.healthScore)}`,children:[Math.round(D.quota.healthScore*100),"%"]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:142,columnNumber:27},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:134,columnNumber:25},void 0),ee.jsxDEV("div",{className:"text-[9px] font-data text-white/50 space-y-0.5",children:[D.usage.totalCostUsd>0&&ee.jsxDEV("div",{className:"flex justify-between",children:[ee.jsxDEV("span",{children:"COST"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:150,columnNumber:31},void 0),ee.jsxDEV("span",{className:"text-zora-amber",children:["$",D.usage.totalCostUsd.toFixed(4)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:151,columnNumber:31},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:149,columnNumber:29},void 0),ee.jsxDEV("div",{className:"flex justify-between",children:[ee.jsxDEV("span",{children:"REQUESTS"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:155,columnNumber:29},void 0),ee.jsxDEV("span",{className:"text-zora-cyan",children:D.usage.requestCount},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:156,columnNumber:29},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:154,columnNumber:27},void 0),(D.usage.totalInputTokens>0||D.usage.totalOutputTokens>0)&&ee.jsxDEV("div",{className:"flex justify-between",children:[ee.jsxDEV("span",{children:"TOKENS"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:160,columnNumber:31},void 0),ee.jsxDEV("span",{className:"text-zora-cyan",children:[YD(D.usage.totalInputTokens),"in / ",YD(D.usage.totalOutputTokens),"out"]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:161,columnNumber:31},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:159,columnNumber:29},void 0),D.quota.isExhausted&&ee.jsxDEV("div",{className:"text-red-500 font-bold mt-1",children:"QUOTA EXHAUSTED"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:167,columnNumber:29},void 0),D.quota.cooldownUntil&&ee.jsxDEV("div",{className:"text-zora-amber",children:"COOLDOWN ACTIVE"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:170,columnNumber:29},void 0),ee.jsxDEV("div",{className:"flex justify-between",children:[ee.jsxDEV("span",{children:"TIER"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:173,columnNumber:29},void 0),ee.jsxDEV("span",{className:"text-white/40 uppercase",children:D.costTier},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:174,columnNumber:29},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:172,columnNumber:27},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:147,columnNumber:25},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:132,columnNumber:23},void 0)]},R.name,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:118,columnNumber:19},void 0)})},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:114,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:113,columnNumber:11},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:111,columnNumber:9},void 0),ee.jsxDEV("div",{className:"col-span-6 flex flex-col gap-4",children:[ee.jsxDEV("div",{className:"lcars-bar bg-zora-cyan",children:"Task Activity"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:188,columnNumber:11},void 0),ee.jsxDEV("div",{className:"flex-1 lcars-panel border-zora-cyan flex flex-col gap-4",children:[ee.jsxDEV("div",{className:"flex-1 bg-black/60 p-4 font-data text-sm text-zora-cyan overflow-y-auto",children:v.map((R,D)=>ee.jsxDEV("div",{className:"mb-1",children:`> ${R}`},D,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:192,columnNumber:17},void 0))},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:190,columnNumber:13},void 0),ee.jsxDEV("div",{className:"flex gap-2",children:[ee.jsxDEV("input",{type:"text",value:f,onChange:R=>p(R.target.value),onKeyDown:R=>R.key==="Enter"&&b(),placeholder:"Send a message to the running task...",className:"flex-1 bg-zora-gray border-b-2 border-zora-amber px-4 py-2 font-data text-zora-amber focus:ring-2 focus:ring-zora-cyan focus:outline-none"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:196,columnNumber:15},void 0),ee.jsxDEV("button",{onClick:b,className:"bg-zora-amber text-black px-6 py-2 font-bold hover:bg-white transition-colors flex items-center gap-2",children:[ee.jsxDEV(n_,{size:16},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:208,columnNumber:17},void 0)," SEND"]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:204,columnNumber:15},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:195,columnNumber:13},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:189,columnNumber:11},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:187,columnNumber:9},void 0),ee.jsxDEV("div",{className:"col-span-3 flex flex-col gap-4",children:[ee.jsxDEV("div",{className:"lcars-bar bg-zora-amber",children:"Security Policy"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:216,columnNumber:11},void 0),ee.jsxDEV("div",{className:"flex-1 lcars-panel border-zora-amber",children:[ee.jsxDEV("div",{className:"flex items-center gap-2 text-zora-amber mb-4",children:[ee.jsxDEV(o_,{size:18},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:219,columnNumber:15},void 0),ee.jsxDEV("span",{className:"text-sm font-bold uppercase",children:"Policy: Active"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:220,columnNumber:15},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:218,columnNumber:13},void 0),ee.jsxDEV("div",{className:"text-[10px] font-data text-white/60 space-y-2",children:[ee.jsxDEV("div",{className:"flex items-start gap-2",children:[ee.jsxDEV(s_,{size:12,className:"mt-0.5 text-zora-cyan"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:224,columnNumber:17},void 0),ee.jsxDEV("span",{children:"Approved commands only"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:225,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:223,columnNumber:15},void 0),ee.jsxDEV("div",{className:"flex items-start gap-2",children:[ee.jsxDEV(l_,{size:12,className:"mt-0.5 text-zora-magenta"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:228,columnNumber:17},void 0),ee.jsxDEV("span",{children:"Dangerous actions require approval"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:229,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:227,columnNumber:15},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:222,columnNumber:13},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:217,columnNumber:11},void 0),ee.jsxDEV("div",{className:"lcars-bar bg-zora-cyan",children:"Session Usage"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:233,columnNumber:11},void 0),ee.jsxDEV("div",{className:"h-36 lcars-panel border-zora-cyan bg-zora-cyan/5 text-zora-cyan text-[10px] font-data",children:ee.jsxDEV("div",{className:"space-y-2",children:[ee.jsxDEV("div",{className:"flex justify-between items-center",children:[ee.jsxDEV("div",{className:"flex items-center gap-1.5",children:[ee.jsxDEV(IM,{size:11},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:238,columnNumber:19},void 0),ee.jsxDEV("span",{className:"uppercase",children:"Total Cost"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:239,columnNumber:19},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:237,columnNumber:17},void 0),ee.jsxDEV("span",{className:"text-zora-amber font-bold",children:["$",A.toFixed(4)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:241,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:236,columnNumber:15},void 0),ee.jsxDEV("div",{className:"flex justify-between items-center",children:[ee.jsxDEV("div",{className:"flex items-center gap-1.5",children:[ee.jsxDEV(iA,{size:11},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:245,columnNumber:19},void 0),ee.jsxDEV("span",{className:"uppercase",children:"Requests"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:246,columnNumber:19},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:244,columnNumber:17},void 0),ee.jsxDEV("span",{className:"font-bold",children:T},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:248,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:243,columnNumber:15},void 0),l.map(R=>ee.jsxDEV("div",{className:"flex justify-between items-center text-[9px]",children:[ee.jsxDEV("span",{className:"uppercase text-white/40",children:R.name},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:252,columnNumber:19},void 0),ee.jsxDEV("div",{className:"flex items-center gap-2",children:[ee.jsxDEV("span",{className:Wy(R.quota.healthScore),children:R.quota.isExhausted?"EXHAUSTED":`${Math.round(R.quota.healthScore*100)}%`},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:254,columnNumber:21},void 0),R.usage.totalCostUsd>0&&ee.jsxDEV("span",{className:"text-zora-amber",children:["$",R.usage.totalCostUsd.toFixed(3)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:258,columnNumber:23},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:253,columnNumber:19},void 0)]},R.name,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:251,columnNumber:17},void 0))]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:235,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:234,columnNumber:11},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:215,columnNumber:9},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:108,columnNumber:7},void 0),ee.jsxDEV("div",{className:"mt-4 flex justify-between text-[10px] font-data text-white/40 uppercase tracking-widest",children:[ee.jsxDEV("div",{children:"Zora v0.9.0"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:271,columnNumber:9},void 0),ee.jsxDEV("div",{children:"Dashboard"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:272,columnNumber:9},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:270,columnNumber:7},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:97,columnNumber:5},void 0)};PM.createRoot(document.getElementById("root")).render(ee.jsxDEV(jM.StrictMode,{children:ee.jsxDEV(jj,{},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/main.tsx",lineNumber:8,columnNumber:5},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/main.tsx",lineNumber:7,columnNumber:3},void 0));