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 XD(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 J1;function jM(){return J1||(J1=1,(function(o,i){(function(){function l(S,z){Object.defineProperty(p.prototype,S,{get:function(){console.warn("%s(...) is deprecated in plain JavaScript React classes. %s",z[0],z[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,z){S=(S=S.constructor)&&(S.displayName||S.name)||"ReactClass";var $=S+"."+z;Ai[$]||(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.",z,S),Ai[$]=!0)}function p(S,z,$){this.props=S,this.context=z,this.refs=Fe,this.updater=$||Di}function h(){}function m(S,z,$){this.props=S,this.context=z,this.refs=Fe,this.updater=$||Di}function v(){}function T(S){return""+S}function b(S){try{T(S);var z=!1}catch{z=!0}if(z){z=console;var $=z.error,I=typeof Symbol=="function"&&Symbol.toStringTag&&S[Symbol.toStringTag]||S.constructor.name||"Object";return $.call(z,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",I),T(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 O: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 z=S.render;return S=S.displayName,S||(S=z.displayName||z.name||"",S=S!==""?"ForwardRef("+S+")":"ForwardRef"),S;case Qt:return z=S.displayName||null,z!==null?z:A(S.type)||"Memo";case oa:z=S._payload,S=S._init;try{return A(S(z))}catch{}}return null}function E(S){if(S===O)return"<>";if(typeof S=="object"&&S!==null&&S.$$typeof===oa)return"<...>";try{var z=A(S);return z?"<"+z+">":"<...>"}catch{return"<...>"}}function M(){var S=ue.A;return S===null?null:S.getOwner()}function D(){return Error("react-stack-top-frame")}function V(S){if(As.call(S,"key")){var z=Object.getOwnPropertyDescriptor(S,"key").get;if(z&&z.isReactWarning)return!1}return S.key!==void 0}function U(S,z){function $(){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)",z))}$.isReactWarning=!0,Object.defineProperty(S,"key",{get:$,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 X(S,z,$,I,de,Oe){var pe=$.ref;return S={$$typeof:xe,type:S,key:z,props:$,_owner:I},(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,z){return z=X(S.type,z,S.props,S._owner,S._debugStack,S._debugTask),S._store&&(z._store.validated=S._store.validated),z}function W(S){F(S)?S._store&&(S._store.validated=1):typeof S=="object"&&S!==null&&S.$$typeof===oa&&(S._payload.status==="fulfilled"?F(S._payload.value)&&S._payload.value._store&&(S._payload.value._store.validated=1):S._store&&(S._store.validated=1))}function F(S){return typeof S=="object"&&S!==null&&S.$$typeof===xe}function Ee(S){var z={"=":"=0",":":"=2"};return"$"+S.replace(/[=:]/g,function($){return z[$]})}function ve(S,z){return typeof S=="object"&&S!==null&&S.key!=null?(b(S.key),Ee(""+S.key)):z.toString(36)}function ee(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(z){S.status==="pending"&&(S.status="fulfilled",S.value=z)},function(z){S.status==="pending"&&(S.status="rejected",S.reason=z)})),S.status){case"fulfilled":return S.value;case"rejected":throw S.reason}}throw S}function ce(S,z,$,I,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),z,$,I,de)}}if(pe){pe=S,de=de(pe);var Ge=I===""?"."+ve(pe,0):I;return Ts(de)?($="",Ge!=null&&($=Ge.replace(Zu,"$&/")+"/"),ce(de,z,$,"",function(tn){return tn})):de!=null&&(F(de)&&(de.key!=null&&(pe&&pe.key===de.key||b(de.key)),$=Y(de,$+(de.key==null||pe&&pe.key===de.key?"":(""+de.key).replace(Zu,"$&/")+"/")+Ge),I!==""&&pe!=null&&F(pe)&&pe.key==null&&pe._store&&!pe._store.validated&&($._store.validated=2),de=$),z.push(de)),1}if(pe=0,Ge=I===""?".":I+":",Ts(S))for(var Ce=0;Ce<S.length;Ce++)I=S[Ce],Oe=Ge+ve(I,Ce),pe+=ce(I,z,$,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;!(I=S.next()).done;)I=I.value,Oe=Ge+ve(I,Ce++),pe+=ce(I,z,$,Oe,de);else if(Oe==="object"){if(typeof S.then=="function")return ce(ee(S),z,$,I,de);throw z=String(S),Error("Objects are not valid as a React child (found: "+(z==="[object Object]"?"object with keys {"+Object.keys(S).join(", ")+"}":z)+"). If you meant to render a collection of children, use an array instead.")}return pe}function J(S,z,$){if(S==null)return S;var I=[],de=0;return ce(S,I,"","",function(Oe){return z.call($,Oe,de++)}),I}function Xe(S){if(S._status===-1){var z=S._ioInfo;z!=null&&(z.start=z.end=performance.now()),z=S._result;var $=z();if($.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()),$.status===void 0&&($.status="fulfilled",$.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()),$.status===void 0&&($.status="rejected",$.reason=de)}}),z=S._ioInfo,z!=null){z.value=$;var I=$.displayName;typeof I=="string"&&(z.name=I)}S._status===-1&&(S._status=0,S._result=$)}if(S._status===1)return z=S._result,z===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?`,z),"default"in z||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'))`,z),z.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 z=("require"+Math.random()).slice(0,7);xi=(o&&o[z]).call(o,"timers").setImmediate}catch{xi=function(I){$r===!1&&($r=!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=I,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,z){z!==_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=z}function ae(S,z,$){var I=ue.actQueue;if(I!==null)if(I.length!==0)try{ie(I),Ze(function(){return ae(S,z,$)});return}catch(de){ue.thrownErrors.push(de)}else ue.actQueue=null;0<ue.thrownErrors.length?(I=lt(ue.thrownErrors),ue.thrownErrors.length=0,$(I)):z(S)}function ie(S){if(!Ds){Ds=!0;var z=0;try{for(;z<S.length;z++){var $=S[z];do{ue.didUsePromise=!1;var I=$(!1);if(I!==null){if(ue.didUsePromise){S[z]=$,S.splice(0,z);return}$=I}else break}while(!0)}S.length=0}catch(de){S.splice(0,z+1),ue.thrownErrors.push(de)}finally{Ds=!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"),O=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,z){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,z,"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 Ts=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},As=Object.prototype.hasOwnProperty,ba=console.createTask?console.createTask:function(){return null};Zt={react_stack_bottom_frame:function(S){return S()}};var Ri,Co,Qu={},Gr=Zt.react_stack_bottom_frame.bind(Zt,D)(),Pr=ba(E(D)),Mo=!1,Zu=/\/+/g,Xr=typeof reportError=="function"?reportError:function(S){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var z=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(z))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",S);return}console.error(S)},$r=!1,xi=null,_o=0,wi=!1,Ds=!1,Rs=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:J,forEach:function(S,z,$){J(S,function(){z.apply(this,arguments)},$)},count:function(S){var z=0;return J(S,function(){z++}),z},toArray:function(S){return J(S,function(z){return z})||[]},only:function(S){if(!F(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=O,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 z=ue.actQueue,$=_o;_o++;var I=ue.actQueue=z!==null?z:[],de=!1;try{var Oe=S()}catch(Ce){ue.thrownErrors.push(Ce)}if(0<ue.thrownErrors.length)throw G(z,$),S=lt(ue.thrownErrors),ue.thrownErrors.length=0,S;if(Oe!==null&&typeof Oe=="object"&&typeof Oe.then=="function"){var pe=Oe;return Rs(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(z,$),$===0){try{ie(I),Ze(function(){return ae(Sa,Ce,tn)})}catch(xs){ue.thrownErrors.push(xs)}if(0<ue.thrownErrors.length){var Fu=lt(ue.thrownErrors);ue.thrownErrors.length=0,tn(Fu)}}else Ce(Sa)},function(Sa){G(z,$),0<ue.thrownErrors.length&&(Sa=lt(ue.thrownErrors),ue.thrownErrors.length=0),tn(Sa)})}}}var Ge=Oe;if(G(z,$),$===0&&(ie(I),I.length!==0&&Rs(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,$===0?(ue.actQueue=I,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,z,$){if(S==null)throw Error("The argument must be a React element, but you passed "+S+".");var I=Oo({},S.props),de=S.key,Oe=S._owner;if(z!=null){var pe;e:{if(As.call(z,"ref")&&(pe=Object.getOwnPropertyDescriptor(z,"ref").get)&&pe.isReactWarning){pe=!1;break e}pe=z.ref!==void 0}pe&&(Oe=M()),V(z)&&(b(z.key),de=""+z.key);for(Ge in z)!As.call(z,Ge)||Ge==="key"||Ge==="__self"||Ge==="__source"||Ge==="ref"&&z.ref===void 0||(I[Ge]=z[Ge])}var Ge=arguments.length-2;if(Ge===1)I.children=$;else if(1<Ge){pe=Array(Ge);for(var Ce=0;Ce<Ge;Ce++)pe[Ce]=arguments[Ce+2];I.children=pe}for(I=X(S.type,de,I,Oe,S._debugStack,S._debugTask),de=2;de<arguments.length;de++)W(arguments[de]);return I},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,z,$){for(var I=2;I<arguments.length;I++)W(arguments[I]);I={};var de=null;if(z!=null)for(Ce in Co||!("__self"in z)||"key"in z||(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")),V(z)&&(b(z.key),de=""+z.key),z)As.call(z,Ce)&&Ce!=="key"&&Ce!=="__self"&&Ce!=="__source"&&(I[Ce]=z[Ce]);var Oe=arguments.length-2;if(Oe===1)I.children=$;else if(1<Oe){for(var pe=Array(Oe),Ge=0;Ge<Oe;Ge++)pe[Ge]=arguments[Ge+2];Object.freeze&&Object.freeze(pe),I.children=pe}if(S&&S.defaultProps)for(Ce in Oe=S.defaultProps,Oe)I[Ce]===void 0&&(I[Ce]=Oe[Ce]);de&&U(I,typeof S=="function"?S.displayName||S.name||"Unknown":S);var Ce=1e4>ue.recentlyCreatedOwnerStacks++;return X(S,de,I,M(),Ce?Error("react-stack-top-frame"):Gr,Ce?ba(E(S)):Pr)},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 z={$$typeof:Bn,render:S},$;return Object.defineProperty(z,"displayName",{enumerable:!1,configurable:!0,get:function(){return $},set:function(I){$=I,S.name||S.displayName||(Object.defineProperty(S,"name",{value:I}),S.displayName=I)}}),z},i.isValidElement=F,i.lazy=function(S){S={_status:-1,_result:S};var z={$$typeof:oa,_payload:S,_init:Xe},$={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=$,z._debugInfo=[{awaited:$}],z},i.memo=function(S,z){S==null&&console.error("memo: The first argument must be a component. Instead received: %s",S===null?"null":typeof S),z={$$typeof:Qt,type:S,compare:z===void 0?null:z};var $;return Object.defineProperty(z,"displayName",{enumerable:!1,configurable:!0,get:function(){return $},set:function(I){$=I,S.name||S.displayName||(Object.defineProperty(S,"name",{value:I}),S.displayName=I)}}),z},i.startTransition=function(S){var z=ue.T,$={};$._updatedFibers=new Set,ue.T=$;try{var I=S(),de=ue.S;de!==null&&de($,I),typeof I=="object"&&I!==null&&typeof I.then=="function"&&(ue.asyncTransitions++,I.then(be,be),I.then(v,Xr))}catch(Oe){Xr(Oe)}finally{z===null&&$._updatedFibers&&(S=$._updatedFibers.size,$._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.")),z!==null&&$.types!==null&&(z.types!==null&&z.types!==$.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."),z.types=$.types),ue.T=z}},i.unstable_useCacheRefresh=function(){return fe().useCacheRefresh()},i.use=function(S){return fe().use(S)},i.useActionState=function(S,z,$){return fe().useActionState(S,z,$)},i.useCallback=function(S,z){return fe().useCallback(S,z)},i.useContext=function(S){var z=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?"),z.useContext(S)},i.useDebugValue=function(S,z){return fe().useDebugValue(S,z)},i.useDeferredValue=function(S,z){return fe().useDeferredValue(S,z)},i.useEffect=function(S,z){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,z)},i.useEffectEvent=function(S){return fe().useEffectEvent(S)},i.useId=function(){return fe().useId()},i.useImperativeHandle=function(S,z,$){return fe().useImperativeHandle(S,z,$)},i.useInsertionEffect=function(S,z){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,z)},i.useLayoutEffect=function(S,z){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,z)},i.useMemo=function(S,z){return fe().useMemo(S,z)},i.useOptimistic=function(S,z){return fe().useOptimistic(S,z)},i.useReducer=function(S,z,$){return fe().useReducer(S,z,$)},i.useRef=function(S){return fe().useRef(S)},i.useState=function(S){return fe().useState(S)},i.useSyncExternalStore=function(S,z,$){return fe().useSyncExternalStore(S,z,$)},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 I1;function Bu(){return I1||(I1=1,wy.exports=jM()),wy.exports}var K1;function BM(){if(K1)return cd;K1=1;return(function(){function o(O){if(O==null)return null;if(typeof O=="function")return O.$$typeof===Xe?null:O.displayName||O.name||null;if(typeof O=="string")return O;switch(O){case U:return"Fragment";case X:return"Profiler";case k:return"StrictMode";case Ee:return"Suspense";case ve:return"SuspenseList";case J:return"Activity"}if(typeof O=="object")switch(typeof O.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),O.$$typeof){case V:return"Portal";case W:return O.displayName||"Context";case Y:return(O._context.displayName||"Context")+".Consumer";case F:var Q=O.render;return O=O.displayName,O||(O=Q.displayName||Q.name||"",O=O!==""?"ForwardRef("+O+")":"ForwardRef"),O;case ee:return Q=O.displayName||null,Q!==null?Q:o(O.type)||"Memo";case ce:Q=O._payload,O=O._init;try{return o(O(Q))}catch{}}return null}function i(O){return""+O}function l(O){try{i(O);var Q=!1}catch{Q=!0}if(Q){Q=console;var me=Q.error,re=typeof Symbol=="function"&&Symbol.toStringTag&&O[Symbol.toStringTag]||O.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(O)}}function u(O){if(O===U)return"<>";if(typeof O=="object"&&O!==null&&O.$$typeof===ce)return"<...>";try{var Q=o(O);return Q?"<"+Q+">":"<...>"}catch{return"<...>"}}function f(){var O=fe.A;return O===null?null:O.getOwner()}function p(){return Error("react-stack-top-frame")}function h(O){if(be.call(O,"key")){var Q=Object.getOwnPropertyDescriptor(O,"key").get;if(Q&&Q.isReactWarning)return!1}return O.key!==void 0}function m(O,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(O,"key",{get:me,configurable:!0})}function v(){var O=o(this.type);return ae[O]||(ae[O]=!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.")),O=this.props.ref,O!==void 0?O:null}function T(O,Q,me,re,tt,Bn){var we=me.ref;return O={$$typeof:D,type:O,key:Q,props:me,_owner:re},(we!==void 0?we:null)!==null?Object.defineProperty(O,"ref",{enumerable:!1,get:v}):Object.defineProperty(O,"ref",{enumerable:!1,value:null}),O._store={},Object.defineProperty(O._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(O,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(O,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:tt}),Object.defineProperty(O,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:Bn}),Object.freeze&&(Object.freeze(O.props),Object.freeze(O)),O}function b(O,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(O);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 O=="function"?O.displayName||O.name||"Unknown":O),T(O,we,me,f(),tt,Bn)}function A(O){E(O)?O._store&&(O._store.validated=1):typeof O=="object"&&O!==null&&O.$$typeof===ce&&(O._payload.status==="fulfilled"?E(O._payload.value)&&O._payload.value._store&&(O._payload.value._store.validated=1):O._store&&(O._store.validated=1))}function E(O){return typeof O=="object"&&O!==null&&O.$$typeof===D}var M=Bu(),D=Symbol.for("react.transitional.element"),V=Symbol.for("react.portal"),U=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),X=Symbol.for("react.profiler"),Y=Symbol.for("react.consumer"),W=Symbol.for("react.context"),F=Symbol.for("react.forward_ref"),Ee=Symbol.for("react.suspense"),ve=Symbol.for("react.suspense_list"),ee=Symbol.for("react.memo"),ce=Symbol.for("react.lazy"),J=Symbol.for("react.activity"),Xe=Symbol.for("react.client.reference"),fe=M.__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};M={react_stack_bottom_frame:function(O){return O()}};var G,ae={},ie=M.react_stack_bottom_frame.bind(M,p)(),xe=lt(u(p)),Be={};cd.Fragment=U,cd.jsxDEV=function(O,Q,me,re){var tt=1e4>fe.recentlyCreatedOwnerStacks++;return b(O,Q,me,re,tt?Error("react-stack-top-frame"):ie,tt?lt(u(O)):xe)}})(),cd}var W1;function LM(){return W1||(W1=1,xy.exports=BM()),xy.exports}var Z=LM(),te=Bu();const HM=XD(te);var Oy={exports:{}},Tu={},Cy={exports:{}},My={},eA;function kM(){return eA||(eA=1,(function(o){(function(){function i(){if(F=!1,ce){var G=o.unstable_now();fe=G;var ae=!0;try{e:{Y=!1,W&&(W=!1,ve(J),J=-1),X=!0;var ie=k;try{t:{for(h(G),U=u(M);U!==null&&!(U.expirationTime>G&&v());){var xe=U.callback;if(typeof xe=="function"){U.callback=null,k=U.priorityLevel;var Be=xe(U.expirationTime<=G);if(G=o.unstable_now(),typeof Be=="function"){U.callback=Be,h(G),ae=!0;break t}U===u(M)&&f(M),h(G)}else f(M);U=u(M)}if(U!==null)ae=!0;else{var O=u(D);O!==null&&T(m,O.startTime-G),ae=!1}}break e}finally{U=null,k=ie,X=!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,O=Be>>>1;xe<O;){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(M,ae);else break;ae=u(D)}}function m(G){if(W=!1,h(G),!Y)if(u(M)!==null)Y=!0,ce||(ce=!0,be());else{var ae=u(D);ae!==null&&T(m,ae.startTime-G)}}function v(){return F?!0:!(o.unstable_now()-fe<Xe)}function T(G,ae){J=Ee(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,E=A.now();o.unstable_now=function(){return A.now()-E}}var M=[],D=[],V=1,U=null,k=3,X=!1,Y=!1,W=!1,F=!1,Ee=typeof setTimeout=="function"?setTimeout:null,ve=typeof clearTimeout=="function"?clearTimeout:null,ee=typeof setImmediate<"u"?setImmediate:null,ce=!1,J=-1,Xe=5,fe=-1;if(typeof ee=="function")var be=function(){ee(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(){Ee(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(){F=!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:V++,callback:ae,priorityLevel:G,startTime:ie,expirationTime:Be,sortIndex:-1},ie>xe?(G.sortIndex=ie,l(D,G),u(M)===null&&G===u(D)&&(W?(ve(J),J=-1):W=!0,T(m,ie-xe))):(G.sortIndex=Be,l(M,G),Y||X||(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 tA;function qM(){return tA||(tA=1,Cy.exports=kM()),Cy.exports}var _y={exports:{}},Kt={},nA;function YM(){if(nA)return Kt;nA=1;return(function(){function o(){}function i(A){return""+A}function l(A,E,M){var D=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;try{i(D);var V=!1}catch{V=!0}return V&&(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:T,key:D==null?null:""+D,children:A,containerInfo:E,implementation:M}}function u(A,E){if(A==="font")return"";if(typeof E=="string")return E==="use-credentials"?E:""}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},T=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"),Kt.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=v,Kt.createPortal=function(A,E){var M=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!E||E.nodeType!==1&&E.nodeType!==9&&E.nodeType!==11)throw Error("Target container is not a DOM element.");return l(A,E,null,M)},Kt.flushSync=function(A){var E=b.T,M=v.p;try{if(b.T=null,v.p=2,A)return A()}finally{b.T=E,v.p=M,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.")}},Kt.preconnect=function(A,E){typeof A=="string"&&A?E!=null&&typeof E!="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(E)):E!=null&&typeof E.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(E.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"&&(E?(E=E.crossOrigin,E=typeof E=="string"?E==="use-credentials"?E:"":void 0):E=null,v.d.C(A,E))},Kt.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 E=arguments[1];typeof E=="object"&&E.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(E)):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(E))}typeof A=="string"&&v.d.D(A)},Kt.preinit=function(A,E){if(typeof A=="string"&&A?E==null||typeof E!="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(E)):E.as!=="style"&&E.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(E.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"&&E&&typeof E.as=="string"){var M=E.as,D=u(M,E.crossOrigin),V=typeof E.integrity=="string"?E.integrity:void 0,U=typeof E.fetchPriority=="string"?E.fetchPriority:void 0;M==="style"?v.d.S(A,typeof E.precedence=="string"?E.precedence:void 0,{crossOrigin:D,integrity:V,fetchPriority:U}):M==="script"&&v.d.X(A,{crossOrigin:D,integrity:V,fetchPriority:U,nonce:typeof E.nonce=="string"?E.nonce:void 0})}},Kt.preinitModule=function(A,E){var M="";typeof A=="string"&&A||(M+=" The `href` argument encountered was "+f(A)+"."),E!==void 0&&typeof E!="object"?M+=" The `options` argument encountered was "+f(E)+".":E&&"as"in E&&E.as!=="script"&&(M+=" The `as` option encountered was "+p(E.as)+"."),M?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",M):(M=E&&typeof E.as=="string"?E.as:"script",M)==="script"||(M=p(M),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)',M,A)),typeof A=="string"&&(typeof E=="object"&&E!==null?(E.as==null||E.as==="script")&&(M=u(E.as,E.crossOrigin),v.d.M(A,{crossOrigin:M,integrity:typeof E.integrity=="string"?E.integrity:void 0,nonce:typeof E.nonce=="string"?E.nonce:void 0})):E==null&&v.d.M(A))},Kt.preload=function(A,E){var M="";if(typeof A=="string"&&A||(M+=" The `href` argument encountered was "+f(A)+"."),E==null||typeof E!="object"?M+=" The `options` argument encountered was "+f(E)+".":typeof E.as=="string"&&E.as||(M+=" The `as` option encountered was "+f(E.as)+"."),M&&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',M),typeof A=="string"&&typeof E=="object"&&E!==null&&typeof E.as=="string"){M=E.as;var D=u(M,E.crossOrigin);v.d.L(A,M,{crossOrigin:D,integrity:typeof E.integrity=="string"?E.integrity:void 0,nonce:typeof E.nonce=="string"?E.nonce:void 0,type:typeof E.type=="string"?E.type:void 0,fetchPriority:typeof E.fetchPriority=="string"?E.fetchPriority:void 0,referrerPolicy:typeof E.referrerPolicy=="string"?E.referrerPolicy:void 0,imageSrcSet:typeof E.imageSrcSet=="string"?E.imageSrcSet:void 0,imageSizes:typeof E.imageSizes=="string"?E.imageSizes:void 0,media:typeof E.media=="string"?E.media:void 0})}},Kt.preloadModule=function(A,E){var M="";typeof A=="string"&&A||(M+=" The `href` argument encountered was "+f(A)+"."),E!==void 0&&typeof E!="object"?M+=" The `options` argument encountered was "+f(E)+".":E&&"as"in E&&typeof E.as!="string"&&(M+=" The `as` option encountered was "+f(E.as)+"."),M&&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',M),typeof A=="string"&&(E?(M=u(E.as,E.crossOrigin),v.d.m(A,{as:typeof E.as=="string"&&E.as!=="script"?E.as:void 0,crossOrigin:M,integrity:typeof E.integrity=="string"?E.integrity:void 0})):v.d.m(A))},Kt.requestFormReset=function(A){v.d.r(A)},Kt.unstable_batchedUpdates=function(A,E){return A(E)},Kt.useFormState=function(A,E,M){return h().useFormState(A,E,M)},Kt.useFormStatus=function(){return h().useHostTransitionStatus()},Kt.version="19.2.4",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})(),Kt}var aA;function GM(){return aA||(aA=1,_y.exports=YM()),_y.exports}var oA;function PM(){if(oA)return Tu;oA=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 T(){}function b(){}function A(e){var t=[];return e.forEach(function(n){t.push(n)}),t.sort().join(", ")}function E(e,t,n,a){return new Aw(e,t,n,a)}function M(e,t){e.context===Ko&&(Xp(e.current,2,t,e,null,null),Hs())}function D(e,t){if(Pn!==null){var n=t.staleFamilies;t=t.updatedFamilies,gl(),n0(e.current,t,n),Hs()}}function V(e){Pn=e}function U(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 X(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 W(e){if(k(e)!==e)throw Error("Unable to find node on an unmounted component.")}function F(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 W(s),e;if(r===a)return W(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 Ee(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e;for(e=e.child;e!==null;){if(t=Ee(e),t!==null)return t;e=e.sibling}return null}function ve(e){return e===null||typeof e!="object"?null:(e=uE&&e[uE]||e["@@iterator"],typeof e=="function"?e:null)}function ee(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===XO?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case $s:return"Fragment";case Kp: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 Xs:return"Portal";case La:return e.displayName||"Context";case Wp:return(e._context.displayName||"Context")+".Consumer";case wl: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:ee(e.type)||"Memo";case Mn:t=e._payload,e=e._init;try{return ee(e(t))}catch{}}return null}function ce(e){return typeof e.tag=="number"?J(e):typeof e.name=="string"?e.name:null}function J(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 ee(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 J(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(Ol,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)?US(t):To;break;default:if(n=t.tagName,t=t.namespaceURI)t=US(t),t=zS(t,n);else switch(n){case"svg":t=xr;break;case"math":t=ad;break;default:t=To}}n=n.toLowerCase(),n=wv(null,n),n={context:t,ancestorInfo:n},fe(Xo,e),be(Xo,n,e)}function G(e){fe(Xo,e),fe(Ol,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=zS(t.context,n);n=wv(t.ancestorInfo,n),a={context:a,ancestorInfo:n},t!==a&&(be(Ol,e,e),be(Xo,a,e))}function xe(e){Ol.current===e&&(fe(Xo,e),fe(Ol,e)),sf.current===e&&(fe(sf,e),bu._currentValue=ds)}function Be(){}function O(){if(Cl===0){cE=console.log,fE=console.info,dE=console.warn,hE=console.error,pE=console.group,mE=console.groupCollapsed,yE=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})}Cl++}function Q(){if(Cl--,Cl===0){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:je({},e,{value:cE}),info:je({},e,{value:fE}),warn:je({},e,{value:dE}),error:je({},e,{value:hE}),group:je({},e,{value:pE}),groupCollapsed:je({},e,{value:mE}),groupEnd:je({},e,{value:yE})})}0>Cl&&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]||"",gE=-1<n.stack.indexOf(`
26
+ at`)?" (<anonymous>)":-1<n.stack.indexOf("@")?"@unknown:0:0":""}return`
27
+ `+im+e+gE}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,O();try{var s={DetermineComponentFrameRoot:function(){try{if(t){var x=function(){throw Error()};if(Object.defineProperty(x.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(x,[])}catch(K){var j=K}Reflect.construct(e,[],x)}else{try{x.call()}catch(K){j=K}e.call(x.prototype)}}else{try{throw Error()}catch(K){j=K}(x=e())&&typeof x.catch=="function"&&x.catch(function(){})}}catch(K){if(K&&j&&typeof K.stack=="string")return[K.stack,j.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
+ `),x=N===-1?_:_.slice(N+1);if(x.indexOf(d)!==-1){var j=`
32
+ `+x;break e}}j=re(d+(y?" ["+y+"]":""))}t=c+j}}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 Ts(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{Zs=t.inject(e),Jt=t}catch(n){console.error("React instrumentation encountered an error: %o.",n)}return!!t.checkDCE}function ue(e){if(typeof KO=="function"&&WO(e),Jt&&typeof Jt.setStrictMode=="function")try{Jt.setStrictMode(Zs,e)}catch(t){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",t))}}function As(e){return e>>>=0,e===0?32:31-(eC(e)/tC|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 Gr(){var e=uf;return uf<<=1,(uf&62914560)===0&&(uf=4194304),e}function Pr(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 x=g[_];if(x!==null)for(g[_]=null,_=0;_<x.length;_++){var j=x[_];j!==null&&(j.lane&=-536870913)}n&=~N}a!==0&&Xr(e,a,0),r!==0&&s===0&&e.tag!==0&&(e.suspendedLanes|=r&~(c&~t))}function Xr(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 $r(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 Ds(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 Rs(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:nE(e.type))}function S(e,t){var n=Qe.p;try{return Qe.p=e,t()}finally{Qe.p=n}}function z(e){delete e[Pt],delete e[on],delete e[dm],delete e[nC],delete e[aC]}function $(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=YS(e);e!==null;){if(n=e[Pt])return n;e=YS(e)}return t}e=n,n=e.parentNode}return null}function I(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[vE];return t||(t=e[vE]={hoistableStyles:new Map,hoistableScripts:new Map}),t}function pe(e){e[Ml]=!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++)bE.add(t[e])}function tn(e,t){oC[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(EE,e)?!0:ua.call(SE,e)?!1:iC.test(e)?EE[e]=!0:(SE[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 xs(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 Ia(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 Ts(e),e;default:return""}}function hv(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function ew(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){Ts(c),n=""+c,r.call(this,c)}}),Object.defineProperty(e,t,{enumerable:a.enumerable}),{getValue:function(){return n},setValue:function(c){Ts(c),n=""+c},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Xd(e){if(!e._valueTracker){var t=hv(e)?"checked":"value";e._valueTracker=ew(e,t,""+e[t])}}function pv(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a="";return e&&(a=hv(e)?e.checked?"true":"false":e.value),e=a,e!==n?(t.setValue(e),!0):!1}function Iu(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(sC,function(t){return"\\"+t.charCodeAt(0).toString(16)+" "})}function mv(e,t){t.checked===void 0||t.defaultChecked===void 0||AE||(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),AE=!0),t.value===void 0||t.defaultValue===void 0||TE||(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),TE=!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 yv(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"&&Iu(e.ownerDocument)===e||e.defaultValue===""+n||(e.defaultValue=""+n)}function gv(e,t){t.value==null&&(typeof t.children=="object"&&t.children!==null?Ip.Children.forEach(t.children,function(n){n==null||typeof n=="string"||typeof n=="number"||typeof n=="bigint"||RE||(RE=!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||xE||(xE=!0,console.error("Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected."))),t.selected==null||DE||(console.error("Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>."),DE=!0)}function vv(){var e=Qt();return e?`
39
+
40
+ Check the render method of \``+e+"`.":""}function ws(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 bv(e,t){for(e=0;e<OE.length;e++){var n=OE[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,vv()):!t.multiple&&a&&console.error("The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s",n,vv())}}t.value===void 0||t.defaultValue===void 0||wE||(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"),wE=!0)}function Sv(e,t){t.value===void 0||t.defaultValue===void 0||CE||(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"),CE=!0),t.children!=null&&t.value==null&&console.error("Use the `defaultValue` or `value` props instead of setting children on <textarea>.")}function Ev(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 Tv(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 Av(e,t){return e.serverProps===void 0&&e.serverTail.length===0&&e.children.length===1&&3<e.distanceFromLeaf&&e.distanceFromLeaf>15-t?Av(e.children[0],t):e}function An(e){return" "+" ".repeat(e)}function Os(e){return"+ "+" ".repeat(e)}function Oi(e){return"- "+" ".repeat(e)}function Dv(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 Qr(e,t){return ME.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 Ku(e,t,n){var a=120-2*n;if(t===null)return Os(n)+Qr(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)),Os(n)+Qr(e,a)+`
42
+ `+Oi(n)+Qr(t,a)+`
43
+ `}return An(n)+Qr(e,a)+`
44
+ `}function Zd(e){return Object.prototype.toString.call(e).replace(/^\[object (.*)\]$/,function(t,n){return n})}function Zr(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=ee(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=Zr(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 Cs(e,t){return typeof e!="string"||ME.test(e)?"{"+Zr(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=Cs(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 tw(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=Zr(e[r],c);t.hasOwnProperty(r)?(c=Zr(t[r],c),a+=Os(n)+r+": "+d+`
51
+ `,a+=Oi(n)+r+": "+c+`
52
+ `):a+=Os(n)+r+": "+d+`
53
+ `}for(var y in s)s.hasOwnProperty(y)&&(e=Zr(s[y],120-2*n-y.length-2),a+=Oi(n)+y+": "+e+`
54
+ `);return a}function nw(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 _=Cs(g,d);d=Cs(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
+ `+tw(g,y,a+2)+An(a+1)+`}}
56
+ `:(s+=Os(a+1)+c+"="+_+`
57
+ `,s+=Oi(a+1)+c+"="+d+`
58
+ `)}else s+=An(a+1)+c+"="+Cs(t[c],d)+`
59
+ `}r.forEach(function(N){if(N!=="children"){var x=120-2*(a+1)-N.length-1;s+=Oi(a+1)+N+"="+Cs(n[N],x)+`
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+=Ku(r,""+e,a+1)):(typeof t=="string"||typeof t=="number"||typeof t=="bigint")&&(s=e==null?s+Ku(""+t,null,a+1):s+Ku(""+t,void 0,a+1)),s}function Rv(e,t){var n=Dv(e);if(n===null){for(n="",e=e.child;e;)n+=Rv(e,t),e=e.sibling;return n}return An(t)+"<"+n+`>
64
+ `}function Jd(e,t){var n=Av(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=Ku(s,e.serverProps,t),t++;else if(r=Dv(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=Cs(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,Os(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=nw(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+=Rv(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)+Qr(r,120-2*t)+`
69
+ `):g+Fd(r.type,r.props,Oi(t));return n+a+g}function Id(e){try{return`
70
+
71
+ `+Jd(e,0)}catch{return""}}function xv(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?Id(s).replaceAll(/^[+-]/gm,">"):""}function wv(e,t){var n=je({},e||NE),a={tag:t};return _E.indexOf(t)!==-1&&(n.aTagInScope=null,n.buttonTagInScope=null,n.nobrTagInScope=null),lC.indexOf(t)!==-1&&(n.pTagInButtonScope=null),rC.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 Ov(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 uC.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 aw(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 Cv(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 Kd(e,t){t=t||NE;var n=t.current;if(t=(n=Ov(e,n&&n.tag,t.implicitRootScope)?null:n)?null:aw(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)?Cv(t.return,a):null,r=t!==null&&s!==null?xv(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||Ov("#text",t,!1))return!0;if(n="#text|"+t,ff[n])return!1;ff[n]=!0;var a=(n=_n)?Cv(n,t):null;return n=n!==null&&a!==null?xv(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 Fr(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}function ow(e){return e.replace(dC,function(t,n){return n.toUpperCase()})}function Mv(e,t,n){var a=t.indexOf("--")===0;a||(-1<t.indexOf("-")?Fs.hasOwnProperty(t)&&Fs[t]||(Fs[t]=!0,console.error("Unsupported style property %s. Did you mean %s?",t,ow(t.replace(fC,"ms-")))):cC.test(t)?Fs.hasOwnProperty(t)&&Fs[t]||(Fs[t]=!0,console.error("Unsupported vendor-prefixed style property %s. Did you mean %s?",t,t.charAt(0).toUpperCase()+t.slice(1))):!VE.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(VE,""))),typeof n=="number"&&(isNaN(n)?jE||(jE=!0,console.error("`NaN` is an invalid value for the `%s` css style property.",t)):isFinite(n)||BE||(BE=!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||LE.has(t)?t==="float"?e.cssFloat=n:(Zt(n,t),e[t]=(""+n).trim()):e[t]=n+"px"}function _v(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 x in t)g=t[x],t.hasOwnProperty(x)&&n[x]!==g&&Mv(e,x,g)}else for(a in t)t.hasOwnProperty(a)&&Mv(e,a,t[a])}function Jr(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 Nv(e){return hC.get(e)||e}function iw(e,t){if(ua.call(Is,t)&&Is[t])return!0;if(mC.test(t)){if(e="aria-"+t.slice(4).toLowerCase(),e=HE.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(pC.test(t)){if(e=t.toLowerCase(),e=HE.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 sw(e,t){var n=[],a;for(a in t)iw(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 rw(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(qE.test(t))return console.error("Unknown event handler property `%s`. It will be ignored.",t),sn[t]=!0}else if(qE.test(t))return yC.test(t)&&console.error("Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.",t),sn[t]=!0;if(gC.test(t)||vC.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 lw(e,t,n){var a=[],s;for(s in t)rw(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 bC.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function Ka(){}function Wd(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}function Uv(e){var t=I(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&&pv(a)}break e;case"textarea":Ev(e,n.value,n.defaultValue);break e;case"select":t=n.value,t!=null&&ws(e,!!n.multiple,t,!1)}}}function zv(e,t,n){if(ym)return e(t,n);ym=!0;try{var a=e(t);return a}finally{if(ym=!1,(Ks!==null||Ws!==null)&&(Hs(),Ks&&(t=Ks,e=Ws,Ws=Ks=null,Uv(t),e)))for(t=0;t<e.length;t++)Uv(e[t])}}function Kr(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 Vv(){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 jv(){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:jv,this.isPropagationStopped=jv,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 uw(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=NC[e])?!!t[e]:!1}function eh(){return uw}function Bv(e,t){switch(e){case"keyup":return PC.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==XE;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Lv(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}function cw(e,t){switch(e){case"compositionend":return Lv(t);case"keypress":return t.which!==QE?null:(FE=!0,ZE);case"textInput":return e=t.data,e===ZE&&FE?null:e;default:return null}}function fw(e,t){if(er)return e==="compositionend"||!Tm&&Bv(e,t)?(e=Vv(),pf=vm=Fo=null,er=!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 $E&&t.locale!=="ko"?null:t.data;default:return null}}function Hv(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t==="input"?!!$C[e.type]:t==="textarea"}function dw(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 kv(e,t,n,a){Ks?Ws?Ws.push(a):Ws=[a]:Ks=a,t=Qc(t,"onChange"),0<t.length&&(n=new mf("onChange","change",null,n,a),e.push({event:n,listeners:t}))}function hw(e){TS(e,0)}function nc(e){var t=de(e);if(pv(t))return e}function qv(e,t){if(e==="change")return t}function Yv(){jl&&(jl.detachEvent("onpropertychange",Gv),Bl=jl=null)}function Gv(e){if(e.propertyName==="value"&&nc(Bl)){var t=[];kv(t,Bl,e,Wd(e)),zv(hw,t)}}function pw(e,t,n){e==="focusin"?(Yv(),jl=t,Bl=n,jl.attachEvent("onpropertychange",Gv)):e==="focusout"&&Yv()}function mw(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return nc(Bl)}function yw(e,t){if(e==="click")return nc(t)}function gw(e,t){if(e==="input"||e==="change")return nc(t)}function vw(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}function Wr(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 Pv(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Xv(e,t){var n=Pv(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=Pv(n)}}function $v(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?$v(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Qv(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=Iu(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=Iu(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 Zv(e,t,n){var a=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Dm||tr==null||tr!==Iu(a)||(a=tr,"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}),Ll&&Wr(Ll,a)||(Ll=a,a=Qc(Am,"onSelect"),0<a.length&&(t=new mf("onSelect","select",null,t,n),e.push({event:t,listeners:a}),t.target=tr)))}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(!nr[e])return e;var t=nr[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in IE)return Rm[e]=t[n];return e}function ia(e,t){nT.set(e,t),Ge(t,[e])}function bw(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]!=="_"&&Ea(s,e[s],t,n,a)}function Ea(e,t,n,a,s){switch(typeof t){case"object":if(t===null){t="null";break}else{if(t.$$typeof===Ba){var r=ee(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&&Ea("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]!=="_"&&Ea(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=bw(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],Ea(r[0],r[1],n,a+1,s);return}}if(r==="Promise"){if(t.status==="fulfilled"){if(r=n.length,Ea(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,Ea(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===WC?"…":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 Fv(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=ee(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=[iT+"  ".repeat(a)+r,g==="[object Array]"?"Array":""],n.push(y),g=n.length,Fv(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([iT+"  ".repeat(a)+r,c+" Referentially unequal function closure. Consider memoization."]);continue}}Ea(r,c,n,a,vf),Ea(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 Ta(e,t,n,a){ot&&(Io.start=t,Io.end=n,lo.color="warning",lo.tooltipText=a,lo.properties=null,(e=e._debugTask)?e.run(performance.measure.bind(performance,a,Io)):performance.measure(a,Io))}function ac(e,t,n){Ta(e,t,n,"Reconnect")}function oc(e,t,n,a,s){var r=J(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=[eM],g=Fv(c.memoizedProps,g,y,0),1<y.length&&(g&&!Jo&&(c.lanes&s)===0&&100<e.actualDuration?(Jo=!0,y[0]=tM,lo.color="warning",lo.tooltipText=sT):(lo.color=a,lo.tooltipText=r),lo.properties=y,Io.start=t,Io.end=n,d!=null?d.run(performance.measure.bind(performance,"​"+r,Io)):performance.measure("​"+r,Io))):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=J(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&&Ea("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=J(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&&Ea("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=J(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 Sw(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 Jv(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 Iv(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 Ew(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 Tw(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 Kv(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=ar,t=_m=ar=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&&Wv(n,s,r)}}function sc(e,t,n,a){Gn[ar++]=e,Gn[ar++]=t,Gn[ar++]=n,Gn[ar++]=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 Wv(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&Hl||(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(du>gM)throw ss=du=0,hu=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>vM&&(ss=0,hu=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&&mS(e);for(var t=e,n=t.return;n!==null;)t.alternate===null&&(t.flags&4098)!==0&&mS(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:wl,render:t},e.displayName!==void 0&&(t.displayName=e.displayName),t):e:t.current}function e0(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===wl||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 t0(e){Pn!==null&&typeof WeakSet=="function"&&(or===null&&(or=new WeakSet),or.add(e))}function n0(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))),or!==null&&(or.has(e)||s!==null&&or.has(s))&&(a=!0),a&&(e._debugNeedsRemount=!0),(a||g)&&(s=Ft(e,2),s!==null&&ht(s,e,2)),r===null||a||n0(r,t,n),c===null)break;e=c}while(!0)}function Aw(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,rT||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=E(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 a0(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=NO(e,n,c)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case nm:return t=E(31,n,t,s),t.elementType=nm,t.lanes=r,t;case $s:return Ni(n.children,s,r,t);case af:c=8,s|=It,s|=ca;break;case Kp: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=E(12,e,t,a|_e),t.elementType=Kp,t.lanes=r,t.stateNode={effectDuration:0,passiveEffectDuration:0},t;case em:return t=E(13,n,t,s),t.elementType=em,t.lanes=r,t;case tm:return t=E(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 wl: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="<"+(ee(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=E(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=E(7,e,a,t),e.lanes=n,e}function ch(e,t,n){return e=E(6,e,null,t),e.lanes=n,e}function o0(e){var t=E(18,null,null,Te);return t.stateNode=e,t}function fh(e,t,n){return t=E(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(),ir[sr++]=kl,ir[sr++]=Sf,Sf=e,kl=t}function i0(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),i0(e,1,0))}function hh(e){for(;e===Sf;)Sf=ir[--sr],ir[sr]=null,kl=ir[--sr],ir[sr]=null;for(;e===Xi;)Xi=Xn[--$n],Xn[$n]=null,fo=Xn[--$n],Xn[$n]=null,co=Xn[--$n],Xn[$n]=null}function s0(){return Uo(),Xi!==null?{id:co,overflow:fo}:null}function r0(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 l0(){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=kS(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=Id(a)),el(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 u0(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<pu.length;n++)He(pu[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),mv(t,a),yv(t,a.value,a.defaultValue,a.checked,a.defaultChecked,a.type,a.name,!0);break;case"option":gv(t,a);break;case"select":tn("select",a),He("invalid",t),bv(t,a);break;case"textarea":tn("textarea",a),He("invalid",t),Sv(t,a),Tv(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||xS(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=Ka),t=!0):t=!1,t||zo(e,!0)}function c0(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 Ms(e){if(e!==Xt)return!1;if(!Le)return c0(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=kS(n);a.serverTail.push(s),n=s.type==="Suspense"?Yp(n):Cn(n.nextSibling)}zo(e)}if(c0(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=Ty,Ty=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 el(e){Wo===null?Wo=[e]:Wo.push(e)}function mh(){var e=Nn;if(e!==null){Nn=null;for(var t=Id(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(){rr=Ef=null,lr=!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!==uT&&console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."),t._currentRenderer=uT}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 _s(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(bu):e=[bu])}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){Ef=e,rr=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function ut(e){return lr&&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()."),f0(Ef,e)}function dc(e,t){return Ef===null&&Vi(e),f0(e,t)}function f0(e,t){var n=t._currentValue;if(t={context:t,memoizedValue:n,next:null},rr===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().");rr=t,e.dependencies={lanes:0,firstContext:t,_debugThenableState:null},e.flags|=524288}else rr=rr.next=t;return n}function vh(){return{controller:new oM,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 tl(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&&iM(sM,function(){e.controller.abort()})}function Da(e,t,n){(e&127)!==0?0>Xa&&(Xa=Dt(),Yl=Tf(t),jm=t,n!=null&&(Bm=J(n)),(Pe&(Ut|Vn))!==kt&&(pt=!0,ti=ql),e=Tl(),t=El(),e!==ur||t!==Gl?ur=-1.1:t!==null&&(ti=ql),Zi=e,Gl=t):(e&4194048)!==0&&0>Zn&&(Zn=Dt(),Pl=Tf(t),cT=t,n!=null&&(fT=J(n)),0>yo)&&(e=Tl(),t=El(),(e!==ai||t!==Fi)&&(ai=-1.1),ni=e,Fi=t)}function Dw(e){if(0>Xa){Xa=Dt(),Yl=e._debugTask!=null?e._debugTask:null,(Pe&(Ut|Vn))!==kt&&(ti=ql);var t=Tl(),n=El();t!==ur||n!==Gl?ur=-1.1:n!==null&&(ti=ql),Zi=t,Gl=n}0>Zn&&(Zn=Dt(),Pl=e._debugTask!=null?e._debugTask:null,0>yo)&&(e=Tl(),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 nl(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 d0(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 h0(e){ct===null&&(ct=[]),ct.push(e),po===null&&(po=[]),po.push(e)}function Ma(){ln=Dt(),0>ge&&(ge=ln)}function al(e){for(var t=e.child;t;)e.actualDuration+=t.actualDuration,t=t.sibling}function Rw(e,t){if($l===null){var n=$l=[];Hm=0,Ji=Cp(),cr={status:"pending",value:void 0,then:function(a){n.push(a)}}}return Hm++,t.then(p0,p0),t}function p0(){if(--Hm===0&&(-1<Zn||(yo=-1.1),$l!==null)){cr!==null&&(cr.status="fulfilled");var e=$l;$l=null,Ji=0,cr=null;for(var t=0;t<e.length;t++)(0,e[t])()}}function xw(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 Eh(){var e=Ii.current;return e!==null?e:et.pooledCache}function mc(e,t){t===null?be(Ii,Ii.current,e):be(Ii,t.pool,e)}function m0(){var e=Eh();return e===null?null:{parent:At._currentValue,pool:e}}function y0(){return{didWarnAboutUncachedPromise:!1,thenables:[]}}function g0(e){return e=e.status,e==="fulfilled"||e==="rejected"}function v0(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(Ka,Ka),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,S0(e),e;default:if(typeof t.status=="string")t.then(Ka,Ka);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,S0(e),e}throw Wi=t,Wl=!0,fr}}function jo(e){try{return fM(e)}catch(t){throw t!==null&&typeof t=="object"&&typeof t.then=="function"?(Wi=t,Wl=!0,fr):t}}function b0(){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,Wl=!1,e}function S0(e){if(e===fr||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 Th(){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=eu;return eu+=1,dr===null&&(dr=y0()),v0(dr,e,t)}function ol(e,t){t=t.props.ref,e.ref=t!==void 0?t:null}function E0(e,t){throw t.$$typeof===GO?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=Th();n!==null?n.run(E0.bind(null,e,t)):E0(e,t)}function T0(e,t){var n=J(e)||"Component";_T[n]||(_T[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=Th();n!==null?n.run(T0.bind(null,e,t)):T0(e,t)}function A0(e,t){var n=J(e)||"Component";NT[n]||(NT[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=Th();n!==null?n.run(A0.bind(null,e,t)):A0(e,t)}function D0(e){function t(R,w){if(e){var C=R.deletions;C===null?(R.deletions=[w],R.flags|=16):C.push(w)}}function n(R,w){if(!e)return null;for(;w!==null;)t(R,w),w=w.sibling;return null}function a(R){for(var w=new Map;R!==null;)R.key!==null?w.set(R.key,R):w.set(R.index,R),R=R.sibling;return w}function s(R,w){return R=Wa(R,w),R.index=0,R.sibling=null,R}function r(R,w,C){return R.index=C,e?(C=R.alternate,C!==null?(C=C.index,C<w?(R.flags|=67108866,w):C):(R.flags|=67108866,w)):(R.flags|=1048576,w)}function c(R){return e&&R.alternate===null&&(R.flags|=67108866),R}function d(R,w,C,q){return w===null||w.tag!==6?(w=ch(C,R.mode,q),w.return=R,w._debugOwner=R,w._debugTask=R._debugTask,w._debugInfo=Ne,w):(w=s(w,C),w.return=R,w._debugInfo=Ne,w)}function y(R,w,C,q){var ne=C.type;return ne===$s?(w=_(R,w,C.props.children,q,C.key),yc(C,w,R),w):w!==null&&(w.elementType===ne||e0(w,C)||typeof ne=="object"&&ne!==null&&ne.$$typeof===Mn&&jo(ne)===w.type)?(w=s(w,C.props),ol(w,C),w.return=R,w._debugOwner=C._owner,w._debugInfo=Ne,w):(w=lc(C,R.mode,q),ol(w,C),w.return=R,w._debugInfo=Ne,w)}function g(R,w,C,q){return w===null||w.tag!==4||w.stateNode.containerInfo!==C.containerInfo||w.stateNode.implementation!==C.implementation?(w=fh(C,R.mode,q),w.return=R,w._debugInfo=Ne,w):(w=s(w,C.children||[]),w.return=R,w._debugInfo=Ne,w)}function _(R,w,C,q,ne){return w===null||w.tag!==7?(w=Ni(C,R.mode,q,ne),w.return=R,w._debugOwner=R,w._debugTask=R._debugTask,w._debugInfo=Ne,w):(w=s(w,C),w.return=R,w._debugInfo=Ne,w)}function N(R,w,C){if(typeof w=="string"&&w!==""||typeof w=="number"||typeof w=="bigint")return w=ch(""+w,R.mode,C),w.return=R,w._debugOwner=R,w._debugTask=R._debugTask,w._debugInfo=Ne,w;if(typeof w=="object"&&w!==null){switch(w.$$typeof){case Ba:return C=lc(w,R.mode,C),ol(C,w),C.return=R,R=qt(w._debugInfo),C._debugInfo=Ne,Ne=R,C;case Xs:return w=fh(w,R.mode,C),w.return=R,w._debugInfo=Ne,w;case Mn:var q=qt(w._debugInfo);return w=jo(w),R=N(R,w,C),Ne=q,R}if(_t(w)||ve(w))return C=Ni(w,R.mode,C,null),C.return=R,C._debugOwner=R,C._debugTask=R._debugTask,R=qt(w._debugInfo),C._debugInfo=Ne,Ne=R,C;if(typeof w.then=="function")return q=qt(w._debugInfo),R=N(R,gc(w),C),Ne=q,R;if(w.$$typeof===La)return N(R,dc(R,w),C);vc(R,w)}return typeof w=="function"&&bc(R,w),typeof w=="symbol"&&Sc(R,w),null}function x(R,w,C,q){var ne=w!==null?w.key:null;if(typeof C=="string"&&C!==""||typeof C=="number"||typeof C=="bigint")return ne!==null?null:d(R,w,""+C,q);if(typeof C=="object"&&C!==null){switch(C.$$typeof){case Ba:return C.key===ne?(ne=qt(C._debugInfo),R=y(R,w,C,q),Ne=ne,R):null;case Xs:return C.key===ne?g(R,w,C,q):null;case Mn:return ne=qt(C._debugInfo),C=jo(C),R=x(R,w,C,q),Ne=ne,R}if(_t(C)||ve(C))return ne!==null?null:(ne=qt(C._debugInfo),R=_(R,w,C,q,null),Ne=ne,R);if(typeof C.then=="function")return ne=qt(C._debugInfo),R=x(R,w,gc(C),q),Ne=ne,R;if(C.$$typeof===La)return x(R,w,dc(R,C),q);vc(R,C)}return typeof C=="function"&&bc(R,C),typeof C=="symbol"&&Sc(R,C),null}function j(R,w,C,q,ne){if(typeof q=="string"&&q!==""||typeof q=="number"||typeof q=="bigint")return R=R.get(C)||null,d(w,R,""+q,ne);if(typeof q=="object"&&q!==null){switch(q.$$typeof){case Ba:return C=R.get(q.key===null?C:q.key)||null,R=qt(q._debugInfo),w=y(w,C,q,ne),Ne=R,w;case Xs:return R=R.get(q.key===null?C:q.key)||null,g(w,R,q,ne);case Mn:var De=qt(q._debugInfo);return q=jo(q),w=j(R,w,C,q,ne),Ne=De,w}if(_t(q)||ve(q))return C=R.get(C)||null,R=qt(q._debugInfo),w=_(w,C,q,ne,null),Ne=R,w;if(typeof q.then=="function")return De=qt(q._debugInfo),w=j(R,w,C,gc(q),ne),Ne=De,w;if(q.$$typeof===La)return j(R,w,C,dc(w,q),ne);vc(w,q)}return typeof q=="function"&&bc(w,q),typeof q=="symbol"&&Sc(w,q),null}function K(R,w,C,q){if(typeof C!="object"||C===null)return q;switch(C.$$typeof){case Ba:case Xs:b(R,w,C);var ne=C.key;if(typeof ne!="string")break;if(q===null){q=new Set,q.add(ne);break}if(!q.has(ne)){q.add(ne);break}se(w,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.",ne)});break;case Mn:C=jo(C),K(R,w,C,q)}return q}function oe(R,w,C,q){for(var ne=null,De=null,ye=null,he=w,Me=w=0,st=null;he!==null&&Me<C.length;Me++){he.index>Me?(st=he,he=null):st=he.sibling;var Et=x(R,he,C[Me],q);if(Et===null){he===null&&(he=st);break}ne=K(R,Et,C[Me],ne),e&&he&&Et.alternate===null&&t(R,he),w=r(Et,w,Me),ye===null?De=Et:ye.sibling=Et,ye=Et,he=st}if(Me===C.length)return n(R,he),Le&&eo(R,Me),De;if(he===null){for(;Me<C.length;Me++)he=N(R,C[Me],q),he!==null&&(ne=K(R,he,C[Me],ne),w=r(he,w,Me),ye===null?De=he:ye.sibling=he,ye=he);return Le&&eo(R,Me),De}for(he=a(he);Me<C.length;Me++)st=j(he,R,Me,C[Me],q),st!==null&&(ne=K(R,st,C[Me],ne),e&&st.alternate!==null&&he.delete(st.key===null?Me:st.key),w=r(st,w,Me),ye===null?De=st:ye.sibling=st,ye=st);return e&&he.forEach(function(Do){return t(R,Do)}),Le&&eo(R,Me),De}function at(R,w,C,q){if(C==null)throw Error("An iterable object provided no iterator.");for(var ne=null,De=null,ye=w,he=w=0,Me=null,st=null,Et=C.next();ye!==null&&!Et.done;he++,Et=C.next()){ye.index>he?(Me=ye,ye=null):Me=ye.sibling;var Do=x(R,ye,Et.value,q);if(Do===null){ye===null&&(ye=Me);break}st=K(R,Do,Et.value,st),e&&ye&&Do.alternate===null&&t(R,ye),w=r(Do,w,he),De===null?ne=Do:De.sibling=Do,De=Do,ye=Me}if(Et.done)return n(R,ye),Le&&eo(R,he),ne;if(ye===null){for(;!Et.done;he++,Et=C.next())ye=N(R,Et.value,q),ye!==null&&(st=K(R,ye,Et.value,st),w=r(ye,w,he),De===null?ne=ye:De.sibling=ye,De=ye);return Le&&eo(R,he),ne}for(ye=a(ye);!Et.done;he++,Et=C.next())Me=j(ye,R,he,Et.value,q),Me!==null&&(st=K(R,Me,Et.value,st),e&&Me.alternate!==null&&ye.delete(Me.key===null?he:Me.key),w=r(Me,w,he),De===null?ne=Me:De.sibling=Me,De=Me);return e&&ye.forEach(function(VM){return t(R,VM)}),Le&&eo(R,he),ne}function qe(R,w,C,q){if(typeof C=="object"&&C!==null&&C.type===$s&&C.key===null&&(yc(C,null,R),C=C.props.children),typeof C=="object"&&C!==null){switch(C.$$typeof){case Ba:var ne=qt(C._debugInfo);e:{for(var De=C.key;w!==null;){if(w.key===De){if(De=C.type,De===$s){if(w.tag===7){n(R,w.sibling),q=s(w,C.props.children),q.return=R,q._debugOwner=C._owner,q._debugInfo=Ne,yc(C,q,R),R=q;break e}}else if(w.elementType===De||e0(w,C)||typeof De=="object"&&De!==null&&De.$$typeof===Mn&&jo(De)===w.type){n(R,w.sibling),q=s(w,C.props),ol(q,C),q.return=R,q._debugOwner=C._owner,q._debugInfo=Ne,R=q;break e}n(R,w);break}else t(R,w);w=w.sibling}C.type===$s?(q=Ni(C.props.children,R.mode,q,C.key),q.return=R,q._debugOwner=R,q._debugTask=R._debugTask,q._debugInfo=Ne,yc(C,q,R),R=q):(q=lc(C,R.mode,q),ol(q,C),q.return=R,q._debugInfo=Ne,R=q)}return R=c(R),Ne=ne,R;case Xs:e:{for(ne=C,C=ne.key;w!==null;){if(w.key===C)if(w.tag===4&&w.stateNode.containerInfo===ne.containerInfo&&w.stateNode.implementation===ne.implementation){n(R,w.sibling),q=s(w,ne.children||[]),q.return=R,R=q;break e}else{n(R,w);break}else t(R,w);w=w.sibling}q=fh(ne,R.mode,q),q.return=R,R=q}return c(R);case Mn:return ne=qt(C._debugInfo),C=jo(C),R=qe(R,w,C,q),Ne=ne,R}if(_t(C))return ne=qt(C._debugInfo),R=oe(R,w,C,q),Ne=ne,R;if(ve(C)){if(ne=qt(C._debugInfo),De=ve(C),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(C);return ye===C?(R.tag!==0||Object.prototype.toString.call(R.type)!=="[object GeneratorFunction]"||Object.prototype.toString.call(ye)!=="[object Generator]")&&(CT||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."),CT=!0):C.entries!==De||Gm||(console.error("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),Gm=!0),R=at(R,w,ye,q),Ne=ne,R}if(typeof C.then=="function")return ne=qt(C._debugInfo),R=qe(R,w,gc(C),q),Ne=ne,R;if(C.$$typeof===La)return qe(R,w,dc(R,C),q);vc(R,C)}return typeof C=="string"&&C!==""||typeof C=="number"||typeof C=="bigint"?(ne=""+C,w!==null&&w.tag===6?(n(R,w.sibling),q=s(w,ne),q.return=R,R=q):(n(R,w),q=ch(ne,R.mode,q),q.return=R,q._debugOwner=R,q._debugTask=R._debugTask,q._debugInfo=Ne,R=q),c(R)):(typeof C=="function"&&bc(R,C),typeof C=="symbol"&&Sc(R,C),n(R,w))}return function(R,w,C,q){var ne=Ne;Ne=null;try{eu=0;var De=qe(R,w,C,q);return dr=null,De}catch(st){if(st===fr||st===Mf)throw st;var ye=E(29,st,null,R.mode);ye.lanes=q,ye.return=R;var he=ye._debugInfo=Ne;if(ye._debugOwner=R._debugOwner,ye._debugTask=R._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=ne}}}function R0(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:zT,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&&!BT){var s=J(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),BT=!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),Wv(e,null,n),t):(sc(e,a,t,n),rc(e))}function il(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,$r(e,n)}}function Ec(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 sl(){if($m){var e=cr;if(e!==null)throw e}}function rl(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 x=d.lane&-536870913,j=x!==d.lane;if(j?(Ue&x)===x:(a&x)===x){x!==0&&x===Ji&&($m=!0),_!==null&&(_=_.next={lane:0,tag:d.tag,payload:d.payload,callback:null,next:null});e:{x=e;var K=d,oe=t,at=n;switch(K.tag){case VT:if(K=K.payload,typeof K=="function"){lr=!0;var qe=K.call(at,N,oe);if(x.mode&It){ue(!0);try{K.call(at,N,oe)}finally{ue(!1)}}lr=!1,N=qe;break e}N=K;break e;case Pm:x.flags=x.flags&-65537|128;case zT:if(qe=K.payload,typeof qe=="function"){if(lr=!0,K=qe.call(at,N,oe),x.mode&It){ue(!0);try{qe.call(at,N,oe)}finally{ue(!1)}}lr=!1}else K=qe;if(K==null)break e;N=je({},N,K);break e;case jT:oi=!0}}x=d.callback,x!==null&&(e.flags|=64,j&&(e.flags|=8192),j=s.callbacks,j===null?s.callbacks=[x]:j.push(x))}else j={lane:x,tag:d.tag,payload:d.payload,callback:d.callback,next:null},_===null?(g=_=j,y=N):_=_.next=j,c|=x;if(d=d.next,d===null){if(d=s.shared.pending,d===null)break;j=d,d=j.next,j.next=null,s.lastBaseUpdate=j,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 x0(e,t){if(typeof e!="function")throw Error("Invalid argument passed as callback. Expected a function. Instead received: "+e);e.call(t)}function ww(e,t){var n=e.shared.hiddenCallbacks;if(n!==null)for(e.shared.hiddenCallbacks=null,e=0;e<n.length;e++)x0(n[e],t)}function w0(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;e<n.length;e++)x0(n[e],t)}function O0(e,t){var n=Qa;be(Nf,n,e),be(hr,t,e),Qa=n|t.baseLanes}function Rh(e){be(Nf,Qa,e),be(hr,hr.current,e)}function xh(e){Qa=Nf.current,fe(hr,e),fe(Nf,e)}function Ho(e){var t=e.alternate;be(St,St.current&pr,e),be(Un,e,e),Fn===null&&(t===null||hr.current!==null||t.memoizedState!==null)&&(Fn=e)}function wh(e){be(St,St.current,e),be(Un,e,e),Fn===null&&(Fn=e)}function C0(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 Tc(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;In===null?In=[e]:In.push(e)}function P(){var e=B;if(In!==null&&(bo++,In[bo]!==e)){var t=J(Ae);if(!LT.has(t)&&(LT.add(t),In!==null)){for(var n="",a=0;a<=bo;a++){var s=In[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 Ns(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=J(Ae);kT.has(e)||(kT.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(au)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,In=e!==null?e._debugHookTypes:null,bo=-1,au=e!==null&&e.type!==t.type,(Object.prototype.toString.call(n)==="[object AsyncFunction]"||Object.prototype.toString.call(n)==="[object AsyncGeneratorFunction]")&&(r=J(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:In!==null?qT:Zm,ts=r=(t.mode&It)!==Te;var c=km(n,a,s);if(ts=!1,yr&&(c=Mh(t,n,a,s)),r){ue(!0);try{c=Mh(t,n,a,s)}finally{ue(!1)}}return M0(e,t),c}function M0(e,t){t._debugHookTypes=In,t.dependencies===null?vo!==null&&(t.dependencies={lanes:0,firstContext:null,_debugThenableState:vo}):t.dependencies._debugThenableState=vo,L.H=ou;var n=We!==null&&We.next!==null;if(go=0,In=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,nu=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)),Wl?(Wl=!1,e=!0):e=!1,e&&(t=J(t)||"Unknown",HT.has(t)||Qm.has(t)||(HT.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(yr&&(vo=null),nu=0,yr=!1,s>=hM)throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");if(s+=1,au=!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=YT,r=km(t,n,a)}while(yr);return r}function Ow(){var e=L.H,t=e.useState()[0];return t=typeof t.then=="function"?ll(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)!==Te?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,In=Rt=We=Ae=null,bo=-1,B=null,yr=!1,nu=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 ll(e){var t=nu;return nu+=1,vo===null&&(vo=y0()),e=v0(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 ll(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||au)for(n=t.data[t.index]=Array(e),a=0;a<e;a++)n[a]=PO;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=Uw.bind(null,Ae,e),[a.memoizedState,e]}function Us(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 x=g.revertLane;if(x===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&x)===x){g=g.next,x===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|=x,ri|=x;N=g.action,ts&&n(r,N),r=g.hasEagerState?g.eagerState:n(r,N)}else x={lane:N,revertLane:g.revertLane,gesture:g.gesture,action:g.action,hasEagerState:g.hasEagerState,eagerState:g.eagerState,next:null},y===null?(d=y=x,c=r):y=y.next=x,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=cr,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 ul(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();mr||r===n()||(console.error("The result of getServerSnapshot should be cached to avoid an infinite loop"),mr=!0)}else{if(r=t(),mr||(n=t(),rn(r,n)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),mr=!0)),et===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");(Ue&127)!==0||_0(a,t,r)}return s.memoizedState=r,n={value:r,getSnapshot:t},s.queue=n,Oc(U0.bind(null,a,n,e),[e]),a.flags|=2048,Vs(Jn|cn,{destroy:void 0},N0.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(),!mr){var c=t();rn(n,c)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),mr=!0)}(c=!rn((We||s).memoizedState,n))&&(s.memoizedState=n,xt=!0),s=s.queue;var d=U0.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,Vs(Jn|cn,{destroy:void 0},N0.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||_0(a,t,n)}return n}function _0(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 N0(e,t,n,a){t.value=n,t.getSnapshot=a,z0(t)&&V0(e)}function U0(e,t,n){return n(function(){z0(t)&&(Da(2,"updateSyncExternalStore()",e),V0(e))})}function z0(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!rn(e,n)}catch{return!0}}function V0(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=eb.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 j0(e,t){var n=Je();return B0(n,We,e,t)}function B0(e,t,n,a){return e.baseState=n,Vh(e,We,typeof a=="function"?a:ra)}function L0(e,t){var n=Je();return We!==null?B0(n,We,e,t):(n.baseState=e,[e,n.queue.dispatch])}function Cw(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,H0(t,r)):(r.next=n.next,t.pending=n.next=r)}}function H0(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),k0(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),k0(e,t,c)}catch(g){kh(e,t,g)}}function k0(e,t,n){n!==null&&typeof n=="object"&&typeof n.then=="function"?(L.asyncTransitions++,n.then(Uc,Uc),n.then(function(a){q0(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.")):q0(e,t,n)}function q0(e,t,n){t.status="fulfilled",t.value=n,Y0(t),e.state=n,t=e.pending,t!==null&&(n=t.next,n===t?e.pending=null:(n=n.next,t.next=n,H0(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,Y0(t),t=t.next;while(t!==a)}e.action=null}function Y0(e){e=e.listeners;for(var t=0;t<e.length;t++)(0,e[t])()}function G0(e,t){return t}function zs(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===w1?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:G0,lastRenderedState:t},n.queue=a,n=eb.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=Cw.bind(null,Ae,s,r,n),s.dispatch=n,a.memoizedState=e,[t,n,!1]}function xc(e){var t=Je();return P0(t,We,e)}function P0(e,t,n){if(t=Vh(e,t,G0)[0],e=Us(ra)[0],typeof t=="object"&&t!==null&&typeof t.then=="function")try{var a=ll(t)}catch(c){throw c===fr?Mf:c}else a=t;t=Je();var s=t.queue,r=s.dispatch;return n!==t.memoizedState&&(Ae.flags|=2048,Vs(Jn|cn,{destroy:void 0},Mw.bind(null,s,n),null)),[a,r,e]}function Mw(e,t){e.action=t}function wc(e){var t=Je(),n=We;if(n!==null)return P0(t,n,e);Je(),t=t.memoizedState,n=Je();var a=n.queue.dispatch;return n.memoizedState=e,[t,a,!1]}function Vs(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=Vs(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=Vs(t,r,n,a):(Ae.flags|=e,s.memoizedState=Vs(Jn|t,r,n,a))}function Oc(e,t){(Ae.mode&ca)!==Te?Li(276826112,cn,e,t):Li(8390656,cn,e,t)}function _w(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 _w({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)!==Te&&(n|=134217728),Li(n,zn,e,t)}function X0(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)!==Te&&(a|=134217728),Li(a,zn,X0.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,X0.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 $0(e,t){var n=Je();return Z0(n,We.memoizedState,e,t)}function Q0(e,t){var n=Je();return We===null?Zh(n,e,t):Z0(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=Fb(),Ae.lanes|=e,ri|=e,n)}function Z0(e,t,n,a){return rn(n,t)?n:hr.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=Fb(),Ae.lanes|=e,ri|=e,t)}function Uc(){L.asyncTransitions--}function F0(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 _=xw(y,a);cl(e,t,_,On(e))}else cl(e,t,a,On(e))}catch(N){cl(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=J0(e).queue;Dw(e),F0(e,s,t,ds,n===null?T:function(){return I0(e),n(a)})}function J0(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 I0(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=J0(e);t.next===null&&(t=e.alternate.memoizedState),cl(e,t.next.queue,{},On(e))}function Jh(){var e=Bh(!1);return e=F0.bind(null,Ae,e.queue,!0,!1),nn().memoizedState=e,[!1,e]}function K0(){var e=Us(ra)[0],t=Je().memoizedState;return[typeof e=="boolean"?e:ll(e),t]}function W0(){var e=ul(ra)[0],t=Je().memoizedState;return[typeof e=="boolean"?e:ll(e),t]}function Hi(){return ut(bu)}function Ih(){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=dM++,t="_"+t+"r_"+n.toString(32)+"_";return e.memoizedState=t}function Kh(){return nn().memoizedState=Nw.bind(null,Ae)}function Nw(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),il(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 Uw(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)?tb(t,s):(s=sh(e,t,s,a),s!==null&&(Da(a,"dispatch()",e),ht(s,e,a),nb(s,t,a)))}function eb(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),cl(e,t,n,a)&&Da(a,"setState()",e)}function cl(e,t,n,a){var s={lane:a,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(zc(e))tb(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),nb(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 tb(e,t){yr=zf=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function nb(e,t,n){if((n&4194048)!==0){var a=t.lanes;a&=e.pendingLanes,n|=a,t.lanes=n,$r(e,n)}}function ep(e){if(e!==null&&typeof e!="function"){var t=String(e);WT.has(t)||(WT.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&It){ue(!0);try{r=n(a,s)}finally{ue(!1)}}r===void 0&&(t=ee(t)||"Component",FT.has(t)||(FT.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 ab(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&It){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.",ee(t)||"Component"),n}return t.prototype&&t.prototype.isPureReactComponent?!Wr(n,a)||!Wr(s,r):!0}function ob(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=J(e)||"Component",PT.has(e)||(PT.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 ib(e){wm(e),console.warn(`%s
121
+
122
+ %s
123
+ `,gr?"An error occurred in the <"+gr+"> 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 sb(e){var t=gr?"The above error occurred in the <"+gr+"> 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, "+((Im||"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,V1+" "+e[0],j1,sd+a+sd,B1):e.splice(0,0,V1,j1,sd+a+sd,B1),e.unshift(console),a=UM.apply(console.error,e),a()}else console.error(`%o
130
+
131
+ %s
132
+
133
+ %s
134
+ `,e,t,n)}function rb(e){wm(e)}function Vc(e,t){try{gr=t.source?J(t.source):null,Im=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 lb(e,t,n){try{gr=n.source?J(n.source):null,Im=J(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(){t0(n),se(a.source,lb,t,n,a)}}var c=n.stateNode;c!==null&&typeof c.componentDidCatch=="function"&&(e.callback=function(){t0(n),se(a.source,lb,t,n,a),typeof s!="function"&&(ui===null?ui=new Set([this]):ui.add(this)),lM(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.",J(n)||"Unknown")})}function zw(e,t,n,a,s){if(n.flags|=32768,qa&&vl(e,s),a!==null&&typeof a=="object"&&typeof a.then=="function"){if(t=n.alternate,t!==null&&_s(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===Eo&&(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&&el(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&&el(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),Ec(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(cu===null?cu=[r]:cu.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),Ec(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),Ec(n,s),!1}n=n.return}while(n!==null);return!1}function Yt(e,t,n,a){t.child=e===null?UT(t,null,n,a):es(t,e.child,n,a)}function ub(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 cb(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),fb(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:Wr,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 fb(e,t,n,a,s){if(e!==null){var r=e.memoizedProps;if(Wr(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 db(e,t,n,a){var s=a.children,r=e!==null?e.memoizedState:null;if(e===null&&t.stateNode===null&&(t.stateNode={_visibility:Hl,_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 hb(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?O0(t,r):Rh(t),C0(t);else return a=t.lanes=536870912,hb(e,t,r!==null?r.baseLanes|n:n,n,a)}else r!==null?(mc(t,r.cachePool),O0(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 fl(e,t){return e!==null&&e.tag===22||t.stateNode!==null||(t.stateNode={_visibility:Hl,_pendingMarkers:null,_retryCache:null,_transitions:null}),t.sibling}function hb(e,t,n,a,s){var r=Eh();return r=r===null?null:{parent:At._currentValue,pool:r},t.memoizedState={baseLanes:n,cachePool:r},e!==null&&mc(t,null),Rh(t),C0(t),e!==null&&_s(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 pb(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 Vw(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,fl(null,e);if(wh(t),(e=it)?(n=HS(e,Qn),n=n!==null&&n.data===ls?n:null,n!==null&&(a={dehydrated:n,treeContext:s0(),retryLane:536870912,hydrationErrors:null},t.memoizedState=a,a=o0(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=pb(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(l0(),(n&536870912)!==0&&Gc(t),xt||_s(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),Km;Pc(),t=pb(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&&r0(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=ee(n)||"Unknown";e1[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),e1[r]=!0)}return t.mode&It&&fa.recordLegacyContextWarning(t,null),e===null&&(sp(t,t.type),n.contextTypes&&(r=ee(n)||"Unknown",n1[r]||(n1[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 mb(e,t,n,a,s,r){return Vi(t),bo=-1,au=e!==null&&e.type!==t.type,t.updateQueue=null,n=Mh(t,a,n,s),M0(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 yb(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)),Ec(t,d)}if(Vi(t),t.stateNode===null){if(c=Ko,r=n.contextType,"contextType"in n&&r!==null&&(r===void 0||r.$$typeof!==La)&&!KT.has(n)&&(KT.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",ee(n)||"Component",d)),typeof r=="object"&&r!==null&&(c=ut(r)),r=new n(a,c),t.mode&It){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=GT,typeof n.getDerivedStateFromProps=="function"&&c===null&&(c=ee(n)||"Component",XT.has(c)||(XT.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=ee(n)||"Component";var g=typeof n.getDerivedStateFromProps=="function"?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";QT.has(r)||(QT.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=ee(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&&!IT.has(n)&&(IT.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&&!JT.has(n)&&(JT.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.",ee(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"||$T.has(n)||($T.add(n),console.error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.",ee(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):Ko,r.state===a&&(c=ee(n)||"Component",ZT.has(c)||(ZT.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&It&&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.",J(t)||"Component"),Jm.enqueueReplaceState(r,r.state,null)),rl(t,a,r,s),sl(),r.state=t.memoizedState),typeof r.componentDidMount=="function"&&(t.flags|=4194308),(t.mode&ca)!==Te&&(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=Ko,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)&&ob(t,r,a,c),oi=!1;var x=t.memoizedState;r.state=x,rl(t,a,r,s),sl(),N=t.memoizedState,_||x!==N||oi?(typeof g=="function"&&(tp(t,n,g,a),N=t.memoizedState),(d=oi||ab(t,n,d,a,x,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)!==Te&&(t.flags|=134217728)):(typeof r.componentDidMount=="function"&&(t.flags|=4194308),(t.mode&ca)!==Te&&(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)!==Te&&(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,x=r.context,N=n.contextType,d=Ko,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||x!==d)&&ob(t,r,a,d),oi=!1,x=t.memoizedState,r.state=x,rl(t,a,r,s),sl();var j=t.memoizedState;c!==g||x!==j||oi||e!==null&&e.dependencies!==null&&fc(e.dependencies)?(typeof _=="function"&&(tp(t,n,_,a),j=t.memoizedState),(y=oi||ab(t,n,y,a,x,j,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,j,d),typeof r.UNSAFE_componentWillUpdate=="function"&&r.UNSAFE_componentWillUpdate(a,j,d)),typeof r.componentDidUpdate=="function"&&(t.flags|=4),typeof r.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof r.componentDidUpdate!="function"||c===e.memoizedProps&&x===e.memoizedState||(t.flags|=4),typeof r.getSnapshotBeforeUpdate!="function"||c===e.memoizedProps&&x===e.memoizedState||(t.flags|=1024),t.memoizedProps=a,t.memoizedState=j),r.props=a,r.state=j,r.context=d,r=y):(typeof r.componentDidUpdate!="function"||c===e.memoizedProps&&x===e.memoizedState||(t.flags|=4),typeof r.getSnapshotBeforeUpdate!="function"||c===e.memoizedProps&&x===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=bT(d),t.mode&It){ue(!0);try{bT(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&&(vr||console.error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.",J(t)||"a component"),vr=!0),e}function gb(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=ee(t)||"Unknown",a1[e]||(console.error("%s: Function components do not support getDerivedStateFromProps.",e),a1[e]=!0)),typeof t.contextType=="object"&&t.contextType!==null&&(t=ee(t)||"Unknown",t1[t]||(console.error("%s: Function components do not support contextType.",t),t1[t]=!0))}function rp(e){return{baseLanes:e,cachePool:m0()}}function lp(e,t,n){return e=e!==null?e.childLanes&~n:0,t&&(e|=Sn),e}function vb(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&tu)!==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=HS(e,Qn),n=n!==null&&n.data!==ls?n:null,n!==null&&(a={dehydrated:n,treeContext:s0(),retryLane:536870912,hydrationErrors:null},t.memoizedState=a,a=o0(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,fl(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=fl(null,s));else if(Ho(t),l0(),(n&536870912)!==0&&Gc(t),qp(_)){if(a=_.nextSibling&&_.nextSibling.dataset,a){d=a.dgst;var N=a.msg;y=a.stck;var x=a.cstck}r=N,a=d,s=y,_=x,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),el(s),t=cp(e,t,n)}else if(xt||_s(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),Km;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&&r0(t,e),t=up(t,s.children),t.flags|=4096);return t}}return r?(ko(t),d=s.fallback,y=t.mode,x=e.child,_=x.sibling,s=Wa(x,{mode:"hidden",children:s.children}),s.subtreeFlags=x.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,fl(null,s),s=t.child,d=e.child.memoizedState,d===null?d=rp(n):(y=d.cachePool,y!==null?(x=At._currentValue,y=y.parent!==x?{parent:x,pool:x}:y):y=m0(),d={baseLanes:d.baseLanes|n,cachePool:y}),s.memoizedState=d,s.childLanes=lp(e,a,n),t.memoizedState=Wm,fl(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=E(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 bb(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 Sb(e,t,n){var a=t.pendingProps,s=a.revealOrder,r=a.tail,c=a.children,d=St.current;if((a=(d&tu)!==0)?(d=d&pr|tu,t.flags|=128):d&=pr,be(St,d,t),d=s??"null",s!=="forwards"&&s!=="unstable_legacy-backwards"&&s!=="together"&&s!=="independent"&&!o1[d])if(o1[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(!R0(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(!R0(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=kl):c=0,!a&&e!==null&&(e.flags&128)!==0)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&bb(e,n,t);else if(e.tag===19)bb(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&&Tc(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&&Tc(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(_s(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 jw(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?vb(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||(_s(e,t,n,!1),a=(n&t.childLanes)!==0),s){if(a)return Sb(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,db(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,jw(e,t,n);xt=(e.flags&131072)!==0}else xt=!1,(a=Le)&&(Uo(),a=(t.flags&1048576)!==0),a&&(a=t.index,Uo(),i0(t,kl,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=yb(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===wl){t.tag=11,t.type=e=rh(e),t=ub(null,t,e,a,n);break e}else if(s===of){t.tag=14,t=cb(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=ee(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),yb(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),rl(t,a,null,n);var c=t.memoizedState;if(a=c.cache,Vo(t,At,a),a!==r.cache&&gh(t,[At],n,!0),sl(),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=gb(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),el(s),t=gb(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=UT(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=XS(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=XS(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=GS(t.type,t.pendingProps,a,s,!1),Pa||(s=_S(a,t.type,t.pendingProps,s),s!==null&&(Ui(t,0).serverProps=s)),Xt=t,Qn=!0,s=it,Po(t.type)?(Ty=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=Kd(t.type,r.ancestorInfo),s=it,(c=!s)||(c=DO(s,t.type,t.pendingProps,Qn),c!==null?(t.stateNode=c,Pa||(r=_S(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,Ow,null,null,n),bu._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=RO(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 vb(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 ub(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||i1||(i1=!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 cb(e,t,t.type,t.pendingProps,n);case 15:return fb(e,t,t.type,t.pendingProps,n);case 19:return Sb(e,t,n);case 31:return Vw(e,t,n);case 22:return db(e,t,n,t.pendingProps);case 24:return Vi(t),a=ut(At),e===null?(s=Eh(),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),rl(t,null,null,n),sl()),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&aM)!==Te)&&(t=!1),t){if(e.flags|=16777216,(s&335544128)===s)if(e.stateNode.complete)e.flags|=8192;else if(Wb())e.flags|=8192;else throw Wi=_f,Ym}else e.flags&=-16777217}function Eb(e,t){if(t.type!=="stylesheet"||(t.state.loading&Kn)!==fs)e.flags&=-16777217;else if(e.flags|=16777216,!JS(t))if(Wb())e.flags|=8192;else throw Wi=_f,Ym}function Hc(e,t){t!==null&&(e.flags|=4),e.flags&16384&&(t=e.tag!==22?Gr():536870912,e.lanes|=t,is|=t)}function dl(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)!==Te){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)!==Te){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 Bw(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)&&(Ms(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),Eb(t,r)):(nt(t),pp(t,s,null,a,n))):r?r!==e.memoizedState?(oo(t),nt(t),Eb(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(),Ms(t)?u0(t):(e=GS(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(Ms(t))u0(t);else{switch(r=Ze($o.current),Kd(s,c.ancestorInfo),c=c.context,r=Zc(r),c){case xr:r=r.createElementNS(Js,s);break;case ad:r=r.createElementNS(df,s);break;default:switch(s){case"svg":r=r.createElementNS(Js,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(C1,s)||(C1[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(),Ms(t)){if(e=t.stateNode,n=t.memoizedProps,s=!Pa,a=null,r=Xt,r!==null)switch(r.tag){case 3:s&&(s=qS(e,n,a),s!==null&&(Ui(t,0).serverProps=s));break;case 27:case 5:a=r.memoizedProps,s&&(s=qS(e,n,a),s!==null&&(Ui(t,0).serverProps=s))}e[Pt]=t,e=!!(e.nodeValue===n||a!==null&&a.suppressHydrationWarning===!0||xS(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=Ms(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)!==Te&&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)!==Te&&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=Ms(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)!==Te&&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)!==Te&&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)!==Te&&al(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)!==Te&&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)dl(a,!1);else{if(dt!==Eo||e!==null&&(e.flags&128)!==0)for(e=t.child;e!==null;){if(r=Tc(e),r!==null){for(t.flags|=128,dl(a,!1),e=r.updateQueue,t.updateQueue=e,Hc(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)a0(n,e),n=n.sibling;return be(St,St.current&pr|tu,t),Le&&eo(t,a.treeForkCount),t.child}e=e.sibling}a.tail!==null&&Bt()>Pf&&(t.flags|=128,s=!0,dl(a,!1),t.lanes=4194304)}else{if(!s)if(e=Tc(r),e!==null){if(t.flags|=128,s=!0,e=e.updateQueue,t.updateQueue=e,Hc(t,e),dl(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,dl(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&pr|tu:n&pr,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(Ii,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 Lw(e,t){switch(hh(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,(t.mode&_e)!==Te&&al(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)!==Te&&al(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)!==Te&&al(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(Ii,t),e=t.flags,e&65536?(t.flags=e&-65537|128,(t.mode&_e)!==Te&&al(t),t):null;case 24:return to(At,t),null;case 25:return null;default:return null}}function Tb(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(Ii,t);break;case 24:to(At,t)}}function _a(e){return(e.mode&_e)!==Te}function Ab(e,t){_a(e)?(Ma(),hl(t,e),Ca()):hl(t,e)}function mp(e,t,n){_a(e)?(Ma(),js(n,e,t),Ca()):js(n,e,t)}function hl(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&&(Ar=!0),a=se(t,uM,n),(e&un)!==Uf&&(Ar=!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 js(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&&(Ar=!0),s=t,se(s,cM,s,n,d),(e&un)!==Uf&&(Ar=!1))}a=a.next}while(a!==r)}}catch(y){$e(t,t.return,y)}}function Db(e,t){_a(e)?(Ma(),hl(t,e),Ca()):hl(t,e)}function yp(e,t,n){_a(e)?(Ma(),js(n,e,t),Ca()):js(n,e,t)}function Rb(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;e.type.defaultProps||"ref"in e.memoizedProps||vr||(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.",J(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.",J(e)||"instance"));try{se(e,w0,t,n)}catch(a){$e(e,e.return,a)}}}function Hw(e,t,n){return e.getSnapshotBeforeUpdate(t,n)}function kw(e,t){var n=t.memoizedProps,a=t.memoizedState;t=e.stateNode,e.type.defaultProps||"ref"in e.memoizedProps||vr||(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.",J(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.",J(e)||"instance"));try{var s=ki(e.type,n),r=se(e,Hw,t,s,a);n=s1,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.",J(e))})),t.__reactInternalSnapshotBeforeUpdate=r}catch(c){$e(e,e.return,c)}}function xb(e,t,n){n.props=ki(e.type,e.memoizedProps),n.state=e.memoizedState,_a(e)?(Ma(),se(e,RT,e,t,n),Ca()):se(e,RT,e,t,n)}function qw(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().",J(e)),t.current=n}}function pl(e,t){try{se(e,qw,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 wb(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 Yw(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 Ob(e){var t=e.type,n=e.memoizedProps,a=e.stateNode;try{se(e,dO,a,t,n,e)}catch(s){$e(e,e.return,s)}}function gp(e,t,n){try{se(e,pO,e.stateNode,e.type,n,t,e)}catch(a){$e(e,e.return,a)}}function Cb(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||Cb(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?(jS(n),(n.nodeType===9?n.body:n.nodeName==="HTML"?n.ownerDocument.body:n).insertBefore(e,t)):(jS(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=Ka));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 Gw(e){for(var t,n=e.return;n!==null;){if(Cb(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&&(VS(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 Mb(e){var t=e.stateNode,n=e.memoizedProps;try{se(e,MO,e.type,n,t,e)}catch(a){$e(e,e.return,a)}}function _b(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 Pw(e,t){if(e=e.containerInfo,by=rd,e=Qv(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,x=null;t:for(;;){for(var j;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),(j=N.firstChild)!==null;)x=N,N=j;for(;;){if(N===e)break t;if(x===n&&++g===s&&(d=c),x===r&&++_===a&&(y=c),(j=N.nextSibling)!==null)break;N=x,x=N.parentNode}N=j}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&&kw(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 Nb(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&&Ab(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||vr||(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.",J(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.",J(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||vr||(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.",J(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.",J(n)||"instance")),_a(n)?(Ma(),se(n,TT,n,e,y,t,e.__reactInternalSnapshotBeforeUpdate),Ca()):se(n,TT,n,e,y,t,e.__reactInternalSnapshotBeforeUpdate)}d&64&&Rb(n),d&512&&pl(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,w0,d,y)}catch(_){$e(n,n.return,_)}}e.effectDuration+=hc(t);break;case 27:t===null&&d&4&&Mb(n);case 26:case 5:if(Ua(e,n),t===null){if(d&4)Ob(n);else if(d&64){e=n.type,t=n.memoizedProps,y=n.stateNode;try{se(n,hO,y,e,t,n)}catch(_){$e(n,n.return,_)}}}d&512&&pl(n,n.return);break;case 12:if(d&4){d=no(),Ua(e,n),e=n.stateNode,e.effectDuration+=nl(d);try{se(n,wb,n,t,ei,e.effectDuration)}catch(_){$e(n,n.return,_)}}else Ua(e,n);break;case 31:Ua(e,n),d&4&&Vb(e,n);break;case 13:Ua(e,n),d&4&&jb(e,n),d&64&&(e=n.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(d=Ww.bind(null,n),xO(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)!==Te&&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)!==Te&&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&&(_b(n.return.alternate,n.return)||Ta(n,ge,Se,"Mount"))),xn(a),xa(s),ct=r,pt=c}function Ub(e){var t=e.alternate;t!==null&&(e.alternate=null,Ub(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&z(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;)zb(e,t,n),n=n.sibling}function zb(e,t,n){if(Jt&&typeof Jt.onCommitFiberUnmount=="function")try{Jt.onCommitFiberUnmount(Zs,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,Al,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,gO,Ot,n.stateNode)}catch(g){$e(n,t,g)}else try{se(n,yO,Ot,n.stateNode)}catch(g){$e(n,t,g)}break;case 18:Ot!==null&&(vn?(e=Ot,BS(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,n.stateNode),Ps(e)):BS(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:js(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"&&xb(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)!==Te&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(n,ge,Se,ft,ct),xn(a),xa(s),ct=r,pt=c}function Vb(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{se(t,OO,e)}catch(n){$e(t,t.return,n)}}}function jb(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{se(t,CO,e)}catch(n){$e(t,t.return,n)}}function Xw(e){switch(e.tag){case 31:case 13:case 19:var t=e.stateNode;return t===null&&(t=e.stateNode=new r1),t;case 22:return e=e.stateNode,t=e._retryCache,t===null&&(t=e._retryCache=new r1),t;default:throw Error("Unexpected Suspense handler tag ("+e.tag+"). This is a bug in React.")}}function qc(e,t){var n=Xw(e);t.forEach(function(a){if(!n.has(a)){if(n.add(a),qa)if(br!==null&&Sr!==null)vl(Sr,br);else throw Error("Expected finished root and lanes to be set. This is a bug in React.");var s=eO.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.");zb(s,r,c),Ot=null,vn=!1,(c.mode&_e)!==Te&&0<=ge&&0<=Se&&.05<Se-ge&&Ta(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;)Bb(t,e),t=t.sibling}function Bb(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&&(js(un|Jn,e,e.return),hl(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[Ml]||g[Pt]||g.namespaceURI===Js||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 _=ZS("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(_=ZS("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 FS(y,e.type,e.stateNode);else e.stateNode=QS(y,d,e.memoizedProps);else g!==d?(g===null?c.stateNode!==null&&(c=c.stateNode,c.parentNode.removeChild(c)):g.count--,d===null?FS(y,e.type,e.stateNode):QS(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,VS,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,mO,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,wO,t.containerInfo)}catch(oe){$e(e,e.return,oe)}ey&&(ey=!1,Lb(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+=nl(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 x=c!==null&&c.memoizedState!==null,j=So,K=wt;if(So=j||y,wt=K||x,yn(t,e),wt=K,So=j,x&&!y&&!j&&!K&&(e.mode&_e)!==Te&&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&~Hl:t._visibility|Hl,!y||c===null||x||So||wt||(qi(e),(e.mode&_e)!==Te&&0<=ge&&0<=Se&&.05<Se-ge&&Ta(e,ge,Se,"Disconnect")),c=null,t=e;;){if(t.tag===5||t.tag===26){if(c===null){x=c=t;try{g=x.stateNode,y?se(x,bO,g):se(x,TO,x.stateNode,x.memoizedProps)}catch(oe){$e(x,x.return,oe)}}}else if(t.tag===6){if(c===null){x=t;try{_=x.stateNode,y?se(x,SO,_):se(x,AO,_,x.memoizedProps)}catch(oe){$e(x,x.return,oe)}}}else if(t.tag===18){if(c===null){x=t;try{N=x.stateNode,y?se(x,vO,N):se(x,EO,x.stateNode)}catch(oe){$e(x,x.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)!==Te&&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&&(_b(e.return.alternate,e.return)||Ta(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,Gw,e)}catch(n){$e(e,e.return,n)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function Lb(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var t=e;Lb(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;)Nb(e,t.alternate,t),t=t.sibling}function Hb(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"&&xb(e,e.return,r),qi(e);break;case 27:se(e,Al,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)!==Te&&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;)Hb(e),e=e.sibling}function kb(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),Ab(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,ww,t,e)}catch(g){$e(n,n.return,g)}}a&&y&64&&Rb(n),pl(n,n.return);break;case 27:Mb(n);case 26:case 5:za(e,n,a),a&&t===null&&y&4&&Ob(n),pl(n,n.return);break;case 12:if(a&&y&4){y=no(),za(e,n,a),a=n.stateNode,a.effectDuration+=nl(y);try{se(n,wb,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&&Vb(e,n);break;case 13:za(e,n,a),a&&y&4&&jb(e,n);break;case 22:n.memoizedState===null&&za(e,n,a),pl(n,n.return);break;case 30:break;default:za(e,n,a)}(n.mode&_e)!==Te&&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;)kb(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&&tl(n))}function Ep(e,t){e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(ji(t),e!=null&&tl(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;qb(e,t,n,a,r!==null?r.actualStartTime:s),t=r}}function qb(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)!==Te&&0<t.actualStartTime&&(t.flags&1)!==0&&oc(t,t.actualStartTime,s,Nt,n),la(e,t,n,a,s),_&2048&&Db(t,cn|Jn);break;case 1:(t.mode&_e)!==Te&&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(),x=Nt;Nt=t.alternate!==null&&t.alternate.memoizedState.isDehydrated&&(t.flags&256)===0,la(e,t,n,a,s),Nt=x,_&2048&&(n=null,t.alternate!==null&&(n=t.alternate.memoizedState.cache),a=t.memoizedState.cache,a!==n&&(ji(a),n!=null&&tl(n))),e.passiveEffectDuration+=hc(N);break;case 12:if(_&2048){_=no(),la(e,t,n,a,s),e=t.stateNode,e.passiveEffectDuration+=nl(_);try{se(t,Yw,t,t.alternate,ei,e.passiveEffectDuration)}catch(j){$e(t,t.return,j)}}else la(e,t,n,a,s);break;case 31:_=Nt,N=t.alternate!==null?t.alternate.memoizedState:null,x=t.memoizedState,N!==null&&x===null?(x=t.deletions,x!==null&&0<x.length&&x[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,x=t.memoizedState,N===null||N.dehydrated===null||x!==null&&x.dehydrated!==null?Nt=!1:(x=t.deletions,x!==null&&0<x.length&&x[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:x=t.stateNode,N=t.alternate,t.memoizedState!==null?x._visibility&uo?la(e,t,n,a,s):ml(e,t,n,a,s):x._visibility&uo?la(e,t,n,a,s):(x._visibility|=uo,Bs(e,t,n,a,(t.subtreeFlags&10256)!==0||t.actualDuration!==0&&(t.alternate===null||t.alternate.child!==t.child),s),(t.mode&_e)===Te||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&&Ep(t.alternate,t);break;default:la(e,t,n,a,s)}(t.mode&_e)!==Te&&((e=!Nt&&t.alternate===null&&t.return!==null&&t.return.alternate!==null)&&(n=t.actualStartTime,0<=n&&.05<s-n&&Ta(t,n,s,"Mount")),0<=ge&&0<=Se&&((pt||.05<ft)&&Aa(t,ge,Se,ft,ct),e&&.05<Se-ge&&Ta(t,ge,Se,"Mount"))),xn(r),xa(c),ct=d,pt=y,Jo=g}function Bs(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;Yb(e,t,n,a,s,c!==null?c.actualStartTime:r),t=c}}function Yb(e,t,n,a,s,r){var c=Rn(),d=Ra(),y=wa(),g=Oa(),_=Jo;s&&(t.mode&_e)!==Te&&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:Bs(e,t,n,a,s,r),Db(t,cn);break;case 23:break;case 22:var x=t.stateNode;t.memoizedState!==null?x._visibility&uo?Bs(e,t,n,a,s,r):ml(e,t,n,a,r):(x._visibility|=uo,Bs(e,t,n,a,s,r)),s&&N&2048&&Sp(t.alternate,t);break;case 24:Bs(e,t,n,a,s,r),s&&N&2048&&Ep(t.alternate,t);break;default:Bs(e,t,n,a,s,r)}(t.mode&_e)!==Te&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(t,ge,Se,ft,ct),xn(c),xa(d),ct=y,pt=g,Jo=_}function ml(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)!==Te&&0<r.actualStartTime&&(r.flags&1)!==0&&oc(r,r.actualStartTime,g,Nt,d);var N=r.flags;switch(r.tag){case 22:ml(c,r,d,y,g),N&2048&&Sp(r.alternate,r);break;case 24:ml(c,r,d,y,g),N&2048&&Ep(r.alternate,r);break;default:ml(c,r,d,y,g)}Jo=_,r=t}}function Ls(e,t,n){if(e.subtreeFlags&iu)for(e=e.child;e!==null;)Gb(e,t,n),e=e.sibling}function Gb(e,t,n){switch(e.tag){case 26:Ls(e,t,n),e.flags&iu&&e.memoizedState!==null&&UO(n,ha,e.memoizedState,e.memoizedProps);break;case 5:Ls(e,t,n);break;case 3:case 4:var a=ha;ha=Fc(e.stateNode.containerInfo),Ls(e,t,n),ha=a;break;case 22:e.memoizedState===null&&(a=e.alternate,a!==null&&a.memoizedState!==null?(a=iu,iu=16777216,Ls(e,t,n),iu=a):Ls(e,t,n));break;default:Ls(e,t,n)}}function Pb(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 yl(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,Qb(a,e),(a.mode&_e)!==Te&&0<=ge&&0<=Se&&.05<Se-ge&&Ta(a,ge,Se,"Unmount"),xn(s)}Pb(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)Xb(e),e=e.sibling}function Xb(e){var t=Rn(),n=Ra(),a=wa(),s=Oa();switch(e.tag){case 0:case 11:case 15:yl(e),e.flags&2048&&yp(e,e.return,cn|Jn);break;case 3:var r=no();yl(e),e.stateNode.passiveEffectDuration+=hc(r);break;case 12:r=no(),yl(e),e.stateNode.passiveEffectDuration+=nl(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)!==Te&&0<=ge&&0<=Se&&.05<Se-ge&&Ta(e,ge,Se,"Disconnect")):yl(e);break;default:yl(e)}(e.mode&_e)!==Te&&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,Qb(a,e),(a.mode&_e)!==Te&&0<=ge&&0<=Se&&.05<Se-ge&&Ta(a,ge,Se,"Unmount"),xn(s)}Pb(e)}for(e=e.child;e!==null;)$b(e),e=e.sibling}function $b(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)!==Te&&0<=ge&&0<=Se&&(pt||.05<ft)&&Aa(e,ge,Se,ft,ct),xn(t),xa(n),pt=s,ct=a}function Qb(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:tl(a.memoizedState.cache)}if((a.mode&_e)!==Te&&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,Ub(a),a===n){Ht=null;break e}if(r!==null){r.return=c,Ht=r;break e}Ht=c}}}function $w(){mM.forEach(function(e){return e()})}function Zb(){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 Fb(){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(Ar&&console.error("useInsertionEffect must not schedule updates."),fy&&(Qf=!0),(e===et&&(Ie===as||Ie===os)||e.cancelPendingCommit!==null)&&(ks(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&&J(ze)||"Unknown",T1.has(e)||(T1.add(e),t=J(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:E1||(console.error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state."),E1=!0)}}else qa&&wi(e,t,n),nO(t),e===et&&((Pe&Ut)===kt&&(li|=n),dt===ii&&Yo(e,Ue,Sn,!1)),Va(e)}function Jb(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(pT){case lu:case as:var r=Xl;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=Xl,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-Xl,3>a||console.timeStamp("Blocked",Xl,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))?Zw(e,t):Ap(e,t,!0);var c=n;do{if(r===Eo){Er&&!n&&Yo(e,t,0,!1),t=Ie,Xl=Dt(),pT=t;break}else{if(a=Bt(),s=e.current.alternate,c&&!Qw(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=cu;var y=a.current.memoizedState.isDehydrated;if(y&&(ks(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===ru){sa(t),oh(Lt,a,t,bt),Yi(t,a),ks(e,0),Yo(e,t,0,!0);break}e:{switch(n=e,r){case Eo:case ru:throw Error("Root did not complete. This is a bug in React.");case ii:if((t&4194048)!==t)break;case Hf:sa(t),Jv(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 l1:break;default:throw Error("Unknown root exit status.")}if(L.actQueue!==null)Dp(n,s,t,fn,fu,Yf,Sn,li,is,r,null,null,Lt,a);else{if((t&62914560)===t&&(c=Gf+f1-Bt(),10<c)){if(Yo(n,t,Sn,!si),Ri(n,0,!0)!==0)break e;pa=t,n.timeoutHandle=M1(Ib.bind(null,n,s,fn,fu,Yf,t,Sn,li,is,si,r,"Throttled",Lt,a),c);break e}Ib(n,s,fn,fu,Yf,t,Sn,li,is,si,r,null,Lt,a)}}}break}while(!0);Va(e)}function Ib(e,t,n,a,s,r,c,d,y,g,_,N,x,j){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:Ka},Gb(t,r,oe),K=(r&62914560)===r?Gf-Bt():(r&4194048)===r?c1-Bt():0,K=zO(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,x,j)),Yo(e,r,c,!g);return}Dp(e,t,r,n,a,s,c,d,y,_,oe,N,x,j)}function Qw(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&&Xr(e,n,t)}function Hs(){return(Pe&(Ut|Vn))===kt?(bl(0),!1):!0}function Tp(){if(ze!==null){if(Ie===bn)var e=ze.return;else e=ze,cc(),Uh(e),dr=null,eu=0,e=ze;for(;e!==null;)Tb(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&&(dT=t),(e&2080374784)!==0&&(hT=t)}function ks(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)Jv(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=Yl,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),Iv(Df,r,t,n)):xf&127,n=s;var d=a,y=Gl,g=0<ur,_=ti===ql,N=ti===Af;if(s=Lt,a=Yl,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 x=g?"secondary-light":"warning";a?a.run(console.timeStamp.bind(console,g?"Consecutive":"Event: "+y,d,n,Ye,ke,x)):console.timeStamp(g?"Consecutive":"Event: "+y,d,n,Ye,ke,x)}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,ur=Zi,Zi=-1.1,Qi=Dt()}if((t&4194048)!==0&&(bt=Pl,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),Iv(Rf,r,t,bt)):xf&4194048,N=a,d=Fi,y=0<ai,g=Lm===Af,r=Lt,a=Pl,c=cT,_=fT,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&&(x=y?"secondary-light":"warning",a?a.run(console.timeStamp.bind(console,y?"Consecutive":"Event: "+d,N,s,Ye,ke,x)):console.timeStamp(y?"Consecutive":"Event: "+d,N,s,Ye,ke,x)),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(dT,Lt)),(t&2080374784)!==0&&(xf&2080374784)!==0&&(sa(268435456),ih(hT,Lt)),n=e.timeoutHandle,n!==cs&&(e.timeoutHandle=cs,OM(n)),n=e.cancelPendingCommit,n!==null&&(e.cancelPendingCommit=null,n()),pa=0,Tp(),et=e,ze=n=Wa(e.current,null),Ue=t,Ie=bn,jn=null,si=!1,Er=Co(e,t),ay=!1,dt=Eo,is=Sn=oy=li=ri=0,fn=cu=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=oT(),1e3<e-aT&&(L.recentlyCreatedOwnerStacks=0,aT=e),fa.discardPendingWarnings(),n}function Kb(e,t){Ae=null,L.H=ou,L.getCurrentStack=null,Ha=!1,_n=null,t===fr||t===Mf?(t=b0(),Ie=lu):t===Ym?(t=b0(),Ie=u1):Ie=t===Km?ny:t!==null&&typeof t=="object"&&typeof t.then=="function"?uu:kf,jn=t;var n=ze;n===null?(dt=ru,Vc(e,Dn(t,e.current))):n.mode&_e&&Sh(n)}function Wb(){var e=Un.current;return e===null?!0:(Ue&4194048)===Ue?Fn===null:(Ue&62914560)===Ue||(Ue&536870912)!==0?e===Fn:!1}function eS(){var e=L.H;return L.H=ou,e===null?ou:e}function tS(){var e=L.A;return L.A=pM,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=eS(),r=tS();if(et!==e||Ue!==t){if(qa){var c=e.memoizedUpdaters;0<c.size&&(vl(e,Ue),c.clear()),Ds(e,t)}fu=null,ks(e,t)}t=!1,c=dt;e:do try{if(Ie!==bn&&ze!==null){var d=ze,y=jn;switch(Ie){case ny:Tp(),c=Hf;break e;case lu:case as:case os:case uu:Un.current===null&&(t=!0);var g=Ie;if(Ie=bn,jn=null,qs(e,d,y,g),n&&Er){c=Eo;break e}break;default:g=Ie,Ie=bn,jn=null,qs(e,d,y,g)}}nS(),c=dt;break}catch(_){Kb(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 nS(){for(;ze!==null;)aS(ze)}function Zw(e,t){var n=Pe;Pe|=Ut;var a=eS(),s=tS();if(et!==e||Ue!==t){if(qa){var r=e.memoizedUpdaters;0<r.size&&(vl(e,Ue),r.clear()),Ds(e,t)}fu=null,Pf=Bt()+d1,ks(e,t)}else Er=Co(e,t);e:do try{if(Ie!==bn&&ze!==null)t:switch(t=ze,r=jn,Ie){case kf:Ie=bn,jn=null,qs(e,t,r,kf);break;case as:case os:if(g0(r)){Ie=bn,jn=null,oS(t);break}t=function(){Ie!==as&&Ie!==os||et!==e||(Ie=qf),Va(e)},r.then(t,t);break e;case lu:Ie=qf;break e;case u1:Ie=ty;break e;case qf:g0(r)?(Ie=bn,jn=null,oS(t)):(Ie=bn,jn=null,qs(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?JS(c):d.stateNode.complete){Ie=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.")}Ie=bn,jn=null,qs(e,t,r,ty);break;case uu:Ie=bn,jn=null,qs(e,t,r,uu);break;case ny:Tp(),dt=Hf;break e;default:throw Error("Unexpected SuspendedReason. This is a bug in React.")}L.actQueue!==null?nS():Fw();break}catch(_){Kb(e,_)}while(!0);return cc(),L.H=a,L.A=s,Pe=n,ze!==null?Eo:(et=null,Ue=0,ic(),dt)}function Fw(){for(;ze!==null&&!ZO();)aS(ze)}function aS(e){var t=e.alternate;(e.mode&_e)!==Te?(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 oS(e){var t=se(e,Jw,e);e.memoizedProps=e.pendingProps,t===null?Xc(e):ze=t}function Jw(e){var t=e.alternate,n=(e.mode&_e)!==Te;switch(n&&bh(e),e.tag){case 15:case 0:t=mb(t,e,e.pendingProps,e.type,void 0,Ue);break;case 11:t=mb(t,e,e.pendingProps,e.type.render,e.ref,Ue);break;case 5:Uh(e);default:Tb(t,e),e=ze=a0(e,Qa),t=hp(t,e,Qa)}return n&&Sh(e),t}function qs(e,t,n,a){cc(),Uh(t),dr=null,eu=0;var s=t.return;try{if(zw(e,s,t,n,Ue)){dt=ru,Vc(e,Dn(n,e.current)),ze=null;return}}catch(r){if(s!==null)throw ze=s,r;dt=ru,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===lu||a===uu)&&(a=Un.current,a!==null&&a.tag===13&&(a.flags|=16384))),iS(t,e)):Xc(t)}function Xc(e){var t=e;do{if((t.flags&32768)!==0){iS(t,si);return}var n=t.alternate;if(e=t.return,bh(t),n=se(t,Bw,n,t,Qa),(t.mode&_e)!==Te&&d0(t),n!==null){ze=n;return}if(t=t.sibling,t!==null){ze=t;return}ze=t=e}while(t!==null);dt===Eo&&(dt=l1)}function iS(e,t){do{var n=Lw(e.alternate,e);if(n!==null){n.flags&=32767,ze=n;return}if((e.mode&_e)!==Te){d0(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,x,j){e.cancelPendingCommit=null;do gl();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(x,j,n,bt):a!==null?Ew(x,j,n,a,t!==null&&t.alternate!==null&&t.alternate.memoizedState.isDehydrated&&(t.flags&256)!==0,bt):Sw(x,j,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),Tr=t,fi=e,pa=n,ry=r,uy=s,v1=a,ly=j,b1=N,ma=Xf,S1=null,t.actualDuration!==0||(t.subtreeFlags&10256)!==0||(t.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,tO(Qs,function(){return gu=window.event,ma===Xf&&(ma=sy),cS(),null})):(e.callbackNode=null,e.callbackPriority=0),po=null,ei=Dt(),N!==null&&Tw(j,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{Pw(e,t,n)}finally{Pe=c,Qe.p=s,L.T=a}}Ct=p1,sS(),rS(),lS()}}function sS(){if(Ct===p1){Ct=ci;var e=fi,t=Tr,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{br=n,Sr=e,pc(),Bb(t,e),Sr=br=null,n=Sy;var c=Qv(e.containerInfo),d=n.focusedElem,y=n.selectionRange;if(c!==d&&d&&d.ownerDocument&&$v(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,x=N&&N.defaultView||window;if(x.getSelection){var j=x.getSelection(),K=d.textContent.length,oe=Math.min(y.start,K),at=y.end===void 0?oe:Math.min(y.end,K);!j.extend&&oe>at&&(c=at,at=oe,oe=c);var qe=Xv(d,oe),R=Xv(d,at);if(qe&&R&&(j.rangeCount!==1||j.anchorNode!==qe.node||j.anchorOffset!==qe.offset||j.focusNode!==R.node||j.focusOffset!==R.offset)){var w=N.createRange();w.setStart(qe.node,qe.offset),j.removeAllRanges(),oe>at?(j.addRange(w),j.extend(R.node,R.offset)):(w.setEnd(R.node,R.offset),j.addRange(w))}}}}for(N=[],j=d;j=j.parentNode;)j.nodeType===1&&N.push({element:j,left:j.scrollLeft,top:j.scrollTop});for(typeof d.focus=="function"&&d.focus(),d=0;d<N.length;d++){var C=N[d];C.element.scrollLeft=C.left,C.element.scrollTop=C.top}}rd=!!by,Sy=by=null}finally{Pe=r,Qe.p=s,L.T=a}}e.current=t,Ct=m1}}function rS(){if(Ct===m1){Ct=ci;var e=S1;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=Tr,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{br=n,Sr=e,pc(),Nb(e,t.alternate,t),Sr=br=null}finally{Pe=r,Qe.p=s,L.T=a}}e=ly,t=b1,ho=Dt(),e=t===null?e:ei,t=ho,n=ma===iy,a=bt,po!==null?Kv(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=y1}}function lS(){if(Ct===g1||Ct===y1){if(Ct===g1){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=h1)}Ct=ci,FO(),e=fi;var a=Tr;t=pa,n=v1;var s=a.actualDuration!==0||(a.subtreeFlags&10256)!==0||(a.flags&10256)!==0;s?Ct=$f:(Ct=ci,Tr=fi=null,uS(e,e.pendingLanes),ss=0,hu=null);var r=e.pendingLanes;if(r===0&&(ui=null),s||pS(e),r=Rs(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=Qs;break;case cf:d=fm;break;default:d=Qs}Jt.onCommitFiberRoot(Zs,a,d,c)}catch(N){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",N))}if(qa&&e.memoizedUpdaters.clear(),$w(),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],_=Iw(g.stack);se(g.source,y,g.value,_)}}finally{L.T=c,Qe.p=d}}(pa&3)!==0&&gl(),Va(e),r=e.pendingLanes,(t&261930)!==0&&(r&42)!==0?(Of=!0,e===cy?du++:(du=0,cy=e)):du=0,s||Yi(t,ho),bl(0)}}function Iw(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 uS(e,t){(e.pooledCacheLanes&=t)===0&&(t=e.pooledCache,t!=null&&(e.pooledCache=null,tl(t)))}function gl(){return sS(),rS(),lS(),cS()}function cS(){if(Ct!==$f)return!1;var e=fi,t=ry;ry=0;var n=Rs(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,Tr=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===h1)ih(ho,d,rM);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(),Xb(N);var x=a.current;N=ly,pc(),qb(a,x,c,r,N),pS(a),Pe=y;var j=Bt();if(x=d,N=bt,po!==null?Kv(x,j,po,!0,N):!ot||j<=x||(N?N.run(console.timeStamp.bind(console,"Remaining Effects",x,j,Ye,ke,"secondary-dark")):console.timeStamp("Remaining Effects",x,j,Ye,ke,"secondary-dark")),Yi(c,j),bl(0,!1),Qf?a===hu?ss++:(ss=0,hu=a):ss=0,Qf=fy=!1,Jt&&typeof Jt.onPostCommitFiberRoot=="function")try{Jt.onPostCommitFiberRoot(Zs,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,uS(e,t)}}function fS(e,t,n){t=Dn(n,t),h0(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(Ar=!1,e.tag===3)fS(e,e,n);else{for(;t!==null;){if(t.tag===3){fS(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),h0(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 yM;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=Kw.bind(null,e,t,n),qa&&vl(e,n),t.then(a,a))}function Kw(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(),Yl=Tf("Promise Resolved"),ti=Af):(n&4194048)!==0&&0>Zn&&(mo=Zn=Dt(),Pl=Tf("Promise Resolved"),Lm=Af),Zb()&&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<f1?(Pe&Ut)===kt&&ks(e,0):oy|=n,is===Ue&&(is=0)),Va(e)}function dS(e,t){t===0&&(t=Gr()),e=Ft(e,t),e!==null&&(Mo(e,t),Va(e))}function Ww(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),dS(e,n)}function eO(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),dS(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,hS,a,s):xp(a,s,r):s.memoizedState===null&&(r&&s.flags&8192?se(s,hS,a,s):s.subtreeFlags&67108864&&se(s,xp,a,s,r)),t=t.sibling}}function hS(e,t){ue(!0);try{Hb(t),$b(t),kb(e,t.alternate,t,!1),Yb(e,t,0,null,!1,0)}finally{ue(!1)}}function pS(e){var t=!0;e.current.mode&(It|ca)||(t=!1),xp(e,e.current,t)}function mS(e){if((Pe&Ut)===kt){var t=e.tag;if(t===3||t===1||t===0||t===11||t===14||t===15){if(t=J(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 vl(e,t){qa&&e.memoizedUpdaters.forEach(function(n){wi(e,n,t)})}function tO(e,t){var n=L.actQueue;return n!==null?(n.push(t),bM):lm(e,t)}function nO(e){Zb()&&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`,J(e))})}function Va(e){e!==Dr&&e.next===null&&(Dr===null?Ff=Dr=e:Dr=Dr.next=e),Jf=!0,L.actQueue!==null?hy||(hy=!0,bS()):dy||(dy=!0,bS())}function bl(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,vS(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,vS(a,r));a=a.next}while(n);py=!1}}function aO(){gu=window.event,wp()}function wp(){Jf=hy=dy=!1;var e=0;di!==0&&cO()&&(e=di);for(var t=Bt(),n=null,a=Ff;a!==null;){var s=a.next,r=yS(a,t);r===0?(a.next=null,n===null?Ff=s:n.next=s,s===null&&(Dr=n)):(n=a,(e!==0||(r&3)!==0)&&(Jf=!0)),a=s}Ct!==ci&&Ct!==$f||bl(e),di!==0&&(di=0)}function yS(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&&(Ie===as||Ie===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(Rs(n)){case qn:case Ya:n=cm;break;case ro:n=Qs;break;case cf:n=fm;break;default:n=Qs}return a=gS.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 gS(e,t){if(Of=wf=!1,gu=window.event,Ct!==ci&&Ct!==$f)return e.callbackNode=null,e.callbackPriority=0,null;var n=e.callbackNode;if(ma===Xf&&(ma=sy),gl()&&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:(Jb(e,a,t),yS(e,Bt()),e.callbackNode!=null&&e.callbackNode===n?gS.bind(null,e):null)}function vS(e,t){if(gl())return null;wf=Of,Of=!1,Jb(e,t,!0)}function Op(e){e!==my&&e!==null&&QO(e)}function bS(){L.actQueue!==null&&L.actQueue.push(function(){return wp(),null}),CM(function(){(Pe&(Ut|Vn))!==kt?lm(um,aO):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 SS(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:(Fe(e,"action"),Ir(""+e))}function ES(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 oO(e,t,n,a,s){if(t==="submit"&&n&&n.stateNode===s){var r=SS((s[on]||null).action),c=a.submitter;c&&(t=(t=c[on]||null)?SS(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?ES(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?ES(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 TS(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)||(AS(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),AS(n,e,a,t)}function _p(e){if(!e[If]){e[If]=!0,bE.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[If]||(t[If]=!0,Mp("selectionchange",!1,t))}}function AS(e,t,n,a){switch(nE(t)){case qn:var s=LO;break;case Ya:s=HO;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=$(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}zv(function(){var g=r,_=Wd(n),N=[];e:{var x=nT.get(e);if(x!==void 0){var j=mf,K=e;switch(e){case"keypress":if(ec(n)===0)break e;case"keydown":case"keyup":j=zC;break;case"focusin":K="focus",j=Em;break;case"focusout":K="blur",j=Em;break;case"beforeblur":case"afterblur":j=Em;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":j=YE;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":j=TC;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":j=BC;break;case KE:case WE:case eT:j=RC;break;case tT:j=HC;break;case"scroll":case"scrollend":j=SC;break;case"wheel":j=qC;break;case"copy":case"cut":case"paste":j=wC;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":j=PE;break;case"toggle":case"beforetoggle":j=GC}var oe=(t&4)!==0,at=!oe&&(e==="scroll"||e==="scrollend"),qe=oe?x!==null?x+"Capture":null:x;oe=[];for(var R=g,w;R!==null;){var C=R;if(w=C.stateNode,C=C.tag,C!==5&&C!==26&&C!==27||w===null||qe===null||(C=Kr(R,qe),C!=null&&oe.push(Sl(R,C,w))),at)break;R=R.return}0<oe.length&&(x=new j(x,K,null,n,_),N.push({event:x,listeners:oe}))}}if((t&7)===0){e:{if(x=e==="mouseover"||e==="pointerover",j=e==="mouseout"||e==="pointerout",x&&n!==_l&&(K=n.relatedTarget||n.fromElement)&&($(K)||K[Zo]))break e;if((j||x)&&(x=_.window===_?_:(x=_.ownerDocument)?x.defaultView||x.parentWindow:window,j?(K=n.relatedTarget||n.toElement,j=g,K=K?$(K):null,K!==null&&(at=k(K),oe=K.tag,K!==at||oe!==5&&oe!==27&&oe!==6)&&(K=null)):(j=null,K=g),j!==K)){if(oe=YE,C="onMouseLeave",qe="onMouseEnter",R="mouse",(e==="pointerout"||e==="pointerover")&&(oe=PE,C="onPointerLeave",qe="onPointerEnter",R="pointer"),at=j==null?x:de(j),w=K==null?x:de(K),x=new oe(C,R+"leave",j,n,_),x.target=at,x.relatedTarget=w,C=null,$(_)===g&&(oe=new oe(qe,R+"enter",K,n,_),oe.target=w,oe.relatedTarget=at,C=oe),at=C,j&&K)t:{for(oe=iO,qe=j,R=K,w=0,C=qe;C;C=oe(C))w++;C=0;for(var q=R;q;q=oe(q))C++;for(;0<w-C;)qe=oe(qe),w--;for(;0<C-w;)R=oe(R),C--;for(;w--;){if(qe===R||R!==null&&qe===R.alternate){oe=qe;break t}qe=oe(qe),R=oe(R)}oe=null}else oe=null;j!==null&&DS(N,x,j,oe,!1),K!==null&&at!==null&&DS(N,at,K,oe,!0)}}e:{if(x=g?de(g):window,j=x.nodeName&&x.nodeName.toLowerCase(),j==="select"||j==="input"&&x.type==="file")var ne=qv;else if(Hv(x))if(JE)ne=gw;else{ne=mw;var De=pw}else j=x.nodeName,!j||j.toLowerCase()!=="input"||x.type!=="checkbox"&&x.type!=="radio"?g&&Jr(g.elementType)&&(ne=qv):ne=yw;if(ne&&(ne=ne(e,g))){kv(N,ne,n,_);break e}De&&De(e,x,g),e==="focusout"&&g&&x.type==="number"&&g.memoizedProps.value!=null&&Qd(x,"number",x.value)}switch(De=g?de(g):window,e){case"focusin":(Hv(De)||De.contentEditable==="true")&&(tr=De,Am=g,Ll=null);break;case"focusout":Ll=Am=tr=null;break;case"mousedown":Dm=!0;break;case"contextmenu":case"mouseup":case"dragend":Dm=!1,Zv(N,n,_);break;case"selectionchange":if(QC)break;case"keydown":case"keyup":Zv(N,n,_)}var ye;if(Tm)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 er?Bv(e,n)&&(he="onCompositionEnd"):e==="keydown"&&n.keyCode===XE&&(he="onCompositionStart");he&&($E&&n.locale!=="ko"&&(er||he!=="onCompositionStart"?he==="onCompositionEnd"&&er&&(ye=Vv()):(Fo=_,vm="value"in Fo?Fo.value:Fo.textContent,er=!0)),De=Qc(g,he),0<De.length&&(he=new GE(he,e,null,n,_),N.push({event:he,listeners:De}),ye?he.data=ye:(ye=Lv(n),ye!==null&&(he.data=ye)))),(ye=XC?cw(e,n):fw(e,n))&&(he=Qc(g,"onBeforeInput"),0<he.length&&(De=new CC("onBeforeInput","beforeinput",null,n,_),N.push({event:De,listeners:he}),De.data=ye)),oO(N,e,g,n,_)}TS(N,t)})}function Sl(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=Kr(e,n),s!=null&&a.unshift(Sl(e,s,r)),s=Kr(e,t),s!=null&&a.push(Sl(e,s,r))),e.tag===3)return a;e=e.return}return[]}function iO(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function DS(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=Kr(n,r),g!=null&&c.unshift(Sl(n,g,y))):s||(g=Kr(n,r),g!=null&&c.push(Sl(n,g,y)))),n=n.return}c.length!==0&&e.push({event:t,listeners:c})}function Up(e,t){sw(e,t),e!=="input"&&e!=="textarea"&&e!=="select"||t==null||t.value!==null||kE||(kE=!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};Jr(e)||typeof t.is=="string"||lw(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 sO(e,t,n){t.forEach(function(a){n[wS(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 RS(e,t){return e=e.namespaceURI===df||e.namespaceURI===Js?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(SM,`
181
+ `).replace(EM,"")}function xS(e,t){return t=Go(t),Go(e)===t}function Ke(e,t,n,a,s,r){switch(n){case"children":typeof a=="string"?(Wu(a,t,!1),t==="body"||t==="textarea"&&a===""||Fr(e,a)):(typeof a=="number"||typeof a=="bigint")&&(Wu(""+a,t,!1),t!=="body"&&Fr(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":_v(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"||Kf?t!=="button"||s.type==null||s.type==="submit"||Kf?typeof a=="function"&&(s.name==null||R1||(R1=!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."))):(Kf=!0,console.error('A button can only specify a formAction along with type="submit" or no type.')):(Kf=!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"&&Ke(e,t,"name",s.name,s,null),Ke(e,t,"formEncType",s.formEncType,s,null),Ke(e,t,"formMethod",s.formMethod,s,null),Ke(e,t,"formTarget",s.formTarget,s,null)):(Ke(e,t,"encType",s.encType,s,null),Ke(e,t,"method",s.method,s,null),Ke(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=Ka);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),xs(e,"popover",a);break;case"xlinkActuate":Ia(e,rs,"xlink:actuate",a);break;case"xlinkArcrole":Ia(e,rs,"xlink:arcrole",a);break;case"xlinkRole":Ia(e,rs,"xlink:role",a);break;case"xlinkShow":Ia(e,rs,"xlink:show",a);break;case"xlinkTitle":Ia(e,rs,"xlink:title",a);break;case"xlinkType":Ia(e,rs,"xlink:type",a);break;case"xmlBase":Ia(e,gy,"xml:base",a);break;case"xmlLang":Ia(e,gy,"xml:lang",a);break;case"xmlSpace":Ia(e,gy,"xml:space",a);break;case"is":r!=null&&console.error('Cannot update the "is" prop after it has been initialized.'),xs(e,"is",a);break;case"innerText":case"textContent":break;case"popoverTarget":x1||a==null||typeof a!="object"||(x1=!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=Nv(n),xs(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":_v(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"?Fr(e,a):(typeof a=="number"||typeof a=="bigint")&&Fr(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=Ka);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,""):xs(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:Ke(e,t,r,c,n,null)}}s&&Ke(e,t,"srcSet",n.srcSet,n,null),a&&Ke(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:Ke(e,t,a,_,n,null)}}mv(e,n),yv(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:Ke(e,t,s,d,n,null)}bv(e,n),t=r,n=c,e.multiple=!!a,t!=null?ws(e,!!a,t,!1):n!=null&&ws(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:Ke(e,t,c,d,n,null)}Sv(e,n),Tv(e,a,s,r);return;case"option":gv(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":Ke(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<pu.length;a++)He(pu[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:Ke(e,t,g,a,n,null)}return;default:if(Jr(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&&Ke(e,t,d,a,n,null))}function rO(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(j in n){var N=n[j];if(n.hasOwnProperty(j)&&N!=null)switch(j){case"checked":break;case"value":break;case"defaultValue":y=N;default:a.hasOwnProperty(j)||Ke(e,t,j,null,a,N)}}for(var x in a){var j=a[x];if(N=n[x],a.hasOwnProperty(x)&&(j!=null||N!=null))switch(x){case"type":r=j;break;case"name":s=j;break;case"checked":g=j;break;case"defaultChecked":_=j;break;case"value":c=j;break;case"defaultValue":d=j;break;case"children":case"dangerouslySetInnerHTML":if(j!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:j!==N&&Ke(e,t,x,j,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||D1||(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"),D1=!0),!t||a||A1||(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"),A1=!0),$d(e,c,d,y,g,_,r,s);return;case"select":j=c=d=x=null;for(r in n)if(y=n[r],n.hasOwnProperty(r)&&y!=null)switch(r){case"value":break;case"multiple":j=y;default:a.hasOwnProperty(r)||Ke(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":x=r;break;case"defaultValue":d=r;break;case"multiple":c=r;default:r!==y&&Ke(e,t,s,r,a,y)}a=d,t=c,n=j,x!=null?ws(e,!!t,x,!1):!!n!=!!t&&(a!=null?ws(e,!!t,a,!0):ws(e,!!t,t?[]:"",!1));return;case"textarea":j=x=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:Ke(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":x=s;break;case"defaultValue":j=s;break;case"children":break;case"dangerouslySetInnerHTML":if(s!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:s!==r&&Ke(e,t,c,s,a,r)}Ev(e,x,j);return;case"option":for(var K in n)x=n[K],n.hasOwnProperty(K)&&x!=null&&!a.hasOwnProperty(K)&&(K==="selected"?e.selected=!1:Ke(e,t,K,null,a,x));for(y in a)x=a[y],j=n[y],a.hasOwnProperty(y)&&x!==j&&(x!=null||j!=null)&&(y==="selected"?e.selected=x&&typeof x!="function"&&typeof x!="symbol":Ke(e,t,y,x,a,j));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)x=n[oe],n.hasOwnProperty(oe)&&x!=null&&!a.hasOwnProperty(oe)&&Ke(e,t,oe,null,a,x);for(g in a)if(x=a[g],j=n[g],a.hasOwnProperty(g)&&x!==j&&(x!=null||j!=null))switch(g){case"children":case"dangerouslySetInnerHTML":if(x!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:Ke(e,t,g,x,a,j)}return;default:if(Jr(t)){for(var at in n)x=n[at],n.hasOwnProperty(at)&&x!==void 0&&!a.hasOwnProperty(at)&&zp(e,t,at,void 0,a,x);for(_ in a)x=a[_],j=n[_],!a.hasOwnProperty(_)||x===j||x===void 0&&j===void 0||zp(e,t,_,x,a,j);return}}for(var qe in n)x=n[qe],n.hasOwnProperty(qe)&&x!=null&&!a.hasOwnProperty(qe)&&Ke(e,t,qe,null,a,x);for(N in a)x=a[N],j=n[N],!a.hasOwnProperty(N)||x===j||x==null&&j==null||Ke(e,t,N,x,a,j)}function wS(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 OS(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||LE.has(r)?(Zt(c,r),a+=s+r.replace(UE,"-$1").toLowerCase().replace(zE,"-ms-")+":"+(""+c).trim()):a+=s+r.replace(UE,"-$1").toLowerCase().replace(zE,"-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 CS(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 MS(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 _S(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(Jr(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=RS(e,g),jt(y,c,g,s));continue;case"style":r.delete(y),OS(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===To&&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=RS(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),OS(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===TM){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":CS(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":MS(e,g,"rowspan",y,r,s);continue;case"start":MS(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)),CS(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=Nv(g),c=!1,a.context===To&&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&&sO(e,r,s),Object.keys(s).length===0?null:s}function lO(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 NS(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function uO(){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&&NS(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;_&&NS(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 US(e){switch(e){case Js:return xr;case df:return ad;default:return To}}function zS(e,t){if(e===To)switch(t){case"svg":return xr;case"math":return ad;default:return To}return e===xr&&t==="foreignObject"?To: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 cO(){var e=window.event;return e&&e.type==="popstate"?e===Ey?!1:(Ey=e,!0):(Ey=null,!1)}function El(){var e=window.event;return e&&e!==gu?e.type:null}function Tl(){var e=window.event;return e&&e!==gu?e.timeStamp:-1.1}function fO(e){setTimeout(function(){throw e})}function dO(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 hO(){}function pO(e,t,n,a){rO(e,t,n,a),e[on]=a}function VS(e){Fr(e,"")}function mO(e,t,n){e.nodeValue=n}function jS(e){if(!e.__reactWarnedAboutChildrenConflict){var t=e[on]||null;if(t!==null){var n=I(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 yO(e,t){e.removeChild(t)}function gO(e,t){(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e).removeChild(t)}function BS(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===yu||n===nd){if(a===0){e.removeChild(s),Ps(t);return}a--}else if(n===mu||n===hi||n===us||n===Rr||n===ls)a++;else if(n===DM)Al(e.ownerDocument.documentElement);else if(n===xM){n=e.ownerDocument.head,Al(n);for(var r=n.firstChild;r;){var c=r.nextSibling,d=r.nodeName;r[Ml]||d==="SCRIPT"||d==="STYLE"||d==="LINK"&&r.rel.toLowerCase()==="stylesheet"||n.removeChild(r),r=c}}else n===RM&&Al(e.ownerDocument.body);n=s}while(n);Ps(t)}function LS(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===yu){if(e===0)break;e--}else n!==mu&&n!==hi&&n!==us&&n!==Rr||e++;n=a}while(n)}function vO(e){LS(e,!0)}function bO(e){e=e.style,typeof e.setProperty=="function"?e.setProperty("display","none","important"):e.display="none"}function SO(e){e.nodeValue=""}function EO(e){LS(e,!1)}function TO(e,t){t=t[wM],t=t!=null&&t.hasOwnProperty("display")?t.display:null,e.style.display=t==null||typeof t=="boolean"?"":(""+t).trim()}function AO(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),z(n);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(n.rel.toLowerCase()==="stylesheet")continue}e.removeChild(n)}}function DO(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[Ml])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 RO(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 HS(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===Rr||e.data===hi&&e.ownerDocument.readyState!==O1}function xO(e,t){var n=e.ownerDocument;if(e.data===us)e._reactRetry=t;else if(e.data!==hi||n.readyState!==O1)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===mu||t===Rr||t===hi||t===us||t===ls||t===vy||t===w1)break;if(t===yu||t===nd)return null}}return e}function kS(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[wS(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 qS(e,t,n){return n===null||n[AM]!==!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===yu||n===nd){if(t===0)return Cn(e.nextSibling);t--}else n!==mu&&n!==Rr&&n!==hi&&n!==us&&n!==ls||t++}e=e.nextSibling}return null}function YS(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===mu||n===Rr||n===hi||n===us||n===ls){if(t===0)return e;t--}else n!==yu&&n!==nd||t++}e=e.previousSibling}return null}function wO(e){Ps(e)}function OO(e){Ps(e)}function CO(e){Ps(e)}function GS(e,t,n,a,s){switch(s&&Kd(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 MO(e,t,n,a){if(!n[Zo]&&I(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 Al(e){for(var t=e.attributes;t.length;)e.removeAttributeNode(t[0]);z(e)}function Fc(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}function PS(e,t,n){var a=wr;if(a&&typeof t=="string"&&t){var s=Hn(t);s='link[rel="'+e+'"][href="'+s+'"]',typeof n=="string"&&(s+='[crossorigin="'+n+'"]'),z1.has(s)||(z1.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 XS(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=Ys(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=Ys(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(Dl(e)))&&!r._p&&(c.instance=r,c.state.loading=vu|Kn),!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||_O(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=Gs(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 Ys(e){return'href="'+Hn(e)+'"'}function Dl(e){return'link[rel="stylesheet"]['+e+"]"}function $S(e){return je({},e,{"data-precedence":e.precedence,precedence:null})}function _O(e,t,n,a){e.querySelector('link[rel="preload"][as="style"]['+t+"]")?a.loading=vu:(t=e.createElement("link"),a.preload=t,t.addEventListener("load",function(){return a.loading|=vu}),t.addEventListener("error",function(){return a.loading|=N1}),Gt(t,"link",n),pe(t),e.head.appendChild(t))}function Gs(e){return'[src="'+Hn(e)+'"]'}function Rl(e){return"script[async]"+e}function QS(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),Ic(a,n.precedence,e),t.instance=a;case"stylesheet":s=Ys(n.href);var r=e.querySelector(Dl(s));if(r)return t.state.loading|=Kn,t.instance=r,pe(r),r;a=$S(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|=Kn,Ic(r,n.precedence,e),t.instance=r;case"script":return r=Gs(n.src),(s=e.querySelector(Rl(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&Kn)===fs&&(a=t.instance,t.state.loading|=Kn,Ic(a,n.precedence,e));return t.instance}function Ic(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 ZS(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[Ml]||r[Pt]||e==="link"&&r.getAttribute("rel")==="stylesheet")&&r.namespaceURI!==Js){var c=r.getAttribute(t)||"";c=e+c;var d=a.get(c);d?d.push(r):a.set(c,[r])}}return a}function FS(e,t,n){e=e.ownerDocument||e,e.head.insertBefore(n,t==="title"?e.querySelector("head > title"):null)}function NO(e,t,n){var a=!n.ancestorInfo.containerTagInScope;if(n.context===xr||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=lO(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 JS(e){return!(e.type==="stylesheet"&&(e.state.loading&U1)===fs)}function UO(e,t,n,a){if(n.type==="stylesheet"&&(typeof a.media!="string"||matchMedia(a.media).matches!==!1)&&(n.state.loading&Kn)===fs){if(n.instance===null){var s=Ys(a.href),r=t.querySelector(Dl(s));if(r){t=r._p,t!==null&&typeof t=="object"&&typeof t.then=="function"&&(e.count++,e=Kc.bind(e),t.then(e,e)),n.state.loading|=Kn,n.instance=r,pe(r);return}r=t.ownerDocument||t,a=$S(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&U1)===fs&&(e.count++,n=Kc.bind(e),t.addEventListener("load",n),t.addEventListener("error",n))}}function zO(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()}},MM+t);0<e.imgBytes&&Ay===0&&(Ay=125*uO()*NM);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:_M)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(a),clearTimeout(s)}}:null}function Kc(){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(VO,e),id=null,Kc.call(e))}function VO(e,t){if(!(t.state.loading&Kn)){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=Kc.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|=Kn}}function jO(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=Pr(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Pr(0),this.hiddenUpdates=Pr(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 IS(e,t,n,a,s,r,c,d,y,g,_,N){return e=new jO(e,t,n,c,y,g,_,N,d),t=nM,r===!0&&(t|=It|ca),t|=_e,r=E(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 KS(e){return e?(e=Ko,e):Ko}function Xp(e,t,n,a,s,r){if(Jt&&typeof Jt.onScheduleFiberRoot=="function")try{Jt.onScheduleFiberRoot(Zs,a,n)}catch(c){ka||(ka=!0,console.error("React instrumentation encountered an error: %o",c))}s=KS(s),a.context===null?a.context=s:a.pendingContext=s,Ha&&_n!==null&&!L1&&(L1=!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.`,J(_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),il(n,e,t))}function WS(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){WS(e,t),(e=e.alternate)&&WS(e,t)}function eE(e){if(e.tag===13||e.tag===31){var t=Ft(e,67108864);t!==null&&ht(t,e,67108864),$p(e,67108864)}}function tE(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 BO(){return _n}function LO(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 HO(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),aE(e,a);else if(kO(s,e,t,n,a))a.stopPropagation();else if(aE(e,a),t&4&&-1<zM.indexOf(e)){for(;s!==null;){var r=I(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()+d1,bl(0))}}break;case 31:case 13:d=Ft(r,2),d!==null&&ht(d,r,2),Hs(),$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=$(e),e!==null){var t=k(e);if(t===null)e=null;else{var n=t.tag;if(n===13){if(e=X(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 nE(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(JO()){case um:return qn;case cm:return Ya;case Qs:case IO:return ro;case fm:return cf;default:return ro}default:return ro}}function aE(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":Su.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Eu.delete(t.pointerId)}}function xl(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=I(t),t!==null&&eE(t)),e):(e.eventSystemFlags|=a,t=e.targetContainers,s!==null&&t.indexOf(s)===-1&&t.push(s),e)}function kO(e,t,n,a,s){switch(t){case"focusin":return pi=xl(pi,e,t,n,a,s),!0;case"dragenter":return mi=xl(mi,e,t,n,a,s),!0;case"mouseover":return yi=xl(yi,e,t,n,a,s),!0;case"pointerover":var r=s.pointerId;return Su.set(r,xl(Su.get(r)||null,e,t,n,a,s)),!0;case"gotpointercapture":return r=s.pointerId,Eu.set(r,xl(Eu.get(r)||null,e,t,n,a,s)),!0}return!1}function oE(e){var t=$(e.target);if(t!==null){var n=k(t);if(n!==null){if(t=n.tag,t===13){if(t=X(n),t!==null){e.blockedOn=t,S(e.priority,function(){tE(n)});return}}else if(t===31){if(t=Y(n),t!==null){e.blockedOn=t,S(e.priority,function(){tE(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;_l!==null&&console.error("Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue."),_l=s,n.target.dispatchEvent(a),_l===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."),_l=null}else return t=I(n),t!==null&&eE(t),e.blockedOn=n,!1;t.shift()}return!0}function iE(e,t,n){ef(e)&&n.delete(t)}function qO(){Ry=!1,pi!==null&&ef(pi)&&(pi=null),mi!==null&&ef(mi)&&(mi=null),yi!==null&&ef(yi)&&(yi=null),Su.forEach(iE),Eu.forEach(iE)}function tf(e,t){e.blockedOn===t&&(e.blockedOn=null,Ry||(Ry=!0,Tt.unstable_scheduleCallback(Tt.unstable_NormalPriority,qO)))}function sE(e){ud!==e&&(ud=e,Tt.unstable_scheduleCallback(Tt.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=I(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 Ps(e){function t(y){return tf(y,e)}pi!==null&&tf(pi,e),mi!==null&&tf(mi,e),yi!==null&&tf(yi,e),Su.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);)oE(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||sE(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),sE(n)}}}function rE(){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 lE(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 Tt=qM(),Ip=Bu(),YO=GM(),je=Object.assign,GO=Symbol.for("react.element"),Ba=Symbol.for("react.transitional.element"),Xs=Symbol.for("react.portal"),$s=Symbol.for("react.fragment"),af=Symbol.for("react.strict_mode"),Kp=Symbol.for("react.profiler"),Wp=Symbol.for("react.consumer"),La=Symbol.for("react.context"),wl=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"),PO=Symbol.for("react.memo_cache_sentinel"),uE=Symbol.iterator,XO=Symbol.for("react.client.reference"),_t=Array.isArray,L=Ip.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Qe=YO.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,$O=Object.freeze({pending:!1,data:null,method:null,action:null}),am=[],om=[],so=-1,Xo=Xe(null),Ol=Xe(null),$o=Xe(null),sf=Xe(null),Cl=0,cE,fE,dE,hE,pE,mE,yE;Be.__reactDisabledLog=!0;var im,gE,sm=!1,rm=new(typeof WeakMap=="function"?WeakMap:Map),_n=null,Ha=!1,ua=Object.prototype.hasOwnProperty,lm=Tt.unstable_scheduleCallback,QO=Tt.unstable_cancelCallback,ZO=Tt.unstable_shouldYield,FO=Tt.unstable_requestPaint,Bt=Tt.unstable_now,JO=Tt.unstable_getCurrentPriorityLevel,um=Tt.unstable_ImmediatePriority,cm=Tt.unstable_UserBlockingPriority,Qs=Tt.unstable_NormalPriority,IO=Tt.unstable_LowPriority,fm=Tt.unstable_IdlePriority,KO=Tt.log,WO=Tt.unstable_setDisableYieldValue,Zs=null,Jt=null,ka=!1,qa=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u",an=Math.clz32?Math.clz32:As,eC=Math.log,tC=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,nC="__reactListeners$"+Qo,aC="__reactHandles$"+Qo,vE="__reactResources$"+Qo,Ml="__reactMarker$"+Qo,bE=new Set,Gi={},hm={},oC={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0},iC=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]*$"),SE={},EE={},sC=/[\n"\\]/g,TE=!1,AE=!1,DE=!1,RE=!1,xE=!1,wE=!1,OE=["value","defaultValue"],CE=!1,ME=/["'&<>\n\t]|^\s|\s$/,rC="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(" "),_E="applet caption html table td th marquee object template foreignObject desc title".split(" "),lC=_E.concat(["button"]),uC="dd dt li option optgroup p rp rt".split(" "),NE={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"]},UE=/([A-Z])/g,zE=/^ms-/,cC=/^(?:webkit|moz|o)[A-Z]/,fC=/^-ms-/,dC=/-(.)/g,VE=/;\s*$/,Fs={},mm={},jE=!1,BE=!1,LE=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",Js="http://www.w3.org/2000/svg",hC=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"},HE={"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={},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]*$"),kE=!1,sn={},qE=/^on./,yC=/^on[^A-Z]/,gC=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]*$"),vC=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]*$"),bC=/^[\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,_l=null,Ks=null,Ws=null,ym=!1,Ga=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),gm=!1;if(Ga)try{var Nl={};Object.defineProperty(Nl,"passive",{get:function(){gm=!0}}),window.addEventListener("test",Nl,Nl),window.removeEventListener("test",Nl,Nl)}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),Ul=je({},Pi,{view:0,detail:0}),SC=pn(Ul),bm,Sm,zl,yf=je({},Ul,{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!==zl&&(zl&&e.type==="mousemove"?(bm=e.screenX-zl.screenX,Sm=e.screenY-zl.screenY):Sm=bm=0,zl=e),bm)},movementY:function(e){return"movementY"in e?e.movementY:Sm}}),YE=pn(yf),EC=je({},yf,{dataTransfer:0}),TC=pn(EC),AC=je({},Ul,{relatedTarget:0}),Em=pn(AC),DC=je({},Pi,{animationName:0,elapsedTime:0,pseudoElement:0}),RC=pn(DC),xC=je({},Pi,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),wC=pn(xC),OC=je({},Pi,{data:0}),GE=pn(OC),CC=GE,MC={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},_C={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"},NC={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"},UC=je({},Ul,{key:function(e){if(e.key){var t=MC[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"?_C[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}}),zC=pn(UC),VC=je({},yf,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),PE=pn(VC),jC=je({},Ul,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:eh}),BC=pn(jC),LC=je({},Pi,{propertyName:0,elapsedTime:0,pseudoElement:0}),HC=pn(LC),kC=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}),qC=pn(kC),YC=je({},Pi,{newState:0,oldState:0}),GC=pn(YC),PC=[9,13,27,32],XE=229,Tm=Ga&&"CompositionEvent"in window,Vl=null;Ga&&"documentMode"in document&&(Vl=document.documentMode);var XC=Ga&&"TextEvent"in window&&!Vl,$E=Ga&&(!Tm||Vl&&8<Vl&&11>=Vl),QE=32,ZE=String.fromCharCode(QE),FE=!1,er=!1,$C={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},jl=null,Bl=null,JE=!1;Ga&&(JE=dw("input")&&(!document.documentMode||9<document.documentMode));var rn=typeof Object.is=="function"?Object.is:vw,QC=Ga&&"documentMode"in document&&11>=document.documentMode,tr=null,Am=null,Ll=null,Dm=!1,nr={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={},IE={};Ga&&(IE=document.createElement("div").style,"AnimationEvent"in window||(delete nr.animationend.animation,delete nr.animationiteration.animation,delete nr.animationstart.animation),"TransitionEvent"in window||delete nr.transitionend.transition);var KE=Mi("animationend"),WE=Mi("animationiteration"),eT=Mi("animationstart"),ZC=Mi("transitionrun"),FC=Mi("transitionstart"),JC=Mi("transitioncancel"),tT=Mi("transitionend"),nT=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 aT=0;if(typeof performance=="object"&&typeof performance.now=="function")var IC=performance,oT=function(){return IC.now()};else{var KC=Date;oT=function(){return KC.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)},WC="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="+ ",iT="  ",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},Io={start:-0,end:-0,detail:{devtools:lo}},eM=["Changed Props",""],sT="This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner.",tM=["Changed Props",sT],Hl=1,uo=2,Gn=[],ar=0,_m=0,Ko={};Object.freeze(Ko);var Pn=null,or=null,Te=0,nM=1,_e=2,It=8,ca=16,aM=32,rT=!1;try{var lT=Object.preventExtensions({})}catch{rT=!0}var Nm=new WeakMap,ir=[],sr=0,Sf=null,kl=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),uT={},Ef=null,rr=null,lr=!1,oM=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()})}},iM=Tt.unstable_scheduleCallback,sM=Tt.unstable_NormalPriority,At={$$typeof:La,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0,_currentRenderer:null,_currentRenderer2:null},Dt=Tt.unstable_now,Tf=console.createTask?console.createTask:function(){return null},ql=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,Yl=null,ti=0,jm=null,Bm=null,Zi=-1.1,Gl=null,ur=-1.1,Df=-1.1,mo=-0,yo=-1.1,Zn=-1.1,Lm=0,Pl=null,cT=null,fT=null,ni=-1.1,Fi=null,ai=-1.1,Rf=-1.1,dT=-0,hT=-0,xf=0,rM=null,pT=0,Xl=-1.1,wf=!1,Of=!1,$l=null,Hm=0,Ji=0,cr=null,mT=L.S;L.S=function(e,t){if(c1=Bt(),typeof t=="object"&&t!==null&&typeof t.then=="function"){if(0>yo&&0>Zn){yo=Dt();var n=Tl(),a=El();(n!==ai||a!==Fi)&&(ai=-1.1),ni=n,Fi=a}Rw(e,t)}mT!==null&&mT(e,t)};var Ii=Xe(null),fa={recordUnsafeLifecycleWarnings:function(){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},Ql=[],Zl=[],Fl=[],Jl=[],Il=[],Kl=[],Ki=new Set;fa.recordUnsafeLifecycleWarnings=function(e,t){Ki.has(e.type)||(typeof t.componentWillMount=="function"&&t.componentWillMount.__suppressDeprecationWarning!==!0&&Ql.push(e),e.mode&It&&typeof t.UNSAFE_componentWillMount=="function"&&Zl.push(e),typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps.__suppressDeprecationWarning!==!0&&Fl.push(e),e.mode&It&&typeof t.UNSAFE_componentWillReceiveProps=="function"&&Jl.push(e),typeof t.componentWillUpdate=="function"&&t.componentWillUpdate.__suppressDeprecationWarning!==!0&&Il.push(e),e.mode&It&&typeof t.UNSAFE_componentWillUpdate=="function"&&Kl.push(e))},fa.flushPendingUnsafeLifecycleWarnings=function(){var e=new Set;0<Ql.length&&(Ql.forEach(function(d){e.add(J(d)||"Component"),Ki.add(d.type)}),Ql=[]);var t=new Set;0<Zl.length&&(Zl.forEach(function(d){t.add(J(d)||"Component"),Ki.add(d.type)}),Zl=[]);var n=new Set;0<Fl.length&&(Fl.forEach(function(d){n.add(J(d)||"Component"),Ki.add(d.type)}),Fl=[]);var a=new Set;0<Jl.length&&(Jl.forEach(function(d){a.add(J(d)||"Component"),Ki.add(d.type)}),Jl=[]);var s=new Set;0<Il.length&&(Il.forEach(function(d){s.add(J(d)||"Component"),Ki.add(d.type)}),Il=[]);var r=new Set;if(0<Kl.length&&(Kl.forEach(function(d){r.add(J(d)||"Component"),Ki.add(d.type)}),Kl=[]),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,yT=new Set;fa.recordLegacyContextWarning=function(e,t){for(var n=null,a=e;a!==null;)a.mode&It&&(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."):!yT.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(J(s)||"Component"),yT.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(){Ql=[],Zl=[],Fl=[],Jl=[],Il=[],Kl=[],Cf=new Map};var gT={react_stack_bottom_frame:function(e,t,n){var a=Ha;Ha=!0;try{return e(t,n)}finally{Ha=a}}},km=gT.react_stack_bottom_frame.bind(gT),vT={react_stack_bottom_frame:function(e){var t=Ha;Ha=!0;try{return e.render()}finally{Ha=t}}},bT=vT.react_stack_bottom_frame.bind(vT),ST={react_stack_bottom_frame:function(e,t){try{t.componentDidMount()}catch(n){$e(e,e.return,n)}}},qm=ST.react_stack_bottom_frame.bind(ST),ET={react_stack_bottom_frame:function(e,t,n,a,s){try{t.componentDidUpdate(n,a,s)}catch(r){$e(e,e.return,r)}}},TT=ET.react_stack_bottom_frame.bind(ET),AT={react_stack_bottom_frame:function(e,t){var n=t.stack;e.componentDidCatch(t.value,{componentStack:n!==null?n:""})}},lM=AT.react_stack_bottom_frame.bind(AT),DT={react_stack_bottom_frame:function(e,t,n){try{n.componentWillUnmount()}catch(a){$e(e,t,a)}}},RT=DT.react_stack_bottom_frame.bind(DT),xT={react_stack_bottom_frame:function(e){var t=e.create;return e=e.inst,t=t(),e.destroy=t}},uM=xT.react_stack_bottom_frame.bind(xT),wT={react_stack_bottom_frame:function(e,t,n){try{n()}catch(a){$e(e,t,a)}}},cM=wT.react_stack_bottom_frame.bind(wT),OT={react_stack_bottom_frame:function(e){var t=e._init;return t(e._payload)}},fM=OT.react_stack_bottom_frame.bind(OT),fr=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,Wl=!1,dr=null,eu=0,Ne=null,Gm,CT=Gm=!1,MT={},_T={},NT={};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=J(e),s=a||"null";if(!MT[s]){MT[s]=!0,n=n._owner,e=e._debugOwner;var r="";e&&typeof e.tag=="number"&&(s=J(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=J(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=D0(!0),UT=D0(!1),zT=0,VT=1,jT=2,Pm=3,oi=!1,BT=!1,Xm=null,$m=!1,hr=Xe(null),Nf=Xe(0),Un=Xe(null),Fn=null,pr=1,tu=2,St=Xe(0),Uf=0,Jn=1,un=2,zn=4,cn=8,mr,LT=new Set,HT=new Set,Qm=new Set,kT=new Set,go=0,Ae=null,We=null,Rt=null,zf=!1,yr=!1,ts=!1,Vf=0,nu=0,vo=null,dM=0,hM=25,B=null,In=null,bo=-1,au=!1,ou={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};ou.useEffectEvent=vt;var Zm=null,qT=null,Fm=null,YT=null,$a=null,da=null,jf=null;Zm={readContext:function(e){return ut(e)},use:qo,useCallback:function(e,t){return B="useCallback",Ve(),Ns(t),Xh(e,t)},useContext:function(e){return B="useContext",Ve(),ut(e)},useEffect:function(e,t){return B="useEffect",Ve(),Ns(t),Oc(e,t)},useImperativeHandle:function(e,t,n){return B="useImperativeHandle",Ve(),Ns(n),Ph(e,t,n)},useInsertionEffect:function(e,t){B="useInsertionEffect",Ve(),Ns(t),Li(4,un,e,t)},useLayoutEffect:function(e,t){return B="useLayoutEffect",Ve(),Ns(t),Gh(e,t)},useMemo:function(e,t){B="useMemo",Ve(),Ns(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(),Ih()},useFormState:function(e,t){return B="useFormState",Ve(),Ac(),zs(e,t)},useActionState:function(e,t){return B="useActionState",Ve(),zs(e,t)},useOptimistic:function(e){return B="useOptimistic",Ve(),Hh(e)},useHostTransitionStatus:Hi,useMemoCache:Bi,useCacheRefresh:function(){return B="useCacheRefresh",Ve(),Kh()},useEffectEvent:function(e){return B="useEffectEvent",Ve(),Yh(e)}},qT={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(),Ih()},useActionState:function(e,t){return B="useActionState",P(),zs(e,t)},useFormState:function(e,t){return B="useFormState",P(),Ac(),zs(e,t)},useOptimistic:function(e){return B="useOptimistic",P(),Hh(e)},useHostTransitionStatus:Hi,useMemoCache:Bi,useCacheRefresh:function(){return B="useCacheRefresh",P(),Kh()},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 Us(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 Us(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",P()},useDeferredValue:function(e,t){return B="useDeferredValue",P(),$0(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(),xc(e)},useActionState:function(e){return B="useActionState",P(),xc(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)}},YT={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 ul(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 ul(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",P()},useDeferredValue:function(e,t){return B="useDeferredValue",P(),Q0(e,t)},useTransition:function(){return B="useTransition",P(),W0()},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(),L0(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(),Ih()},useFormState:function(e,t){return B="useFormState",m(),Ve(),zs(e,t)},useActionState:function(e,t){return B="useActionState",m(),Ve(),zs(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(),Kh()},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 Us(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 Us(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",m(),P()},useDeferredValue:function(e,t){return B="useDeferredValue",m(),P(),$0(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(),xc(e)},useActionState:function(e){return B="useActionState",m(),P(),xc(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)}},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 ul(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 ul(ra)}finally{L.H=e}},useDebugValue:function(){B="useDebugValue",m(),P()},useDeferredValue:function(e,t){return B="useDeferredValue",m(),P(),Q0(e,t)},useTransition:function(){return B="useTransition",m(),P(),W0()},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(),L0(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 GT={},PT=new Set,XT=new Set,$T=new Set,QT=new Set,ZT=new Set,FT=new Set,JT=new Set,IT=new Set,KT=new Set,WT=new Set;Object.freeze(GT);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),il(t,e,a))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=On(e),s=Bo(a);s.tag=VT,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),il(t,e,a))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=On(e),a=Bo(n);a.tag=jT,t!=null&&(ep(t),a.callback=t),t=Lo(e,a,n),t!==null&&(Da(n,"this.forceUpdate()",e),ht(t,e,n),il(t,e,n))}},gr=null,Im=null,Km=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,e1={},t1={},n1={},a1={},vr=!1,o1={},Bf={},Wm={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},i1=!1,s1=null;s1=new Set;var So=!1,wt=!1,ey=!1,r1=typeof WeakSet=="function"?WeakSet:Set,Ht=null,br=null,Sr=null,Ot=null,vn=!1,ha=null,Nt=!1,iu=8192,pM={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 su=Symbol.for;su("selector.component"),su("selector.has_pseudo_class"),su("selector.role"),su("selector.test_id"),su("selector.text")}var mM=[],yM=typeof WeakMap=="function"?WeakMap:Map,kt=0,Ut=2,Vn=4,Eo=0,ru=1,ns=2,Lf=3,ii=4,Hf=6,l1=5,Pe=kt,et=null,ze=null,Ue=0,bn=0,kf=1,as=2,lu=3,u1=4,ty=5,uu=6,qf=7,ny=8,os=9,Ie=bn,jn=null,si=!1,Er=!1,ay=!1,Qa=0,dt=Eo,ri=0,li=0,oy=0,Sn=0,is=0,cu=null,fn=null,Yf=!1,Gf=0,c1=0,f1=300,Pf=1/0,d1=500,fu=null,bt=null,ui=null,Xf=0,iy=1,sy=2,h1=3,ci=0,p1=1,m1=2,y1=3,g1=4,$f=5,Ct=0,fi=null,Tr=null,pa=0,ry=0,ly=-0,uy=null,v1=null,b1=null,ma=Xf,S1=null,gM=50,du=0,cy=null,fy=!1,Qf=!1,vM=50,ss=0,hu=null,Ar=!1,Zf=null,E1=!1,T1=new Set,bM={},Ff=null,Dr=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(KE,"onAnimationEnd"),ia(WE,"onAnimationIteration"),ia(eT,"onAnimationStart"),ia("dblclick","onDoubleClick"),ia("focusin","onFocus"),ia("focusout","onBlur"),ia(ZC,"onTransitionRun"),ia(FC,"onTransitionStart"),ia(JC,"onTransitionCancel"),ia(tT,"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 pu="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(pu)),If="_reactListening"+Math.random().toString(36).slice(2),A1=!1,D1=!1,Kf=!1,R1=!1,Wf=!1,ed=!1,x1=!1,td={},SM=/\r\n?/g,EM=/\u0000|\uFFFD/g,rs="http://www.w3.org/1999/xlink",gy="http://www.w3.org/XML/1998/namespace",TM="javascript:throw new Error('React form unexpectedly submitted.')",AM="suppressHydrationWarning",ls="&",nd="/&",mu="$",yu="/$",hi="$?",us="$~",Rr="$!",DM="html",RM="body",xM="head",vy="F!",w1="F",O1="loading",wM="style",To=0,xr=1,ad=2,by=null,Sy=null,C1={dialog:!0,webview:!0},Ey=null,gu=void 0,M1=typeof setTimeout=="function"?setTimeout:void 0,OM=typeof clearTimeout=="function"?clearTimeout:void 0,cs=-1,_1=typeof Promise=="function"?Promise:void 0,CM=typeof queueMicrotask=="function"?queueMicrotask:typeof _1<"u"?function(e){return _1.resolve(null).then(e).catch(fO)}:M1,Ty=null,fs=0,vu=1,N1=2,U1=3,Kn=4,Wn=new Map,z1=new Set,Ao=Qe.d;Qe.d={f:function(){var e=Ao.f(),t=Hs();return e||t},r:function(e){var t=I(e);t!==null&&t.tag===5&&t.type==="form"?I0(t):Ao.r(e)},D:function(e){Ao.D(e),PS("dns-prefetch",e,null)},C:function(e,t){Ao.C(e,t),PS("preconnect",e,t)},L:function(e,t,n){Ao.L(e,t,n);var a=wr;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=Ys(e);break;case"script":r=Gs(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(Dl(r))||t==="script"&&a.querySelector(Rl(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=wr;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=Gs(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(Rl(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=wr;if(n&&e){var a=Oe(n).hoistableScripts,s=Gs(e),r=a.get(s);r||(r=n.querySelector(Rl(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=wr;if(a&&e){var s=Oe(a).hoistableStyles,r=Ys(e);t=t||"default";var c=s.get(r);if(!c){var d={loading:fs,preload:null};if(c=a.querySelector(Dl(r)))d.loading=vu|Kn;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|=vu}),y.addEventListener("error",function(){d.loading|=N1}),d.loading|=Kn,Ic(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=wr;if(n&&e){var a=Oe(n).hoistableScripts,s=Gs(e),r=a.get(s);r||(r=n.querySelector(Rl(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 wr=typeof document>"u"?null:document,od=null,MM=6e4,_M=800,NM=500,Ay=0,Dy=null,id=null,ds=$O,bu={$$typeof:La,Provider:null,Consumer:null,_currentValue:ds,_currentValue2:ds,_threadCount:0},V1="%c%s%c",j1="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",B1="",sd=" ",UM=Function.prototype.bind,L1=!1,H1=null,k1=null,q1=null,Y1=null,G1=null,P1=null,X1=null,$1=null,Q1=null,Z1=null;H1=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))},k1=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))},q1=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))},Y1=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)},G1=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)},P1=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)},X1=function(e){var t=Ft(e,2);t!==null&&ht(t,e,2)},$1=function(e){var t=Gr(),n=Ft(e,t);n!==null&&ht(n,e,t)},Q1=function(e){h=e},Z1=function(e){p=e};var rd=!0,ld=null,Ry=!1,pi=null,mi=null,yi=null,Su=new Map,Eu=new Map,gi=[],zM="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()."):U(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),Hs(),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&&oE(e)}},(function(){var e=Ip.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=F(t),e=e!==null?Ee(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=H1,e.overrideHookStateDeletePath=k1,e.overrideHookStateRenamePath=q1,e.overrideProps=Y1,e.overridePropsDeletePath=G1,e.overridePropsRenamePath=P1,e.scheduleUpdate=X1,e.scheduleRetry=$1,e.setErrorHandler=Q1,e.setSuspenseHandler=Z1,e.scheduleRefresh=D,e.scheduleRoot=M,e.setRefreshHandler=V,e.getCurrentFiber=BO,Pd(e)})()&&Ga&&window.top===window.self&&(-1<navigator.userAgent.indexOf("Chrome")&&navigator.userAgent.indexOf("Edge")===-1||-1<navigator.userAgent.indexOf("Firefox"))){var F1=window.location.protocol;/^(https?|file):$/.test(F1)&&console.info("%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools"+(F1==="file:"?`
232
+ You might need to use a local HTTP server (instead of file://): https://react.dev/link/react-devtools-faq`:""),"font-weight:bold")}Tu.createRoot=function(e,t){if(!U(e))throw Error("Target container is not a DOM element.");lE(e);var n=!1,a="",s=ib,r=sb,c=rb;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=IS(e,1,!1,null,null,n,a,null,s,r,c,rE),e[Zo]=t.current,_p(e),new Jp(t)},Tu.hydrateRoot=function(e,t,n){if(!U(e))throw Error("Target container is not a DOM element.");lE(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=ib,c=sb,d=rb,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=IS(e,1,!0,t,n??null,a,s,y,r,c,d,rE),t.context=KS(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)},Tu.version="19.2.4",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})(),Tu}var iA;function XM(){return iA||(iA=1,Oy.exports=PM()),Oy.exports}var $M=XM();const QM=XD($M);const $D=(...o)=>o.filter((i,l,u)=>!!i&&i.trim()!==""&&u.indexOf(i)===l).join(" ").trim();const ZM=o=>o.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const FM=o=>o.replace(/^([A-Z])|[\s-_]+(\w)/g,(i,l,u)=>u?u.toUpperCase():l.toLowerCase());const sA=o=>{const i=FM(o);return i.charAt(0).toUpperCase()+i.slice(1)};var JM={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 IM=o=>{for(const i in o)if(i.startsWith("aria-")||i==="role"||i==="title")return!0;return!1};const KM=te.forwardRef(({color:o="currentColor",size:i=24,strokeWidth:l=2,absoluteStrokeWidth:u,className:f="",children:p,iconNode:h,...m},v)=>te.createElement("svg",{ref:v,...JM,width:i,height:i,stroke:o,strokeWidth:u?Number(l)*24/Number(i):l,className:$D("lucide",f),...!p&&!IM(m)&&{"aria-hidden":"true"},...m},[...h.map(([T,b])=>te.createElement(T,b)),...Array.isArray(p)?p:[p]]));const Cg=(o,i)=>{const l=te.forwardRef(({className:u,...f},p)=>te.createElement(KM,{ref:p,iconNode:i,className:$D(`lucide-${ZM(sA(o))}`,`lucide-${o}`,u),...f}));return l.displayName=sA(o),l};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_=Cg("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_=Cg("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_=Cg("shield",a_);var Ny={exports:{}},Au={},rA;function i_(){if(rA)return Au;rA=1;return(function(){function o(O){if(O==null)return null;if(typeof O=="function")return O.$$typeof===Xe?null:O.displayName||O.name||null;if(typeof O=="string")return O;switch(O){case U:return"Fragment";case X:return"Profiler";case k:return"StrictMode";case Ee:return"Suspense";case ve:return"SuspenseList";case J:return"Activity"}if(typeof O=="object")switch(typeof O.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),O.$$typeof){case V:return"Portal";case W:return O.displayName||"Context";case Y:return(O._context.displayName||"Context")+".Consumer";case F:var Q=O.render;return O=O.displayName,O||(O=Q.displayName||Q.name||"",O=O!==""?"ForwardRef("+O+")":"ForwardRef"),O;case ee:return Q=O.displayName||null,Q!==null?Q:o(O.type)||"Memo";case ce:Q=O._payload,O=O._init;try{return o(O(Q))}catch{}}return null}function i(O){return""+O}function l(O){try{i(O);var Q=!1}catch{Q=!0}if(Q){Q=console;var me=Q.error,re=typeof Symbol=="function"&&Symbol.toStringTag&&O[Symbol.toStringTag]||O.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(O)}}function u(O){if(O===U)return"<>";if(typeof O=="object"&&O!==null&&O.$$typeof===ce)return"<...>";try{var Q=o(O);return Q?"<"+Q+">":"<...>"}catch{return"<...>"}}function f(){var O=fe.A;return O===null?null:O.getOwner()}function p(){return Error("react-stack-top-frame")}function h(O){if(be.call(O,"key")){var Q=Object.getOwnPropertyDescriptor(O,"key").get;if(Q&&Q.isReactWarning)return!1}return O.key!==void 0}function m(O,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(O,"key",{get:me,configurable:!0})}function v(){var O=o(this.type);return ae[O]||(ae[O]=!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.")),O=this.props.ref,O!==void 0?O:null}function T(O,Q,me,re,tt,Bn){var we=me.ref;return O={$$typeof:D,type:O,key:Q,props:me,_owner:re},(we!==void 0?we:null)!==null?Object.defineProperty(O,"ref",{enumerable:!1,get:v}):Object.defineProperty(O,"ref",{enumerable:!1,value:null}),O._store={},Object.defineProperty(O._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(O,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(O,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:tt}),Object.defineProperty(O,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:Bn}),Object.freeze&&(Object.freeze(O.props),Object.freeze(O)),O}function b(O,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(O);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 O=="function"?O.displayName||O.name||"Unknown":O),T(O,we,me,f(),tt,Bn)}function A(O){E(O)?O._store&&(O._store.validated=1):typeof O=="object"&&O!==null&&O.$$typeof===ce&&(O._payload.status==="fulfilled"?E(O._payload.value)&&O._payload.value._store&&(O._payload.value._store.validated=1):O._store&&(O._store.validated=1))}function E(O){return typeof O=="object"&&O!==null&&O.$$typeof===D}var M=Bu(),D=Symbol.for("react.transitional.element"),V=Symbol.for("react.portal"),U=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),X=Symbol.for("react.profiler"),Y=Symbol.for("react.consumer"),W=Symbol.for("react.context"),F=Symbol.for("react.forward_ref"),Ee=Symbol.for("react.suspense"),ve=Symbol.for("react.suspense_list"),ee=Symbol.for("react.memo"),ce=Symbol.for("react.lazy"),J=Symbol.for("react.activity"),Xe=Symbol.for("react.client.reference"),fe=M.__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};M={react_stack_bottom_frame:function(O){return O()}};var G,ae={},ie=M.react_stack_bottom_frame.bind(M,p)(),xe=lt(u(p)),Be={};Au.Fragment=U,Au.jsx=function(O,Q,me){var re=1e4>fe.recentlyCreatedOwnerStacks++;return b(O,Q,me,!1,re?Error("react-stack-top-frame"):ie,re?lt(u(O)):xe)},Au.jsxs=function(O,Q,me){var re=1e4>fe.recentlyCreatedOwnerStacks++;return b(O,Q,me,!0,re?Error("react-stack-top-frame"):ie,re?lt(u(O)):xe)}})(),Au}var lA;function s_(){return lA||(lA=1,Ny.exports=i_()),Ny.exports}var Ro=s_();const Mg=te.createContext({});function _g(o){const i=te.useRef(null);return i.current===null&&(i.current=o()),i.current}const QD=typeof window<"u",ZD=QD?te.useLayoutEffect:te.useEffect,Vd=te.createContext(null);function Ng(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 tg(o,i){return i?`${o}. For more information and steps for solving, visit https://motion.dev/troubleshooting/${i}`:o}let Lr=()=>{},xo=()=>{};typeof process<"u"&&(Lr=(o,i,l)=>{!o&&typeof console<"u"&&console.warn(tg(i,l))},xo=(o,i,l)=>{if(!o)throw new Error(tg(i,l))});const wo={},FD=o=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(o);function JD(o){return typeof o=="object"&&o!==null}const ID=o=>/^0[^.\s]+$/u.test(o);function Ug(o){let i;return()=>(i===void 0&&(i=o()),i)}const na=o=>o,r_=(o,i)=>l=>i(o(l)),Lu=(...o)=>o.reduce(r_),Nu=(o,i,l)=>{const u=i-o;return u===0?1:(l-o)/u};class zg{constructor(){this.subscriptions=[]}add(i){return Ng(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 KD(o,i){return i?o*(1e3/i):0}const uA=new Set;function Vg(o,i,l){o||uA.has(i)||(console.warn(tg(i,l)),uA.add(i))}const WD=(o,i,l)=>(((1-3*l+3*i)*o+(3*l-6*i))*o+3*i)*o,l_=1e-7,u_=12;function c_(o,i,l,u,f){let p,h,m=0;do h=i+(l-i)/2,p=WD(h,u,f)-o,p>0?l=h:i=h;while(Math.abs(p)>l_&&++m<u_);return h}function Hu(o,i,l,u){if(o===i&&l===u)return na;const f=p=>c_(p,0,1,o,l);return p=>p===0||p===1?p:WD(f(p),i,u)}const eR=o=>i=>i<=.5?o(2*i)/2:(2-o(2*(1-i)))/2,tR=o=>i=>1-o(1-i),nR=Hu(.33,1.53,.69,.99),jg=tR(nR),aR=eR(jg),oR=o=>(o*=2)<1?.5*jg(o):.5*(2-Math.pow(2,-10*(o-1))),Bg=o=>1-Math.sin(Math.acos(o)),iR=tR(Bg),sR=eR(Bg),f_=Hu(.42,0,1,1),d_=Hu(0,0,.58,1),rR=Hu(.42,0,.58,1),h_=o=>Array.isArray(o)&&typeof o[0]!="number",lR=o=>Array.isArray(o)&&typeof o[0]=="number",cA={linear:na,easeIn:f_,easeInOut:rR,easeOut:d_,circIn:Bg,circInOut:sR,circOut:iR,backIn:jg,backInOut:aR,backOut:nR,anticipate:oR},p_=o=>typeof o=="string",fA=o=>{if(lR(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(p_(o))return xo(cA[o]!==void 0,`Invalid easing type '${o}'`,"invalid-easing-type"),cA[o];return o},fd=["setup","read","resolveKeyframes","preUpdate","update","preRender","render","postRender"];function m_(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)&&(T.schedule(b),o()),b(m)}const T={schedule:(b,A=!1,E=!1)=>{const D=E&&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,T.process(b))}};return T}const y_=40;function uR(o,i){let l=!1,u=!0;const f={delta:0,timestamp:0,isProcessing:!1},p=()=>l=!0,h=fd.reduce((Y,W)=>(Y[W]=m_(p),Y),{}),{setup:m,read:v,resolveKeyframes:T,preUpdate:b,update:A,preRender:E,render:M,postRender:D}=h,V=()=>{const Y=wo.useManualTiming?f.timestamp:performance.now();l=!1,wo.useManualTiming||(f.delta=u?1e3/60:Math.max(Math.min(Y-f.timestamp,y_),1)),f.timestamp=Y,f.isProcessing=!0,m.process(f),v.process(f),T.process(f),b.process(f),A.process(f),E.process(f),M.process(f),D.process(f),f.isProcessing=!1,l&&i&&(u=!1,o(V))},U=()=>{l=!0,u=!0,f.isProcessing||o(V)};return{schedule:fd.reduce((Y,W)=>{const F=h[W];return Y[W]=(Ee,ve=!1,ee=!1)=>(l||U(),F.schedule(Ee,ve,ee)),Y},{}),cancel:Y=>{for(let W=0;W<fd.length;W++)h[fd[W]].cancel(Y)},state:f,steps:h}}const{schedule:rt,cancel:Si,state:$t,steps:Uy}=uR(typeof requestAnimationFrame<"u"?requestAnimationFrame:na,!0);let yd;function g_(){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(g_)}},cR=o=>i=>typeof i=="string"&&i.startsWith(o),fR=cR("--"),v_=cR("var(--"),Lg=o=>v_(o)?b_.test(o.split("/*")[0].trim()):!1,b_=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu;function dA(o){return typeof o!="string"?!1:o.split("/*")[0].includes("var(--")}const Hr={test:o=>typeof o=="number",parse:parseFloat,transform:o=>o},Uu={...Hr,transform:o=>Ja(0,1,o)},dd={...Hr,default:1},Cu=o=>Math.round(o*1e5)/1e5,Hg=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function S_(o){return o==null}const E_=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,kg=(o,i)=>l=>!!(typeof l=="string"&&E_.test(l)&&l.startsWith(o)||i&&!S_(l)&&Object.prototype.hasOwnProperty.call(l,i)),dR=(o,i,l)=>u=>{if(typeof u!="string")return u;const[f,p,h,m]=u.match(Hg);return{[o]:parseFloat(f),[i]:parseFloat(p),[l]:parseFloat(h),alpha:m!==void 0?parseFloat(m):1}},T_=o=>Ja(0,255,o),zy={...Hr,transform:o=>Math.round(T_(o))},ms={test:kg("rgb","red"),parse:dR("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 A_(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 ng={test:kg("#"),parse:A_,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"),D_=ku("vh"),R_=ku("vw"),hA={...Fa,parse:o=>Fa.parse(o)/100,transform:o=>Fa.transform(o*100)},Cr={test:kg("hsl","hue"),parse:dR("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)||ng.test(o)||Cr.test(o),parse:o=>ms.test(o)?ms.parse(o):Cr.test(o)?Cr.parse(o):ng.parse(o),transform:o=>typeof o=="string"?o:o.hasOwnProperty("red")?ms.transform(o):Cr.transform(o),getAnimatableNone:o=>{const i=Mt.parse(o);return i.alpha=0,Mt.transform(i)}},x_=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function w_(o){return isNaN(o)&&typeof o=="string"&&(o.match(Hg)?.length||0)+(o.match(x_)?.length||0)>0}const hR="number",pR="color",O_="var",C_="var(",pA="${}",M_=/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(M_,v=>(Mt.test(v)?(u.color.push(p),f.push(pR),l.push(Mt.parse(v))):v.startsWith(C_)?(u.var.push(p),f.push(O_),l.push(v)):(u.number.push(p),f.push(hR),l.push(parseFloat(v))),++p,pA)).split(pA);return{values:l,split:m,indexes:u,types:f}}function mR(o){return zu(o).values}function yR(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===hR?p+=Cu(f[h]):m===pR?p+=Mt.transform(f[h]):p+=f[h]}return p}}const __=o=>typeof o=="number"?0:Mt.test(o)?Mt.getAnimatableNone(o):o;function N_(o){const i=mR(o);return yR(o)(i.map(__))}const Ei={test:w_,parse:mR,createTransformer:yR,getAnimatableNone:N_};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 U_({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)},z_=[ng,ms,Cr],V_=o=>z_.find(i=>i.test(o));function mA(o){const i=V_(o);if(Lr(!!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===Cr&&(l=U_(l)),l}const yA=(o,i)=>{const l=mA(o),u=mA(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))},ag=new Set(["none","hidden"]);function j_(o,i){return ag.has(o)?l=>l<=0?o:i:l=>l>=1?i:o}function B_(o,i){return l=>yt(o,i,l)}function qg(o){return typeof o=="number"?B_:typeof o=="string"?Lg(o)?wd:Mt.test(o)?yA:k_:Array.isArray(o)?gR:typeof o=="object"?Mt.test(o)?yA:L_:wd}function gR(o,i){const l=[...o],u=l.length,f=o.map((p,h)=>qg(p)(p,i[h]));return p=>{for(let h=0;h<u;h++)l[h]=f[h](p);return l}}function L_(o,i){const l={...o,...i},u={};for(const f in l)o[f]!==void 0&&i[f]!==void 0&&(u[f]=qg(o[f])(o[f],i[f]));return f=>{for(const p in u)l[p]=u[p](f);return l}}function H_(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 k_=(o,i)=>{const l=Ei.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?ag.has(o)&&!f.values.length||ag.has(i)&&!u.values.length?j_(o,i):Lu(gR(H_(u,f),f.values),l):(Lr(!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 vR(o,i,l){return typeof o=="number"&&typeof i=="number"&&typeof l=="number"?yt(o,i,l):qg(o)(o,i)}const q_=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()}},bR=(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 Yg(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 Y_(o,i=100,l){const u=l({...o,keyframes:[0,i]}),f=Math.min(Yg(u),Od);return{type:"keyframes",ease:p=>u.next(f*p).value/i,duration:ta(f)}}const G_=5;function SR(o,i,l){const u=Math.max(i-G_,0);return KD(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 P_({duration:o=mt.duration,bounce:i=mt.bounce,velocity:l=mt.velocity,mass:u=mt.mass}){let f,p;Lr(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=T=>{const b=T*h,A=b*o,E=b-l,M=og(T,h),D=Math.exp(-A);return By-E/M*D},p=T=>{const A=T*h*o,E=A*l+l,M=Math.pow(h,2)*Math.pow(T,2)*o,D=Math.exp(-A),V=og(Math.pow(T,2),h);return(-f(T)+By>0?-1:1)*((E-M)*D)/V}):(f=T=>{const b=Math.exp(-T*o),A=(T-l)*o+1;return-By+b*A},p=T=>{const b=Math.exp(-T*o),A=(l-T)*(o*o);return b*A});const m=5/o,v=$_(f,p,m);if(o=aa(o),isNaN(v))return{stiffness:mt.stiffness,damping:mt.damping,duration:o};{const T=Math.pow(v,2)*u;return{stiffness:T,damping:h*2*Math.sqrt(u*T),duration:o}}}const X_=12;function $_(o,i,l){let u=l;for(let f=1;f<X_;f++)u=u-o(u)/i(u);return u}function og(o,i){return o*Math.sqrt(1-i*i)}const Q_=["duration","bounce"],Z_=["stiffness","damping","mass"];function gA(o,i){return i.some(l=>o[l]!==void 0)}function F_(o){let i={velocity:mt.velocity,stiffness:mt.stiffness,damping:mt.damping,mass:mt.mass,isResolvedFromDuration:!1,...o};if(!gA(o,Z_)&&gA(o,Q_))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=P_(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:T,mass:b,duration:A,velocity:E,isResolvedFromDuration:M}=F_({...l,velocity:-ta(l.velocity||0)}),D=E||0,V=T/(2*Math.sqrt(v*b)),U=h-p,k=ta(Math.sqrt(v/b)),X=Math.abs(U)<5;u||(u=X?mt.restSpeed.granular:mt.restSpeed.default),f||(f=X?mt.restDelta.granular:mt.restDelta.default);let Y;if(V<1){const F=og(k,V);Y=Ee=>{const ve=Math.exp(-V*k*Ee);return h-ve*((D+V*k*U)/F*Math.sin(F*Ee)+U*Math.cos(F*Ee))}}else if(V===1)Y=F=>h-Math.exp(-k*F)*(U+(D+k*U)*F);else{const F=k*Math.sqrt(V*V-1);Y=Ee=>{const ve=Math.exp(-V*k*Ee),ee=Math.min(F*Ee,300);return h-ve*((D+V*k*U)*Math.sinh(ee)+F*U*Math.cosh(ee))/F}}const W={calculatedDuration:M&&A||null,next:F=>{const Ee=Y(F);if(M)m.done=F>=A;else{let ve=F===0?D:0;V<1&&(ve=F===0?aa(D):SR(Y,F,Ee));const ee=Math.abs(ve)<=u,ce=Math.abs(h-Ee)<=f;m.done=ee&&ce}return m.value=m.done?h:Ee,m},toString:()=>{const F=Math.min(Yg(W),Od),Ee=bR(ve=>W.next(F*ve).value,F,30);return F+"ms "+Ee},toTransition:()=>{}};return W}Cd.applyToOptions=o=>{const i=Y_(o,100,Cd);return o.ease=i.ease,o.duration=aa(i.duration),o.type="keyframes",o};function ig({keyframes:o,velocity:i=0,power:l=.8,timeConstant:u=325,bounceDamping:f=10,bounceStiffness:p=500,modifyTarget:h,min:m,max:v,restDelta:T=.5,restSpeed:b}){const A=o[0],E={done:!1,value:A},M=ee=>m!==void 0&&ee<m||v!==void 0&&ee>v,D=ee=>m===void 0?v:v===void 0||Math.abs(m-ee)<Math.abs(v-ee)?m:v;let V=l*i;const U=A+V,k=h===void 0?U:h(U);k!==U&&(V=k-A);const X=ee=>-V*Math.exp(-ee/u),Y=ee=>k+X(ee),W=ee=>{const ce=X(ee),J=Y(ee);E.done=Math.abs(ce)<=T,E.value=E.done?k:J};let F,Ee;const ve=ee=>{M(E.value)&&(F=ee,Ee=Cd({keyframes:[E.value,D(E.value)],velocity:SR(Y,ee,E.value),damping:f,stiffness:p,restDelta:T,restSpeed:b}))};return ve(0),{calculatedDuration:null,next:ee=>{let ce=!1;return!Ee&&F===void 0&&(ce=!0,W(ee),ve(ee)),F!==void 0&&ee>=F?Ee.next(ee-F):(!ce&&W(ee),E)}}}function J_(o,i,l){const u=[],f=l||wo.mix||vR,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 I_(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=J_(i,u,f),v=m.length,T=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 E=Nu(o[A],o[A+1],b);return m[A](E)};return l?b=>T(Ja(o[0],o[p-1],b)):T}function K_(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 W_(o){const i=[0];return K_(i,o.length-1),i}function eN(o,i){return o.map(l=>l*i)}function tN(o,i){return o.map(()=>i||rR).splice(0,o.length-1)}function Mr({duration:o=300,keyframes:i,times:l,ease:u="easeInOut"}){const f=h_(u)?u.map(fA):fA(u),p={done:!1,value:i[0]},h=eN(l&&l.length===i.length?l:W_(i),o),m=I_(h,i,{ease:Array.isArray(f)?f:tN(i,f)});return{calculatedDuration:o,next:v=>(p.value=m(v),p.done=v>=o,p)}}const nN=o=>o!==null;function Gg(o,{repeat:i,repeatType:l="loop"},u,f=1){const p=o.filter(nN),m=f<0||i&&l!=="loop"&&i%2===1?0:p.length-1;return!m||u===void 0?p[m]:u}const aN={decay:ig,inertia:ig,tween:Mr,keyframes:Mr,spring:Cd};function ER(o){typeof o.type=="string"&&(o.type=aN[o.type])}class Pg{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 oN=o=>o/100;class Xg extends Pg{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;ER(i);const{type:l=Mr,repeat:u=0,repeatDelay:f=0,repeatType:p,velocity:h=0}=i;let{keyframes:m}=i;const v=l||Mr;v!==Mr&&xo(m.length<=2,`Only two keyframes currently supported with spring and inertia animations. Trying to animate ${m}`,"spring-two-frames"),v!==Mr&&typeof m[0]!="number"&&(this.mixKeyframes=Lu(oN,vR(m[0],m[1])),m=[0,100]);const T=v({...i,keyframes:m});p==="mirror"&&(this.mirroredGenerator=v({...i,keyframes:[...m].reverse(),velocity:-h})),T.calculatedDuration===null&&(T.calculatedDuration=Yg(T));const{calculatedDuration:b}=T;this.calculatedDuration=b,this.resolvedDuration=b+f,this.totalDuration=this.resolvedDuration*(u+1)-f,this.generator=T}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:T=0,keyframes:b,repeat:A,repeatType:E,repeatDelay:M,type:D,onUpdate:V,finalKeyframe:U}=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-T*(this.playbackSpeed>=0?1:-1),X=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,W=u;if(A){const ee=Math.min(this.currentTime,f)/m;let ce=Math.floor(ee),J=ee%1;!J&&ee>=1&&(J=1),J===1&&ce--,ce=Math.min(ce,A+1),ce%2&&(E==="reverse"?(J=1-J,M&&(J-=M/m)):E==="mirror"&&(W=h)),Y=Ja(0,1,J)*m}const F=X?{done:!1,value:b[0]}:W.next(Y);p&&(F.value=p(F.value));let{done:Ee}=F;!X&&v!==null&&(Ee=this.playbackSpeed>=0?this.currentTime>=f:this.currentTime<=0);const ve=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&Ee);return ve&&D!==ig&&(F.value=Gg(b,this.options,U,this.speed)),V&&V(F.value),ve&&this.finish(),F}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=q_,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 iN(o){for(let i=1;i<o.length;i++)o[i]??(o[i]=o[i-1])}const ys=o=>o*180/Math.PI,sg=o=>{const i=ys(Math.atan2(o[1],o[0]));return rg(i)},sN={x:4,y:5,translateX:4,translateY:5,scaleX:0,scaleY:3,scale:o=>(Math.abs(o[0])+Math.abs(o[3]))/2,rotate:sg,rotateZ:sg,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},rg=o=>(o=o%360,o<0&&(o+=360),o),vA=sg,bA=o=>Math.sqrt(o[0]*o[0]+o[1]*o[1]),SA=o=>Math.sqrt(o[4]*o[4]+o[5]*o[5]),rN={x:12,y:13,z:14,translateX:12,translateY:13,translateZ:14,scaleX:bA,scaleY:SA,scale:o=>(bA(o)+SA(o))/2,rotateX:o=>rg(ys(Math.atan2(o[6],o[5]))),rotateY:o=>rg(ys(Math.atan2(-o[2],o[0]))),rotateZ:vA,rotate:vA,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 lg(o){return o.includes("scale")?1:0}function ug(o,i){if(!o||o==="none")return lg(i);const l=o.match(/^matrix3d\(([-\d.e\s,]+)\)$/u);let u,f;if(l)u=rN,f=l;else{const m=o.match(/^matrix\(([-\d.e\s,]+)\)$/u);u=sN,f=m}if(!f)return lg(i);const p=u[i],h=f[1].split(",").map(uN);return typeof p=="function"?p(h):h[p]}const lN=(o,i)=>{const{transform:l="none"}=getComputedStyle(o);return ug(l,i)};function uN(o){return parseFloat(o.trim())}const kr=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],qr=new Set(kr),EA=o=>o===Hr||o===le,cN=new Set(["x","y","z"]),fN=kr.filter(o=>!cN.has(o));function dN(o){const i=[];return fN.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})=>ug(i,"x"),y:(o,{transform:i})=>ug(i,"y")};bi.translateX=bi.x;bi.translateY=bi.y;const vs=new Set;let cg=!1,fg=!1,dg=!1;function TR(){if(fg){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=dN(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)})}fg=!1,cg=!1,vs.forEach(o=>o.complete(dg)),vs.clear()}function AR(){vs.forEach(o=>{o.readKeyframes(),o.needsMeasurement&&(fg=!0)})}function hN(){dg=!0,AR(),TR(),dg=!1}class $g{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),cg||(cg=!0,rt.read(AR),rt.resolveKeyframes(TR))):(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])}iN(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 pN=o=>o.startsWith("--");function mN(o,i,l){pN(i)?o.style.setProperty(i,l):o.style[i]=l}const yN=Ug(()=>window.ScrollTimeline!==void 0),gN={};function vN(o,i){const l=Ug(o);return()=>gN[i]??l()}const DR=vN(()=>{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 RR(o,i){if(o)return typeof o=="function"?DR()?bR(o,i):"ease-out":lR(o)?Ou(o):Array.isArray(o)?o.map(l=>RR(l,i)||TA.easeOut):TA[o]}function bN(o,i,l,{delay:u=0,duration:f=300,repeat:p=0,repeatType:h="loop",ease:m="easeOut",times:v}={},T=void 0){const b={[i]:l};v&&(b.offset=v);const A=RR(m,f);Array.isArray(A)&&(b.easing=A);const E={delay:u,duration:f,easing:Array.isArray(A)?"linear":A,fill:"both",iterations:p+1,direction:h==="reverse"?"alternate":"normal"};return T&&(E.pseudoElement=T),o.animate(b,E)}function xR(o){return typeof o=="function"&&"applyToOptions"in o}function SN({type:o,...i}){return xR(o)&&DR()?o.applyToOptions(i):(i.duration??(i.duration=300),i.ease??(i.ease="easeOut"),i)}class wR extends Pg{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 T=SN(i);this.animation=bN(l,u,f,T,p),T.autoplay===!1&&this.animation.pause(),this.animation.onfinish=()=>{if(this.finishedTime=this.time,!p){const b=Gg(f,this.options,m,this.speed);this.updateMotionValue?this.updateMotionValue(b):mN(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&&yN()?(this.animation.timeline=i,na):l(this)}}const OR={anticipate:oR,backInOut:aR,circInOut:sR};function EN(o){return o in OR}function TN(o){typeof o.ease=="string"&&EN(o.ease)&&(o.ease=OR[o.ease])}const Ly=10;class AN extends wR{constructor(i){TN(i),ER(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 Xg({...h,autoplay:!1}),v=Math.max(Ly,dn.now()-this.startTime),T=Ja(0,Ly,v-Ly);l.setWithVelocity(m.sample(Math.max(0,v-T)).value,m.sample(v).value,T),m.stop()}}const AA=(o,i)=>i==="zIndex"?!1:!!(typeof o=="number"||Array.isArray(o)||typeof o=="string"&&(Ei.test(o)||o==="0")&&!o.startsWith("url("));function DN(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 RN(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=AA(f,i),m=AA(p,i);return Lr(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:DN(o)||(l==="spring"||xR(l))&&u}function hg(o){o.duration=0,o.type="keyframes"}const xN=new Set(["opacity","clipPath","filter","transform"]),wN=Ug(()=>Object.hasOwnProperty.call(Element.prototype,"animate"));function ON(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:T}=i.owner.getProps();return wN()&&l&&xN.has(l)&&(l!=="transform"||!T)&&!v&&!u&&f!=="mirror"&&p!==0&&h!=="inertia"}const CN=40;class MN extends Pg{constructor({autoplay:i=!0,delay:l=0,type:u="keyframes",repeat:f=0,repeatDelay:p=0,repeatType:h="loop",keyframes:m,name:v,motionValue:T,element:b,...A}){super(),this.stop=()=>{this._animation&&(this._animation.stop(),this.stopTimeline?.()),this.keyframeResolver?.cancel()},this.createdAt=dn.now();const E={autoplay:i,delay:l,type:u,repeat:f,repeatDelay:p,repeatType:h,name:v,motionValue:T,element:b,...A},M=b?.KeyframeResolver||$g;this.keyframeResolver=new M(m,(D,V,U)=>this.onKeyframesResolved(D,V,E,!U),v,T,b),this.keyframeResolver?.scheduleResolve()}onKeyframesResolved(i,l,u,f){this.keyframeResolver=void 0;const{name:p,type:h,velocity:m,delay:v,isHandoff:T,onUpdate:b}=u;this.resolvedAt=dn.now(),RN(i,p,h,m)||((wo.instantAnimations||!v)&&b?.(Gg(i,u,l)),i[0]=i[i.length-1],hg(u),u.repeat=0);const E={startTime:f?this.resolvedAt?this.resolvedAt-this.createdAt>CN?this.resolvedAt:this.createdAt:this.createdAt:void 0,finalKeyframe:l,...u,keyframes:i},M=!T&&ON(E),D=E.motionValue?.owner?.current,V=M?new AN({...E,element:D}):new Xg(E);V.finished.then(()=>{this.notifyFinished()}).catch(na),this.pendingTimeline&&(this.stopTimeline=V.attachTimeline(this.pendingTimeline),this.pendingTimeline=void 0),this._animation=V}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(),hN()),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 CR(o,i,l,u=0,f=1){const p=Array.from(o).sort((T,b)=>T.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 _N=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function NN(o){const i=_N.exec(o);if(!i)return[,];const[,l,u,f]=i;return[`--${l??u}`,f]}const UN=4;function MR(o,i,l=1){xo(l<=UN,`Max CSS variable fallback depth detected in property "${o}". This may indicate a circular fallback dependency.`,"max-css-var-depth");const[u,f]=NN(o);if(!u)return;const p=window.getComputedStyle(i).getPropertyValue(u);if(p){const h=p.trim();return FD(h)?parseFloat(h):h}return Lg(f)?MR(f,i,l+1):f}const zN={type:"spring",stiffness:500,damping:25,restSpeed:10},VN=o=>({type:"spring",stiffness:550,damping:o===0?2*Math.sqrt(550):30,restSpeed:10}),jN={type:"keyframes",duration:.8},BN={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},LN=(o,{keyframes:i})=>i.length>2?jN:qr.has(o)?o.startsWith("scale")?VN(i[1]):zN:BN,HN=o=>o!==null;function kN(o,{repeat:i,repeatType:l="loop"},u){const f=o.filter(HN),p=i&&l!=="loop"&&i%2===1?0:f.length-1;return f[p]}function _R(o,i){if(o?.inherit&&i){const{inherit:l,...u}=o;return{...i,...u}}return o}function Qg(o,i){const l=o?.[i]??o?.default??o;return l!==o?_R(l,o):l}function qN({when:o,delay:i,delayChildren:l,staggerChildren:u,staggerDirection:f,repeat:p,repeatType:h,repeatDelay:m,from:v,elapsed:T,...b}){return!!Object.keys(b).length}const Zg=(o,i,l,u={},f,p)=>h=>{const m=Qg(u,o)||{},v=m.delay||u.delay||0;let{elapsed:T=0}=u;T=T-aa(v);const b={keyframes:Array.isArray(l)?l:[null,l],ease:"easeOut",velocity:i.getVelocity(),...m,delay:-T,onUpdate:E=>{i.set(E),m.onUpdate&&m.onUpdate(E)},onComplete:()=>{h(),m.onComplete&&m.onComplete()},name:o,motionValue:i,element:p?void 0:f};qN(m)||Object.assign(b,LN(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)&&(hg(b),b.delay===0&&(A=!0)),(wo.instantAnimations||wo.skipAnimations||f?.shouldSkipAnimations)&&(A=!0,hg(b),b.delay=0),b.allowFlatten=!m.type&&!m.ease,A&&!p&&i.get()!==void 0){const E=kN(b.keyframes,m);if(E!==void 0){rt.update(()=>{b.onUpdate(E),b.onComplete()});return}}return m.isSync?new Xg(b):new MN(b)};function DA(o){const i=[{},{}];return o?.values.forEach((l,u)=>{i[0][u]=l.get(),i[1][u]=l.getVelocity()}),i}function Fg(o,i,l,u){if(typeof i=="function"){const[f,p]=DA(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]=DA(u);i=i(l!==void 0?l:o.custom,f,p)}return i}function Vr(o,i,l){const u=o.getProps();return Fg(u,i,l!==void 0?l:u.custom,o)}const NR=new Set(["width","height","top","left","right","bottom",...kr]),RA=30,YN=o=>!isNaN(parseFloat(o));class GN{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=YN(this.current))}setPrevFrameValue(i=this.current){this.prevFrameValue=i,this.prevUpdatedAt=this.updatedAt}onChange(i){return Vg(!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 zg);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>RA)return 0;const l=Math.min(this.updatedAt-this.prevUpdatedAt,RA);return KD(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 jr(o,i){return new GN(o,i)}const pg=o=>Array.isArray(o);function PN(o,i,l){o.hasValue(i)?o.getValue(i).set(l):o.addValue(i,jr(l))}function XN(o){return pg(o)?o[o.length-1]||0:o}function $N(o,i){const l=Vr(o,i);let{transitionEnd:u={},transition:f={},...p}=l||{};p={...p,...u};for(const h in p){const m=XN(p[h]);PN(o,h,m)}}const en=o=>!!(o&&o.getVelocity);function QN(o){return!!(en(o)&&o.add)}function mg(o,i){const l=o.getValue("willChange");if(QN(l))return l.add(i);if(!l&&wo.WillChange){const u=new wo.WillChange("auto");o.addValue("willChange",u),u.add(i)}}function Jg(o){return o.replace(/([A-Z])/g,i=>`-${i.toLowerCase()}`)}const ZN="framerAppearId",UR="data-"+Jg(ZN);function zR(o){return o.props[UR]}function FN({protectedKeys:o,needsAnimating:i},l){const u=o.hasOwnProperty(l)&&i[l]!==!0;return i[l]=!1,u}function VR(o,i,{delay:l=0,transitionOverride:u,type:f}={}){let{transition:p,transitionEnd:h,...m}=i;const v=o.getDefaultTransition();p=p?_R(p,v):v;const T=p?.reduceMotion;u&&(p=u);const b=[],A=f&&o.animationState&&o.animationState.getState()[f];for(const E in m){const M=o.getValue(E,o.latestValues[E]??null),D=m[E];if(D===void 0||A&&FN(A,E))continue;const V={delay:l,...Qg(p||{},E)},U=M.get();if(U!==void 0&&!M.isAnimating&&!Array.isArray(D)&&D===U&&!V.velocity)continue;let k=!1;if(window.MotionHandoffAnimation){const W=zR(o);if(W){const F=window.MotionHandoffAnimation(W,E,rt);F!==null&&(V.startTime=F,k=!0)}}mg(o,E);const X=T??o.shouldReduceMotion;M.start(Zg(E,M,D,X&&NR.has(E)?{type:!1}:V,o,k));const Y=M.animation;Y&&b.push(Y)}if(h){const E=()=>rt.update(()=>{h&&$N(o,h)});b.length?Promise.all(b).then(E):E()}return b}function yg(o,i,l={}){const u=Vr(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(VR(o,u,l)):()=>Promise.resolve(),h=o.variantChildren&&o.variantChildren.size?(v=0)=>{const{delayChildren:T=0,staggerChildren:b,staggerDirection:A}=f;return JN(o,i,v,T,b,A,l)}:()=>Promise.resolve(),{when:m}=f;if(m){const[v,T]=m==="beforeChildren"?[p,h]:[h,p];return v().then(()=>T())}else return Promise.all([p(),h(l.delay)])}function JN(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(yg(v,i,{...h,delay:l+(typeof u=="function"?0:u)+CR(o.variantChildren,v,u,f,p)}).then(()=>v.notify("AnimationComplete",i)));return Promise.all(m)}function IN(o,i,l={}){o.notify("AnimationStart",i);let u;if(Array.isArray(i)){const f=i.map(p=>yg(o,p,l));u=Promise.all(f)}else if(typeof i=="string")u=yg(o,i,l);else{const f=typeof i=="function"?Vr(o,i,l.custom):i;u=Promise.all(VR(o,f,l))}return u.then(()=>{o.notify("AnimationComplete",i)})}const KN={test:o=>o==="auto",parse:o=>o},jR=o=>i=>i.test(o),BR=[Hr,le,Fa,vi,R_,D_,KN],xA=o=>BR.find(jR(o));function WN(o){return typeof o=="number"?o===0:o!==null?o==="none"||o==="0"||ID(o):!0}const eU=new Set(["brightness","contrast","saturate","opacity"]);function tU(o){const[i,l]=o.slice(0,-1).split("(");if(i==="drop-shadow")return o;const[u]=l.match(Hg)||[];if(!u)return o;const f=l.replace(u,"");let p=eU.has(i)?1:0;return u!==l&&(p*=100),i+"("+p+f+")"}const nU=/\b([a-z-]*)\(.*?\)/gu,gg={...Ei,getAnimatableNone:o=>{const i=o.match(nU);return i?i.map(tU).join(" "):o}},wA={...Hr,transform:Math.round},aU={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:hA,originY:hA,originZ:le},Ig={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,...aU,zIndex:wA,fillOpacity:Uu,strokeOpacity:Uu,numOctaves:wA},oU={...Ig,color:Mt,backgroundColor:Mt,outlineColor:Mt,fill:Mt,stroke:Mt,borderColor:Mt,borderTopColor:Mt,borderRightColor:Mt,borderBottomColor:Mt,borderLeftColor:Mt,filter:gg,WebkitFilter:gg},LR=o=>oU[o];function HR(o,i){let l=LR(o);return l!==gg&&(l=Ei),l.getAnimatableNone?l.getAnimatableNone(i):void 0}const iU=new Set(["auto","none","0"]);function sU(o,i,l){let u=0,f;for(;u<o.length&&!f;){const p=o[u];typeof p=="string"&&!iU.has(p)&&zu(p).values.length&&(f=o[u]),u++}if(f&&l)for(const p of i)o[p]=HR(l,f)}class rU extends $g{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(),Lg(A))){const E=MR(A,l.current);E!==void 0&&(i[b]=E),b===i.length-1&&(this.finalKeyframe=A)}}if(this.resolveNoneKeyframes(),!NR.has(u)||i.length!==2)return;const[f,p]=i,h=xA(f),m=xA(p),v=dA(f),T=dA(p);if(v!==T&&bi[u]){this.needsMeasurement=!0;return}if(h!==m)if(EA(h)&&EA(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||WN(i[f]))&&u.push(f);u.length&&sU(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 lU=new Set(["opacity","clipPath","filter","transform"]);function kR(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 qR=(o,i)=>i&&typeof o=="number"?i.transform(o):o;function vg(o){return JD(o)&&"offsetHeight"in o}const{schedule:Kg}=uR(queueMicrotask,!1),ga={x:!1,y:!1};function YR(){return ga.x||ga.y}function uU(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 GR(o,i){const l=kR(o),u=new AbortController,f={passive:!0,...i,signal:u.signal};return[l,f,()=>u.abort()]}function cU(o){return!(o.pointerType==="touch"||YR())}function fU(o,i,l={}){const[u,f,p]=GR(o,l);return u.forEach(h=>{let m=!1,v=!1,T;const b=()=>{h.removeEventListener("pointerleave",D)},A=U=>{T&&(T(U),T=void 0),b()},E=U=>{m=!1,window.removeEventListener("pointerup",E),window.removeEventListener("pointercancel",E),v&&(v=!1,A(U))},M=()=>{m=!0,window.addEventListener("pointerup",E,f),window.addEventListener("pointercancel",E,f)},D=U=>{if(U.pointerType!=="touch"){if(m){v=!0;return}A(U)}},V=U=>{if(!cU(U))return;v=!1;const k=i(h,U);typeof k=="function"&&(T=k,h.addEventListener("pointerleave",D,f))};h.addEventListener("pointerenter",V,f),h.addEventListener("pointerdown",M,f)}),p}const PR=(o,i)=>i?o===i?!0:PR(o,i.parentElement):!1,Wg=o=>o.pointerType==="mouse"?typeof o.button!="number"||o.button<=0:o.isPrimary!==!1,dU=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]);function hU(o){return dU.has(o.tagName)||o.isContentEditable===!0}const pU=new Set(["INPUT","SELECT","TEXTAREA"]);function mU(o){return pU.has(o.tagName)||o.isContentEditable===!0}const gd=new WeakSet;function OA(o){return i=>{i.key==="Enter"&&o(i)}}function Hy(o,i){o.dispatchEvent(new PointerEvent("pointer"+i,{isPrimary:!0,bubbles:!0}))}const yU=(o,i)=>{const l=o.currentTarget;if(!l)return;const u=OA(()=>{if(gd.has(l))return;Hy(l,"down");const f=OA(()=>{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 CA(o){return Wg(o)&&!YR()}const MA=new WeakSet;function gU(o,i,l={}){const[u,f,p]=GR(o,l),h=m=>{const v=m.currentTarget;if(!CA(m)||MA.has(m))return;gd.add(v),l.stopPropagation&&MA.add(m);const T=i(v,m),b=(M,D)=>{window.removeEventListener("pointerup",A),window.removeEventListener("pointercancel",E),gd.has(v)&&gd.delete(v),CA(M)&&typeof T=="function"&&T(M,{success:D})},A=M=>{b(M,v===window||v===document||l.useGlobalTarget||PR(v,M.target))},E=M=>{b(M,!1)};window.addEventListener("pointerup",A,f),window.addEventListener("pointercancel",E,f)};return u.forEach(m=>{(l.useGlobalTarget?window:m).addEventListener("pointerdown",h,f),vg(m)&&(m.addEventListener("focus",T=>yU(T,f)),!hU(m)&&!m.hasAttribute("tabindex")&&(m.tabIndex=0))}),p}function ev(o){return JD(o)&&"ownerSVGElement"in o}const vd=new WeakMap;let bd;const XR=(o,i,l)=>(u,f)=>f&&f[0]?f[0][o+"Size"]:ev(u)&&"getBBox"in u?u.getBBox()[i]:u[l],vU=XR("inline","width","offsetWidth"),bU=XR("block","height","offsetHeight");function SU({target:o,borderBoxSize:i}){vd.get(o)?.forEach(l=>{l(o,{get width(){return vU(o,i)},get height(){return bU(o,i)}})})}function EU(o){o.forEach(SU)}function TU(){typeof ResizeObserver>"u"||(bd=new ResizeObserver(EU))}function AU(o,i){bd||TU();const l=kR(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 _r;function DU(){_r=()=>{const o={get width(){return window.innerWidth},get height(){return window.innerHeight}};Sd.forEach(i=>i(o))},window.addEventListener("resize",_r)}function RU(o){return Sd.add(o),_r||DU(),()=>{Sd.delete(o),!Sd.size&&typeof _r=="function"&&(window.removeEventListener("resize",_r),_r=void 0)}}function _A(o,i){return typeof o=="function"?RU(o):AU(o,i)}function xU(o){return ev(o)&&o.tagName==="svg"}const wU=[...BR,Mt,Ei],OU=o=>wU.find(jR(o)),NA=()=>({translate:0,scale:1,origin:0,originPoint:0}),Nr=()=>({x:NA(),y:NA()}),UA=()=>({min:0,max:0}),zt=()=>({x:UA(),y:UA()}),CU=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 tv=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],nv=["initial",...tv];function Bd(o){return jd(o.animate)||nv.some(i=>Vu(o[i]))}function $R(o){return!!(Bd(o)||o.variants)}function MU(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,jr(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,jr(h!==void 0?h:f,{owner:o}))}}for(const u in l)i[u]===void 0&&o.removeValue(u);return i}const bg={current:null},QR={current:!1},_U=typeof window<"u";function NU(){if(QR.current=!0,!!_U)if(window.matchMedia){const o=window.matchMedia("(prefers-reduced-motion)"),i=()=>bg.current=o.matches;o.addEventListener("change",i),i()}else bg.current=!1}const zA=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];let Md={};function ZR(o){Md=o}function UU(){return Md}class zU{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=$g,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 M=dn.now();this.renderScheduledAt<M&&(this.renderScheduledAt=M,rt.render(this.render,!1,!0))};const{latestValues:T,renderState:b}=m;this.latestValues=T,this.baseTarget={...T},this.initialValues=l.initial?{...T}:{},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=$R(l),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(i&&i.current);const{willChange:A,...E}=this.scrapeMotionValuesFromProps(l,{},this);for(const M in E){const D=E[M];T[M]!==void 0&&en(D)&&D.set(T[M])}}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,CU.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:(QR.current||NU(),this.shouldReduceMotion=bg.current),Vg(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&&lU.has(i)&&this.current instanceof HTMLElement){const{factory:h,keyframes:m,times:v,ease:T,duration:b}=l.accelerate,A=new wR({element:this.current,name:i,keyframes:m,times:v,ease:T,duration:aa(b)}),E=h(A);this.valueSubscriptions.set(i,()=>{E(),A.cancel()});return}const u=qr.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<zA.length;u++){const f=zA[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=MU(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=jr(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"&&(FD(u)||ID(u))?u=parseFloat(u):!OU(u)&&Ei.test(l)&&(u=HR(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=Fg(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 zg),this.events[i].add(l)}notify(i,...l){this.events[i]&&this.events[i].notify(...l)}scheduleRenderMicrotask(){Kg.render(this.render)}}class FR extends zU{constructor(){super(...arguments),this.KeyframeResolver=rU}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 Ti{constructor(i){this.isMounted=!1,this.node=i}update(){}}function JR({top:o,left:i,right:l,bottom:u}){return{x:{min:i,max:l},y:{min:o,max:u}}}function VU({x:o,y:i}){return{top:i.min,right:o.max,bottom:i.max,left:o.min}}function jU(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 Sg({scale:o,scaleX:i,scaleY:l}){return!ky(o)||!ky(i)||!ky(l)}function ps(o){return Sg(o)||IR(o)||o.z||o.rotate||o.rotateX||o.rotateY||o.skewX||o.skewY}function IR(o){return VA(o.x)||VA(o.y)}function VA(o){return o&&o!=="0%"}function _d(o,i,l){const u=o-l,f=i*u;return l+f}function jA(o,i,l,u,f){return f!==void 0&&(o=_d(o,f,u)),_d(o,l,u)+i}function Eg(o,i=0,l=1,u,f){o.min=jA(o.min,i,l,u,f),o.max=jA(o.max,i,l,u,f)}function KR(o,{x:i,y:l}){Eg(o.x,i.translate,i.scale,i.originPoint),Eg(o.y,l.translate,l.scale,l.originPoint)}const BA=.999999999999,LA=1.0000000000001;function BU(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&&zr(o,{x:-p.scroll.offset.x,y:-p.scroll.offset.y}),h&&(i.x*=h.x.scale,i.y*=h.y.scale,KR(o,h)),u&&ps(p.latestValues)&&zr(o,p.latestValues))}i.x<LA&&i.x>BA&&(i.x=1),i.y<LA&&i.y>BA&&(i.y=1)}function Ur(o,i){o.min=o.min+i,o.max=o.max+i}function HA(o,i,l,u,f=.5){const p=yt(o.min,o.max,f);Eg(o,i,l,p,u)}function zr(o,i){HA(o.x,i.x,i.scaleX,i.scale,i.originX),HA(o.y,i.y,i.scaleY,i.scale,i.originY)}function WR(o,i){return JR(jU(o.getBoundingClientRect(),i))}function LU(o,i,l){const u=WR(o,l),{scroll:f}=i;return f&&(Ur(u.x,f.offset.x),Ur(u.y,f.offset.y)),u}const HU={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},kU=kr.length;function qU(o,i,l){let u="",f=!0;for(let p=0;p<kU;p++){const h=kr[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 T=parseFloat(m);v=h.startsWith("scale")?T===1:T===0}if(!v||l){const T=qR(m,Ig[h]);if(!v){f=!1;const b=HU[h]||h;u+=`${b}(${T}) `}l&&(i[h]=T)}}return u=u.trim(),l?u=l(i,f?"":u):f&&(u="none"),u}function av(o,i,l){const{style:u,vars:f,transformOrigin:p}=o;let h=!1,m=!1;for(const v in i){const T=i[v];if(qr.has(v)){h=!0;continue}else if(fR(v)){f[v]=T;continue}else{const b=qR(T,Ig[v]);v.startsWith("origin")?(m=!0,p[v]=b):u[v]=b}}if(i.transform||(h||l?u.transform=qU(i,o.transform,l):u.transform&&(u.transform="none")),m){const{originX:v="50%",originY:T="50%",originZ:b=0}=p;u.transformOrigin=`${v} ${T} ${b}`}}function ex(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 kA(o,i){return i.max===i.min?0:o/(i.max-i.min)*100}const Du={correct:(o,i)=>{if(!i.target)return o;if(typeof o=="string")if(le.test(o))o=parseFloat(o);else return o;const l=kA(o,i.target.x),u=kA(o,i.target.y);return`${l}% ${u}%`}},YU={correct:(o,{treeScale:i,projectionDelta:l})=>{const u=o,f=Ei.parse(o);if(f.length>5)return u;const p=Ei.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 T=yt(m,v,.5);return typeof f[2+h]=="number"&&(f[2+h]/=T),typeof f[3+h]=="number"&&(f[3+h]/=T),p(f)}},Tg={borderRadius:{...Du,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Du,borderTopRightRadius:Du,borderBottomLeftRadius:Du,borderBottomRightRadius:Du,boxShadow:YU};function tx(o,{layout:i,layoutId:l}){return qr.has(o)||o.startsWith("origin")||(i||l!==void 0)&&(!!Tg[o]||o==="opacity")}function ov(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])||tx(h,o)||l?.getValue(h)?.liveStyle!==void 0)&&(p[h]=u[h]);return p}function GU(o){return window.getComputedStyle(o)}class PU extends FR{constructor(){super(...arguments),this.type="html",this.renderInstance=ex}readValueFromInstance(i,l){if(qr.has(l))return this.projection?.isProjecting?lg(l):lN(i,l);{const u=GU(i),f=(fR(l)?u.getPropertyValue(l):u[l])||0;return typeof f=="string"?f.trim():f}}measureInstanceViewportBox(i,{transformPagePoint:l}){return WR(i,l)}build(i,l,u){av(i,l,u.transformTemplate)}scrapeMotionValuesFromProps(i,l,u){return ov(i,l,u)}}const XU={offset:"stroke-dashoffset",array:"stroke-dasharray"},$U={offset:"strokeDashoffset",array:"strokeDasharray"};function QU(o,i,l=1,u=0,f=!0){o.pathLength=1;const p=f?XU:$U;o[p.offset]=`${-u}`,o[p.array]=`${i} ${l}`}const ZU=["offsetDistance","offsetPath","offsetRotate","offsetAnchor"];function nx(o,{attrX:i,attrY:l,attrScale:u,pathLength:f,pathSpacing:p=1,pathOffset:h=0,...m},v,T,b){if(av(o,m,T),v){o.style.viewBox&&(o.attrs.viewBox=o.style.viewBox);return}o.attrs=o.style,o.style={};const{attrs:A,style:E}=o;A.transform&&(E.transform=A.transform,delete A.transform),(E.transform||A.transformOrigin)&&(E.transformOrigin=A.transformOrigin??"50% 50%",delete A.transformOrigin),E.transform&&(E.transformBox=b?.transformBox??"fill-box",delete A.transformBox);for(const M of ZU)A[M]!==void 0&&(E[M]=A[M],delete A[M]);i!==void 0&&(A.x=i),l!==void 0&&(A.y=l),u!==void 0&&(A.scale=u),f!==void 0&&QU(A,f,p,h,!1)}const ax=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"]),ox=o=>typeof o=="string"&&o.toLowerCase()==="svg";function FU(o,i,l,u){ex(o,i,void 0,u);for(const f in i.attrs)o.setAttribute(ax.has(f)?f:Jg(f),i.attrs[f])}function ix(o,i,l){const u=ov(o,i,l);for(const f in o)if(en(o[f])||en(i[f])){const p=kr.indexOf(f)!==-1?"attr"+f.charAt(0).toUpperCase()+f.substring(1):f;u[p]=o[f]}return u}class JU extends FR{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=zt}getBaseTargetFromProps(i,l){return i[l]}readValueFromInstance(i,l){if(qr.has(l)){const u=LR(l);return u&&u.default||0}return l=ax.has(l)?l:Jg(l),i.getAttribute(l)}scrapeMotionValuesFromProps(i,l,u){return ix(i,l,u)}build(i,l,u){nx(i,l,this.isSVGTag,u.transformTemplate,u.style)}renderInstance(i,l,u,f){FU(i,l,u,f)}mount(i){this.isSVGTag=ox(i.tagName),super.mount(i)}}const IU=nv.length;function sx(o){if(!o)return;if(!o.isControllingVariants){const l=o.parent?sx(o.parent)||{}:{};return o.props.initial!==void 0&&(l.initial=o.props.initial),l}const i={};for(let l=0;l<IU;l++){const u=nv[l],f=o.props[u];(Vu(f)||f===!1)&&(i[u]=f)}return i}function rx(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 KU=[...tv].reverse(),WU=tv.length;function ez(o){return i=>Promise.all(i.map(({animation:l,options:u})=>IN(o,l,u)))}function tz(o){let i=ez(o),l=qA(),u=!0;const f=v=>(T,b)=>{const A=Vr(o,b,v==="exit"?o.presenceContext?.custom:void 0);if(A){const{transition:E,transitionEnd:M,...D}=A;T={...T,...D,...M}}return T};function p(v){i=v(o)}function h(v){const{props:T}=o,b=sx(o.parent)||{},A=[],E=new Set;let M={},D=1/0;for(let U=0;U<WU;U++){const k=KU[U],X=l[k],Y=T[k]!==void 0?T[k]:b[k],W=Vu(Y),F=k===v?X.isActive:null;F===!1&&(D=U);let Ee=Y===b[k]&&Y!==T[k]&&W;if(Ee&&u&&o.manuallyAnimateOnMount&&(Ee=!1),X.protectedKeys={...M},!X.isActive&&F===null||!Y&&!X.prevProp||jd(Y)||typeof Y=="boolean")continue;if(k==="exit"&&X.isActive&&F!==!0){X.prevResolvedValues&&(M={...M,...X.prevResolvedValues});continue}const ve=nz(X.prevProp,Y);let ee=ve||k===v&&X.isActive&&!Ee&&W||U>D&&W,ce=!1;const J=Array.isArray(Y)?Y:[Y];let Xe=J.reduce(f(k),{});F===!1&&(Xe={});const{prevResolvedValues:fe={}}=X,be={...fe,...Xe},Ze=ae=>{ee=!0,E.has(ae)&&(ce=!0,E.delete(ae)),X.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(M.hasOwnProperty(ae))continue;let Be=!1;pg(ie)&&pg(xe)?Be=!rx(ie,xe):Be=ie!==xe,Be?ie!=null?Ze(ae):E.add(ae):ie!==void 0&&E.has(ae)?Ze(ae):X.protectedKeys[ae]=!0}X.prevProp=Y,X.prevResolvedValues=Xe,X.isActive&&(M={...M,...Xe}),u&&o.blockInitialAnimation&&(ee=!1);const lt=Ee&&ve;ee&&(!lt||ce)&&A.push(...J.map(ae=>{const ie={type:k};if(typeof ae=="string"&&u&&!lt&&o.manuallyAnimateOnMount&&o.parent){const{parent:xe}=o,Be=Vr(xe,ae);if(xe.enteringChildren&&Be){const{delayChildren:O}=Be.transition||{};ie.delay=CR(xe.enteringChildren,o,O)}}return{animation:ae,options:ie}}))}if(E.size){const U={};if(typeof T.initial!="boolean"){const k=Vr(o,Array.isArray(T.initial)?T.initial[0]:T.initial);k&&k.transition&&(U.transition=k.transition)}E.forEach(k=>{const X=o.getBaseTarget(k),Y=o.getValue(k);Y&&(Y.liveStyle=!0),U[k]=X??null}),A.push({animation:U})}let V=!!A.length;return u&&(T.initial===!1||T.initial===T.animate)&&!o.manuallyAnimateOnMount&&(V=!1),u=!1,V?i(A):Promise.resolve()}function m(v,T){if(l[v].isActive===T)return Promise.resolve();o.variantChildren?.forEach(A=>A.animationState?.setActive(v,T)),l[v].isActive=T;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=qA()}}}function nz(o,i){return typeof i=="string"?i!==o:Array.isArray(i)?!rx(i,o):!1}function hs(o=!1){return{isActive:o,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function qA(){return{animate:hs(!0),whileInView:hs(),whileHover:hs(),whileTap:hs(),whileDrag:hs(),whileFocus:hs(),exit:hs()}}function YA(o,i){o.min=i.min,o.max=i.max}function ya(o,i){YA(o.x,i.x),YA(o.y,i.y)}function GA(o,i){o.translate=i.translate,o.scale=i.scale,o.originPoint=i.originPoint,o.origin=i.origin}const lx=1e-4,az=1-lx,oz=1+lx,ux=.01,iz=0-ux,sz=0+ux;function hn(o){return o.max-o.min}function rz(o,i,l){return Math.abs(o-i)<=l}function PA(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>=az&&o.scale<=oz||isNaN(o.scale))&&(o.scale=1),(o.translate>=iz&&o.translate<=sz||isNaN(o.translate))&&(o.translate=0)}function Mu(o,i,l,u){PA(o.x,i.x,l.x,u?u.originX:void 0),PA(o.y,i.y,l.y,u?u.originY:void 0)}function XA(o,i,l){o.min=l.min+i.min,o.max=o.min+hn(i)}function lz(o,i,l){XA(o.x,i.x,l.x),XA(o.y,i.y,l.y)}function $A(o,i,l){o.min=i.min-l.min,o.max=o.min+hn(i)}function Nd(o,i,l){$A(o.x,i.x,l.x),$A(o.y,i.y,l.y)}function QA(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 uz(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=QA(o.min,i,l,m,f),o.max=QA(o.max,i,l,m,f)}function ZA(o,i,[l,u,f],p,h){uz(o,i[l],i[u],i[f],i.scale,p,h)}const cz=["x","scaleX","originX"],fz=["y","scaleY","originY"];function FA(o,i,l,u){ZA(o.x,i,cz,l?l.x:void 0,u?u.x:void 0),ZA(o.y,i,fz,l?l.y:void 0,u?u.y:void 0)}function JA(o){return o.translate===0&&o.scale===1}function cx(o){return JA(o.x)&&JA(o.y)}function IA(o,i){return o.min===i.min&&o.max===i.max}function dz(o,i){return IA(o.x,i.x)&&IA(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 fx(o,i){return KA(o.x,i.x)&&KA(o.y,i.y)}function WA(o){return hn(o.x)/hn(o.y)}function eD(o,i){return o.translate===i.translate&&o.scale===i.scale&&o.originPoint===i.originPoint}function Za(o){return[o("x"),o("y")]}function hz(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:T,rotate:b,rotateX:A,rotateY:E,skewX:M,skewY:D}=l;T&&(u=`perspective(${T}px) ${u}`),b&&(u+=`rotate(${b}deg) `),A&&(u+=`rotateX(${A}deg) `),E&&(u+=`rotateY(${E}deg) `),M&&(u+=`skewX(${M}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 dx=["TopLeft","TopRight","BottomLeft","BottomRight"],pz=dx.length,tD=o=>typeof o=="string"?parseFloat(o):o,nD=o=>typeof o=="number"||le.test(o);function mz(o,i,l,u,f,p){f?(o.opacity=yt(0,l.opacity??1,yz(u)),o.opacityExit=yt(i.opacity??1,0,gz(u))):p&&(o.opacity=yt(i.opacity??1,l.opacity??1,u));for(let h=0;h<pz;h++){const m=`border${dx[h]}Radius`;let v=aD(i,m),T=aD(l,m);if(v===void 0&&T===void 0)continue;v||(v=0),T||(T=0),v===0||T===0||nD(v)===nD(T)?(o[m]=Math.max(yt(tD(v),tD(T),u),0),(Fa.test(T)||Fa.test(v))&&(o[m]+="%")):o[m]=T}(i.rotate||l.rotate)&&(o.rotate=yt(i.rotate||0,l.rotate||0,u))}function aD(o,i){return o[i]!==void 0?o[i]:o.borderRadius}const yz=hx(0,.5,iR),gz=hx(.5,.95,na);function hx(o,i,l){return u=>u<o?0:u>i?1:l(Nu(o,i,u))}function vz(o,i,l){const u=en(o)?o:jr(o);return u.start(Zg("",u,i,l)),u.animation}function ju(o,i,l,u={passive:!0}){return o.addEventListener(i,l,u),()=>o.removeEventListener(i,l)}const bz=(o,i)=>o.depth-i.depth;class Sz{constructor(){this.children=[],this.isDirty=!1}add(i){Ng(this.children,i),this.isDirty=!0}remove(i){xd(this.children,i),this.isDirty=!0}forEach(i){this.isDirty&&this.children.sort(bz),this.isDirty=!1,this.children.forEach(i)}}function Ez(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 Ed(o){return en(o)?o.get():o}class Tz{constructor(){this.members=[]}add(i){Ng(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 Td={hasAnimatedSinceResize:!0,hasEverUpdated:!1},qy=["","X","Y","Z"],Az=1e3;let Dz=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 px(o){if(o.hasCheckedOptimisedAppear=!0,o.root===o)return;const{visualElement:i}=o.options;if(!i)return;const l=zR(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&&px(u)}function mx({attachResizeListener:o,defaultParent:i,measureScroll:l,checkIsScrollRoot:u,resetTransform:f}){return class{constructor(h={},m=i?.()){this.id=Dz++,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(wz),this.nodes.forEach(_z),this.nodes.forEach(Nz),this.nodes.forEach(Oz)},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 Sz)}addEventListener(h,m){return this.eventHandlers.has(h)||this.eventHandlers.set(h,new zg),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=ev(h)&&!xU(h),this.instance=h;const{layoutId:m,layout:v,visualElement:T}=this.options;if(T&&!T.current&&T.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 E=()=>this.root.updateBlockedByResize=!1;rt.read(()=>{A=window.innerWidth}),o(h,()=>{const M=window.innerWidth;M!==A&&(A=M,this.root.updateBlockedByResize=!0,b&&b(),b=Ez(E,250),Td.hasAnimatedSinceResize&&(Td.hasAnimatedSinceResize=!1,this.nodes.forEach(sD)))})}m&&this.root.registerSharedNode(m,this),this.options.animate!==!1&&T&&(m||v)&&this.addEventListener("didUpdate",({delta:b,hasLayoutChanged:A,hasRelativeLayoutChanged:E,layout:M})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const D=this.options.transition||T.getDefaultTransition()||Bz,{onLayoutAnimationStart:V,onLayoutAnimationComplete:U}=T.getProps(),k=!this.targetLayout||!fx(this.targetLayout,M),X=!A&&E;if(this.options.layoutRoot||this.resumeFrom||X||A&&(k||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0);const Y={...Qg(D,"layout"),onPlay:V,onComplete:U};(T.shouldReduceMotion||this.options.layoutRoot)&&(Y.delay=0,Y.type=!1),this.startAnimation(Y),this.setAnimationOrigin(b,X)}else A||sD(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=M})}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(Uz),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&&px(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 T=this.getTransformTemplate();this.prevTransformTemplateValue=T?T(this.latestValues,""):void 0,this.updateSnapshot(),h&&this.notifyListeners("willUpdate")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked()){this.unblockUpdate(),this.clearAllSnapshots(),this.nodes.forEach(oD);return}if(this.animationId<=this.animationCommitId){this.nodes.forEach(iD);return}this.animationCommitId=this.animationId,this.isUpdating?(this.isUpdating=!1,this.nodes.forEach(Mz),this.nodes.forEach(Rz),this.nodes.forEach(xz)):this.nodes.forEach(iD),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,Kg.read(this.scheduleUpdate))}clearAllSnapshots(){this.nodes.forEach(Cz),this.sharedNodes.forEach(zz)}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&&!cx(this.projectionDelta),v=this.getTransformTemplate(),T=v?v(this.latestValues,""):void 0,b=T!==this.prevTransformTemplateValue;h&&this.instance&&(m||ps(this.latestValues)||b)&&(f(this.instance,T),this.shouldResetTransform=!1,this.scheduleRender())}measure(h=!0){const m=this.measurePageBox();let v=this.removeElementScroll(m);return h&&(v=this.removeTransform(v)),Lz(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(Hz))){const{scroll:T}=this.root;T&&(Ur(m.x,T.offset.x),Ur(m.y,T.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 T=this.path[v],{scroll:b,options:A}=T;T!==this.root&&b&&A.layoutScroll&&(b.wasRoot&&ya(m,h),Ur(m.x,b.offset.x),Ur(m.y,b.offset.y))}return m}applyTransform(h,m=!1){const v=zt();ya(v,h);for(let T=0;T<this.path.length;T++){const b=this.path[T];!m&&b.options.layoutScroll&&b.scroll&&b!==b.root&&zr(v,{x:-b.scroll.offset.x,y:-b.scroll.offset.y}),ps(b.latestValues)&&zr(v,b.latestValues)}return ps(this.latestValues)&&zr(v,this.latestValues),v}removeTransform(h){const m=zt();ya(m,h);for(let v=0;v<this.path.length;v++){const T=this.path[v];if(!T.instance||!ps(T.latestValues))continue;Sg(T.latestValues)&&T.updateSnapshot();const b=zt(),A=T.measurePageBox();ya(b,A),FA(m,T.latestValues,T.snapshot?T.snapshot.layoutBox:void 0,b)}return ps(this.latestValues)&&FA(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 E=this.getClosestProjectingParent();E&&this.linkedParentVersion!==E.layoutVersion&&!E.options.layoutRoot&&this.removeRelativeTarget(),!this.targetDelta&&!this.relativeTarget&&(E&&E.layout?this.createRelativeTarget(E,this.layout.layoutBox,E.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(),lz(this.target,this.relativeTarget,this.relativeParent.target)):this.targetDelta?(this.resumingFrom?this.target=this.applyTransform(this.layout.layoutBox):ya(this.target,this.layout.layoutBox),KR(this.target,this.targetDelta)):ya(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget&&(this.attemptToResolveRelativeTarget=!1,E&&!!E.resumingFrom==!!this.resumingFrom&&!E.options.layoutScroll&&E.target&&this.animationProgress!==1?this.createRelativeTarget(E,this.target,E.target):this.relativeParent=this.relativeTarget=void 0))}getClosestProjectingParent(){if(!(!this.parent||Sg(this.parent.latestValues)||IR(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:T,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||!(T||b))return;ya(this.layoutCorrected,this.layout.layoutBox);const A=this.treeScale.x,E=this.treeScale.y;BU(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:M}=h;if(!M){this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender());return}!this.projectionDelta||!this.prevProjectionDelta?this.createProjectionDeltas():(GA(this.prevProjectionDelta.x,this.projectionDelta.x),GA(this.prevProjectionDelta.y,this.projectionDelta.y)),Mu(this.projectionDelta,this.layoutCorrected,M,this.latestValues),(this.treeScale.x!==A||this.treeScale.y!==E||!eD(this.projectionDelta.x,this.prevProjectionDelta.x)||!eD(this.projectionDelta.y,this.prevProjectionDelta.y))&&(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",M))}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=Nr(),this.projectionDelta=Nr(),this.projectionDeltaWithTransform=Nr()}setAnimationOrigin(h,m=!1){const v=this.snapshot,T=v?v.latestValues:{},b={...this.latestValues},A=Nr();(!this.relativeParent||!this.relativeParent.options.layoutRoot)&&(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!m;const E=zt(),M=v?v.source:void 0,D=this.layout?this.layout.source:void 0,V=M!==D,U=this.getStack(),k=!U||U.members.length<=1,X=!!(V&&!k&&this.options.crossfade===!0&&!this.path.some(jz));this.animationProgress=0;let Y;this.mixTargetDelta=W=>{const F=W/1e3;rD(A.x,h.x,F),rD(A.y,h.y,F),this.setTargetDelta(A),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(Nd(E,this.layout.layoutBox,this.relativeParent.layout.layoutBox),Vz(this.relativeTarget,this.relativeTargetOrigin,E,F),Y&&dz(this.relativeTarget,Y)&&(this.isProjectionDirty=!1),Y||(Y=zt()),ya(Y,this.relativeTarget)),V&&(this.animationValues=b,mz(b,T,this.latestValues,F,X,k)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=F},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(()=>{Td.hasAnimatedSinceResize=!0,this.motionValue||(this.motionValue=jr(0)),this.currentAnimation=vz(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(Az),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const h=this.getLead();let{targetWithTransforms:m,target:v,layout:T,latestValues:b}=h;if(!(!m||!v||!T)){if(this!==h&&this.layout&&T&&yx(this.options.animationType,this.layout.layoutBox,T.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 E=hn(this.layout.layoutBox.y);v.y.min=h.target.y.min,v.y.max=v.y.min+E}ya(m,v),zr(m,b),Mu(this.projectionDeltaWithTransform,this.layoutCorrected,m,b)}}registerSharedNode(h,m){this.sharedNodes.has(h)||this.sharedNodes.set(h,new Tz),this.sharedNodes.get(h).add(m);const T=m.options.initialPromotionConfig;m.promote({transition:T?T.transition:void 0,preserveFollowOpacity:T&&T.shouldPreserveFollowOpacity?T.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 T=this.getStack();T&&T.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 T={};v.z&&Yy("z",h,T,this.animationValues);for(let b=0;b<qy.length;b++)Yy(`rotate${qy[b]}`,h,T,this.animationValues),Yy(`skew${qy[b]}`,h,T,this.animationValues);h.render();for(const b in T)h.setStaticValue(b,T[b]),this.animationValues&&(this.animationValues[b]=T[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=Ed(m?.pointerEvents)||"",h.transform=v?v(this.latestValues,""):"none";return}const T=this.getLead();if(!this.projectionDelta||!this.layout||!T.target){this.options.layoutId&&(h.opacity=this.latestValues.opacity!==void 0?this.latestValues.opacity:1,h.pointerEvents=Ed(m?.pointerEvents)||""),this.hasProjected&&!ps(this.latestValues)&&(h.transform=v?v({},""):"none",this.hasProjected=!1);return}h.visibility="";const b=T.animationValues||T.latestValues;this.applyTransformsToTarget();let A=hz(this.projectionDeltaWithTransform,this.treeScale,b);v&&(A=v(b,A)),h.transform=A;const{x:E,y:M}=this.projectionDelta;h.transformOrigin=`${E.origin*100}% ${M.origin*100}% 0`,T.animationValues?h.opacity=T===this?b.opacity??this.latestValues.opacity??1:this.preserveOpacity?this.latestValues.opacity:b.opacityExit:h.opacity=T===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:V,applyTo:U,isCSSVariable:k}=Tg[D],X=A==="none"?b[D]:V(b[D],T);if(U){const Y=U.length;for(let W=0;W<Y;W++)h[U[W]]=X}else k?this.options.visualElement.renderState.vars[D]=X:h[D]=X}this.options.layoutId&&(h.pointerEvents=T===this?Ed(m?.pointerEvents)||"":"none")}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach(h=>h.currentAnimation?.stop()),this.root.nodes.forEach(oD),this.root.sharedNodes.clear()}}}function Rz(o){o.updateLayout()}function xz(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],E=hn(A);A.min=l[b].min,A.max=A.min+E}):yx(f,i.layoutBox,l)&&Za(b=>{const A=p?i.measuredBox[b]:i.layoutBox[b],E=hn(l[b]);A.max=A.min+E,o.relativeTarget&&!o.currentAnimation&&(o.isProjectionDirty=!0,o.relativeTarget[b].max=o.relativeTarget[b].min+E)});const h=Nr();Mu(h,l,i.layoutBox);const m=Nr();p?Mu(m,o.applyTransform(u,!0),i.measuredBox):Mu(m,l,i.layoutBox);const v=!cx(h);let T=!1;if(!o.resumeFrom){const b=o.getClosestProjectingParent();if(b&&!b.resumeFrom){const{snapshot:A,layout:E}=b;if(A&&E){const M=zt();Nd(M,i.layoutBox,A.layoutBox);const D=zt();Nd(D,l,E.layoutBox),fx(M,D)||(T=!0),b.options.layoutRoot&&(o.relativeTarget=D,o.relativeTargetOrigin=M,o.relativeParent=b)}}}o.notifyListeners("didUpdate",{layout:l,snapshot:i,delta:m,layoutDelta:h,hasLayoutChanged:v,hasRelativeLayoutChanged:T})}else if(o.isLead()){const{onExitComplete:l}=o.options;l&&l()}o.options.transition=void 0}function wz(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 Oz(o){o.isProjectionDirty=o.isSharedProjectionDirty=o.isTransformDirty=!1}function Cz(o){o.clearSnapshot()}function oD(o){o.clearMeasurements()}function iD(o){o.isLayoutDirty=!1}function Mz(o){const{visualElement:i}=o.options;i&&i.getProps().onBeforeLayoutMeasure&&i.notify("BeforeLayoutMeasure"),o.resetTransform()}function sD(o){o.finishAnimation(),o.targetDelta=o.relativeTarget=o.target=void 0,o.isProjectionDirty=!0}function _z(o){o.resolveTargetDelta()}function Nz(o){o.calcProjection()}function Uz(o){o.resetSkewAndRotation()}function zz(o){o.removeLeadSnapshot()}function rD(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 lD(o,i,l,u){o.min=yt(i.min,l.min,u),o.max=yt(i.max,l.max,u)}function Vz(o,i,l,u){lD(o.x,i.x,l.x,u),lD(o.y,i.y,l.y,u)}function jz(o){return o.animationValues&&o.animationValues.opacityExit!==void 0}const Bz={duration:.45,ease:[.4,0,.1,1]},uD=o=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(o),cD=uD("applewebkit/")&&!uD("chrome/")?Math.round:na;function fD(o){o.min=cD(o.min),o.max=cD(o.max)}function Lz(o){fD(o.x),fD(o.y)}function yx(o,i,l){return o==="position"||o==="preserve-aspect"&&!rz(WA(i),WA(l),.2)}function Hz(o){return o!==o.root&&o.scroll?.wasRoot}const kz=mx({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},gx=mx({measureScroll:o=>({x:o.scrollLeft,y:o.scrollTop}),defaultParent:()=>{if(!Gy.current){const o=new kz({});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"}),iv=te.createContext({transformPagePoint:o=>o,isStatic:!1,reducedMotion:"never"});function dD(o,i){if(typeof o=="function")return o(i);o!=null&&(o.current=i)}function qz(...o){return i=>{let l=!1;const u=o.map(f=>{const p=dD(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():dD(o[f],null)}}}}function Yz(...o){return te.useCallback(qz(...o),o)}class Gz extends te.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=vg(u)&&u.offsetWidth||0,p=vg(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 Pz({children:o,isPresent:i,anchorX:l,anchorY:u,root:f,pop:p}){const h=te.useId(),m=te.useRef(null),v=te.useRef({width:0,height:0,top:0,left:0,right:0,bottom:0}),{nonce:T}=te.useContext(iv),b=o.props?.ref??o?.ref,A=Yz(m,b);return te.useInsertionEffect(()=>{const{width:E,height:M,top:D,left:V,right:U,bottom:k}=v.current;if(i||p===!1||!m.current||!E||!M)return;const X=l==="left"?`left: ${V}`:`right: ${U}`,Y=u==="bottom"?`bottom: ${k}`:`top: ${D}`;m.current.dataset.motionPopId=h;const W=document.createElement("style");T&&(W.nonce=T);const F=f??document.head;return F.appendChild(W),W.sheet&&W.sheet.insertRule(`
241
+ [data-motion-pop-id="${h}"] {
242
+ position: absolute !important;
243
+ width: ${E}px !important;
244
+ height: ${M}px !important;
245
+ ${X}px !important;
246
+ ${Y}px !important;
247
+ }
248
+ `),()=>{F.contains(W)&&F.removeChild(W)}},[i]),Ro.jsx(Gz,{isPresent:i,childRef:m,sizeRef:v,pop:p,children:p===!1?o:te.cloneElement(o,{ref:A})})}const Xz=({children:o,initial:i,isPresent:l,onExitComplete:u,custom:f,presenceAffectsLayout:p,mode:h,anchorX:m,anchorY:v,root:T})=>{const b=_g($z),A=te.useId();let E=!0,M=te.useMemo(()=>(E=!1,{id:A,initial:i,isPresent:l,custom:f,onExitComplete:D=>{b.set(D,!0);for(const V of b.values())if(!V)return;u&&u()},register:D=>(b.set(D,!1),()=>b.delete(D))}),[l,b,u]);return p&&E&&(M={...M}),te.useMemo(()=>{b.forEach((D,V)=>b.set(V,!1))},[l]),te.useEffect(()=>{!l&&!b.size&&u&&u()},[l]),o=Ro.jsx(Pz,{pop:h==="popLayout",isPresent:l,anchorX:m,anchorY:v,root:T,children:o}),Ro.jsx(Vd.Provider,{value:M,children:o})};function $z(){return new Map}function vx(o=!0){const i=te.useContext(Vd);if(i===null)return[!0,null];const{isPresent:l,onExitComplete:u,register:f}=i,p=te.useId();te.useEffect(()=>{if(o)return f(p)},[o]);const h=te.useCallback(()=>o&&u&&u(p),[p,u,o]);return!l&&u?[!1,h]:[!0]}const hd=o=>o.key||"";function hD(o){const i=[];return te.Children.forEach(o,l=>{te.isValidElement(l)&&i.push(l)}),i}const pD=({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:T})=>{const[b,A]=vx(h),E=te.useMemo(()=>hD(o),[o]),M=h&&!b?[]:E.map(hd),D=te.useRef(!0),V=te.useRef(E),U=_g(()=>new Map),k=te.useRef(new Set),[X,Y]=te.useState(E),[W,F]=te.useState(E);ZD(()=>{D.current=!1,V.current=E;for(let ee=0;ee<W.length;ee++){const ce=hd(W[ee]);M.includes(ce)?(U.delete(ce),k.current.delete(ce)):U.get(ce)!==!0&&U.set(ce,!1)}},[W,M.length,M.join("-")]);const Ee=[];if(E!==X){let ee=[...E];for(let ce=0;ce<W.length;ce++){const J=W[ce],Xe=hd(J);M.includes(Xe)||(ee.splice(ce,0,J),Ee.push(J))}return p==="wait"&&Ee.length&&(ee=Ee),F(hD(ee)),Y(E),null}p==="wait"&&W.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}=te.useContext(Mg);return Ro.jsx(Ro.Fragment,{children:W.map(ee=>{const ce=hd(ee),J=h&&!b?!1:E===W||M.includes(ce),Xe=()=>{if(k.current.has(ce))return;if(k.current.add(ce),U.has(ce))U.set(ce,!0);else return;let fe=!0;U.forEach(be=>{be||(fe=!1)}),fe&&(ve?.(),F(V.current),h&&A?.(),u&&u())};return Ro.jsx(Xz,{isPresent:J,initial:!D.current||l?void 0:!1,custom:i,presenceAffectsLayout:f,mode:p,root:T,onExitComplete:J?void 0:Xe,anchorX:m,anchorY:v,children:ee},ce)})})},bx=te.createContext({strict:!1}),mD={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 yD=!1;function Qz(){if(yD)return;const o={};for(const i in mD)o[i]={isEnabled:l=>mD[i].some(u=>!!l[u])};ZR(o),yD=!0}function Sx(){return Qz(),UU()}function Zz(o){const i=Sx();for(const l in o)i[l]={...i[l],...o[l]};ZR(i)}const Fz=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")||Fz.has(o)}let Ex=o=>!Ud(o);function Jz(o){typeof o=="function"&&(Ex=i=>i.startsWith("on")?!Ud(i):o(i))}try{Jz(require("@emotion/is-prop-valid").default)}catch{}function Iz(o,i,l){const u={};for(const f in o)f==="values"&&typeof o.values=="object"||(Ex(f)||l===!0&&Ud(f)||!i&&!Ud(f)||o.draggable&&f.startsWith("onDrag"))&&(u[f]=o[f]);return u}const Ld=te.createContext({});function Kz(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 Wz(o){const{initial:i,animate:l}=Kz(o,te.useContext(Ld));return te.useMemo(()=>({initial:i,animate:l}),[gD(i),gD(l)])}function gD(o){return Array.isArray(o)?o.join(" "):o}const sv=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function Tx(o,i,l){for(const u in i)!en(i[u])&&!tx(u,l)&&(o[u]=i[u])}function e3({transformTemplate:o},i){return te.useMemo(()=>{const l=sv();return av(l,i,o),Object.assign({},l.vars,l.style)},[i])}function t3(o,i){const l=o.style||{},u={};return Tx(u,l,o),Object.assign(u,e3(o,i)),u}function n3(o,i){const l={},u=t3(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 Ax=()=>({...sv(),attrs:{}});function a3(o,i,l,u){const f=te.useMemo(()=>{const p=Ax();return nx(p,i,ox(u),o.transformTemplate,o.style),{...p.attrs,style:{...p.style}}},[i]);if(o.style){const p={};Tx(p,o.style,o),f.style={...p,...f.style}}return f}const o3=["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 rv(o){return typeof o!="string"||o.includes("-")?!1:!!(o3.indexOf(o)>-1||/[A-Z]/u.test(o))}function i3(o,i,l,{latestValues:u},f,p=!1,h){const v=(h??rv(o)?a3:n3)(i,u,f,o),T=Iz(i,typeof o=="string",p),b=o!==te.Fragment?{...T,...v,ref:l}:{},{children:A}=i,E=te.useMemo(()=>en(A)?A.get():A,[A]);return te.createElement(o,{...b,children:E})}function s3({scrapeMotionValuesFromProps:o,createRenderState:i},l,u,f){return{latestValues:r3(l,u,f,o),renderState:i()}}function r3(o,i,l,u){const f={},p=u(o,{});for(const E in p)f[E]=Ed(p[E]);let{initial:h,animate:m}=o;const v=Bd(o),T=$R(o);i&&T&&!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 E=Array.isArray(A)?A:[A];for(let M=0;M<E.length;M++){const D=Fg(o,E[M]);if(D){const{transitionEnd:V,transition:U,...k}=D;for(const X in k){let Y=k[X];if(Array.isArray(Y)){const W=b?Y.length-1:0;Y=Y[W]}Y!==null&&(f[X]=Y)}for(const X in V)f[X]=V[X]}}}return f}const Dx=o=>(i,l)=>{const u=te.useContext(Ld),f=te.useContext(Vd),p=()=>s3(o,i,u,f);return l?p():_g(p)},l3=Dx({scrapeMotionValuesFromProps:ov,createRenderState:sv}),u3=Dx({scrapeMotionValuesFromProps:ix,createRenderState:Ax}),c3=Symbol.for("motionComponentSymbol");function f3(o,i,l){const u=te.useRef(l);te.useInsertionEffect(()=>{u.current=l});const f=te.useRef(null);return te.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 Rx=te.createContext({});function Or(o){return o&&typeof o=="object"&&Object.prototype.hasOwnProperty.call(o,"current")}function d3(o,i,l,u,f,p){const{visualElement:h}=te.useContext(Ld),m=te.useContext(bx),v=te.useContext(Vd),T=te.useContext(iv),b=T.reducedMotion,A=T.skipAnimations,E=te.useRef(null),M=te.useRef(!1);u=u||m.renderer,!E.current&&u&&(E.current=u(o,{visualState:i,parent:h,props:l,presenceContext:v,blockInitialAnimation:v?v.initial===!1:!1,reducedMotionConfig:b,skipAnimations:A,isSVG:p}),M.current&&E.current&&(E.current.manuallyAnimateOnMount=!0));const D=E.current,V=te.useContext(Rx);D&&!D.projection&&f&&(D.type==="html"||D.type==="svg")&&h3(E.current,l,f,V);const U=te.useRef(!1);te.useInsertionEffect(()=>{D&&U.current&&D.update(l,v)});const k=l[UR],X=te.useRef(!!k&&!window.MotionHandoffIsComplete?.(k)&&window.MotionHasOptimisedAnimation?.(k));return ZD(()=>{M.current=!0,D&&(U.current=!0,window.MotionIsMounted=!0,D.updateFeatures(),D.scheduleRenderMicrotask(),X.current&&D.animationState&&D.animationState.animateChanges())}),te.useEffect(()=>{D&&(!X.current&&D.animationState&&D.animationState.animateChanges(),X.current&&(queueMicrotask(()=>{window.MotionHandoffMarkAsComplete?.(k)}),X.current=!1),D.enteringChildren=void 0)}),D}function h3(o,i,l,u){const{layoutId:f,layout:p,drag:h,dragConstraints:m,layoutScroll:v,layoutRoot:T,layoutCrossfade:b}=i;o.projection=new l(o.latestValues,i["data-framer-portal-id"]?void 0:xx(o.parent)),o.projection.setOptions({layoutId:f,layout:p,alwaysMeasureLayout:!!h||m&&Or(m),visualElement:o,animationType:typeof p=="string"?p:"both",initialPromotionConfig:u,crossfade:b,layoutScroll:v,layoutRoot:T})}function xx(o){if(o)return o.options.allowProjection!==!1?o.projection:xx(o.parent)}function Py(o,{forwardMotionProps:i=!1,type:l}={},u,f){u&&Zz(u);const p=l?l==="svg":rv(o),h=p?u3:l3;function m(T,b){let A;const E={...te.useContext(iv),...T,layoutId:p3(T)},{isStatic:M}=E,D=Wz(T),V=h(T,M);if(!M&&QD){m3(E,u);const U=y3(E);A=U.MeasureLayout,D.visualElement=d3(o,V,E,f,U.ProjectionNode,p)}return Ro.jsxs(Ld.Provider,{value:D,children:[A&&D.visualElement?Ro.jsx(A,{visualElement:D.visualElement,...E}):null,i3(o,T,f3(V,D.visualElement,b),V,M,i,p)]})}m.displayName=`motion.${typeof o=="string"?o:`create(${o.displayName??o.name??""})`}`;const v=te.forwardRef(m);return v[c3]=o,v}function p3({layoutId:o}){const i=te.useContext(Mg).id;return i&&o!==void 0?i+"-"+o:o}function m3(o,i){const l=te.useContext(bx).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?Lr(!1,u,"lazy-strict-mode"):xo(!1,u,"lazy-strict-mode")}}function y3(o){const i=Sx(),{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 g3(o,i){if(typeof Proxy>"u")return Py;const l=new Map,u=(p,h)=>Py(p,h,o,i),f=(p,h)=>(Vg(!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 v3=(o,i)=>i.isSVG??rv(o)?new JU(i):new PU(i,{allowProjection:o!==te.Fragment});class b3 extends Ti{constructor(i){super(i),i.animationState||(i.animationState=tz(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 S3=0;class E3 extends Ti{constructor(){super(...arguments),this.id=S3++}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 T3={animation:{Feature:b3},exit:{Feature:E3}};function qu(o){return{point:{x:o.pageX,y:o.pageY}}}const A3=o=>i=>Wg(i)&&o(i,qu(i));function _u(o,i,l,u){return ju(o,i,A3(l),u)}const wx=({current:o})=>o?o.ownerDocument.defaultView:null,vD=(o,i)=>Math.abs(o-i);function D3(o,i){const l=vD(o.x,i.x),u=vD(o.y,i.y);return Math.sqrt(l**2+u**2)}const bD=new Set(["auto","scroll"]);class Ox{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=M=>{this.handleScroll(M.target)},this.onWindowScroll=()=>{this.handleScroll(window)},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const M=$y(this.lastMoveEventInfo,this.history),D=this.startEvent!==null,V=D3(M.offset,{x:0,y:0})>=this.distanceThreshold;if(!D&&!V)return;const{point:U}=M,{timestamp:k}=$t;this.history.push({...U,timestamp:k});const{onStart:X,onMove:Y}=this.handlers;D||(X&&X(this.lastMoveEvent,M),this.startEvent=this.lastMoveEvent),Y&&Y(this.lastMoveEvent,M)},this.handlePointerMove=(M,D)=>{this.lastMoveEvent=M,this.lastMoveEventInfo=Xy(D,this.transformPagePoint),rt.update(this.updatePoint,!0)},this.handlePointerUp=(M,D)=>{this.end();const{onEnd:V,onSessionEnd:U,resumeAnimation:k}=this.handlers;if((this.dragSnapToOrigin||!this.startEvent)&&k&&k(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const X=$y(M.type==="pointercancel"?this.lastMoveEventInfo:Xy(D,this.transformPagePoint),this.history);this.startEvent&&V&&V(M,X),U&&U(M,X)},!Wg(i))return;this.dragSnapToOrigin=p,this.handlers=l,this.transformPagePoint=u,this.distanceThreshold=h,this.contextWindow=f||window;const v=qu(i),T=Xy(v,this.transformPagePoint),{point:b}=T,{timestamp:A}=$t;this.history=[{...b,timestamp:A}];const{onSessionStart:E}=l;E&&E(i,$y(T,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);(bD.has(u.overflowX)||bD.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 SD(o,i){return{x:o.x-i.x,y:o.y-i.y}}function $y({point:o},i){return{point:o,delta:SD(o,Cx(i)),offset:SD(o,R3(i)),velocity:x3(i,.1)}}function R3(o){return o[0]}function Cx(o){return o[o.length-1]}function x3(o,i){if(o.length<2)return{x:0,y:0};let l=o.length-1,u=null;const f=Cx(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 w3(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 ED(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 O3(o,{top:i,left:l,bottom:u,right:f}){return{x:ED(o.x,l,f),y:ED(o.y,i,u)}}function TD(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 C3(o,i){return{x:TD(o.x,i.x),y:TD(o.y,i.y)}}function M3(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 _3(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 Ag=.35;function N3(o=Ag){return o===!1?o=0:o===!0&&(o=Ag),{x:AD(o,"left","right"),y:AD(o,"top","bottom")}}function AD(o,i,l){return{min:DD(o,i),max:DD(o,l)}}function DD(o,i){return typeof o=="number"?o:o[i]||0}const U3=new WeakMap;class z3{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,E)=>{const{drag:M,dragPropagation:D,onDragStart:V}=this.getProps();if(M&&!D&&(this.openDragLock&&this.openDragLock(),this.openDragLock=uU(M),!this.openDragLock))return;this.latestPointerEvent=A,this.latestPanInfo=E,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 X=this.getAxisMotionValue(k).get()||0;if(Fa.test(X)){const{projection:Y}=this.visualElement;if(Y&&Y.layout){const W=Y.layout.layoutBox[k];W&&(X=hn(W)*(parseFloat(X)/100))}}this.originPoint[k]=X}),V&&rt.update(()=>V(A,E),!1,!0),mg(this.visualElement,"transform");const{animationState:U}=this.visualElement;U&&U.setActive("whileDrag",!0)},m=(A,E)=>{this.latestPointerEvent=A,this.latestPanInfo=E;const{dragPropagation:M,dragDirectionLock:D,onDirectionLock:V,onDrag:U}=this.getProps();if(!M&&!this.openDragLock)return;const{offset:k}=E;if(D&&this.currentDirection===null){this.currentDirection=j3(k),this.currentDirection!==null&&V&&V(this.currentDirection);return}this.updateAxis("x",E.point,k),this.updateAxis("y",E.point,k),this.visualElement.render(),U&&rt.update(()=>U(A,E),!1,!0)},v=(A,E)=>{this.latestPointerEvent=A,this.latestPanInfo=E,this.stop(A,E),this.latestPointerEvent=null,this.latestPanInfo=null},T=()=>{const{dragSnapToOrigin:A}=this.getProps();(A||this.constraints)&&this.startAnimation({x:0,y:0})},{dragSnapToOrigin:b}=this.getProps();this.panSession=new Ox(i,{onSessionStart:p,onStart:h,onMove:m,onSessionEnd:v,resumeAnimation:T},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:b,distanceThreshold:u,contextWindow:wx(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=w3(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&&Or(i)?this.constraints||(this.constraints=this.resolveRefConstraints()):i&&u?this.constraints=O3(u.layoutBox,i):this.constraints=!1,this.elastic=N3(l),f!==this.constraints&&!Or(i)&&u&&this.constraints&&!this.hasMutatedConstraints&&Za(p=>{this.constraints!==!1&&this.getAxisMotionValue(p)&&(this.constraints[p]=_3(u.layoutBox[p],this.constraints[p]))})}resolveRefConstraints(){const{dragConstraints:i,onMeasureDragConstraints:l}=this.getProps();if(!i||!Or(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=LU(u,f.root,this.visualElement.getTransformPagePoint());let h=C3(f.layout.layoutBox,p);if(l){const m=l(VU(h));this.hasMutatedConstraints=!!m,m&&(h=JR(m))}return h}startAnimation(i){const{drag:l,dragMomentum:u,dragElastic:f,dragTransition:p,dragSnapToOrigin:h,onDragTransitionEnd:m}=this.getProps(),v=this.constraints||{},T=Za(b=>{if(!pd(b,l,this.currentDirection))return;let A=v&&v[b]||{};h&&(A={min:0,max:0});const E=f?200:1e6,M=f?40:1e7,D={type:"inertia",velocity:u?i[b]:0,bounceStiffness:E,bounceDamping:M,timeConstant:750,restDelta:1,restSpeed:10,...p,...A};return this.startAxisValueAnimation(b,D)});return Promise.all(T).then(m)}startAxisValueAnimation(i,l){const u=this.getAxisMotionValue(i);return mg(this.visualElement,i),u.start(Zg(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(!Or(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]=M3({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:T}=this.constraints[h];m.set(yt(v,T,f[h]))}),this.visualElement.render()}addListeners(){if(!this.visualElement.current)return;U3.set(this.visualElement,this);const i=this.visualElement.current,l=_u(i,"pointerdown",T=>{const{drag:b,dragListener:A=!0}=this.getProps(),E=T.target,M=E!==i&&mU(E);b&&A&&!M&&this.start(T)});let u;const f=()=>{const{dragConstraints:T}=this.getProps();Or(T)&&T.current&&(this.constraints=this.resolveRefConstraints(),u||(u=V3(i,T.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:T,hasLayoutChanged:b})=>{this.isDragging&&b&&(Za(A=>{const E=this.getAxisMotionValue(A);E&&(this.originPoint[A]+=T[A].translate,E.set(E.get()+T[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=Ag,dragMomentum:m=!0}=i;return{...i,drag:l,dragDirectionLock:u,dragPropagation:f,dragConstraints:p,dragElastic:h,dragMomentum:m}}}function RD(o){let i=!0;return()=>{if(i){i=!1;return}o()}}function V3(o,i,l){const u=_A(o,RD(l)),f=_A(i,RD(l));return()=>{u(),f()}}function pd(o,i,l){return(i===!0||i===o)&&(l===null||l===o)}function j3(o,i=10){let l=null;return Math.abs(o.y)>i?l="y":Math.abs(o.x)>i&&(l="x"),l}class B3 extends Ti{constructor(i){super(i),this.removeGroupControls=na,this.removeListeners=na,this.controls=new z3(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 L3 extends Ti{constructor(){super(...arguments),this.removePointerDownListener=na}onPointerDown(i){this.session=new Ox(i,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:wx(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 H3 extends te.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()})),Td.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(),Kg.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 Mx(o){const[i,l]=vx(),u=te.useContext(Mg);return Ro.jsx(H3,{...o,layoutGroup:u,switchLayoutGroup:te.useContext(Rx),isPresent:i,safeToRemove:l})}const k3={pan:{Feature:L3},drag:{Feature:B3,ProjectionNode:gx,MeasureLayout:Mx}};function xD(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 q3 extends Ti{mount(){const{current:i}=this.node;i&&(this.unmount=fU(i,(l,u)=>(xD(this.node,u,"Start"),f=>xD(this.node,f,"End"))))}unmount(){}}class Y3 extends Ti{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 wD(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 G3 extends Ti{mount(){const{current:i}=this.node;if(!i)return;const{globalTapTarget:l,propagate:u}=this.node.props;this.unmount=gU(i,(f,p)=>(wD(this.node,p,"Start"),(h,{success:m})=>wD(this.node,h,m?"End":"Cancel")),{useGlobalTarget:l,stopPropagation:u?.tap===!1})}unmount(){}}const Dg=new WeakMap,Fy=new WeakMap,P3=o=>{const i=Dg.get(o.target);i&&i(o)},X3=o=>{o.forEach(P3)};function $3({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(X3,{root:o,...i})),u[f]}function Q3(o,i,l){const u=$3(i);return Dg.set(o,l),u.observe(o),()=>{Dg.delete(o),u.unobserve(o)}}const Z3={some:0,all:1};class F3 extends Ti{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:Z3[f]},m=v=>{const{isIntersecting:T}=v;if(this.isInView===T||(this.isInView=T,p&&!T&&this.hasEnteredView))return;T&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",T);const{onViewportEnter:b,onViewportLeave:A}=this.node.getProps(),E=T?b:A;E&&E(v)};return Q3(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(J3(i,l))&&this.startObserver()}unmount(){}}function J3({viewport:o={}},{viewport:i={}}={}){return l=>o[l]!==i[l]}const I3={inView:{Feature:F3},tap:{Feature:G3},focus:{Feature:Y3},hover:{Feature:q3}},K3={layout:{ProjectionNode:gx,MeasureLayout:Mx}},W3={...T3,...I3,...k3,...K3},_x=g3(W3,v3);function Nx(o,i){return function(){return o.apply(i,arguments)}}const{toString:eV}=Object.prototype,{getPrototypeOf:lv}=Object,{iterator:Hd,toStringTag:Ux}=Symbol,kd=(o=>i=>{const l=eV.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:Yr}=Array,Br=qd("undefined");function Yu(o){return o!==null&&!Br(o)&&o.constructor!==null&&!Br(o.constructor)&&En(o.constructor.isBuffer)&&o.constructor.isBuffer(o)}const zx=va("ArrayBuffer");function tV(o){let i;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?i=ArrayBuffer.isView(o):i=o&&o.buffer&&zx(o.buffer),i}const nV=qd("string"),En=qd("function"),Vx=qd("number"),Gu=o=>o!==null&&typeof o=="object",aV=o=>o===!0||o===!1,Ad=o=>{if(kd(o)!=="object")return!1;const i=lv(o);return(i===null||i===Object.prototype||Object.getPrototypeOf(i)===null)&&!(Ux in o)&&!(Hd in o)},oV=o=>{if(!Gu(o)||Yu(o))return!1;try{return Object.keys(o).length===0&&Object.getPrototypeOf(o)===Object.prototype}catch{return!1}},iV=va("Date"),sV=va("File"),rV=va("Blob"),lV=va("FileList"),uV=o=>Gu(o)&&En(o.pipe),cV=o=>{let i;return o&&(typeof FormData=="function"&&o instanceof FormData||En(o.append)&&((i=kd(o))==="formdata"||i==="object"&&En(o.toString)&&o.toString()==="[object FormData]"))},fV=va("URLSearchParams"),[dV,hV,pV,mV]=["ReadableStream","Request","Response","Headers"].map(va),yV=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]),Yr(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 jx(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,Bx=o=>!Br(o)&&o!==gs;function Rg(){const{caseless:o,skipUndefined:i}=Bx(this)&&this||{},l={},u=(f,p)=>{if(p==="__proto__"||p==="constructor"||p==="prototype")return;const h=o&&jx(l,p)||p;Ad(l[h])&&Ad(f)?l[h]=Rg(l[h],f):Ad(f)?l[h]=Rg({},f):Yr(f)?l[h]=f.slice():(!i||!Br(f))&&(l[h]=f)};for(let f=0,p=arguments.length;f<p;f++)arguments[f]&&Pu(arguments[f],u);return l}const gV=(o,i,l,{allOwnKeys:u}={})=>(Pu(i,(f,p)=>{l&&En(f)?Object.defineProperty(o,p,{value:Nx(f,l),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(o,p,{value:f,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:u}),o),vV=o=>(o.charCodeAt(0)===65279&&(o=o.slice(1)),o),bV=(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)},SV=(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&&lv(o)}while(o&&(!l||l(o,i))&&o!==Object.prototype);return i},EV=(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},TV=o=>{if(!o)return null;if(Yr(o))return o;let i=o.length;if(!Vx(i))return null;const l=new Array(i);for(;i-- >0;)l[i]=o[i];return l},AV=(o=>i=>o&&i instanceof o)(typeof Uint8Array<"u"&&lv(Uint8Array)),DV=(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])}},RV=(o,i)=>{let l;const u=[];for(;(l=o.exec(i))!==null;)u.push(l);return u},xV=va("HTMLFormElement"),wV=o=>o.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(l,u,f){return u.toUpperCase()+f}),OD=(({hasOwnProperty:o})=>(i,l)=>o.call(i,l))(Object.prototype),OV=va("RegExp"),Lx=(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)},CV=o=>{Lx(o,(i,l)=>{if(En(o)&&["arguments","caller","callee"].indexOf(l)!==-1)return!1;const u=o[l];if(En(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+"'")})}})},MV=(o,i)=>{const l={},u=f=>{f.forEach(p=>{l[p]=!0})};return Yr(o)?u(o):u(String(o).split(i)),l},_V=()=>{},NV=(o,i)=>o!=null&&Number.isFinite(o=+o)?o:i;function UV(o){return!!(o&&En(o.append)&&o[Ux]==="FormData"&&o[Hd])}const zV=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=Yr(u)?[]:{};return Pu(u,(h,m)=>{const v=l(h,f+1);!Br(v)&&(p[m]=v)}),i[f]=void 0,p}}return u};return l(o,0)},VV=va("AsyncFunction"),jV=o=>o&&(Gu(o)||En(o))&&En(o.then)&&En(o.catch),Hx=((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",En(gs.postMessage)),BV=typeof queueMicrotask<"u"?queueMicrotask.bind(gs):typeof process<"u"&&process.nextTick||Hx,LV=o=>o!=null&&En(o[Hd]),H={isArray:Yr,isArrayBuffer:zx,isBuffer:Yu,isFormData:cV,isArrayBufferView:tV,isString:nV,isNumber:Vx,isBoolean:aV,isObject:Gu,isPlainObject:Ad,isEmptyObject:oV,isReadableStream:dV,isRequest:hV,isResponse:pV,isHeaders:mV,isUndefined:Br,isDate:iV,isFile:sV,isBlob:rV,isRegExp:OV,isFunction:En,isStream:uV,isURLSearchParams:fV,isTypedArray:AV,isFileList:lV,forEach:Pu,merge:Rg,extend:gV,trim:yV,stripBOM:vV,inherits:bV,toFlatObject:SV,kindOf:kd,kindOfTest:va,endsWith:EV,toArray:TV,forEachEntry:DV,matchAll:RV,isHTMLForm:xV,hasOwnProperty:OD,hasOwnProp:OD,reduceDescriptors:Lx,freezeMethods:CV,toObjectSet:MV,toCamelCase:wV,noop:_V,toFiniteNumber:NV,findKey:jx,global:gs,isContextDefined:Bx,isSpecCompliantForm:UV,toJSONObject:zV,isAsyncFn:VV,isThenable:jV,setImmediate:Hx,asap:BV,isIterable:LV};let Re=class kx extends Error{static from(i,l,u,f,p,h){const m=new kx(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 HV=null;function xg(o){return H.isPlainObject(o)||H.isArray(o)}function qx(o){return H.endsWith(o,"[]")?o.slice(0,-2):o}function CD(o,i,l){return o?o.concat(i).map(function(f,p){return f=qx(f),!l&&p?"["+f+"]":f}).join(l?".":""):i}function kV(o){return H.isArray(o)&&!o.some(xg)}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(V,U){return!H.isUndefined(U[V])});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 T(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,V,U){let k=D;if(D&&!U&&typeof D=="object"){if(H.endsWith(V,"{}"))V=u?V:V.slice(0,-2),D=JSON.stringify(D);else if(H.isArray(D)&&kV(D)||(H.isFileList(D)||H.endsWith(V,"[]"))&&(k=H.toArray(D)))return V=qx(V),k.forEach(function(Y,W){!(H.isUndefined(Y)||Y===null)&&i.append(h===!0?CD([V],W,p):h===null?V:V+"[]",T(Y))}),!1}return xg(D)?!0:(i.append(CD(U,V,p),T(D)),!1)}const A=[],E=Object.assign(qV,{defaultVisitor:b,convertValue:T,isVisitable:xg});function M(D,V){if(!H.isUndefined(D)){if(A.indexOf(D)!==-1)throw Error("Circular reference detected in "+V.join("."));A.push(D),H.forEach(D,function(k,X){(!(H.isUndefined(k)||k===null)&&f.call(i,k,H.isString(X)?X.trim():X,V,E))===!0&&M(k,V?V.concat(X):[X])}),A.pop()}}if(!H.isObject(o))throw new TypeError("data must be an object");return M(o),i}function MD(o){const i={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(o).replace(/[!'()~]|%20|%00/g,function(u){return i[u]})}function uv(o,i){this._pairs=[],o&&Yd(o,this,i)}const Yx=uv.prototype;Yx.append=function(i,l){this._pairs.push([i,l])};Yx.toString=function(i){const l=i?function(u){return i.call(this,u,MD)}:MD;return this._pairs.map(function(f){return l(f[0])+"="+l(f[1])},"").join("&")};function YV(o){return encodeURIComponent(o).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function Gx(o,i,l){if(!i)return o;const u=l&&l.encode||YV,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 uv(i,f).toString(u),h){const m=o.indexOf("#");m!==-1&&(o=o.slice(0,m)),o+=(o.indexOf("?")===-1?"?":"&")+h}return o}class _D{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 cv={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0},GV=typeof URLSearchParams<"u"?URLSearchParams:uv,PV=typeof FormData<"u"?FormData:null,XV=typeof Blob<"u"?Blob:null,$V={isBrowser:!0,classes:{URLSearchParams:GV,FormData:PV,Blob:XV},protocols:["http","https","file","blob","url","data"]},fv=typeof window<"u"&&typeof document<"u",wg=typeof navigator=="object"&&navigator||void 0,QV=fv&&(!wg||["ReactNative","NativeScript","NS"].indexOf(wg.product)<0),ZV=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",FV=fv&&window.location.href||"http://localhost",JV=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:fv,hasStandardBrowserEnv:QV,hasStandardBrowserWebWorkerEnv:ZV,navigator:wg,origin:FV},Symbol.toStringTag,{value:"Module"})),Wt={...JV,...$V};function IV(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 KV(o){return H.matchAll(/\w+|\[(\w*)]/g,o).map(i=>i[0]==="[]"?"":i[1]||i[0])}function WV(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 Px(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]=WV(f[h])),!m)}if(H.isFormData(o)&&H.isFunction(o.entries)){const l={};return H.forEachEntry(o,(u,f)=>{i(KV(u),f,l,0)}),l}return null}function ej(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:cv,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(Px(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 IV(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),ej(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 tj=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"]),nj=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]&&tj[l])&&(l==="set-cookie"?i[l]?i[l].push(u):i[l]=[u]:i[l]=i[l]?i[l]+", "+u:u)}),i},ND=Symbol("internals");function Ru(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 aj(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 oj=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 ij(o){return o.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(i,l,u)=>l.toUpperCase()+u)}function sj(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 Tn=class{constructor(i){i&&this.set(i)}set(i,l,u){const f=this;function p(m,v,T){const b=Ru(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||T===!0||T===void 0&&f[A]!==!1)&&(f[A||v]=Dd(m))}const h=(m,v)=>H.forEach(m,(T,b)=>p(T,b,v));if(H.isPlainObject(i)||i instanceof this.constructor)h(i,l);else if(H.isString(i)&&(i=i.trim())&&!oj(i))h(nj(i),l);else if(H.isObject(i)&&H.isIterable(i)){let m={},v,T;for(const b of i){if(!H.isArray(b))throw TypeError("Object iterator must return a key-value pair");m[T=b[0]]=(v=m[T])?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=Ru(i),i){const u=H.findKey(this,i);if(u){const f=this[u];if(!l)return f;if(l===!0)return aj(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=Ru(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=Ru(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?ij(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[ND]=this[ND]={accessors:{}}).accessors,f=this.prototype;function p(h){const m=Ru(h);u[m]||(sj(f,h),u[m]=!0)}return H.isArray(i)?i.forEach(p):p(i),this}};Tn.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);H.reduceDescriptors(Tn.prototype,({value:o},i)=>{let l=i[0].toUpperCase()+i.slice(1);return{get:()=>o,set(u){this[l]=u}}});H.freezeMethods(Tn);function Iy(o,i){const l=this||Xu,u=i||l,f=Tn.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 Xx(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 $x(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 rj(o){const i=/^([-+\w]{1,25})(:?\/\/|:)/.exec(o);return i&&i[1]||""}function lj(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 T=Date.now(),b=u[p];h||(h=T),l[f]=v,u[f]=T;let A=p,E=0;for(;A!==f;)E+=l[A++],A=A%o;if(f=(f+1)%o,f===p&&(p=(p+1)%o),T-h<i)return;const M=b&&T-b;return M?Math.round(E*1e3/M):void 0}}function uj(o,i){let l=0,u=1e3/i,f,p;const h=(T,b=Date.now())=>{l=b,f=null,p&&(clearTimeout(p),p=null),o(...T)};return[(...T)=>{const b=Date.now(),A=b-l;A>=u?h(T,b):(f=T,p||(p=setTimeout(()=>{p=null,h(f)},u-A)))},()=>f&&h(f)]}const zd=(o,i,l=3)=>{let u=0;const f=lj(50,250);return uj(p=>{const h=p.loaded,m=p.lengthComputable?p.total:void 0,v=h-u,T=f(v),b=h<=m;u=h;const A={loaded:h,total:m,progress:m?h/m:void 0,bytes:v,rate:T||void 0,estimated:T&&m&&b?(m-h)/T:void 0,event:p,lengthComputable:m!=null,[i?"download":"upload"]:!0};o(A)},l)},UD=(o,i)=>{const l=o!=null;return[u=>i[0]({lengthComputable:l,total:o,loaded:u}),i[1]]},zD=o=>(...i)=>H.asap(()=>o(...i)),cj=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,fj=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 dj(o){return typeof o!="string"?!1:/^([a-z][a-z\d+\-.]*:)?\/\//i.test(o)}function hj(o,i){return i?o.replace(/\/?\/$/,"")+"/"+i.replace(/^\/+/,""):o}function Qx(o,i,l){let u=!dj(i);return o&&(u||l==!1)?hj(o,i):i}const VD=o=>o instanceof Tn?{...o}:o;function Ss(o,i){i=i||{};const l={};function u(T,b,A,E){return H.isPlainObject(T)&&H.isPlainObject(b)?H.merge.call({caseless:E},T,b):H.isPlainObject(b)?H.merge({},b):H.isArray(b)?b.slice():b}function f(T,b,A,E){if(H.isUndefined(b)){if(!H.isUndefined(T))return u(void 0,T,A,E)}else return u(T,b,A,E)}function p(T,b){if(!H.isUndefined(b))return u(void 0,b)}function h(T,b){if(H.isUndefined(b)){if(!H.isUndefined(T))return u(void 0,T)}else return u(void 0,b)}function m(T,b,A){if(A in i)return u(T,b);if(A in o)return u(void 0,T)}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:(T,b,A)=>f(VD(T),VD(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,E=A(o[b],i[b],b);H.isUndefined(E)&&A!==m||(l[b]=E)}),l}const Zx=o=>{const i=Ss({},o);let{data:l,withXSRFToken:u,xsrfHeaderName:f,xsrfCookieName:p,headers:h,auth:m}=i;if(i.headers=h=Tn.from(h),i.url=Gx(Qx(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(),T=["content-type","content-length"];Object.entries(v).forEach(([b,A])=>{T.includes(b.toLowerCase())&&h.set(b,A)})}}if(Wt.hasStandardBrowserEnv&&(u&&H.isFunction(u)&&(u=u(i)),u||u!==!1&&cj(i.url))){const v=f&&p&&fj.read(p);v&&h.set(f,v)}return i},pj=typeof XMLHttpRequest<"u",mj=pj&&function(o){return new Promise(function(l,u){const f=Zx(o);let p=f.data;const h=Tn.from(f.headers).normalize();let{responseType:m,onUploadProgress:v,onDownloadProgress:T}=f,b,A,E,M,D;function V(){M&&M(),D&&D(),f.cancelToken&&f.cancelToken.unsubscribe(b),f.signal&&f.signal.removeEventListener("abort",b)}let U=new XMLHttpRequest;U.open(f.method.toUpperCase(),f.url,!0),U.timeout=f.timeout;function k(){if(!U)return;const Y=Tn.from("getAllResponseHeaders"in U&&U.getAllResponseHeaders()),F={data:!m||m==="text"||m==="json"?U.responseText:U.response,status:U.status,statusText:U.statusText,headers:Y,config:o,request:U};$x(function(ve){l(ve),V()},function(ve){u(ve),V()},F),U=null}"onloadend"in U?U.onloadend=k:U.onreadystatechange=function(){!U||U.readyState!==4||U.status===0&&!(U.responseURL&&U.responseURL.indexOf("file:")===0)||setTimeout(k)},U.onabort=function(){U&&(u(new Re("Request aborted",Re.ECONNABORTED,o,U)),U=null)},U.onerror=function(W){const F=W&&W.message?W.message:"Network Error",Ee=new Re(F,Re.ERR_NETWORK,o,U);Ee.event=W||null,u(Ee),U=null},U.ontimeout=function(){let W=f.timeout?"timeout of "+f.timeout+"ms exceeded":"timeout exceeded";const F=f.transitional||cv;f.timeoutErrorMessage&&(W=f.timeoutErrorMessage),u(new Re(W,F.clarifyTimeoutError?Re.ETIMEDOUT:Re.ECONNABORTED,o,U)),U=null},p===void 0&&h.setContentType(null),"setRequestHeader"in U&&H.forEach(h.toJSON(),function(W,F){U.setRequestHeader(F,W)}),H.isUndefined(f.withCredentials)||(U.withCredentials=!!f.withCredentials),m&&m!=="json"&&(U.responseType=f.responseType),T&&([E,D]=zd(T,!0),U.addEventListener("progress",E)),v&&U.upload&&([A,M]=zd(v),U.upload.addEventListener("progress",A),U.upload.addEventListener("loadend",M)),(f.cancelToken||f.signal)&&(b=Y=>{U&&(u(!Y||Y.type?new $u(null,o,U):Y),U.abort(),U=null)},f.cancelToken&&f.cancelToken.subscribe(b),f.signal&&(f.signal.aborted?b():f.signal.addEventListener("abort",b)));const X=rj(f.url);if(X&&Wt.protocols.indexOf(X)===-1){u(new Re("Unsupported protocol "+X+":",Re.ERR_BAD_REQUEST,o));return}U.send(p||null)})},yj=(o,i)=>{const{length:l}=o=o?o.filter(Boolean):[];if(i||l){let u=new AbortController,f;const p=function(T){if(!f){f=!0,m();const b=T instanceof Error?T: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(T=>{T.unsubscribe?T.unsubscribe(p):T.removeEventListener("abort",p)}),o=null)};o.forEach(T=>T.addEventListener("abort",p));const{signal:v}=u;return v.unsubscribe=()=>H.asap(m),v}},gj=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},vj=async function*(o,i){for await(const l of bj(o))yield*gj(l,i)},bj=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()}},jD=(o,i,l,u)=>{const f=vj(o,i);let p=0,h,m=v=>{h||(h=!0,u&&u(v))};return new ReadableStream({async pull(v){try{const{done:T,value:b}=await f.next();if(T){m(),v.close();return}let A=b.byteLength;if(l){let E=p+=A;l(E)}v.enqueue(new Uint8Array(b))}catch(T){throw m(T),T}},cancel(v){return m(v),f.return()}},{highWaterMark:2})},BD=64*1024,{isFunction:md}=H,Sj=(({Request:o,Response:i})=>({Request:o,Response:i}))(H.global),{ReadableStream:LD,TextEncoder:HD}=H.global,kD=(o,...i)=>{try{return!!o(...i)}catch{return!1}},Ej=o=>{o=H.merge.call({skipUndefined:!0},Sj,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(LD),v=f&&(typeof HD=="function"?(D=>V=>D.encode(V))(new HD):async D=>new Uint8Array(await new l(D).arrayBuffer())),T=p&&m&&kD(()=>{let D=!1;const V=new l(Wt.origin,{body:new LD,method:"POST",get duplex(){return D=!0,"half"}}).headers.has("Content-Type");return D&&!V}),b=h&&m&&kD(()=>H.isReadableStream(new u("").body)),A={stream:b&&(D=>D.body)};f&&["text","arrayBuffer","blob","formData","stream"].forEach(D=>{!A[D]&&(A[D]=(V,U)=>{let k=V&&V[D];if(k)return k.call(V);throw new Re(`Response type '${D}' is not supported`,Re.ERR_NOT_SUPPORT,U)})});const E=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},M=async(D,V)=>{const U=H.toFiniteNumber(D.getContentLength());return U??E(V)};return async D=>{let{url:V,method:U,data:k,signal:X,cancelToken:Y,timeout:W,onDownloadProgress:F,onUploadProgress:Ee,responseType:ve,headers:ee,withCredentials:ce="same-origin",fetchOptions:J}=Zx(D),Xe=i||fetch;ve=ve?(ve+"").toLowerCase():"text";let fe=yj([X,Y&&Y.toAbortSignal()],W),be=null;const Ze=fe&&fe.unsubscribe&&(()=>{fe.unsubscribe()});let lt;try{if(Ee&&T&&U!=="get"&&U!=="head"&&(lt=await M(ee,k))!==0){let O=new l(V,{method:"POST",body:k,duplex:"half"}),Q;if(H.isFormData(k)&&(Q=O.headers.get("content-type"))&&ee.setContentType(Q),O.body){const[me,re]=UD(lt,zd(zD(Ee)));k=jD(O.body,BD,me,re)}}H.isString(ce)||(ce=ce?"include":"omit");const G=p&&"credentials"in l.prototype,ae={...J,signal:fe,method:U.toUpperCase(),headers:ee.normalize().toJSON(),body:k,duplex:"half",credentials:G?ce:void 0};be=p&&new l(V,ae);let ie=await(p?Xe(be,J):Xe(V,ae));const xe=b&&(ve==="stream"||ve==="response");if(b&&(F||xe&&Ze)){const O={};["status","statusText","headers"].forEach(tt=>{O[tt]=ie[tt]});const Q=H.toFiniteNumber(ie.headers.get("content-length")),[me,re]=F&&UD(Q,zd(zD(F),!0))||[];ie=new u(jD(ie.body,BD,me,()=>{re&&re(),Ze&&Ze()}),O)}ve=ve||"text";let Be=await A[H.findKey(A,ve)||"text"](ie,D);return!xe&&Ze&&Ze(),await new Promise((O,Q)=>{$x(O,Q,{data:Be,headers:Tn.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)}}},Tj=new Map,Fx=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,T,b=Tj;for(;m--;)v=p[m],T=b.get(v),T===void 0&&b.set(v,T=m?new Map:Ej(i)),b=T;return T};Fx();const dv={http:HV,xhr:mj,fetch:{get:Fx}};H.forEach(dv,(o,i)=>{if(o){try{Object.defineProperty(o,"name",{value:i})}catch{}Object.defineProperty(o,"adapterName",{value:i})}});const qD=o=>`- ${o}`,Aj=o=>H.isFunction(o)||o===null||o===!1;function Dj(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,!Aj(u)&&(f=dv[(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,T])=>`adapter ${v} `+(T===!1?"is not supported by the environment":"is not available in the build"));let m=l?h.length>1?`since :
251
+ `+h.map(qD).join(`
252
+ `):" "+qD(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 Jx={getAdapter:Dj,adapters:dv};function Ky(o){if(o.cancelToken&&o.cancelToken.throwIfRequested(),o.signal&&o.signal.aborted)throw new $u(null,o)}function YD(o){return Ky(o),o.headers=Tn.from(o.headers),o.data=Iy.call(o,o.transformRequest),["post","put","patch"].indexOf(o.method)!==-1&&o.headers.setContentType("application/x-www-form-urlencoded",!1),Jx.getAdapter(o.adapter||Xu.adapter,o)(o).then(function(u){return Ky(o),u.data=Iy.call(o,o.transformResponse,u),u.headers=Tn.from(u.headers),u},function(u){return Xx(u)||(Ky(o),u&&u.response&&(u.response.data=Iy.call(o,o.transformResponse,u.response),u.response.headers=Tn.from(u.response.headers))),Promise.reject(u)})}const Ix="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 GD={};Gd.transitional=function(i,l,u){function f(p,h){return"[Axios v"+Ix+"] 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&&!GD[h]&&(GD[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 Rj(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:Rj,validators:Gd},ea=Rd.validators;let bs=class{constructor(i){this.defaults=i||{},this.interceptors={request:new _D,response:new _D}}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=Tn.concat(h,p);const m=[];let v=!0;this.interceptors.request.forEach(function(V){if(typeof V.runWhen=="function"&&V.runWhen(l)===!1)return;v=v&&V.synchronous;const U=l.transitional||cv;U&&U.legacyInterceptorReqResOrdering?m.unshift(V.fulfilled,V.rejected):m.push(V.fulfilled,V.rejected)});const T=[];this.interceptors.response.forEach(function(V){T.push(V.fulfilled,V.rejected)});let b,A=0,E;if(!v){const D=[YD.bind(this),void 0];for(D.unshift(...m),D.push(...T),E=D.length,b=Promise.resolve(l);A<E;)b=b.then(D[A++],D[A++]);return b}E=m.length;let M=l;for(;A<E;){const D=m[A++],V=m[A++];try{M=D(M)}catch(U){V.call(this,U);break}}try{b=YD.call(this,M)}catch(D){return Promise.reject(D)}for(A=0,E=T.length;A<E;)b=b.then(T[A++],T[A++]);return b}getUri(i){i=Ss(this.defaults,i);const l=Qx(i.baseURL,i.url,i.allowAbsoluteUrls);return Gx(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 xj=class Kx{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 Kx(function(f){i=f}),cancel:i}}};function wj(o){return function(l){return o.apply(null,l)}}function Oj(o){return H.isObject(o)&&o.isAxiosError===!0}const Og={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(Og).forEach(([o,i])=>{Og[i]=o});function Wx(o){const i=new bs(o),l=Nx(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 Wx(Ss(o,f))},l}const gt=Wx(Xu);gt.Axios=bs;gt.CanceledError=$u;gt.CancelToken=xj;gt.isCancel=Xx;gt.VERSION=Ix;gt.toFormData=Yd;gt.AxiosError=Re;gt.Cancel=gt.CanceledError;gt.all=function(i){return Promise.all(i)};gt.spread=wj;gt.isAxiosError=Oj;gt.mergeConfig=Ss;gt.AxiosHeaders=Tn;gt.formToJSON=o=>Px(H.isHTMLForm(o)?new FormData(o):o);gt.getAdapter=Jx.getAdapter;gt.HttpStatusCode=Og;gt.default=gt;const{Axios:Bj,AxiosError:Lj,CanceledError:Hj,isCancel:kj,CancelToken:qj,VERSION:Yj,all:Gj,Cancel:Pj,isAxiosError:Xj,spread:$j,toFormData:Qj,AxiosHeaders:Zj,HttpStatusCode:Fj,formToJSON:Jj,getAdapter:Ij,mergeConfig:Kj}=gt,Cj="v0.9.5",Wy=200;let xu=0;function PD(o){return o>=1e6?`${(o/1e6).toFixed(1)}M`:o>=1e3?`${(o/1e3).toFixed(1)}K`:String(o)}function eg(o){return o>=.7?"text-green-500":o>=.3?"text-zora-gold":"text-red-500"}function Mj(o){return o>=.7?"bg-green-500":o>=.3?"bg-zora-gold":"bg-red-500"}const _j=({msg:o})=>{const i={agent:"bubble bubble-agent",user:"bubble bubble-user",system:"bubble bubble-system","tool-call":"bubble bubble-agent","tool-result":"bubble bubble-agent"}[o.type];return Z.jsxDEV(_x.div,{initial:{opacity:0,y:10},animate:{opacity:1,y:0},transition:{duration:.2},className:i,"data-testid":`bubble-${o.type}`,children:[o.type==="tool-call"&&Z.jsxDEV("div",{className:"tool-mini mb-1",children:"TOOL_INVOKE"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:74,columnNumber:9},void 0),o.type==="tool-result"&&Z.jsxDEV("div",{className:"tool-mini mb-1",children:"TOOL_RESULT"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:77,columnNumber:9},void 0),Z.jsxDEV("div",{children:o.content},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:79,columnNumber:7},void 0),Z.jsxDEV("div",{className:"text-[9px] opacity-40 mt-1",children:o.timestamp.toLocaleTimeString()},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:80,columnNumber:7},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:66,columnNumber:5},void 0)},Nj=()=>{const[o,i]=te.useState([]),[l,u]=te.useState([]),[f,p]=te.useState(""),[h,m]=te.useState("job_active"),[v,T]=te.useState([{id:++xu,type:"system",content:"Neural link established.",timestamp:new Date},{id:++xu,type:"agent",content:"Neural interface active. All subsystems nominal.",timestamp:new Date}]),b=te.useRef(null);te.useEffect(()=>{b.current?.scrollIntoView({behavior:"smooth"})},[v]),te.useEffect(()=>{const D=async()=>{try{const U=await gt.get("/api/health");U.data.ok&&i(U.data.providers)}catch(U){console.error("Health check failed",U)}};D();const V=setInterval(D,3e4);return()=>clearInterval(V)},[]),te.useEffect(()=>{const D=async()=>{try{const U=await gt.get("/api/quota");U.data.ok&&u(U.data.providers)}catch(U){console.error("Quota fetch failed",U)}};D();const V=setInterval(D,1e4);return()=>clearInterval(V)},[]),te.useEffect(()=>{const D=new EventSource("/api/events");return D.onmessage=V=>{try{const U=JSON.parse(V.data);if(U.type==="connected")return;let k="agent",X="";U.type==="job_update"?(k="system",X=`Job ${U.data?.jobId??"unknown"}: ${U.data?.status??"update"}`):U.type==="tool_call"?(k="tool-call",X=U.data?.tool??JSON.stringify(U)):U.type==="tool_result"?(k="tool-result",X=U.data?.result??JSON.stringify(U)):U.type==="text_delta"||U.type==="text.delta"?(k="agent",X=U.data?.text??U.data?.delta??JSON.stringify(U)):(k="system",X=JSON.stringify(U)),T(Y=>[...Y,{id:++xu,type:k,content:X,timestamp:new Date}].slice(-Wy))}catch{}},()=>D.close()},[]);const A=async()=>{if(!f)return;const D=f;p(""),T(V=>[...V,{id:++xu,type:"user",content:D,timestamp:new Date}].slice(-Wy));try{await gt.post("/api/steer",{jobId:h,message:D,author:"operator",source:"dashboard"})}catch(V){console.error("Steering message failed",V),T(U=>[...U,{id:++xu,type:"system",content:"Transmission failed. Check comms.",timestamp:new Date}].slice(-Wy))}},E=l.reduce((D,V)=>D+V.usage.totalCostUsd,0),M=l.reduce((D,V)=>D+V.usage.requestCount,0);return Z.jsxDEV("div",{className:"h-screen w-screen flex flex-col bg-zora-obsidian relative overflow-hidden",children:[Z.jsxDEV("div",{className:"scanline"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:206,columnNumber:7},void 0),Z.jsxDEV("div",{className:"flex items-center gap-4 px-4 pt-4 pb-2",children:[Z.jsxDEV("div",{className:"lcars-bar flex-1 bg-zora-gold",children:"ZORA // TACTICAL INTERFACE"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:210,columnNumber:9},void 0),Z.jsxDEV("div",{className:"w-32 bg-zora-teal h-8 rounded-r-full"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:213,columnNumber:9},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:209,columnNumber:7},void 0),Z.jsxDEV("div",{className:"flex-1 flex min-h-0",children:[Z.jsxDEV("div",{className:"w-16 flex flex-col items-center py-4 gap-4 bg-zora-rail border-r border-zora-ghost/30",children:[Z.jsxDEV("div",{className:"w-8 h-8 rounded-tl-xl border-t-2 border-l-2 border-zora-teal"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:221,columnNumber:11},void 0),Z.jsxDEV("div",{className:"flex-1"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:222,columnNumber:11},void 0),Z.jsxDEV("div",{className:"w-8 h-8 rounded-bl-xl border-b-2 border-l-2 border-zora-teal"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:223,columnNumber:11},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:220,columnNumber:9},void 0),Z.jsxDEV("div",{className:"flex-1 flex flex-col min-w-0",children:[Z.jsxDEV("div",{className:"px-4 py-2",children:Z.jsxDEV("span",{className:"text-[10px] font-data text-zora-teal uppercase tracking-widest",children:"Live Mission Logs"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:229,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:228,columnNumber:11},void 0),Z.jsxDEV("div",{className:"flex-1 overflow-y-auto px-4 flex flex-col gap-2 lcars-scrollbar",children:[Z.jsxDEV(pD,{children:v.map(D=>Z.jsxDEV(_j,{msg:D},D.id,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:238,columnNumber:17},void 0))},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:236,columnNumber:13},void 0),Z.jsxDEV("div",{ref:b},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:241,columnNumber:13},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:235,columnNumber:11},void 0),Z.jsxDEV("div",{className:"px-4 py-3 border-t border-zora-ghost/30",children:Z.jsxDEV("div",{className:"flex gap-2",children:[Z.jsxDEV("input",{type:"text",value:f,onChange:D=>p(D.target.value),onKeyDown:D=>D.key==="Enter"&&A(),placeholder:"Inject directive message...",className:"flex-1 bg-zora-rail border border-zora-ghost/50 rounded-lg px-4 py-2 font-data text-zora-gold text-sm focus:ring-2 focus:ring-zora-teal focus:border-transparent focus:outline-none placeholder:text-white/20"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:247,columnNumber:15},void 0),Z.jsxDEV("button",{onClick:A,className:"bg-zora-teal text-zora-obsidian px-5 py-2 rounded-lg font-bold hover:bg-zora-cyan transition-colors flex items-center gap-2 text-sm",children:[Z.jsxDEV(n_,{size:14},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:259,columnNumber:17},void 0)," SEND"]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:255,columnNumber:15},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:246,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:245,columnNumber:11},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:227,columnNumber:9},void 0),Z.jsxDEV("div",{className:"w-80 flex flex-col border-l border-zora-ghost/30 bg-zora-rail/50 overflow-y-auto lcars-scrollbar",children:[Z.jsxDEV("div",{className:"px-4 py-3 border-b border-zora-ghost/30",children:Z.jsxDEV("span",{className:"text-[10px] font-data text-zora-teal uppercase tracking-widest",children:"Neural Subnets"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:270,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:269,columnNumber:11},void 0),Z.jsxDEV("div",{className:"px-4 py-2 space-y-3",children:Z.jsxDEV(pD,{children:o.map(D=>{const V=l.find(U=>U.name===D.name);return Z.jsxDEV(_x.div,{initial:{opacity:0,x:20},animate:{opacity:1,x:0},className:"p-2 bg-black/40 rounded-lg border-l-2 border-zora-teal",children:[Z.jsxDEV("div",{className:"flex justify-between items-center mb-1",children:[Z.jsxDEV("span",{className:"text-zora-cyan font-bold uppercase text-xs",children:D.name},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:286,columnNumber:23},void 0),Z.jsxDEV("span",{className:`w-2.5 h-2.5 rounded-full ${D.valid?"bg-green-500":"bg-red-500"}`,title:D.valid?"Connected":"Disconnected","data-testid":`provider-dot-${D.name}`},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:287,columnNumber:23},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:285,columnNumber:21},void 0),V&&Z.jsxDEV("div",{className:"space-y-1",children:[Z.jsxDEV("div",{className:"flex items-center gap-2",children:[Z.jsxDEV(e_,{size:10,className:eg(V.quota.healthScore)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:296,columnNumber:27},void 0),Z.jsxDEV("div",{className:"flex-1 h-1.5 bg-black/60 rounded-full overflow-hidden",children:Z.jsxDEV("div",{className:`h-full rounded-full transition-all ${Mj(V.quota.healthScore)}`,style:{width:`${V.quota.healthScore*100}%`}},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:298,columnNumber:29},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:297,columnNumber:27},void 0),Z.jsxDEV("span",{className:`text-[9px] font-data ${eg(V.quota.healthScore)}`,children:[Math.round(V.quota.healthScore*100),"%"]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:303,columnNumber:27},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:295,columnNumber:25},void 0),Z.jsxDEV("div",{className:"text-[9px] font-data text-white/50 space-y-0.5",children:[V.usage.totalCostUsd>0&&Z.jsxDEV("div",{className:"flex justify-between",children:[Z.jsxDEV("span",{children:"COST"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:310,columnNumber:31},void 0),Z.jsxDEV("span",{className:"text-zora-gold",children:["$",V.usage.totalCostUsd.toFixed(4)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:311,columnNumber:31},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:309,columnNumber:29},void 0),Z.jsxDEV("div",{className:"flex justify-between",children:[Z.jsxDEV("span",{children:"REQUESTS"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:315,columnNumber:29},void 0),Z.jsxDEV("span",{className:"text-zora-cyan",children:V.usage.requestCount},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:316,columnNumber:29},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:314,columnNumber:27},void 0),(V.usage.totalInputTokens>0||V.usage.totalOutputTokens>0)&&Z.jsxDEV("div",{className:"flex justify-between",children:[Z.jsxDEV("span",{children:"TOKENS"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:320,columnNumber:31},void 0),Z.jsxDEV("span",{className:"text-zora-cyan",children:[PD(V.usage.totalInputTokens),"in / ",PD(V.usage.totalOutputTokens),"out"]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:321,columnNumber:31},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:319,columnNumber:29},void 0),V.quota.isExhausted&&Z.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:327,columnNumber:29},void 0),V.quota.cooldownUntil&&Z.jsxDEV("div",{className:"text-zora-gold",children:"COOLDOWN ACTIVE"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:330,columnNumber:29},void 0),Z.jsxDEV("div",{className:"flex justify-between",children:[Z.jsxDEV("span",{children:"TIER"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:333,columnNumber:29},void 0),Z.jsxDEV("span",{className:"text-white/40 uppercase",children:V.costTier},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:334,columnNumber:29},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:332,columnNumber:27},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:307,columnNumber:25},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:294,columnNumber:23},void 0)]},D.name,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:279,columnNumber:19},void 0)})},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:275,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:274,columnNumber:11},void 0),Z.jsxDEV("div",{className:"px-4 py-3 border-t border-b border-zora-ghost/30",children:Z.jsxDEV("span",{className:"text-[10px] font-data text-zora-teal uppercase tracking-widest",children:"Safety Protocols"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:347,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:346,columnNumber:11},void 0),Z.jsxDEV("div",{className:"px-4 py-3",children:[Z.jsxDEV("div",{className:"flex items-center gap-2 text-zora-gold mb-3",children:[Z.jsxDEV(o_,{size:16},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:353,columnNumber:15},void 0),Z.jsxDEV("span",{className:"text-xs font-bold uppercase",children:"Active Integrity Shield"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:354,columnNumber:15},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:352,columnNumber:13},void 0),Z.jsxDEV("div",{className:"text-[10px] font-data text-white/50 space-y-2",children:[Z.jsxDEV("div",{className:"flex items-center gap-2",children:[Z.jsxDEV("span",{className:"w-1.5 h-1.5 rounded-full bg-green-500"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:358,columnNumber:17},void 0),Z.jsxDEV("span",{children:"SYSCALL_FILTER: ENABLED"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:359,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:357,columnNumber:15},void 0),Z.jsxDEV("div",{className:"flex items-center gap-2",children:[Z.jsxDEV("span",{className:"w-1.5 h-1.5 rounded-full bg-green-500"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:362,columnNumber:17},void 0),Z.jsxDEV("span",{children:"INTENT_CAPSULE: SIGNED"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:363,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:361,columnNumber:15},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:356,columnNumber:13},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:351,columnNumber:11},void 0),Z.jsxDEV("div",{className:"px-4 py-3 border-t border-b border-zora-ghost/30",children:Z.jsxDEV("span",{className:"text-[10px] font-data text-zora-teal uppercase tracking-widest",children:"Mission Telemetry"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:370,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:369,columnNumber:11},void 0),Z.jsxDEV("div",{className:"px-4 py-3 lcars-panel border-zora-teal",children:Z.jsxDEV("div",{className:"text-[10px] font-data text-white/60 space-y-2",children:[Z.jsxDEV("div",{className:"flex justify-between items-center",children:[Z.jsxDEV("span",{children:"TOT_COST:"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:377,columnNumber:17},void 0),Z.jsxDEV("span",{className:"text-zora-gold font-bold",children:["$",E.toFixed(4)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:378,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:376,columnNumber:15},void 0),Z.jsxDEV("div",{className:"flex justify-between items-center",children:[Z.jsxDEV("span",{children:"REQUESTS:"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:381,columnNumber:17},void 0),Z.jsxDEV("span",{className:"text-zora-cyan font-bold",children:M},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:382,columnNumber:17},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:380,columnNumber:15},void 0),l.map(D=>Z.jsxDEV("div",{className:"flex justify-between items-center text-[9px]",children:[Z.jsxDEV("span",{className:"uppercase text-white/40",children:D.name},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:386,columnNumber:19},void 0),Z.jsxDEV("div",{className:"flex items-center gap-2",children:[Z.jsxDEV("span",{className:eg(D.quota.healthScore),children:D.quota.isExhausted?"EXHAUSTED":`${Math.round(D.quota.healthScore*100)}%`},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:388,columnNumber:21},void 0),D.usage.totalCostUsd>0&&Z.jsxDEV("span",{className:"text-zora-gold",children:["$",D.usage.totalCostUsd.toFixed(3)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:392,columnNumber:23},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:387,columnNumber:19},void 0)]},D.name,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:385,columnNumber:17},void 0))]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:375,columnNumber:13},void 0)},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:374,columnNumber:11},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:266,columnNumber:9},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:217,columnNumber:7},void 0),Z.jsxDEV("div",{className:"px-4 py-2 flex justify-between text-[10px] font-data text-white/40 uppercase tracking-widest border-t border-zora-ghost/30",children:[Z.jsxDEV("div",{children:["Zora ",Cj]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:404,columnNumber:9},void 0),Z.jsxDEV("div",{children:"Operational Dashboard"},void 0,!1,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:405,columnNumber:9},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:403,columnNumber:7},void 0)]},void 0,!0,{fileName:"/Users/ryaker/Dev/AgentDev/src/dashboard/frontend/src/App.tsx",lineNumber:205,columnNumber:5},void 0)};QM.createRoot(document.getElementById("root")).render(Z.jsxDEV(HM.StrictMode,{children:Z.jsxDEV(Nj,{},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));