treege 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -2
- package/dist/main.js +3376 -3468
- package/dist/main.umd.cjs +38 -38
- package/dist/src/App.d.ts +2 -0
- package/dist/{components → src/components}/DataDisplay/Icons/TreePlusIcon.d.ts +1 -1
- package/dist/src/components/DataDisplay/Logo/Logo.d.ts +2 -0
- package/dist/src/components/DataDisplay/Logo/Logo.test.d.ts +1 -0
- package/dist/{components → src/components}/DataDisplay/Tree/Tree.d.ts +1 -1
- package/dist/{components → src/components}/DataDisplay/TreeCard/TreeCard.d.ts +1 -1
- package/dist/src/components/DataDisplay/ViewerJSON/ViewerJSON.d.ts +5 -0
- package/dist/{components → src/components}/DataDisplay/ViewerJSONAction/ViewerJSONAction.d.ts +1 -1
- package/dist/{components → src/components}/DataDisplay/ViewerJSONAction/useViewerJSONAction.d.ts +4 -0
- package/dist/{components → src/components}/FeedBack/MainModal/MainModal.d.ts +1 -1
- package/dist/{components → src/components}/FeedBack/TreeModal/TreeModal.d.ts +1 -1
- package/dist/{components → src/components}/Layouts/Action/Action.d.ts +1 -1
- package/dist/src/components/Layouts/Action/Action.test.d.ts +1 -0
- package/dist/{components → src/components}/Layouts/Header/Header.d.ts +1 -1
- package/dist/src/components/Layouts/Header/Header.test.d.ts +1 -0
- package/dist/{components → src/components}/Layouts/Main/Main.d.ts +1 -1
- package/dist/src/components/Layouts/Main/Main.test.d.ts +1 -0
- package/dist/{components → src/components}/Layouts/MosaicLayout/MosaicLayout.d.ts +1 -1
- package/dist/src/components/Layouts/MosaicLayout/MosaicLayout.test.d.ts +1 -0
- package/dist/{components → src/components}/Layouts/Sidebar/Sidebar.d.ts +1 -1
- package/dist/src/components/Layouts/Sidebar/Sidebar.test.d.ts +1 -0
- package/dist/{components → src/components}/Theme/DarkTheme/DarkTheme.d.ts +1 -1
- package/dist/src/config/query.config.d.ts +3 -0
- package/dist/src/config/test.config.d.ts +0 -0
- package/dist/src/constants/TreeData.d.ts +7 -0
- package/dist/{context → src/context}/Auth/AuthProvider.d.ts +1 -1
- package/dist/{context → src/context}/Snackbar/SnackbarProvider.d.ts +1 -1
- package/dist/{features → src/features}/Treege/Treege.d.ts +1 -1
- package/dist/src/features/Treege/components/ButtonCreateTree/ButtonCreateTree.d.ts +2 -0
- package/dist/{features → src/features}/Treege/components/FieldsSelect/FieldsSelect.d.ts +1 -1
- package/dist/{features → src/features}/Treege/components/Forms/FormTreeCardDelete/FormTreeCardDelete.d.ts +1 -1
- package/dist/{features → src/features}/Treege/components/Forms/FormTreeCardMutation/ExtraField.d.ts +1 -1
- package/dist/{features → src/features}/Treege/components/Forms/FormTreeCardMutation/FormTreeCardMutation.d.ts +1 -1
- package/dist/{features → src/features}/Treege/components/Forms/FormTreeCardMutation/useFormTreeCardMutation.d.ts +1 -1
- package/dist/{features → src/features}/Treege/components/TreeCardContainer/TreeCardContainer.d.ts +1 -1
- package/dist/src/features/Treege/components/TreeGrid/TreeGrid.d.ts +2 -0
- package/dist/src/features/Treege/components/TreeNameTextField/TreeNameTextField.d.ts +2 -0
- package/dist/{features → src/features}/Treege/components/TreeSelect/TreeSelect.d.ts +1 -1
- package/dist/{features → src/features}/Treege/components/TreeSelect/useTreeSelect.d.ts +0 -1
- package/dist/{features → src/features}/Treege/context/TreegeProvider.d.ts +1 -1
- package/dist/{features → src/features}/Treege/type/TreeNode.d.ts +2 -1
- package/dist/{locales → src/locales}/en/button-en.d.ts +5 -2
- package/dist/{locales → src/locales}/en/form-en.d.ts +3 -3
- package/dist/{locales → src/locales}/en/modal-en.d.ts +3 -2
- package/dist/{locales → src/locales}/en/snackMessage-en.d.ts +2 -2
- package/dist/{locales → src/locales}/en/translation-en.d.ts +2 -2
- package/dist/{locales → src/locales}/fr/button-fr.d.ts +5 -2
- package/dist/{locales → src/locales}/fr/form-fr.d.ts +2 -2
- package/dist/{locales → src/locales}/fr/modal-fr.d.ts +3 -2
- package/dist/{locales → src/locales}/fr/snackMessage-fr.d.ts +2 -2
- package/dist/{locales → src/locales}/fr/translation-fr.d.ts +2 -2
- package/dist/src/utils/array/isUniqueArrayItem/test/isUniqueArrayItem.test.d.ts +1 -0
- package/dist/src/utils/object/index.d.ts +1 -0
- package/dist/src/utils/object/removeObjectProperty/removeObjectProperty.d.ts +2 -0
- package/dist/src/utils/object/removeObjectProperty/test/removeObjectProperty.test.d.ts +1 -0
- package/dist/src/utils/tree/appendNode/appendNode.d.ts +53 -0
- package/dist/src/utils/tree/appendNode/test/appendNode.test.d.ts +1 -0
- package/dist/src/utils/tree/appendNode/test/mock.d.ts +16 -0
- package/dist/src/utils/tree/getNode/test/getNode.test.d.ts +1 -0
- package/dist/src/utils/tree/getNode/test/mock.d.ts +12 -0
- package/dist/src/utils/tree/getNodeByNameInCurrentTree/test/getNodeByNameInCurrentTree.test.d.ts +1 -0
- package/dist/src/utils/tree/getNodeByNameInCurrentTree/test/mock.d.ts +12 -0
- package/dist/src/utils/tree/getNodeNames/test/getNodeNames.test.d.ts +1 -0
- package/dist/src/utils/tree/getNodeNames/test/mock.d.ts +11 -0
- package/dist/src/utils/tree/getParentNodeByNameInCurrentTree/test/getParentNodeByNameInCurrentTree.test.d.ts +1 -0
- package/dist/src/utils/tree/getParentNodeByNameInCurrentTree/test/mock.d.ts +11 -0
- package/dist/src/utils/tree/getTree/test/getTree.test.d.ts +1 -0
- package/dist/src/utils/tree/getTree/test/mock.d.ts +13 -0
- package/dist/{utils → src/utils}/tree/removeNode/removeNode.d.ts +1 -1
- package/dist/src/utils/tree/removeNode/test/mock.d.ts +12 -0
- package/dist/src/utils/tree/removeNode/test/removeNode.test.d.ts +1 -0
- package/dist/src/utils/tree/updatedNode/test/mock.d.ts +14 -0
- package/dist/src/utils/tree/updatedNode/test/updatedNode.test.d.ts +1 -0
- package/dist/{utils → src/utils}/tree/updatedNode/updatedNode.d.ts +1 -1
- package/package.json +20 -20
- package/dist/components/DataDisplay/Logo/Logo.d.ts +0 -2
- package/dist/components/DataDisplay/ViewerJSON/ViewerJSON.d.ts +0 -5
- package/dist/config/queryClient.d.ts +0 -3
- package/dist/features/Treege/components/ButtonCreateTree/ButtonCreateTree.d.ts +0 -2
- package/dist/features/Treege/components/TreeGrid/TreeGrid.d.ts +0 -2
- package/dist/features/Treege/components/TreeNameTextField/TreeNameTextField.d.ts +0 -2
- package/dist/utils/tree/appendNode/appendNode.d.ts +0 -9
- package/dist/{components → src/components}/DataDisplay/Tree/useTree.d.ts +0 -0
- package/dist/{components → src/components}/DataDisplay/ViewerJSON/useViewerJSON.d.ts +0 -0
- package/dist/{config/i18n.d.ts → src/config/i18n.config.d.ts} +0 -0
- package/dist/{config/theme.d.ts → src/config/theme.config.d.ts} +0 -0
- package/dist/{constants → src/constants}/colors.d.ts +0 -0
- package/dist/{constants → src/constants}/fields.d.ts +12 -12
- package/dist/{context → src/context}/Auth/AuthContext.d.ts +0 -0
- package/dist/{context → src/context}/Snackbar/SnackbarContext.d.ts +0 -0
- package/dist/{context → src/context}/Snackbar/snackbarReducer.d.ts +0 -0
- package/dist/{features → src/features}/Treege/components/ButtonCreateTree/useButtonCreateTree.d.ts +0 -0
- package/dist/{features → src/features}/Treege/components/FieldsSelect/index.d.ts +0 -0
- package/dist/{features → src/features}/Treege/components/FieldsSelect/useFieldsSelect.d.ts +12 -12
- /package/dist/{features → src/features}/Treege/components/Forms/FormTreeCardDelete/useFormTreeCardDelete.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/components/TreeCardContainer/useTreeCardContainer.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/components/TreeGrid/useTreeGrid.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/components/TreeNameTextField/index.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/components/TreeNameTextField/useTreeNameTextField.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/components/TreeSelect/index.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/context/TreegeContext.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/index.d.ts +0 -0
- /package/dist/{features → src/features}/Treege/reducer/treeReducer.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/useSnackbar/index.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/useSnackbar/useSnackbar.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/useTreegeContext/index.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/useTreegeContext/useTreegeContext.d.ts +0 -0
- /package/dist/{main.d.ts → src/main.d.ts} +0 -0
- /package/dist/{services → src/services}/workflows/mutation/useAddWorkflowsMutation.d.ts +0 -0
- /package/dist/{services → src/services}/workflows/mutation/useEditWorkflowsMutation.d.ts +0 -0
- /package/dist/{services → src/services}/workflows/mutation/useWorkflowMutationFetcher.d.ts +0 -0
- /package/dist/{services → src/services}/workflows/query/useWorkflowQuery.d.ts +0 -0
- /package/dist/{services → src/services}/workflows/query/useWorkflowQueryFetcher.d.ts +0 -0
- /package/dist/{services → src/services}/workflows/query/useWorkflowsQuery.d.ts +0 -0
- /package/dist/{utils → src/utils}/array/index.d.ts +0 -0
- /package/dist/{utils → src/utils}/array/isUniqueArrayItem/isUniqueArrayItem.d.ts +0 -0
- /package/dist/{utils → src/utils}/tree/getNode/getNode.d.ts +0 -0
- /package/dist/{utils → src/utils}/tree/getNodeByNameInCurrentTree/getNodeByNameInCurrentTree.d.ts +0 -0
- /package/dist/{utils → src/utils}/tree/getNodeNames/getNodeNames.d.ts +0 -0
- /package/dist/{utils → src/utils}/tree/getParentNodeByNameInCurrentTree/getParentNodeByNameInCurrentTree.d.ts +0 -0
- /package/dist/{utils → src/utils}/tree/getTree/getTree.d.ts +0 -0
- /package/dist/{utils → src/utils}/tree/index.d.ts +0 -0
package/dist/main.umd.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(je,U){typeof exports=="object"&&typeof module<"u"?U(exports,require("react"),require("axios"),require("react-query"),require("@tracktor/design-system"),require("react-dom"),require("react-i18next"),require("@codemirror/lang-json"),require("@uiw/codemirror-theme-dracula"),require("@uiw/react-codemirror"),require("i18next"),require("i18next-browser-languagedetector")):typeof define=="function"&&define.amd?define(["exports","react","axios","react-query","@tracktor/design-system","react-dom","react-i18next","@codemirror/lang-json","@uiw/codemirror-theme-dracula","@uiw/react-codemirror","i18next","i18next-browser-languagedetector"],U):(je=typeof globalThis<"u"?globalThis:je||self,U(je.treege={},je.React,je.axios,je.reactQuery,je.designSystem,je.ReactDOM,je.reactI18next,je.langJson,je.codemirrorThemeDracula,je.CodeMirror,je.i18n,je.LanguageDetector))})(this,function(je,U,It,kt,w,hl,Ve,pl,gl,ml,rn,yl){"use strict";function vl(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const n in e)if(n!=="default"){const r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:()=>e[n]})}}return t.default=e,Object.freeze(t)}const ue=vl(U);function Lo(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Po(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var n=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(r){var i=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,i.get?i:{enumerable:!0,get:function(){return e[r]}})}),n}var Qr={exports:{}},on={};/**
|
|
2
2
|
* @license React
|
|
3
3
|
* react-jsx-runtime.production.min.js
|
|
4
4
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/var
|
|
9
|
+
*/var Fo;function bl(){if(Fo)return on;Fo=1;var e=U,t=Symbol.for("react.element"),n=Symbol.for("react.fragment"),r=Object.prototype.hasOwnProperty,i=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,o={key:!0,ref:!0,__self:!0,__source:!0};function a(s,l,u){var c,d={},f=null,h=null;u!==void 0&&(f=""+u),l.key!==void 0&&(f=""+l.key),l.ref!==void 0&&(h=l.ref);for(c in l)r.call(l,c)&&!o.hasOwnProperty(c)&&(d[c]=l[c]);if(s&&s.defaultProps)for(c in l=s.defaultProps,l)d[c]===void 0&&(d[c]=l[c]);return{$$typeof:t,type:s,key:f,ref:h,props:d,_owner:i.current}}return on.Fragment=n,on.jsx=a,on.jsxs=a,on}var an={};/**
|
|
10
10
|
* @license React
|
|
11
11
|
* react-jsx-runtime.development.js
|
|
12
12
|
*
|
|
@@ -14,36 +14,36 @@
|
|
|
14
14
|
*
|
|
15
15
|
* This source code is licensed under the MIT license found in the
|
|
16
16
|
* LICENSE file in the root directory of this source tree.
|
|
17
|
-
*/var
|
|
18
|
-
`+W+p}}var re=!1,te;{var Ce=typeof WeakMap=="function"?WeakMap:Map;te=new Ce}function Y(p,
|
|
17
|
+
*/var Uo;function xl(){return Uo||(Uo=1,process.env.NODE_ENV!=="production"&&function(){var e=U,t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),o=Symbol.for("react.profiler"),a=Symbol.for("react.provider"),s=Symbol.for("react.context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),c=Symbol.for("react.suspense_list"),d=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),h=Symbol.for("react.offscreen"),b=Symbol.iterator,y="@@iterator";function v(p){if(p===null||typeof p!="object")return null;var j=b&&p[b]||p[y];return typeof j=="function"?j:null}var M=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function D(p){{for(var j=arguments.length,L=new Array(j>1?j-1:0),Z=1;Z<j;Z++)L[Z-1]=arguments[Z];O("error",p,L)}}function O(p,j,L){{var Z=M.ReactDebugCurrentFrame,se=Z.getStackAddendum();se!==""&&(j+="%s",L=L.concat([se]));var le=L.map(function(ie){return String(ie)});le.unshift("Warning: "+j),Function.prototype.apply.call(console[p],console,le)}}var _=!1,m=!1,k=!1,C=!1,S=!1,I;I=Symbol.for("react.module.reference");function E(p){return!!(typeof p=="string"||typeof p=="function"||p===r||p===o||S||p===i||p===u||p===c||C||p===h||_||m||k||typeof p=="object"&&p!==null&&(p.$$typeof===f||p.$$typeof===d||p.$$typeof===a||p.$$typeof===s||p.$$typeof===l||p.$$typeof===I||p.getModuleId!==void 0))}function $(p,j,L){var Z=p.displayName;if(Z)return Z;var se=j.displayName||j.name||"";return se!==""?L+"("+se+")":L}function X(p){return p.displayName||"Context"}function H(p){if(p==null)return null;if(typeof p.tag=="number"&&D("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),typeof p=="function")return p.displayName||p.name||null;if(typeof p=="string")return p;switch(p){case r:return"Fragment";case n:return"Portal";case o:return"Profiler";case i:return"StrictMode";case u:return"Suspense";case c:return"SuspenseList"}if(typeof p=="object")switch(p.$$typeof){case s:var j=p;return X(j)+".Consumer";case a:var L=p;return X(L._context)+".Provider";case l:return $(p,p.render,"ForwardRef");case d:var Z=p.displayName||null;return Z!==null?Z:H(p.type)||"Memo";case f:{var se=p,le=se._payload,ie=se._init;try{return H(ie(le))}catch{return null}}}return null}var x=Object.assign,z=0,N,R,P,q,T,A,V;function K(){}K.__reactDisabledLog=!0;function B(){{if(z===0){N=console.log,R=console.info,P=console.warn,q=console.error,T=console.group,A=console.groupCollapsed,V=console.groupEnd;var p={configurable:!0,enumerable:!0,value:K,writable:!0};Object.defineProperties(console,{info:p,log:p,warn:p,error:p,group:p,groupCollapsed:p,groupEnd:p})}z++}}function J(){{if(z--,z===0){var p={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:x({},p,{value:N}),info:x({},p,{value:R}),warn:x({},p,{value:P}),error:x({},p,{value:q}),group:x({},p,{value:T}),groupCollapsed:x({},p,{value:A}),groupEnd:x({},p,{value:V})})}z<0&&D("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}}var Q=M.ReactCurrentDispatcher,W;function ee(p,j,L){{if(W===void 0)try{throw Error()}catch(se){var Z=se.stack.trim().match(/\n( *(at )?)/);W=Z&&Z[1]||""}return`
|
|
18
|
+
`+W+p}}var re=!1,te;{var Ce=typeof WeakMap=="function"?WeakMap:Map;te=new Ce}function Y(p,j){if(!p||re)return"";{var L=te.get(p);if(L!==void 0)return L}var Z;re=!0;var se=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var le;le=Q.current,Q.current=null,B();try{if(j){var ie=function(){throw Error()};if(Object.defineProperty(ie.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(ie,[])}catch(it){Z=it}Reflect.construct(p,[],ie)}else{try{ie.call()}catch(it){Z=it}p.call(ie.prototype)}}else{try{throw Error()}catch(it){Z=it}p()}}catch(it){if(it&&Z&&typeof it.stack=="string"){for(var ne=it.stack.split(`
|
|
19
19
|
`),Ie=Z.stack.split(`
|
|
20
|
-
`),
|
|
21
|
-
`+ne[
|
|
20
|
+
`),Ee=ne.length-1,Me=Ie.length-1;Ee>=1&&Me>=0&&ne[Ee]!==Ie[Me];)Me--;for(;Ee>=1&&Me>=0;Ee--,Me--)if(ne[Ee]!==Ie[Me]){if(Ee!==1||Me!==1)do if(Ee--,Me--,Me<0||ne[Ee]!==Ie[Me]){var ke=`
|
|
21
|
+
`+ne[Ee].replace(" at new "," at ");return p.displayName&&ke.includes("<anonymous>")&&(ke=ke.replace("<anonymous>",p.displayName)),typeof p=="function"&&te.set(p,ke),ke}while(Ee>=1&&Me>=0);break}}}finally{re=!1,Q.current=le,J(),Error.prepareStackTrace=se}var Nt=p?p.displayName||p.name:"",qr=Nt?ee(Nt):"";return typeof p=="function"&&te.set(p,qr),qr}function Le(p,j,L){return Y(p,!1)}function G(p){var j=p.prototype;return!!(j&&j.isReactComponent)}function Je(p,j,L){if(p==null)return"";if(typeof p=="function")return Y(p,G(p));if(typeof p=="string")return ee(p);switch(p){case u:return ee("Suspense");case c:return ee("SuspenseList")}if(typeof p=="object")switch(p.$$typeof){case l:return Le(p.render);case d:return Je(p.type,j,L);case f:{var Z=p,se=Z._payload,le=Z._init;try{return Je(le(se),j,L)}catch{}}}return""}var rt=Object.prototype.hasOwnProperty,At={},Sr=M.ReactDebugCurrentFrame;function Jt(p){if(p){var j=p._owner,L=Je(p.type,p._source,j?j.type:null);Sr.setExtraStackFrame(L)}else Sr.setExtraStackFrame(null)}function Io(p,j,L,Z,se){{var le=Function.call.bind(rt);for(var ie in p)if(le(p,ie)){var ne=void 0;try{if(typeof p[ie]!="function"){var Ie=Error((Z||"React class")+": "+L+" type `"+ie+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof p[ie]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw Ie.name="Invariant Violation",Ie}ne=p[ie](j,ie,Z,L,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(Ee){ne=Ee}ne&&!(ne instanceof Error)&&(Jt(se),D("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",Z||"React class",L,ie,typeof ne),Jt(null)),ne instanceof Error&&!(ne.message in At)&&(At[ne.message]=!0,Jt(se),D("Failed %s type: %s",L,ne.message),Jt(null))}}}var ko=Array.isArray;function Sn(p){return ko(p)}function zo(p){{var j=typeof Symbol=="function"&&Symbol.toStringTag,L=j&&p[Symbol.toStringTag]||p.constructor.name||"Object";return L}}function Ro(p){try{return Ir(p),!1}catch{return!0}}function Ir(p){return""+p}function kr(p){if(Ro(p))return D("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",zo(p)),Ir(p)}var St=M.ReactCurrentOwner,$o={key:!0,ref:!0,__self:!0,__source:!0},zr,Rr,In;In={};function $r(p){if(rt.call(p,"ref")){var j=Object.getOwnPropertyDescriptor(p,"ref").get;if(j&&j.isReactWarning)return!1}return p.ref!==void 0}function Lr(p){if(rt.call(p,"key")){var j=Object.getOwnPropertyDescriptor(p,"key").get;if(j&&j.isReactWarning)return!1}return p.key!==void 0}function Pr(p,j){if(typeof p.ref=="string"&&St.current&&j&&St.current.stateNode!==j){var L=H(St.current.type);In[L]||(D('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',H(St.current.type),p.ref),In[L]=!0)}}function Fr(p,j){{var L=function(){zr||(zr=!0,D("%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://reactjs.org/link/special-props)",j))};L.isReactWarning=!0,Object.defineProperty(p,"key",{get:L,configurable:!0})}}function Ur(p,j){{var L=function(){Rr||(Rr=!0,D("%s: `ref` 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://reactjs.org/link/special-props)",j))};L.isReactWarning=!0,Object.defineProperty(p,"ref",{get:L,configurable:!0})}}var Yr=function(p,j,L,Z,se,le,ie){var ne={$$typeof:t,type:p,key:j,ref:L,props:ie,_owner:le};return ne._store={},Object.defineProperty(ne._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(ne,"_self",{configurable:!1,enumerable:!1,writable:!1,value:Z}),Object.defineProperty(ne,"_source",{configurable:!1,enumerable:!1,writable:!1,value:se}),Object.freeze&&(Object.freeze(ne.props),Object.freeze(ne)),ne};function Vr(p,j,L,Z,se){{var le,ie={},ne=null,Ie=null;L!==void 0&&(kr(L),ne=""+L),Lr(j)&&(kr(j.key),ne=""+j.key),$r(j)&&(Ie=j.ref,Pr(j,se));for(le in j)rt.call(j,le)&&!$o.hasOwnProperty(le)&&(ie[le]=j[le]);if(p&&p.defaultProps){var Ee=p.defaultProps;for(le in Ee)ie[le]===void 0&&(ie[le]=Ee[le])}if(ne||Ie){var Me=typeof p=="function"?p.displayName||p.name||"Unknown":p;ne&&Fr(ie,Me),Ie&&Ur(ie,Me)}return Yr(p,ne,Ie,se,Z,St.current,ie)}}var Zt=M.ReactCurrentOwner,kn=M.ReactDebugCurrentFrame;function Mt(p){if(p){var j=p._owner,L=Je(p.type,p._source,j?j.type:null);kn.setExtraStackFrame(L)}else kn.setExtraStackFrame(null)}var en;en=!1;function tn(p){return typeof p=="object"&&p!==null&&p.$$typeof===t}function zn(){{if(Zt.current){var p=H(Zt.current.type);if(p)return`
|
|
22
22
|
|
|
23
|
-
Check the render method of \``+p+"`."}return""}}function
|
|
23
|
+
Check the render method of \``+p+"`."}return""}}function Br(p){{if(p!==void 0){var j=p.fileName.replace(/^.*[\\\/]/,""),L=p.lineNumber;return`
|
|
24
24
|
|
|
25
|
-
Check your code at `+
|
|
25
|
+
Check your code at `+j+":"+L+"."}return""}}var Rn={};function F(p){{var j=zn();if(!j){var L=typeof p=="string"?p:p.displayName||p.name;L&&(j=`
|
|
26
26
|
|
|
27
|
-
Check the top-level render call using <`+L+">.")}return S}}function he(p,S){{if(!p._store||p._store.validated||p.key!=null)return;p._store.validated=!0;var L=F(S);if(Yn[L])return;Yn[L]=!0;var Z="";p&&p._owner&&p._owner!==nn.current&&(Z=" It was passed a child from "+H(p._owner.type)+"."),Tt(p),D('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',L,Z),Tt(null)}}function pe(p,S){{if(typeof p!="object")return;if(Ln(p))for(var L=0;L<p.length;L++){var Z=p[L];on(Z)&&he(Z,S)}else if(on(p))p._store&&(p._store.validated=!0);else if(p){var se=v(p);if(typeof se=="function"&&se!==p.entries)for(var ce=se.call(p),ie;!(ie=ce.next()).done;)on(ie.value)&&he(ie.value,S)}}}function Te(p){{var S=p.type;if(S==null||typeof S=="string")return;var L;if(typeof S=="function")L=S.propTypes;else if(typeof S=="object"&&(S.$$typeof===l||S.$$typeof===d))L=S.propTypes;else return;if(L){var Z=H(S);$o(L,p.props,"prop",Z,p)}else if(S.PropTypes!==void 0&&!rn){rn=!0;var se=H(S);D("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",se||"Unknown")}typeof S.getDefaultProps=="function"&&!S.getDefaultProps.isReactClassApproved&&D("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function Ye(p){{for(var S=Object.keys(p.props),L=0;L<S.length;L++){var Z=S[L];if(Z!=="children"&&Z!=="key"){Tt(p),D("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",Z),Tt(null);break}}p.ref!==null&&(Tt(p),D("Invalid attribute `ref` supplied to `React.Fragment`."),Tt(null))}}function Ve(p,S,L,Z,se,ce){{var ie=E(p);if(!ie){var ne="";(p===void 0||typeof p=="object"&&p!==null&&Object.keys(p).length===0)&&(ne+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var Ie=ti(se);Ie?ne+=Ie:ne+=Un();var De;p===null?De="null":Ln(p)?De="array":p!==void 0&&p.$$typeof===t?(De="<"+(H(p.type)||"Unknown")+" />",ne=" Did you accidentally export a JSX literal instead of a component?"):De=typeof p,D("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",De,ne)}var _e=ei(p,S,L,se,ce);if(_e==null)return _e;if(ie){var ke=S.children;if(ke!==void 0)if(Z)if(Ln(ke)){for(var Dt=0;Dt<ke.length;Dt++)pe(ke[Dt],p);Object.freeze&&Object.freeze(ke)}else D("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 pe(ke,p)}return p===r?Ye(_e):Te(_e),_e}}function nt(p,S,L){return Ve(p,S,L,!0)}function Ke(p,S,L){return Ve(p,S,L,!1)}var mt=Ke,an=nt;ln.Fragment=r,ln.jsx=mt,ln.jsxs=an}()),ln}(function(e){process.env.NODE_ENV==="production"?e.exports=ml():e.exports=yl()})(gl);const Vn=sn.Fragment,_=sn.jsx,oe=sn.jsxs,vl=Object.freeze(Object.defineProperty({__proto__:null,Fragment:Vn,jsx:_,jsxs:oe},Symbol.toStringTag,{value:"Module"})),Me={background:"#0a1929",borderBlue:"#0f353e",borderGrey:"rgba(255, 255, 255, 0.1)",grey500:"#868c95",primary:"#0ed3b4",secondary:"#007ef6",tertiary:"#0f353e"},bl={components:{MuiButton:{styleOverrides:{root:({ownerState:e})=>({...e.color==="primary"&&e.variant==="contained"&&{color:`${Me.tertiary} !important`}})}}},palette:{background:{default:Me.background,paper:Me.background},mode:"dark",primary:{main:Me.primary},secondary:{main:Me.secondary}}},Ml=({children:e})=>oe(Vn,{children:[_(N.GlobalStyles,{styles:{"*":{scrollbarColor:"rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05)",scrollbarWidth:"thin"},"*::-webkit-scrollbar":{height:6,width:6},"*::-webkit-scrollbar-button":{height:0,width:0},"*::-webkit-scrollbar-corner":{background:"transparent"},"*::-webkit-scrollbar-thumb":{backgroundColor:"rgba(255, 255, 255, 0.2)",border:0,borderRadius:10},"*::-webkit-scrollbar-track":{background:"rgba(255, 255, 255, 0.05)"},"html, body, #root":{height:"100%"}}}),_(N.ThemeProvider,{theme:bl,children:e})]}),_l=new $t.QueryClient({defaultOptions:{queries:{retry:!1}}}),xl={authToken:void 0},Tl=U.createContext(xl),wl=({children:e,authToken:t})=>{const n=U.useMemo(()=>({authToken:t}),[t]);return _(Tl.Provider,{value:n,children:e})},qo={dispatchSnackbar:()=>null,snackbar:{open:!1}},Bo=U.createContext(qo),qn={closeSnackbar:"closeSnackbar",openSnackbar:"openSnackbar"},Nl=(e,t="success")=>({message:e,severity:t,type:qn.openSnackbar}),Qo=()=>({type:qn.closeSnackbar}),El=(e,t)=>{switch(t.type){case qn.openSnackbar:{const{message:n,severity:r}=t;return{message:n,open:!0,severity:r}}case qn.closeSnackbar:return{...e,open:!1};default:throw new Error}},Dl={snackbarAlert:{width:"100%"}},Ol=({children:e})=>{const[t,n]=U.useReducer(El,qo.snackbar),{message:r,open:i,severity:o}=t,a=6e3,s=()=>n(Qo()),l=U.useMemo(()=>({dispatchSnackbar:n,snackbar:t}),[t,n]);return oe(Bo.Provider,{value:l,children:[_(N.Snackbar,{open:i,autoHideDuration:a,onClose:s,anchorOrigin:{horizontal:"center",vertical:"bottom"},children:_(N.Alert,{onClose:s,severity:o,sx:Dl.snackbarAlert,variant:"filled",children:r})}),e]})},Cl="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDYyIiBoZWlnaHQ9IjE0NCIgdmlld0JveD0iMCAwIDQ2MiAxNDQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8yXzY1KSI+CjxwYXRoIGQ9Ik0xMzcgNDEuMzRMMTE2LjU3IDZDMTE2LjIyIDUuMzkzOTkgMTE1LjcxNyA0Ljg5MDM3IDExNS4xMTIgNC41Mzk0MkMxMTQuNTA3IDQuMTg4NDcgMTEzLjgyIDQuMDAyNDcgMTEzLjEyIDRIMzguODNDMzguMTMwMiA0LjAwMjQ3IDM3LjQ0MzQgNC4xODg0NyAzNi44MzggNC41Mzk0MkMzNi4yMzI2IDQuODkwMzcgMzUuNzI5OSA1LjM5Mzk5IDM1LjM4IDZMMTUgNDEuMzRDMTQuNjQ5NSA0MS45NDcgMTQuNDY0NyA0Mi42MzU1IDE0LjQ2NDEgNDMuMzM2NUMxNC40NjM1IDQ0LjAzNzQgMTQuNjQ3MSA0NC43MjYyIDE0Ljk5NjUgNDUuMzMzOUMxNS4zNDU5IDQ1Ljk0MTYgMTUuODQ4OCA0Ni40NDY3IDE2LjQ1NDkgNDYuNzk4OEMxNy4wNjEgNDcuMTUwOSAxNy43NDkgNDcuMzM3NSAxOC40NSA0Ny4zNEgxMzMuNTNDMTM0LjIzMyA0Ny4zNDEgMTM0LjkyMyA0Ny4xNTcgMTM1LjUzMiA0Ni44MDYzQzEzNi4xNDEgNDYuNDU1NyAxMzYuNjQ3IDQ1Ljk1MDggMTM2Ljk5OSA0NS4zNDI2QzEzNy4zNSA0NC43MzQzIDEzNy41MzYgNDQuMDQ0MSAxMzcuNTM2IDQzLjM0MTVDMTM3LjUzNiA0Mi42Mzg4IDEzNy4zNTEgNDEuOTQ4NSAxMzcgNDEuMzRaIiBmaWxsPSIjMTFEM0I0Ii8+CjxwYXRoIGQ9Ik05Mi40OCAxNDAuNjRIMTEzLjFDMTEzLjgwNSAxNDAuNjQzIDExNC40OTggMTQwLjQ1OSAxMTUuMTA5IDE0MC4xMDhDMTE1LjcyIDEzOS43NTcgMTE2LjIyOCAxMzkuMjUgMTE2LjU4IDEzOC42NEwxNTEuMzkgNzguMzRDMTUxLjc0MSA3Ny43MzE1IDE1MS45MjYgNzcuMDQxMiAxNTEuOTI2IDc2LjMzODVDMTUxLjkyNiA3NS42MzU5IDE1MS43NCA3NC45NDU3IDE1MS4zODkgNzQuMzM3NEMxNTEuMDM3IDczLjcyOTIgMTUwLjUzMSA3My4yMjQzIDE0OS45MjIgNzIuODczN0MxNDkuMzEzIDcyLjUyMyAxNDguNjIzIDcyLjMzOSAxNDcuOTIgNzIuMzRIOTIuNDhDOTEuNDE5MSA3Mi4zNCA5MC40MDE3IDcyLjc2MTQgODkuNjUxNiA3My41MTE2Qzg4LjkwMTQgNzQuMjYxNyA4OC40OCA3NS4yNzkxIDg4LjQ4IDc2LjM0VjEzNi42NEM4OC40OCAxMzcuNzAxIDg4LjkwMTQgMTM4LjcxOCA4OS42NTE2IDEzOS40NjhDOTAuNDAxNyAxNDAuMjE5IDkxLjQxOTEgMTQwLjY0IDkyLjQ4IDE0MC42NFoiIGZpbGw9IiMwMDdFRjYiLz4KPHBhdGggZD0iTTU5LjQ4IDcyLjMySDRDMy4yOTgyIDcyLjMyMDcgMi42MDg5NCA3Mi41MDYxIDIuMDAxNDMgNzIuODU3NEMxLjM5MzkzIDczLjIwODggMC44ODk1NTggNzMuNzEzOCAwLjUzODk3IDc0LjMyMThDMC4xODgzODIgNzQuOTI5NyAwLjAwMzkxNjk0IDc1LjYxOTIgMC4wMDQwOTcxMiA3Ni4zMjFDMC4wMDQyNzcyOSA3Ny4wMjI4IDAuMTg5MDk3IDc3LjcxMjIgMC41Mzk5OTcgNzguMzJMMzUuMzggMTM4LjY2QzM1LjcyOTkgMTM5LjI2NiAzNi4yMzI2IDEzOS43NyAzNi44MzggMTQwLjEyMUMzNy40NDM0IDE0MC40NzIgMzguMTMwMiAxNDAuNjU4IDM4LjgzIDE0MC42Nkg1OS40OEM2MC41NDA5IDE0MC42NiA2MS41NTgzIDE0MC4yMzkgNjIuMzA4NCAxMzkuNDg4QzYzLjA1ODYgMTM4LjczOCA2My40OCAxMzcuNzIxIDYzLjQ4IDEzNi42NlY3Ni4zMUM2My40NzczIDc1LjI1MDkgNjMuMDU0OCA3NC4yMzYgNjIuMzA0OSA3My40ODhDNjEuNTU1IDcyLjc0MDEgNjAuNTM5MSA3Mi4zMiA1OS40OCA3Mi4zMloiIGZpbGw9IiMwMTY0QTgiLz4KPC9nPgo8cGF0aCBkPSJNMjA3LjUyIDEwNi45NkMyMDIuMjcyIDEwNi45NiAxOTguMzY4IDEwNS41ODQgMTk1LjgwOCAxMDIuODMyQzE5My4zMTIgMTAwLjA4IDE5Mi4wNjQgOTYuMzM2IDE5Mi4wNjQgOTEuNlY3MC40OEgxODUuNjMyVjYwLjQ5NkgxOTIuMDY0VjUwLjcwNEwyMDUuMDI0IDQ2Ljg2NFY2MC40OTZIMjE2LjU0NEwyMTUuNzc2IDcwLjQ4SDIwNS4wMjRWOTAuNzM2QzIwNS4wMjQgOTMuMjMyIDIwNS42IDk0Ljk2IDIwNi43NTIgOTUuOTJDMjA3LjkwNCA5Ni44MTYgMjA5LjY5NiA5Ny4yNjQgMjEyLjEyOCA5Ny4yNjRDMjEzLjkyIDk3LjI2NCAyMTUuNzc2IDk2Ljk0NCAyMTcuNjk2IDk2LjMwNFYxMDUuMjMyQzIxNi4yODggMTA1LjgwOCAyMTQuNzUyIDEwNi4yMjQgMjEzLjA4OCAxMDYuNDhDMjExLjQyNCAxMDYuOCAyMDkuNTY4IDEwNi45NiAyMDcuNTIgMTA2Ljk2Wk0yMjQuMzQ3IDEwNlY2MC40OTZIMjM2LjM0N0wyMzYuOTIzIDY1LjJDMjM4Ljk3MSA2My45MiAyNDEuNDk5IDYyLjc2OCAyNDQuNTA3IDYxLjc0NEMyNDcuNTc5IDYwLjY1NiAyNTAuNTg3IDU5LjkyIDI1My41MzEgNTkuNTM2VjY5LjMyOEMyNTEuODAzIDY5LjU4NCAyNDkuOTE1IDY5Ljk2OCAyNDcuODY3IDcwLjQ4QzI0NS44MTkgNzAuOTkyIDI0My44NjcgNzEuNTY4IDI0Mi4wMTEgNzIuMjA4QzI0MC4xNTUgNzIuODQ4IDIzOC41ODcgNzMuNTIgMjM3LjMwNyA3NC4yMjRWMTA2SDIyNC4zNDdaTTI4MS45OTcgMTA2Ljk2QzI3NC4xMjUgMTA2Ljk2IDI2Ny44ODUgMTA1LjAwOCAyNjMuMjc3IDEwMS4xMDRDMjU4LjY2OSA5Ny4xMzYgMjU2LjM2NSA5MS4xNTIgMjU2LjM2NSA4My4xNTJDMjU2LjM2NSA3NS45MiAyNTguMjg1IDcwLjE5MiAyNjIuMTI1IDY1Ljk2OEMyNjYuMDI5IDYxLjY4IDI3MS44MjEgNTkuNTM2IDI3OS41MDEgNTkuNTM2QzI4Ni41NDEgNTkuNTM2IDI5MS45MTcgNjEuMzkyIDI5NS42MjkgNjUuMTA0QzI5OS40MDUgNjguNzUyIDMwMS4yOTIgNzMuNTUyIDMwMS4yOTIgNzkuNTA0Vjg3Ljc2SDI2OC4zNjVDMjY5LjA2OSA5MS40MDggMjcwLjczMyA5My45MDQgMjczLjM1NyA5NS4yNDhDMjc2LjA0NSA5Ni41OTIgMjc5LjgyMSA5Ny4yNjQgMjg0LjY4NSA5Ny4yNjRDMjg3LjExNyA5Ny4yNjQgMjg5LjU4MSA5Ny4wNCAyOTIuMDc3IDk2LjU5MkMyOTQuNjM3IDk2LjE0NCAyOTYuODEzIDk1LjU2OCAyOTguNjA1IDk0Ljg2NFYxMDQuMDhDMjk2LjQ5MyAxMDUuMDQgMjk0LjAyOSAxMDUuNzQ0IDI5MS4yMTMgMTA2LjE5MkMyODguMzk3IDEwNi43MDQgMjg1LjMyNSAxMDYuOTYgMjgxLjk5NyAxMDYuOTZaTTI2OC4zNjUgNzkuNzkySDI4OS45NjVWNzcuMjk2QzI4OS45NjUgNzQuNjcyIDI4OS4xOTcgNzIuNjI0IDI4Ny42NjEgNzEuMTUyQzI4Ni4xMjUgNjkuNjE2IDI4My41MzMgNjguODQ4IDI3OS44ODUgNjguODQ4QzI3NS41OTcgNjguODQ4IDI3Mi41ODkgNjkuNzEyIDI3MC44NjEgNzEuNDRDMjY5LjE5NyA3My4xNjggMjY4LjM2NSA3NS45NTIgMjY4LjM2NSA3OS43OTJaTTMzNC4wMjggMTA2Ljk2QzMyNi4xNTYgMTA2Ljk2IDMxOS45MTYgMTA1LjAwOCAzMTUuMzA4IDEwMS4xMDRDMzEwLjcgOTcuMTM2IDMwOC4zOTYgOTEuMTUyIDMwOC4zOTYgODMuMTUyQzMwOC4zOTYgNzUuOTIgMzEwLjMxNiA3MC4xOTIgMzE0LjE1NiA2NS45NjhDMzE4LjA2IDYxLjY4IDMyMy44NTIgNTkuNTM2IDMzMS41MzIgNTkuNTM2QzMzOC41NzIgNTkuNTM2IDM0My45NDggNjEuMzkyIDM0Ny42NiA2NS4xMDRDMzUxLjQzNiA2OC43NTIgMzUzLjMyNCA3My41NTIgMzUzLjMyNCA3OS41MDRWODcuNzZIMzIwLjM5NkMzMjEuMSA5MS40MDggMzIyLjc2NCA5My45MDQgMzI1LjM4OCA5NS4yNDhDMzI4LjA3NiA5Ni41OTIgMzMxLjg1MiA5Ny4yNjQgMzM2LjcxNiA5Ny4yNjRDMzM5LjE0OCA5Ny4yNjQgMzQxLjYxMiA5Ny4wNCAzNDQuMTA4IDk2LjU5MkMzNDYuNjY4IDk2LjE0NCAzNDguODQ0IDk1LjU2OCAzNTAuNjM2IDk0Ljg2NFYxMDQuMDhDMzQ4LjUyNCAxMDUuMDQgMzQ2LjA2IDEwNS43NDQgMzQzLjI0NCAxMDYuMTkyQzM0MC40MjggMTA2LjcwNCAzMzcuMzU2IDEwNi45NiAzMzQuMDI4IDEwNi45NlpNMzIwLjM5NiA3OS43OTJIMzQxLjk5NlY3Ny4yOTZDMzQxLjk5NiA3NC42NzIgMzQxLjIyOCA3Mi42MjQgMzM5LjY5MiA3MS4xNTJDMzM4LjE1NiA2OS42MTYgMzM1LjU2NCA2OC44NDggMzMxLjkxNiA2OC44NDhDMzI3LjYyOCA2OC44NDggMzI0LjYyIDY5LjcxMiAzMjIuODkyIDcxLjQ0QzMyMS4yMjggNzMuMTY4IDMyMC4zOTYgNzUuOTUyIDMyMC4zOTYgNzkuNzkyWk0zODEuNTQ3IDEyMi44OTZDMzc4LjE1NSAxMjIuODk2IDM3NC42NjcgMTIyLjY3MiAzNzEuMDgzIDEyMi4yMjRDMzY3LjU2MyAxMjEuNzc2IDM2NC41ODcgMTIxLjEzNiAzNjIuMTU1IDEyMC4zMDRWMTEwLjYwOEMzNjQuNzE1IDExMS40NCAzNjcuNzIzIDExMi4wOCAzNzEuMTc5IDExMi41MjhDMzc0LjYzNSAxMTMuMDQgMzc3Ljg2NyAxMTMuMjk2IDM4MC44NzUgMTEzLjI5NkMzODUuMjkxIDExMy4yOTYgMzg4LjQ5MSAxMTMuMDQgMzkwLjQ3NSAxMTIuNTI4QzM5Mi40NTkgMTEyLjA4IDM5My40NTEgMTExLjI0OCAzOTMuNDUxIDExMC4wMzJDMzkzLjQ1MSAxMDkuMDA4IDM5My4wMDMgMTA4LjMwNCAzOTIuMTA3IDEwNy45MkMzOTEuMjc1IDEwNy41MzYgMzg5LjQ4MyAxMDcuMzQ0IDM4Ni43MzEgMTA3LjM0NEgzNzQuMzQ3QzM2Ni4yMTkgMTA3LjM0NCAzNjIuMTU1IDEwNC4zMzYgMzYyLjE1NSA5OC4zMkMzNjIuMTU1IDk2LjQ2NCAzNjIuNjY3IDk0Ljc2OCAzNjMuNjkxIDkzLjIzMkMzNjQuNzE1IDkxLjY5NiAzNjYuMzQ3IDkwLjQ4IDM2OC41ODcgODkuNTg0QzM2My40MDMgODYuOTYgMzYwLjgxMSA4Mi41NDQgMzYwLjgxMSA3Ni4zMzZDMzYwLjgxMSA3MC40NDggMzYyLjYzNSA2Ni4xOTIgMzY2LjI4MyA2My41NjhDMzY5LjkzMSA2MC44OCAzNzUuMzM5IDU5LjUzNiAzODIuNTA3IDU5LjUzNkMzODMuOTc5IDU5LjUzNiAzODUuNTc5IDU5LjY2NCAzODcuMzA3IDU5LjkyQzM4OS4wOTkgNjAuMTEyIDM5MC40NDMgNjAuMzA0IDM5MS4zMzkgNjAuNDk2SDQwOC40MjdMNDA4LjEzOSA2OC42NTZINDAwLjkzOUM0MDIuOTIzIDcwLjUxMiA0MDMuOTE1IDczLjEwNCA0MDMuOTE1IDc2LjQzMkM0MDMuOTE1IDgxLjEwNCA0MDIuNDQzIDg0Ljg0OCAzOTkuNDk5IDg3LjY2NEMzOTYuNTU1IDkwLjQxNiAzOTIuMjAzIDkxLjc5MiAzODYuNDQzIDkxLjc5MkMzODUuNDE5IDkxLjc5MiAzODQuNDI3IDkxLjc2IDM4My40NjcgOTEuNjk2QzM4Mi41NzEgOTEuNTY4IDM4MS42NDMgOTEuNDQgMzgwLjY4MyA5MS4zMTJDMzc4Ljc2MyA5MS41NjggMzc3LjEzMSA5Mi4wMTYgMzc1Ljc4NyA5Mi42NTZDMzc0LjUwNyA5My4yOTYgMzczLjg2NyA5NC4xNiAzNzMuODY3IDk1LjI0OEMzNzMuODY3IDk2LjcyIDM3NS4xNzkgOTcuNDU2IDM3Ny44MDMgOTcuNDU2SDM5MC42NjdDMzk1LjI3NSA5Ny40NTYgMzk4LjgyNyA5OC41MTIgNDAxLjMyMyAxMDAuNjI0QzQwMy44MTkgMTAyLjY3MiA0MDUuMDY3IDEwNS42OCA0MDUuMDY3IDEwOS42NDhDNDA1LjA2NyAxMTQuMTI4IDQwMy4wNTEgMTE3LjQ1NiAzOTkuMDE5IDExOS42MzJDMzk0Ljk4NyAxMjEuODA4IDM4OS4xNjMgMTIyLjg5NiAzODEuNTQ3IDEyMi44OTZaTTM4Mi42MDMgODQuNDk2QzM4Ni40NDMgODQuNDk2IDM4OS4wOTkgODMuODU2IDM5MC41NzEgODIuNTc2QzM5Mi4xMDcgODEuMjMyIDM5Mi44NzUgNzguOTkyIDM5Mi44NzUgNzUuODU2QzM5Mi44NzUgNzIuNzIgMzkyLjEwNyA3MC40NDggMzkwLjU3MSA2OS4wNEMzODkuMDk5IDY3LjYzMiAzODYuNDQzIDY2LjkyOCAzODIuNjAzIDY2LjkyOEMzNzguOTU1IDY2LjkyOCAzNzYuMzMxIDY3LjYzMiAzNzQuNzMxIDY5LjA0QzM3My4xMzEgNzAuMzg0IDM3Mi4zMzEgNzIuNjU2IDM3Mi4zMzEgNzUuODU2QzM3Mi4zMzEgNzguOCAzNzMuMDY3IDgwLjk3NiAzNzQuNTM5IDgyLjM4NEMzNzYuMDc1IDgzLjc5MiAzNzguNzYzIDg0LjQ5NiAzODIuNjAzIDg0LjQ5NlpNNDM5LjAyOCAxMDYuOTZDNDMxLjE1NiAxMDYuOTYgNDI0LjkxNiAxMDUuMDA4IDQyMC4zMDggMTAxLjEwNEM0MTUuNyA5Ny4xMzYgNDEzLjM5NiA5MS4xNTIgNDEzLjM5NiA4My4xNTJDNDEzLjM5NiA3NS45MiA0MTUuMzE2IDcwLjE5MiA0MTkuMTU2IDY1Ljk2OEM0MjMuMDYgNjEuNjggNDI4Ljg1MiA1OS41MzYgNDM2LjUzMiA1OS41MzZDNDQzLjU3MiA1OS41MzYgNDQ4Ljk0OCA2MS4zOTIgNDUyLjY2IDY1LjEwNEM0NTYuNDM2IDY4Ljc1MiA0NTguMzI0IDczLjU1MiA0NTguMzI0IDc5LjUwNFY4Ny43Nkg0MjUuMzk2QzQyNi4xIDkxLjQwOCA0MjcuNzY0IDkzLjkwNCA0MzAuMzg4IDk1LjI0OEM0MzMuMDc2IDk2LjU5MiA0MzYuODUyIDk3LjI2NCA0NDEuNzE2IDk3LjI2NEM0NDQuMTQ4IDk3LjI2NCA0NDYuNjEyIDk3LjA0IDQ0OS4xMDggOTYuNTkyQzQ1MS42NjggOTYuMTQ0IDQ1My44NDQgOTUuNTY4IDQ1NS42MzYgOTQuODY0VjEwNC4wOEM0NTMuNTI0IDEwNS4wNCA0NTEuMDYgMTA1Ljc0NCA0NDguMjQ0IDEwNi4xOTJDNDQ1LjQyOCAxMDYuNzA0IDQ0Mi4zNTYgMTA2Ljk2IDQzOS4wMjggMTA2Ljk2Wk00MjUuMzk2IDc5Ljc5Mkg0NDYuOTk2Vjc3LjI5NkM0NDYuOTk2IDc0LjY3MiA0NDYuMjI4IDcyLjYyNCA0NDQuNjkyIDcxLjE1MkM0NDMuMTU2IDY5LjYxNiA0NDAuNTY0IDY4Ljg0OCA0MzYuOTE2IDY4Ljg0OEM0MzIuNjI4IDY4Ljg0OCA0MjkuNjIgNjkuNzEyIDQyNy44OTIgNzEuNDRDNDI2LjIyOCA3My4xNjggNDI1LjM5NiA3NS45NTIgNDI1LjM5NiA3OS43OTJaIiBmaWxsPSJ3aGl0ZSIvPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yXzY1Ij4KPHJlY3Qgd2lkdGg9IjE1MS45MyIgaGVpZ2h0PSIxMzYuNjQiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==",Sl=()=>_("img",{src:Cl,alt:"Treege",height:30,width:"auto"});function Al(e){var t=0,n=e.children,r=n&&n.length;if(!r)t=1;else for(;--r>=0;)t+=n[r].value;e.value=t}function Il(){return this.eachAfter(Al)}function kl(e){var t=this,n,r=[t],i,o,a;do for(n=r.reverse(),r=[];t=n.pop();)if(e(t),i=t.children,i)for(o=0,a=i.length;o<a;++o)r.push(i[o]);while(r.length);return this}function jl(e){for(var t=this,n=[t],r,i;t=n.pop();)if(e(t),r=t.children,r)for(i=r.length-1;i>=0;--i)n.push(r[i]);return this}function zl(e){for(var t=this,n=[t],r=[],i,o,a;t=n.pop();)if(r.push(t),i=t.children,i)for(o=0,a=i.length;o<a;++o)n.push(i[o]);for(;t=r.pop();)e(t);return this}function Rl(e){return this.eachAfter(function(t){for(var n=+e(t.data)||0,r=t.children,i=r&&r.length;--i>=0;)n+=r[i].value;t.value=n})}function $l(e){return this.eachBefore(function(t){t.children&&t.children.sort(e)})}function Ll(e){for(var t=this,n=Pl(t,e),r=[t];t!==n;)t=t.parent,r.push(t);for(var i=r.length;e!==n;)r.splice(i,0,e),e=e.parent;return r}function Pl(e,t){if(e===t)return e;var n=e.ancestors(),r=t.ancestors(),i=null;for(e=n.pop(),t=r.pop();e===t;)i=e,e=n.pop(),t=r.pop();return i}function Fl(){for(var e=this,t=[e];e=e.parent;)t.push(e);return t}function Ul(){var e=[];return this.each(function(t){e.push(t)}),e}function Yl(){var e=[];return this.eachBefore(function(t){t.children||e.push(t)}),e}function Vl(){var e=this,t=[];return e.each(function(n){n!==e&&t.push({source:n.parent,target:n})}),t}function ii(e,t){var n=new cn(e),r=+e.value&&(n.value=e.value),i,o=[n],a,s,l,u;for(t==null&&(t=Bl);i=o.pop();)if(r&&(i.value=+i.data.value),(s=t(i.data))&&(u=s.length))for(i.children=new Array(u),l=u-1;l>=0;--l)o.push(a=i.children[l]=new cn(s[l])),a.parent=i,a.depth=i.depth+1;return n.eachBefore(Wl)}function ql(){return ii(this).eachBefore(Ql)}function Bl(e){return e.children}function Ql(e){e.data=e.data.data}function Wl(e){var t=0;do e.height=t;while((e=e.parent)&&e.height<++t)}function cn(e){this.data=e,this.depth=this.height=0,this.parent=null}cn.prototype=ii.prototype={constructor:cn,count:Il,each:kl,eachAfter:zl,eachBefore:jl,sum:Rl,sort:$l,path:Ll,ancestors:Fl,descendants:Ul,leaves:Yl,links:Vl,copy:ql};function Gl(e,t){return e.parent===t.parent?1:2}function oi(e){var t=e.children;return t?t[0]:e.t}function ai(e){var t=e.children;return t?t[t.length-1]:e.t}function Kl(e,t,n){var r=n/(t.i-e.i);t.c-=r,t.s+=n,e.c+=r,t.z+=n,t.m+=n}function Hl(e){for(var t=0,n=0,r=e.children,i=r.length,o;--i>=0;)o=r[i],o.z+=t,o.m+=t,t+=o.s+(n+=o.c)}function Xl(e,t,n){return e.a.parent===t.parent?e.a:n}function Bn(e,t){this._=e,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=t}Bn.prototype=Object.create(cn.prototype);function Jl(e){for(var t=new Bn(e,0),n,r=[t],i,o,a,s;n=r.pop();)if(o=n._.children)for(n.children=new Array(s=o.length),a=s-1;a>=0;--a)r.push(i=n.children[a]=new Bn(o[a],a)),i.parent=n;return(t.parent=new Bn(null,0)).children=[t],t}function Zl(){var e=Gl,t=1,n=1,r=null;function i(u){var c=Jl(u);if(c.eachAfter(o),c.parent.m=-c.z,c.eachBefore(a),r)u.eachBefore(l);else{var d=u,f=u,h=u;u.eachBefore(function(D){D.x<d.x&&(d=D),D.x>f.x&&(f=D),D.depth>h.depth&&(h=D)});var y=d===f?1:e(d,f)/2,m=y-d.x,v=t/(f.x+y+m),M=n/(h.depth||1);u.eachBefore(function(D){D.x=(D.x+m)*v,D.y=D.depth*M})}return u}function o(u){var c=u.children,d=u.parent.children,f=u.i?d[u.i-1]:null;if(c){Hl(u);var h=(c[0].z+c[c.length-1].z)/2;f?(u.z=f.z+e(u._,f._),u.m=u.z-h):u.z=h}else f&&(u.z=f.z+e(u._,f._));u.parent.A=s(u,f,u.parent.A||d[0])}function a(u){u._.x=u.z+u.parent.m,u.m+=u.parent.m}function s(u,c,d){if(c){for(var f=u,h=u,y=c,m=f.parent.children[0],v=f.m,M=h.m,D=y.m,O=m.m,x;y=ai(y),f=oi(f),y&&f;)m=oi(m),h=ai(h),h.a=u,x=y.z+D-f.z-v+e(y._,f._),x>0&&(Kl(Xl(y,u,d),u,x),v+=x,M+=x),D+=y.m,v+=f.m,O+=m.m,M+=h.m;y&&!ai(h)&&(h.t=y,h.m+=D-M),f&&!oi(m)&&(m.t=f,m.m+=v-O,d=u)}return d}function l(u){u.x*=t,u.y=u.depth*n}return i.separation=function(u){return arguments.length?(e=u,i):e},i.size=function(u){return arguments.length?(r=!1,t=+u[0],n=+u[1],i):r?null:[t,n]},i.nodeSize=function(u){return arguments.length?(r=!0,t=+u[0],n=+u[1],i):r?[t,n]:null},i}var si="http://www.w3.org/1999/xhtml";const Wo={svg:"http://www.w3.org/2000/svg",xhtml:si,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Qn(e){var t=e+="",n=t.indexOf(":");return n>=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),Wo.hasOwnProperty(t)?{space:Wo[t],local:e}:e}function ec(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===si&&t.documentElement.namespaceURI===si?t.createElement(e):t.createElementNS(n,e)}}function tc(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Go(e){var t=Qn(e);return(t.local?tc:ec)(t)}function nc(){}function ui(e){return e==null?nc:function(){return this.querySelector(e)}}function rc(e){typeof e!="function"&&(e=ui(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=new Array(a),l,u,c=0;c<a;++c)(l=o[c])&&(u=e.call(l,l.__data__,c,o))&&("__data__"in l&&(u.__data__=l.__data__),s[c]=u);return new He(r,this._parents)}function ic(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function oc(){return[]}function Ko(e){return e==null?oc:function(){return this.querySelectorAll(e)}}function ac(e){return function(){return ic(e.apply(this,arguments))}}function sc(e){typeof e=="function"?e=ac(e):e=Ko(e);for(var t=this._groups,n=t.length,r=[],i=[],o=0;o<n;++o)for(var a=t[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&(r.push(e.call(l,l.__data__,u,a)),i.push(l));return new He(r,i)}function Ho(e){return function(){return this.matches(e)}}function Xo(e){return function(t){return t.matches(e)}}var uc=Array.prototype.find;function lc(e){return function(){return uc.call(this.children,e)}}function cc(){return this.firstElementChild}function fc(e){return this.select(e==null?cc:lc(typeof e=="function"?e:Xo(e)))}var dc=Array.prototype.filter;function hc(){return Array.from(this.children)}function pc(e){return function(){return dc.call(this.children,e)}}function gc(e){return this.selectAll(e==null?hc:pc(typeof e=="function"?e:Xo(e)))}function mc(e){typeof e!="function"&&(e=Ho(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new He(r,this._parents)}function Jo(e){return new Array(e.length)}function yc(){return new He(this._enter||this._groups.map(Jo),this._parents)}function Wn(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}Wn.prototype={constructor:Wn,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function vc(e){return function(){return e}}function bc(e,t,n,r,i,o){for(var a=0,s,l=t.length,u=o.length;a<u;++a)(s=t[a])?(s.__data__=o[a],r[a]=s):n[a]=new Wn(e,o[a]);for(;a<l;++a)(s=t[a])&&(i[a]=s)}function Mc(e,t,n,r,i,o,a){var s,l,u=new Map,c=t.length,d=o.length,f=new Array(c),h;for(s=0;s<c;++s)(l=t[s])&&(f[s]=h=a.call(l,l.__data__,s,t)+"",u.has(h)?i[s]=l:u.set(h,l));for(s=0;s<d;++s)h=a.call(e,o[s],s,o)+"",(l=u.get(h))?(r[s]=l,l.__data__=o[s],u.delete(h)):n[s]=new Wn(e,o[s]);for(s=0;s<c;++s)(l=t[s])&&u.get(f[s])===l&&(i[s]=l)}function _c(e){return e.__data__}function xc(e,t){if(!arguments.length)return Array.from(this,_c);var n=t?Mc:bc,r=this._parents,i=this._groups;typeof e!="function"&&(e=vc(e));for(var o=i.length,a=new Array(o),s=new Array(o),l=new Array(o),u=0;u<o;++u){var c=r[u],d=i[u],f=d.length,h=Tc(e.call(c,c&&c.__data__,u,r)),y=h.length,m=s[u]=new Array(y),v=a[u]=new Array(y),M=l[u]=new Array(f);n(c,d,m,v,M,h,t);for(var D=0,O=0,x,g;D<y;++D)if(x=m[D]){for(D>=O&&(O=D+1);!(g=v[O])&&++O<y;);x._next=g||null}}return a=new He(a,r),a._enter=s,a._exit=l,a}function Tc(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function wc(){return new He(this._exit||this._groups.map(Jo),this._parents)}function Nc(e,t,n){var r=this.enter(),i=this,o=this.exit();return typeof e=="function"?(r=e(r),r&&(r=r.selection())):r=r.append(e+""),t!=null&&(i=t(i),i&&(i=i.selection())),n==null?o.remove():n(o),r&&i?r.merge(i).order():i}function Ec(e){for(var t=e.selection?e.selection():e,n=this._groups,r=t._groups,i=n.length,o=r.length,a=Math.min(i,o),s=new Array(i),l=0;l<a;++l)for(var u=n[l],c=r[l],d=u.length,f=s[l]=new Array(d),h,y=0;y<d;++y)(h=u[y]||c[y])&&(f[y]=h);for(;l<i;++l)s[l]=n[l];return new He(s,this._parents)}function Dc(){for(var e=this._groups,t=-1,n=e.length;++t<n;)for(var r=e[t],i=r.length-1,o=r[i],a;--i>=0;)(a=r[i])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function Oc(e){e||(e=Cc);function t(d,f){return d&&f?e(d.__data__,f.__data__):!d-!f}for(var n=this._groups,r=n.length,i=new Array(r),o=0;o<r;++o){for(var a=n[o],s=a.length,l=i[o]=new Array(s),u,c=0;c<s;++c)(u=a[c])&&(l[c]=u);l.sort(t)}return new He(i,this._parents).order()}function Cc(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function Sc(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function Ac(){return Array.from(this)}function Ic(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}function kc(){let e=0;for(const t of this)++e;return e}function jc(){return!this.node()}function zc(e){for(var t=this._groups,n=0,r=t.length;n<r;++n)for(var i=t[n],o=0,a=i.length,s;o<a;++o)(s=i[o])&&e.call(s,s.__data__,o,i);return this}function Rc(e){return function(){this.removeAttribute(e)}}function $c(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Lc(e,t){return function(){this.setAttribute(e,t)}}function Pc(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function Fc(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function Uc(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,n)}}function Yc(e,t){var n=Qn(e);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((t==null?n.local?$c:Rc:typeof t=="function"?n.local?Uc:Fc:n.local?Pc:Lc)(n,t))}function Zo(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function Vc(e){return function(){this.style.removeProperty(e)}}function qc(e,t,n){return function(){this.style.setProperty(e,t,n)}}function Bc(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function Qc(e,t,n){return arguments.length>1?this.each((t==null?Vc:typeof t=="function"?Bc:qc)(e,t,n??"")):Lt(this.node(),e)}function Lt(e,t){return e.style.getPropertyValue(t)||Zo(e).getComputedStyle(e,null).getPropertyValue(t)}function Wc(e){return function(){delete this[e]}}function Gc(e,t){return function(){this[e]=t}}function Kc(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function Hc(e,t){return arguments.length>1?this.each((t==null?Wc:typeof t=="function"?Kc:Gc)(e,t)):this.node()[e]}function ea(e){return e.trim().split(/^|\s+/)}function li(e){return e.classList||new ta(e)}function ta(e){this._node=e,this._names=ea(e.getAttribute("class")||"")}ta.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function na(e,t){for(var n=li(e),r=-1,i=t.length;++r<i;)n.add(t[r])}function ra(e,t){for(var n=li(e),r=-1,i=t.length;++r<i;)n.remove(t[r])}function Xc(e){return function(){na(this,e)}}function Jc(e){return function(){ra(this,e)}}function Zc(e,t){return function(){(t.apply(this,arguments)?na:ra)(this,e)}}function ef(e,t){var n=ea(e+"");if(arguments.length<2){for(var r=li(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof t=="function"?Zc:t?Xc:Jc)(n,t))}function tf(){this.textContent=""}function nf(e){return function(){this.textContent=e}}function rf(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function of(e){return arguments.length?this.each(e==null?tf:(typeof e=="function"?rf:nf)(e)):this.node().textContent}function af(){this.innerHTML=""}function sf(e){return function(){this.innerHTML=e}}function uf(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function lf(e){return arguments.length?this.each(e==null?af:(typeof e=="function"?uf:sf)(e)):this.node().innerHTML}function cf(){this.nextSibling&&this.parentNode.appendChild(this)}function ff(){return this.each(cf)}function df(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function hf(){return this.each(df)}function pf(e){var t=typeof e=="function"?e:Go(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function gf(){return null}function mf(e,t){var n=typeof e=="function"?e:Go(e),r=t==null?gf:typeof t=="function"?t:ui(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function yf(){var e=this.parentNode;e&&e.removeChild(this)}function vf(){return this.each(yf)}function bf(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Mf(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function _f(e){return this.select(e?Mf:bf)}function xf(e){return arguments.length?this.property("__data__",e):this.node().__data__}function Tf(e){return function(t){e.call(this,t,this.__data__)}}function wf(e){return e.trim().split(/^|\s+/).map(function(t){var n="",r=t.indexOf(".");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{type:t,name:n}})}function Nf(e){return function(){var t=this.__on;if(t){for(var n=0,r=-1,i=t.length,o;n<i;++n)o=t[n],(!e.type||o.type===e.type)&&o.name===e.name?this.removeEventListener(o.type,o.listener,o.options):t[++r]=o;++r?t.length=r:delete this.__on}}}function Ef(e,t,n){return function(){var r=this.__on,i,o=Tf(t);if(r){for(var a=0,s=r.length;a<s;++a)if((i=r[a]).type===e.type&&i.name===e.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=o,i.options=n),i.value=t;return}}this.addEventListener(e.type,o,n),i={type:e.type,name:e.name,value:t,listener:o,options:n},r?r.push(i):this.__on=[i]}}function Df(e,t,n){var r=wf(e+""),i,o=r.length,a;if(arguments.length<2){var s=this.node().__on;if(s){for(var l=0,u=s.length,c;l<u;++l)for(i=0,c=s[l];i<o;++i)if((a=r[i]).type===c.type&&a.name===c.name)return c.value}return}for(s=t?Ef:Nf,i=0;i<o;++i)this.each(s(r[i],t,n));return this}function ia(e,t,n){var r=Zo(e),i=r.CustomEvent;typeof i=="function"?i=new i(t,n):(i=r.document.createEvent("Event"),n?(i.initEvent(t,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(t,!1,!1)),e.dispatchEvent(i)}function Of(e,t){return function(){return ia(this,e,t)}}function Cf(e,t){return function(){return ia(this,e,t.apply(this,arguments))}}function Sf(e,t){return this.each((typeof t=="function"?Cf:Of)(e,t))}function*Af(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length,a;i<o;++i)(a=r[i])&&(yield a)}var oa=[null];function He(e,t){this._groups=e,this._parents=t}function fn(){return new He([[document.documentElement]],oa)}function If(){return this}He.prototype=fn.prototype={constructor:He,select:rc,selectAll:sc,selectChild:fc,selectChildren:gc,filter:mc,data:xc,enter:yc,exit:wc,join:Nc,merge:Ec,selection:If,order:Dc,sort:Oc,call:Sc,nodes:Ac,node:Ic,size:kc,empty:jc,each:zc,attr:Yc,style:Qc,property:Hc,classed:ef,text:of,html:lf,raise:ff,lower:hf,append:pf,insert:mf,remove:vf,clone:_f,datum:xf,on:Df,dispatch:Sf,[Symbol.iterator]:Af};function qe(e){return typeof e=="string"?new He([[document.querySelector(e)]],[document.documentElement]):new He([[e]],oa)}function kf(e){let t;for(;t=e.sourceEvent;)e=t;return e}function Ot(e,t){if(e=kf(e),t===void 0&&(t=e.currentTarget),t){var n=t.ownerSVGElement||t;if(n.createSVGPoint){var r=n.createSVGPoint();return r.x=e.clientX,r.y=e.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}if(t.getBoundingClientRect){var i=t.getBoundingClientRect();return[e.clientX-i.left-t.clientLeft,e.clientY-i.top-t.clientTop]}}return[e.pageX,e.pageY]}var jf={value:()=>{}};function ci(){for(var e=0,t=arguments.length,n={},r;e<t;++e){if(!(r=arguments[e]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new Gn(n)}function Gn(e){this._=e}function zf(e,t){return e.trim().split(/^|\s+/).map(function(n){var r="",i=n.indexOf(".");if(i>=0&&(r=n.slice(i+1),n=n.slice(0,i)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}Gn.prototype=ci.prototype={constructor:Gn,on:function(e,t){var n=this._,r=zf(e+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(e=r[o]).type)&&(i=Rf(n[i],e.name)))return i;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++o<a;)if(i=(e=r[o]).type)n[i]=aa(n[i],e.name,t);else if(t==null)for(i in n)n[i]=aa(n[i],e.name,null);return this},copy:function(){var e={},t=this._;for(var n in t)e[n]=t[n].slice();return new Gn(e)},call:function(e,t){if((i=arguments.length-2)>0)for(var n=new Array(i),r=0,i,o;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(o=this._[e],r=0,i=o.length;r<i;++r)o[r].value.apply(t,n)},apply:function(e,t,n){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var r=this._[e],i=0,o=r.length;i<o;++i)r[i].value.apply(t,n)}};function Rf(e,t){for(var n=0,r=e.length,i;n<r;++n)if((i=e[n]).name===t)return i.value}function aa(e,t,n){for(var r=0,i=e.length;r<i;++r)if(e[r].name===t){e[r]=jf,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}const fi={capture:!0,passive:!1};function di(e){e.preventDefault(),e.stopImmediatePropagation()}function $f(e){var t=e.document.documentElement,n=qe(e).on("dragstart.drag",di,fi);"onselectstart"in t?n.on("selectstart.drag",di,fi):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect="none")}function Lf(e,t){var n=e.document.documentElement,r=qe(e).on("dragstart.drag",null);t&&(r.on("click.drag",di,fi),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in n?r.on("selectstart.drag",null):(n.style.MozUserSelect=n.__noselect,delete n.__noselect)}function hi(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function sa(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function dn(){}var hn=.7,Kn=1/hn,Pt="\\s*([+-]?\\d+)\\s*",pn="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",ut="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Pf=/^#([0-9a-f]{3,8})$/,Ff=new RegExp(`^rgb\\(${Pt},${Pt},${Pt}\\)$`),Uf=new RegExp(`^rgb\\(${ut},${ut},${ut}\\)$`),Yf=new RegExp(`^rgba\\(${Pt},${Pt},${Pt},${pn}\\)$`),Vf=new RegExp(`^rgba\\(${ut},${ut},${ut},${pn}\\)$`),qf=new RegExp(`^hsl\\(${pn},${ut},${ut}\\)$`),Bf=new RegExp(`^hsla\\(${pn},${ut},${ut},${pn}\\)$`),ua={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};hi(dn,gn,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:la,formatHex:la,formatHex8:Qf,formatHsl:Wf,formatRgb:ca,toString:ca});function la(){return this.rgb().formatHex()}function Qf(){return this.rgb().formatHex8()}function Wf(){return ga(this).formatHsl()}function ca(){return this.rgb().formatRgb()}function gn(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=Pf.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?fa(t):n===3?new We(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?Hn(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?Hn(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=Ff.exec(e))?new We(t[1],t[2],t[3],1):(t=Uf.exec(e))?new We(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=Yf.exec(e))?Hn(t[1],t[2],t[3],t[4]):(t=Vf.exec(e))?Hn(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=qf.exec(e))?pa(t[1],t[2]/100,t[3]/100,1):(t=Bf.exec(e))?pa(t[1],t[2]/100,t[3]/100,t[4]):ua.hasOwnProperty(e)?fa(ua[e]):e==="transparent"?new We(NaN,NaN,NaN,0):null}function fa(e){return new We(e>>16&255,e>>8&255,e&255,1)}function Hn(e,t,n,r){return r<=0&&(e=t=n=NaN),new We(e,t,n,r)}function Gf(e){return e instanceof dn||(e=gn(e)),e?(e=e.rgb(),new We(e.r,e.g,e.b,e.opacity)):new We}function pi(e,t,n,r){return arguments.length===1?Gf(e):new We(e,t,n,r??1)}function We(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}hi(We,pi,sa(dn,{brighter(e){return e=e==null?Kn:Math.pow(Kn,e),new We(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?hn:Math.pow(hn,e),new We(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new We(Ct(this.r),Ct(this.g),Ct(this.b),Xn(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:da,formatHex:da,formatHex8:Kf,formatRgb:ha,toString:ha}));function da(){return`#${St(this.r)}${St(this.g)}${St(this.b)}`}function Kf(){return`#${St(this.r)}${St(this.g)}${St(this.b)}${St((isNaN(this.opacity)?1:this.opacity)*255)}`}function ha(){const e=Xn(this.opacity);return`${e===1?"rgb(":"rgba("}${Ct(this.r)}, ${Ct(this.g)}, ${Ct(this.b)}${e===1?")":`, ${e})`}`}function Xn(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Ct(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function St(e){return e=Ct(e),(e<16?"0":"")+e.toString(16)}function pa(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new rt(e,t,n,r)}function ga(e){if(e instanceof rt)return new rt(e.h,e.s,e.l,e.opacity);if(e instanceof dn||(e=gn(e)),!e)return new rt;if(e instanceof rt)return e;e=e.rgb();var t=e.r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),o=Math.max(t,n,r),a=NaN,s=o-i,l=(o+i)/2;return s?(t===o?a=(n-r)/s+(n<r)*6:n===o?a=(r-t)/s+2:a=(t-n)/s+4,s/=l<.5?o+i:2-o-i,a*=60):s=l>0&&l<1?0:a,new rt(a,s,l,e.opacity)}function Hf(e,t,n,r){return arguments.length===1?ga(e):new rt(e,t,n,r??1)}function rt(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}hi(rt,Hf,sa(dn,{brighter(e){return e=e==null?Kn:Math.pow(Kn,e),new rt(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?hn:Math.pow(hn,e),new rt(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,i=2*n-r;return new We(gi(e>=240?e-240:e+120,i,r),gi(e,i,r),gi(e<120?e+240:e-120,i,r),this.opacity)},clamp(){return new rt(ma(this.h),Jn(this.s),Jn(this.l),Xn(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Xn(this.opacity);return`${e===1?"hsl(":"hsla("}${ma(this.h)}, ${Jn(this.s)*100}%, ${Jn(this.l)*100}%${e===1?")":`, ${e})`}`}}));function ma(e){return e=(e||0)%360,e<0?e+360:e}function Jn(e){return Math.max(0,Math.min(1,e||0))}function gi(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const ya=e=>()=>e;function Xf(e,t){return function(n){return e+n*t}}function Jf(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}function Zf(e){return(e=+e)==1?va:function(t,n){return n-t?Jf(t,n,e):ya(isNaN(t)?n:t)}}function va(e,t){var n=t-e;return n?Xf(e,n):ya(isNaN(e)?t:e)}const ba=function e(t){var n=Zf(t);function r(i,o){var a=n((i=pi(i)).r,(o=pi(o)).r),s=n(i.g,o.g),l=n(i.b,o.b),u=va(i.opacity,o.opacity);return function(c){return i.r=a(c),i.g=s(c),i.b=l(c),i.opacity=u(c),i+""}}return r.gamma=e,r}(1);function wt(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}var mi=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,yi=new RegExp(mi.source,"g");function ed(e){return function(){return e}}function td(e){return function(t){return e(t)+""}}function nd(e,t){var n=mi.lastIndex=yi.lastIndex=0,r,i,o,a=-1,s=[],l=[];for(e=e+"",t=t+"";(r=mi.exec(e))&&(i=yi.exec(t));)(o=i.index)>n&&(o=t.slice(n,o),s[a]?s[a]+=o:s[++a]=o),(r=r[0])===(i=i[0])?s[a]?s[a]+=i:s[++a]=i:(s[++a]=null,l.push({i:a,x:wt(r,i)})),n=yi.lastIndex;return n<t.length&&(o=t.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?l[0]?td(l[0].x):ed(t):(t=l.length,function(u){for(var c=0,d;c<t;++c)s[(d=l[c]).i]=d.x(u);return s.join("")})}var Ma=180/Math.PI,vi={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function _a(e,t,n,r,i,o){var a,s,l;return(a=Math.sqrt(e*e+t*t))&&(e/=a,t/=a),(l=e*n+t*r)&&(n-=e*l,r-=t*l),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,l/=s),e*r<t*n&&(e=-e,t=-t,l=-l,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(t,e)*Ma,skewX:Math.atan(l)*Ma,scaleX:a,scaleY:s}}var Zn;function rd(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?vi:_a(t.a,t.b,t.c,t.d,t.e,t.f)}function id(e){return e==null||(Zn||(Zn=document.createElementNS("http://www.w3.org/2000/svg","g")),Zn.setAttribute("transform",e),!(e=Zn.transform.baseVal.consolidate()))?vi:(e=e.matrix,_a(e.a,e.b,e.c,e.d,e.e,e.f))}function xa(e,t,n,r){function i(u){return u.length?u.pop()+" ":""}function o(u,c,d,f,h,y){if(u!==d||c!==f){var m=h.push("translate(",null,t,null,n);y.push({i:m-4,x:wt(u,d)},{i:m-2,x:wt(c,f)})}else(d||f)&&h.push("translate("+d+t+f+n)}function a(u,c,d,f){u!==c?(u-c>180?c+=360:c-u>180&&(u+=360),f.push({i:d.push(i(d)+"rotate(",null,r)-2,x:wt(u,c)})):c&&d.push(i(d)+"rotate("+c+r)}function s(u,c,d,f){u!==c?f.push({i:d.push(i(d)+"skewX(",null,r)-2,x:wt(u,c)}):c&&d.push(i(d)+"skewX("+c+r)}function l(u,c,d,f,h,y){if(u!==d||c!==f){var m=h.push(i(h)+"scale(",null,",",null,")");y.push({i:m-4,x:wt(u,d)},{i:m-2,x:wt(c,f)})}else(d!==1||f!==1)&&h.push(i(h)+"scale("+d+","+f+")")}return function(u,c){var d=[],f=[];return u=e(u),c=e(c),o(u.translateX,u.translateY,c.translateX,c.translateY,d,f),a(u.rotate,c.rotate,d,f),s(u.skewX,c.skewX,d,f),l(u.scaleX,u.scaleY,c.scaleX,c.scaleY,d,f),u=c=null,function(h){for(var y=-1,m=f.length,v;++y<m;)d[(v=f[y]).i]=v.x(h);return d.join("")}}}var od=xa(rd,"px, ","px)","deg)"),ad=xa(id,", ",")",")"),sd=1e-12;function Ta(e){return((e=Math.exp(e))+1/e)/2}function ud(e){return((e=Math.exp(e))-1/e)/2}function ld(e){return((e=Math.exp(2*e))-1)/(e+1)}const cd=function e(t,n,r){function i(o,a){var s=o[0],l=o[1],u=o[2],c=a[0],d=a[1],f=a[2],h=c-s,y=d-l,m=h*h+y*y,v,M;if(m<sd)M=Math.log(f/u)/t,v=function(C){return[s+C*h,l+C*y,u*Math.exp(t*C*M)]};else{var D=Math.sqrt(m),O=(f*f-u*u+r*m)/(2*u*n*D),x=(f*f-u*u-r*m)/(2*f*n*D),g=Math.log(Math.sqrt(O*O+1)-O),j=Math.log(Math.sqrt(x*x+1)-x);M=(j-g)/t,v=function(C){var I=C*M,k=Ta(g),E=u/(n*D)*(k*ld(t*I+g)-ud(g));return[s+E*h,l+E*y,u*k/Ta(t*I+g)]}}return v.duration=M*1e3*t/Math.SQRT2,v}return i.rho=function(o){var a=Math.max(.001,+o),s=a*a,l=s*s;return e(a,s,l)},i}(Math.SQRT2,2,4);var Ft=0,mn=0,yn=0,wa=1e3,er,vn,tr=0,At=0,nr=0,bn=typeof performance=="object"&&performance.now?performance:Date,Na=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function bi(){return At||(Na(fd),At=bn.now()+nr)}function fd(){At=0}function rr(){this._call=this._time=this._next=null}rr.prototype=Ea.prototype={constructor:rr,restart:function(e,t,n){if(typeof e!="function")throw new TypeError("callback is not a function");n=(n==null?bi():+n)+(t==null?0:+t),!this._next&&vn!==this&&(vn?vn._next=this:er=this,vn=this),this._call=e,this._time=n,Mi()},stop:function(){this._call&&(this._call=null,this._time=1/0,Mi())}};function Ea(e,t,n){var r=new rr;return r.restart(e,t,n),r}function dd(){bi(),++Ft;for(var e=er,t;e;)(t=At-e._time)>=0&&e._call.call(void 0,t),e=e._next;--Ft}function Da(){At=(tr=bn.now())+nr,Ft=mn=0;try{dd()}finally{Ft=0,pd(),At=0}}function hd(){var e=bn.now(),t=e-tr;t>wa&&(nr-=t,tr=e)}function pd(){for(var e,t=er,n,r=1/0;t;)t._call?(r>t._time&&(r=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:er=n);vn=e,Mi(r)}function Mi(e){if(!Ft){mn&&(mn=clearTimeout(mn));var t=e-At;t>24?(e<1/0&&(mn=setTimeout(Da,e-bn.now()-nr)),yn&&(yn=clearInterval(yn))):(yn||(tr=bn.now(),yn=setInterval(hd,wa)),Ft=1,Na(Da))}}function Oa(e,t,n){var r=new rr;return t=t==null?0:+t,r.restart(i=>{r.stop(),e(i+t)},t,n),r}var gd=ci("start","end","cancel","interrupt"),md=[],Ca=0,Sa=1,_i=2,ir=3,Aa=4,xi=5,or=6;function ar(e,t,n,r,i,o){var a=e.__transition;if(!a)e.__transition={};else if(n in a)return;yd(e,n,{name:t,index:r,group:i,on:gd,tween:md,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Ca})}function Ti(e,t){var n=it(e,t);if(n.state>Ca)throw new Error("too late; already scheduled");return n}function lt(e,t){var n=it(e,t);if(n.state>ir)throw new Error("too late; already running");return n}function it(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function yd(e,t,n){var r=e.__transition,i;r[t]=n,n.timer=Ea(o,0,n.time);function o(u){n.state=Sa,n.timer.restart(a,n.delay,n.time),n.delay<=u&&a(u-n.delay)}function a(u){var c,d,f,h;if(n.state!==Sa)return l();for(c in r)if(h=r[c],h.name===n.name){if(h.state===ir)return Oa(a);h.state===Aa?(h.state=or,h.timer.stop(),h.on.call("interrupt",e,e.__data__,h.index,h.group),delete r[c]):+c<t&&(h.state=or,h.timer.stop(),h.on.call("cancel",e,e.__data__,h.index,h.group),delete r[c])}if(Oa(function(){n.state===ir&&(n.state=Aa,n.timer.restart(s,n.delay,n.time),s(u))}),n.state=_i,n.on.call("start",e,e.__data__,n.index,n.group),n.state===_i){for(n.state=ir,i=new Array(f=n.tween.length),c=0,d=-1;c<f;++c)(h=n.tween[c].value.call(e,e.__data__,n.index,n.group))&&(i[++d]=h);i.length=d+1}}function s(u){for(var c=u<n.duration?n.ease.call(null,u/n.duration):(n.timer.restart(l),n.state=xi,1),d=-1,f=i.length;++d<f;)i[d].call(e,c);n.state===xi&&(n.on.call("end",e,e.__data__,n.index,n.group),l())}function l(){n.state=or,n.timer.stop(),delete r[t];for(var u in r)return;delete e.__transition}}function sr(e,t){var n=e.__transition,r,i,o=!0,a;if(n){t=t==null?null:t+"";for(a in n){if((r=n[a]).name!==t){o=!1;continue}i=r.state>_i&&r.state<xi,r.state=or,r.timer.stop(),r.on.call(i?"interrupt":"cancel",e,e.__data__,r.index,r.group),delete n[a]}o&&delete e.__transition}}function vd(e){return this.each(function(){sr(this,e)})}function bd(e,t){var n,r;return function(){var i=lt(this,e),o=i.tween;if(o!==n){r=n=o;for(var a=0,s=r.length;a<s;++a)if(r[a].name===t){r=r.slice(),r.splice(a,1);break}}i.tween=r}}function Md(e,t,n){var r,i;if(typeof n!="function")throw new Error;return function(){var o=lt(this,e),a=o.tween;if(a!==r){i=(r=a).slice();for(var s={name:t,value:n},l=0,u=i.length;l<u;++l)if(i[l].name===t){i[l]=s;break}l===u&&i.push(s)}o.tween=i}}function _d(e,t){var n=this._id;if(e+="",arguments.length<2){for(var r=it(this.node(),n).tween,i=0,o=r.length,a;i<o;++i)if((a=r[i]).name===e)return a.value;return null}return this.each((t==null?bd:Md)(n,e,t))}function wi(e,t,n){var r=e._id;return e.each(function(){var i=lt(this,r);(i.value||(i.value={}))[t]=n.apply(this,arguments)}),function(i){return it(i,r).value[t]}}function Ia(e,t){var n;return(typeof t=="number"?wt:t instanceof gn?ba:(n=gn(t))?(t=n,ba):nd)(e,t)}function xd(e){return function(){this.removeAttribute(e)}}function Td(e){return function(){this.removeAttributeNS(e.space,e.local)}}function wd(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttribute(e);return a===i?null:a===r?o:o=t(r=a,n)}}function Nd(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttributeNS(e.space,e.local);return a===i?null:a===r?o:o=t(r=a,n)}}function Ed(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttribute(e):(a=this.getAttribute(e),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function Dd(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttributeNS(e.space,e.local):(a=this.getAttributeNS(e.space,e.local),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function Od(e,t){var n=Qn(e),r=n==="transform"?ad:Ia;return this.attrTween(e,typeof t=="function"?(n.local?Dd:Ed)(n,r,wi(this,"attr."+e,t)):t==null?(n.local?Td:xd)(n):(n.local?Nd:wd)(n,r,t))}function Cd(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function Sd(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function Ad(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&Sd(e,o)),n}return i._value=t,i}function Id(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&Cd(e,o)),n}return i._value=t,i}function kd(e,t){var n="attr."+e;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;var r=Qn(e);return this.tween(n,(r.local?Ad:Id)(r,t))}function jd(e,t){return function(){Ti(this,e).delay=+t.apply(this,arguments)}}function zd(e,t){return t=+t,function(){Ti(this,e).delay=t}}function Rd(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?jd:zd)(t,e)):it(this.node(),t).delay}function $d(e,t){return function(){lt(this,e).duration=+t.apply(this,arguments)}}function Ld(e,t){return t=+t,function(){lt(this,e).duration=t}}function Pd(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?$d:Ld)(t,e)):it(this.node(),t).duration}function Fd(e,t){if(typeof t!="function")throw new Error;return function(){lt(this,e).ease=t}}function Ud(e){var t=this._id;return arguments.length?this.each(Fd(t,e)):it(this.node(),t).ease}function Yd(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!="function")throw new Error;lt(this,e).ease=n}}function Vd(e){if(typeof e!="function")throw new Error;return this.each(Yd(this._id,e))}function qd(e){typeof e!="function"&&(e=Ho(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new vt(r,this._parents,this._name,this._id)}function Bd(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,n=e._groups,r=t.length,i=n.length,o=Math.min(r,i),a=new Array(r),s=0;s<o;++s)for(var l=t[s],u=n[s],c=l.length,d=a[s]=new Array(c),f,h=0;h<c;++h)(f=l[h]||u[h])&&(d[h]=f);for(;s<r;++s)a[s]=t[s];return new vt(a,this._parents,this._name,this._id)}function Qd(e){return(e+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||t==="start"})}function Wd(e,t,n){var r,i,o=Qd(t)?Ti:lt;return function(){var a=o(this,e),s=a.on;s!==r&&(i=(r=s).copy()).on(t,n),a.on=i}}function Gd(e,t){var n=this._id;return arguments.length<2?it(this.node(),n).on.on(e):this.each(Wd(n,e,t))}function Kd(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function Hd(){return this.on("end.remove",Kd(this._id))}function Xd(e){var t=this._name,n=this._id;typeof e!="function"&&(e=ui(e));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var s=r[a],l=s.length,u=o[a]=new Array(l),c,d,f=0;f<l;++f)(c=s[f])&&(d=e.call(c,c.__data__,f,s))&&("__data__"in c&&(d.__data__=c.__data__),u[f]=d,ar(u[f],t,n,f,u,it(c,n)));return new vt(o,this._parents,t,n)}function Jd(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Ko(e));for(var r=this._groups,i=r.length,o=[],a=[],s=0;s<i;++s)for(var l=r[s],u=l.length,c,d=0;d<u;++d)if(c=l[d]){for(var f=e.call(c,c.__data__,d,l),h,y=it(c,n),m=0,v=f.length;m<v;++m)(h=f[m])&&ar(h,t,n,m,f,y);o.push(f),a.push(c)}return new vt(o,a,t,n)}var Zd=fn.prototype.constructor;function eh(){return new Zd(this._groups,this._parents)}function th(e,t){var n,r,i;return function(){var o=Lt(this,e),a=(this.style.removeProperty(e),Lt(this,e));return o===a?null:o===n&&a===r?i:i=t(n=o,r=a)}}function ka(e){return function(){this.style.removeProperty(e)}}function nh(e,t,n){var r,i=n+"",o;return function(){var a=Lt(this,e);return a===i?null:a===r?o:o=t(r=a,n)}}function rh(e,t,n){var r,i,o;return function(){var a=Lt(this,e),s=n(this),l=s+"";return s==null&&(l=s=(this.style.removeProperty(e),Lt(this,e))),a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s))}}function ih(e,t){var n,r,i,o="style."+t,a="end."+o,s;return function(){var l=lt(this,e),u=l.on,c=l.value[o]==null?s||(s=ka(t)):void 0;(u!==n||i!==c)&&(r=(n=u).copy()).on(a,i=c),l.on=r}}function oh(e,t,n){var r=(e+="")=="transform"?od:Ia;return t==null?this.styleTween(e,th(e,r)).on("end.style."+e,ka(e)):typeof t=="function"?this.styleTween(e,rh(e,r,wi(this,"style."+e,t))).each(ih(this._id,e)):this.styleTween(e,nh(e,r,t),n).on("end.style."+e,null)}function ah(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function sh(e,t,n){var r,i;function o(){var a=t.apply(this,arguments);return a!==i&&(r=(i=a)&&ah(e,a,n)),r}return o._value=t,o}function uh(e,t,n){var r="style."+(e+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;return this.tween(r,sh(e,t,n??""))}function lh(e){return function(){this.textContent=e}}function ch(e){return function(){var t=e(this);this.textContent=t??""}}function fh(e){return this.tween("text",typeof e=="function"?ch(wi(this,"text",e)):lh(e==null?"":e+""))}function dh(e){return function(t){this.textContent=e.call(this,t)}}function hh(e){var t,n;function r(){var i=e.apply(this,arguments);return i!==n&&(t=(n=i)&&dh(i)),t}return r._value=e,r}function ph(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,hh(e))}function gh(){for(var e=this._name,t=this._id,n=ja(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)if(l=a[u]){var c=it(l,t);ar(l,e,n,u,a,{time:c.time+c.delay+c.duration,delay:0,duration:c.duration,ease:c.ease})}return new vt(r,this._parents,e,n)}function mh(){var e,t,n=this,r=n._id,i=n.size();return new Promise(function(o,a){var s={value:a},l={value:function(){--i===0&&o()}};n.each(function(){var u=lt(this,r),c=u.on;c!==e&&(t=(e=c).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(l)),u.on=t}),i===0&&o()})}var yh=0;function vt(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function ja(){return++yh}var bt=fn.prototype;vt.prototype={constructor:vt,select:Xd,selectAll:Jd,selectChild:bt.selectChild,selectChildren:bt.selectChildren,filter:qd,merge:Bd,selection:eh,transition:gh,call:bt.call,nodes:bt.nodes,node:bt.node,size:bt.size,empty:bt.empty,each:bt.each,on:Gd,attr:Od,attrTween:kd,style:oh,styleTween:uh,text:fh,textTween:ph,remove:Hd,tween:_d,delay:Rd,duration:Pd,ease:Ud,easeVarying:Vd,end:mh,[Symbol.iterator]:bt[Symbol.iterator]};function vh(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var bh={time:null,delay:0,duration:250,ease:vh};function Mh(e,t){for(var n;!(n=e.__transition)||!(n=n[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return n}function _h(e){var t,n;e instanceof vt?(t=e._id,e=e._name):(t=ja(),(n=bh).time=bi(),e=e==null?null:e+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&ar(l,e,t,u,a,n||Mh(l,t));return new vt(r,this._parents,e,t)}fn.prototype.interrupt=vd,fn.prototype.transition=_h;const ur=e=>()=>e;function xh(e,{sourceEvent:t,target:n,transform:r,dispatch:i}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:r,enumerable:!0,configurable:!0},_:{value:i}})}function Mt(e,t,n){this.k=e,this.x=t,this.y=n}Mt.prototype={constructor:Mt,scale:function(e){return e===1?this:new Mt(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Mt(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var lr=new Mt(1,0,0);Mt.prototype;function Ni(e){e.stopImmediatePropagation()}function Mn(e){e.preventDefault(),e.stopImmediatePropagation()}function Th(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function wh(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function za(){return this.__zoom||lr}function Nh(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function Eh(){return navigator.maxTouchPoints||"ontouchstart"in this}function Dh(e,t,n){var r=e.invertX(t[0][0])-n[0][0],i=e.invertX(t[1][0])-n[1][0],o=e.invertY(t[0][1])-n[0][1],a=e.invertY(t[1][1])-n[1][1];return e.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}function Ei(){var e=Th,t=wh,n=Dh,r=Nh,i=Eh,o=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],s=250,l=cd,u=ci("start","zoom","end"),c,d,f,h=500,y=150,m=0,v=10;function M(b){b.property("__zoom",za).on("wheel.zoom",I,{passive:!1}).on("mousedown.zoom",k).on("dblclick.zoom",E).filter(i).on("touchstart.zoom",$).on("touchmove.zoom",X).on("touchend.zoom touchcancel.zoom",H).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}M.transform=function(b,z,w,R){var P=b.selection?b.selection():b;P.property("__zoom",za),b!==P?g(b,z,w,R):P.interrupt().each(function(){j(this,arguments).event(R).start().zoom(null,typeof z=="function"?z.apply(this,arguments):z).end()})},M.scaleBy=function(b,z,w,R){M.scaleTo(b,function(){var P=this.__zoom.k,B=typeof z=="function"?z.apply(this,arguments):z;return P*B},w,R)},M.scaleTo=function(b,z,w,R){M.transform(b,function(){var P=t.apply(this,arguments),B=this.__zoom,T=w==null?x(P):typeof w=="function"?w.apply(this,arguments):w,A=B.invert(T),V=typeof z=="function"?z.apply(this,arguments):z;return n(O(D(B,V),T,A),P,a)},w,R)},M.translateBy=function(b,z,w,R){M.transform(b,function(){return n(this.__zoom.translate(typeof z=="function"?z.apply(this,arguments):z,typeof w=="function"?w.apply(this,arguments):w),t.apply(this,arguments),a)},null,R)},M.translateTo=function(b,z,w,R,P){M.transform(b,function(){var B=t.apply(this,arguments),T=this.__zoom,A=R==null?x(B):typeof R=="function"?R.apply(this,arguments):R;return n(lr.translate(A[0],A[1]).scale(T.k).translate(typeof z=="function"?-z.apply(this,arguments):-z,typeof w=="function"?-w.apply(this,arguments):-w),B,a)},R,P)};function D(b,z){return z=Math.max(o[0],Math.min(o[1],z)),z===b.k?b:new Mt(z,b.x,b.y)}function O(b,z,w){var R=z[0]-w[0]*b.k,P=z[1]-w[1]*b.k;return R===b.x&&P===b.y?b:new Mt(b.k,R,P)}function x(b){return[(+b[0][0]+ +b[1][0])/2,(+b[0][1]+ +b[1][1])/2]}function g(b,z,w,R){b.on("start.zoom",function(){j(this,arguments).event(R).start()}).on("interrupt.zoom end.zoom",function(){j(this,arguments).event(R).end()}).tween("zoom",function(){var P=this,B=arguments,T=j(P,B).event(R),A=t.apply(P,B),V=w==null?x(A):typeof w=="function"?w.apply(P,B):w,K=Math.max(A[1][0]-A[0][0],A[1][1]-A[0][1]),q=P.__zoom,J=typeof z=="function"?z.apply(P,B):z,Q=l(q.invert(V).concat(K/q.k),J.invert(V).concat(K/J.k));return function(W){if(W===1)W=J;else{var ee=Q(W),re=K/ee[2];W=new Mt(re,V[0]-ee[0]*re,V[1]-ee[1]*re)}T.zoom(null,W)}})}function j(b,z,w){return!w&&b.__zooming||new C(b,z)}function C(b,z){this.that=b,this.args=z,this.active=0,this.sourceEvent=null,this.extent=t.apply(b,z),this.taps=0}C.prototype={event:function(b){return b&&(this.sourceEvent=b),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(b,z){return this.mouse&&b!=="mouse"&&(this.mouse[1]=z.invert(this.mouse[0])),this.touch0&&b!=="touch"&&(this.touch0[1]=z.invert(this.touch0[0])),this.touch1&&b!=="touch"&&(this.touch1[1]=z.invert(this.touch1[0])),this.that.__zoom=z,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(b){var z=qe(this.that).datum();u.call(b,this.that,new xh(b,{sourceEvent:this.sourceEvent,target:M,type:b,transform:this.that.__zoom,dispatch:u}),z)}};function I(b,...z){if(!e.apply(this,arguments))return;var w=j(this,z).event(b),R=this.__zoom,P=Math.max(o[0],Math.min(o[1],R.k*Math.pow(2,r.apply(this,arguments)))),B=Ot(b);if(w.wheel)(w.mouse[0][0]!==B[0]||w.mouse[0][1]!==B[1])&&(w.mouse[1]=R.invert(w.mouse[0]=B)),clearTimeout(w.wheel);else{if(R.k===P)return;w.mouse=[B,R.invert(B)],sr(this),w.start()}Mn(b),w.wheel=setTimeout(T,y),w.zoom("mouse",n(O(D(R,P),w.mouse[0],w.mouse[1]),w.extent,a));function T(){w.wheel=null,w.end()}}function k(b,...z){if(f||!e.apply(this,arguments))return;var w=b.currentTarget,R=j(this,z,!0).event(b),P=qe(b.view).on("mousemove.zoom",V,!0).on("mouseup.zoom",K,!0),B=Ot(b,w),T=b.clientX,A=b.clientY;$f(b.view),Ni(b),R.mouse=[B,this.__zoom.invert(B)],sr(this),R.start();function V(q){if(Mn(q),!R.moved){var J=q.clientX-T,Q=q.clientY-A;R.moved=J*J+Q*Q>m}R.event(q).zoom("mouse",n(O(R.that.__zoom,R.mouse[0]=Ot(q,w),R.mouse[1]),R.extent,a))}function K(q){P.on("mousemove.zoom mouseup.zoom",null),Lf(q.view,R.moved),Mn(q),R.event(q).end()}}function E(b,...z){if(e.apply(this,arguments)){var w=this.__zoom,R=Ot(b.changedTouches?b.changedTouches[0]:b,this),P=w.invert(R),B=w.k*(b.shiftKey?.5:2),T=n(O(D(w,B),R,P),t.apply(this,z),a);Mn(b),s>0?qe(this).transition().duration(s).call(g,T,R,b):qe(this).call(M.transform,T,R,b)}}function $(b,...z){if(e.apply(this,arguments)){var w=b.touches,R=w.length,P=j(this,z,b.changedTouches.length===R).event(b),B,T,A,V;for(Ni(b),T=0;T<R;++T)A=w[T],V=Ot(A,this),V=[V,this.__zoom.invert(V),A.identifier],P.touch0?!P.touch1&&P.touch0[2]!==V[2]&&(P.touch1=V,P.taps=0):(P.touch0=V,B=!0,P.taps=1+!!c);c&&(c=clearTimeout(c)),B&&(P.taps<2&&(d=V[0],c=setTimeout(function(){c=null},h)),sr(this),P.start())}}function X(b,...z){if(this.__zooming){var w=j(this,z).event(b),R=b.changedTouches,P=R.length,B,T,A,V;for(Mn(b),B=0;B<P;++B)T=R[B],A=Ot(T,this),w.touch0&&w.touch0[2]===T.identifier?w.touch0[0]=A:w.touch1&&w.touch1[2]===T.identifier&&(w.touch1[0]=A);if(T=w.that.__zoom,w.touch1){var K=w.touch0[0],q=w.touch0[1],J=w.touch1[0],Q=w.touch1[1],W=(W=J[0]-K[0])*W+(W=J[1]-K[1])*W,ee=(ee=Q[0]-q[0])*ee+(ee=Q[1]-q[1])*ee;T=D(T,Math.sqrt(W/ee)),A=[(K[0]+J[0])/2,(K[1]+J[1])/2],V=[(q[0]+Q[0])/2,(q[1]+Q[1])/2]}else if(w.touch0)A=w.touch0[0],V=w.touch0[1];else return;w.zoom("touch",n(O(T,A,V),w.extent,a))}}function H(b,...z){if(this.__zooming){var w=j(this,z).event(b),R=b.changedTouches,P=R.length,B,T;for(Ni(b),f&&clearTimeout(f),f=setTimeout(function(){f=null},h),B=0;B<P;++B)T=R[B],w.touch0&&w.touch0[2]===T.identifier?delete w.touch0:w.touch1&&w.touch1[2]===T.identifier&&delete w.touch1;if(w.touch1&&!w.touch0&&(w.touch0=w.touch1,delete w.touch1),w.touch0)w.touch0[1]=this.__zoom.invert(w.touch0[0]);else if(w.end(),w.taps===2&&(T=Ot(T,this),Math.hypot(d[0]-T[0],d[1]-T[1])<v)){var A=qe(this).on("dblclick.zoom");A&&A.apply(this,arguments)}}}return M.wheelDelta=function(b){return arguments.length?(r=typeof b=="function"?b:ur(+b),M):r},M.filter=function(b){return arguments.length?(e=typeof b=="function"?b:ur(!!b),M):e},M.touchable=function(b){return arguments.length?(i=typeof b=="function"?b:ur(!!b),M):i},M.extent=function(b){return arguments.length?(t=typeof b=="function"?b:ur([[+b[0][0],+b[0][1]],[+b[1][0],+b[1][1]]]),M):t},M.scaleExtent=function(b){return arguments.length?(o[0]=+b[0],o[1]=+b[1],M):[o[0],o[1]]},M.translateExtent=function(b){return arguments.length?(a[0][0]=+b[0][0],a[1][0]=+b[1][0],a[0][1]=+b[0][1],a[1][1]=+b[1][1],M):[[a[0][0],a[0][1]],[a[1][0],a[1][1]]]},M.constrain=function(b){return arguments.length?(n=b,M):n},M.duration=function(b){return arguments.length?(s=+b,M):s},M.interpolate=function(b){return arguments.length?(l=b,M):l},M.on=function(){var b=u.on.apply(u,arguments);return b===u?M:b},M.clickDistance=function(b){return arguments.length?(m=(b=+b)*b,M):Math.sqrt(m)},M.tapDistance=function(b){return arguments.length?(v=+b,M):v},M}var Ra=Object.prototype.hasOwnProperty;function _n(e,t){var n,r;if(e===t)return!0;if(e&&t&&(n=e.constructor)===t.constructor){if(n===Date)return e.getTime()===t.getTime();if(n===RegExp)return e.toString()===t.toString();if(n===Array){if((r=e.length)===t.length)for(;r--&&_n(e[r],t[r]););return r===-1}if(!n||typeof e=="object"){r=0;for(n in e)if(Ra.call(e,n)&&++r&&!Ra.call(t,n)||!(n in t)||!_n(e[n],t[n]))return!1;return Object.keys(t).length===r}}return e!==e&&t!==t}var Be={},Oh={get exports(){return Be},set exports(e){Be=e}};(function(e){var t=function(){function n(f,h){return h!=null&&f instanceof h}var r;try{r=Map}catch{r=function(){}}var i;try{i=Set}catch{i=function(){}}var o;try{o=Promise}catch{o=function(){}}function a(f,h,y,m,v){typeof h=="object"&&(y=h.depth,m=h.prototype,v=h.includeNonEnumerable,h=h.circular);var M=[],D=[],O=typeof Buffer<"u";typeof h>"u"&&(h=!0),typeof y>"u"&&(y=1/0);function x(g,j){if(g===null)return null;if(j===0)return g;var C,I;if(typeof g!="object")return g;if(n(g,r))C=new r;else if(n(g,i))C=new i;else if(n(g,o))C=new o(function(R,P){g.then(function(B){R(x(B,j-1))},function(B){P(x(B,j-1))})});else if(a.__isArray(g))C=[];else if(a.__isRegExp(g))C=new RegExp(g.source,d(g)),g.lastIndex&&(C.lastIndex=g.lastIndex);else if(a.__isDate(g))C=new Date(g.getTime());else{if(O&&Buffer.isBuffer(g))return Buffer.allocUnsafe?C=Buffer.allocUnsafe(g.length):C=new Buffer(g.length),g.copy(C),C;n(g,Error)?C=Object.create(g):typeof m>"u"?(I=Object.getPrototypeOf(g),C=Object.create(I)):(C=Object.create(m),I=m)}if(h){var k=M.indexOf(g);if(k!=-1)return D[k];M.push(g),D.push(C)}n(g,r)&&g.forEach(function(R,P){var B=x(P,j-1),T=x(R,j-1);C.set(B,T)}),n(g,i)&&g.forEach(function(R){var P=x(R,j-1);C.add(P)});for(var E in g){var $;I&&($=Object.getOwnPropertyDescriptor(I,E)),!($&&$.set==null)&&(C[E]=x(g[E],j-1))}if(Object.getOwnPropertySymbols)for(var X=Object.getOwnPropertySymbols(g),E=0;E<X.length;E++){var H=X[E],b=Object.getOwnPropertyDescriptor(g,H);b&&!b.enumerable&&!v||(C[H]=x(g[H],j-1),b.enumerable||Object.defineProperty(C,H,{enumerable:!1}))}if(v)for(var z=Object.getOwnPropertyNames(g),E=0;E<z.length;E++){var w=z[E],b=Object.getOwnPropertyDescriptor(g,w);b&&b.enumerable||(C[w]=x(g[w],j-1),Object.defineProperty(C,w,{enumerable:!1}))}return C}return x(f,y)}a.clonePrototype=function(h){if(h===null)return null;var y=function(){};return y.prototype=h,new y};function s(f){return Object.prototype.toString.call(f)}a.__objToStr=s;function l(f){return typeof f=="object"&&s(f)==="[object Date]"}a.__isDate=l;function u(f){return typeof f=="object"&&s(f)==="[object Array]"}a.__isArray=u;function c(f){return typeof f=="object"&&s(f)==="[object RegExp]"}a.__isRegExp=c;function d(f){var h="";return f.global&&(h+="g"),f.ignoreCase&&(h+="i"),f.multiline&&(h+="m"),h}return a.__getRegExpFlags=d,a}();e.exports&&(e.exports=t)})(Oh);var cr,Ch=new Uint8Array(16);function Sh(){if(!cr&&(cr=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto<"u"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),!cr))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return cr(Ch)}const Ah=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function Ih(e){return typeof e=="string"&&Ah.test(e)}for(var je=[],Di=0;Di<256;++Di)je.push((Di+256).toString(16).substr(1));function kh(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,n=(je[e[t+0]]+je[e[t+1]]+je[e[t+2]]+je[e[t+3]]+"-"+je[e[t+4]]+je[e[t+5]]+"-"+je[e[t+6]]+je[e[t+7]]+"-"+je[e[t+8]]+je[e[t+9]]+"-"+je[e[t+10]]+je[e[t+11]]+je[e[t+12]]+je[e[t+13]]+je[e[t+14]]+je[e[t+15]]).toLowerCase();if(!Ih(n))throw TypeError("Stringified UUID is invalid");return n}function Oi(e,t,n){e=e||{};var r=e.random||(e.rng||Sh)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(var i=0;i<16;++i)t[n+i]=r[i];return t}return kh(r)}var fr={},jh={get exports(){return fr},set exports(e){fr=e}},le={},$a={get exports(){return le},set exports(e){le=e}},dr={},zh={get exports(){return dr},set exports(e){dr=e}},ge={};/** @license React v16.13.1
|
|
27
|
+
Check the top-level render call using <`+L+">.")}return j}}function de(p,j){{if(!p._store||p._store.validated||p.key!=null)return;p._store.validated=!0;var L=F(j);if(Rn[L])return;Rn[L]=!0;var Z="";p&&p._owner&&p._owner!==Zt.current&&(Z=" It was passed a child from "+H(p._owner.type)+"."),Mt(p),D('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',L,Z),Mt(null)}}function he(p,j){{if(typeof p!="object")return;if(Sn(p))for(var L=0;L<p.length;L++){var Z=p[L];tn(Z)&&de(Z,j)}else if(tn(p))p._store&&(p._store.validated=!0);else if(p){var se=v(p);if(typeof se=="function"&&se!==p.entries)for(var le=se.call(p),ie;!(ie=le.next()).done;)tn(ie.value)&&de(ie.value,j)}}}function Te(p){{var j=p.type;if(j==null||typeof j=="string")return;var L;if(typeof j=="function")L=j.propTypes;else if(typeof j=="object"&&(j.$$typeof===l||j.$$typeof===d))L=j.propTypes;else return;if(L){var Z=H(j);Io(L,p.props,"prop",Z,p)}else if(j.PropTypes!==void 0&&!en){en=!0;var se=H(j);D("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",se||"Unknown")}typeof j.getDefaultProps=="function"&&!j.getDefaultProps.isReactClassApproved&&D("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function Pe(p){{for(var j=Object.keys(p.props),L=0;L<j.length;L++){var Z=j[L];if(Z!=="children"&&Z!=="key"){Mt(p),D("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",Z),Mt(null);break}}p.ref!==null&&(Mt(p),D("Invalid attribute `ref` supplied to `React.Fragment`."),Mt(null))}}function Fe(p,j,L,Z,se,le){{var ie=E(p);if(!ie){var ne="";(p===void 0||typeof p=="object"&&p!==null&&Object.keys(p).length===0)&&(ne+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var Ie=Br(se);Ie?ne+=Ie:ne+=zn();var Ee;p===null?Ee="null":Sn(p)?Ee="array":p!==void 0&&p.$$typeof===t?(Ee="<"+(H(p.type)||"Unknown")+" />",ne=" Did you accidentally export a JSX literal instead of a component?"):Ee=typeof p,D("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",Ee,ne)}var Me=Vr(p,j,L,se,le);if(Me==null)return Me;if(ie){var ke=j.children;if(ke!==void 0)if(Z)if(Sn(ke)){for(var Nt=0;Nt<ke.length;Nt++)he(ke[Nt],p);Object.freeze&&Object.freeze(ke)}else D("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 he(ke,p)}return p===r?Pe(Me):Te(Me),Me}}function Ze(p,j,L){return Fe(p,j,L,!0)}function Qe(p,j,L){return Fe(p,j,L,!1)}var pt=Qe,nn=Ze;an.Fragment=r,an.jsx=pt,an.jsxs=nn}()),an}process.env.NODE_ENV==="production"?Qr.exports=bl():Qr.exports=xl();var g=Qr.exports;const be={background:"#0a1929",borderBlue:"#0f353e",borderGrey:"rgba(255, 255, 255, 0.1)",grey500:"#868c95",primary:"#0ed3b4",secondary:"#007ef6",tertiary:"#0f353e"},Ml={components:{MuiButton:{styleOverrides:{root:({ownerState:e})=>({...e.color==="primary"&&e.variant==="contained"&&{color:`${be.tertiary} !important`}})}}},palette:{background:{default:be.background,paper:be.background},mode:"dark",primary:{main:be.primary},secondary:{main:be.secondary}}},_l=({children:e})=>g.jsxs(g.Fragment,{children:[g.jsx(w.GlobalStyles,{styles:{"*":{scrollbarColor:"rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05)",scrollbarWidth:"thin"},"*::-webkit-scrollbar":{height:6,width:6},"*::-webkit-scrollbar-button":{height:0,width:0},"*::-webkit-scrollbar-corner":{background:"transparent"},"*::-webkit-scrollbar-thumb":{backgroundColor:"rgba(255, 255, 255, 0.2)",border:0,borderRadius:10},"*::-webkit-scrollbar-track":{background:"rgba(255, 255, 255, 0.05)"},"html, body, #root":{height:"100%"}}}),g.jsx(w.ThemeProvider,{theme:Ml,children:e})]}),Tl=new kt.QueryClient({defaultOptions:{queries:{retry:!1}}}),wl={authToken:void 0},Nl=U.createContext(wl),El=({children:e,authToken:t})=>{const n=U.useMemo(()=>({authToken:t}),[t]);return g.jsx(Nl.Provider,{value:n,children:e})},Yo={dispatchSnackbar:()=>null,snackbar:{open:!1}},Vo=U.createContext(Yo),$n={closeSnackbar:"closeSnackbar",openSnackbar:"openSnackbar"},Dl=(e,t="success")=>({message:e,severity:t,type:$n.openSnackbar}),Bo=()=>({type:$n.closeSnackbar}),Ol=(e,t)=>{switch(t.type){case $n.openSnackbar:{const{message:n,severity:r}=t;return{message:n,open:!0,severity:r}}case $n.closeSnackbar:return{...e,open:!1};default:throw new Error}},Cl={snackbarAlert:{width:"100%"}},jl=({children:e})=>{const[t,n]=U.useReducer(Ol,Yo.snackbar),{message:r,open:i,severity:o}=t,a=6e3,s=()=>n(Bo()),l=U.useMemo(()=>({dispatchSnackbar:n,snackbar:t}),[t,n]);return g.jsxs(Vo.Provider,{value:l,children:[g.jsx(w.Snackbar,{open:i,autoHideDuration:a,onClose:s,anchorOrigin:{horizontal:"center",vertical:"bottom"},children:g.jsx(w.Alert,{onClose:s,severity:o,sx:Cl.snackbarAlert,variant:"filled",children:r})}),e]})},Al="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDYyIiBoZWlnaHQ9IjE0NCIgdmlld0JveD0iMCAwIDQ2MiAxNDQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8yXzY1KSI+CjxwYXRoIGQ9Ik0xMzcgNDEuMzRMMTE2LjU3IDZDMTE2LjIyIDUuMzkzOTkgMTE1LjcxNyA0Ljg5MDM3IDExNS4xMTIgNC41Mzk0MkMxMTQuNTA3IDQuMTg4NDcgMTEzLjgyIDQuMDAyNDcgMTEzLjEyIDRIMzguODNDMzguMTMwMiA0LjAwMjQ3IDM3LjQ0MzQgNC4xODg0NyAzNi44MzggNC41Mzk0MkMzNi4yMzI2IDQuODkwMzcgMzUuNzI5OSA1LjM5Mzk5IDM1LjM4IDZMMTUgNDEuMzRDMTQuNjQ5NSA0MS45NDcgMTQuNDY0NyA0Mi42MzU1IDE0LjQ2NDEgNDMuMzM2NUMxNC40NjM1IDQ0LjAzNzQgMTQuNjQ3MSA0NC43MjYyIDE0Ljk5NjUgNDUuMzMzOUMxNS4zNDU5IDQ1Ljk0MTYgMTUuODQ4OCA0Ni40NDY3IDE2LjQ1NDkgNDYuNzk4OEMxNy4wNjEgNDcuMTUwOSAxNy43NDkgNDcuMzM3NSAxOC40NSA0Ny4zNEgxMzMuNTNDMTM0LjIzMyA0Ny4zNDEgMTM0LjkyMyA0Ny4xNTcgMTM1LjUzMiA0Ni44MDYzQzEzNi4xNDEgNDYuNDU1NyAxMzYuNjQ3IDQ1Ljk1MDggMTM2Ljk5OSA0NS4zNDI2QzEzNy4zNSA0NC43MzQzIDEzNy41MzYgNDQuMDQ0MSAxMzcuNTM2IDQzLjM0MTVDMTM3LjUzNiA0Mi42Mzg4IDEzNy4zNTEgNDEuOTQ4NSAxMzcgNDEuMzRaIiBmaWxsPSIjMTFEM0I0Ii8+CjxwYXRoIGQ9Ik05Mi40OCAxNDAuNjRIMTEzLjFDMTEzLjgwNSAxNDAuNjQzIDExNC40OTggMTQwLjQ1OSAxMTUuMTA5IDE0MC4xMDhDMTE1LjcyIDEzOS43NTcgMTE2LjIyOCAxMzkuMjUgMTE2LjU4IDEzOC42NEwxNTEuMzkgNzguMzRDMTUxLjc0MSA3Ny43MzE1IDE1MS45MjYgNzcuMDQxMiAxNTEuOTI2IDc2LjMzODVDMTUxLjkyNiA3NS42MzU5IDE1MS43NCA3NC45NDU3IDE1MS4zODkgNzQuMzM3NEMxNTEuMDM3IDczLjcyOTIgMTUwLjUzMSA3My4yMjQzIDE0OS45MjIgNzIuODczN0MxNDkuMzEzIDcyLjUyMyAxNDguNjIzIDcyLjMzOSAxNDcuOTIgNzIuMzRIOTIuNDhDOTEuNDE5MSA3Mi4zNCA5MC40MDE3IDcyLjc2MTQgODkuNjUxNiA3My41MTE2Qzg4LjkwMTQgNzQuMjYxNyA4OC40OCA3NS4yNzkxIDg4LjQ4IDc2LjM0VjEzNi42NEM4OC40OCAxMzcuNzAxIDg4LjkwMTQgMTM4LjcxOCA4OS42NTE2IDEzOS40NjhDOTAuNDAxNyAxNDAuMjE5IDkxLjQxOTEgMTQwLjY0IDkyLjQ4IDE0MC42NFoiIGZpbGw9IiMwMDdFRjYiLz4KPHBhdGggZD0iTTU5LjQ4IDcyLjMySDRDMy4yOTgyIDcyLjMyMDcgMi42MDg5NCA3Mi41MDYxIDIuMDAxNDMgNzIuODU3NEMxLjM5MzkzIDczLjIwODggMC44ODk1NTggNzMuNzEzOCAwLjUzODk3IDc0LjMyMThDMC4xODgzODIgNzQuOTI5NyAwLjAwMzkxNjk0IDc1LjYxOTIgMC4wMDQwOTcxMiA3Ni4zMjFDMC4wMDQyNzcyOSA3Ny4wMjI4IDAuMTg5MDk3IDc3LjcxMjIgMC41Mzk5OTcgNzguMzJMMzUuMzggMTM4LjY2QzM1LjcyOTkgMTM5LjI2NiAzNi4yMzI2IDEzOS43NyAzNi44MzggMTQwLjEyMUMzNy40NDM0IDE0MC40NzIgMzguMTMwMiAxNDAuNjU4IDM4LjgzIDE0MC42Nkg1OS40OEM2MC41NDA5IDE0MC42NiA2MS41NTgzIDE0MC4yMzkgNjIuMzA4NCAxMzkuNDg4QzYzLjA1ODYgMTM4LjczOCA2My40OCAxMzcuNzIxIDYzLjQ4IDEzNi42NlY3Ni4zMUM2My40NzczIDc1LjI1MDkgNjMuMDU0OCA3NC4yMzYgNjIuMzA0OSA3My40ODhDNjEuNTU1IDcyLjc0MDEgNjAuNTM5MSA3Mi4zMiA1OS40OCA3Mi4zMloiIGZpbGw9IiMwMTY0QTgiLz4KPC9nPgo8cGF0aCBkPSJNMjA3LjUyIDEwNi45NkMyMDIuMjcyIDEwNi45NiAxOTguMzY4IDEwNS41ODQgMTk1LjgwOCAxMDIuODMyQzE5My4zMTIgMTAwLjA4IDE5Mi4wNjQgOTYuMzM2IDE5Mi4wNjQgOTEuNlY3MC40OEgxODUuNjMyVjYwLjQ5NkgxOTIuMDY0VjUwLjcwNEwyMDUuMDI0IDQ2Ljg2NFY2MC40OTZIMjE2LjU0NEwyMTUuNzc2IDcwLjQ4SDIwNS4wMjRWOTAuNzM2QzIwNS4wMjQgOTMuMjMyIDIwNS42IDk0Ljk2IDIwNi43NTIgOTUuOTJDMjA3LjkwNCA5Ni44MTYgMjA5LjY5NiA5Ny4yNjQgMjEyLjEyOCA5Ny4yNjRDMjEzLjkyIDk3LjI2NCAyMTUuNzc2IDk2Ljk0NCAyMTcuNjk2IDk2LjMwNFYxMDUuMjMyQzIxNi4yODggMTA1LjgwOCAyMTQuNzUyIDEwNi4yMjQgMjEzLjA4OCAxMDYuNDhDMjExLjQyNCAxMDYuOCAyMDkuNTY4IDEwNi45NiAyMDcuNTIgMTA2Ljk2Wk0yMjQuMzQ3IDEwNlY2MC40OTZIMjM2LjM0N0wyMzYuOTIzIDY1LjJDMjM4Ljk3MSA2My45MiAyNDEuNDk5IDYyLjc2OCAyNDQuNTA3IDYxLjc0NEMyNDcuNTc5IDYwLjY1NiAyNTAuNTg3IDU5LjkyIDI1My41MzEgNTkuNTM2VjY5LjMyOEMyNTEuODAzIDY5LjU4NCAyNDkuOTE1IDY5Ljk2OCAyNDcuODY3IDcwLjQ4QzI0NS44MTkgNzAuOTkyIDI0My44NjcgNzEuNTY4IDI0Mi4wMTEgNzIuMjA4QzI0MC4xNTUgNzIuODQ4IDIzOC41ODcgNzMuNTIgMjM3LjMwNyA3NC4yMjRWMTA2SDIyNC4zNDdaTTI4MS45OTcgMTA2Ljk2QzI3NC4xMjUgMTA2Ljk2IDI2Ny44ODUgMTA1LjAwOCAyNjMuMjc3IDEwMS4xMDRDMjU4LjY2OSA5Ny4xMzYgMjU2LjM2NSA5MS4xNTIgMjU2LjM2NSA4My4xNTJDMjU2LjM2NSA3NS45MiAyNTguMjg1IDcwLjE5MiAyNjIuMTI1IDY1Ljk2OEMyNjYuMDI5IDYxLjY4IDI3MS44MjEgNTkuNTM2IDI3OS41MDEgNTkuNTM2QzI4Ni41NDEgNTkuNTM2IDI5MS45MTcgNjEuMzkyIDI5NS42MjkgNjUuMTA0QzI5OS40MDUgNjguNzUyIDMwMS4yOTIgNzMuNTUyIDMwMS4yOTIgNzkuNTA0Vjg3Ljc2SDI2OC4zNjVDMjY5LjA2OSA5MS40MDggMjcwLjczMyA5My45MDQgMjczLjM1NyA5NS4yNDhDMjc2LjA0NSA5Ni41OTIgMjc5LjgyMSA5Ny4yNjQgMjg0LjY4NSA5Ny4yNjRDMjg3LjExNyA5Ny4yNjQgMjg5LjU4MSA5Ny4wNCAyOTIuMDc3IDk2LjU5MkMyOTQuNjM3IDk2LjE0NCAyOTYuODEzIDk1LjU2OCAyOTguNjA1IDk0Ljg2NFYxMDQuMDhDMjk2LjQ5MyAxMDUuMDQgMjk0LjAyOSAxMDUuNzQ0IDI5MS4yMTMgMTA2LjE5MkMyODguMzk3IDEwNi43MDQgMjg1LjMyNSAxMDYuOTYgMjgxLjk5NyAxMDYuOTZaTTI2OC4zNjUgNzkuNzkySDI4OS45NjVWNzcuMjk2QzI4OS45NjUgNzQuNjcyIDI4OS4xOTcgNzIuNjI0IDI4Ny42NjEgNzEuMTUyQzI4Ni4xMjUgNjkuNjE2IDI4My41MzMgNjguODQ4IDI3OS44ODUgNjguODQ4QzI3NS41OTcgNjguODQ4IDI3Mi41ODkgNjkuNzEyIDI3MC44NjEgNzEuNDRDMjY5LjE5NyA3My4xNjggMjY4LjM2NSA3NS45NTIgMjY4LjM2NSA3OS43OTJaTTMzNC4wMjggMTA2Ljk2QzMyNi4xNTYgMTA2Ljk2IDMxOS45MTYgMTA1LjAwOCAzMTUuMzA4IDEwMS4xMDRDMzEwLjcgOTcuMTM2IDMwOC4zOTYgOTEuMTUyIDMwOC4zOTYgODMuMTUyQzMwOC4zOTYgNzUuOTIgMzEwLjMxNiA3MC4xOTIgMzE0LjE1NiA2NS45NjhDMzE4LjA2IDYxLjY4IDMyMy44NTIgNTkuNTM2IDMzMS41MzIgNTkuNTM2QzMzOC41NzIgNTkuNTM2IDM0My45NDggNjEuMzkyIDM0Ny42NiA2NS4xMDRDMzUxLjQzNiA2OC43NTIgMzUzLjMyNCA3My41NTIgMzUzLjMyNCA3OS41MDRWODcuNzZIMzIwLjM5NkMzMjEuMSA5MS40MDggMzIyLjc2NCA5My45MDQgMzI1LjM4OCA5NS4yNDhDMzI4LjA3NiA5Ni41OTIgMzMxLjg1MiA5Ny4yNjQgMzM2LjcxNiA5Ny4yNjRDMzM5LjE0OCA5Ny4yNjQgMzQxLjYxMiA5Ny4wNCAzNDQuMTA4IDk2LjU5MkMzNDYuNjY4IDk2LjE0NCAzNDguODQ0IDk1LjU2OCAzNTAuNjM2IDk0Ljg2NFYxMDQuMDhDMzQ4LjUyNCAxMDUuMDQgMzQ2LjA2IDEwNS43NDQgMzQzLjI0NCAxMDYuMTkyQzM0MC40MjggMTA2LjcwNCAzMzcuMzU2IDEwNi45NiAzMzQuMDI4IDEwNi45NlpNMzIwLjM5NiA3OS43OTJIMzQxLjk5NlY3Ny4yOTZDMzQxLjk5NiA3NC42NzIgMzQxLjIyOCA3Mi42MjQgMzM5LjY5MiA3MS4xNTJDMzM4LjE1NiA2OS42MTYgMzM1LjU2NCA2OC44NDggMzMxLjkxNiA2OC44NDhDMzI3LjYyOCA2OC44NDggMzI0LjYyIDY5LjcxMiAzMjIuODkyIDcxLjQ0QzMyMS4yMjggNzMuMTY4IDMyMC4zOTYgNzUuOTUyIDMyMC4zOTYgNzkuNzkyWk0zODEuNTQ3IDEyMi44OTZDMzc4LjE1NSAxMjIuODk2IDM3NC42NjcgMTIyLjY3MiAzNzEuMDgzIDEyMi4yMjRDMzY3LjU2MyAxMjEuNzc2IDM2NC41ODcgMTIxLjEzNiAzNjIuMTU1IDEyMC4zMDRWMTEwLjYwOEMzNjQuNzE1IDExMS40NCAzNjcuNzIzIDExMi4wOCAzNzEuMTc5IDExMi41MjhDMzc0LjYzNSAxMTMuMDQgMzc3Ljg2NyAxMTMuMjk2IDM4MC44NzUgMTEzLjI5NkMzODUuMjkxIDExMy4yOTYgMzg4LjQ5MSAxMTMuMDQgMzkwLjQ3NSAxMTIuNTI4QzM5Mi40NTkgMTEyLjA4IDM5My40NTEgMTExLjI0OCAzOTMuNDUxIDExMC4wMzJDMzkzLjQ1MSAxMDkuMDA4IDM5My4wMDMgMTA4LjMwNCAzOTIuMTA3IDEwNy45MkMzOTEuMjc1IDEwNy41MzYgMzg5LjQ4MyAxMDcuMzQ0IDM4Ni43MzEgMTA3LjM0NEgzNzQuMzQ3QzM2Ni4yMTkgMTA3LjM0NCAzNjIuMTU1IDEwNC4zMzYgMzYyLjE1NSA5OC4zMkMzNjIuMTU1IDk2LjQ2NCAzNjIuNjY3IDk0Ljc2OCAzNjMuNjkxIDkzLjIzMkMzNjQuNzE1IDkxLjY5NiAzNjYuMzQ3IDkwLjQ4IDM2OC41ODcgODkuNTg0QzM2My40MDMgODYuOTYgMzYwLjgxMSA4Mi41NDQgMzYwLjgxMSA3Ni4zMzZDMzYwLjgxMSA3MC40NDggMzYyLjYzNSA2Ni4xOTIgMzY2LjI4MyA2My41NjhDMzY5LjkzMSA2MC44OCAzNzUuMzM5IDU5LjUzNiAzODIuNTA3IDU5LjUzNkMzODMuOTc5IDU5LjUzNiAzODUuNTc5IDU5LjY2NCAzODcuMzA3IDU5LjkyQzM4OS4wOTkgNjAuMTEyIDM5MC40NDMgNjAuMzA0IDM5MS4zMzkgNjAuNDk2SDQwOC40MjdMNDA4LjEzOSA2OC42NTZINDAwLjkzOUM0MDIuOTIzIDcwLjUxMiA0MDMuOTE1IDczLjEwNCA0MDMuOTE1IDc2LjQzMkM0MDMuOTE1IDgxLjEwNCA0MDIuNDQzIDg0Ljg0OCAzOTkuNDk5IDg3LjY2NEMzOTYuNTU1IDkwLjQxNiAzOTIuMjAzIDkxLjc5MiAzODYuNDQzIDkxLjc5MkMzODUuNDE5IDkxLjc5MiAzODQuNDI3IDkxLjc2IDM4My40NjcgOTEuNjk2QzM4Mi41NzEgOTEuNTY4IDM4MS42NDMgOTEuNDQgMzgwLjY4MyA5MS4zMTJDMzc4Ljc2MyA5MS41NjggMzc3LjEzMSA5Mi4wMTYgMzc1Ljc4NyA5Mi42NTZDMzc0LjUwNyA5My4yOTYgMzczLjg2NyA5NC4xNiAzNzMuODY3IDk1LjI0OEMzNzMuODY3IDk2LjcyIDM3NS4xNzkgOTcuNDU2IDM3Ny44MDMgOTcuNDU2SDM5MC42NjdDMzk1LjI3NSA5Ny40NTYgMzk4LjgyNyA5OC41MTIgNDAxLjMyMyAxMDAuNjI0QzQwMy44MTkgMTAyLjY3MiA0MDUuMDY3IDEwNS42OCA0MDUuMDY3IDEwOS42NDhDNDA1LjA2NyAxMTQuMTI4IDQwMy4wNTEgMTE3LjQ1NiAzOTkuMDE5IDExOS42MzJDMzk0Ljk4NyAxMjEuODA4IDM4OS4xNjMgMTIyLjg5NiAzODEuNTQ3IDEyMi44OTZaTTM4Mi42MDMgODQuNDk2QzM4Ni40NDMgODQuNDk2IDM4OS4wOTkgODMuODU2IDM5MC41NzEgODIuNTc2QzM5Mi4xMDcgODEuMjMyIDM5Mi44NzUgNzguOTkyIDM5Mi44NzUgNzUuODU2QzM5Mi44NzUgNzIuNzIgMzkyLjEwNyA3MC40NDggMzkwLjU3MSA2OS4wNEMzODkuMDk5IDY3LjYzMiAzODYuNDQzIDY2LjkyOCAzODIuNjAzIDY2LjkyOEMzNzguOTU1IDY2LjkyOCAzNzYuMzMxIDY3LjYzMiAzNzQuNzMxIDY5LjA0QzM3My4xMzEgNzAuMzg0IDM3Mi4zMzEgNzIuNjU2IDM3Mi4zMzEgNzUuODU2QzM3Mi4zMzEgNzguOCAzNzMuMDY3IDgwLjk3NiAzNzQuNTM5IDgyLjM4NEMzNzYuMDc1IDgzLjc5MiAzNzguNzYzIDg0LjQ5NiAzODIuNjAzIDg0LjQ5NlpNNDM5LjAyOCAxMDYuOTZDNDMxLjE1NiAxMDYuOTYgNDI0LjkxNiAxMDUuMDA4IDQyMC4zMDggMTAxLjEwNEM0MTUuNyA5Ny4xMzYgNDEzLjM5NiA5MS4xNTIgNDEzLjM5NiA4My4xNTJDNDEzLjM5NiA3NS45MiA0MTUuMzE2IDcwLjE5MiA0MTkuMTU2IDY1Ljk2OEM0MjMuMDYgNjEuNjggNDI4Ljg1MiA1OS41MzYgNDM2LjUzMiA1OS41MzZDNDQzLjU3MiA1OS41MzYgNDQ4Ljk0OCA2MS4zOTIgNDUyLjY2IDY1LjEwNEM0NTYuNDM2IDY4Ljc1MiA0NTguMzI0IDczLjU1MiA0NTguMzI0IDc5LjUwNFY4Ny43Nkg0MjUuMzk2QzQyNi4xIDkxLjQwOCA0MjcuNzY0IDkzLjkwNCA0MzAuMzg4IDk1LjI0OEM0MzMuMDc2IDk2LjU5MiA0MzYuODUyIDk3LjI2NCA0NDEuNzE2IDk3LjI2NEM0NDQuMTQ4IDk3LjI2NCA0NDYuNjEyIDk3LjA0IDQ0OS4xMDggOTYuNTkyQzQ1MS42NjggOTYuMTQ0IDQ1My44NDQgOTUuNTY4IDQ1NS42MzYgOTQuODY0VjEwNC4wOEM0NTMuNTI0IDEwNS4wNCA0NTEuMDYgMTA1Ljc0NCA0NDguMjQ0IDEwNi4xOTJDNDQ1LjQyOCAxMDYuNzA0IDQ0Mi4zNTYgMTA2Ljk2IDQzOS4wMjggMTA2Ljk2Wk00MjUuMzk2IDc5Ljc5Mkg0NDYuOTk2Vjc3LjI5NkM0NDYuOTk2IDc0LjY3MiA0NDYuMjI4IDcyLjYyNCA0NDQuNjkyIDcxLjE1MkM0NDMuMTU2IDY5LjYxNiA0NDAuNTY0IDY4Ljg0OCA0MzYuOTE2IDY4Ljg0OEM0MzIuNjI4IDY4Ljg0OCA0MjkuNjIgNjkuNzEyIDQyNy44OTIgNzEuNDRDNDI2LjIyOCA3My4xNjggNDI1LjM5NiA3NS45NTIgNDI1LjM5NiA3OS43OTJaIiBmaWxsPSJ3aGl0ZSIvPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yXzY1Ij4KPHJlY3Qgd2lkdGg9IjE1MS45MyIgaGVpZ2h0PSIxMzYuNjQiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDQpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==",Sl=()=>g.jsx("img",{src:Al,alt:"Treege",height:30,width:"auto"});function Il(e){var t=0,n=e.children,r=n&&n.length;if(!r)t=1;else for(;--r>=0;)t+=n[r].value;e.value=t}function kl(){return this.eachAfter(Il)}function zl(e){var t=this,n,r=[t],i,o,a;do for(n=r.reverse(),r=[];t=n.pop();)if(e(t),i=t.children,i)for(o=0,a=i.length;o<a;++o)r.push(i[o]);while(r.length);return this}function Rl(e){for(var t=this,n=[t],r,i;t=n.pop();)if(e(t),r=t.children,r)for(i=r.length-1;i>=0;--i)n.push(r[i]);return this}function $l(e){for(var t=this,n=[t],r=[],i,o,a;t=n.pop();)if(r.push(t),i=t.children,i)for(o=0,a=i.length;o<a;++o)n.push(i[o]);for(;t=r.pop();)e(t);return this}function Ll(e){return this.eachAfter(function(t){for(var n=+e(t.data)||0,r=t.children,i=r&&r.length;--i>=0;)n+=r[i].value;t.value=n})}function Pl(e){return this.eachBefore(function(t){t.children&&t.children.sort(e)})}function Fl(e){for(var t=this,n=Ul(t,e),r=[t];t!==n;)t=t.parent,r.push(t);for(var i=r.length;e!==n;)r.splice(i,0,e),e=e.parent;return r}function Ul(e,t){if(e===t)return e;var n=e.ancestors(),r=t.ancestors(),i=null;for(e=n.pop(),t=r.pop();e===t;)i=e,e=n.pop(),t=r.pop();return i}function Yl(){for(var e=this,t=[e];e=e.parent;)t.push(e);return t}function Vl(){var e=[];return this.each(function(t){e.push(t)}),e}function Bl(){var e=[];return this.eachBefore(function(t){t.children||e.push(t)}),e}function ql(){var e=this,t=[];return e.each(function(n){n!==e&&t.push({source:n.parent,target:n})}),t}function Wr(e,t){var n=new sn(e),r=+e.value&&(n.value=e.value),i,o=[n],a,s,l,u;for(t==null&&(t=Wl);i=o.pop();)if(r&&(i.value=+i.data.value),(s=t(i.data))&&(u=s.length))for(i.children=new Array(u),l=u-1;l>=0;--l)o.push(a=i.children[l]=new sn(s[l])),a.parent=i,a.depth=i.depth+1;return n.eachBefore(Kl)}function Ql(){return Wr(this).eachBefore(Gl)}function Wl(e){return e.children}function Gl(e){e.data=e.data.data}function Kl(e){var t=0;do e.height=t;while((e=e.parent)&&e.height<++t)}function sn(e){this.data=e,this.depth=this.height=0,this.parent=null}sn.prototype=Wr.prototype={constructor:sn,count:kl,each:zl,eachAfter:$l,eachBefore:Rl,sum:Ll,sort:Pl,path:Fl,ancestors:Yl,descendants:Vl,leaves:Bl,links:ql,copy:Ql};function Hl(e,t){return e.parent===t.parent?1:2}function Gr(e){var t=e.children;return t?t[0]:e.t}function Kr(e){var t=e.children;return t?t[t.length-1]:e.t}function Xl(e,t,n){var r=n/(t.i-e.i);t.c-=r,t.s+=n,e.c+=r,t.z+=n,t.m+=n}function Jl(e){for(var t=0,n=0,r=e.children,i=r.length,o;--i>=0;)o=r[i],o.z+=t,o.m+=t,t+=o.s+(n+=o.c)}function Zl(e,t,n){return e.a.parent===t.parent?e.a:n}function Ln(e,t){this._=e,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=t}Ln.prototype=Object.create(sn.prototype);function ec(e){for(var t=new Ln(e,0),n,r=[t],i,o,a,s;n=r.pop();)if(o=n._.children)for(n.children=new Array(s=o.length),a=s-1;a>=0;--a)r.push(i=n.children[a]=new Ln(o[a],a)),i.parent=n;return(t.parent=new Ln(null,0)).children=[t],t}function tc(){var e=Hl,t=1,n=1,r=null;function i(u){var c=ec(u);if(c.eachAfter(o),c.parent.m=-c.z,c.eachBefore(a),r)u.eachBefore(l);else{var d=u,f=u,h=u;u.eachBefore(function(D){D.x<d.x&&(d=D),D.x>f.x&&(f=D),D.depth>h.depth&&(h=D)});var b=d===f?1:e(d,f)/2,y=b-d.x,v=t/(f.x+b+y),M=n/(h.depth||1);u.eachBefore(function(D){D.x=(D.x+y)*v,D.y=D.depth*M})}return u}function o(u){var c=u.children,d=u.parent.children,f=u.i?d[u.i-1]:null;if(c){Jl(u);var h=(c[0].z+c[c.length-1].z)/2;f?(u.z=f.z+e(u._,f._),u.m=u.z-h):u.z=h}else f&&(u.z=f.z+e(u._,f._));u.parent.A=s(u,f,u.parent.A||d[0])}function a(u){u._.x=u.z+u.parent.m,u.m+=u.parent.m}function s(u,c,d){if(c){for(var f=u,h=u,b=c,y=f.parent.children[0],v=f.m,M=h.m,D=b.m,O=y.m,_;b=Kr(b),f=Gr(f),b&&f;)y=Gr(y),h=Kr(h),h.a=u,_=b.z+D-f.z-v+e(b._,f._),_>0&&(Xl(Zl(b,u,d),u,_),v+=_,M+=_),D+=b.m,v+=f.m,O+=y.m,M+=h.m;b&&!Kr(h)&&(h.t=b,h.m+=D-M),f&&!Gr(y)&&(y.t=f,y.m+=v-O,d=u)}return d}function l(u){u.x*=t,u.y=u.depth*n}return i.separation=function(u){return arguments.length?(e=u,i):e},i.size=function(u){return arguments.length?(r=!1,t=+u[0],n=+u[1],i):r?null:[t,n]},i.nodeSize=function(u){return arguments.length?(r=!0,t=+u[0],n=+u[1],i):r?[t,n]:null},i}var Hr="http://www.w3.org/1999/xhtml";const qo={svg:"http://www.w3.org/2000/svg",xhtml:Hr,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Pn(e){var t=e+="",n=t.indexOf(":");return n>=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),qo.hasOwnProperty(t)?{space:qo[t],local:e}:e}function nc(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===Hr&&t.documentElement.namespaceURI===Hr?t.createElement(e):t.createElementNS(n,e)}}function rc(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Qo(e){var t=Pn(e);return(t.local?rc:nc)(t)}function ic(){}function Xr(e){return e==null?ic:function(){return this.querySelector(e)}}function oc(e){typeof e!="function"&&(e=Xr(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=new Array(a),l,u,c=0;c<a;++c)(l=o[c])&&(u=e.call(l,l.__data__,c,o))&&("__data__"in l&&(u.__data__=l.__data__),s[c]=u);return new We(r,this._parents)}function ac(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function sc(){return[]}function Wo(e){return e==null?sc:function(){return this.querySelectorAll(e)}}function uc(e){return function(){return ac(e.apply(this,arguments))}}function lc(e){typeof e=="function"?e=uc(e):e=Wo(e);for(var t=this._groups,n=t.length,r=[],i=[],o=0;o<n;++o)for(var a=t[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&(r.push(e.call(l,l.__data__,u,a)),i.push(l));return new We(r,i)}function Go(e){return function(){return this.matches(e)}}function Ko(e){return function(t){return t.matches(e)}}var cc=Array.prototype.find;function fc(e){return function(){return cc.call(this.children,e)}}function dc(){return this.firstElementChild}function hc(e){return this.select(e==null?dc:fc(typeof e=="function"?e:Ko(e)))}var pc=Array.prototype.filter;function gc(){return Array.from(this.children)}function mc(e){return function(){return pc.call(this.children,e)}}function yc(e){return this.selectAll(e==null?gc:mc(typeof e=="function"?e:Ko(e)))}function vc(e){typeof e!="function"&&(e=Go(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new We(r,this._parents)}function Ho(e){return new Array(e.length)}function bc(){return new We(this._enter||this._groups.map(Ho),this._parents)}function Fn(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}Fn.prototype={constructor:Fn,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function xc(e){return function(){return e}}function Mc(e,t,n,r,i,o){for(var a=0,s,l=t.length,u=o.length;a<u;++a)(s=t[a])?(s.__data__=o[a],r[a]=s):n[a]=new Fn(e,o[a]);for(;a<l;++a)(s=t[a])&&(i[a]=s)}function _c(e,t,n,r,i,o,a){var s,l,u=new Map,c=t.length,d=o.length,f=new Array(c),h;for(s=0;s<c;++s)(l=t[s])&&(f[s]=h=a.call(l,l.__data__,s,t)+"",u.has(h)?i[s]=l:u.set(h,l));for(s=0;s<d;++s)h=a.call(e,o[s],s,o)+"",(l=u.get(h))?(r[s]=l,l.__data__=o[s],u.delete(h)):n[s]=new Fn(e,o[s]);for(s=0;s<c;++s)(l=t[s])&&u.get(f[s])===l&&(i[s]=l)}function Tc(e){return e.__data__}function wc(e,t){if(!arguments.length)return Array.from(this,Tc);var n=t?_c:Mc,r=this._parents,i=this._groups;typeof e!="function"&&(e=xc(e));for(var o=i.length,a=new Array(o),s=new Array(o),l=new Array(o),u=0;u<o;++u){var c=r[u],d=i[u],f=d.length,h=Nc(e.call(c,c&&c.__data__,u,r)),b=h.length,y=s[u]=new Array(b),v=a[u]=new Array(b),M=l[u]=new Array(f);n(c,d,y,v,M,h,t);for(var D=0,O=0,_,m;D<b;++D)if(_=y[D]){for(D>=O&&(O=D+1);!(m=v[O])&&++O<b;);_._next=m||null}}return a=new We(a,r),a._enter=s,a._exit=l,a}function Nc(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function Ec(){return new We(this._exit||this._groups.map(Ho),this._parents)}function Dc(e,t,n){var r=this.enter(),i=this,o=this.exit();return typeof e=="function"?(r=e(r),r&&(r=r.selection())):r=r.append(e+""),t!=null&&(i=t(i),i&&(i=i.selection())),n==null?o.remove():n(o),r&&i?r.merge(i).order():i}function Oc(e){for(var t=e.selection?e.selection():e,n=this._groups,r=t._groups,i=n.length,o=r.length,a=Math.min(i,o),s=new Array(i),l=0;l<a;++l)for(var u=n[l],c=r[l],d=u.length,f=s[l]=new Array(d),h,b=0;b<d;++b)(h=u[b]||c[b])&&(f[b]=h);for(;l<i;++l)s[l]=n[l];return new We(s,this._parents)}function Cc(){for(var e=this._groups,t=-1,n=e.length;++t<n;)for(var r=e[t],i=r.length-1,o=r[i],a;--i>=0;)(a=r[i])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function jc(e){e||(e=Ac);function t(d,f){return d&&f?e(d.__data__,f.__data__):!d-!f}for(var n=this._groups,r=n.length,i=new Array(r),o=0;o<r;++o){for(var a=n[o],s=a.length,l=i[o]=new Array(s),u,c=0;c<s;++c)(u=a[c])&&(l[c]=u);l.sort(t)}return new We(i,this._parents).order()}function Ac(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function Sc(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function Ic(){return Array.from(this)}function kc(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}function zc(){let e=0;for(const t of this)++e;return e}function Rc(){return!this.node()}function $c(e){for(var t=this._groups,n=0,r=t.length;n<r;++n)for(var i=t[n],o=0,a=i.length,s;o<a;++o)(s=i[o])&&e.call(s,s.__data__,o,i);return this}function Lc(e){return function(){this.removeAttribute(e)}}function Pc(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Fc(e,t){return function(){this.setAttribute(e,t)}}function Uc(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function Yc(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function Vc(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,n)}}function Bc(e,t){var n=Pn(e);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((t==null?n.local?Pc:Lc:typeof t=="function"?n.local?Vc:Yc:n.local?Uc:Fc)(n,t))}function Xo(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function qc(e){return function(){this.style.removeProperty(e)}}function Qc(e,t,n){return function(){this.style.setProperty(e,t,n)}}function Wc(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function Gc(e,t,n){return arguments.length>1?this.each((t==null?qc:typeof t=="function"?Wc:Qc)(e,t,n??"")):zt(this.node(),e)}function zt(e,t){return e.style.getPropertyValue(t)||Xo(e).getComputedStyle(e,null).getPropertyValue(t)}function Kc(e){return function(){delete this[e]}}function Hc(e,t){return function(){this[e]=t}}function Xc(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function Jc(e,t){return arguments.length>1?this.each((t==null?Kc:typeof t=="function"?Xc:Hc)(e,t)):this.node()[e]}function Jo(e){return e.trim().split(/^|\s+/)}function Jr(e){return e.classList||new Zo(e)}function Zo(e){this._node=e,this._names=Jo(e.getAttribute("class")||"")}Zo.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function ea(e,t){for(var n=Jr(e),r=-1,i=t.length;++r<i;)n.add(t[r])}function ta(e,t){for(var n=Jr(e),r=-1,i=t.length;++r<i;)n.remove(t[r])}function Zc(e){return function(){ea(this,e)}}function ef(e){return function(){ta(this,e)}}function tf(e,t){return function(){(t.apply(this,arguments)?ea:ta)(this,e)}}function nf(e,t){var n=Jo(e+"");if(arguments.length<2){for(var r=Jr(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof t=="function"?tf:t?Zc:ef)(n,t))}function rf(){this.textContent=""}function of(e){return function(){this.textContent=e}}function af(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function sf(e){return arguments.length?this.each(e==null?rf:(typeof e=="function"?af:of)(e)):this.node().textContent}function uf(){this.innerHTML=""}function lf(e){return function(){this.innerHTML=e}}function cf(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function ff(e){return arguments.length?this.each(e==null?uf:(typeof e=="function"?cf:lf)(e)):this.node().innerHTML}function df(){this.nextSibling&&this.parentNode.appendChild(this)}function hf(){return this.each(df)}function pf(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function gf(){return this.each(pf)}function mf(e){var t=typeof e=="function"?e:Qo(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function yf(){return null}function vf(e,t){var n=typeof e=="function"?e:Qo(e),r=t==null?yf:typeof t=="function"?t:Xr(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function bf(){var e=this.parentNode;e&&e.removeChild(this)}function xf(){return this.each(bf)}function Mf(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function _f(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Tf(e){return this.select(e?_f:Mf)}function wf(e){return arguments.length?this.property("__data__",e):this.node().__data__}function Nf(e){return function(t){e.call(this,t,this.__data__)}}function Ef(e){return e.trim().split(/^|\s+/).map(function(t){var n="",r=t.indexOf(".");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{type:t,name:n}})}function Df(e){return function(){var t=this.__on;if(t){for(var n=0,r=-1,i=t.length,o;n<i;++n)o=t[n],(!e.type||o.type===e.type)&&o.name===e.name?this.removeEventListener(o.type,o.listener,o.options):t[++r]=o;++r?t.length=r:delete this.__on}}}function Of(e,t,n){return function(){var r=this.__on,i,o=Nf(t);if(r){for(var a=0,s=r.length;a<s;++a)if((i=r[a]).type===e.type&&i.name===e.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=o,i.options=n),i.value=t;return}}this.addEventListener(e.type,o,n),i={type:e.type,name:e.name,value:t,listener:o,options:n},r?r.push(i):this.__on=[i]}}function Cf(e,t,n){var r=Ef(e+""),i,o=r.length,a;if(arguments.length<2){var s=this.node().__on;if(s){for(var l=0,u=s.length,c;l<u;++l)for(i=0,c=s[l];i<o;++i)if((a=r[i]).type===c.type&&a.name===c.name)return c.value}return}for(s=t?Of:Df,i=0;i<o;++i)this.each(s(r[i],t,n));return this}function na(e,t,n){var r=Xo(e),i=r.CustomEvent;typeof i=="function"?i=new i(t,n):(i=r.document.createEvent("Event"),n?(i.initEvent(t,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(t,!1,!1)),e.dispatchEvent(i)}function jf(e,t){return function(){return na(this,e,t)}}function Af(e,t){return function(){return na(this,e,t.apply(this,arguments))}}function Sf(e,t){return this.each((typeof t=="function"?Af:jf)(e,t))}function*If(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length,a;i<o;++i)(a=r[i])&&(yield a)}var ra=[null];function We(e,t){this._groups=e,this._parents=t}function un(){return new We([[document.documentElement]],ra)}function kf(){return this}We.prototype=un.prototype={constructor:We,select:oc,selectAll:lc,selectChild:hc,selectChildren:yc,filter:vc,data:wc,enter:bc,exit:Ec,join:Dc,merge:Oc,selection:kf,order:Cc,sort:jc,call:Sc,nodes:Ic,node:kc,size:zc,empty:Rc,each:$c,attr:Bc,style:Gc,property:Jc,classed:nf,text:sf,html:ff,raise:hf,lower:gf,append:mf,insert:vf,remove:xf,clone:Tf,datum:wf,on:Cf,dispatch:Sf,[Symbol.iterator]:If};function Ue(e){return typeof e=="string"?new We([[document.querySelector(e)]],[document.documentElement]):new We([[e]],ra)}function zf(e){let t;for(;t=e.sourceEvent;)e=t;return e}function Et(e,t){if(e=zf(e),t===void 0&&(t=e.currentTarget),t){var n=t.ownerSVGElement||t;if(n.createSVGPoint){var r=n.createSVGPoint();return r.x=e.clientX,r.y=e.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}if(t.getBoundingClientRect){var i=t.getBoundingClientRect();return[e.clientX-i.left-t.clientLeft,e.clientY-i.top-t.clientTop]}}return[e.pageX,e.pageY]}var Rf={value:()=>{}};function Zr(){for(var e=0,t=arguments.length,n={},r;e<t;++e){if(!(r=arguments[e]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new Un(n)}function Un(e){this._=e}function $f(e,t){return e.trim().split(/^|\s+/).map(function(n){var r="",i=n.indexOf(".");if(i>=0&&(r=n.slice(i+1),n=n.slice(0,i)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}Un.prototype=Zr.prototype={constructor:Un,on:function(e,t){var n=this._,r=$f(e+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(e=r[o]).type)&&(i=Lf(n[i],e.name)))return i;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++o<a;)if(i=(e=r[o]).type)n[i]=ia(n[i],e.name,t);else if(t==null)for(i in n)n[i]=ia(n[i],e.name,null);return this},copy:function(){var e={},t=this._;for(var n in t)e[n]=t[n].slice();return new Un(e)},call:function(e,t){if((i=arguments.length-2)>0)for(var n=new Array(i),r=0,i,o;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(o=this._[e],r=0,i=o.length;r<i;++r)o[r].value.apply(t,n)},apply:function(e,t,n){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var r=this._[e],i=0,o=r.length;i<o;++i)r[i].value.apply(t,n)}};function Lf(e,t){for(var n=0,r=e.length,i;n<r;++n)if((i=e[n]).name===t)return i.value}function ia(e,t,n){for(var r=0,i=e.length;r<i;++r)if(e[r].name===t){e[r]=Rf,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}const ei={capture:!0,passive:!1};function ti(e){e.preventDefault(),e.stopImmediatePropagation()}function Pf(e){var t=e.document.documentElement,n=Ue(e).on("dragstart.drag",ti,ei);"onselectstart"in t?n.on("selectstart.drag",ti,ei):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect="none")}function Ff(e,t){var n=e.document.documentElement,r=Ue(e).on("dragstart.drag",null);t&&(r.on("click.drag",ti,ei),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in n?r.on("selectstart.drag",null):(n.style.MozUserSelect=n.__noselect,delete n.__noselect)}function ni(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function oa(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function ln(){}var cn=.7,Yn=1/cn,Rt="\\s*([+-]?\\d+)\\s*",fn="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",at="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Uf=/^#([0-9a-f]{3,8})$/,Yf=new RegExp(`^rgb\\(${Rt},${Rt},${Rt}\\)$`),Vf=new RegExp(`^rgb\\(${at},${at},${at}\\)$`),Bf=new RegExp(`^rgba\\(${Rt},${Rt},${Rt},${fn}\\)$`),qf=new RegExp(`^rgba\\(${at},${at},${at},${fn}\\)$`),Qf=new RegExp(`^hsl\\(${fn},${at},${at}\\)$`),Wf=new RegExp(`^hsla\\(${fn},${at},${at},${fn}\\)$`),aa={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};ni(ln,dn,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:sa,formatHex:sa,formatHex8:Gf,formatHsl:Kf,formatRgb:ua,toString:ua});function sa(){return this.rgb().formatHex()}function Gf(){return this.rgb().formatHex8()}function Kf(){return ha(this).formatHsl()}function ua(){return this.rgb().formatRgb()}function dn(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=Uf.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?la(t):n===3?new Be(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?Vn(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?Vn(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=Yf.exec(e))?new Be(t[1],t[2],t[3],1):(t=Vf.exec(e))?new Be(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=Bf.exec(e))?Vn(t[1],t[2],t[3],t[4]):(t=qf.exec(e))?Vn(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=Qf.exec(e))?da(t[1],t[2]/100,t[3]/100,1):(t=Wf.exec(e))?da(t[1],t[2]/100,t[3]/100,t[4]):aa.hasOwnProperty(e)?la(aa[e]):e==="transparent"?new Be(NaN,NaN,NaN,0):null}function la(e){return new Be(e>>16&255,e>>8&255,e&255,1)}function Vn(e,t,n,r){return r<=0&&(e=t=n=NaN),new Be(e,t,n,r)}function Hf(e){return e instanceof ln||(e=dn(e)),e?(e=e.rgb(),new Be(e.r,e.g,e.b,e.opacity)):new Be}function ri(e,t,n,r){return arguments.length===1?Hf(e):new Be(e,t,n,r??1)}function Be(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}ni(Be,ri,oa(ln,{brighter(e){return e=e==null?Yn:Math.pow(Yn,e),new Be(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?cn:Math.pow(cn,e),new Be(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Be(Dt(this.r),Dt(this.g),Dt(this.b),Bn(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:ca,formatHex:ca,formatHex8:Xf,formatRgb:fa,toString:fa}));function ca(){return`#${Ot(this.r)}${Ot(this.g)}${Ot(this.b)}`}function Xf(){return`#${Ot(this.r)}${Ot(this.g)}${Ot(this.b)}${Ot((isNaN(this.opacity)?1:this.opacity)*255)}`}function fa(){const e=Bn(this.opacity);return`${e===1?"rgb(":"rgba("}${Dt(this.r)}, ${Dt(this.g)}, ${Dt(this.b)}${e===1?")":`, ${e})`}`}function Bn(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Dt(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Ot(e){return e=Dt(e),(e<16?"0":"")+e.toString(16)}function da(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new et(e,t,n,r)}function ha(e){if(e instanceof et)return new et(e.h,e.s,e.l,e.opacity);if(e instanceof ln||(e=dn(e)),!e)return new et;if(e instanceof et)return e;e=e.rgb();var t=e.r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),o=Math.max(t,n,r),a=NaN,s=o-i,l=(o+i)/2;return s?(t===o?a=(n-r)/s+(n<r)*6:n===o?a=(r-t)/s+2:a=(t-n)/s+4,s/=l<.5?o+i:2-o-i,a*=60):s=l>0&&l<1?0:a,new et(a,s,l,e.opacity)}function Jf(e,t,n,r){return arguments.length===1?ha(e):new et(e,t,n,r??1)}function et(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}ni(et,Jf,oa(ln,{brighter(e){return e=e==null?Yn:Math.pow(Yn,e),new et(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?cn:Math.pow(cn,e),new et(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,i=2*n-r;return new Be(ii(e>=240?e-240:e+120,i,r),ii(e,i,r),ii(e<120?e+240:e-120,i,r),this.opacity)},clamp(){return new et(pa(this.h),qn(this.s),qn(this.l),Bn(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Bn(this.opacity);return`${e===1?"hsl(":"hsla("}${pa(this.h)}, ${qn(this.s)*100}%, ${qn(this.l)*100}%${e===1?")":`, ${e})`}`}}));function pa(e){return e=(e||0)%360,e<0?e+360:e}function qn(e){return Math.max(0,Math.min(1,e||0))}function ii(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const ga=e=>()=>e;function Zf(e,t){return function(n){return e+n*t}}function ed(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}function td(e){return(e=+e)==1?ma:function(t,n){return n-t?ed(t,n,e):ga(isNaN(t)?n:t)}}function ma(e,t){var n=t-e;return n?Zf(e,n):ga(isNaN(e)?t:e)}const ya=function e(t){var n=td(t);function r(i,o){var a=n((i=ri(i)).r,(o=ri(o)).r),s=n(i.g,o.g),l=n(i.b,o.b),u=ma(i.opacity,o.opacity);return function(c){return i.r=a(c),i.g=s(c),i.b=l(c),i.opacity=u(c),i+""}}return r.gamma=e,r}(1);function _t(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}var oi=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,ai=new RegExp(oi.source,"g");function nd(e){return function(){return e}}function rd(e){return function(t){return e(t)+""}}function id(e,t){var n=oi.lastIndex=ai.lastIndex=0,r,i,o,a=-1,s=[],l=[];for(e=e+"",t=t+"";(r=oi.exec(e))&&(i=ai.exec(t));)(o=i.index)>n&&(o=t.slice(n,o),s[a]?s[a]+=o:s[++a]=o),(r=r[0])===(i=i[0])?s[a]?s[a]+=i:s[++a]=i:(s[++a]=null,l.push({i:a,x:_t(r,i)})),n=ai.lastIndex;return n<t.length&&(o=t.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?l[0]?rd(l[0].x):nd(t):(t=l.length,function(u){for(var c=0,d;c<t;++c)s[(d=l[c]).i]=d.x(u);return s.join("")})}var va=180/Math.PI,si={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function ba(e,t,n,r,i,o){var a,s,l;return(a=Math.sqrt(e*e+t*t))&&(e/=a,t/=a),(l=e*n+t*r)&&(n-=e*l,r-=t*l),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,l/=s),e*r<t*n&&(e=-e,t=-t,l=-l,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(t,e)*va,skewX:Math.atan(l)*va,scaleX:a,scaleY:s}}var Qn;function od(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?si:ba(t.a,t.b,t.c,t.d,t.e,t.f)}function ad(e){return e==null||(Qn||(Qn=document.createElementNS("http://www.w3.org/2000/svg","g")),Qn.setAttribute("transform",e),!(e=Qn.transform.baseVal.consolidate()))?si:(e=e.matrix,ba(e.a,e.b,e.c,e.d,e.e,e.f))}function xa(e,t,n,r){function i(u){return u.length?u.pop()+" ":""}function o(u,c,d,f,h,b){if(u!==d||c!==f){var y=h.push("translate(",null,t,null,n);b.push({i:y-4,x:_t(u,d)},{i:y-2,x:_t(c,f)})}else(d||f)&&h.push("translate("+d+t+f+n)}function a(u,c,d,f){u!==c?(u-c>180?c+=360:c-u>180&&(u+=360),f.push({i:d.push(i(d)+"rotate(",null,r)-2,x:_t(u,c)})):c&&d.push(i(d)+"rotate("+c+r)}function s(u,c,d,f){u!==c?f.push({i:d.push(i(d)+"skewX(",null,r)-2,x:_t(u,c)}):c&&d.push(i(d)+"skewX("+c+r)}function l(u,c,d,f,h,b){if(u!==d||c!==f){var y=h.push(i(h)+"scale(",null,",",null,")");b.push({i:y-4,x:_t(u,d)},{i:y-2,x:_t(c,f)})}else(d!==1||f!==1)&&h.push(i(h)+"scale("+d+","+f+")")}return function(u,c){var d=[],f=[];return u=e(u),c=e(c),o(u.translateX,u.translateY,c.translateX,c.translateY,d,f),a(u.rotate,c.rotate,d,f),s(u.skewX,c.skewX,d,f),l(u.scaleX,u.scaleY,c.scaleX,c.scaleY,d,f),u=c=null,function(h){for(var b=-1,y=f.length,v;++b<y;)d[(v=f[b]).i]=v.x(h);return d.join("")}}}var sd=xa(od,"px, ","px)","deg)"),ud=xa(ad,", ",")",")"),ld=1e-12;function Ma(e){return((e=Math.exp(e))+1/e)/2}function cd(e){return((e=Math.exp(e))-1/e)/2}function fd(e){return((e=Math.exp(2*e))-1)/(e+1)}const dd=function e(t,n,r){function i(o,a){var s=o[0],l=o[1],u=o[2],c=a[0],d=a[1],f=a[2],h=c-s,b=d-l,y=h*h+b*b,v,M;if(y<ld)M=Math.log(f/u)/t,v=function(C){return[s+C*h,l+C*b,u*Math.exp(t*C*M)]};else{var D=Math.sqrt(y),O=(f*f-u*u+r*y)/(2*u*n*D),_=(f*f-u*u-r*y)/(2*f*n*D),m=Math.log(Math.sqrt(O*O+1)-O),k=Math.log(Math.sqrt(_*_+1)-_);M=(k-m)/t,v=function(C){var S=C*M,I=Ma(m),E=u/(n*D)*(I*fd(t*S+m)-cd(m));return[s+E*h,l+E*b,u*I/Ma(t*S+m)]}}return v.duration=M*1e3*t/Math.SQRT2,v}return i.rho=function(o){var a=Math.max(.001,+o),s=a*a,l=s*s;return e(a,s,l)},i}(Math.SQRT2,2,4);var $t=0,hn=0,pn=0,_a=1e3,Wn,gn,Gn=0,Ct=0,Kn=0,mn=typeof performance=="object"&&performance.now?performance:Date,Ta=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function ui(){return Ct||(Ta(hd),Ct=mn.now()+Kn)}function hd(){Ct=0}function Hn(){this._call=this._time=this._next=null}Hn.prototype=wa.prototype={constructor:Hn,restart:function(e,t,n){if(typeof e!="function")throw new TypeError("callback is not a function");n=(n==null?ui():+n)+(t==null?0:+t),!this._next&&gn!==this&&(gn?gn._next=this:Wn=this,gn=this),this._call=e,this._time=n,li()},stop:function(){this._call&&(this._call=null,this._time=1/0,li())}};function wa(e,t,n){var r=new Hn;return r.restart(e,t,n),r}function pd(){ui(),++$t;for(var e=Wn,t;e;)(t=Ct-e._time)>=0&&e._call.call(void 0,t),e=e._next;--$t}function Na(){Ct=(Gn=mn.now())+Kn,$t=hn=0;try{pd()}finally{$t=0,md(),Ct=0}}function gd(){var e=mn.now(),t=e-Gn;t>_a&&(Kn-=t,Gn=e)}function md(){for(var e,t=Wn,n,r=1/0;t;)t._call?(r>t._time&&(r=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:Wn=n);gn=e,li(r)}function li(e){if(!$t){hn&&(hn=clearTimeout(hn));var t=e-Ct;t>24?(e<1/0&&(hn=setTimeout(Na,e-mn.now()-Kn)),pn&&(pn=clearInterval(pn))):(pn||(Gn=mn.now(),pn=setInterval(gd,_a)),$t=1,Ta(Na))}}function Ea(e,t,n){var r=new Hn;return t=t==null?0:+t,r.restart(i=>{r.stop(),e(i+t)},t,n),r}var yd=Zr("start","end","cancel","interrupt"),vd=[],Da=0,Oa=1,ci=2,Xn=3,Ca=4,fi=5,Jn=6;function Zn(e,t,n,r,i,o){var a=e.__transition;if(!a)e.__transition={};else if(n in a)return;bd(e,n,{name:t,index:r,group:i,on:yd,tween:vd,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Da})}function di(e,t){var n=tt(e,t);if(n.state>Da)throw new Error("too late; already scheduled");return n}function st(e,t){var n=tt(e,t);if(n.state>Xn)throw new Error("too late; already running");return n}function tt(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function bd(e,t,n){var r=e.__transition,i;r[t]=n,n.timer=wa(o,0,n.time);function o(u){n.state=Oa,n.timer.restart(a,n.delay,n.time),n.delay<=u&&a(u-n.delay)}function a(u){var c,d,f,h;if(n.state!==Oa)return l();for(c in r)if(h=r[c],h.name===n.name){if(h.state===Xn)return Ea(a);h.state===Ca?(h.state=Jn,h.timer.stop(),h.on.call("interrupt",e,e.__data__,h.index,h.group),delete r[c]):+c<t&&(h.state=Jn,h.timer.stop(),h.on.call("cancel",e,e.__data__,h.index,h.group),delete r[c])}if(Ea(function(){n.state===Xn&&(n.state=Ca,n.timer.restart(s,n.delay,n.time),s(u))}),n.state=ci,n.on.call("start",e,e.__data__,n.index,n.group),n.state===ci){for(n.state=Xn,i=new Array(f=n.tween.length),c=0,d=-1;c<f;++c)(h=n.tween[c].value.call(e,e.__data__,n.index,n.group))&&(i[++d]=h);i.length=d+1}}function s(u){for(var c=u<n.duration?n.ease.call(null,u/n.duration):(n.timer.restart(l),n.state=fi,1),d=-1,f=i.length;++d<f;)i[d].call(e,c);n.state===fi&&(n.on.call("end",e,e.__data__,n.index,n.group),l())}function l(){n.state=Jn,n.timer.stop(),delete r[t];for(var u in r)return;delete e.__transition}}function er(e,t){var n=e.__transition,r,i,o=!0,a;if(n){t=t==null?null:t+"";for(a in n){if((r=n[a]).name!==t){o=!1;continue}i=r.state>ci&&r.state<fi,r.state=Jn,r.timer.stop(),r.on.call(i?"interrupt":"cancel",e,e.__data__,r.index,r.group),delete n[a]}o&&delete e.__transition}}function xd(e){return this.each(function(){er(this,e)})}function Md(e,t){var n,r;return function(){var i=st(this,e),o=i.tween;if(o!==n){r=n=o;for(var a=0,s=r.length;a<s;++a)if(r[a].name===t){r=r.slice(),r.splice(a,1);break}}i.tween=r}}function _d(e,t,n){var r,i;if(typeof n!="function")throw new Error;return function(){var o=st(this,e),a=o.tween;if(a!==r){i=(r=a).slice();for(var s={name:t,value:n},l=0,u=i.length;l<u;++l)if(i[l].name===t){i[l]=s;break}l===u&&i.push(s)}o.tween=i}}function Td(e,t){var n=this._id;if(e+="",arguments.length<2){for(var r=tt(this.node(),n).tween,i=0,o=r.length,a;i<o;++i)if((a=r[i]).name===e)return a.value;return null}return this.each((t==null?Md:_d)(n,e,t))}function hi(e,t,n){var r=e._id;return e.each(function(){var i=st(this,r);(i.value||(i.value={}))[t]=n.apply(this,arguments)}),function(i){return tt(i,r).value[t]}}function ja(e,t){var n;return(typeof t=="number"?_t:t instanceof dn?ya:(n=dn(t))?(t=n,ya):id)(e,t)}function wd(e){return function(){this.removeAttribute(e)}}function Nd(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Ed(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttribute(e);return a===i?null:a===r?o:o=t(r=a,n)}}function Dd(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttributeNS(e.space,e.local);return a===i?null:a===r?o:o=t(r=a,n)}}function Od(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttribute(e):(a=this.getAttribute(e),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function Cd(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttributeNS(e.space,e.local):(a=this.getAttributeNS(e.space,e.local),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function jd(e,t){var n=Pn(e),r=n==="transform"?ud:ja;return this.attrTween(e,typeof t=="function"?(n.local?Cd:Od)(n,r,hi(this,"attr."+e,t)):t==null?(n.local?Nd:wd)(n):(n.local?Dd:Ed)(n,r,t))}function Ad(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function Sd(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function Id(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&Sd(e,o)),n}return i._value=t,i}function kd(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&Ad(e,o)),n}return i._value=t,i}function zd(e,t){var n="attr."+e;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;var r=Pn(e);return this.tween(n,(r.local?Id:kd)(r,t))}function Rd(e,t){return function(){di(this,e).delay=+t.apply(this,arguments)}}function $d(e,t){return t=+t,function(){di(this,e).delay=t}}function Ld(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?Rd:$d)(t,e)):tt(this.node(),t).delay}function Pd(e,t){return function(){st(this,e).duration=+t.apply(this,arguments)}}function Fd(e,t){return t=+t,function(){st(this,e).duration=t}}function Ud(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?Pd:Fd)(t,e)):tt(this.node(),t).duration}function Yd(e,t){if(typeof t!="function")throw new Error;return function(){st(this,e).ease=t}}function Vd(e){var t=this._id;return arguments.length?this.each(Yd(t,e)):tt(this.node(),t).ease}function Bd(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!="function")throw new Error;st(this,e).ease=n}}function qd(e){if(typeof e!="function")throw new Error;return this.each(Bd(this._id,e))}function Qd(e){typeof e!="function"&&(e=Go(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new gt(r,this._parents,this._name,this._id)}function Wd(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,n=e._groups,r=t.length,i=n.length,o=Math.min(r,i),a=new Array(r),s=0;s<o;++s)for(var l=t[s],u=n[s],c=l.length,d=a[s]=new Array(c),f,h=0;h<c;++h)(f=l[h]||u[h])&&(d[h]=f);for(;s<r;++s)a[s]=t[s];return new gt(a,this._parents,this._name,this._id)}function Gd(e){return(e+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||t==="start"})}function Kd(e,t,n){var r,i,o=Gd(t)?di:st;return function(){var a=o(this,e),s=a.on;s!==r&&(i=(r=s).copy()).on(t,n),a.on=i}}function Hd(e,t){var n=this._id;return arguments.length<2?tt(this.node(),n).on.on(e):this.each(Kd(n,e,t))}function Xd(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function Jd(){return this.on("end.remove",Xd(this._id))}function Zd(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Xr(e));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var s=r[a],l=s.length,u=o[a]=new Array(l),c,d,f=0;f<l;++f)(c=s[f])&&(d=e.call(c,c.__data__,f,s))&&("__data__"in c&&(d.__data__=c.__data__),u[f]=d,Zn(u[f],t,n,f,u,tt(c,n)));return new gt(o,this._parents,t,n)}function eh(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Wo(e));for(var r=this._groups,i=r.length,o=[],a=[],s=0;s<i;++s)for(var l=r[s],u=l.length,c,d=0;d<u;++d)if(c=l[d]){for(var f=e.call(c,c.__data__,d,l),h,b=tt(c,n),y=0,v=f.length;y<v;++y)(h=f[y])&&Zn(h,t,n,y,f,b);o.push(f),a.push(c)}return new gt(o,a,t,n)}var th=un.prototype.constructor;function nh(){return new th(this._groups,this._parents)}function rh(e,t){var n,r,i;return function(){var o=zt(this,e),a=(this.style.removeProperty(e),zt(this,e));return o===a?null:o===n&&a===r?i:i=t(n=o,r=a)}}function Aa(e){return function(){this.style.removeProperty(e)}}function ih(e,t,n){var r,i=n+"",o;return function(){var a=zt(this,e);return a===i?null:a===r?o:o=t(r=a,n)}}function oh(e,t,n){var r,i,o;return function(){var a=zt(this,e),s=n(this),l=s+"";return s==null&&(l=s=(this.style.removeProperty(e),zt(this,e))),a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s))}}function ah(e,t){var n,r,i,o="style."+t,a="end."+o,s;return function(){var l=st(this,e),u=l.on,c=l.value[o]==null?s||(s=Aa(t)):void 0;(u!==n||i!==c)&&(r=(n=u).copy()).on(a,i=c),l.on=r}}function sh(e,t,n){var r=(e+="")=="transform"?sd:ja;return t==null?this.styleTween(e,rh(e,r)).on("end.style."+e,Aa(e)):typeof t=="function"?this.styleTween(e,oh(e,r,hi(this,"style."+e,t))).each(ah(this._id,e)):this.styleTween(e,ih(e,r,t),n).on("end.style."+e,null)}function uh(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function lh(e,t,n){var r,i;function o(){var a=t.apply(this,arguments);return a!==i&&(r=(i=a)&&uh(e,a,n)),r}return o._value=t,o}function ch(e,t,n){var r="style."+(e+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;return this.tween(r,lh(e,t,n??""))}function fh(e){return function(){this.textContent=e}}function dh(e){return function(){var t=e(this);this.textContent=t??""}}function hh(e){return this.tween("text",typeof e=="function"?dh(hi(this,"text",e)):fh(e==null?"":e+""))}function ph(e){return function(t){this.textContent=e.call(this,t)}}function gh(e){var t,n;function r(){var i=e.apply(this,arguments);return i!==n&&(t=(n=i)&&ph(i)),t}return r._value=e,r}function mh(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,gh(e))}function yh(){for(var e=this._name,t=this._id,n=Sa(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)if(l=a[u]){var c=tt(l,t);Zn(l,e,n,u,a,{time:c.time+c.delay+c.duration,delay:0,duration:c.duration,ease:c.ease})}return new gt(r,this._parents,e,n)}function vh(){var e,t,n=this,r=n._id,i=n.size();return new Promise(function(o,a){var s={value:a},l={value:function(){--i===0&&o()}};n.each(function(){var u=st(this,r),c=u.on;c!==e&&(t=(e=c).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(l)),u.on=t}),i===0&&o()})}var bh=0;function gt(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function Sa(){return++bh}var mt=un.prototype;gt.prototype={constructor:gt,select:Zd,selectAll:eh,selectChild:mt.selectChild,selectChildren:mt.selectChildren,filter:Qd,merge:Wd,selection:nh,transition:yh,call:mt.call,nodes:mt.nodes,node:mt.node,size:mt.size,empty:mt.empty,each:mt.each,on:Hd,attr:jd,attrTween:zd,style:sh,styleTween:ch,text:hh,textTween:mh,remove:Jd,tween:Td,delay:Ld,duration:Ud,ease:Vd,easeVarying:qd,end:vh,[Symbol.iterator]:mt[Symbol.iterator]};function xh(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var Mh={time:null,delay:0,duration:250,ease:xh};function _h(e,t){for(var n;!(n=e.__transition)||!(n=n[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return n}function Th(e){var t,n;e instanceof gt?(t=e._id,e=e._name):(t=Sa(),(n=Mh).time=ui(),e=e==null?null:e+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&Zn(l,e,t,u,a,n||_h(l,t));return new gt(r,this._parents,e,t)}un.prototype.interrupt=xd,un.prototype.transition=Th;const tr=e=>()=>e;function wh(e,{sourceEvent:t,target:n,transform:r,dispatch:i}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:r,enumerable:!0,configurable:!0},_:{value:i}})}function yt(e,t,n){this.k=e,this.x=t,this.y=n}yt.prototype={constructor:yt,scale:function(e){return e===1?this:new yt(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new yt(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var nr=new yt(1,0,0);yt.prototype;function pi(e){e.stopImmediatePropagation()}function yn(e){e.preventDefault(),e.stopImmediatePropagation()}function Nh(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function Eh(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function Ia(){return this.__zoom||nr}function Dh(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function Oh(){return navigator.maxTouchPoints||"ontouchstart"in this}function Ch(e,t,n){var r=e.invertX(t[0][0])-n[0][0],i=e.invertX(t[1][0])-n[1][0],o=e.invertY(t[0][1])-n[0][1],a=e.invertY(t[1][1])-n[1][1];return e.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}function gi(){var e=Nh,t=Eh,n=Ch,r=Dh,i=Oh,o=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],s=250,l=dd,u=Zr("start","zoom","end"),c,d,f,h=500,b=150,y=0,v=10;function M(x){x.property("__zoom",Ia).on("wheel.zoom",S,{passive:!1}).on("mousedown.zoom",I).on("dblclick.zoom",E).filter(i).on("touchstart.zoom",$).on("touchmove.zoom",X).on("touchend.zoom touchcancel.zoom",H).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}M.transform=function(x,z,N,R){var P=x.selection?x.selection():x;P.property("__zoom",Ia),x!==P?m(x,z,N,R):P.interrupt().each(function(){k(this,arguments).event(R).start().zoom(null,typeof z=="function"?z.apply(this,arguments):z).end()})},M.scaleBy=function(x,z,N,R){M.scaleTo(x,function(){var P=this.__zoom.k,q=typeof z=="function"?z.apply(this,arguments):z;return P*q},N,R)},M.scaleTo=function(x,z,N,R){M.transform(x,function(){var P=t.apply(this,arguments),q=this.__zoom,T=N==null?_(P):typeof N=="function"?N.apply(this,arguments):N,A=q.invert(T),V=typeof z=="function"?z.apply(this,arguments):z;return n(O(D(q,V),T,A),P,a)},N,R)},M.translateBy=function(x,z,N,R){M.transform(x,function(){return n(this.__zoom.translate(typeof z=="function"?z.apply(this,arguments):z,typeof N=="function"?N.apply(this,arguments):N),t.apply(this,arguments),a)},null,R)},M.translateTo=function(x,z,N,R,P){M.transform(x,function(){var q=t.apply(this,arguments),T=this.__zoom,A=R==null?_(q):typeof R=="function"?R.apply(this,arguments):R;return n(nr.translate(A[0],A[1]).scale(T.k).translate(typeof z=="function"?-z.apply(this,arguments):-z,typeof N=="function"?-N.apply(this,arguments):-N),q,a)},R,P)};function D(x,z){return z=Math.max(o[0],Math.min(o[1],z)),z===x.k?x:new yt(z,x.x,x.y)}function O(x,z,N){var R=z[0]-N[0]*x.k,P=z[1]-N[1]*x.k;return R===x.x&&P===x.y?x:new yt(x.k,R,P)}function _(x){return[(+x[0][0]+ +x[1][0])/2,(+x[0][1]+ +x[1][1])/2]}function m(x,z,N,R){x.on("start.zoom",function(){k(this,arguments).event(R).start()}).on("interrupt.zoom end.zoom",function(){k(this,arguments).event(R).end()}).tween("zoom",function(){var P=this,q=arguments,T=k(P,q).event(R),A=t.apply(P,q),V=N==null?_(A):typeof N=="function"?N.apply(P,q):N,K=Math.max(A[1][0]-A[0][0],A[1][1]-A[0][1]),B=P.__zoom,J=typeof z=="function"?z.apply(P,q):z,Q=l(B.invert(V).concat(K/B.k),J.invert(V).concat(K/J.k));return function(W){if(W===1)W=J;else{var ee=Q(W),re=K/ee[2];W=new yt(re,V[0]-ee[0]*re,V[1]-ee[1]*re)}T.zoom(null,W)}})}function k(x,z,N){return!N&&x.__zooming||new C(x,z)}function C(x,z){this.that=x,this.args=z,this.active=0,this.sourceEvent=null,this.extent=t.apply(x,z),this.taps=0}C.prototype={event:function(x){return x&&(this.sourceEvent=x),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(x,z){return this.mouse&&x!=="mouse"&&(this.mouse[1]=z.invert(this.mouse[0])),this.touch0&&x!=="touch"&&(this.touch0[1]=z.invert(this.touch0[0])),this.touch1&&x!=="touch"&&(this.touch1[1]=z.invert(this.touch1[0])),this.that.__zoom=z,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(x){var z=Ue(this.that).datum();u.call(x,this.that,new wh(x,{sourceEvent:this.sourceEvent,target:M,type:x,transform:this.that.__zoom,dispatch:u}),z)}};function S(x,...z){if(!e.apply(this,arguments))return;var N=k(this,z).event(x),R=this.__zoom,P=Math.max(o[0],Math.min(o[1],R.k*Math.pow(2,r.apply(this,arguments)))),q=Et(x);if(N.wheel)(N.mouse[0][0]!==q[0]||N.mouse[0][1]!==q[1])&&(N.mouse[1]=R.invert(N.mouse[0]=q)),clearTimeout(N.wheel);else{if(R.k===P)return;N.mouse=[q,R.invert(q)],er(this),N.start()}yn(x),N.wheel=setTimeout(T,b),N.zoom("mouse",n(O(D(R,P),N.mouse[0],N.mouse[1]),N.extent,a));function T(){N.wheel=null,N.end()}}function I(x,...z){if(f||!e.apply(this,arguments))return;var N=x.currentTarget,R=k(this,z,!0).event(x),P=Ue(x.view).on("mousemove.zoom",V,!0).on("mouseup.zoom",K,!0),q=Et(x,N),T=x.clientX,A=x.clientY;Pf(x.view),pi(x),R.mouse=[q,this.__zoom.invert(q)],er(this),R.start();function V(B){if(yn(B),!R.moved){var J=B.clientX-T,Q=B.clientY-A;R.moved=J*J+Q*Q>y}R.event(B).zoom("mouse",n(O(R.that.__zoom,R.mouse[0]=Et(B,N),R.mouse[1]),R.extent,a))}function K(B){P.on("mousemove.zoom mouseup.zoom",null),Ff(B.view,R.moved),yn(B),R.event(B).end()}}function E(x,...z){if(e.apply(this,arguments)){var N=this.__zoom,R=Et(x.changedTouches?x.changedTouches[0]:x,this),P=N.invert(R),q=N.k*(x.shiftKey?.5:2),T=n(O(D(N,q),R,P),t.apply(this,z),a);yn(x),s>0?Ue(this).transition().duration(s).call(m,T,R,x):Ue(this).call(M.transform,T,R,x)}}function $(x,...z){if(e.apply(this,arguments)){var N=x.touches,R=N.length,P=k(this,z,x.changedTouches.length===R).event(x),q,T,A,V;for(pi(x),T=0;T<R;++T)A=N[T],V=Et(A,this),V=[V,this.__zoom.invert(V),A.identifier],P.touch0?!P.touch1&&P.touch0[2]!==V[2]&&(P.touch1=V,P.taps=0):(P.touch0=V,q=!0,P.taps=1+!!c);c&&(c=clearTimeout(c)),q&&(P.taps<2&&(d=V[0],c=setTimeout(function(){c=null},h)),er(this),P.start())}}function X(x,...z){if(this.__zooming){var N=k(this,z).event(x),R=x.changedTouches,P=R.length,q,T,A,V;for(yn(x),q=0;q<P;++q)T=R[q],A=Et(T,this),N.touch0&&N.touch0[2]===T.identifier?N.touch0[0]=A:N.touch1&&N.touch1[2]===T.identifier&&(N.touch1[0]=A);if(T=N.that.__zoom,N.touch1){var K=N.touch0[0],B=N.touch0[1],J=N.touch1[0],Q=N.touch1[1],W=(W=J[0]-K[0])*W+(W=J[1]-K[1])*W,ee=(ee=Q[0]-B[0])*ee+(ee=Q[1]-B[1])*ee;T=D(T,Math.sqrt(W/ee)),A=[(K[0]+J[0])/2,(K[1]+J[1])/2],V=[(B[0]+Q[0])/2,(B[1]+Q[1])/2]}else if(N.touch0)A=N.touch0[0],V=N.touch0[1];else return;N.zoom("touch",n(O(T,A,V),N.extent,a))}}function H(x,...z){if(this.__zooming){var N=k(this,z).event(x),R=x.changedTouches,P=R.length,q,T;for(pi(x),f&&clearTimeout(f),f=setTimeout(function(){f=null},h),q=0;q<P;++q)T=R[q],N.touch0&&N.touch0[2]===T.identifier?delete N.touch0:N.touch1&&N.touch1[2]===T.identifier&&delete N.touch1;if(N.touch1&&!N.touch0&&(N.touch0=N.touch1,delete N.touch1),N.touch0)N.touch0[1]=this.__zoom.invert(N.touch0[0]);else if(N.end(),N.taps===2&&(T=Et(T,this),Math.hypot(d[0]-T[0],d[1]-T[1])<v)){var A=Ue(this).on("dblclick.zoom");A&&A.apply(this,arguments)}}}return M.wheelDelta=function(x){return arguments.length?(r=typeof x=="function"?x:tr(+x),M):r},M.filter=function(x){return arguments.length?(e=typeof x=="function"?x:tr(!!x),M):e},M.touchable=function(x){return arguments.length?(i=typeof x=="function"?x:tr(!!x),M):i},M.extent=function(x){return arguments.length?(t=typeof x=="function"?x:tr([[+x[0][0],+x[0][1]],[+x[1][0],+x[1][1]]]),M):t},M.scaleExtent=function(x){return arguments.length?(o[0]=+x[0],o[1]=+x[1],M):[o[0],o[1]]},M.translateExtent=function(x){return arguments.length?(a[0][0]=+x[0][0],a[1][0]=+x[1][0],a[0][1]=+x[0][1],a[1][1]=+x[1][1],M):[[a[0][0],a[0][1]],[a[1][0],a[1][1]]]},M.constrain=function(x){return arguments.length?(n=x,M):n},M.duration=function(x){return arguments.length?(s=+x,M):s},M.interpolate=function(x){return arguments.length?(l=x,M):l},M.on=function(){var x=u.on.apply(u,arguments);return x===u?M:x},M.clickDistance=function(x){return arguments.length?(y=(x=+x)*x,M):Math.sqrt(y)},M.tapDistance=function(x){return arguments.length?(v=+x,M):v},M}var ka=Object.prototype.hasOwnProperty;function vn(e,t){var n,r;if(e===t)return!0;if(e&&t&&(n=e.constructor)===t.constructor){if(n===Date)return e.getTime()===t.getTime();if(n===RegExp)return e.toString()===t.toString();if(n===Array){if((r=e.length)===t.length)for(;r--&&vn(e[r],t[r]););return r===-1}if(!n||typeof e=="object"){r=0;for(n in e)if(ka.call(e,n)&&++r&&!ka.call(t,n)||!(n in t)||!vn(e[n],t[n]))return!1;return Object.keys(t).length===r}}return e!==e&&t!==t}var za={exports:{}};(function(e){var t=function(){function n(f,h){return h!=null&&f instanceof h}var r;try{r=Map}catch{r=function(){}}var i;try{i=Set}catch{i=function(){}}var o;try{o=Promise}catch{o=function(){}}function a(f,h,b,y,v){typeof h=="object"&&(b=h.depth,y=h.prototype,v=h.includeNonEnumerable,h=h.circular);var M=[],D=[],O=typeof Buffer<"u";typeof h>"u"&&(h=!0),typeof b>"u"&&(b=1/0);function _(m,k){if(m===null)return null;if(k===0)return m;var C,S;if(typeof m!="object")return m;if(n(m,r))C=new r;else if(n(m,i))C=new i;else if(n(m,o))C=new o(function(R,P){m.then(function(q){R(_(q,k-1))},function(q){P(_(q,k-1))})});else if(a.__isArray(m))C=[];else if(a.__isRegExp(m))C=new RegExp(m.source,d(m)),m.lastIndex&&(C.lastIndex=m.lastIndex);else if(a.__isDate(m))C=new Date(m.getTime());else{if(O&&Buffer.isBuffer(m))return Buffer.allocUnsafe?C=Buffer.allocUnsafe(m.length):C=new Buffer(m.length),m.copy(C),C;n(m,Error)?C=Object.create(m):typeof y>"u"?(S=Object.getPrototypeOf(m),C=Object.create(S)):(C=Object.create(y),S=y)}if(h){var I=M.indexOf(m);if(I!=-1)return D[I];M.push(m),D.push(C)}n(m,r)&&m.forEach(function(R,P){var q=_(P,k-1),T=_(R,k-1);C.set(q,T)}),n(m,i)&&m.forEach(function(R){var P=_(R,k-1);C.add(P)});for(var E in m){var $;S&&($=Object.getOwnPropertyDescriptor(S,E)),!($&&$.set==null)&&(C[E]=_(m[E],k-1))}if(Object.getOwnPropertySymbols)for(var X=Object.getOwnPropertySymbols(m),E=0;E<X.length;E++){var H=X[E],x=Object.getOwnPropertyDescriptor(m,H);x&&!x.enumerable&&!v||(C[H]=_(m[H],k-1),x.enumerable||Object.defineProperty(C,H,{enumerable:!1}))}if(v)for(var z=Object.getOwnPropertyNames(m),E=0;E<z.length;E++){var N=z[E],x=Object.getOwnPropertyDescriptor(m,N);x&&x.enumerable||(C[N]=_(m[N],k-1),Object.defineProperty(C,N,{enumerable:!1}))}return C}return _(f,b)}a.clonePrototype=function(h){if(h===null)return null;var b=function(){};return b.prototype=h,new b};function s(f){return Object.prototype.toString.call(f)}a.__objToStr=s;function l(f){return typeof f=="object"&&s(f)==="[object Date]"}a.__isDate=l;function u(f){return typeof f=="object"&&s(f)==="[object Array]"}a.__isArray=u;function c(f){return typeof f=="object"&&s(f)==="[object RegExp]"}a.__isRegExp=c;function d(f){var h="";return f.global&&(h+="g"),f.ignoreCase&&(h+="i"),f.multiline&&(h+="m"),h}return a.__getRegExpFlags=d,a}();e.exports&&(e.exports=t)})(za);var jh=za.exports;const Ye=Lo(jh);var rr,Ah=new Uint8Array(16);function Sh(){if(!rr&&(rr=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto<"u"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),!rr))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return rr(Ah)}const Ih=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function kh(e){return typeof e=="string"&&Ih.test(e)}for(var ze=[],mi=0;mi<256;++mi)ze.push((mi+256).toString(16).substr(1));function zh(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,n=(ze[e[t+0]]+ze[e[t+1]]+ze[e[t+2]]+ze[e[t+3]]+"-"+ze[e[t+4]]+ze[e[t+5]]+"-"+ze[e[t+6]]+ze[e[t+7]]+"-"+ze[e[t+8]]+ze[e[t+9]]+"-"+ze[e[t+10]]+ze[e[t+11]]+ze[e[t+12]]+ze[e[t+13]]+ze[e[t+14]]+ze[e[t+15]]).toLowerCase();if(!kh(n))throw TypeError("Stringified UUID is invalid");return n}function yi(e,t,n){e=e||{};var r=e.random||(e.rng||Sh)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(var i=0;i<16;++i)t[n+i]=r[i];return t}return zh(r)}var vi={exports:{}},bi={exports:{}},ir={exports:{}},pe={};/** @license React v16.13.1
|
|
28
28
|
* react-is.production.min.js
|
|
29
29
|
*
|
|
30
30
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
31
31
|
*
|
|
32
32
|
* This source code is licensed under the MIT license found in the
|
|
33
33
|
* LICENSE file in the root directory of this source tree.
|
|
34
|
-
*/var
|
|
34
|
+
*/var Ra;function Rh(){if(Ra)return pe;Ra=1;var e=typeof Symbol=="function"&&Symbol.for,t=e?Symbol.for("react.element"):60103,n=e?Symbol.for("react.portal"):60106,r=e?Symbol.for("react.fragment"):60107,i=e?Symbol.for("react.strict_mode"):60108,o=e?Symbol.for("react.profiler"):60114,a=e?Symbol.for("react.provider"):60109,s=e?Symbol.for("react.context"):60110,l=e?Symbol.for("react.async_mode"):60111,u=e?Symbol.for("react.concurrent_mode"):60111,c=e?Symbol.for("react.forward_ref"):60112,d=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,h=e?Symbol.for("react.memo"):60115,b=e?Symbol.for("react.lazy"):60116,y=e?Symbol.for("react.block"):60121,v=e?Symbol.for("react.fundamental"):60117,M=e?Symbol.for("react.responder"):60118,D=e?Symbol.for("react.scope"):60119;function O(m){if(typeof m=="object"&&m!==null){var k=m.$$typeof;switch(k){case t:switch(m=m.type,m){case l:case u:case r:case o:case i:case d:return m;default:switch(m=m&&m.$$typeof,m){case s:case c:case b:case h:case a:return m;default:return k}}case n:return k}}}function _(m){return O(m)===u}return pe.AsyncMode=l,pe.ConcurrentMode=u,pe.ContextConsumer=s,pe.ContextProvider=a,pe.Element=t,pe.ForwardRef=c,pe.Fragment=r,pe.Lazy=b,pe.Memo=h,pe.Portal=n,pe.Profiler=o,pe.StrictMode=i,pe.Suspense=d,pe.isAsyncMode=function(m){return _(m)||O(m)===l},pe.isConcurrentMode=_,pe.isContextConsumer=function(m){return O(m)===s},pe.isContextProvider=function(m){return O(m)===a},pe.isElement=function(m){return typeof m=="object"&&m!==null&&m.$$typeof===t},pe.isForwardRef=function(m){return O(m)===c},pe.isFragment=function(m){return O(m)===r},pe.isLazy=function(m){return O(m)===b},pe.isMemo=function(m){return O(m)===h},pe.isPortal=function(m){return O(m)===n},pe.isProfiler=function(m){return O(m)===o},pe.isStrictMode=function(m){return O(m)===i},pe.isSuspense=function(m){return O(m)===d},pe.isValidElementType=function(m){return typeof m=="string"||typeof m=="function"||m===r||m===u||m===o||m===i||m===d||m===f||typeof m=="object"&&m!==null&&(m.$$typeof===b||m.$$typeof===h||m.$$typeof===a||m.$$typeof===s||m.$$typeof===c||m.$$typeof===v||m.$$typeof===M||m.$$typeof===D||m.$$typeof===y)},pe.typeOf=O,pe}var ge={};/** @license React v16.13.1
|
|
35
35
|
* react-is.development.js
|
|
36
36
|
*
|
|
37
37
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
38
38
|
*
|
|
39
39
|
* This source code is licensed under the MIT license found in the
|
|
40
40
|
* LICENSE file in the root directory of this source tree.
|
|
41
|
-
*/var
|
|
41
|
+
*/var $a;function $h(){return $a||($a=1,process.env.NODE_ENV!=="production"&&function(){var e=typeof Symbol=="function"&&Symbol.for,t=e?Symbol.for("react.element"):60103,n=e?Symbol.for("react.portal"):60106,r=e?Symbol.for("react.fragment"):60107,i=e?Symbol.for("react.strict_mode"):60108,o=e?Symbol.for("react.profiler"):60114,a=e?Symbol.for("react.provider"):60109,s=e?Symbol.for("react.context"):60110,l=e?Symbol.for("react.async_mode"):60111,u=e?Symbol.for("react.concurrent_mode"):60111,c=e?Symbol.for("react.forward_ref"):60112,d=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,h=e?Symbol.for("react.memo"):60115,b=e?Symbol.for("react.lazy"):60116,y=e?Symbol.for("react.block"):60121,v=e?Symbol.for("react.fundamental"):60117,M=e?Symbol.for("react.responder"):60118,D=e?Symbol.for("react.scope"):60119;function O(Y){return typeof Y=="string"||typeof Y=="function"||Y===r||Y===u||Y===o||Y===i||Y===d||Y===f||typeof Y=="object"&&Y!==null&&(Y.$$typeof===b||Y.$$typeof===h||Y.$$typeof===a||Y.$$typeof===s||Y.$$typeof===c||Y.$$typeof===v||Y.$$typeof===M||Y.$$typeof===D||Y.$$typeof===y)}function _(Y){if(typeof Y=="object"&&Y!==null){var Le=Y.$$typeof;switch(Le){case t:var G=Y.type;switch(G){case l:case u:case r:case o:case i:case d:return G;default:var Je=G&&G.$$typeof;switch(Je){case s:case c:case b:case h:case a:return Je;default:return Le}}case n:return Le}}}var m=l,k=u,C=s,S=a,I=t,E=c,$=r,X=b,H=h,x=n,z=o,N=i,R=d,P=!1;function q(Y){return P||(P=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),T(Y)||_(Y)===l}function T(Y){return _(Y)===u}function A(Y){return _(Y)===s}function V(Y){return _(Y)===a}function K(Y){return typeof Y=="object"&&Y!==null&&Y.$$typeof===t}function B(Y){return _(Y)===c}function J(Y){return _(Y)===r}function Q(Y){return _(Y)===b}function W(Y){return _(Y)===h}function ee(Y){return _(Y)===n}function re(Y){return _(Y)===o}function te(Y){return _(Y)===i}function Ce(Y){return _(Y)===d}ge.AsyncMode=m,ge.ConcurrentMode=k,ge.ContextConsumer=C,ge.ContextProvider=S,ge.Element=I,ge.ForwardRef=E,ge.Fragment=$,ge.Lazy=X,ge.Memo=H,ge.Portal=x,ge.Profiler=z,ge.StrictMode=N,ge.Suspense=R,ge.isAsyncMode=q,ge.isConcurrentMode=T,ge.isContextConsumer=A,ge.isContextProvider=V,ge.isElement=K,ge.isForwardRef=B,ge.isFragment=J,ge.isLazy=Q,ge.isMemo=W,ge.isPortal=ee,ge.isProfiler=re,ge.isStrictMode=te,ge.isSuspense=Ce,ge.isValidElementType=O,ge.typeOf=_}()),ge}var La;function Pa(){return La||(La=1,process.env.NODE_ENV==="production"?ir.exports=Rh():ir.exports=$h()),ir.exports}/*
|
|
42
42
|
object-assign
|
|
43
43
|
(c) Sindre Sorhus
|
|
44
44
|
@license MIT
|
|
45
|
-
*/var
|
|
46
|
-
Valid keys: `+JSON.stringify(Object.keys(T),null," "));var Y=Ce(W,te,
|
|
45
|
+
*/var xi,Fa;function Lh(){if(Fa)return xi;Fa=1;var e=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,n=Object.prototype.propertyIsEnumerable;function r(o){if(o==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(o)}function i(){try{if(!Object.assign)return!1;var o=new String("abc");if(o[5]="de",Object.getOwnPropertyNames(o)[0]==="5")return!1;for(var a={},s=0;s<10;s++)a["_"+String.fromCharCode(s)]=s;var l=Object.getOwnPropertyNames(a).map(function(c){return a[c]});if(l.join("")!=="0123456789")return!1;var u={};return"abcdefghijklmnopqrst".split("").forEach(function(c){u[c]=c}),Object.keys(Object.assign({},u)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}return xi=i()?Object.assign:function(o,a){for(var s,l=r(o),u,c=1;c<arguments.length;c++){s=Object(arguments[c]);for(var d in s)t.call(s,d)&&(l[d]=s[d]);if(e){u=e(s);for(var f=0;f<u.length;f++)n.call(s,u[f])&&(l[u[f]]=s[u[f]])}}return l},xi}var Mi,Ua;function _i(){if(Ua)return Mi;Ua=1;var e="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return Mi=e,Mi}var Ti,Ya;function Va(){return Ya||(Ya=1,Ti=Function.call.bind(Object.prototype.hasOwnProperty)),Ti}var wi,Ba;function Ph(){if(Ba)return wi;Ba=1;var e=function(){};if(process.env.NODE_ENV!=="production"){var t=_i(),n={},r=Va();e=function(o){var a="Warning: "+o;typeof console<"u"&&console.error(a);try{throw new Error(a)}catch{}}}function i(o,a,s,l,u){if(process.env.NODE_ENV!=="production"){for(var c in o)if(r(o,c)){var d;try{if(typeof o[c]!="function"){var f=Error((l||"React class")+": "+s+" type `"+c+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof o[c]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw f.name="Invariant Violation",f}d=o[c](a,c,l,s,null,t)}catch(b){d=b}if(d&&!(d instanceof Error)&&e((l||"React class")+": type specification of "+s+" `"+c+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof d+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),d instanceof Error&&!(d.message in n)){n[d.message]=!0;var h=u?u():"";e("Failed "+s+" type: "+d.message+(h??""))}}}}return i.resetWarningCache=function(){process.env.NODE_ENV!=="production"&&(n={})},wi=i,wi}var Ni,qa;function Fh(){if(qa)return Ni;qa=1;var e=Pa(),t=Lh(),n=_i(),r=Va(),i=Ph(),o=function(){};process.env.NODE_ENV!=="production"&&(o=function(s){var l="Warning: "+s;typeof console<"u"&&console.error(l);try{throw new Error(l)}catch{}});function a(){return null}return Ni=function(s,l){var u=typeof Symbol=="function"&&Symbol.iterator,c="@@iterator";function d(T){var A=T&&(u&&T[u]||T[c]);if(typeof A=="function")return A}var f="<<anonymous>>",h={array:M("array"),bigint:M("bigint"),bool:M("boolean"),func:M("function"),number:M("number"),object:M("object"),string:M("string"),symbol:M("symbol"),any:D(),arrayOf:O,element:_(),elementType:m(),instanceOf:k,node:E(),objectOf:S,oneOf:C,oneOfType:I,shape:X,exact:H};function b(T,A){return T===A?T!==0||1/T===1/A:T!==T&&A!==A}function y(T,A){this.message=T,this.data=A&&typeof A=="object"?A:{},this.stack=""}y.prototype=Error.prototype;function v(T){if(process.env.NODE_ENV!=="production")var A={},V=0;function K(J,Q,W,ee,re,te,Ce){if(ee=ee||f,te=te||W,Ce!==n){if(l){var Y=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw Y.name="Invariant Violation",Y}else if(process.env.NODE_ENV!=="production"&&typeof console<"u"){var Le=ee+":"+W;!A[Le]&&V<3&&(o("You are manually calling a React.PropTypes validation function for the `"+te+"` prop on `"+ee+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),A[Le]=!0,V++)}}return Q[W]==null?J?Q[W]===null?new y("The "+re+" `"+te+"` is marked as required "+("in `"+ee+"`, but its value is `null`.")):new y("The "+re+" `"+te+"` is marked as required in "+("`"+ee+"`, but its value is `undefined`.")):null:T(Q,W,ee,re,te)}var B=K.bind(null,!1);return B.isRequired=K.bind(null,!0),B}function M(T){function A(V,K,B,J,Q,W){var ee=V[K],re=N(ee);if(re!==T){var te=R(ee);return new y("Invalid "+J+" `"+Q+"` of type "+("`"+te+"` supplied to `"+B+"`, expected ")+("`"+T+"`."),{expectedType:T})}return null}return v(A)}function D(){return v(a)}function O(T){function A(V,K,B,J,Q){if(typeof T!="function")return new y("Property `"+Q+"` of component `"+B+"` has invalid PropType notation inside arrayOf.");var W=V[K];if(!Array.isArray(W)){var ee=N(W);return new y("Invalid "+J+" `"+Q+"` of type "+("`"+ee+"` supplied to `"+B+"`, expected an array."))}for(var re=0;re<W.length;re++){var te=T(W,re,B,J,Q+"["+re+"]",n);if(te instanceof Error)return te}return null}return v(A)}function _(){function T(A,V,K,B,J){var Q=A[V];if(!s(Q)){var W=N(Q);return new y("Invalid "+B+" `"+J+"` of type "+("`"+W+"` supplied to `"+K+"`, expected a single ReactElement."))}return null}return v(T)}function m(){function T(A,V,K,B,J){var Q=A[V];if(!e.isValidElementType(Q)){var W=N(Q);return new y("Invalid "+B+" `"+J+"` of type "+("`"+W+"` supplied to `"+K+"`, expected a single ReactElement type."))}return null}return v(T)}function k(T){function A(V,K,B,J,Q){if(!(V[K]instanceof T)){var W=T.name||f,ee=q(V[K]);return new y("Invalid "+J+" `"+Q+"` of type "+("`"+ee+"` supplied to `"+B+"`, expected ")+("instance of `"+W+"`."))}return null}return v(A)}function C(T){if(!Array.isArray(T))return process.env.NODE_ENV!=="production"&&(arguments.length>1?o("Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."):o("Invalid argument supplied to oneOf, expected an array.")),a;function A(V,K,B,J,Q){for(var W=V[K],ee=0;ee<T.length;ee++)if(b(W,T[ee]))return null;var re=JSON.stringify(T,function(Ce,Y){var Le=R(Y);return Le==="symbol"?String(Y):Y});return new y("Invalid "+J+" `"+Q+"` of value `"+String(W)+"` "+("supplied to `"+B+"`, expected one of "+re+"."))}return v(A)}function S(T){function A(V,K,B,J,Q){if(typeof T!="function")return new y("Property `"+Q+"` of component `"+B+"` has invalid PropType notation inside objectOf.");var W=V[K],ee=N(W);if(ee!=="object")return new y("Invalid "+J+" `"+Q+"` of type "+("`"+ee+"` supplied to `"+B+"`, expected an object."));for(var re in W)if(r(W,re)){var te=T(W,re,B,J,Q+"."+re,n);if(te instanceof Error)return te}return null}return v(A)}function I(T){if(!Array.isArray(T))return process.env.NODE_ENV!=="production"&&o("Invalid argument supplied to oneOfType, expected an instance of array."),a;for(var A=0;A<T.length;A++){var V=T[A];if(typeof V!="function")return o("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+P(V)+" at index "+A+"."),a}function K(B,J,Q,W,ee){for(var re=[],te=0;te<T.length;te++){var Ce=T[te],Y=Ce(B,J,Q,W,ee,n);if(Y==null)return null;Y.data&&r(Y.data,"expectedType")&&re.push(Y.data.expectedType)}var Le=re.length>0?", expected one of type ["+re.join(", ")+"]":"";return new y("Invalid "+W+" `"+ee+"` supplied to "+("`"+Q+"`"+Le+"."))}return v(K)}function E(){function T(A,V,K,B,J){return x(A[V])?null:new y("Invalid "+B+" `"+J+"` supplied to "+("`"+K+"`, expected a ReactNode."))}return v(T)}function $(T,A,V,K,B){return new y((T||"React class")+": "+A+" type `"+V+"."+K+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+B+"`.")}function X(T){function A(V,K,B,J,Q){var W=V[K],ee=N(W);if(ee!=="object")return new y("Invalid "+J+" `"+Q+"` of type `"+ee+"` "+("supplied to `"+B+"`, expected `object`."));for(var re in T){var te=T[re];if(typeof te!="function")return $(B,J,Q,re,R(te));var Ce=te(W,re,B,J,Q+"."+re,n);if(Ce)return Ce}return null}return v(A)}function H(T){function A(V,K,B,J,Q){var W=V[K],ee=N(W);if(ee!=="object")return new y("Invalid "+J+" `"+Q+"` of type `"+ee+"` "+("supplied to `"+B+"`, expected `object`."));var re=t({},V[K],T);for(var te in re){var Ce=T[te];if(r(T,te)&&typeof Ce!="function")return $(B,J,Q,te,R(Ce));if(!Ce)return new y("Invalid "+J+" `"+Q+"` key `"+te+"` supplied to `"+B+"`.\nBad object: "+JSON.stringify(V[K],null," ")+`
|
|
46
|
+
Valid keys: `+JSON.stringify(Object.keys(T),null," "));var Y=Ce(W,te,B,J,Q+"."+te,n);if(Y)return Y}return null}return v(A)}function x(T){switch(typeof T){case"number":case"string":case"undefined":return!0;case"boolean":return!T;case"object":if(Array.isArray(T))return T.every(x);if(T===null||s(T))return!0;var A=d(T);if(A){var V=A.call(T),K;if(A!==T.entries){for(;!(K=V.next()).done;)if(!x(K.value))return!1}else for(;!(K=V.next()).done;){var B=K.value;if(B&&!x(B[1]))return!1}}else return!1;return!0;default:return!1}}function z(T,A){return T==="symbol"?!0:A?A["@@toStringTag"]==="Symbol"||typeof Symbol=="function"&&A instanceof Symbol:!1}function N(T){var A=typeof T;return Array.isArray(T)?"array":T instanceof RegExp?"object":z(A,T)?"symbol":A}function R(T){if(typeof T>"u"||T===null)return""+T;var A=N(T);if(A==="object"){if(T instanceof Date)return"date";if(T instanceof RegExp)return"regexp"}return A}function P(T){var A=R(T);switch(A){case"array":case"object":return"an "+A;case"boolean":case"date":case"regexp":return"a "+A;default:return A}}function q(T){return!T.constructor||!T.constructor.name?f:T.constructor.name}return h.checkPropTypes=i,h.resetWarningCache=i.resetWarningCache,h.PropTypes=h,h},Ni}var Ei,Qa;function Uh(){if(Qa)return Ei;Qa=1;var e=_i();function t(){}function n(){}return n.resetWarningCache=t,Ei=function(){function r(a,s,l,u,c,d){if(d!==e){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}}r.isRequired=r;function i(){return r}var o={array:r,bigint:r,bool:r,func:r,number:r,object:r,string:r,symbol:r,any:r,arrayOf:i,element:r,elementType:r,instanceOf:i,node:r,objectOf:i,oneOf:i,oneOfType:i,shape:i,exact:i,checkPropTypes:n,resetWarningCache:t};return o.PropTypes=o,o},Ei}if(process.env.NODE_ENV!=="production"){var Yh=Pa(),Vh=!0;bi.exports=Fh()(Yh.isElement,Vh)}else bi.exports=Uh()();var bn=bi.exports;const xe=Lo(bn);var Di={exports:{}},Bh=function(){for(var t=arguments.length,n=[],r=0;r<t;r++)n[r]=arguments[r];if(n=n.filter(function(i){return i!=null}),n.length!==0)return n.length===1?n[0]:n.reduce(function(i,o){return function(){i.apply(this,arguments),o.apply(this,arguments)}})},Wa=function(){};process.env.NODE_ENV!=="production"&&(Wa=function(e,t,n){var r=arguments.length;n=new Array(r>2?r-2:0);for(var i=2;i<r;i++)n[i-2]=arguments[i];if(t===void 0)throw new Error("`warning(condition, format, ...args)` requires a warning message argument");if(t.length<10||/^[s\W]*$/.test(t))throw new Error("The warning format should be able to uniquely identify this warning. Please, use a more descriptive format than: "+t);if(!e){var o=0,a="Warning: "+t.replace(/%s/g,function(){return n[o++]});typeof console<"u"&&console.error(a);try{throw new Error(a)}catch{}}});var qh=Wa;function Ga(){var e=this.constructor.getDerivedStateFromProps(this.props,this.state);e!=null&&this.setState(e)}function Ka(e){function t(n){var r=this.constructor.getDerivedStateFromProps(e,n);return r??null}this.setState(t.bind(this))}function Ha(e,t){try{var n=this.props,r=this.state;this.props=e,this.state=t,this.__reactInternalSnapshotFlag=!0,this.__reactInternalSnapshot=this.getSnapshotBeforeUpdate(n,r)}finally{this.props=n,this.state=r}}Ga.__suppressDeprecationWarning=!0,Ka.__suppressDeprecationWarning=!0,Ha.__suppressDeprecationWarning=!0;function Qh(e){var t=e.prototype;if(!t||!t.isReactComponent)throw new Error("Can only polyfill class components");if(typeof e.getDerivedStateFromProps!="function"&&typeof t.getSnapshotBeforeUpdate!="function")return e;var n=null,r=null,i=null;if(typeof t.componentWillMount=="function"?n="componentWillMount":typeof t.UNSAFE_componentWillMount=="function"&&(n="UNSAFE_componentWillMount"),typeof t.componentWillReceiveProps=="function"?r="componentWillReceiveProps":typeof t.UNSAFE_componentWillReceiveProps=="function"&&(r="UNSAFE_componentWillReceiveProps"),typeof t.componentWillUpdate=="function"?i="componentWillUpdate":typeof t.UNSAFE_componentWillUpdate=="function"&&(i="UNSAFE_componentWillUpdate"),n!==null||r!==null||i!==null){var o=e.displayName||e.name,a=typeof e.getDerivedStateFromProps=="function"?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";throw Error(`Unsafe legacy lifecycles will not be called for components using new component APIs.
|
|
47
47
|
|
|
48
48
|
`+o+" uses "+a+" but also contains the following legacy lifecycles:"+(n!==null?`
|
|
49
49
|
`+n:"")+(r!==null?`
|
|
@@ -51,7 +51,7 @@ Valid keys: `+JSON.stringify(Object.keys(T),null," "));var Y=Ce(W,te,q,J,Q+"."+
|
|
|
51
51
|
`+i:"")+`
|
|
52
52
|
|
|
53
53
|
The above lifecycles should be removed. Learn more about this warning here:
|
|
54
|
-
https://fb.me/react-async-component-lifecycle-hooks`)}if(typeof e.getDerivedStateFromProps=="function"&&(t.componentWillMount=Ha,t.componentWillReceiveProps=Xa),typeof t.getSnapshotBeforeUpdate=="function"){if(typeof t.componentDidUpdate!="function")throw new Error("Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype");t.componentWillUpdate=Ja;var s=t.componentDidUpdate;t.componentDidUpdate=function(u,c,d){var f=this.__reactInternalSnapshotFlag?this.__reactInternalSnapshot:d;s.call(this,u,c,f)}}return e}const Gh=ri(Object.freeze(Object.defineProperty({__proto__:null,polyfill:Wh},Symbol.toStringTag,{value:"Module"})));var hr={};hr.__esModule=!0,hr.getChildMapping=Hh,hr.mergeChildMappings=Xh;var Kh=U;function Hh(e){if(!e)return e;var t={};return Kh.Children.map(e,function(n){return n}).forEach(function(n){t[n.key]=n}),t}function Xh(e,t){e=e||{},t=t||{};function n(c){return t.hasOwnProperty(c)?t[c]:e[c]}var r={},i=[];for(var o in e)t.hasOwnProperty(o)?i.length&&(r[o]=i,i=[]):i.push(o);var a=void 0,s={};for(var l in t){if(r.hasOwnProperty(l))for(a=0;a<r[l].length;a++){var u=r[l][a];s[r[l][a]]=n(u)}s[l]=n(l)}for(a=0;a<i.length;a++)s[i[a]]=n(i[a]);return s}(function(e,t){t.__esModule=!0;var n=Object.assign||function(x){for(var g=1;g<arguments.length;g++){var j=arguments[g];for(var C in j)Object.prototype.hasOwnProperty.call(j,C)&&(x[C]=j[C])}return x},r=Bh,i=h(r),o=U,a=h(o),s=le,l=h(s),u=Qh,c=h(u),d=Gh,f=hr;function h(x){return x&&x.__esModule?x:{default:x}}function y(x,g){if(!(x instanceof g))throw new TypeError("Cannot call a class as a function")}function m(x,g){if(!x)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:x}function v(x,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);x.prototype=Object.create(g&&g.prototype,{constructor:{value:x,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(x,g):x.__proto__=g)}var M={component:l.default.any,childFactory:l.default.func,children:l.default.node},D={component:"span",childFactory:function(g){return g}},O=function(x){v(g,x);function g(j,C){y(this,g);var I=m(this,x.call(this,j,C));return I.performAppear=function(k,E){I.currentlyTransitioningKeys[k]=!0,E.componentWillAppear?E.componentWillAppear(I._handleDoneAppearing.bind(I,k,E)):I._handleDoneAppearing(k,E)},I._handleDoneAppearing=function(k,E){E&&E.componentDidAppear&&E.componentDidAppear(),delete I.currentlyTransitioningKeys[k];var $=(0,f.getChildMapping)(I.props.children);(!$||!$.hasOwnProperty(k))&&I.performLeave(k,E)},I.performEnter=function(k,E){I.currentlyTransitioningKeys[k]=!0,E.componentWillEnter?E.componentWillEnter(I._handleDoneEntering.bind(I,k,E)):I._handleDoneEntering(k,E)},I._handleDoneEntering=function(k,E){E&&E.componentDidEnter&&E.componentDidEnter(),delete I.currentlyTransitioningKeys[k];var $=(0,f.getChildMapping)(I.props.children);(!$||!$.hasOwnProperty(k))&&I.performLeave(k,E)},I.performLeave=function(k,E){I.currentlyTransitioningKeys[k]=!0,E&&E.componentWillLeave?E.componentWillLeave(I._handleDoneLeaving.bind(I,k,E)):I._handleDoneLeaving(k,E)},I._handleDoneLeaving=function(k,E){E&&E.componentDidLeave&&E.componentDidLeave(),delete I.currentlyTransitioningKeys[k];var $=(0,f.getChildMapping)(I.props.children);$&&$.hasOwnProperty(k)?I.keysToEnter.push(k):I.setState(function(X){var H=n({},X.children);return delete H[k],{children:H}})},I.childRefs=Object.create(null),I.currentlyTransitioningKeys={},I.keysToEnter=[],I.keysToLeave=[],I.state={children:(0,f.getChildMapping)(j.children)},I}return g.prototype.componentDidMount=function(){var C=this.state.children;for(var I in C)C[I]&&this.performAppear(I,this.childRefs[I])},g.getDerivedStateFromProps=function(C,I){var k=(0,f.getChildMapping)(C.children),E=I.children;return{children:(0,f.mergeChildMappings)(E,k)}},g.prototype.componentDidUpdate=function(C,I){var k=this,E=(0,f.getChildMapping)(this.props.children),$=I.children;for(var X in E){var H=$&&$.hasOwnProperty(X);E[X]&&!H&&!this.currentlyTransitioningKeys[X]&&this.keysToEnter.push(X)}for(var b in $){var z=E&&E.hasOwnProperty(b);$[b]&&!z&&!this.currentlyTransitioningKeys[b]&&this.keysToLeave.push(b)}var w=this.keysToEnter;this.keysToEnter=[],w.forEach(function(P){return k.performEnter(P,k.childRefs[P])});var R=this.keysToLeave;this.keysToLeave=[],R.forEach(function(P){return k.performLeave(P,k.childRefs[P])})},g.prototype.render=function(){var C=this,I=[],k=function(H){var b=C.state.children[H];if(b){var z=typeof b.ref!="string",w=C.props.childFactory(b),R=function(B){C.childRefs[H]=B};process.env.NODE_ENV!=="production"&&(0,c.default)(z,"string refs are not supported on children of TransitionGroup and will be ignored. Please use a callback ref instead: https://facebook.github.io/react/docs/refs-and-the-dom.html#the-ref-callback-attribute"),w===b&&z&&(R=(0,i.default)(b.ref,R)),I.push(a.default.cloneElement(w,{key:H,ref:R}))}};for(var E in this.state.children)k(E);var $=n({},this.props);return delete $.transitionLeave,delete $.transitionName,delete $.transitionAppear,delete $.transitionEnter,delete $.childFactory,delete $.transitionLeaveTimeout,delete $.transitionEnterTimeout,delete $.transitionAppearTimeout,delete $.component,a.default.createElement(this.props.component,$,I)},g}(a.default.Component);O.displayName="TransitionGroup",O.propTypes=process.env.NODE_ENV!=="production"?M:{},O.defaultProps=D,t.default=(0,d.polyfill)(O),e.exports=t.default})(qh,xn);var pr={},Jh={get exports(){return pr},set exports(e){pr=e}},gr={},Zh={get exports(){return gr},set exports(e){gr=e}},we={},ep={get exports(){return we},set exports(e){we=e}};(function(e){function t(n){return n&&n.__esModule?n:{default:n}}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports})(ep);var Tn={},tp={get exports(){return Tn},set exports(e){Tn=e}},Za;function np(){return Za||(Za=1,function(e,t){t.__esModule=!0,t.default=n;function n(r,i){return r.classList?!!i&&r.classList.contains(i):(" "+(r.className.baseVal||r.className)+" ").indexOf(" "+i+" ")!==-1}e.exports=t.default}(tp,Tn)),Tn}(function(e,t){var n=we;t.__esModule=!0,t.default=i;var r=n(np());function i(o,a){o.classList?o.classList.add(a):(0,r.default)(o,a)||(typeof o.className=="string"?o.className=o.className+" "+a:o.setAttribute("class",(o.className&&o.className.baseVal||"")+" "+a))}e.exports=t.default})(Zh,gr);function es(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}var rp=function(t,n){t.classList?t.classList.remove(n):typeof t.className=="string"?t.className=es(t.className,n):t.setAttribute("class",es(t.className&&t.className.baseVal||"",n))},mr={},ip={get exports(){return mr},set exports(e){mr=e}},wn={},op={get exports(){return wn},set exports(e){wn=e}},ts;function ns(){return ts||(ts=1,function(e,t){t.__esModule=!0,t.default=void 0;var n=!!(typeof window<"u"&&window.document&&window.document.createElement);t.default=n,e.exports=t.default}(op,wn)),wn}(function(e,t){var n=we;t.__esModule=!0,t.default=void 0;var r=n(ns()),i=["","webkit","moz","o","ms"],o="clearTimeout",a=c,s,l=function(h,y){return h+(h?y[0].toUpperCase()+y.substr(1):y)+"AnimationFrame"};r.default&&i.some(function(f){var h=l(f,"request");if(h in window)return o=l(f,"cancel"),a=function(m){return window[h](m)}});var u=new Date().getTime();function c(f){var h=new Date().getTime(),y=Math.max(0,16-(h-u)),m=setTimeout(f,y);return u=h,m}s=function(h){return a(h)},s.cancel=function(f){window[o]&&typeof window[o]=="function"&&window[o](f)};var d=s;t.default=d,e.exports=t.default})(ip,mr);var ae={},ap=we;ae.__esModule=!0,ae.default=ae.animationEnd=ae.animationDelay=ae.animationTiming=ae.animationDuration=ae.animationName=ae.transitionEnd=ae.transitionDuration=ae.transitionDelay=ae.transitionTiming=ae.transitionProperty=ae.transform=void 0;var sp=ap(ns()),yr="transform";ae.transform=yr;var ct,Ri,rs;ae.animationEnd=rs,ae.transitionEnd=Ri;var $i,Li,Pi,Fi;ae.transitionDelay=Fi,ae.transitionTiming=Pi,ae.transitionDuration=Li,ae.transitionProperty=$i;var is,os,as,ss;if(ae.animationDelay=ss,ae.animationTiming=as,ae.animationDuration=os,ae.animationName=is,sp.default){var Ui=lp();ct=Ui.prefix,ae.transitionEnd=Ri=Ui.transitionEnd,ae.animationEnd=rs=Ui.animationEnd,ae.transform=yr=ct+"-"+yr,ae.transitionProperty=$i=ct+"-transition-property",ae.transitionDuration=Li=ct+"-transition-duration",ae.transitionDelay=Fi=ct+"-transition-delay",ae.transitionTiming=Pi=ct+"-transition-timing-function",ae.animationName=is=ct+"-animation-name",ae.animationDuration=os=ct+"-animation-duration",ae.animationTiming=as=ct+"-animation-delay",ae.animationDelay=ss=ct+"-animation-timing-function"}var up={transform:yr,end:Ri,property:$i,timing:Pi,delay:Fi,duration:Li};ae.default=up;function lp(){for(var e=document.createElement("div").style,t={O:function(u){return"o"+u.toLowerCase()},Moz:function(u){return u.toLowerCase()},Webkit:function(u){return"webkit"+u},ms:function(u){return"MS"+u}},n=Object.keys(t),r,i,o="",a=0;a<n.length;a++){var s=n[a];if(s+"TransitionProperty"in e){o="-"+s.toLowerCase(),r=t[s]("TransitionEnd"),i=t[s]("AnimationEnd");break}}return!r&&"transitionProperty"in e&&(r="transitionend"),!i&&"animationName"in e&&(i="animationend"),e=null,{animationEnd:i,transitionEnd:r,prefix:o}}var Ut={};Ut.__esModule=!0,Ut.nameShape=void 0,Ut.transitionTimeout=dp;var cp=U;us(cp);var fp=le,Xe=us(fp);function us(e){return e&&e.__esModule?e:{default:e}}function dp(e){var t="transition"+e+"Timeout",n="transition"+e;return function(r){if(r[n]){if(r[t]==null)return new Error(t+" wasn't supplied to CSSTransitionGroup: this can cause unreliable animations and won't be supported in a future version of React. See https://fb.me/react-animation-transition-group-timeout for more information.");if(typeof r[t]!="number")return new Error(t+" must be a number (in milliseconds)")}return null}}Ut.nameShape=Xe.default.oneOfType([Xe.default.string,Xe.default.shape({enter:Xe.default.string,leave:Xe.default.string,active:Xe.default.string}),Xe.default.shape({enter:Xe.default.string,enterActive:Xe.default.string,leave:Xe.default.string,leaveActive:Xe.default.string,appear:Xe.default.string,appearActive:Xe.default.string})]),function(e,t){t.__esModule=!0;var n=Object.assign||function(I){for(var k=1;k<arguments.length;k++){var E=arguments[k];for(var $ in E)Object.prototype.hasOwnProperty.call(E,$)&&(I[$]=E[$])}return I},r=gr,i=v(r),o=rp,a=v(o),s=mr,l=v(s),u=ae,c=U,d=v(c),f=le,h=v(f),y=ul,m=Ut;function v(I){return I&&I.__esModule?I:{default:I}}function M(I,k){if(!(I instanceof k))throw new TypeError("Cannot call a class as a function")}function D(I,k){if(!I)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return k&&(typeof k=="object"||typeof k=="function")?k:I}function O(I,k){if(typeof k!="function"&&k!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof k);I.prototype=Object.create(k&&k.prototype,{constructor:{value:I,enumerable:!1,writable:!0,configurable:!0}}),k&&(Object.setPrototypeOf?Object.setPrototypeOf(I,k):I.__proto__=k)}var x=[];u.transitionEnd&&x.push(u.transitionEnd),u.animationEnd&&x.push(u.animationEnd);function g(I,k){return x.length?x.forEach(function(E){return I.addEventListener(E,k,!1)}):setTimeout(k,0),function(){x.length&&x.forEach(function(E){return I.removeEventListener(E,k,!1)})}}var j={children:h.default.node,name:m.nameShape.isRequired,appear:h.default.bool,enter:h.default.bool,leave:h.default.bool,appearTimeout:h.default.number,enterTimeout:h.default.number,leaveTimeout:h.default.number},C=function(I){O(k,I);function k(E,$){M(this,k);var X=D(this,I.call(this,E,$));return X.componentWillAppear=function(H){X.props.appear?X.transition("appear",H,X.props.appearTimeout):H()},X.componentWillEnter=function(H){X.props.enter?X.transition("enter",H,X.props.enterTimeout):H()},X.componentWillLeave=function(H){X.props.leave?X.transition("leave",H,X.props.leaveTimeout):H()},X.classNameAndNodeQueue=[],X.transitionTimeouts=[],X}return k.prototype.componentWillUnmount=function(){this.unmounted=!0,this.timeout&&clearTimeout(this.timeout),this.transitionTimeouts.forEach(function($){clearTimeout($)}),this.classNameAndNodeQueue.length=0},k.prototype.transition=function($,X,H){var b=(0,y.findDOMNode)(this);if(!b){X&&X();return}var z=this.props.name[$]||this.props.name+"-"+$,w=this.props.name[$+"Active"]||z+"-active",R=null,P=void 0;(0,i.default)(b,z),this.queueClassAndNode(w,b);var B=function(A){A&&A.target!==b||(clearTimeout(R),P&&P(),(0,a.default)(b,z),(0,a.default)(b,w),P&&P(),X&&X())};H?(R=setTimeout(B,H),this.transitionTimeouts.push(R)):u.transitionEnd&&(P=g(b,B))},k.prototype.queueClassAndNode=function($,X){var H=this;this.classNameAndNodeQueue.push({className:$,node:X}),this.rafHandle||(this.rafHandle=(0,l.default)(function(){return H.flushClassNameAndNodeQueue()}))},k.prototype.flushClassNameAndNodeQueue=function(){this.unmounted||this.classNameAndNodeQueue.forEach(function($){$.node.scrollTop,(0,i.default)($.node,$.className)}),this.classNameAndNodeQueue.length=0,this.rafHandle=null},k.prototype.render=function(){var $=n({},this.props);return delete $.name,delete $.appear,delete $.enter,delete $.leave,delete $.appearTimeout,delete $.enterTimeout,delete $.leaveTimeout,delete $.children,d.default.cloneElement(d.default.Children.only(this.props.children),$)},k}(d.default.Component);C.displayName="CSSTransitionGroupChild",C.propTypes=process.env.NODE_ENV!=="production"?j:{},t.default=C,e.exports=t.default}(Jh,pr),function(e,t){t.__esModule=!0;var n=Object.assign||function(O){for(var x=1;x<arguments.length;x++){var g=arguments[x];for(var j in g)Object.prototype.hasOwnProperty.call(g,j)&&(O[j]=g[j])}return O},r=U,i=f(r),o=le,a=f(o),s=xn,l=f(s),u=pr,c=f(u),d=Ut;function f(O){return O&&O.__esModule?O:{default:O}}function h(O,x){if(!(O instanceof x))throw new TypeError("Cannot call a class as a function")}function y(O,x){if(!O)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return x&&(typeof x=="object"||typeof x=="function")?x:O}function m(O,x){if(typeof x!="function"&&x!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof x);O.prototype=Object.create(x&&x.prototype,{constructor:{value:O,enumerable:!1,writable:!0,configurable:!0}}),x&&(Object.setPrototypeOf?Object.setPrototypeOf(O,x):O.__proto__=x)}var v={transitionName:d.nameShape.isRequired,transitionAppear:a.default.bool,transitionEnter:a.default.bool,transitionLeave:a.default.bool,transitionAppearTimeout:(0,d.transitionTimeout)("Appear"),transitionEnterTimeout:(0,d.transitionTimeout)("Enter"),transitionLeaveTimeout:(0,d.transitionTimeout)("Leave")},M={transitionAppear:!1,transitionEnter:!0,transitionLeave:!0},D=function(O){m(x,O);function x(){var g,j,C;h(this,x);for(var I=arguments.length,k=Array(I),E=0;E<I;E++)k[E]=arguments[E];return C=(g=(j=y(this,O.call.apply(O,[this].concat(k))),j),j._wrapChild=function($){return i.default.createElement(c.default,{name:j.props.transitionName,appear:j.props.transitionAppear,enter:j.props.transitionEnter,leave:j.props.transitionLeave,appearTimeout:j.props.transitionAppearTimeout,enterTimeout:j.props.transitionEnterTimeout,leaveTimeout:j.props.transitionLeaveTimeout},$)},g),y(j,C)}return x.prototype.render=function(){return i.default.createElement(l.default,n({},this.props,{childFactory:this._wrapChild}))},x}(i.default.Component);D.displayName="CSSTransitionGroup",D.propTypes=process.env.NODE_ENV!=="production"?v:{},D.defaultProps=M,t.default=D,e.exports=t.default}(jh,fr);var hp=fr,pp=ls(hp),gp=xn,mp=ls(gp);function ls(e){return e&&e.__esModule?e:{default:e}}var yp={TransitionGroup:mp.default,CSSTransitionGroup:pp.default};const vp=e=>e.enableLegacyTransitions?U.createElement(yp.TransitionGroup,{component:e.component,className:e.className,transform:e.transform},e.children):U.createElement("g",{className:e.className,transform:e.transform},e.children),bp=15,cs={title:{textAnchor:"start",x:40},attribute:{x:40,dy:"1.2em"}},Mp=({nodeDatum:e,toggleNode:t,onNodeClick:n,onNodeMouseOver:r,onNodeMouseOut:i})=>U.createElement(U.Fragment,null,U.createElement("circle",{r:bp,onClick:o=>{t(),n(o)},onMouseOver:r,onMouseOut:i}),U.createElement("g",{className:"rd3t-label"},U.createElement("text",Object.assign({className:"rd3t-label__title"},cs.title),e.name),U.createElement("text",{className:"rd3t-label__attributes"},e.attributes&&Object.entries(e.attributes).map(([o,a],s)=>U.createElement("tspan",Object.assign({key:`${o}-${s}`},cs.attribute),o,": ",typeof a=="boolean"?a.toString():a)))));class _p extends U.Component{constructor(){super(...arguments),this.nodeRef=null,this.state={transform:this.setTransform(this.props.position,this.props.parent,this.props.orientation,!0),initialStyle:{opacity:0},wasClicked:!1},this.shouldNodeTransform=(t,n)=>n.subscriptions!==t.subscriptions||n.position.x!==t.position.x||n.position.y!==t.position.y||n.orientation!==t.orientation,this.renderNodeElement=()=>{const{data:t,hierarchyPointNode:n,renderCustomNodeElement:r}=this.props,i=typeof r=="function"?r:Mp,o={hierarchyPointNode:n,nodeDatum:t,toggleNode:this.handleNodeToggle,onNodeClick:this.handleOnClick,onNodeMouseOver:this.handleOnMouseOver,onNodeMouseOut:this.handleOnMouseOut};return i(o)},this.handleNodeToggle=()=>{this.setState({wasClicked:!0}),this.props.onNodeToggle(this.props.data.__rd3t.id)},this.handleOnClick=t=>{this.setState({wasClicked:!0}),this.props.onNodeClick(this.props.hierarchyPointNode,t)},this.handleOnMouseOver=t=>{this.props.onNodeMouseOver(this.props.hierarchyPointNode,t)},this.handleOnMouseOut=t=>{this.props.onNodeMouseOut(this.props.hierarchyPointNode,t)}}componentDidMount(){this.commitTransform()}componentDidUpdate(){this.state.wasClicked&&(this.props.centerNode(this.props.hierarchyPointNode),this.setState({wasClicked:!1})),this.commitTransform()}shouldComponentUpdate(t){return this.shouldNodeTransform(this.props,t)}setTransform(t,n,r,i=!1){if(i){const o=n!=null,a=o?n.x:0,s=o?n.y:0;return r==="horizontal"?`translate(${s},${a})`:`translate(${a},${s})`}return r==="horizontal"?`translate(${t.y},${t.x})`:`translate(${t.x},${t.y})`}applyTransform(t,n,r=1,i=()=>{}){this.props.enableLegacyTransitions?qe(this.nodeRef).transition().duration(n).attr("transform",t).style("opacity",r).on("end",i):(qe(this.nodeRef).attr("transform",t).style("opacity",r),i())}commitTransform(){const{orientation:t,transitionDuration:n,position:r,parent:i}=this.props,o=this.setTransform(r,i,t);this.applyTransform(o,n)}componentWillLeave(t){const{orientation:n,transitionDuration:r,position:i,parent:o}=this.props,a=this.setTransform(i,o,n,!0);this.applyTransform(a,r,0,t)}render(){const{data:t,nodeClassName:n}=this.props;return U.createElement("g",{id:t.__rd3t.id,ref:r=>{this.nodeRef=r},style:this.state.initialStyle,className:[t.children&&t.children.length>0?"rd3t-node":"rd3t-leaf-node",n].join(" ").trim(),transform:this.state.transform},this.renderNodeElement())}}var Yi=Math.PI,Vi=2*Yi,It=1e-6,xp=Vi-It;function qi(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function fs(){return new qi}qi.prototype=fs.prototype={constructor:qi,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,n,r){this._+="Q"+ +e+","+ +t+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(e,t,n,r,i,o){this._+="C"+ +e+","+ +t+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(e,t,n,r,i){e=+e,t=+t,n=+n,r=+r,i=+i;var o=this._x1,a=this._y1,s=n-e,l=r-t,u=o-e,c=a-t,d=u*u+c*c;if(i<0)throw new Error("negative radius: "+i);if(this._x1===null)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(d>It)if(!(Math.abs(c*s-l*u)>It)||!i)this._+="L"+(this._x1=e)+","+(this._y1=t);else{var f=n-o,h=r-a,y=s*s+l*l,m=f*f+h*h,v=Math.sqrt(y),M=Math.sqrt(d),D=i*Math.tan((Yi-Math.acos((y+d-m)/(2*v*M)))/2),O=D/M,x=D/v;Math.abs(O-1)>It&&(this._+="L"+(e+O*u)+","+(t+O*c)),this._+="A"+i+","+i+",0,0,"+ +(c*f>u*h)+","+(this._x1=e+x*s)+","+(this._y1=t+x*l)}},arc:function(e,t,n,r,i,o){e=+e,t=+t,n=+n,o=!!o;var a=n*Math.cos(r),s=n*Math.sin(r),l=e+a,u=t+s,c=1^o,d=o?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);this._x1===null?this._+="M"+l+","+u:(Math.abs(this._x1-l)>It||Math.abs(this._y1-u)>It)&&(this._+="L"+l+","+u),n&&(d<0&&(d=d%Vi+Vi),d>xp?this._+="A"+n+","+n+",0,1,"+c+","+(e-a)+","+(t-s)+"A"+n+","+n+",0,1,"+c+","+(this._x1=l)+","+(this._y1=u):d>It&&(this._+="A"+n+","+n+",0,"+ +(d>=Yi)+","+c+","+(this._x1=e+n*Math.cos(i))+","+(this._y1=t+n*Math.sin(i))))},rect:function(e,t,n,r){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};function ds(e){return function(){return e}}function Tp(e){return e[0]}function wp(e){return e[1]}var Np=Array.prototype.slice;function Ep(e){return e.source}function Dp(e){return e.target}function hs(e){var t=Ep,n=Dp,r=Tp,i=wp,o=null;function a(){var s,l=Np.call(arguments),u=t.apply(this,l),c=n.apply(this,l);if(o||(o=s=fs()),e(o,+r.apply(this,(l[0]=u,l)),+i.apply(this,l),+r.apply(this,(l[0]=c,l)),+i.apply(this,l)),s)return o=null,s+""||null}return a.source=function(s){return arguments.length?(t=s,a):t},a.target=function(s){return arguments.length?(n=s,a):n},a.x=function(s){return arguments.length?(r=typeof s=="function"?s:ds(+s),a):r},a.y=function(s){return arguments.length?(i=typeof s=="function"?s:ds(+s),a):i},a.context=function(s){return arguments.length?(o=s??null,a):o},a}function Op(e,t,n,r,i){e.moveTo(t,n),e.bezierCurveTo(t=(t+r)/2,n,t,i,r,i)}function Cp(e,t,n,r,i){e.moveTo(t,n),e.bezierCurveTo(t,n=(n+i)/2,r,n,r,i)}function Sp(){return hs(Op)}function Ap(){return hs(Cp)}class Ip extends U.PureComponent{constructor(){super(...arguments),this.linkRef=null,this.state={initialStyle:{opacity:0}},this.handleOnClick=t=>{this.props.onClick(this.props.linkData.source,this.props.linkData.target,t)},this.handleOnMouseOver=t=>{this.props.onMouseOver(this.props.linkData.source,this.props.linkData.target,t)},this.handleOnMouseOut=t=>{this.props.onMouseOut(this.props.linkData.source,this.props.linkData.target,t)}}componentDidMount(){this.applyOpacity(1,this.props.transitionDuration)}componentWillLeave(t){this.applyOpacity(0,this.props.transitionDuration,t)}applyOpacity(t,n,r=()=>{}){this.props.enableLegacyTransitions?qe(this.linkRef).transition().duration(n).style("opacity",t).on("end",r):(qe(this.linkRef).style("opacity",t),r())}drawStepPath(t,n){const{source:r,target:i}=t,o=i.y-r.y;return n==="horizontal"?`M${r.y},${r.x} H${r.y+o/2} V${i.x} H${i.y}`:`M${r.x},${r.y} V${r.y+o/2} H${i.x} V${i.y}`}drawDiagonalPath(t,n){const{source:r,target:i}=t;return n==="horizontal"?Sp()({source:[r.y,r.x],target:[i.y,i.x]}):Ap()({source:[r.x,r.y],target:[i.x,i.y]})}drawStraightPath(t,n){const{source:r,target:i}=t;return n==="horizontal"?`M${r.y},${r.x}L${i.y},${i.x}`:`M${r.x},${r.y}L${i.x},${i.y}`}drawElbowPath(t,n){return n==="horizontal"?`M${t.source.y},${t.source.x}V${t.target.x}H${t.target.y}`:`M${t.source.x},${t.source.y}V${t.target.y}H${t.target.x}`}drawPath(){const{linkData:t,orientation:n,pathFunc:r}=this.props;return typeof r=="function"?r(t,n):r==="elbow"?this.drawElbowPath(t,n):r==="straight"?this.drawStraightPath(t,n):r==="step"?this.drawStepPath(t,n):this.drawDiagonalPath(t,n)}getClassNames(){const{linkData:t,orientation:n,pathClassFunc:r}=this.props,i=["rd3t-link"];return typeof r=="function"&&i.push(r(t,n)),i.join(" ").trim()}render(){const{linkData:t}=this.props;return U.createElement("path",{ref:n=>{this.linkRef=n},style:Object.assign({},this.state.initialStyle),className:this.getClassNames(),d:this.drawPath(),onClick:this.handleOnClick,onMouseOver:this.handleOnMouseOver,onMouseOut:this.handleOnMouseOut,"data-source-id":t.source.id,"data-target-id":t.target.id})}}const kp=`
|
|
54
|
+
https://fb.me/react-async-component-lifecycle-hooks`)}if(typeof e.getDerivedStateFromProps=="function"&&(t.componentWillMount=Ga,t.componentWillReceiveProps=Ka),typeof t.getSnapshotBeforeUpdate=="function"){if(typeof t.componentDidUpdate!="function")throw new Error("Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype");t.componentWillUpdate=Ha;var s=t.componentDidUpdate;t.componentDidUpdate=function(u,c,d){var f=this.__reactInternalSnapshotFlag?this.__reactInternalSnapshot:d;s.call(this,u,c,f)}}return e}const Wh=Po(Object.freeze(Object.defineProperty({__proto__:null,polyfill:Qh},Symbol.toStringTag,{value:"Module"})));var or={};or.__esModule=!0,or.getChildMapping=Kh,or.mergeChildMappings=Hh;var Gh=U;function Kh(e){if(!e)return e;var t={};return Gh.Children.map(e,function(n){return n}).forEach(function(n){t[n.key]=n}),t}function Hh(e,t){e=e||{},t=t||{};function n(c){return t.hasOwnProperty(c)?t[c]:e[c]}var r={},i=[];for(var o in e)t.hasOwnProperty(o)?i.length&&(r[o]=i,i=[]):i.push(o);var a=void 0,s={};for(var l in t){if(r.hasOwnProperty(l))for(a=0;a<r[l].length;a++){var u=r[l][a];s[r[l][a]]=n(u)}s[l]=n(l)}for(a=0;a<i.length;a++)s[i[a]]=n(i[a]);return s}(function(e,t){t.__esModule=!0;var n=Object.assign||function(_){for(var m=1;m<arguments.length;m++){var k=arguments[m];for(var C in k)Object.prototype.hasOwnProperty.call(k,C)&&(_[C]=k[C])}return _},r=Bh,i=h(r),o=U,a=h(o),s=bn,l=h(s),u=qh,c=h(u),d=Wh,f=or;function h(_){return _&&_.__esModule?_:{default:_}}function b(_,m){if(!(_ instanceof m))throw new TypeError("Cannot call a class as a function")}function y(_,m){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:_}function v(_,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);_.prototype=Object.create(m&&m.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(_,m):_.__proto__=m)}var M={component:l.default.any,childFactory:l.default.func,children:l.default.node},D={component:"span",childFactory:function(m){return m}},O=function(_){v(m,_);function m(k,C){b(this,m);var S=y(this,_.call(this,k,C));return S.performAppear=function(I,E){S.currentlyTransitioningKeys[I]=!0,E.componentWillAppear?E.componentWillAppear(S._handleDoneAppearing.bind(S,I,E)):S._handleDoneAppearing(I,E)},S._handleDoneAppearing=function(I,E){E&&E.componentDidAppear&&E.componentDidAppear(),delete S.currentlyTransitioningKeys[I];var $=(0,f.getChildMapping)(S.props.children);(!$||!$.hasOwnProperty(I))&&S.performLeave(I,E)},S.performEnter=function(I,E){S.currentlyTransitioningKeys[I]=!0,E.componentWillEnter?E.componentWillEnter(S._handleDoneEntering.bind(S,I,E)):S._handleDoneEntering(I,E)},S._handleDoneEntering=function(I,E){E&&E.componentDidEnter&&E.componentDidEnter(),delete S.currentlyTransitioningKeys[I];var $=(0,f.getChildMapping)(S.props.children);(!$||!$.hasOwnProperty(I))&&S.performLeave(I,E)},S.performLeave=function(I,E){S.currentlyTransitioningKeys[I]=!0,E&&E.componentWillLeave?E.componentWillLeave(S._handleDoneLeaving.bind(S,I,E)):S._handleDoneLeaving(I,E)},S._handleDoneLeaving=function(I,E){E&&E.componentDidLeave&&E.componentDidLeave(),delete S.currentlyTransitioningKeys[I];var $=(0,f.getChildMapping)(S.props.children);$&&$.hasOwnProperty(I)?S.keysToEnter.push(I):S.setState(function(X){var H=n({},X.children);return delete H[I],{children:H}})},S.childRefs=Object.create(null),S.currentlyTransitioningKeys={},S.keysToEnter=[],S.keysToLeave=[],S.state={children:(0,f.getChildMapping)(k.children)},S}return m.prototype.componentDidMount=function(){var C=this.state.children;for(var S in C)C[S]&&this.performAppear(S,this.childRefs[S])},m.getDerivedStateFromProps=function(C,S){var I=(0,f.getChildMapping)(C.children),E=S.children;return{children:(0,f.mergeChildMappings)(E,I)}},m.prototype.componentDidUpdate=function(C,S){var I=this,E=(0,f.getChildMapping)(this.props.children),$=S.children;for(var X in E){var H=$&&$.hasOwnProperty(X);E[X]&&!H&&!this.currentlyTransitioningKeys[X]&&this.keysToEnter.push(X)}for(var x in $){var z=E&&E.hasOwnProperty(x);$[x]&&!z&&!this.currentlyTransitioningKeys[x]&&this.keysToLeave.push(x)}var N=this.keysToEnter;this.keysToEnter=[],N.forEach(function(P){return I.performEnter(P,I.childRefs[P])});var R=this.keysToLeave;this.keysToLeave=[],R.forEach(function(P){return I.performLeave(P,I.childRefs[P])})},m.prototype.render=function(){var C=this,S=[],I=function(H){var x=C.state.children[H];if(x){var z=typeof x.ref!="string",N=C.props.childFactory(x),R=function(q){C.childRefs[H]=q};process.env.NODE_ENV!=="production"&&(0,c.default)(z,"string refs are not supported on children of TransitionGroup and will be ignored. Please use a callback ref instead: https://facebook.github.io/react/docs/refs-and-the-dom.html#the-ref-callback-attribute"),N===x&&z&&(R=(0,i.default)(x.ref,R)),S.push(a.default.cloneElement(N,{key:H,ref:R}))}};for(var E in this.state.children)I(E);var $=n({},this.props);return delete $.transitionLeave,delete $.transitionName,delete $.transitionAppear,delete $.transitionEnter,delete $.childFactory,delete $.transitionLeaveTimeout,delete $.transitionEnterTimeout,delete $.transitionAppearTimeout,delete $.component,a.default.createElement(this.props.component,$,S)},m}(a.default.Component);O.displayName="TransitionGroup",O.propTypes=process.env.NODE_ENV!=="production"?M:{},O.defaultProps=D,t.default=(0,d.polyfill)(O),e.exports=t.default})(Di,Di.exports);var Xa=Di.exports,Oi={exports:{}},Ci={exports:{}},Ja={exports:{}};(function(e){function t(n){return n&&n.__esModule?n:{default:n}}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports})(Ja);var De=Ja.exports,ar={exports:{}},Za;function Xh(){return Za||(Za=1,function(e,t){t.__esModule=!0,t.default=n;function n(r,i){return r.classList?!!i&&r.classList.contains(i):(" "+(r.className.baseVal||r.className)+" ").indexOf(" "+i+" ")!==-1}e.exports=t.default}(ar,ar.exports)),ar.exports}(function(e,t){var n=De;t.__esModule=!0,t.default=i;var r=n(Xh());function i(o,a){o.classList?o.classList.add(a):(0,r.default)(o,a)||(typeof o.className=="string"?o.className=o.className+" "+a:o.setAttribute("class",(o.className&&o.className.baseVal||"")+" "+a))}e.exports=t.default})(Ci,Ci.exports);var Jh=Ci.exports;function es(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}var Zh=function(t,n){t.classList?t.classList.remove(n):typeof t.className=="string"?t.className=es(t.className,n):t.setAttribute("class",es(t.className&&t.className.baseVal||"",n))},ji={exports:{}},sr={exports:{}},ts;function ns(){return ts||(ts=1,function(e,t){t.__esModule=!0,t.default=void 0;var n=!!(typeof window<"u"&&window.document&&window.document.createElement);t.default=n,e.exports=t.default}(sr,sr.exports)),sr.exports}(function(e,t){var n=De;t.__esModule=!0,t.default=void 0;var r=n(ns()),i=["","webkit","moz","o","ms"],o="clearTimeout",a=c,s,l=function(h,b){return h+(h?b[0].toUpperCase()+b.substr(1):b)+"AnimationFrame"};r.default&&i.some(function(f){var h=l(f,"request");if(h in window)return o=l(f,"cancel"),a=function(y){return window[h](y)}});var u=new Date().getTime();function c(f){var h=new Date().getTime(),b=Math.max(0,16-(h-u)),y=setTimeout(f,b);return u=h,y}s=function(h){return a(h)},s.cancel=function(f){window[o]&&typeof window[o]=="function"&&window[o](f)};var d=s;t.default=d,e.exports=t.default})(ji,ji.exports);var ep=ji.exports,oe={},tp=De;oe.__esModule=!0,oe.default=oe.animationEnd=oe.animationDelay=oe.animationTiming=oe.animationDuration=oe.animationName=oe.transitionEnd=oe.transitionDuration=oe.transitionDelay=oe.transitionTiming=oe.transitionProperty=oe.transform=void 0;var np=tp(ns()),ur="transform";oe.transform=ur;var ut,Ai,rs;oe.animationEnd=rs,oe.transitionEnd=Ai;var Si,Ii,ki,zi;oe.transitionDelay=zi,oe.transitionTiming=ki,oe.transitionDuration=Ii,oe.transitionProperty=Si;var is,os,as,ss;if(oe.animationDelay=ss,oe.animationTiming=as,oe.animationDuration=os,oe.animationName=is,np.default){var Ri=ip();ut=Ri.prefix,oe.transitionEnd=Ai=Ri.transitionEnd,oe.animationEnd=rs=Ri.animationEnd,oe.transform=ur=ut+"-"+ur,oe.transitionProperty=Si=ut+"-transition-property",oe.transitionDuration=Ii=ut+"-transition-duration",oe.transitionDelay=zi=ut+"-transition-delay",oe.transitionTiming=ki=ut+"-transition-timing-function",oe.animationName=is=ut+"-animation-name",oe.animationDuration=os=ut+"-animation-duration",oe.animationTiming=as=ut+"-animation-delay",oe.animationDelay=ss=ut+"-animation-timing-function"}var rp={transform:ur,end:Ai,property:Si,timing:ki,delay:zi,duration:Ii};oe.default=rp;function ip(){for(var e=document.createElement("div").style,t={O:function(u){return"o"+u.toLowerCase()},Moz:function(u){return u.toLowerCase()},Webkit:function(u){return"webkit"+u},ms:function(u){return"MS"+u}},n=Object.keys(t),r,i,o="",a=0;a<n.length;a++){var s=n[a];if(s+"TransitionProperty"in e){o="-"+s.toLowerCase(),r=t[s]("TransitionEnd"),i=t[s]("AnimationEnd");break}}return!r&&"transitionProperty"in e&&(r="transitionend"),!i&&"animationName"in e&&(i="animationend"),e=null,{animationEnd:i,transitionEnd:r,prefix:o}}var Lt={};Lt.__esModule=!0,Lt.nameShape=void 0,Lt.transitionTimeout=sp;var op=U;us(op);var ap=bn,Ge=us(ap);function us(e){return e&&e.__esModule?e:{default:e}}function sp(e){var t="transition"+e+"Timeout",n="transition"+e;return function(r){if(r[n]){if(r[t]==null)return new Error(t+" wasn't supplied to CSSTransitionGroup: this can cause unreliable animations and won't be supported in a future version of React. See https://fb.me/react-animation-transition-group-timeout for more information.");if(typeof r[t]!="number")return new Error(t+" must be a number (in milliseconds)")}return null}}Lt.nameShape=Ge.default.oneOfType([Ge.default.string,Ge.default.shape({enter:Ge.default.string,leave:Ge.default.string,active:Ge.default.string}),Ge.default.shape({enter:Ge.default.string,enterActive:Ge.default.string,leave:Ge.default.string,leaveActive:Ge.default.string,appear:Ge.default.string,appearActive:Ge.default.string})]),function(e,t){t.__esModule=!0;var n=Object.assign||function(S){for(var I=1;I<arguments.length;I++){var E=arguments[I];for(var $ in E)Object.prototype.hasOwnProperty.call(E,$)&&(S[$]=E[$])}return S},r=Jh,i=v(r),o=Zh,a=v(o),s=ep,l=v(s),u=oe,c=U,d=v(c),f=bn,h=v(f),b=hl,y=Lt;function v(S){return S&&S.__esModule?S:{default:S}}function M(S,I){if(!(S instanceof I))throw new TypeError("Cannot call a class as a function")}function D(S,I){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return I&&(typeof I=="object"||typeof I=="function")?I:S}function O(S,I){if(typeof I!="function"&&I!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof I);S.prototype=Object.create(I&&I.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),I&&(Object.setPrototypeOf?Object.setPrototypeOf(S,I):S.__proto__=I)}var _=[];u.transitionEnd&&_.push(u.transitionEnd),u.animationEnd&&_.push(u.animationEnd);function m(S,I){return _.length?_.forEach(function(E){return S.addEventListener(E,I,!1)}):setTimeout(I,0),function(){_.length&&_.forEach(function(E){return S.removeEventListener(E,I,!1)})}}var k={children:h.default.node,name:y.nameShape.isRequired,appear:h.default.bool,enter:h.default.bool,leave:h.default.bool,appearTimeout:h.default.number,enterTimeout:h.default.number,leaveTimeout:h.default.number},C=function(S){O(I,S);function I(E,$){M(this,I);var X=D(this,S.call(this,E,$));return X.componentWillAppear=function(H){X.props.appear?X.transition("appear",H,X.props.appearTimeout):H()},X.componentWillEnter=function(H){X.props.enter?X.transition("enter",H,X.props.enterTimeout):H()},X.componentWillLeave=function(H){X.props.leave?X.transition("leave",H,X.props.leaveTimeout):H()},X.classNameAndNodeQueue=[],X.transitionTimeouts=[],X}return I.prototype.componentWillUnmount=function(){this.unmounted=!0,this.timeout&&clearTimeout(this.timeout),this.transitionTimeouts.forEach(function($){clearTimeout($)}),this.classNameAndNodeQueue.length=0},I.prototype.transition=function($,X,H){var x=(0,b.findDOMNode)(this);if(!x){X&&X();return}var z=this.props.name[$]||this.props.name+"-"+$,N=this.props.name[$+"Active"]||z+"-active",R=null,P=void 0;(0,i.default)(x,z),this.queueClassAndNode(N,x);var q=function(A){A&&A.target!==x||(clearTimeout(R),P&&P(),(0,a.default)(x,z),(0,a.default)(x,N),P&&P(),X&&X())};H?(R=setTimeout(q,H),this.transitionTimeouts.push(R)):u.transitionEnd&&(P=m(x,q))},I.prototype.queueClassAndNode=function($,X){var H=this;this.classNameAndNodeQueue.push({className:$,node:X}),this.rafHandle||(this.rafHandle=(0,l.default)(function(){return H.flushClassNameAndNodeQueue()}))},I.prototype.flushClassNameAndNodeQueue=function(){this.unmounted||this.classNameAndNodeQueue.forEach(function($){$.node.scrollTop,(0,i.default)($.node,$.className)}),this.classNameAndNodeQueue.length=0,this.rafHandle=null},I.prototype.render=function(){var $=n({},this.props);return delete $.name,delete $.appear,delete $.enter,delete $.leave,delete $.appearTimeout,delete $.enterTimeout,delete $.leaveTimeout,delete $.children,d.default.cloneElement(d.default.Children.only(this.props.children),$)},I}(d.default.Component);C.displayName="CSSTransitionGroupChild",C.propTypes=process.env.NODE_ENV!=="production"?k:{},t.default=C,e.exports=t.default}(Oi,Oi.exports);var up=Oi.exports;(function(e,t){t.__esModule=!0;var n=Object.assign||function(O){for(var _=1;_<arguments.length;_++){var m=arguments[_];for(var k in m)Object.prototype.hasOwnProperty.call(m,k)&&(O[k]=m[k])}return O},r=U,i=f(r),o=bn,a=f(o),s=Xa,l=f(s),u=up,c=f(u),d=Lt;function f(O){return O&&O.__esModule?O:{default:O}}function h(O,_){if(!(O instanceof _))throw new TypeError("Cannot call a class as a function")}function b(O,_){if(!O)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:O}function y(O,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);O.prototype=Object.create(_&&_.prototype,{constructor:{value:O,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(O,_):O.__proto__=_)}var v={transitionName:d.nameShape.isRequired,transitionAppear:a.default.bool,transitionEnter:a.default.bool,transitionLeave:a.default.bool,transitionAppearTimeout:(0,d.transitionTimeout)("Appear"),transitionEnterTimeout:(0,d.transitionTimeout)("Enter"),transitionLeaveTimeout:(0,d.transitionTimeout)("Leave")},M={transitionAppear:!1,transitionEnter:!0,transitionLeave:!0},D=function(O){y(_,O);function _(){var m,k,C;h(this,_);for(var S=arguments.length,I=Array(S),E=0;E<S;E++)I[E]=arguments[E];return C=(m=(k=b(this,O.call.apply(O,[this].concat(I))),k),k._wrapChild=function($){return i.default.createElement(c.default,{name:k.props.transitionName,appear:k.props.transitionAppear,enter:k.props.transitionEnter,leave:k.props.transitionLeave,appearTimeout:k.props.transitionAppearTimeout,enterTimeout:k.props.transitionEnterTimeout,leaveTimeout:k.props.transitionLeaveTimeout},$)},m),b(k,C)}return _.prototype.render=function(){return i.default.createElement(l.default,n({},this.props,{childFactory:this._wrapChild}))},_}(i.default.Component);D.displayName="CSSTransitionGroup",D.propTypes=process.env.NODE_ENV!=="production"?v:{},D.defaultProps=M,t.default=D,e.exports=t.default})(vi,vi.exports);var lp=vi.exports,cp=lp,fp=ls(cp),dp=Xa,hp=ls(dp);function ls(e){return e&&e.__esModule?e:{default:e}}var pp={TransitionGroup:hp.default,CSSTransitionGroup:fp.default};const gp=e=>e.enableLegacyTransitions?U.createElement(pp.TransitionGroup,{component:e.component,className:e.className,transform:e.transform},e.children):U.createElement("g",{className:e.className,transform:e.transform},e.children),mp=15,cs={title:{textAnchor:"start",x:40},attribute:{x:40,dy:"1.2em"}},yp=({nodeDatum:e,toggleNode:t,onNodeClick:n,onNodeMouseOver:r,onNodeMouseOut:i})=>U.createElement(U.Fragment,null,U.createElement("circle",{r:mp,onClick:o=>{t(),n(o)},onMouseOver:r,onMouseOut:i}),U.createElement("g",{className:"rd3t-label"},U.createElement("text",Object.assign({className:"rd3t-label__title"},cs.title),e.name),U.createElement("text",{className:"rd3t-label__attributes"},e.attributes&&Object.entries(e.attributes).map(([o,a],s)=>U.createElement("tspan",Object.assign({key:`${o}-${s}`},cs.attribute),o,": ",typeof a=="boolean"?a.toString():a)))));class vp extends U.Component{constructor(){super(...arguments),this.nodeRef=null,this.state={transform:this.setTransform(this.props.position,this.props.parent,this.props.orientation,!0),initialStyle:{opacity:0},wasClicked:!1},this.shouldNodeTransform=(t,n,r,i)=>n.subscriptions!==t.subscriptions||n.position.x!==t.position.x||n.position.y!==t.position.y||n.orientation!==t.orientation||i.wasClicked!==r.wasClicked,this.renderNodeElement=()=>{const{data:t,hierarchyPointNode:n,renderCustomNodeElement:r}=this.props,i=typeof r=="function"?r:yp,o={hierarchyPointNode:n,nodeDatum:t,toggleNode:this.handleNodeToggle,onNodeClick:this.handleOnClick,onNodeMouseOver:this.handleOnMouseOver,onNodeMouseOut:this.handleOnMouseOut,addChildren:this.handleAddChildren};return i(o)},this.handleNodeToggle=()=>{this.setState({wasClicked:!0}),this.props.onNodeToggle(this.props.data.__rd3t.id)},this.handleOnClick=t=>{this.setState({wasClicked:!0}),this.props.onNodeClick(this.props.hierarchyPointNode,t)},this.handleOnMouseOver=t=>{this.props.onNodeMouseOver(this.props.hierarchyPointNode,t)},this.handleOnMouseOut=t=>{this.props.onNodeMouseOut(this.props.hierarchyPointNode,t)},this.handleAddChildren=t=>{this.props.handleAddChildrenToNode(this.props.data.__rd3t.id,t)}}componentDidMount(){this.commitTransform()}componentDidUpdate(){this.state.wasClicked&&(this.props.centerNode(this.props.hierarchyPointNode),this.setState({wasClicked:!1})),this.commitTransform()}shouldComponentUpdate(t,n){return this.shouldNodeTransform(this.props,t,this.state,n)}setTransform(t,n,r,i=!1){if(i){const o=n!=null,a=o?n.x:0,s=o?n.y:0;return r==="horizontal"?`translate(${s},${a})`:`translate(${a},${s})`}return r==="horizontal"?`translate(${t.y},${t.x})`:`translate(${t.x},${t.y})`}applyTransform(t,n,r=1,i=()=>{}){this.props.enableLegacyTransitions?Ue(this.nodeRef).transition().duration(n).attr("transform",t).style("opacity",r).on("end",i):(Ue(this.nodeRef).attr("transform",t).style("opacity",r),i())}commitTransform(){const{orientation:t,transitionDuration:n,position:r,parent:i}=this.props,o=this.setTransform(r,i,t);this.applyTransform(o,n)}componentWillLeave(t){const{orientation:n,transitionDuration:r,position:i,parent:o}=this.props,a=this.setTransform(i,o,n,!0);this.applyTransform(a,r,0,t)}render(){const{data:t,nodeClassName:n}=this.props;return U.createElement("g",{id:t.__rd3t.id,ref:r=>{this.nodeRef=r},style:this.state.initialStyle,className:[t.children&&t.children.length>0?"rd3t-node":"rd3t-leaf-node",n].join(" ").trim(),transform:this.state.transform},this.renderNodeElement())}}var $i=Math.PI,Li=2*$i,jt=1e-6,bp=Li-jt;function Pi(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function fs(){return new Pi}Pi.prototype=fs.prototype={constructor:Pi,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,n,r){this._+="Q"+ +e+","+ +t+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(e,t,n,r,i,o){this._+="C"+ +e+","+ +t+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(e,t,n,r,i){e=+e,t=+t,n=+n,r=+r,i=+i;var o=this._x1,a=this._y1,s=n-e,l=r-t,u=o-e,c=a-t,d=u*u+c*c;if(i<0)throw new Error("negative radius: "+i);if(this._x1===null)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(d>jt)if(!(Math.abs(c*s-l*u)>jt)||!i)this._+="L"+(this._x1=e)+","+(this._y1=t);else{var f=n-o,h=r-a,b=s*s+l*l,y=f*f+h*h,v=Math.sqrt(b),M=Math.sqrt(d),D=i*Math.tan(($i-Math.acos((b+d-y)/(2*v*M)))/2),O=D/M,_=D/v;Math.abs(O-1)>jt&&(this._+="L"+(e+O*u)+","+(t+O*c)),this._+="A"+i+","+i+",0,0,"+ +(c*f>u*h)+","+(this._x1=e+_*s)+","+(this._y1=t+_*l)}},arc:function(e,t,n,r,i,o){e=+e,t=+t,n=+n,o=!!o;var a=n*Math.cos(r),s=n*Math.sin(r),l=e+a,u=t+s,c=1^o,d=o?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);this._x1===null?this._+="M"+l+","+u:(Math.abs(this._x1-l)>jt||Math.abs(this._y1-u)>jt)&&(this._+="L"+l+","+u),n&&(d<0&&(d=d%Li+Li),d>bp?this._+="A"+n+","+n+",0,1,"+c+","+(e-a)+","+(t-s)+"A"+n+","+n+",0,1,"+c+","+(this._x1=l)+","+(this._y1=u):d>jt&&(this._+="A"+n+","+n+",0,"+ +(d>=$i)+","+c+","+(this._x1=e+n*Math.cos(i))+","+(this._y1=t+n*Math.sin(i))))},rect:function(e,t,n,r){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};function ds(e){return function(){return e}}function xp(e){return e[0]}function Mp(e){return e[1]}var _p=Array.prototype.slice;function Tp(e){return e.source}function wp(e){return e.target}function hs(e){var t=Tp,n=wp,r=xp,i=Mp,o=null;function a(){var s,l=_p.call(arguments),u=t.apply(this,l),c=n.apply(this,l);if(o||(o=s=fs()),e(o,+r.apply(this,(l[0]=u,l)),+i.apply(this,l),+r.apply(this,(l[0]=c,l)),+i.apply(this,l)),s)return o=null,s+""||null}return a.source=function(s){return arguments.length?(t=s,a):t},a.target=function(s){return arguments.length?(n=s,a):n},a.x=function(s){return arguments.length?(r=typeof s=="function"?s:ds(+s),a):r},a.y=function(s){return arguments.length?(i=typeof s=="function"?s:ds(+s),a):i},a.context=function(s){return arguments.length?(o=s??null,a):o},a}function Np(e,t,n,r,i){e.moveTo(t,n),e.bezierCurveTo(t=(t+r)/2,n,t,i,r,i)}function Ep(e,t,n,r,i){e.moveTo(t,n),e.bezierCurveTo(t,n=(n+i)/2,r,n,r,i)}function Dp(){return hs(Np)}function Op(){return hs(Ep)}class Cp extends U.PureComponent{constructor(){super(...arguments),this.linkRef=null,this.state={initialStyle:{opacity:0}},this.handleOnClick=t=>{this.props.onClick(this.props.linkData.source,this.props.linkData.target,t)},this.handleOnMouseOver=t=>{this.props.onMouseOver(this.props.linkData.source,this.props.linkData.target,t)},this.handleOnMouseOut=t=>{this.props.onMouseOut(this.props.linkData.source,this.props.linkData.target,t)}}componentDidMount(){this.applyOpacity(1,this.props.transitionDuration)}componentWillLeave(t){this.applyOpacity(0,this.props.transitionDuration,t)}applyOpacity(t,n,r=()=>{}){this.props.enableLegacyTransitions?Ue(this.linkRef).transition().duration(n).style("opacity",t).on("end",r):(Ue(this.linkRef).style("opacity",t),r())}drawStepPath(t,n){const{source:r,target:i}=t,o=i.y-r.y;return n==="horizontal"?`M${r.y},${r.x} H${r.y+o/2} V${i.x} H${i.y}`:`M${r.x},${r.y} V${r.y+o/2} H${i.x} V${i.y}`}drawDiagonalPath(t,n){const{source:r,target:i}=t;return n==="horizontal"?Dp()({source:[r.y,r.x],target:[i.y,i.x]}):Op()({source:[r.x,r.y],target:[i.x,i.y]})}drawStraightPath(t,n){const{source:r,target:i}=t;return n==="horizontal"?`M${r.y},${r.x}L${i.y},${i.x}`:`M${r.x},${r.y}L${i.x},${i.y}`}drawElbowPath(t,n){return n==="horizontal"?`M${t.source.y},${t.source.x}V${t.target.x}H${t.target.y}`:`M${t.source.x},${t.source.y}V${t.target.y}H${t.target.x}`}drawPath(){const{linkData:t,orientation:n,pathFunc:r}=this.props;return typeof r=="function"?r(t,n):r==="elbow"?this.drawElbowPath(t,n):r==="straight"?this.drawStraightPath(t,n):r==="step"?this.drawStepPath(t,n):this.drawDiagonalPath(t,n)}getClassNames(){const{linkData:t,orientation:n,pathClassFunc:r}=this.props,i=["rd3t-link"];return typeof r=="function"&&i.push(r(t,n)),i.join(" ").trim()}render(){const{linkData:t}=this.props;return U.createElement("path",{ref:n=>{this.linkRef=n},style:Object.assign({},this.state.initialStyle),className:this.getClassNames(),d:this.drawPath(),onClick:this.handleOnClick,onMouseOver:this.handleOnMouseOver,onMouseOut:this.handleOnMouseOut,"data-source-id":t.source.id,"data-target-id":t.target.id})}}const jp=`
|
|
55
55
|
/* Tree */
|
|
56
56
|
.rd3t-tree-container {
|
|
57
57
|
width: 100%;
|
|
@@ -103,9 +103,9 @@ https://fb.me/react-async-component-lifecycle-hooks`)}if(typeof e.getDerivedStat
|
|
|
103
103
|
fill: none;
|
|
104
104
|
stroke: #000;
|
|
105
105
|
}
|
|
106
|
-
`;let ps=class
|
|
107
|
-
c0.4-0.6,1.2-0.6,1.6,0l0.6,0.9c-0.8,0.8-1.2,2-1.2,3.2c0,2.6,2.1,4.7,4.7,4.7H17l3,4.5C20.4,17.1,19.9,18,19.1,18z`}),
|
|
108
|
-
c0-0.5,0.4-0.8,0.8-0.8h2.1V4.4c0-0.5,0.4-0.8,0.8-0.8s0.8,0.4,0.8,0.8v2.1h2.1C20.3,6.5,20.6,6.8,20.6,7.3z`})]}),
|
|
106
|
+
`;let ps=class ot extends U.Component{constructor(){super(...arguments),this.state={dataRef:this.props.data,data:ot.assignInternalProperties(Ye(this.props.data)),d3:ot.calculateD3Geometry(this.props),isTransitioning:!1,isInitialRenderForDataset:!0,dataKey:this.props.dataKey},this.internalState={targetNode:null,isTransitioning:!1},this.svgInstanceRef=`rd3t-svg-${yi()}`,this.gInstanceRef=`rd3t-g-${yi()}`,this.handleNodeToggle=t=>{const n=Ye(this.state.data),i=this.findNodesById(t,n,[])[0];this.props.collapsible&&!this.state.isTransitioning&&(i.__rd3t.collapsed?(ot.expandNode(i),this.props.shouldCollapseNeighborNodes&&this.collapseNeighborNodes(i,n)):ot.collapseNode(i),this.props.enableLegacyTransitions?(this.setState({data:n,isTransitioning:!0}),setTimeout(()=>this.setState({isTransitioning:!1}),this.props.transitionDuration+10)):this.setState({data:n}),this.internalState.targetNode=i)},this.handleAddChildrenToNode=(t,n)=>{const r=Ye(this.state.data),i=this.findNodesById(t,r,[]);if(i.length>0){const o=i[0],a=o.__rd3t.depth,s=Ye(n).map(l=>ot.assignInternalProperties([l],a+1));o.children.push(...s.flat()),this.setState({data:r})}},this.handleOnNodeClickCb=(t,n)=>{const{onNodeClick:r}=this.props;r&&typeof r=="function"&&(n.persist(),r(Ye(t),n))},this.handleOnLinkClickCb=(t,n,r)=>{const{onLinkClick:i}=this.props;i&&typeof i=="function"&&(r.persist(),i(Ye(t),Ye(n),r))},this.handleOnNodeMouseOverCb=(t,n)=>{const{onNodeMouseOver:r}=this.props;r&&typeof r=="function"&&(n.persist(),r(Ye(t),n))},this.handleOnLinkMouseOverCb=(t,n,r)=>{const{onLinkMouseOver:i}=this.props;i&&typeof i=="function"&&(r.persist(),i(Ye(t),Ye(n),r))},this.handleOnNodeMouseOutCb=(t,n)=>{const{onNodeMouseOut:r}=this.props;r&&typeof r=="function"&&(n.persist(),r(Ye(t),n))},this.handleOnLinkMouseOutCb=(t,n,r)=>{const{onLinkMouseOut:i}=this.props;i&&typeof i=="function"&&(r.persist(),i(Ye(t),Ye(n),r))},this.centerNode=t=>{const{dimensions:n,orientation:r,zoom:i,centeringTransitionDuration:o}=this.props;if(n){const a=Ue(`.${this.gInstanceRef}`),s=Ue(`.${this.svgInstanceRef}`),l=this.state.d3.scale;let u,c;r==="horizontal"?(c=-t.x*l+n.height/2,u=-t.y*l+n.width/2):(u=-t.x*l+n.width/2,c=-t.y*l+n.height/2),a.transition().duration(o).attr("transform","translate("+u+","+c+")scale("+l+")"),s.call(gi().transform,nr.translate(u,c).scale(i))}},this.getNodeClassName=(t,n)=>{const{rootNodeClassName:r,branchNodeClassName:i,leafNodeClassName:o}=this.props;return t!=null?n.children?i:o:r}}static getDerivedStateFromProps(t,n){let r=null;const i=!t.dataKey||n.dataKey!==t.dataKey;t.data!==n.dataRef&&i&&(r={dataRef:t.data,data:ot.assignInternalProperties(Ye(t.data)),isInitialRenderForDataset:!0,dataKey:t.dataKey});const o=ot.calculateD3Geometry(t);return vn(o,n.d3)||(r=r||{},r.d3=o),r}componentDidMount(){this.bindZoomListener(this.props),this.setState({isInitialRenderForDataset:!1})}componentDidUpdate(t){this.props.data!==t.data&&this.setState({isInitialRenderForDataset:!1}),(!vn(this.props.translate,t.translate)||!vn(this.props.scaleExtent,t.scaleExtent)||this.props.zoomable!==t.zoomable||this.props.draggable!==t.draggable||this.props.zoom!==t.zoom||this.props.enableLegacyTransitions!==t.enableLegacyTransitions)&&this.bindZoomListener(this.props),typeof this.props.onUpdate=="function"&&this.props.onUpdate({node:this.internalState.targetNode?Ye(this.internalState.targetNode):null,zoom:this.state.d3.scale,translate:this.state.d3.translate}),this.internalState.targetNode=null}setInitialTreeDepth(t,n){t.forEach(r=>{r.data.__rd3t.collapsed=r.depth>=n})}bindZoomListener(t){const{zoomable:n,scaleExtent:r,translate:i,zoom:o,onUpdate:a,hasInteractiveNodes:s}=t,l=Ue(`.${this.svgInstanceRef}`),u=Ue(`.${this.gInstanceRef}`);l.call(gi().transform,nr.translate(i.x,i.y).scale(o)),l.call(gi().scaleExtent(n?[r.min,r.max]:[o,o]).filter(c=>s?c.target.classList.contains(this.svgInstanceRef)||c.target.classList.contains(this.gInstanceRef)||c.shiftKey:!0).on("zoom",c=>{!this.props.draggable&&["mousemove","touchmove","dblclick"].includes(c.sourceEvent.type)||(u.attr("transform",c.transform),typeof a=="function"&&(a({node:null,zoom:c.transform.k,translate:{x:c.transform.x,y:c.transform.y}}),this.state.d3.scale=c.transform.k,this.state.d3.translate={x:c.transform.x,y:c.transform.y}))}))}static assignInternalProperties(t,n=0){return(Array.isArray(t)?t:[t]).map(i=>{const o=i;return o.__rd3t={id:null,depth:null,collapsed:!1},o.__rd3t.id=yi(),o.__rd3t.depth=n,o.children&&o.children.length>0&&(o.children=ot.assignInternalProperties(o.children,n+1)),o})}findNodesById(t,n,r){return r.length>0||(r=r.concat(n.filter(i=>i.__rd3t.id===t)),n.forEach(i=>{i.children&&i.children.length>0&&(r=this.findNodesById(t,i.children,r))})),r}findNodesAtDepth(t,n,r){return r=r.concat(n.filter(i=>i.__rd3t.depth===t)),n.forEach(i=>{i.children&&i.children.length>0&&(r=this.findNodesAtDepth(t,i.children,r))}),r}static collapseNode(t){t.__rd3t.collapsed=!0,t.children&&t.children.length>0&&t.children.forEach(n=>{ot.collapseNode(n)})}static expandNode(t){t.__rd3t.collapsed=!1}collapseNeighborNodes(t,n){this.findNodesAtDepth(t.__rd3t.depth,n,[]).filter(i=>i.__rd3t.id!==t.__rd3t.id).forEach(i=>ot.collapseNode(i))}generateTree(){const{initialDepth:t,depthFactor:n,separation:r,nodeSize:i,orientation:o}=this.props,{isInitialRenderForDataset:a}=this.state,l=tc().nodeSize(o==="horizontal"?[i.y,i.x]:[i.x,i.y]).separation((d,f)=>d.parent.data.__rd3t.id===f.parent.data.__rd3t.id?r.siblings:r.nonSiblings)(Wr(this.state.data[0],d=>d.__rd3t.collapsed?null:d.children));let u=l.descendants();const c=l.links();return t!==void 0&&a&&this.setInitialTreeDepth(u,t),n&&u.forEach(d=>{d.y=d.depth*n}),{nodes:u,links:c}}static calculateD3Geometry(t){let n;return t.zoom>t.scaleExtent.max?n=t.scaleExtent.max:t.zoom<t.scaleExtent.min?n=t.scaleExtent.min:n=t.zoom,{translate:t.translate,scale:n}}render(){const{nodes:t,links:n}=this.generateTree(),{renderCustomNodeElement:r,orientation:i,pathFunc:o,transitionDuration:a,nodeSize:s,depthFactor:l,initialDepth:u,separation:c,enableLegacyTransitions:d,svgClassName:f,pathClassFunc:h}=this.props,{translate:b,scale:y}=this.state.d3,v=Object.assign(Object.assign(Object.assign({},s),c),{depthFactor:l,initialDepth:u});return U.createElement("div",{className:"rd3t-tree-container rd3t-grabbable"},U.createElement("style",null,jp),U.createElement("svg",{className:`rd3t-svg ${this.svgInstanceRef} ${f}`,width:"100%",height:"100%"},U.createElement(gp,{enableLegacyTransitions:d,component:"g",className:`rd3t-g ${this.gInstanceRef}`,transform:`translate(${b.x},${b.y}) scale(${y})`},n.map((M,D)=>U.createElement(Cp,{key:"link-"+D,orientation:i,pathFunc:o,pathClassFunc:h,linkData:M,onClick:this.handleOnLinkClickCb,onMouseOver:this.handleOnLinkMouseOverCb,onMouseOut:this.handleOnLinkMouseOutCb,enableLegacyTransitions:d,transitionDuration:a})),t.map((M,D)=>{const{data:O,x:_,y:m,parent:k}=M;return U.createElement(vp,{key:"node-"+D,data:O,position:{x:_,y:m},hierarchyPointNode:M,parent:k,nodeClassName:this.getNodeClassName(k,O),renderCustomNodeElement:r,nodeSize:s,orientation:i,enableLegacyTransitions:d,transitionDuration:a,onNodeToggle:this.handleNodeToggle,onNodeClick:this.handleOnNodeClickCb,onNodeMouseOver:this.handleOnNodeMouseOverCb,onNodeMouseOut:this.handleOnNodeMouseOutCb,handleAddChildrenToNode:this.handleAddChildrenToNode,subscriptions:v,centerNode:this.centerNode})}))))}};ps.defaultProps={onNodeClick:void 0,onNodeMouseOver:void 0,onNodeMouseOut:void 0,onLinkClick:void 0,onLinkMouseOver:void 0,onLinkMouseOut:void 0,onUpdate:void 0,orientation:"horizontal",translate:{x:0,y:0},pathFunc:"diagonal",pathClassFunc:void 0,transitionDuration:500,depthFactor:void 0,collapsible:!0,initialDepth:void 0,zoomable:!0,draggable:!0,zoom:1,scaleExtent:{min:.1,max:1},nodeSize:{x:140,y:140},separation:{siblings:1,nonSiblings:2},shouldCollapseNeighborNodes:!1,svgClassName:"",rootNodeClassName:"",branchNodeClassName:"",leafNodeClassName:"",renderCustomNodeElement:void 0,enableLegacyTransitions:!1,hasInteractiveNodes:!1,dimensions:void 0,centeringTransitionDuration:800,dataKey:void 0};const Ap=()=>{const[e,t]=U.useState({x:0,y:0}),[n,r]=U.useState({height:0,width:0}),i=U.useCallback(o=>{if(!o)return null;const{width:a,height:s}=o.getBoundingClientRect();return r({height:s,width:a}),t({x:a/2,y:s/2}),o},[]);return{dimensions:n,refContainer:i,translate:e}},gs=({color:e,height:t=20,width:n=20})=>g.jsxs("svg",{focusable:"false",x:"0px",y:"0px",viewBox:"0 0 24 24",color:e,height:t,width:n,children:[g.jsx("path",{fill:"currentColor",d:`M19.1,18H14v2c0,1.1-0.9,2-2,2s-2-0.9-2-2v-2H4.9c-0.8,0-1.3-0.9-0.8-1.5L7,12l0,0c-0.8,0-1.3-0.9-0.8-1.6l5-7.2
|
|
107
|
+
c0.4-0.6,1.2-0.6,1.6,0l0.6,0.9c-0.8,0.8-1.2,2-1.2,3.2c0,2.6,2.1,4.7,4.7,4.7H17l3,4.5C20.4,17.1,19.9,18,19.1,18z`}),g.jsx("path",{fill:"currentColor",d:`M20.6,7.3c0,0.4-0.4,0.8-0.8,0.8h-2.1v2.1c0,0.4-0.4,0.8-0.8,0.8s-0.8-0.4-0.8-0.8V8.1H14c-0.5,0-0.8-0.4-0.8-0.8
|
|
108
|
+
c0-0.5,0.4-0.8,0.8-0.8h2.1V4.4c0-0.5,0.4-0.8,0.8-0.8s0.8,0.4,0.8,0.8v2.1h2.1C20.3,6.5,20.6,6.8,20.6,7.3z`})]}),Tt={currentHierarchyPointNode:null,currentTree:{errorName:"",id:"",name:""},dispatchTree:()=>null,endPoint:void 0,modalOpen:null,setCurrentHierarchyPointNode:()=>null,setCurrentTree:()=>null,setModalOpen:()=>null,setTreeModalOpen:()=>null,setTreePath:()=>null,tree:null,treeModalOpen:!1,treePath:[],version:void 0},ms=U.createContext(Tt),Ke=()=>U.useContext(ms),Sp=()=>{const{setModalOpen:e}=Ke();return{handleClick:()=>e("add")}},Ip=()=>{const{t:e}=Ve.useTranslation("button"),{handleClick:t}=Sp();return g.jsx(w.Box,{alignItems:"center",justifyContent:"center",display:"flex",height:"100%",children:g.jsx(w.Button,{onClick:t,size:"medium",variant:"contained",startIcon:g.jsx(gs,{}),children:e("createTree",{ns:"button"})})})},Fi={container:{height:"100%",width:"100%"},progressContainer:{alignItems:"center",display:"flex",height:"100%",justifyContent:"center"},treeLink:{stroke:`${be.borderGrey} !important`}},ys="tree-link",kp=({data:e,renderCustomNodeElement:t,nodeSize:n={x:300,y:300}})=>{const{dimensions:r,refContainer:i,translate:o}=Ap(),{currentTree:a}=Ke();return!e&&!a.id?g.jsx(Ip,{}):a.id&&!e?g.jsx(w.Box,{sx:Fi.progressContainer,children:g.jsx(w.CircularProgress,{})}):g.jsxs("div",{style:Fi.container,ref:i,children:[g.jsx(w.GlobalStyles,{styles:{[`.${ys}`]:Fi.treeLink}}),g.jsx(ps,{data:e,orientation:"vertical",translate:o,dimensions:r,renderCustomNodeElement:t,pathFunc:"diagonal",pathClassFunc:()=>ys,nodeSize:n})]})},vs=U.memo(kp),zp=()=>({formatJSON:t=>JSON.stringify(t??{},null,2)}),bs={fullHeight:{height:"100%"}},Rp=({value:e})=>{const{formatJSON:t}=zp();return g.jsxs("div",{style:bs.fullHeight,children:[g.jsx(w.GlobalStyles,{styles:{".cm-activeLine.cm-line, .cm-gutterElement.cm-activeLineGutter":{backgroundColor:"transparent"}}}),g.jsx(ml,{value:t(e),extensions:[pl.json()],editable:!1,theme:gl.dracula,height:"100%",style:bs.fullHeight})]})};var Ui={},Yi={};function ae(){return ae=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ae.apply(this,arguments)}function Pt(e){return e!==null&&typeof e=="object"&&e.constructor===Object}function xs(e){if(!Pt(e))return e;const t={};return Object.keys(e).forEach(n=>{t[n]=xs(e[n])}),t}function vt(e,t,n={clone:!0}){const r=n.clone?ae({},e):e;return Pt(e)&&Pt(t)&&Object.keys(t).forEach(i=>{i!=="__proto__"&&(Pt(t[i])&&i in e&&Pt(e[i])?r[i]=vt(e[i],t[i],n):n.clone?r[i]=Pt(t[i])?xs(t[i]):t[i]:r[i]=t[i])}),r}function Ft(e){let t="https://mui.com/production-error/?code="+e;for(let n=1;n<arguments.length;n+=1)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified MUI error #"+e+"; visit "+t+" for the full message."}var Vi={exports:{}},me={};/**
|
|
109
109
|
* @license React
|
|
110
110
|
* react-is.production.min.js
|
|
111
111
|
*
|
|
@@ -113,7 +113,7 @@ https://fb.me/react-async-component-lifecycle-hooks`)}if(typeof e.getDerivedStat
|
|
|
113
113
|
*
|
|
114
114
|
* This source code is licensed under the MIT license found in the
|
|
115
115
|
* LICENSE file in the root directory of this source tree.
|
|
116
|
-
*/var
|
|
116
|
+
*/var Ms;function $p(){if(Ms)return me;Ms=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),o=Symbol.for("react.provider"),a=Symbol.for("react.context"),s=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),c=Symbol.for("react.suspense_list"),d=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),h=Symbol.for("react.offscreen"),b;b=Symbol.for("react.module.reference");function y(v){if(typeof v=="object"&&v!==null){var M=v.$$typeof;switch(M){case e:switch(v=v.type,v){case n:case i:case r:case u:case c:return v;default:switch(v=v&&v.$$typeof,v){case s:case a:case l:case f:case d:case o:return v;default:return M}}case t:return M}}}return me.ContextConsumer=a,me.ContextProvider=o,me.Element=e,me.ForwardRef=l,me.Fragment=n,me.Lazy=f,me.Memo=d,me.Portal=t,me.Profiler=i,me.StrictMode=r,me.Suspense=u,me.SuspenseList=c,me.isAsyncMode=function(){return!1},me.isConcurrentMode=function(){return!1},me.isContextConsumer=function(v){return y(v)===a},me.isContextProvider=function(v){return y(v)===o},me.isElement=function(v){return typeof v=="object"&&v!==null&&v.$$typeof===e},me.isForwardRef=function(v){return y(v)===l},me.isFragment=function(v){return y(v)===n},me.isLazy=function(v){return y(v)===f},me.isMemo=function(v){return y(v)===d},me.isPortal=function(v){return y(v)===t},me.isProfiler=function(v){return y(v)===i},me.isStrictMode=function(v){return y(v)===r},me.isSuspense=function(v){return y(v)===u},me.isSuspenseList=function(v){return y(v)===c},me.isValidElementType=function(v){return typeof v=="string"||typeof v=="function"||v===n||v===i||v===r||v===u||v===c||v===h||typeof v=="object"&&v!==null&&(v.$$typeof===f||v.$$typeof===d||v.$$typeof===o||v.$$typeof===a||v.$$typeof===l||v.$$typeof===b||v.getModuleId!==void 0)},me.typeOf=y,me}var ye={};/**
|
|
117
117
|
* @license React
|
|
118
118
|
* react-is.development.js
|
|
119
119
|
*
|
|
@@ -121,38 +121,38 @@ https://fb.me/react-async-component-lifecycle-hooks`)}if(typeof e.getDerivedStat
|
|
|
121
121
|
*
|
|
122
122
|
* This source code is licensed under the MIT license found in the
|
|
123
123
|
* LICENSE file in the root directory of this source tree.
|
|
124
|
-
*/var
|
|
124
|
+
*/var _s;function Lp(){return _s||(_s=1,process.env.NODE_ENV!=="production"&&function(){var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),o=Symbol.for("react.provider"),a=Symbol.for("react.context"),s=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),c=Symbol.for("react.suspense_list"),d=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),h=Symbol.for("react.offscreen"),b=!1,y=!1,v=!1,M=!1,D=!1,O;O=Symbol.for("react.module.reference");function _(G){return!!(typeof G=="string"||typeof G=="function"||G===n||G===i||D||G===r||G===u||G===c||M||G===h||b||y||v||typeof G=="object"&&G!==null&&(G.$$typeof===f||G.$$typeof===d||G.$$typeof===o||G.$$typeof===a||G.$$typeof===l||G.$$typeof===O||G.getModuleId!==void 0))}function m(G){if(typeof G=="object"&&G!==null){var Je=G.$$typeof;switch(Je){case e:var rt=G.type;switch(rt){case n:case i:case r:case u:case c:return rt;default:var At=rt&&rt.$$typeof;switch(At){case s:case a:case l:case f:case d:case o:return At;default:return Je}}case t:return Je}}}var k=a,C=o,S=e,I=l,E=n,$=f,X=d,H=t,x=i,z=r,N=u,R=c,P=!1,q=!1;function T(G){return P||(P=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1}function A(G){return q||(q=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1}function V(G){return m(G)===a}function K(G){return m(G)===o}function B(G){return typeof G=="object"&&G!==null&&G.$$typeof===e}function J(G){return m(G)===l}function Q(G){return m(G)===n}function W(G){return m(G)===f}function ee(G){return m(G)===d}function re(G){return m(G)===t}function te(G){return m(G)===i}function Ce(G){return m(G)===r}function Y(G){return m(G)===u}function Le(G){return m(G)===c}ye.ContextConsumer=k,ye.ContextProvider=C,ye.Element=S,ye.ForwardRef=I,ye.Fragment=E,ye.Lazy=$,ye.Memo=X,ye.Portal=H,ye.Profiler=x,ye.StrictMode=z,ye.Suspense=N,ye.SuspenseList=R,ye.isAsyncMode=T,ye.isConcurrentMode=A,ye.isContextConsumer=V,ye.isContextProvider=K,ye.isElement=B,ye.isForwardRef=J,ye.isFragment=Q,ye.isLazy=W,ye.isMemo=ee,ye.isPortal=re,ye.isProfiler=te,ye.isStrictMode=Ce,ye.isSuspense=Y,ye.isSuspenseList=Le,ye.isValidElementType=_,ye.typeOf=m}()),ye}process.env.NODE_ENV==="production"?Vi.exports=$p():Vi.exports=Lp();var Ts=Vi.exports;const Pp=/^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;function Fp(e){const t=`${e}`.match(Pp);return t&&t[1]||""}function ws(e,t=""){return e.displayName||e.name||Fp(e)||t}function Ns(e,t,n){const r=ws(t);return e.displayName||(r!==""?`${n}(${r})`:n)}function Up(e){if(e!=null){if(typeof e=="string")return e;if(typeof e=="function")return ws(e,"Component");if(typeof e=="object")switch(e.$$typeof){case Ts.ForwardRef:return Ns(e,e.render,"ForwardRef");case Ts.Memo:return Ns(e,e.type,"memo");default:return}}}function lt(e){if(typeof e!="string")throw new Error(process.env.NODE_ENV!=="production"?"MUI: `capitalize(string)` expects a string argument.":Ft(7));return e.charAt(0).toUpperCase()+e.slice(1)}function Yp(...e){return e.reduce((t,n)=>n==null?t:function(...i){t.apply(this,i),n.apply(this,i)},()=>{})}function Vp(e,t=166){let n;function r(...i){const o=()=>{e.apply(this,i)};clearTimeout(n),n=setTimeout(o,t)}return r.clear=()=>{clearTimeout(n)},r}function Bp(e,t){return process.env.NODE_ENV==="production"?()=>null:(n,r,i,o,a)=>{const s=i||"<<anonymous>>",l=a||r;return typeof n[r]<"u"?new Error(`The ${o} \`${l}\` of \`${s}\` is deprecated. ${t}`):null}}function qp(e,t){return ue.isValidElement(e)&&t.indexOf(e.type.muiName)!==-1}function Es(e){return e&&e.ownerDocument||document}function Qp(e){return Es(e).defaultView||window}function Wp(e,t){if(process.env.NODE_ENV==="production")return()=>null;const n=t?ae({},t.propTypes):null;return i=>(o,a,s,l,u,...c)=>{const d=u||a,f=n==null?void 0:n[d];if(f){const h=f(o,a,s,l,u,...c);if(h)return h}return typeof o[a]<"u"&&!o[i]?new Error(`The prop \`${d}\` of \`${e}\` can only be used together with the \`${i}\` prop.`):null}}function Ds(e,t){typeof e=="function"?e(t):e&&(e.current=t)}const Os=typeof window<"u"?ue.useLayoutEffect:ue.useEffect;let Cs=0;function Gp(e){const[t,n]=ue.useState(e),r=e||t;return ue.useEffect(()=>{t==null&&(Cs+=1,n(`mui-${Cs}`))},[t]),r}const js=ue["useId".toString()];function Kp(e){if(js!==void 0){const t=js();return e??t}return Gp(e)}function Hp(e,t,n,r,i){if(process.env.NODE_ENV==="production")return null;const o=i||t;return typeof e[t]<"u"?new Error(`The prop \`${o}\` is not supported. Please remove it.`):null}function Xp({controlled:e,default:t,name:n,state:r="value"}){const{current:i}=ue.useRef(e!==void 0),[o,a]=ue.useState(t),s=i?e:o;if(process.env.NODE_ENV!=="production"){ue.useEffect(()=>{i!==(e!==void 0)&&console.error([`MUI: A component is changing the ${i?"":"un"}controlled ${r} state of ${n} to be ${i?"un":""}controlled.`,"Elements should not switch from uncontrolled to controlled (or vice versa).",`Decide between using a controlled or uncontrolled ${n} element for the lifetime of the component.`,"The nature of the state is determined during the first render. It's considered controlled if the value is not `undefined`.","More info: https://fb.me/react-controlled-components"].join(`
|
|
125
125
|
`))},[r,n,e]);const{current:u}=ue.useRef(t);ue.useEffect(()=>{!i&&u!==t&&console.error([`MUI: A component is changing the default ${r} state of an uncontrolled ${n} after being initialized. To suppress this warning opt to use a controlled ${n}.`].join(`
|
|
126
|
-
`))},[JSON.stringify(t)])}const l=ue.useCallback(u=>{i||a(u)},[]);return[s,l]}function
|
|
127
|
-
`+r+"\n\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules."),this._alreadyInsertedOrderInsensitiveRule=this._alreadyInsertedOrderInsensitiveRule||!o}if(this.isSpeedy){var a=y0(i);try{a.insertRule(r,a.cssRules.length)}catch(s){process.env.NODE_ENV!=="production"&&!/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(r)&&console.error('There was a problem inserting the following rule: "'+r+'"',s)}}else i.appendChild(document.createTextNode(r));this.ctr++},t.flush=function(){this.tags.forEach(function(r){return r.parentNode&&r.parentNode.removeChild(r)}),this.tags=[],this.ctr=0,process.env.NODE_ENV!=="production"&&(this._alreadyInsertedOrderInsensitiveRule=!1)},e}(),Fe="-ms-",Mr="-moz-",fe="-webkit-",Ji="comm",Zi="rule",eo="decl",M0="@import",Rs="@keyframes",_0="@layer",x0=Math.abs,_r=String.fromCharCode,T0=Object.assign;function w0(e,t){return ze(e,0)^45?(((t<<2^ze(e,0))<<2^ze(e,1))<<2^ze(e,2))<<2^ze(e,3):0}function $s(e){return e.trim()}function N0(e,t){return(e=t.exec(e))?e[0]:e}function de(e,t,n){return e.replace(t,n)}function to(e,t){return e.indexOf(t)}function ze(e,t){return e.charCodeAt(t)|0}function En(e,t,n){return e.slice(t,n)}function dt(e){return e.length}function no(e){return e.length}function xr(e,t){return t.push(e),e}function E0(e,t){return e.map(t).join("")}var Tr=1,qt=1,Ls=0,Ge=0,Oe=0,Bt="";function wr(e,t,n,r,i,o,a){return{value:e,root:t,parent:n,type:r,props:i,children:o,line:Tr,column:qt,length:a,return:""}}function Dn(e,t){return T0(wr("",null,null,"",null,null,0),e,{length:-e.length},t)}function D0(){return Oe}function O0(){return Oe=Ge>0?ze(Bt,--Ge):0,qt--,Oe===10&&(qt=1,Tr--),Oe}function Ze(){return Oe=Ge<Ls?ze(Bt,Ge++):0,qt++,Oe===10&&(qt=1,Tr++),Oe}function ht(){return ze(Bt,Ge)}function Nr(){return Ge}function On(e,t){return En(Bt,e,t)}function Cn(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Ps(e){return Tr=qt=1,Ls=dt(Bt=e),Ge=0,[]}function Fs(e){return Bt="",e}function Er(e){return $s(On(Ge-1,ro(e===91?e+2:e===40?e+1:e)))}function C0(e){for(;(Oe=ht())&&Oe<33;)Ze();return Cn(e)>2||Cn(Oe)>3?"":" "}function S0(e,t){for(;--t&&Ze()&&!(Oe<48||Oe>102||Oe>57&&Oe<65||Oe>70&&Oe<97););return On(e,Nr()+(t<6&&ht()==32&&Ze()==32))}function ro(e){for(;Ze();)switch(Oe){case e:return Ge;case 34:case 39:e!==34&&e!==39&&ro(Oe);break;case 40:e===41&&ro(e);break;case 92:Ze();break}return Ge}function A0(e,t){for(;Ze()&&e+Oe!==47+10;)if(e+Oe===42+42&&ht()===47)break;return"/*"+On(t,Ge-1)+"*"+_r(e===47?e:Ze())}function I0(e){for(;!Cn(ht());)Ze();return On(e,Ge)}function k0(e){return Fs(Dr("",null,null,null,[""],e=Ps(e),0,[0],e))}function Dr(e,t,n,r,i,o,a,s,l){for(var u=0,c=0,d=a,f=0,h=0,y=0,m=1,v=1,M=1,D=0,O="",x=i,g=o,j=r,C=O;v;)switch(y=D,D=Ze()){case 40:if(y!=108&&ze(C,d-1)==58){to(C+=de(Er(D),"&","&\f"),"&\f")!=-1&&(M=-1);break}case 34:case 39:case 91:C+=Er(D);break;case 9:case 10:case 13:case 32:C+=C0(y);break;case 92:C+=S0(Nr()-1,7);continue;case 47:switch(ht()){case 42:case 47:xr(j0(A0(Ze(),Nr()),t,n),l);break;default:C+="/"}break;case 123*m:s[u++]=dt(C)*M;case 125*m:case 59:case 0:switch(D){case 0:case 125:v=0;case 59+c:M==-1&&(C=de(C,/\f/g,"")),h>0&&dt(C)-d&&xr(h>32?Ys(C+";",r,n,d-1):Ys(de(C," ","")+";",r,n,d-2),l);break;case 59:C+=";";default:if(xr(j=Us(C,t,n,u,c,i,s,O,x=[],g=[],d),o),D===123)if(c===0)Dr(C,t,j,j,x,o,d,s,g);else switch(f===99&&ze(C,3)===110?100:f){case 100:case 108:case 109:case 115:Dr(e,j,j,r&&xr(Us(e,j,j,0,0,i,s,O,i,x=[],d),g),i,g,d,s,r?x:g);break;default:Dr(C,j,j,j,[""],g,0,s,g)}}u=c=h=0,m=M=1,O=C="",d=a;break;case 58:d=1+dt(C),h=y;default:if(m<1){if(D==123)--m;else if(D==125&&m++==0&&O0()==125)continue}switch(C+=_r(D),D*m){case 38:M=c>0?1:(C+="\f",-1);break;case 44:s[u++]=(dt(C)-1)*M,M=1;break;case 64:ht()===45&&(C+=Er(Ze())),f=ht(),c=d=dt(O=C+=I0(Nr())),D++;break;case 45:y===45&&dt(C)==2&&(m=0)}}return o}function Us(e,t,n,r,i,o,a,s,l,u,c){for(var d=i-1,f=i===0?o:[""],h=no(f),y=0,m=0,v=0;y<r;++y)for(var M=0,D=En(e,d+1,d=x0(m=a[y])),O=e;M<h;++M)(O=$s(m>0?f[M]+" "+D:de(D,/&\f/g,f[M])))&&(l[v++]=O);return wr(e,t,n,i===0?Zi:s,l,u,c)}function j0(e,t,n){return wr(e,t,n,Ji,_r(D0()),En(e,2,-2),0)}function Ys(e,t,n,r){return wr(e,t,n,eo,En(e,0,r),En(e,r+1,-1),r)}function Qt(e,t){for(var n="",r=no(e),i=0;i<r;i++)n+=t(e[i],i,e,t)||"";return n}function z0(e,t,n,r){switch(e.type){case _0:if(e.children.length)break;case M0:case eo:return e.return=e.return||e.value;case Ji:return"";case Rs:return e.return=e.value+"{"+Qt(e.children,r)+"}";case Zi:e.value=e.props.join(",")}return dt(n=Qt(e.children,r))?e.return=e.value+"{"+n+"}":""}function R0(e){var t=no(e);return function(n,r,i,o){for(var a="",s=0;s<t;s++)a+=e[s](n,r,i,o)||"";return a}}function $0(e){return function(t){t.root||(t=t.return)&&e(t)}}var L0=function(t,n,r){for(var i=0,o=0;i=o,o=ht(),i===38&&o===12&&(n[r]=1),!Cn(o);)Ze();return On(t,Ge)},P0=function(t,n){var r=-1,i=44;do switch(Cn(i)){case 0:i===38&&ht()===12&&(n[r]=1),t[r]+=L0(Ge-1,n,r);break;case 2:t[r]+=Er(i);break;case 4:if(i===44){t[++r]=ht()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=_r(i)}while(i=Ze());return t},F0=function(t,n){return Fs(P0(Ps(t),n))},Vs=new WeakMap,U0=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,i=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!Vs.get(r))&&!i){Vs.set(t,!0);for(var o=[],a=F0(n,o),s=r.props,l=0,u=0;l<a.length;l++)for(var c=0;c<s.length;c++,u++)t.props[u]=o[l]?a[l].replace(/&\f/g,s[c]):s[c]+" "+a[l]}}},Y0=function(t){if(t.type==="decl"){var n=t.value;n.charCodeAt(0)===108&&n.charCodeAt(2)===98&&(t.return="",t.value="")}},V0="emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason",q0=function(t){return t.type==="comm"&&t.children.indexOf(V0)>-1},B0=function(t){return function(n,r,i){if(!(n.type!=="rule"||t.compat)){var o=n.value.match(/(:first|:nth|:nth-last)-child/g);if(o){for(var a=!!n.parent,s=a?n.parent.children:i,l=s.length-1;l>=0;l--){var u=s[l];if(u.line<n.line)break;if(u.column<n.column){if(q0(u))return;break}}o.forEach(function(c){console.error('The pseudo class "'+c+'" is potentially unsafe when doing server-side rendering. Try changing it to "'+c.split("-child")[0]+'-of-type".')})}}}},qs=function(t){return t.type.charCodeAt(1)===105&&t.type.charCodeAt(0)===64},Q0=function(t,n){for(var r=t-1;r>=0;r--)if(!qs(n[r]))return!0;return!1},Bs=function(t){t.type="",t.value="",t.return="",t.children="",t.props=""},W0=function(t,n,r){qs(t)&&(t.parent?(console.error("`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles."),Bs(t)):Q0(n,r)&&(console.error("`@import` rules can't be after other rules. Please put your `@import` rules before your other rules."),Bs(t)))};function Qs(e,t){switch(w0(e,t)){case 5103:return fe+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return fe+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return fe+e+Mr+e+Fe+e+e;case 6828:case 4268:return fe+e+Fe+e+e;case 6165:return fe+e+Fe+"flex-"+e+e;case 5187:return fe+e+de(e,/(\w+).+(:[^]+)/,fe+"box-$1$2"+Fe+"flex-$1$2")+e;case 5443:return fe+e+Fe+"flex-item-"+de(e,/flex-|-self/,"")+e;case 4675:return fe+e+Fe+"flex-line-pack"+de(e,/align-content|flex-|-self/,"")+e;case 5548:return fe+e+Fe+de(e,"shrink","negative")+e;case 5292:return fe+e+Fe+de(e,"basis","preferred-size")+e;case 6060:return fe+"box-"+de(e,"-grow","")+fe+e+Fe+de(e,"grow","positive")+e;case 4554:return fe+de(e,/([^-])(transform)/g,"$1"+fe+"$2")+e;case 6187:return de(de(de(e,/(zoom-|grab)/,fe+"$1"),/(image-set)/,fe+"$1"),e,"")+e;case 5495:case 3959:return de(e,/(image-set\([^]*)/,fe+"$1$`$1");case 4968:return de(de(e,/(.+:)(flex-)?(.*)/,fe+"box-pack:$3"+Fe+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+fe+e+e;case 4095:case 3583:case 4068:case 2532:return de(e,/(.+)-inline(.+)/,fe+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(dt(e)-1-t>6)switch(ze(e,t+1)){case 109:if(ze(e,t+4)!==45)break;case 102:return de(e,/(.+:)(.+)-([^]+)/,"$1"+fe+"$2-$3$1"+Mr+(ze(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~to(e,"stretch")?Qs(de(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(ze(e,t+1)!==115)break;case 6444:switch(ze(e,dt(e)-3-(~to(e,"!important")&&10))){case 107:return de(e,":",":"+fe)+e;case 101:return de(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+fe+(ze(e,14)===45?"inline-":"")+"box$3$1"+fe+"$2$3$1"+Fe+"$2box$3")+e}break;case 5936:switch(ze(e,t+11)){case 114:return fe+e+Fe+de(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return fe+e+Fe+de(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return fe+e+Fe+de(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return fe+e+Fe+e+e}return e}var G0=function(t,n,r,i){if(t.length>-1&&!t.return)switch(t.type){case eo:t.return=Qs(t.value,t.length);break;case Rs:return Qt([Dn(t,{value:de(t.value,"@","@"+fe)})],i);case Zi:if(t.length)return E0(t.props,function(o){switch(N0(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return Qt([Dn(t,{props:[de(o,/:(read-\w+)/,":"+Mr+"$1")]})],i);case"::placeholder":return Qt([Dn(t,{props:[de(o,/:(plac\w+)/,":"+fe+"input-$1")]}),Dn(t,{props:[de(o,/:(plac\w+)/,":"+Mr+"$1")]}),Dn(t,{props:[de(o,/:(plac\w+)/,Fe+"input-$1")]})],i)}return""})}},K0=[G0],H0=function(t){var n=t.key;if(process.env.NODE_ENV!=="production"&&!n)throw new Error(`You have to configure \`key\` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.
|
|
128
|
-
If multiple caches share the same key they might "fight" for each other's style elements.`);if(n==="css"){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,function(
|
|
126
|
+
`))},[JSON.stringify(t)])}const l=ue.useCallback(u=>{i||a(u)},[]);return[s,l]}function Jp(e){const t=ue.useRef(e);return Os(()=>{t.current=e}),ue.useCallback((...n)=>(0,t.current)(...n),[])}function Zp(...e){return ue.useMemo(()=>e.every(t=>t==null)?null:t=>{e.forEach(n=>{Ds(n,t)})},e)}let lr=!0,Bi=!1,As;const e0={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function t0(e){const{type:t,tagName:n}=e;return!!(n==="INPUT"&&e0[t]&&!e.readOnly||n==="TEXTAREA"&&!e.readOnly||e.isContentEditable)}function n0(e){e.metaKey||e.altKey||e.ctrlKey||(lr=!0)}function qi(){lr=!1}function r0(){this.visibilityState==="hidden"&&Bi&&(lr=!0)}function i0(e){e.addEventListener("keydown",n0,!0),e.addEventListener("mousedown",qi,!0),e.addEventListener("pointerdown",qi,!0),e.addEventListener("touchstart",qi,!0),e.addEventListener("visibilitychange",r0,!0)}function o0(e){const{target:t}=e;try{return t.matches(":focus-visible")}catch{}return lr||t0(t)}function a0(){const e=ue.useCallback(i=>{i!=null&&i0(i.ownerDocument)},[]),t=ue.useRef(!1);function n(){return t.current?(Bi=!0,window.clearTimeout(As),As=window.setTimeout(()=>{Bi=!1},100),t.current=!1,!0):!1}function r(i){return o0(i)?(t.current=!0,!0):!1}return{isFocusVisibleRef:t,onFocus:r,onBlur:n,ref:e}}function Ss(e,t){const n=ae({},t);return Object.keys(e).forEach(r=>{if(r.toString().match(/^(components|slots)$/))n[r]=ae({},e[r],n[r]);else if(r.toString().match(/^(componentsProps|slotProps)$/)){const i=e[r]||{},o=t[r];n[r]={},!o||!Object.keys(o)?n[r]=i:!i||!Object.keys(i)?n[r]=o:(n[r]=ae({},o),Object.keys(i).forEach(a=>{n[r][a]=Ss(i[a],o[a])}))}else n[r]===void 0&&(n[r]=e[r])}),n}function s0(e,t,n=void 0){const r={};return Object.keys(e).forEach(i=>{r[i]=e[i].reduce((o,a)=>{if(a){const s=t(a);s!==""&&o.push(s),n&&n[a]&&o.push(n[a])}return o},[]).join(" ")}),r}const Is=e=>e,ks=(()=>{let e=Is;return{configure(t){e=t},generate(t){return e(t)},reset(){e=Is}}})(),u0={active:"active",checked:"checked",completed:"completed",disabled:"disabled",readOnly:"readOnly",error:"error",expanded:"expanded",focused:"focused",focusVisible:"focusVisible",required:"required",selected:"selected"};function Qi(e,t,n="Mui"){const r=u0[t];return r?`${n}-${r}`:`${ks.generate(e)}-${t}`}function l0(e,t,n="Mui"){const r={};return t.forEach(i=>{r[i]=Qi(e,i,n)}),r}function bt(e,t){if(e==null)return{};var n={},r=Object.keys(e),i,o;for(o=0;o<r.length;o++)i=r[o],!(t.indexOf(i)>=0)&&(n[i]=e[i]);return n}function zs(e){var t,n,r="";if(typeof e=="string"||typeof e=="number")r+=e;else if(typeof e=="object")if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=zs(e[t]))&&(r&&(r+=" "),r+=n);else for(t in e)e[t]&&(r&&(r+=" "),r+=t);return r}function c0(){for(var e,t,n=0,r="";n<arguments.length;)(e=arguments[n++])&&(t=zs(e))&&(r&&(r+=" "),r+=t);return r}function Rs(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var f0=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,d0=Rs(function(e){return f0.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91});function h0(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}function p0(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),e.nonce!==void 0&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}var g0=function(){function e(n){var r=this;this._insertTag=function(i){var o;r.tags.length===0?r.insertionPoint?o=r.insertionPoint.nextSibling:r.prepend?o=r.container.firstChild:o=r.before:o=r.tags[r.tags.length-1].nextSibling,r.container.insertBefore(i,o),r.tags.push(i)},this.isSpeedy=n.speedy===void 0?process.env.NODE_ENV==="production":n.speedy,this.tags=[],this.ctr=0,this.nonce=n.nonce,this.key=n.key,this.container=n.container,this.prepend=n.prepend,this.insertionPoint=n.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(r){r.forEach(this._insertTag)},t.insert=function(r){this.ctr%(this.isSpeedy?65e3:1)===0&&this._insertTag(p0(this));var i=this.tags[this.tags.length-1];if(process.env.NODE_ENV!=="production"){var o=r.charCodeAt(0)===64&&r.charCodeAt(1)===105;o&&this._alreadyInsertedOrderInsensitiveRule&&console.error(`You're attempting to insert the following rule:
|
|
127
|
+
`+r+"\n\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules."),this._alreadyInsertedOrderInsensitiveRule=this._alreadyInsertedOrderInsensitiveRule||!o}if(this.isSpeedy){var a=h0(i);try{a.insertRule(r,a.cssRules.length)}catch(s){process.env.NODE_ENV!=="production"&&!/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(r)&&console.error('There was a problem inserting the following rule: "'+r+'"',s)}}else i.appendChild(document.createTextNode(r));this.ctr++},t.flush=function(){this.tags.forEach(function(r){return r.parentNode&&r.parentNode.removeChild(r)}),this.tags=[],this.ctr=0,process.env.NODE_ENV!=="production"&&(this._alreadyInsertedOrderInsensitiveRule=!1)},e}(),$e="-ms-",cr="-moz-",ce="-webkit-",Wi="comm",Gi="rule",Ki="decl",m0="@import",$s="@keyframes",y0="@layer",v0=Math.abs,fr=String.fromCharCode,b0=Object.assign;function x0(e,t){return Re(e,0)^45?(((t<<2^Re(e,0))<<2^Re(e,1))<<2^Re(e,2))<<2^Re(e,3):0}function Ls(e){return e.trim()}function M0(e,t){return(e=t.exec(e))?e[0]:e}function fe(e,t,n){return e.replace(t,n)}function Hi(e,t){return e.indexOf(t)}function Re(e,t){return e.charCodeAt(t)|0}function xn(e,t,n){return e.slice(t,n)}function ct(e){return e.length}function Xi(e){return e.length}function dr(e,t){return t.push(e),e}function _0(e,t){return e.map(t).join("")}var hr=1,Ut=1,Ps=0,qe=0,Oe=0,Yt="";function pr(e,t,n,r,i,o,a){return{value:e,root:t,parent:n,type:r,props:i,children:o,line:hr,column:Ut,length:a,return:""}}function Mn(e,t){return b0(pr("",null,null,"",null,null,0),e,{length:-e.length},t)}function T0(){return Oe}function w0(){return Oe=qe>0?Re(Yt,--qe):0,Ut--,Oe===10&&(Ut=1,hr--),Oe}function He(){return Oe=qe<Ps?Re(Yt,qe++):0,Ut++,Oe===10&&(Ut=1,hr++),Oe}function ft(){return Re(Yt,qe)}function gr(){return qe}function _n(e,t){return xn(Yt,e,t)}function Tn(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Fs(e){return hr=Ut=1,Ps=ct(Yt=e),qe=0,[]}function Us(e){return Yt="",e}function mr(e){return Ls(_n(qe-1,Ji(e===91?e+2:e===40?e+1:e)))}function N0(e){for(;(Oe=ft())&&Oe<33;)He();return Tn(e)>2||Tn(Oe)>3?"":" "}function E0(e,t){for(;--t&&He()&&!(Oe<48||Oe>102||Oe>57&&Oe<65||Oe>70&&Oe<97););return _n(e,gr()+(t<6&&ft()==32&&He()==32))}function Ji(e){for(;He();)switch(Oe){case e:return qe;case 34:case 39:e!==34&&e!==39&&Ji(Oe);break;case 40:e===41&&Ji(e);break;case 92:He();break}return qe}function D0(e,t){for(;He()&&e+Oe!==47+10;)if(e+Oe===42+42&&ft()===47)break;return"/*"+_n(t,qe-1)+"*"+fr(e===47?e:He())}function O0(e){for(;!Tn(ft());)He();return _n(e,qe)}function C0(e){return Us(yr("",null,null,null,[""],e=Fs(e),0,[0],e))}function yr(e,t,n,r,i,o,a,s,l){for(var u=0,c=0,d=a,f=0,h=0,b=0,y=1,v=1,M=1,D=0,O="",_=i,m=o,k=r,C=O;v;)switch(b=D,D=He()){case 40:if(b!=108&&Re(C,d-1)==58){Hi(C+=fe(mr(D),"&","&\f"),"&\f")!=-1&&(M=-1);break}case 34:case 39:case 91:C+=mr(D);break;case 9:case 10:case 13:case 32:C+=N0(b);break;case 92:C+=E0(gr()-1,7);continue;case 47:switch(ft()){case 42:case 47:dr(j0(D0(He(),gr()),t,n),l);break;default:C+="/"}break;case 123*y:s[u++]=ct(C)*M;case 125*y:case 59:case 0:switch(D){case 0:case 125:v=0;case 59+c:M==-1&&(C=fe(C,/\f/g,"")),h>0&&ct(C)-d&&dr(h>32?Vs(C+";",r,n,d-1):Vs(fe(C," ","")+";",r,n,d-2),l);break;case 59:C+=";";default:if(dr(k=Ys(C,t,n,u,c,i,s,O,_=[],m=[],d),o),D===123)if(c===0)yr(C,t,k,k,_,o,d,s,m);else switch(f===99&&Re(C,3)===110?100:f){case 100:case 108:case 109:case 115:yr(e,k,k,r&&dr(Ys(e,k,k,0,0,i,s,O,i,_=[],d),m),i,m,d,s,r?_:m);break;default:yr(C,k,k,k,[""],m,0,s,m)}}u=c=h=0,y=M=1,O=C="",d=a;break;case 58:d=1+ct(C),h=b;default:if(y<1){if(D==123)--y;else if(D==125&&y++==0&&w0()==125)continue}switch(C+=fr(D),D*y){case 38:M=c>0?1:(C+="\f",-1);break;case 44:s[u++]=(ct(C)-1)*M,M=1;break;case 64:ft()===45&&(C+=mr(He())),f=ft(),c=d=ct(O=C+=O0(gr())),D++;break;case 45:b===45&&ct(C)==2&&(y=0)}}return o}function Ys(e,t,n,r,i,o,a,s,l,u,c){for(var d=i-1,f=i===0?o:[""],h=Xi(f),b=0,y=0,v=0;b<r;++b)for(var M=0,D=xn(e,d+1,d=v0(y=a[b])),O=e;M<h;++M)(O=Ls(y>0?f[M]+" "+D:fe(D,/&\f/g,f[M])))&&(l[v++]=O);return pr(e,t,n,i===0?Gi:s,l,u,c)}function j0(e,t,n){return pr(e,t,n,Wi,fr(T0()),xn(e,2,-2),0)}function Vs(e,t,n,r){return pr(e,t,n,Ki,xn(e,0,r),xn(e,r+1,-1),r)}function Vt(e,t){for(var n="",r=Xi(e),i=0;i<r;i++)n+=t(e[i],i,e,t)||"";return n}function A0(e,t,n,r){switch(e.type){case y0:if(e.children.length)break;case m0:case Ki:return e.return=e.return||e.value;case Wi:return"";case $s:return e.return=e.value+"{"+Vt(e.children,r)+"}";case Gi:e.value=e.props.join(",")}return ct(n=Vt(e.children,r))?e.return=e.value+"{"+n+"}":""}function S0(e){var t=Xi(e);return function(n,r,i,o){for(var a="",s=0;s<t;s++)a+=e[s](n,r,i,o)||"";return a}}function I0(e){return function(t){t.root||(t=t.return)&&e(t)}}var k0=function(t,n,r){for(var i=0,o=0;i=o,o=ft(),i===38&&o===12&&(n[r]=1),!Tn(o);)He();return _n(t,qe)},z0=function(t,n){var r=-1,i=44;do switch(Tn(i)){case 0:i===38&&ft()===12&&(n[r]=1),t[r]+=k0(qe-1,n,r);break;case 2:t[r]+=mr(i);break;case 4:if(i===44){t[++r]=ft()===58?"&\f":"",n[r]=t[r].length;break}default:t[r]+=fr(i)}while(i=He());return t},R0=function(t,n){return Us(z0(Fs(t),n))},Bs=new WeakMap,$0=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,r=t.parent,i=t.column===r.column&&t.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!Bs.get(r))&&!i){Bs.set(t,!0);for(var o=[],a=R0(n,o),s=r.props,l=0,u=0;l<a.length;l++)for(var c=0;c<s.length;c++,u++)t.props[u]=o[l]?a[l].replace(/&\f/g,s[c]):s[c]+" "+a[l]}}},L0=function(t){if(t.type==="decl"){var n=t.value;n.charCodeAt(0)===108&&n.charCodeAt(2)===98&&(t.return="",t.value="")}},P0="emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason",F0=function(t){return t.type==="comm"&&t.children.indexOf(P0)>-1},U0=function(t){return function(n,r,i){if(!(n.type!=="rule"||t.compat)){var o=n.value.match(/(:first|:nth|:nth-last)-child/g);if(o){for(var a=!!n.parent,s=a?n.parent.children:i,l=s.length-1;l>=0;l--){var u=s[l];if(u.line<n.line)break;if(u.column<n.column){if(F0(u))return;break}}o.forEach(function(c){console.error('The pseudo class "'+c+'" is potentially unsafe when doing server-side rendering. Try changing it to "'+c.split("-child")[0]+'-of-type".')})}}}},qs=function(t){return t.type.charCodeAt(1)===105&&t.type.charCodeAt(0)===64},Y0=function(t,n){for(var r=t-1;r>=0;r--)if(!qs(n[r]))return!0;return!1},Qs=function(t){t.type="",t.value="",t.return="",t.children="",t.props=""},V0=function(t,n,r){qs(t)&&(t.parent?(console.error("`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles."),Qs(t)):Y0(n,r)&&(console.error("`@import` rules can't be after other rules. Please put your `@import` rules before your other rules."),Qs(t)))};function Ws(e,t){switch(x0(e,t)){case 5103:return ce+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return ce+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return ce+e+cr+e+$e+e+e;case 6828:case 4268:return ce+e+$e+e+e;case 6165:return ce+e+$e+"flex-"+e+e;case 5187:return ce+e+fe(e,/(\w+).+(:[^]+)/,ce+"box-$1$2"+$e+"flex-$1$2")+e;case 5443:return ce+e+$e+"flex-item-"+fe(e,/flex-|-self/,"")+e;case 4675:return ce+e+$e+"flex-line-pack"+fe(e,/align-content|flex-|-self/,"")+e;case 5548:return ce+e+$e+fe(e,"shrink","negative")+e;case 5292:return ce+e+$e+fe(e,"basis","preferred-size")+e;case 6060:return ce+"box-"+fe(e,"-grow","")+ce+e+$e+fe(e,"grow","positive")+e;case 4554:return ce+fe(e,/([^-])(transform)/g,"$1"+ce+"$2")+e;case 6187:return fe(fe(fe(e,/(zoom-|grab)/,ce+"$1"),/(image-set)/,ce+"$1"),e,"")+e;case 5495:case 3959:return fe(e,/(image-set\([^]*)/,ce+"$1$`$1");case 4968:return fe(fe(e,/(.+:)(flex-)?(.*)/,ce+"box-pack:$3"+$e+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+ce+e+e;case 4095:case 3583:case 4068:case 2532:return fe(e,/(.+)-inline(.+)/,ce+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(ct(e)-1-t>6)switch(Re(e,t+1)){case 109:if(Re(e,t+4)!==45)break;case 102:return fe(e,/(.+:)(.+)-([^]+)/,"$1"+ce+"$2-$3$1"+cr+(Re(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Hi(e,"stretch")?Ws(fe(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(Re(e,t+1)!==115)break;case 6444:switch(Re(e,ct(e)-3-(~Hi(e,"!important")&&10))){case 107:return fe(e,":",":"+ce)+e;case 101:return fe(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+ce+(Re(e,14)===45?"inline-":"")+"box$3$1"+ce+"$2$3$1"+$e+"$2box$3")+e}break;case 5936:switch(Re(e,t+11)){case 114:return ce+e+$e+fe(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return ce+e+$e+fe(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return ce+e+$e+fe(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return ce+e+$e+e+e}return e}var B0=function(t,n,r,i){if(t.length>-1&&!t.return)switch(t.type){case Ki:t.return=Ws(t.value,t.length);break;case $s:return Vt([Mn(t,{value:fe(t.value,"@","@"+ce)})],i);case Gi:if(t.length)return _0(t.props,function(o){switch(M0(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return Vt([Mn(t,{props:[fe(o,/:(read-\w+)/,":"+cr+"$1")]})],i);case"::placeholder":return Vt([Mn(t,{props:[fe(o,/:(plac\w+)/,":"+ce+"input-$1")]}),Mn(t,{props:[fe(o,/:(plac\w+)/,":"+cr+"$1")]}),Mn(t,{props:[fe(o,/:(plac\w+)/,$e+"input-$1")]})],i)}return""})}},q0=[B0],Q0=function(t){var n=t.key;if(process.env.NODE_ENV!=="production"&&!n)throw new Error(`You have to configure \`key\` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.
|
|
128
|
+
If multiple caches share the same key they might "fight" for each other's style elements.`);if(n==="css"){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,function(y){var v=y.getAttribute("data-emotion");v.indexOf(" ")!==-1&&(document.head.appendChild(y),y.setAttribute("data-s",""))})}var i=t.stylisPlugins||q0;if(process.env.NODE_ENV!=="production"&&/[^a-z-]/.test(n))throw new Error('Emotion key must only contain lower case alphabetical characters and - but "'+n+'" was passed');var o={},a,s=[];a=t.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+n+' "]'),function(y){for(var v=y.getAttribute("data-emotion").split(" "),M=1;M<v.length;M++)o[v[M]]=!0;s.push(y)});var l,u=[$0,L0];process.env.NODE_ENV!=="production"&&u.push(U0({get compat(){return b.compat}}),V0);{var c,d=[A0,process.env.NODE_ENV!=="production"?function(y){y.root||(y.return?c.insert(y.return):y.value&&y.type!==Wi&&c.insert(y.value+"{}"))}:I0(function(y){c.insert(y)})],f=S0(u.concat(i,d)),h=function(v){return Vt(C0(v),f)};l=function(v,M,D,O){c=D,process.env.NODE_ENV!=="production"&&M.map!==void 0&&(c={insert:function(m){D.insert(m+M.map)}}),h(v?v+"{"+M.styles+"}":M.styles),O&&(b.inserted[M.name]=!0)}}var b={key:n,sheet:new g0({key:n,container:a,nonce:t.nonce,speedy:t.speedy,prepend:t.prepend,insertionPoint:t.insertionPoint}),nonce:t.nonce,inserted:o,registered:{},insert:l};return b.sheet.hydrate(s),b},W0=!0;function Gs(e,t,n){var r="";return n.split(" ").forEach(function(i){e[i]!==void 0?t.push(e[i]+";"):r+=i+" "}),r}var Zi=function(t,n,r){var i=t.key+"-"+n.name;(r===!1||W0===!1)&&t.registered[i]===void 0&&(t.registered[i]=n.styles)},Ks=function(t,n,r){Zi(t,n,r);var i=t.key+"-"+n.name;if(t.inserted[n.name]===void 0){var o=n;do t.insert(n===o?"."+i:"",o,t.sheet,!0),o=o.next;while(o!==void 0)}};function G0(e){for(var t=0,n,r=0,i=e.length;i>=4;++r,i-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(i){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var K0={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},Hs=`You have illegal escape sequence in your template literal, most likely inside content's property value.
|
|
129
129
|
Because you write your CSS inside a JavaScript string you actually have to do double escaping, so for example "content: '\\00d7';" should become "content: '\\\\00d7';".
|
|
130
130
|
You can read more about this here:
|
|
131
|
-
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`,
|
|
131
|
+
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`,H0="You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).",X0=/[A-Z]|^ms/g,Xs=/_EMO_([^_]+?)_([^]*?)_EMO_/g,eo=function(t){return t.charCodeAt(1)===45},Js=function(t){return t!=null&&typeof t!="boolean"},to=Rs(function(e){return eo(e)?e:e.replace(X0,"-$&").toLowerCase()}),vr=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(Xs,function(r,i,o){return nt={name:i,styles:o,next:nt},i})}return K0[t]!==1&&!eo(t)&&typeof n=="number"&&n!==0?n+"px":n};if(process.env.NODE_ENV!=="production"){var J0=/(var|attr|counters?|url|element|(((repeating-)?(linear|radial))|conic)-gradient)\(|(no-)?(open|close)-quote/,Z0=["normal","none","initial","inherit","unset"],eg=vr,tg=/^-ms-/,ng=/-(.)/g,Zs={};vr=function(t,n){if(t==="content"&&(typeof n!="string"||Z0.indexOf(n)===-1&&!J0.test(n)&&(n.charAt(0)!==n.charAt(n.length-1)||n.charAt(0)!=='"'&&n.charAt(0)!=="'")))throw new Error("You seem to be using a value for 'content' without quotes, try replacing it with `content: '\""+n+"\"'`");var r=eg(t,n);return r!==""&&!eo(t)&&t.indexOf("-")!==-1&&Zs[t]===void 0&&(Zs[t]=!0,console.error("Using kebab-case for css properties in objects is not supported. Did you mean "+t.replace(tg,"ms-").replace(ng,function(i,o){return o.toUpperCase()})+"?")),r}}var eu="Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.";function wn(e,t,n){if(n==null)return"";if(n.__emotion_styles!==void 0){if(process.env.NODE_ENV!=="production"&&n.toString()==="NO_COMPONENT_SELECTOR")throw new Error(eu);return n}switch(typeof n){case"boolean":return"";case"object":{if(n.anim===1)return nt={name:n.name,styles:n.styles,next:nt},n.name;if(n.styles!==void 0){var r=n.next;if(r!==void 0)for(;r!==void 0;)nt={name:r.name,styles:r.styles,next:nt},r=r.next;var i=n.styles+";";return process.env.NODE_ENV!=="production"&&n.map!==void 0&&(i+=n.map),i}return rg(e,t,n)}case"function":{if(e!==void 0){var o=nt,a=n(e);return nt=o,wn(e,t,a)}else process.env.NODE_ENV!=="production"&&console.error("Functions that are interpolated in css calls will be stringified.\nIf you want to have a css call based on props, create a function that returns a css call like this\nlet dynamicStyle = (props) => css`color: ${props.color}`\nIt can be called directly with props or interpolated in a styled call like this\nlet SomeComponent = styled('div')`${dynamicStyle}`");break}case"string":if(process.env.NODE_ENV!=="production"){var s=[],l=n.replace(Xs,function(c,d,f){var h="animation"+s.length;return s.push("const "+h+" = keyframes`"+f.replace(/^@keyframes animation-\w+/,"")+"`"),"${"+h+"}"});s.length&&console.error("`keyframes` output got interpolated into plain string, please wrap it with `css`.\n\nInstead of doing this:\n\n"+[].concat(s,["`"+l+"`"]).join(`
|
|
132
132
|
`)+`
|
|
133
133
|
|
|
134
134
|
You should wrap it with \`css\` like this:
|
|
135
135
|
|
|
136
|
-
`+("css`"+l+"`"))}break}if(t==null)return n;var u=t[n];return u!==void 0?u:n}function
|
|
136
|
+
`+("css`"+l+"`"))}break}if(t==null)return n;var u=t[n];return u!==void 0?u:n}function rg(e,t,n){var r="";if(Array.isArray(n))for(var i=0;i<n.length;i++)r+=wn(e,t,n[i])+";";else for(var o in n){var a=n[o];if(typeof a!="object")t!=null&&t[a]!==void 0?r+=o+"{"+t[a]+"}":Js(a)&&(r+=to(o)+":"+vr(o,a)+";");else{if(o==="NO_COMPONENT_SELECTOR"&&process.env.NODE_ENV!=="production")throw new Error(eu);if(Array.isArray(a)&&typeof a[0]=="string"&&(t==null||t[a[0]]===void 0))for(var s=0;s<a.length;s++)Js(a[s])&&(r+=to(o)+":"+vr(o,a[s])+";");else{var l=wn(e,t,a);switch(o){case"animation":case"animationName":{r+=to(o)+":"+l+";";break}default:process.env.NODE_ENV!=="production"&&o==="undefined"&&console.error(H0),r+=o+"{"+l+"}"}}}}return r}var tu=/label:\s*([^\s;\n{]+)\s*(;|$)/g,nu;process.env.NODE_ENV!=="production"&&(nu=/\/\*#\ssourceMappingURL=data:application\/json;\S+\s+\*\//g);var nt,no=function(t,n,r){if(t.length===1&&typeof t[0]=="object"&&t[0]!==null&&t[0].styles!==void 0)return t[0];var i=!0,o="";nt=void 0;var a=t[0];a==null||a.raw===void 0?(i=!1,o+=wn(r,n,a)):(process.env.NODE_ENV!=="production"&&a[0]===void 0&&console.error(Hs),o+=a[0]);for(var s=1;s<t.length;s++)o+=wn(r,n,t[s]),i&&(process.env.NODE_ENV!=="production"&&a[s]===void 0&&console.error(Hs),o+=a[s]);var l;process.env.NODE_ENV!=="production"&&(o=o.replace(nu,function(f){return l=f,""})),tu.lastIndex=0;for(var u="",c;(c=tu.exec(o))!==null;)u+="-"+c[1];var d=G0(o)+u;return process.env.NODE_ENV!=="production"?{name:d,styles:o,map:l,next:nt,toString:function(){return"You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."}}:{name:d,styles:o,next:nt}},ig=function(t){return t()},og=ue["useInsertionEffect"]?ue["useInsertionEffect"]:!1,ru=og||ig,ag={}.hasOwnProperty,ro=ue.createContext(typeof HTMLElement<"u"?Q0({key:"css"}):null);process.env.NODE_ENV!=="production"&&(ro.displayName="EmotionCacheContext"),ro.Provider;var iu=function(t){return U.forwardRef(function(n,r){var i=U.useContext(ro);return t(n,i,r)})},br=ue.createContext({});process.env.NODE_ENV!=="production"&&(br.displayName="EmotionThemeContext");var ou="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",au="__EMOTION_LABEL_PLEASE_DO_NOT_USE__",sg=function(t){var n=t.cache,r=t.serialized,i=t.isStringTag;return Zi(n,r,i),ru(function(){return Ks(n,r,i)}),null},ug=iu(function(e,t,n){var r=e.css;typeof r=="string"&&t.registered[r]!==void 0&&(r=t.registered[r]);var i=e[ou],o=[r],a="";typeof e.className=="string"?a=Gs(t.registered,o,e.className):e.className!=null&&(a=e.className+" ");var s=no(o,void 0,ue.useContext(br));if(process.env.NODE_ENV!=="production"&&s.name.indexOf("-")===-1){var l=e[au];l&&(s=no([s,"label:"+l+";"]))}a+=t.key+"-"+s.name;var u={};for(var c in e)ag.call(e,c)&&c!=="css"&&c!==ou&&(process.env.NODE_ENV==="production"||c!==au)&&(u[c]=e[c]);return u.ref=n,u.className=a,ue.createElement(ue.Fragment,null,ue.createElement(sg,{cache:t,serialized:s,isStringTag:typeof i=="string"}),ue.createElement(i,u))});process.env.NODE_ENV!=="production"&&(ug.displayName="EmotionCssPropInternal");var lg=d0,cg=function(t){return t!=="theme"},su=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?lg:cg},uu=function(t,n,r){var i;if(n){var o=n.shouldForwardProp;i=t.__emotion_forwardProp&&o?function(a){return t.__emotion_forwardProp(a)&&o(a)}:o}return typeof i!="function"&&r&&(i=t.__emotion_forwardProp),i},lu=`You have illegal escape sequence in your template literal, most likely inside content's property value.
|
|
137
137
|
Because you write your CSS inside a JavaScript string you actually have to do double escaping, so for example "content: '\\00d7';" should become "content: '\\\\00d7';".
|
|
138
138
|
You can read more about this here:
|
|
139
|
-
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`,
|
|
140
|
-
You may have forgotten to import it.`);var r=t.__emotion_real===t,i=r&&t.__emotion_base||t,o,a;n!==void 0&&(o=n.label,a=n.target);var s=
|
|
139
|
+
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`,fg=function(t){var n=t.cache,r=t.serialized,i=t.isStringTag;return Zi(n,r,i),ru(function(){return Ks(n,r,i)}),null},dg=function e(t,n){if(process.env.NODE_ENV!=="production"&&t===void 0)throw new Error(`You are trying to create a styled element with an undefined component.
|
|
140
|
+
You may have forgotten to import it.`);var r=t.__emotion_real===t,i=r&&t.__emotion_base||t,o,a;n!==void 0&&(o=n.label,a=n.target);var s=uu(t,n,r),l=s||su(i),u=!l("as");return function(){var c=arguments,d=r&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(o!==void 0&&d.push("label:"+o+";"),c[0]==null||c[0].raw===void 0)d.push.apply(d,c);else{process.env.NODE_ENV!=="production"&&c[0][0]===void 0&&console.error(lu),d.push(c[0][0]);for(var f=c.length,h=1;h<f;h++)process.env.NODE_ENV!=="production"&&c[0][h]===void 0&&console.error(lu),d.push(c[h],c[0][h])}var b=iu(function(y,v,M){var D=u&&y.as||i,O="",_=[],m=y;if(y.theme==null){m={};for(var k in y)m[k]=y[k];m.theme=ue.useContext(br)}typeof y.className=="string"?O=Gs(v.registered,_,y.className):y.className!=null&&(O=y.className+" ");var C=no(d.concat(_),v.registered,m);O+=v.key+"-"+C.name,a!==void 0&&(O+=" "+a);var S=u&&s===void 0?su(D):l,I={};for(var E in y)u&&E==="as"||S(E)&&(I[E]=y[E]);return I.className=O,I.ref=M,ue.createElement(ue.Fragment,null,ue.createElement(fg,{cache:v,serialized:C,isStringTag:typeof D=="string"}),ue.createElement(D,I))});return b.displayName=o!==void 0?o:"Styled("+(typeof i=="string"?i:i.displayName||i.name||"Component")+")",b.defaultProps=t.defaultProps,b.__emotion_real=b,b.__emotion_base=i,b.__emotion_styles=d,b.__emotion_forwardProp=s,Object.defineProperty(b,"toString",{value:function(){return a===void 0&&process.env.NODE_ENV!=="production"?"NO_COMPONENT_SELECTOR":"."+a}}),b.withComponent=function(y,v){return e(y,ae({},n,v,{shouldForwardProp:uu(b,v,!0)})).apply(void 0,d)},b}},hg=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"],io=dg.bind();hg.forEach(function(e){io[e]=io(e)});/**
|
|
141
141
|
* @mui/styled-engine v5.13.2
|
|
142
142
|
*
|
|
143
143
|
* @license MIT
|
|
144
144
|
* This source code is licensed under the MIT license found in the
|
|
145
145
|
* LICENSE file in the root directory of this source tree.
|
|
146
|
-
*/function
|
|
147
|
-
`)):r.some(o=>o===void 0)&&console.error(`MUI: the styled(${i})(...args) API requires all its args to be defined.`),n(...r)}:n}const
|
|
146
|
+
*/function pg(e,t){const n=io(e,t);return process.env.NODE_ENV!=="production"?(...r)=>{const i=typeof e=="string"?`"${e}"`:"component";return r.length===0?console.error([`MUI: Seems like you called \`styled(${i})()\` without a \`style\` argument.`,'You must provide a `styles` argument: `styled("div")(styleYouForgotToPass)`.'].join(`
|
|
147
|
+
`)):r.some(o=>o===void 0)&&console.error(`MUI: the styled(${i})(...args) API requires all its args to be defined.`),n(...r)}:n}const gg=(e,t)=>{Array.isArray(e.__emotion_styles)&&(e.__emotion_styles=t(e.__emotion_styles))},mg=["values","unit","step"],yg=e=>{const t=Object.keys(e).map(n=>({key:n,val:e[n]}))||[];return t.sort((n,r)=>n.val-r.val),t.reduce((n,r)=>ae({},n,{[r.key]:r.val}),{})};function vg(e){const{values:t={xs:0,sm:600,md:900,lg:1200,xl:1536},unit:n="px",step:r=5}=e,i=bt(e,mg),o=yg(t),a=Object.keys(o);function s(f){return`@media (min-width:${typeof t[f]=="number"?t[f]:f}${n})`}function l(f){return`@media (max-width:${(typeof t[f]=="number"?t[f]:f)-r/100}${n})`}function u(f,h){const b=a.indexOf(h);return`@media (min-width:${typeof t[f]=="number"?t[f]:f}${n}) and (max-width:${(b!==-1&&typeof t[a[b]]=="number"?t[a[b]]:h)-r/100}${n})`}function c(f){return a.indexOf(f)+1<a.length?u(f,a[a.indexOf(f)+1]):s(f)}function d(f){const h=a.indexOf(f);return h===0?s(a[1]):h===a.length-1?l(a[h]):u(f,a[a.indexOf(f)+1]).replace("@media","@media not all and")}return ae({keys:a,values:o,up:s,down:l,between:u,only:c,not:d,unit:n},i)}const bg={borderRadius:4},wt=process.env.NODE_ENV!=="production"?xe.oneOfType([xe.number,xe.string,xe.object,xe.array]):{};function Nn(e,t){return t?vt(e,t,{clone:!1}):e}const oo={xs:0,sm:600,md:900,lg:1200,xl:1536},cu={keys:["xs","sm","md","lg","xl"],up:e=>`@media (min-width:${oo[e]}px)`};function xt(e,t,n){const r=e.theme||{};if(Array.isArray(t)){const o=r.breakpoints||cu;return t.reduce((a,s,l)=>(a[o.up(o.keys[l])]=n(t[l]),a),{})}if(typeof t=="object"){const o=r.breakpoints||cu;return Object.keys(t).reduce((a,s)=>{if(Object.keys(o.values||oo).indexOf(s)!==-1){const l=o.up(s);a[l]=n(t[s],s)}else{const l=s;a[l]=t[l]}return a},{})}return n(t)}function xg(e={}){var t;return((t=e.keys)==null?void 0:t.reduce((r,i)=>{const o=e.up(i);return r[o]={},r},{}))||{}}function Mg(e,t){return e.reduce((n,r)=>{const i=n[r];return(!i||Object.keys(i).length===0)&&delete n[r],n},t)}function xr(e,t,n=!0){if(!t||typeof t!="string")return null;if(e&&e.vars&&n){const r=`vars.${t}`.split(".").reduce((i,o)=>i&&i[o]?i[o]:null,e);if(r!=null)return r}return t.split(".").reduce((r,i)=>r&&r[i]!=null?r[i]:null,e)}function Mr(e,t,n,r=n){let i;return typeof e=="function"?i=e(n):Array.isArray(e)?i=e[n]||r:i=xr(e,n)||r,t&&(i=t(i,r,e)),i}function ve(e){const{prop:t,cssProperty:n=e.prop,themeKey:r,transform:i}=e,o=a=>{if(a[t]==null)return null;const s=a[t],l=a.theme,u=xr(l,r)||{};return xt(a,s,d=>{let f=Mr(u,i,d);return d===f&&typeof d=="string"&&(f=Mr(u,i,`${t}${d==="default"?"":lt(d)}`,d)),n===!1?f:{[n]:f}})};return o.propTypes=process.env.NODE_ENV!=="production"?{[t]:wt}:{},o.filterProps=[t],o}function _g(e){const t={};return n=>(t[n]===void 0&&(t[n]=e(n)),t[n])}const Tg={m:"margin",p:"padding"},wg={t:"Top",r:"Right",b:"Bottom",l:"Left",x:["Left","Right"],y:["Top","Bottom"]},fu={marginX:"mx",marginY:"my",paddingX:"px",paddingY:"py"},Ng=_g(e=>{if(e.length>2)if(fu[e])e=fu[e];else return[e];const[t,n]=e.split(""),r=Tg[t],i=wg[n]||"";return Array.isArray(i)?i.map(o=>r+o):[r+i]}),_r=["m","mt","mr","mb","ml","mx","my","margin","marginTop","marginRight","marginBottom","marginLeft","marginX","marginY","marginInline","marginInlineStart","marginInlineEnd","marginBlock","marginBlockStart","marginBlockEnd"],Tr=["p","pt","pr","pb","pl","px","py","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","paddingX","paddingY","paddingInline","paddingInlineStart","paddingInlineEnd","paddingBlock","paddingBlockStart","paddingBlockEnd"],Eg=[..._r,...Tr];function En(e,t,n,r){var i;const o=(i=xr(e,t,!1))!=null?i:n;return typeof o=="number"?a=>typeof a=="string"?a:(process.env.NODE_ENV!=="production"&&typeof a!="number"&&console.error(`MUI: Expected ${r} argument to be a number or a string, got ${a}.`),o*a):Array.isArray(o)?a=>typeof a=="string"?a:(process.env.NODE_ENV!=="production"&&(Number.isInteger(a)?a>o.length-1&&console.error([`MUI: The value provided (${a}) overflows.`,`The supported values are: ${JSON.stringify(o)}.`,`${a} > ${o.length-1}, you need to add the missing values.`].join(`
|
|
148
148
|
`)):console.error([`MUI: The \`theme.${t}\` array type cannot be combined with non integer values.You should either use an integer value that can be used as index, or define the \`theme.${t}\` as a number.`].join(`
|
|
149
149
|
`))),o[a]):typeof o=="function"?o:(process.env.NODE_ENV!=="production"&&console.error([`MUI: The \`theme.${t}\` value (${o}) is invalid.`,"It should be a number, an array or a function."].join(`
|
|
150
|
-
`)),()=>{})}function fu(e){return In(e,"spacing",8,"spacing")}function kn(e,t){if(typeof t=="string"||t==null)return t;const n=Math.abs(t),r=e(n);return t>=0?r:typeof r=="number"?-r:`-${r}`}function Ag(e,t){return n=>e.reduce((r,i)=>(r[i]=kn(t,n),r),{})}function Ig(e,t,n,r){if(t.indexOf(n)===-1)return null;const i=Cg(n),o=Ag(i,r),a=e[n];return xt(e,a,o)}function du(e,t){const n=fu(e.theme);return Object.keys(e).map(r=>Ig(e,t,r,n)).reduce(An,{})}function Ne(e){return du(e,kr)}Ne.propTypes=process.env.NODE_ENV!=="production"?kr.reduce((e,t)=>(e[t]=Et,e),{}):{},Ne.filterProps=kr;function Ee(e){return du(e,jr)}Ee.propTypes=process.env.NODE_ENV!=="production"?jr.reduce((e,t)=>(e[t]=Et,e),{}):{},Ee.filterProps=jr,process.env.NODE_ENV!=="production"&&Sg.reduce((e,t)=>(e[t]=Et,e),{});function kg(e=8){if(e.mui)return e;const t=fu({spacing:e}),n=(...r)=>(process.env.NODE_ENV!=="production"&&(r.length<=4||console.error(`MUI: Too many arguments provided, expected between 0 and 4, got ${r.length}`)),(r.length===0?[1]:r).map(o=>{const a=t(o);return typeof a=="number"?`${a}px`:a}).join(" "));return n.mui=!0,n}function zr(...e){const t=e.reduce((r,i)=>(i.filterProps.forEach(o=>{r[o]=i}),r),{}),n=r=>Object.keys(r).reduce((i,o)=>t[o]?An(i,t[o](r)):i,{});return n.propTypes=process.env.NODE_ENV!=="production"?e.reduce((r,i)=>Object.assign(r,i.propTypes),{}):{},n.filterProps=e.reduce((r,i)=>r.concat(i.filterProps),[]),n}function pt(e){return typeof e!="number"?e:`${e}px solid`}const jg=be({prop:"border",themeKey:"borders",transform:pt}),zg=be({prop:"borderTop",themeKey:"borders",transform:pt}),Rg=be({prop:"borderRight",themeKey:"borders",transform:pt}),$g=be({prop:"borderBottom",themeKey:"borders",transform:pt}),Lg=be({prop:"borderLeft",themeKey:"borders",transform:pt}),Pg=be({prop:"borderColor",themeKey:"palette"}),Fg=be({prop:"borderTopColor",themeKey:"palette"}),Ug=be({prop:"borderRightColor",themeKey:"palette"}),Yg=be({prop:"borderBottomColor",themeKey:"palette"}),Vg=be({prop:"borderLeftColor",themeKey:"palette"}),Rr=e=>{if(e.borderRadius!==void 0&&e.borderRadius!==null){const t=In(e.theme,"shape.borderRadius",4,"borderRadius"),n=r=>({borderRadius:kn(t,r)});return xt(e,e.borderRadius,n)}return null};Rr.propTypes=process.env.NODE_ENV!=="production"?{borderRadius:Et}:{},Rr.filterProps=["borderRadius"],zr(jg,zg,Rg,$g,Lg,Pg,Fg,Ug,Yg,Vg,Rr);const $r=e=>{if(e.gap!==void 0&&e.gap!==null){const t=In(e.theme,"spacing",8,"gap"),n=r=>({gap:kn(t,r)});return xt(e,e.gap,n)}return null};$r.propTypes=process.env.NODE_ENV!=="production"?{gap:Et}:{},$r.filterProps=["gap"];const Lr=e=>{if(e.columnGap!==void 0&&e.columnGap!==null){const t=In(e.theme,"spacing",8,"columnGap"),n=r=>({columnGap:kn(t,r)});return xt(e,e.columnGap,n)}return null};Lr.propTypes=process.env.NODE_ENV!=="production"?{columnGap:Et}:{},Lr.filterProps=["columnGap"];const Pr=e=>{if(e.rowGap!==void 0&&e.rowGap!==null){const t=In(e.theme,"spacing",8,"rowGap"),n=r=>({rowGap:kn(t,r)});return xt(e,e.rowGap,n)}return null};Pr.propTypes=process.env.NODE_ENV!=="production"?{rowGap:Et}:{},Pr.filterProps=["rowGap"];const qg=be({prop:"gridColumn"}),Bg=be({prop:"gridRow"}),Qg=be({prop:"gridAutoFlow"}),Wg=be({prop:"gridAutoColumns"}),Gg=be({prop:"gridAutoRows"}),Kg=be({prop:"gridTemplateColumns"}),Hg=be({prop:"gridTemplateRows"}),Xg=be({prop:"gridTemplateAreas"}),Jg=be({prop:"gridArea"});zr($r,Lr,Pr,qg,Bg,Qg,Wg,Gg,Kg,Hg,Xg,Jg);function Wt(e,t){return t==="grey"?t:e}const Zg=be({prop:"color",themeKey:"palette",transform:Wt}),em=be({prop:"bgcolor",cssProperty:"backgroundColor",themeKey:"palette",transform:Wt}),tm=be({prop:"backgroundColor",themeKey:"palette",transform:Wt});zr(Zg,em,tm);function et(e){return e<=1&&e!==0?`${e*100}%`:e}const nm=be({prop:"width",transform:et}),fo=e=>{if(e.maxWidth!==void 0&&e.maxWidth!==null){const t=n=>{var r;return{maxWidth:((r=e.theme)==null||(r=r.breakpoints)==null||(r=r.values)==null?void 0:r[n])||co[n]||et(n)}};return xt(e,e.maxWidth,t)}return null};fo.filterProps=["maxWidth"];const rm=be({prop:"minWidth",transform:et}),im=be({prop:"height",transform:et}),om=be({prop:"maxHeight",transform:et}),am=be({prop:"minHeight",transform:et});be({prop:"size",cssProperty:"width",transform:et}),be({prop:"size",cssProperty:"height",transform:et});const sm=be({prop:"boxSizing"});zr(nm,fo,rm,im,om,am,sm);const ho={border:{themeKey:"borders",transform:pt},borderTop:{themeKey:"borders",transform:pt},borderRight:{themeKey:"borders",transform:pt},borderBottom:{themeKey:"borders",transform:pt},borderLeft:{themeKey:"borders",transform:pt},borderColor:{themeKey:"palette"},borderTopColor:{themeKey:"palette"},borderRightColor:{themeKey:"palette"},borderBottomColor:{themeKey:"palette"},borderLeftColor:{themeKey:"palette"},borderRadius:{themeKey:"shape.borderRadius",style:Rr},color:{themeKey:"palette",transform:Wt},bgcolor:{themeKey:"palette",cssProperty:"backgroundColor",transform:Wt},backgroundColor:{themeKey:"palette",transform:Wt},p:{style:Ee},pt:{style:Ee},pr:{style:Ee},pb:{style:Ee},pl:{style:Ee},px:{style:Ee},py:{style:Ee},padding:{style:Ee},paddingTop:{style:Ee},paddingRight:{style:Ee},paddingBottom:{style:Ee},paddingLeft:{style:Ee},paddingX:{style:Ee},paddingY:{style:Ee},paddingInline:{style:Ee},paddingInlineStart:{style:Ee},paddingInlineEnd:{style:Ee},paddingBlock:{style:Ee},paddingBlockStart:{style:Ee},paddingBlockEnd:{style:Ee},m:{style:Ne},mt:{style:Ne},mr:{style:Ne},mb:{style:Ne},ml:{style:Ne},mx:{style:Ne},my:{style:Ne},margin:{style:Ne},marginTop:{style:Ne},marginRight:{style:Ne},marginBottom:{style:Ne},marginLeft:{style:Ne},marginX:{style:Ne},marginY:{style:Ne},marginInline:{style:Ne},marginInlineStart:{style:Ne},marginInlineEnd:{style:Ne},marginBlock:{style:Ne},marginBlockStart:{style:Ne},marginBlockEnd:{style:Ne},displayPrint:{cssProperty:!1,transform:e=>({"@media print":{display:e}})},display:{},overflow:{},textOverflow:{},visibility:{},whiteSpace:{},flexBasis:{},flexDirection:{},flexWrap:{},justifyContent:{},alignItems:{},alignContent:{},order:{},flex:{},flexGrow:{},flexShrink:{},alignSelf:{},justifyItems:{},justifySelf:{},gap:{style:$r},rowGap:{style:Pr},columnGap:{style:Lr},gridColumn:{},gridRow:{},gridAutoFlow:{},gridAutoColumns:{},gridAutoRows:{},gridTemplateColumns:{},gridTemplateRows:{},gridTemplateAreas:{},gridArea:{},position:{},zIndex:{themeKey:"zIndex"},top:{},right:{},bottom:{},left:{},boxShadow:{themeKey:"shadows"},width:{transform:et},maxWidth:{style:fo},minWidth:{transform:et},height:{transform:et},maxHeight:{transform:et},minHeight:{transform:et},boxSizing:{},fontFamily:{themeKey:"typography"},fontSize:{themeKey:"typography"},fontStyle:{themeKey:"typography"},fontWeight:{themeKey:"typography"},letterSpacing:{},textTransform:{},lineHeight:{},textAlign:{},typography:{cssProperty:!1,themeKey:"typography"}};function um(...e){const t=e.reduce((r,i)=>r.concat(Object.keys(i)),[]),n=new Set(t);return e.every(r=>n.size===Object.keys(r).length)}function lm(e,t){return typeof e=="function"?e(t):e}function cm(){function e(n,r,i,o){const a={[n]:r,theme:i},s=o[n];if(!s)return{[n]:r};const{cssProperty:l=n,themeKey:u,transform:c,style:d}=s;if(r==null)return null;if(u==="typography"&&r==="inherit")return{[n]:r};const f=Ar(i,u)||{};return d?d(a):xt(a,r,y=>{let m=Ir(f,c,y);return y===m&&typeof y=="string"&&(m=Ir(f,c,`${n}${y==="default"?"":ft(y)}`,y)),l===!1?m:{[l]:m}})}function t(n){var r;const{sx:i,theme:o={}}=n||{};if(!i)return null;const a=(r=o.unstable_sxConfig)!=null?r:ho;function s(l){let u=l;if(typeof l=="function")u=l(o);else if(typeof l!="object")return l;if(!u)return null;const c=wg(o.breakpoints),d=Object.keys(c);let f=c;return Object.keys(u).forEach(h=>{const y=lm(u[h],o);if(y!=null)if(typeof y=="object")if(a[h])f=An(f,e(h,y,o,a));else{const m=xt({theme:o},y,v=>({[h]:v}));um(m,y)?f[h]=t({sx:y,theme:o}):f=An(f,m)}else f=An(f,e(h,y,o,a))}),Ng(d,f)}return Array.isArray(i)?i.map(s):s(i)}return t}const hu=cm();hu.filterProps=["sx"];const po=hu,fm=["breakpoints","palette","spacing","shape"];function go(e={},...t){const{breakpoints:n={},palette:r={},spacing:i,shape:o={}}=e,a=Sr(e,fm),s=xg(n),l=kg(i);let u=_t({breakpoints:s,direction:"ltr",components:{},palette:Re({mode:"light"},r),spacing:l,shape:Re({},Tg,o)},a);return u=t.reduce((c,d)=>_t(c,d),u),u.unstable_sxConfig=Re({},ho,a==null?void 0:a.unstable_sxConfig),u.unstable_sx=function(d){return po({sx:d,theme:this})},u}function dm(e){return Object.keys(e).length===0}function hm(e=null){const t=ue.useContext(Cr);return!t||dm(t)?e:t}const pm=go();function gm(e=pm){return hm(e)}const mm=["variant"];function pu(e){return e.length===0}function gu(e){const{variant:t}=e,n=Sr(e,mm);let r=t||"";return Object.keys(n).sort().forEach(i=>{i==="color"?r+=pu(r)?e[i]:ft(e[i]):r+=`${pu(r)?i:ft(i)}${ft(e[i].toString())}`}),r}const ym=["name","slot","skipVariantsResolver","skipSx","overridesResolver"];function vm(e){return Object.keys(e).length===0}function bm(e){return typeof e=="string"&&e.charCodeAt(0)>96}const Mm=(e,t)=>t.components&&t.components[e]&&t.components[e].styleOverrides?t.components[e].styleOverrides:null,_m=(e,t)=>{let n=[];t&&t.components&&t.components[e]&&t.components[e].variants&&(n=t.components[e].variants);const r={};return n.forEach(i=>{const o=gu(i.props);r[o]=i.style}),r},xm=(e,t,n,r)=>{var i;const{ownerState:o={}}=e,a=[],s=n==null||(i=n.components)==null||(i=i[r])==null?void 0:i.variants;return s&&s.forEach(l=>{let u=!0;Object.keys(l.props).forEach(c=>{o[c]!==l.props[c]&&e[c]!==l.props[c]&&(u=!1)}),u&&a.push(t[gu(l.props)])}),a};function Fr(e){return e!=="ownerState"&&e!=="theme"&&e!=="sx"&&e!=="as"}const Tm=go(),wm=e=>e.charAt(0).toLowerCase()+e.slice(1);function jn({defaultTheme:e,theme:t,themeId:n}){return vm(t)?e:t[n]||t}function Nm(e={}){const{themeId:t,defaultTheme:n=Tm,rootShouldForwardProp:r=Fr,slotShouldForwardProp:i=Fr}=e,o=a=>po(Re({},a,{theme:jn(Re({},a,{defaultTheme:n,themeId:t}))}));return o.__mui_systemSx=!0,(a,s={})=>{bg(a,x=>x.filter(g=>!(g!=null&&g.__mui_systemSx)));const{name:l,slot:u,skipVariantsResolver:c,skipSx:d,overridesResolver:f}=s,h=Sr(s,ym),y=c!==void 0?c:u&&u!=="Root"||!1,m=d||!1;let v;process.env.NODE_ENV!=="production"&&l&&(v=`${l}-${wm(u||"Root")}`);let M=Fr;u==="Root"?M=r:u?M=i:bm(a)&&(M=void 0);const D=vg(a,Re({shouldForwardProp:M,label:v},h)),O=(x,...g)=>{const j=g?g.map(E=>typeof E=="function"&&E.__emotion_real!==E?$=>E(Re({},$,{theme:jn(Re({},$,{defaultTheme:n,themeId:t}))})):E):[];let C=x;l&&f&&j.push(E=>{const $=jn(Re({},E,{defaultTheme:n,themeId:t})),X=Mm(l,$);if(X){const H={};return Object.entries(X).forEach(([b,z])=>{H[b]=typeof z=="function"?z(Re({},E,{theme:$})):z}),f(E,H)}return null}),l&&!y&&j.push(E=>{const $=jn(Re({},E,{defaultTheme:n,themeId:t}));return xm(E,_m(l,$),$,l)}),m||j.push(o);const I=j.length-g.length;if(Array.isArray(x)&&I>0){const E=new Array(I).fill("");C=[...x,...E],C.raw=[...x.raw,...E]}else typeof x=="function"&&x.__emotion_real!==x&&(C=E=>x(Re({},E,{theme:jn(Re({},E,{defaultTheme:n,themeId:t}))})));const k=D(C,...j);if(process.env.NODE_ENV!=="production"){let E;l&&(E=`${l}${u||""}`),E===void 0&&(E=`Styled(${Bp(a)})`),k.displayName=E}return a.muiName&&(k.muiName=a.muiName),k};return D.withConfig&&(O.withConfig=D.withConfig),O}}function Em(e){const{theme:t,name:n,props:r}=e;return!t||!t.components||!t.components[n]||!t.components[n].defaultProps?r:As(t.components[n].defaultProps,r)}function Dm({props:e,name:t,defaultTheme:n,themeId:r}){let i=gm(n);return r&&(i=i[r]||i),Em({theme:i,name:t,props:e})}function mu(e,t=0,n=1){return process.env.NODE_ENV!=="production"&&(e<t||e>n)&&console.error(`MUI: The value provided ${e} is out of range [${t}, ${n}].`),Math.min(Math.max(t,e),n)}function Om(e){e=e.slice(1);const t=new RegExp(`.{1,${e.length>=6?2:1}}`,"g");let n=e.match(t);return n&&n[0].length===1&&(n=n.map(r=>r+r)),n?`rgb${n.length===4?"a":""}(${n.map((r,i)=>i<3?parseInt(r,16):Math.round(parseInt(r,16)/255*1e3)/1e3).join(", ")})`:""}function Gt(e){if(e.type)return e;if(e.charAt(0)==="#")return Gt(Om(e));const t=e.indexOf("("),n=e.substring(0,t);if(["rgb","rgba","hsl","hsla","color"].indexOf(n)===-1)throw new Error(process.env.NODE_ENV!=="production"?`MUI: Unsupported \`${e}\` color.
|
|
151
|
-
The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().`:
|
|
152
|
-
The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rgb, rec-2020.`:
|
|
153
|
-
`))}return v}const f=({color:
|
|
154
|
-
The color object needs to have a \`main\` property or a \`${M}\` property.`:
|
|
155
|
-
\`color.main\` should be a string, but \`${JSON.stringify(
|
|
150
|
+
`)),()=>{})}function du(e){return En(e,"spacing",8,"spacing")}function Dn(e,t){if(typeof t=="string"||t==null)return t;const n=Math.abs(t),r=e(n);return t>=0?r:typeof r=="number"?-r:`-${r}`}function Dg(e,t){return n=>e.reduce((r,i)=>(r[i]=Dn(t,n),r),{})}function Og(e,t,n,r){if(t.indexOf(n)===-1)return null;const i=Ng(n),o=Dg(i,r),a=e[n];return xt(e,a,o)}function hu(e,t){const n=du(e.theme);return Object.keys(e).map(r=>Og(e,t,r,n)).reduce(Nn,{})}function we(e){return hu(e,_r)}we.propTypes=process.env.NODE_ENV!=="production"?_r.reduce((e,t)=>(e[t]=wt,e),{}):{},we.filterProps=_r;function Ne(e){return hu(e,Tr)}Ne.propTypes=process.env.NODE_ENV!=="production"?Tr.reduce((e,t)=>(e[t]=wt,e),{}):{},Ne.filterProps=Tr,process.env.NODE_ENV!=="production"&&Eg.reduce((e,t)=>(e[t]=wt,e),{});function Cg(e=8){if(e.mui)return e;const t=du({spacing:e}),n=(...r)=>(process.env.NODE_ENV!=="production"&&(r.length<=4||console.error(`MUI: Too many arguments provided, expected between 0 and 4, got ${r.length}`)),(r.length===0?[1]:r).map(o=>{const a=t(o);return typeof a=="number"?`${a}px`:a}).join(" "));return n.mui=!0,n}function wr(...e){const t=e.reduce((r,i)=>(i.filterProps.forEach(o=>{r[o]=i}),r),{}),n=r=>Object.keys(r).reduce((i,o)=>t[o]?Nn(i,t[o](r)):i,{});return n.propTypes=process.env.NODE_ENV!=="production"?e.reduce((r,i)=>Object.assign(r,i.propTypes),{}):{},n.filterProps=e.reduce((r,i)=>r.concat(i.filterProps),[]),n}function dt(e){return typeof e!="number"?e:`${e}px solid`}const jg=ve({prop:"border",themeKey:"borders",transform:dt}),Ag=ve({prop:"borderTop",themeKey:"borders",transform:dt}),Sg=ve({prop:"borderRight",themeKey:"borders",transform:dt}),Ig=ve({prop:"borderBottom",themeKey:"borders",transform:dt}),kg=ve({prop:"borderLeft",themeKey:"borders",transform:dt}),zg=ve({prop:"borderColor",themeKey:"palette"}),Rg=ve({prop:"borderTopColor",themeKey:"palette"}),$g=ve({prop:"borderRightColor",themeKey:"palette"}),Lg=ve({prop:"borderBottomColor",themeKey:"palette"}),Pg=ve({prop:"borderLeftColor",themeKey:"palette"}),Nr=e=>{if(e.borderRadius!==void 0&&e.borderRadius!==null){const t=En(e.theme,"shape.borderRadius",4,"borderRadius"),n=r=>({borderRadius:Dn(t,r)});return xt(e,e.borderRadius,n)}return null};Nr.propTypes=process.env.NODE_ENV!=="production"?{borderRadius:wt}:{},Nr.filterProps=["borderRadius"],wr(jg,Ag,Sg,Ig,kg,zg,Rg,$g,Lg,Pg,Nr);const Er=e=>{if(e.gap!==void 0&&e.gap!==null){const t=En(e.theme,"spacing",8,"gap"),n=r=>({gap:Dn(t,r)});return xt(e,e.gap,n)}return null};Er.propTypes=process.env.NODE_ENV!=="production"?{gap:wt}:{},Er.filterProps=["gap"];const Dr=e=>{if(e.columnGap!==void 0&&e.columnGap!==null){const t=En(e.theme,"spacing",8,"columnGap"),n=r=>({columnGap:Dn(t,r)});return xt(e,e.columnGap,n)}return null};Dr.propTypes=process.env.NODE_ENV!=="production"?{columnGap:wt}:{},Dr.filterProps=["columnGap"];const Or=e=>{if(e.rowGap!==void 0&&e.rowGap!==null){const t=En(e.theme,"spacing",8,"rowGap"),n=r=>({rowGap:Dn(t,r)});return xt(e,e.rowGap,n)}return null};Or.propTypes=process.env.NODE_ENV!=="production"?{rowGap:wt}:{},Or.filterProps=["rowGap"];const Fg=ve({prop:"gridColumn"}),Ug=ve({prop:"gridRow"}),Yg=ve({prop:"gridAutoFlow"}),Vg=ve({prop:"gridAutoColumns"}),Bg=ve({prop:"gridAutoRows"}),qg=ve({prop:"gridTemplateColumns"}),Qg=ve({prop:"gridTemplateRows"}),Wg=ve({prop:"gridTemplateAreas"}),Gg=ve({prop:"gridArea"});wr(Er,Dr,Or,Fg,Ug,Yg,Vg,Bg,qg,Qg,Wg,Gg);function Bt(e,t){return t==="grey"?t:e}const Kg=ve({prop:"color",themeKey:"palette",transform:Bt}),Hg=ve({prop:"bgcolor",cssProperty:"backgroundColor",themeKey:"palette",transform:Bt}),Xg=ve({prop:"backgroundColor",themeKey:"palette",transform:Bt});wr(Kg,Hg,Xg);function Xe(e){return e<=1&&e!==0?`${e*100}%`:e}const Jg=ve({prop:"width",transform:Xe}),ao=e=>{if(e.maxWidth!==void 0&&e.maxWidth!==null){const t=n=>{var r;return{maxWidth:((r=e.theme)==null||(r=r.breakpoints)==null||(r=r.values)==null?void 0:r[n])||oo[n]||Xe(n)}};return xt(e,e.maxWidth,t)}return null};ao.filterProps=["maxWidth"];const Zg=ve({prop:"minWidth",transform:Xe}),em=ve({prop:"height",transform:Xe}),tm=ve({prop:"maxHeight",transform:Xe}),nm=ve({prop:"minHeight",transform:Xe});ve({prop:"size",cssProperty:"width",transform:Xe}),ve({prop:"size",cssProperty:"height",transform:Xe});const rm=ve({prop:"boxSizing"});wr(Jg,ao,Zg,em,tm,nm,rm);const so={border:{themeKey:"borders",transform:dt},borderTop:{themeKey:"borders",transform:dt},borderRight:{themeKey:"borders",transform:dt},borderBottom:{themeKey:"borders",transform:dt},borderLeft:{themeKey:"borders",transform:dt},borderColor:{themeKey:"palette"},borderTopColor:{themeKey:"palette"},borderRightColor:{themeKey:"palette"},borderBottomColor:{themeKey:"palette"},borderLeftColor:{themeKey:"palette"},borderRadius:{themeKey:"shape.borderRadius",style:Nr},color:{themeKey:"palette",transform:Bt},bgcolor:{themeKey:"palette",cssProperty:"backgroundColor",transform:Bt},backgroundColor:{themeKey:"palette",transform:Bt},p:{style:Ne},pt:{style:Ne},pr:{style:Ne},pb:{style:Ne},pl:{style:Ne},px:{style:Ne},py:{style:Ne},padding:{style:Ne},paddingTop:{style:Ne},paddingRight:{style:Ne},paddingBottom:{style:Ne},paddingLeft:{style:Ne},paddingX:{style:Ne},paddingY:{style:Ne},paddingInline:{style:Ne},paddingInlineStart:{style:Ne},paddingInlineEnd:{style:Ne},paddingBlock:{style:Ne},paddingBlockStart:{style:Ne},paddingBlockEnd:{style:Ne},m:{style:we},mt:{style:we},mr:{style:we},mb:{style:we},ml:{style:we},mx:{style:we},my:{style:we},margin:{style:we},marginTop:{style:we},marginRight:{style:we},marginBottom:{style:we},marginLeft:{style:we},marginX:{style:we},marginY:{style:we},marginInline:{style:we},marginInlineStart:{style:we},marginInlineEnd:{style:we},marginBlock:{style:we},marginBlockStart:{style:we},marginBlockEnd:{style:we},displayPrint:{cssProperty:!1,transform:e=>({"@media print":{display:e}})},display:{},overflow:{},textOverflow:{},visibility:{},whiteSpace:{},flexBasis:{},flexDirection:{},flexWrap:{},justifyContent:{},alignItems:{},alignContent:{},order:{},flex:{},flexGrow:{},flexShrink:{},alignSelf:{},justifyItems:{},justifySelf:{},gap:{style:Er},rowGap:{style:Or},columnGap:{style:Dr},gridColumn:{},gridRow:{},gridAutoFlow:{},gridAutoColumns:{},gridAutoRows:{},gridTemplateColumns:{},gridTemplateRows:{},gridTemplateAreas:{},gridArea:{},position:{},zIndex:{themeKey:"zIndex"},top:{},right:{},bottom:{},left:{},boxShadow:{themeKey:"shadows"},width:{transform:Xe},maxWidth:{style:ao},minWidth:{transform:Xe},height:{transform:Xe},maxHeight:{transform:Xe},minHeight:{transform:Xe},boxSizing:{},fontFamily:{themeKey:"typography"},fontSize:{themeKey:"typography"},fontStyle:{themeKey:"typography"},fontWeight:{themeKey:"typography"},letterSpacing:{},textTransform:{},lineHeight:{},textAlign:{},typography:{cssProperty:!1,themeKey:"typography"}};function im(...e){const t=e.reduce((r,i)=>r.concat(Object.keys(i)),[]),n=new Set(t);return e.every(r=>n.size===Object.keys(r).length)}function om(e,t){return typeof e=="function"?e(t):e}function am(){function e(n,r,i,o){const a={[n]:r,theme:i},s=o[n];if(!s)return{[n]:r};const{cssProperty:l=n,themeKey:u,transform:c,style:d}=s;if(r==null)return null;if(u==="typography"&&r==="inherit")return{[n]:r};const f=xr(i,u)||{};return d?d(a):xt(a,r,b=>{let y=Mr(f,c,b);return b===y&&typeof b=="string"&&(y=Mr(f,c,`${n}${b==="default"?"":lt(b)}`,b)),l===!1?y:{[l]:y}})}function t(n){var r;const{sx:i,theme:o={}}=n||{};if(!i)return null;const a=(r=o.unstable_sxConfig)!=null?r:so;function s(l){let u=l;if(typeof l=="function")u=l(o);else if(typeof l!="object")return l;if(!u)return null;const c=xg(o.breakpoints),d=Object.keys(c);let f=c;return Object.keys(u).forEach(h=>{const b=om(u[h],o);if(b!=null)if(typeof b=="object")if(a[h])f=Nn(f,e(h,b,o,a));else{const y=xt({theme:o},b,v=>({[h]:v}));im(y,b)?f[h]=t({sx:b,theme:o}):f=Nn(f,y)}else f=Nn(f,e(h,b,o,a))}),Mg(d,f)}return Array.isArray(i)?i.map(s):s(i)}return t}const pu=am();pu.filterProps=["sx"];const uo=pu,sm=["breakpoints","palette","spacing","shape"];function lo(e={},...t){const{breakpoints:n={},palette:r={},spacing:i,shape:o={}}=e,a=bt(e,sm),s=vg(n),l=Cg(i);let u=vt({breakpoints:s,direction:"ltr",components:{},palette:ae({mode:"light"},r),spacing:l,shape:ae({},bg,o)},a);return u=t.reduce((c,d)=>vt(c,d),u),u.unstable_sxConfig=ae({},so,a==null?void 0:a.unstable_sxConfig),u.unstable_sx=function(d){return uo({sx:d,theme:this})},u}function um(e){return Object.keys(e).length===0}function lm(e=null){const t=ue.useContext(br);return!t||um(t)?e:t}const cm=lo();function fm(e=cm){return lm(e)}const dm=["variant"];function gu(e){return e.length===0}function mu(e){const{variant:t}=e,n=bt(e,dm);let r=t||"";return Object.keys(n).sort().forEach(i=>{i==="color"?r+=gu(r)?e[i]:lt(e[i]):r+=`${gu(r)?i:lt(i)}${lt(e[i].toString())}`}),r}const hm=["name","slot","skipVariantsResolver","skipSx","overridesResolver"];function pm(e){return Object.keys(e).length===0}function gm(e){return typeof e=="string"&&e.charCodeAt(0)>96}const mm=(e,t)=>t.components&&t.components[e]&&t.components[e].styleOverrides?t.components[e].styleOverrides:null,ym=(e,t)=>{let n=[];t&&t.components&&t.components[e]&&t.components[e].variants&&(n=t.components[e].variants);const r={};return n.forEach(i=>{const o=mu(i.props);r[o]=i.style}),r},vm=(e,t,n,r)=>{var i;const{ownerState:o={}}=e,a=[],s=n==null||(i=n.components)==null||(i=i[r])==null?void 0:i.variants;return s&&s.forEach(l=>{let u=!0;Object.keys(l.props).forEach(c=>{o[c]!==l.props[c]&&e[c]!==l.props[c]&&(u=!1)}),u&&a.push(t[mu(l.props)])}),a};function Cr(e){return e!=="ownerState"&&e!=="theme"&&e!=="sx"&&e!=="as"}const bm=lo(),xm=e=>e.charAt(0).toLowerCase()+e.slice(1);function On({defaultTheme:e,theme:t,themeId:n}){return pm(t)?e:t[n]||t}function Mm(e={}){const{themeId:t,defaultTheme:n=bm,rootShouldForwardProp:r=Cr,slotShouldForwardProp:i=Cr}=e,o=a=>uo(ae({},a,{theme:On(ae({},a,{defaultTheme:n,themeId:t}))}));return o.__mui_systemSx=!0,(a,s={})=>{gg(a,_=>_.filter(m=>!(m!=null&&m.__mui_systemSx)));const{name:l,slot:u,skipVariantsResolver:c,skipSx:d,overridesResolver:f}=s,h=bt(s,hm),b=c!==void 0?c:u&&u!=="Root"||!1,y=d||!1;let v;process.env.NODE_ENV!=="production"&&l&&(v=`${l}-${xm(u||"Root")}`);let M=Cr;u==="Root"?M=r:u?M=i:gm(a)&&(M=void 0);const D=pg(a,ae({shouldForwardProp:M,label:v},h)),O=(_,...m)=>{const k=m?m.map(E=>typeof E=="function"&&E.__emotion_real!==E?$=>E(ae({},$,{theme:On(ae({},$,{defaultTheme:n,themeId:t}))})):E):[];let C=_;l&&f&&k.push(E=>{const $=On(ae({},E,{defaultTheme:n,themeId:t})),X=mm(l,$);if(X){const H={};return Object.entries(X).forEach(([x,z])=>{H[x]=typeof z=="function"?z(ae({},E,{theme:$})):z}),f(E,H)}return null}),l&&!b&&k.push(E=>{const $=On(ae({},E,{defaultTheme:n,themeId:t}));return vm(E,ym(l,$),$,l)}),y||k.push(o);const S=k.length-m.length;if(Array.isArray(_)&&S>0){const E=new Array(S).fill("");C=[..._,...E],C.raw=[..._.raw,...E]}else typeof _=="function"&&_.__emotion_real!==_&&(C=E=>_(ae({},E,{theme:On(ae({},E,{defaultTheme:n,themeId:t}))})));const I=D(C,...k);if(process.env.NODE_ENV!=="production"){let E;l&&(E=`${l}${u||""}`),E===void 0&&(E=`Styled(${Up(a)})`),I.displayName=E}return a.muiName&&(I.muiName=a.muiName),I};return D.withConfig&&(O.withConfig=D.withConfig),O}}function _m(e){const{theme:t,name:n,props:r}=e;return!t||!t.components||!t.components[n]||!t.components[n].defaultProps?r:Ss(t.components[n].defaultProps,r)}function Tm({props:e,name:t,defaultTheme:n,themeId:r}){let i=fm(n);return r&&(i=i[r]||i),_m({theme:i,name:t,props:e})}function yu(e,t=0,n=1){return process.env.NODE_ENV!=="production"&&(e<t||e>n)&&console.error(`MUI: The value provided ${e} is out of range [${t}, ${n}].`),Math.min(Math.max(t,e),n)}function wm(e){e=e.slice(1);const t=new RegExp(`.{1,${e.length>=6?2:1}}`,"g");let n=e.match(t);return n&&n[0].length===1&&(n=n.map(r=>r+r)),n?`rgb${n.length===4?"a":""}(${n.map((r,i)=>i<3?parseInt(r,16):Math.round(parseInt(r,16)/255*1e3)/1e3).join(", ")})`:""}function qt(e){if(e.type)return e;if(e.charAt(0)==="#")return qt(wm(e));const t=e.indexOf("("),n=e.substring(0,t);if(["rgb","rgba","hsl","hsla","color"].indexOf(n)===-1)throw new Error(process.env.NODE_ENV!=="production"?`MUI: Unsupported \`${e}\` color.
|
|
151
|
+
The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().`:Ft(9,e));let r=e.substring(t+1,e.length-1),i;if(n==="color"){if(r=r.split(" "),i=r.shift(),r.length===4&&r[3].charAt(0)==="/"&&(r[3]=r[3].slice(1)),["srgb","display-p3","a98-rgb","prophoto-rgb","rec-2020"].indexOf(i)===-1)throw new Error(process.env.NODE_ENV!=="production"?`MUI: unsupported \`${i}\` color space.
|
|
152
|
+
The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rgb, rec-2020.`:Ft(10,i))}else r=r.split(",");return r=r.map(o=>parseFloat(o)),{type:n,values:r,colorSpace:i}}function co(e){const{type:t,colorSpace:n}=e;let{values:r}=e;return t.indexOf("rgb")!==-1?r=r.map((i,o)=>o<3?parseInt(i,10):i):t.indexOf("hsl")!==-1&&(r[1]=`${r[1]}%`,r[2]=`${r[2]}%`),t.indexOf("color")!==-1?r=`${n} ${r.join(" ")}`:r=`${r.join(", ")}`,`${t}(${r})`}function Nm(e){e=qt(e);const{values:t}=e,n=t[0],r=t[1]/100,i=t[2]/100,o=r*Math.min(i,1-i),a=(u,c=(u+n/30)%12)=>i-o*Math.max(Math.min(c-3,9-c,1),-1);let s="rgb";const l=[Math.round(a(0)*255),Math.round(a(8)*255),Math.round(a(4)*255)];return e.type==="hsla"&&(s+="a",l.push(t[3])),co({type:s,values:l})}function vu(e){e=qt(e);let t=e.type==="hsl"||e.type==="hsla"?qt(Nm(e)).values:e.values;return t=t.map(n=>(e.type!=="color"&&(n/=255),n<=.03928?n/12.92:((n+.055)/1.055)**2.4)),Number((.2126*t[0]+.7152*t[1]+.0722*t[2]).toFixed(3))}function bu(e,t){const n=vu(e),r=vu(t);return(Math.max(n,r)+.05)/(Math.min(n,r)+.05)}function Em(e,t){if(e=qt(e),t=yu(t),e.type.indexOf("hsl")!==-1)e.values[2]*=1-t;else if(e.type.indexOf("rgb")!==-1||e.type.indexOf("color")!==-1)for(let n=0;n<3;n+=1)e.values[n]*=1-t;return co(e)}function Dm(e,t){if(e=qt(e),t=yu(t),e.type.indexOf("hsl")!==-1)e.values[2]+=(100-e.values[2])*t;else if(e.type.indexOf("rgb")!==-1)for(let n=0;n<3;n+=1)e.values[n]+=(255-e.values[n])*t;else if(e.type.indexOf("color")!==-1)for(let n=0;n<3;n+=1)e.values[n]+=(1-e.values[n])*t;return co(e)}function Om(e,t){return ae({toolbar:{minHeight:56,[e.up("xs")]:{"@media (orientation: landscape)":{minHeight:48}},[e.up("sm")]:{minHeight:64}}},t)}const Cn={black:"#000",white:"#fff"},Cm={50:"#fafafa",100:"#f5f5f5",200:"#eeeeee",300:"#e0e0e0",400:"#bdbdbd",500:"#9e9e9e",600:"#757575",700:"#616161",800:"#424242",900:"#212121",A100:"#f5f5f5",A200:"#eeeeee",A400:"#bdbdbd",A700:"#616161"},Qt={50:"#f3e5f5",100:"#e1bee7",200:"#ce93d8",300:"#ba68c8",400:"#ab47bc",500:"#9c27b0",600:"#8e24aa",700:"#7b1fa2",800:"#6a1b9a",900:"#4a148c",A100:"#ea80fc",A200:"#e040fb",A400:"#d500f9",A700:"#aa00ff"},Wt={50:"#ffebee",100:"#ffcdd2",200:"#ef9a9a",300:"#e57373",400:"#ef5350",500:"#f44336",600:"#e53935",700:"#d32f2f",800:"#c62828",900:"#b71c1c",A100:"#ff8a80",A200:"#ff5252",A400:"#ff1744",A700:"#d50000"},jn={50:"#fff3e0",100:"#ffe0b2",200:"#ffcc80",300:"#ffb74d",400:"#ffa726",500:"#ff9800",600:"#fb8c00",700:"#f57c00",800:"#ef6c00",900:"#e65100",A100:"#ffd180",A200:"#ffab40",A400:"#ff9100",A700:"#ff6d00"},Gt={50:"#e3f2fd",100:"#bbdefb",200:"#90caf9",300:"#64b5f6",400:"#42a5f5",500:"#2196f3",600:"#1e88e5",700:"#1976d2",800:"#1565c0",900:"#0d47a1",A100:"#82b1ff",A200:"#448aff",A400:"#2979ff",A700:"#2962ff"},Kt={50:"#e1f5fe",100:"#b3e5fc",200:"#81d4fa",300:"#4fc3f7",400:"#29b6f6",500:"#03a9f4",600:"#039be5",700:"#0288d1",800:"#0277bd",900:"#01579b",A100:"#80d8ff",A200:"#40c4ff",A400:"#00b0ff",A700:"#0091ea"},Ht={50:"#e8f5e9",100:"#c8e6c9",200:"#a5d6a7",300:"#81c784",400:"#66bb6a",500:"#4caf50",600:"#43a047",700:"#388e3c",800:"#2e7d32",900:"#1b5e20",A100:"#b9f6ca",A200:"#69f0ae",A400:"#00e676",A700:"#00c853"},jm=["mode","contrastThreshold","tonalOffset"],xu={text:{primary:"rgba(0, 0, 0, 0.87)",secondary:"rgba(0, 0, 0, 0.6)",disabled:"rgba(0, 0, 0, 0.38)"},divider:"rgba(0, 0, 0, 0.12)",background:{paper:Cn.white,default:Cn.white},action:{active:"rgba(0, 0, 0, 0.54)",hover:"rgba(0, 0, 0, 0.04)",hoverOpacity:.04,selected:"rgba(0, 0, 0, 0.08)",selectedOpacity:.08,disabled:"rgba(0, 0, 0, 0.26)",disabledBackground:"rgba(0, 0, 0, 0.12)",disabledOpacity:.38,focus:"rgba(0, 0, 0, 0.12)",focusOpacity:.12,activatedOpacity:.12}},fo={text:{primary:Cn.white,secondary:"rgba(255, 255, 255, 0.7)",disabled:"rgba(255, 255, 255, 0.5)",icon:"rgba(255, 255, 255, 0.5)"},divider:"rgba(255, 255, 255, 0.12)",background:{paper:"#121212",default:"#121212"},action:{active:Cn.white,hover:"rgba(255, 255, 255, 0.08)",hoverOpacity:.08,selected:"rgba(255, 255, 255, 0.16)",selectedOpacity:.16,disabled:"rgba(255, 255, 255, 0.3)",disabledBackground:"rgba(255, 255, 255, 0.12)",disabledOpacity:.38,focus:"rgba(255, 255, 255, 0.12)",focusOpacity:.12,activatedOpacity:.24}};function Mu(e,t,n,r){const i=r.light||r,o=r.dark||r*1.5;e[t]||(e.hasOwnProperty(n)?e[t]=e[n]:t==="light"?e.light=Dm(e.main,i):t==="dark"&&(e.dark=Em(e.main,o)))}function Am(e="light"){return e==="dark"?{main:Gt[200],light:Gt[50],dark:Gt[400]}:{main:Gt[700],light:Gt[400],dark:Gt[800]}}function Sm(e="light"){return e==="dark"?{main:Qt[200],light:Qt[50],dark:Qt[400]}:{main:Qt[500],light:Qt[300],dark:Qt[700]}}function Im(e="light"){return e==="dark"?{main:Wt[500],light:Wt[300],dark:Wt[700]}:{main:Wt[700],light:Wt[400],dark:Wt[800]}}function km(e="light"){return e==="dark"?{main:Kt[400],light:Kt[300],dark:Kt[700]}:{main:Kt[700],light:Kt[500],dark:Kt[900]}}function zm(e="light"){return e==="dark"?{main:Ht[400],light:Ht[300],dark:Ht[700]}:{main:Ht[800],light:Ht[500],dark:Ht[900]}}function Rm(e="light"){return e==="dark"?{main:jn[400],light:jn[300],dark:jn[700]}:{main:"#ed6c02",light:jn[500],dark:jn[900]}}function $m(e){const{mode:t="light",contrastThreshold:n=3,tonalOffset:r=.2}=e,i=bt(e,jm),o=e.primary||Am(t),a=e.secondary||Sm(t),s=e.error||Im(t),l=e.info||km(t),u=e.success||zm(t),c=e.warning||Rm(t);function d(y){const v=bu(y,fo.text.primary)>=n?fo.text.primary:xu.text.primary;if(process.env.NODE_ENV!=="production"){const M=bu(y,v);M<3&&console.error([`MUI: The contrast ratio of ${M}:1 for ${v} on ${y}`,"falls below the WCAG recommended absolute minimum contrast ratio of 3:1.","https://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-contrast"].join(`
|
|
153
|
+
`))}return v}const f=({color:y,name:v,mainShade:M=500,lightShade:D=300,darkShade:O=700})=>{if(y=ae({},y),!y.main&&y[M]&&(y.main=y[M]),!y.hasOwnProperty("main"))throw new Error(process.env.NODE_ENV!=="production"?`MUI: The color${v?` (${v})`:""} provided to augmentColor(color) is invalid.
|
|
154
|
+
The color object needs to have a \`main\` property or a \`${M}\` property.`:Ft(11,v?` (${v})`:"",M));if(typeof y.main!="string")throw new Error(process.env.NODE_ENV!=="production"?`MUI: The color${v?` (${v})`:""} provided to augmentColor(color) is invalid.
|
|
155
|
+
\`color.main\` should be a string, but \`${JSON.stringify(y.main)}\` was provided instead.
|
|
156
156
|
|
|
157
157
|
Did you intend to use one of the following approaches?
|
|
158
158
|
|
|
@@ -164,7 +164,7 @@ const theme1 = createTheme({ palette: {
|
|
|
164
164
|
|
|
165
165
|
const theme2 = createTheme({ palette: {
|
|
166
166
|
primary: { main: green[500] },
|
|
167
|
-
} });`:
|
|
168
|
-
`)),Object.keys(u).length!==0&&console.error(`MUI: Unrecognized argument(s) [${Object.keys(u).join(",")}].`)}return(Array.isArray(i)?i:[i]).map(c=>`${c} ${typeof a=="string"?a:
|
|
169
|
-
`))}f[
|
|
170
|
-
`)),ks.configure(e)}},unstable_useEnhancedEffect:Ds,unstable_useId:Zp,unsupportedProp:e0,useControlled:t0,useEventCallback:n0,useForkRef:r0,useIsFocusVisible:c0},Symbol.toStringTag,{value:"Module"})));var Du;function $e(){return Du||(Du=1,function(e){Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"default",{enumerable:!0,get:function(){return t.createSvgIcon}});var t=cy}(Wi)),Wi}const Le=ri(vl);var fy=we;Object.defineProperty(Qi,"__esModule",{value:!0});var Ou=Qi.default=void 0,dy=fy($e()),hy=Le,py=(0,dy.default)((0,hy.jsx)("path",{d:"m20.41 6.41-2.83-2.83c-.37-.37-.88-.58-1.41-.58H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7.4l8.6-8.6V7.83c0-.53-.21-1.04-.59-1.42zM12 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-9c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v2zm4.99 7.25 1.77 1.77-4.84 4.84c-.1.09-.23.14-.36.14H15.5c-.28 0-.5-.22-.5-.5v-1.06c0-.13.05-.26.15-.35l4.84-4.84zm3.26.26-.85.85-1.77-1.77.85-.85c.2-.2.51-.2.71 0l1.06 1.06c.2.2.2.52 0 .71z"}),"SaveAsRounded");Ou=Qi.default=py;var bo={},gy=we;Object.defineProperty(bo,"__esModule",{value:!0});var Cu=bo.default=void 0,my=gy($e()),yy=Le,vy=(0,my.default)((0,yy.jsx)("path",{d:"M17.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7.83c0-.53-.21-1.04-.59-1.41l-2.82-2.83zM12 19c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm1-10H7c-1.1 0-2-.9-2-2s.9-2 2-2h6c1.1 0 2 .9 2 2s-.9 2-2 2z"}),"SaveRounded");Cu=bo.default=vy;var Mo={},by=we;Object.defineProperty(Mo,"__esModule",{value:!0});var Su=Mo.default=void 0,My=by($e()),_y=Le,xy=(0,My.default)((0,_y.jsx)("path",{d:"M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.35 14.65-2.79-2.79c-.32-.32-.1-.86.35-.86H11v-2.99c0-.55.44-.99.99-1 .56-.01 1.01.44 1.01 1V13h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.19.2-.51.2-.7.01z"}),"SimCardDownloadRounded");Su=Mo.default=xy;const _o=()=>{const{dispatchSnackbar:e}=U.useContext(Bo);return{close:()=>e(Qo()),open:(r,i="success")=>e(Nl(r,i))}},Au=()=>{const{version:e}=Je();return{patchWorkflow:r=>Rt.patch("/v1/workflow",{...r,version:e}).then(i=>i.data),postWorkflow:r=>Rt.post("/v1/workflow",{...r,version:e}).then(i=>i.data)}},Ty=e=>{const{postWorkflow:t}=Au();return $t.useMutation(t,e)},wy=e=>{const{patchWorkflow:t}=Au();return $t.useMutation(t,e)},Ny=()=>{const{t:e}=Qe.useTranslation(["snackMessage"]),{open:t}=_o(),{setCurrentTree:n,currentTree:r,tree:i}=Je(),{mutate:o}=Ty({onError:()=>{t(e("error.saveTree",{ns:"snackMessage"}),"error")},onSuccess:c=>{t(e("success.saveTree",{ns:"snackMessage"})),n(d=>({...d,id:c.workflow_id}))}}),{mutate:a}=wy({onError:()=>{t(e("error.updateTree",{ns:"snackMessage"}),"error")},onSuccess:()=>{t(e("success.updateTree",{ns:"snackMessage"}))}}),s=c=>JSON.stringify(c,null,2);return{formatJSON:s,getDownloadLink:c=>`data:text/json;charset=utf-8,${encodeURIComponent(s(c))}`,handleSubmit:()=>{const{name:c,id:d}=r;if(!c){n(f=>({...f,errorName:"Champs Requis"}));return}if(i){if(d){a({id:d,label:c,workflow:i});return}o({label:c,workflow:i})}}}},Ey=({downloadedFileName:e="export",value:t})=>{const{t:n}=Qe.useTranslation("button"),{getDownloadLink:r,handleSubmit:i}=Ny(),{currentTree:o,endPoint:a}=Je(),{id:s}=o;return oe(N.Stack,{direction:"row",spacing:2,justifyContent:"center",children:[_(N.Tooltip,{title:n("downloadJSONFile"),enterDelay:1500,disableHoverListener:!t,arrow:!0,children:_(N.Box,{children:_(N.Button,{variant:"outlined",href:r(t),download:`${e}.json`,disabled:!t,children:_(Su,{})})})}),_(N.Tooltip,{title:n(s?"update":"save"),enterDelay:1500,disableHoverListener:!t,arrow:!0,children:_(N.Box,{children:_(N.Button,{variant:"outlined",onClick:i,disabled:!t||!a,children:s?_(Ou,{}):_(Cu,{})})})})]})},Dy={box:{backgroundColor:Me.background,border:`solid 1px ${Me.borderBlue}`}},Iu=({children:e,description:t,open:n,onClose:r,title:i})=>_(N.Dialog,{open:n,onClose:r,"aria-labelledby":"modal-modal-title","aria-describedby":"modal-modal-description",scroll:"body",maxWidth:"sm",fullWidth:!0,children:oe(N.Box,{sx:Dy.box,p:4,children:[_("h3",{children:i}),_("p",{children:t}),e]})});var xo={},Oy=we;Object.defineProperty(xo,"__esModule",{value:!0});var ku=xo.default=void 0,Cy=Oy($e()),Sy=Le,Ay=(0,Cy.default)((0,Sy.jsx)("path",{d:"M18.3 5.71a.9959.9959 0 0 0-1.41 0L12 10.59 7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"}),"CloseRounded");ku=xo.default=Ay;const Ur={container:{display:"flex",flexDirection:"column",height:"100%",margin:1},main:{border:`solid 1px ${Me.borderBlue}`,height:" 100%",margin:1},toolbar:{backgroundColor:Me.background,boxShadow:"none",display:"flex",padding:"0 ! important"},toolbarBox:{backgroundColor:Me.tertiary,border:`solid 1px ${Me.primary}`,margin:1,paddingX:2,paddingY:1,width:"100%"}},Iy=({children:e,appear:t,in:n,onEnter:r,onExited:i,onFocus:o,role:a,tabIndex:s,timeout:l},u)=>_(N.Slide,{direction:"up",ref:u,appear:t,in:n,onEnter:r,onExited:i,onFocus:o,role:a,tabIndex:s,timeout:l,children:e}),ky=U.forwardRef(Iy),jy=({children:e,open:t,onClose:n,title:r})=>_(N.Dialog,{PaperProps:{sx:{backgroundColor:Me.background,backgroundImage:"none"}},open:t,"aria-labelledby":"modal-modal-title","aria-describedby":"modal-modal-description",fullScreen:!0,TransitionComponent:ky,children:oe(N.Box,{sx:Ur.container,children:[_(N.AppBar,{position:"sticky",elevation:0,children:_(N.Toolbar,{sx:Ur.toolbar,children:oe(N.Stack,{direction:"row",alignItems:"center",justifyContent:"space-between",sx:Ur.toolbarBox,children:[_(N.Typography,{variant:"h5",children:_("strong",{children:r})}),_(N.IconButton,{edge:"end",color:"inherit",onClick:n,"aria-label":"close",children:_(ku,{})})]})})}),_(N.Box,{sx:Ur.main,children:e})]})}),zy={box:{border:`solid 1px ${Me.borderBlue}`,flexGrow:0}},Ry=({children:e})=>_(N.Box,{p:2,role:"group",sx:zy.box,children:e}),$y={box:{border:`solid 1px ${Me.borderBlue}`,flexGrow:0}},Ly=({children:e})=>_(N.Box,{sx:$y.box,padding:2,component:"header",children:e}),Py={box:{border:`solid 1px ${Me.borderBlue}`,flexGrow:1}},Fy=({children:e})=>_(N.Box,{sx:Py.box,component:"main",role:"tree",children:e}),ju={stack:{width:"100%"}},Uy=({children:e})=>{const t=U.Children.toArray(e);return oe(N.Grid,{container:!0,padding:1,flexWrap:"nowrap",height:"100%",role:"treegrid",children:[_(N.Grid,{item:!0,xs:9,padding:1,display:"flex",children:oe(N.Stack,{sx:ju.stack,spacing:2,children:[t[0],t[1]]})}),_(N.Grid,{item:!0,xs:3,padding:1,display:"flex",children:oe(N.Stack,{sx:ju.stack,spacing:2,children:[t[2],t[3]]})})]})},Yy={box:{border:`solid 1px ${Me.borderBlue}`,flexGrow:1,overflow:"auto"}},Vy=({children:e})=>_(N.Box,{sx:Yy.box,component:"aside",children:e}),zu=(e,t)=>{var o;if(!e)return null;let n=null;const r=(e==null?void 0:e.name)===t,i=(o=e==null?void 0:e.children)==null?void 0:o.length;if(r)return e;if(i)for(let a=0;n===null&&a<e.children.length;a+=1)n=zu(e.children[a],t);return n},en=(e,t)=>{var a,s,l,u,c;if(!e)return null;if(!t)return e;let n=null;const r=((a=e==null?void 0:e.attributes)==null?void 0:a.treePath)===t,i=(s=e==null?void 0:e.attributes)==null?void 0:s.tree,o=(l=e==null?void 0:e.children)==null?void 0:l.length;if(r)return((u=e==null?void 0:e.attributes)==null?void 0:u.tree)||null;if(i&&(n=en((c=e.attributes)==null?void 0:c.tree,t)),o)for(let d=0;n===null&&d<e.children.length;d+=1)n=en(e.children[d],t);return n},Yr=(e,t,n)=>{const r=en(e,t);return zu(r,n)},qy=(e,t)=>{if(!e)return null;const n=t.attributes.isDecision;return Object.defineProperty(e,"attributes",{value:{...e.attributes,isLeaf:!1}}),n?(Object.defineProperty(e,"children",{value:[{...t,attributes:{...t.attributes,isLeaf:!1}}]}),null):(Object.defineProperty(e,"children",{value:[{...t,attributes:{...t.attributes,isLeaf:!e.children.length}}]}),null)},By=({tree:e,path:t,name:n,child:r})=>{var a;if(!e)return r.children.length?{...r}:{...r,attributes:{...r.attributes,isLeaf:!0,isRoot:!0}};const i=structuredClone(e),o=Yr(i,t,n);return qy(o,{...r,...!r.attributes.isDecision&&{children:[...((a=Yr(e,t,n))==null?void 0:a.children)||[]]}}),i},Ru=(e,t=[])=>{if(!e)return[];let n=[...t];return Object.entries(e).forEach(([r,i])=>{const o=r==="name",a=r==="children"&&i.length>0;o&&(n=[...n,i]),a&&(n=[...n,...i.map(s=>Ru(s,n)).flat()])}),n},$u=(e,t,n=null)=>{var a;if(!e)return null;let r=null;const i=(e==null?void 0:e.name)===t,o=(a=e==null?void 0:e.children)==null?void 0:a.length;if(i)return n;if(o)for(let s=0;r===null&&s<e.children.length;s+=1)r=$u(e.children[s],t,e);return r},Qy=(e,t)=>(!e||!t||(Object.defineProperty(e,"children",{value:e.children.filter(n=>n.name!==t.name)}),Object.defineProperty(e,"attributes",{value:{...e.attributes,isLeaf:!0}})),null),Wy=(e,t,n)=>{const r=en(e,t);return $u(r,n)},Gy=({tree:e,path:t,name:n})=>{const r=structuredClone(e),i=Yr(r,t,n),o=Wy(r,t,n);return Qy(o,i),r},Ky=(e,t)=>{if(!e)return null;const n=t.attributes.isDecision,r=e.attributes.isDecision,i=e.attributes.depth===0;return r||n?(Object.defineProperty(e,"children",{value:[...t.children]}),Object.defineProperty(e,"attributes",{value:{...t.attributes,isLeaf:!t.children.length||!n,isRoot:i}}),Object.defineProperty(e,"name",{value:t.name}),null):(Object.defineProperty(e,"children",{value:[...e.children]}),Object.defineProperty(e,"attributes",{value:{...t.attributes,isLeaf:!e.children.length,isRoot:i}}),Object.defineProperty(e,"name",{value:t.name}),null)},Hy=({tree:e,path:t,name:n,child:r})=>{const i=structuredClone(e),o=Yr(i,t,n);return Ky(o,r),i},gt={appendTreeCard:"appendTreeCard",deleteTreeCard:"deleteTreeCard",replaceTreeCard:"replaceTreeCard",resetTree:"resetTree",setTree:"setTree"},Xy=(e,t,n)=>({children:n,name:t,path:e,type:gt.appendTreeCard}),Jy=(e,t,n)=>({children:n,name:t,path:e,type:gt.replaceTreeCard}),Zy=(e,t)=>({name:t,path:e,type:gt.deleteTreeCard}),ev=()=>({type:gt.resetTree}),Lu=e=>({tree:e,type:gt.setTree}),tv=(e,t)=>{switch(t.type){case gt.appendTreeCard:{const{name:n,path:r,children:i}=t;return By({child:i,name:n,path:r,tree:e})}case gt.deleteTreeCard:{const{path:n,name:r}=t;return Gy({name:r,path:n,tree:e})}case gt.replaceTreeCard:{const{name:n,path:r,children:i}=t;return Hy({child:i,name:n,path:r,tree:e})}case gt.resetTree:return null;case gt.setTree:return t.tree;default:throw new Error}},nv=()=>{const{dispatchTree:e,setModalOpen:t,currentHierarchyPointNode:n,treePath:r}=Je();return{handleSubmit:o=>{var l,u;o.preventDefault();const a=((l=n==null?void 0:n.data)==null?void 0:l.name)||"",s=((u=r==null?void 0:r.at(-1))==null?void 0:u.path)||"";e(Zy(s,a)),t(null)}}},rv=({onClose:e})=>{const{t}=Qe.useTranslation(),{handleSubmit:n}=nv();return _("form",{onSubmit:n,children:oe(N.Stack,{spacing:2,direction:"row",justifyContent:"flex-end",children:[_(N.Button,{variant:"text",onClick:e,children:t("cancel")}),_(N.Button,{variant:"contained",color:"error",type:"submit",children:t("remove")})]})})};var To={},iv=we;Object.defineProperty(To,"__esModule",{value:!0});var Pu=To.default=void 0,ov=iv($e()),av=Le,sv=(0,ov.default)((0,av.jsx)("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z"}),"AddCircleRounded");Pu=To.default=sv;var wo={},uv=we;Object.defineProperty(wo,"__esModule",{value:!0});var Fu=wo.default=void 0,lv=uv($e()),cv=Le,fv=(0,lv.default)((0,cv.jsx)("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z"}),"RemoveCircleRounded");Fu=wo.default=fv;const $n=[{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"text"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"number"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"email"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"file"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"password"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"tel"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"address"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"url"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"date"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"time"},{isBooleanField:!0,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"switch"},{isBooleanField:!0,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"checkbox"},{isBooleanField:!1,isDecisionField:!0,isRepeatableDisabled:!0,isRequiredDisabled:!1,type:"radio"},{isBooleanField:!1,isDecisionField:!0,isRepeatableDisabled:!0,isRequiredDisabled:!1,type:"select"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"hidden"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"tree"}],dv=()=>{const{endPoint:e}=Je();return{fields:U.useCallback(()=>$n.filter(n=>!(n.type==="tree"&&!e)),[e])()}},hv=({onChange:e,value:t})=>{const{t:n}=Qe.useTranslation(),{fields:r}=dv();return oe(N.FormControl,{sx:{flex:1},required:!0,children:[_(N.InputLabel,{children:n("type")}),_(N.Select,{value:t,label:n("type"),onChange:e,MenuProps:{PaperProps:{sx:{maxHeight:300}}},children:r.map(({type:i})=>_(N.MenuItem,{value:i,children:n(`type.${i}`,{ns:"form"})},i))})]})};var No={},pv=we;Object.defineProperty(No,"__esModule",{value:!0});var Uu=No.default=void 0,gv=pv($e()),mv=Le,yv=(0,gv.default)((0,mv.jsx)("path",{d:"M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z"}),"AddRounded");Uu=No.default=yv;const Yu=()=>({getAllWorkflow:()=>Rt.get("/v1/workflows").then(n=>n.data),getWorkflow:n=>Rt.get(`/v1/workflow?id=${n}`).then(r=>r.data)}),Eo=(e,t)=>{const{getWorkflow:n}=Yu();return $t.useQuery(["/v1/workflow",e],()=>e&&n(e),{refetchOnWindowFocus:!1,...t})},vv=e=>{const{getAllWorkflow:t}=Yu();return $t.useQuery("/v1/workflows",t,{refetchOnWindowFocus:!1,...e})},bv=e=>{const{t}=Qe.useTranslation("snackMessage"),{open:n}=_o(),{currentTree:r,setCurrentTree:i,dispatchTree:o}=Je(),[a,s]=U.useState("");Eo(a,{enabled:!!a&&!e&&a!==r.id,onError:()=>n(t("error.fetchTree",{ns:"snackMessage"}),"error"),onSuccess:({id:y,label:m,workflow:v})=>{e||(i({id:y,name:m}),o(Lu(v)))}});const{data:l,isLoading:u,refetch:c}=vv({enabled:!1,keepPreviousData:!0,onError:()=>{n(t("error.fetchTree"),"error")},onSuccess:()=>{r.id&&!a&&s(r.id)}}),d=async({target:y})=>{const{value:m}=y;if(m==="add-new-tree"){s(""),i({name:""}),o(ev());return}s(m)},f=()=>h(),h=()=>c();return{currentTree:r,fetchWorkflowSuggestions:h,handleChangeTree:d,handleOnOpen:f,setTreeSelected:s,treeSelected:a,workflowsSuggestions:l,workflowsSuggestionsLoading:u}},Vu={formControl:{flex:1},select:{".MuiOutlinedInput-notchedOutline":{border:0,paddingLeft:5},".MuiSelect-select":{opacity:0,width:0},boxShadow:"none"}},qu=({arrowOnly:e,required:t,size:n,showBtnAddNewTree:r,onChange:i,value:o})=>{const{t:a}=Qe.useTranslation("form"),s=U.useMemo(()=>!!i,[i]),{handleChangeTree:l,handleOnOpen:u,workflowsSuggestions:c,workflowsSuggestionsLoading:d,treeSelected:f}=bv(s);return oe(N.FormControl,{size:n,required:t,sx:Vu.formControl,children:[!e&&_(N.InputLabel,{children:a("tree")}),oe(N.Select,{value:s?o:f,id:"tree-select",onChange:h=>s?i==null?void 0:i(h):l(h),sx:e?Vu.select:void 0,label:a("tree"),onOpen:u,children:[d&&_(N.MenuItem,{children:_(N.Skeleton,{width:"100%"})}),c==null?void 0:c.map(({label:h,id:y})=>_(N.MenuItem,{value:y,children:h},y)),r&&_(N.MenuItem,{disabled:!0,children:_(N.Box,{sx:{height:1,width:"100%"},children:_(N.Divider,{})})}),r&&oe(N.MenuItem,{value:"add-new-tree",children:[_(N.Typography,{mr:1,children:a("newTree")}),_(Uu,{color:"primary"})]})]})]})},Mv=({helperText:e,hiddenValue:t,isHiddenField:n,isTreeField:r,treeSelected:i,handleChangeTreeSelect:o,handleChangeHelperText:a,handleChangeHiddenValue:s})=>{const{t:l}=Qe.useTranslation(["translation","form"]);return r?_(qu,{required:!0,value:i,onChange:o}):n?_(N.TextField,{required:!0,sx:{flex:1},label:l("hiddenValue",{ns:"form"}),onChange:s,value:t}):_(N.TextField,{sx:{flex:1},label:l("helperText",{ns:"form"}),onChange:a,value:e})},Bu=e=>new Set([...e]).size===e.length,_v=(e,t,n)=>{const r=[...e,t];return Bu(n?r.filter(i=>i!==n):r)},xv=()=>{var Gr,Kr,Hr,Xr,Jr,Zr,ei,nn,Fn,Tt,rn,on,Un,ti,Yn;const e=U.useMemo(()=>[{id:"0",label:"",message:"",value:""}],[]),{tree:t,dispatchTree:n,currentHierarchyPointNode:r,modalOpen:i,treePath:o,setModalOpen:a}=Je(),{open:s}=_o(),{t:l}=Qe.useTranslation(),[u,c]=U.useState(e),[d,f]=U.useState(""),[h,y]=U.useState(""),[m,v]=U.useState(""),[M,D]=U.useState(!1),[O,x]=U.useState(!1),[g,j]=U.useState("text"),[C,I]=U.useState(""),[k,E]=U.useState(""),[$,X]=U.useState(""),[H,b]=U.useState({off:"",on:""}),[z,w]=U.useState(!1),[R,P]=U.useState(""),B=i==="edit",T=g==="tree",A=g==="hidden",V=$n.some(F=>F.type===g&&(F==null?void 0:F.isBooleanField)),K=$n.some(F=>F.type===g&&(F==null?void 0:F.isDecisionField)),q=$n.some(F=>F.type===g&&(F==null?void 0:F.isRequiredDisabled)),J=$n.some(F=>F.type===g&&(F==null?void 0:F.isRepeatableDisabled)),Q=((Kr=(Gr=r==null?void 0:r.data)==null?void 0:Gr.attributes)==null?void 0:Kr.isLeaf)??!0,W=F=>!K&&F>0,{refetch:ee,isLoading:re}=Eo(C,{enabled:!1,onError:()=>{s(l("error.fetchTree",{ns:"snackMessage"}),"error")}}),te=(F,he)=>{c(pe=>pe.map(Te=>{const{id:Ye}=Te;return F.target.dataset.id===Ye?{...Te,id:Ye,[he]:F.target.value}:{...Te}}))},Ce=F=>{y(F.target.value)},Y=F=>{v(F.target.value)},Ue=F=>{te(F,"label")},G=F=>{te(F,"value")},tt=F=>{te(F,"message")},at=F=>{X(F.target.value)},jt=F=>{var Ke;const{value:he}=F.target;if(f(F.target.value),!t||!he){P("");return}const pe=B&&(r==null?void 0:r.data.name),Te=(Ke=o==null?void 0:o.at(-1))==null?void 0:Ke.path,Ye=en(t,Te),Ve=Ru(Ye);if(_v(Ve,he,pe)){P("");return}P(l("mustBeUnique",{ns:"form"}))},Vr=F=>{D(F.target.checked)},tn=F=>{x(F.target.checked)},$o=F=>{w(F.target.checked)},Lo=F=>{j(F.target.value),x(!1),D(!1),w(!1)},Ln=F=>{I(F.target.value)},Po=F=>he=>{b(pe=>({...pe,[F]:he.target.value}))},Fo=F=>{E(F.target.value)},qr=()=>{c(F=>{const he=Number(F[F.length-1].id),pe=String(he+1);return[...F,{...e[0],id:pe}]})},Br=F=>{c(he=>he.filter(({id:pe})=>F.currentTarget.value!==pe))},zt=(F,he)=>{var Te,Ye,Ve;const pe=(Ve=(Ye=(Te=F==null?void 0:F.children)==null?void 0:Te[he])==null?void 0:Ye.data)==null?void 0:Ve.children;return pe?pe.map(({name:nt,attributes:Ke,children:mt})=>({attributes:Ke,children:mt,name:nt})):[]},Uo=F=>{var he;return O?(he=u==null?void 0:u.filter((pe,Te)=>!W(Te)))==null?void 0:he.map(({message:pe,value:Te,label:Ye},Ve)=>{const nt=`${d}:${Te}`,Ke=zt(r,Ve);return{attributes:{depth:F+1,label:Ye,value:Te,...pe&&{message:pe},...Ke.length===0&&{isLeaf:!0}},children:Ke,name:nt}}):[]},Qr=F=>F.map(({message:he,...pe})=>({...pe,...he&&{message:he}})),Wr=(F,he,pe)=>{var Te;return F&&(!he||pe)?ee():F&&he&&!pe?{data:{workflow:(Te=r==null?void 0:r.data.attributes)==null?void 0:Te.tree},isError:null}:{data:null,isError:null}},Pn=async F=>{var se,ce,ie,ne;F.preventDefault();const{on:he,off:pe}=H,Te=((se=r==null?void 0:r.data)==null?void 0:se.name)||"",Ye=(r==null?void 0:r.depth)||0,Ve=i==="edit",nt=Ye+(Ve||r===null?0:1),Ke=Uo(nt),mt=(ce=o==null?void 0:o.at(-1))==null?void 0:ce.path,an=o.length?`${mt}/${d}`:`/${d}`,p=((ne=(ie=r==null?void 0:r.data.attributes)==null?void 0:ie.tree)==null?void 0:ne.treeId)!==C,{data:S,isError:L}=await Wr(T,Ve,p);if(L)return;const Z={attributes:{depth:nt,label:m,type:g,...k&&{helperText:k},...(pe||he)&&{messages:{...pe&&{off:pe},...he&&{on:he}}},...T&&{tree:{...S==null?void 0:S.workflow,treeId:C},treePath:an},...O&&{isDecision:O},...K&&!O&&{values:Qr(u)},...M&&{required:M},...$&&{step:$},...z&&{repeatable:z},...A&&{hiddenValue:h}},children:Ke,name:d};n(Ve?Jy(mt||"",Te,Z):Xy(mt||null,Te,Z)),a(null)};return U.useEffect(()=>{var F,he,pe,Te,Ye,Ve,nt,Ke,mt,an,p,S,L,Z,se,ce,ie,ne,Ie;if(i==="edit"){const _e=((he=(F=r==null?void 0:r.data)==null?void 0:F.attributes)==null?void 0:he.values)||((Ye=(Te=(pe=r==null?void 0:r.data)==null?void 0:pe.children)==null?void 0:Te.filter(({attributes:ke})=>!(ke!=null&&ke.type)))==null?void 0:Ye.map(({attributes:ke},Dt)=>{const{label:ni,value:st,message:sl}=ke||{};return{id:String(Dt),label:String(ni),value:String(st),...sl&&{message:String(sl)}}}));f((r==null?void 0:r.data.name)||""),j(((Ve=r==null?void 0:r.data.attributes)==null?void 0:Ve.type)||"text"),E(((nt=r==null?void 0:r.data.attributes)==null?void 0:nt.helperText)||""),D(((Ke=r==null?void 0:r.data.attributes)==null?void 0:Ke.required)||!1),X(((mt=r==null?void 0:r.data.attributes)==null?void 0:mt.step)||""),v(((an=r==null?void 0:r.data.attributes)==null?void 0:an.label)||""),x(((p=r==null?void 0:r.data.attributes)==null?void 0:p.isDecision)||!1),c(_e!=null&&_e.length?_e:e),b({off:((L=(S=r==null?void 0:r.data.attributes)==null?void 0:S.messages)==null?void 0:L.off)||"",on:((se=(Z=r==null?void 0:r.data.attributes)==null?void 0:Z.messages)==null?void 0:se.on)||""}),I(((ie=(ce=r==null?void 0:r.data.attributes)==null?void 0:ce.tree)==null?void 0:ie.treeId)||""),w(((ne=r==null?void 0:r.data.attributes)==null?void 0:ne.repeatable)||!1),y(((Ie=r==null?void 0:r.data.attributes)==null?void 0:Ie.hiddenValue)||"")}},[(Xr=(Hr=r==null?void 0:r.data.attributes)==null?void 0:Hr.tree)==null?void 0:Xr.treeId,(Jr=r==null?void 0:r.data.attributes)==null?void 0:Jr.messages,(Zr=r==null?void 0:r.data.attributes)==null?void 0:Zr.helperText,(ei=r==null?void 0:r.data.attributes)==null?void 0:ei.isDecision,(nn=r==null?void 0:r.data.attributes)==null?void 0:nn.label,(Fn=r==null?void 0:r.data.attributes)==null?void 0:Fn.required,(Tt=r==null?void 0:r.data.attributes)==null?void 0:Tt.step,(rn=r==null?void 0:r.data.attributes)==null?void 0:rn.type,(on=r==null?void 0:r.data.attributes)==null?void 0:on.values,(Un=r==null?void 0:r.data)==null?void 0:Un.children,r==null?void 0:r.data.name,(ti=r==null?void 0:r.data.attributes)==null?void 0:ti.repeatable,(Yn=r==null?void 0:r.data.attributes)==null?void 0:Yn.hiddenValue,e,i]),{getDisabledValueField:W,handleAddValue:qr,handleChangeHelperText:Fo,handleChangeHiddenValue:Ce,handleChangeIsDecisionField:tn,handleChangeLabel:Y,handleChangeMessage:Po,handleChangeName:jt,handleChangeOptionLabel:Ue,handleChangeOptionMessage:tt,handleChangeOptionValue:G,handleChangeRepeatable:$o,handleChangeRequired:Vr,handleChangeStep:at,handleChangeTreeSelect:Ln,handleChangeType:Lo,handleDeleteValue:Br,handleSubmit:Pn,helperText:k,hiddenValue:h,isBooleanField:V,isDecision:O,isDecisionField:K,isEditModal:B,isHiddenField:A,isLeaf:Q,isRepeatableDisabled:J,isRequiredDisabled:q,isTreeField:T,isWorkflowLoading:re,label:m,messages:H,name:d,repeatable:z,required:M,step:$,treeSelected:C,type:g,uniqueNameErrorMessage:R,values:u}},Qu={marginRight:"-20px !important",minWidth:"auto !important"},Wu={iconButton:Qu,iconButtonDelete:{...Qu,"&:before":{borderRadius:"50%",content:'""',height:20,position:"absolute",width:20,zIndex:-1},backgroundColor:Me.background,position:"absolute",right:0,top:"50%",transform:"translateY(-50%)"}},Tv=({onClose:e})=>{const{t}=Qe.useTranslation(["translation","form"]),{values:n,required:r,name:i,uniqueNameErrorMessage:o,type:a,helperText:s,label:l,hiddenValue:u,isBooleanField:c,isDecision:d,isEditModal:f,isDecisionField:h,isHiddenField:y,isRequiredDisabled:m,isRepeatableDisabled:v,isTreeField:M,treeSelected:D,isWorkflowLoading:O,repeatable:x,isLeaf:g,messages:{on:j,off:C},handleChangeTreeSelect:I,handleChangeHelperText:k,handleChangeOptionMessage:E,handleChangeRequired:$,handleChangeName:X,handleChangeType:H,handleChangeIsDecisionField:b,handleChangeOptionLabel:z,handleDeleteValue:w,handleChangeOptionValue:R,handleChangeMessage:P,handleSubmit:B,handleAddValue:T,handleChangeLabel:A,handleChangeRepeatable:V,handleChangeHiddenValue:K}=xv();return console.log(f),oe("form",{onSubmit:B,children:[oe(N.Stack,{spacing:1,paddingY:1,direction:{sm:"row",xs:"column"},children:[_(N.TextField,{sx:{flex:1},label:t("label",{ns:"form"}),onChange:A,value:l,required:!0}),_(N.TextField,{label:t("name"),sx:{flex:1},onChange:X,value:i,error:!!o,helperText:o,required:!0})]}),oe(N.Stack,{spacing:1,paddingY:1,direction:{sm:"row",xs:"column"},children:[_(hv,{value:a,onChange:H}),_(Mv,{helperText:s,hiddenValue:u,isHiddenField:y,isTreeField:M,treeSelected:D,handleChangeTreeSelect:I,handleChangeHelperText:k,handleChangeHiddenValue:K})]}),c&&oe(N.Stack,{spacing:1,paddingY:1,direction:{sm:"row",xs:"column"},children:[_(N.TextField,{sx:{flex:1},label:t("onMessage",{ns:"form"}),onChange:P("on"),value:j}),_(N.TextField,{sx:{flex:1},label:t("offMessage",{ns:"form"}),onChange:P("off"),value:C})]}),oe(N.Stack,{paddingY:1,children:[_(N.FormGroup,{children:_(N.FormControlLabel,{disabled:v,control:_(N.Checkbox,{checked:x,onChange:V}),label:t("repeatable",{ns:"form"})})}),_(N.FormGroup,{children:_(N.FormControlLabel,{disabled:m,control:_(N.Checkbox,{checked:r,onChange:$}),label:t("required")})}),(g||f)&&_(N.FormGroup,{children:_(N.FormControlLabel,{disabled:!h,control:_(N.Checkbox,{checked:d,onChange:b}),label:t("decisionFields",{ns:"form"})})})]}),h&&oe(Vn,{children:[_("h4",{children:t("values")}),n==null?void 0:n.map(({value:q,label:J,id:Q,message:W})=>oe(N.Stack,{direction:{sm:"row",xs:"column"},spacing:1,paddingY:1,position:"relative",children:[_(N.TextField,{label:t("label",{ns:"form"}),sx:{flex:1},onChange:z,value:J,inputProps:{"data-id":Q},required:!0}),_(N.TextField,{label:t("value",{ns:"form"}),sx:{flex:1},onChange:R,value:q,inputProps:{"data-id":Q},required:!0}),_(N.TextField,{label:"Message",sx:{flex:1},onChange:E,value:W,inputProps:{"data-id":Q}}),n.length>1&&_(N.IconButton,{color:"warning",sx:Wu.iconButtonDelete,value:Q,onClick:w,children:_(Fu,{})})]},Q))]}),h&&_(N.Box,{justifyContent:"flex-end",display:"flex",children:_(N.IconButton,{color:"success",sx:Wu.iconButton,onClick:T,children:_(Pu,{})})}),oe(N.Stack,{spacing:2,direction:"row",justifyContent:"flex-end",paddingTop:3,children:[_(N.Button,{variant:"text",onClick:e,children:t("cancel")}),_(N.Button,{variant:"contained",type:"submit",disabled:!!o||O,children:O?_(N.CircularProgress,{size:14}):t("validate")})]})]})};var Do={},wv=we;Object.defineProperty(Do,"__esModule",{value:!0});var Gu=Do.default=void 0,Nv=wv($e()),Ev=Le,Dv=(0,Nv.default)((0,Ev.jsx)("path",{d:"M17 11h3c1.11 0 2-.9 2-2V5c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1H9.01V5c0-1.11-.9-2-2-2H4c-1.1 0-2 .9-2 2v4c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2V8h2v7.01c0 1.65 1.34 2.99 2.99 2.99H15v1c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2v-4c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1h-1.01c-.54 0-.99-.45-.99-.99V8h2v1c0 1.1.9 2 2 2z"}),"AccountTreeRounded");Gu=Do.default=Dv;var Oo={},Ov=we;Object.defineProperty(Oo,"__esModule",{value:!0});var Ku=Oo.default=void 0,Cv=Ov($e()),Sv=Le,Av=(0,Cv.default)((0,Sv.jsx)("path",{d:"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z"}),"AddBoxRounded");Ku=Oo.default=Av;var Co={},Iv=we;Object.defineProperty(Co,"__esModule",{value:!0});var Hu=Co.default=void 0,kv=Iv($e()),jv=Le,zv=(0,kv.default)((0,jv.jsx)("path",{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM9 9h6c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1zm6.5-5-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z"}),"DeleteOutlineRounded");Hu=Co.default=zv;var So={},Rv=we;Object.defineProperty(So,"__esModule",{value:!0});var Xu=So.default=void 0,$v=Rv($e()),Lv=Le,Pv=(0,$v.default)((0,Lv.jsx)("path",{d:"M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}),"EditRounded");Xu=So.default=Pv;var Ao={},Fv=we;Object.defineProperty(Ao,"__esModule",{value:!0});var Ju=Ao.default=void 0,Uv=Fv($e()),Yv=Le,Vv=(0,Uv.default)((0,Yv.jsx)("path",{d:"M12 3c-4.8 0-9 3.86-9 9 0 2.12.74 4.07 1.97 5.61l-1.68 1.68c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.68-1.68C7.93 20.26 9.88 21 12 21c2.3 0 4.61-.88 6.36-2.64C20.12 16.61 21 14.3 21 12V5c0-1.1-.9-2-2-2h-7zm3.83 9.26-5.16 4.63c-.16.15-.41.14-.56-.01-.14-.14-.16-.36-.04-.52l2.44-3.33-4.05-.4c-.44-.04-.63-.59-.3-.89l5.16-4.63c.16-.15.41-.14.56.01.14.14.16.36.04.52l-2.44 3.33 4.05.4c.45.04.63.59.3.89z"}),"EnergySavingsLeafRounded");Ju=Ao.default=Vv;var Io={},qv=we;Object.defineProperty(Io,"__esModule",{value:!0});var Zu=Io.default=void 0,Bv=qv($e()),el=Le,Qv=(0,Bv.default)([(0,el.jsx)("path",{d:"M14.14 12h-.06c.81 0 1.28-.91.82-1.57L9.82 3.17c-.4-.57-1.24-.57-1.64 0L3.1 10.43c-.46.66.01 1.57.82 1.57h-.06L.99 16.46c-.43.66.05 1.54.84 1.54H7v2c0 1.1.9 2 2 2s2-.9 2-2v-2h5.17c.79 0 1.27-.88.84-1.54L14.14 12z"},"0"),(0,el.jsx)("path",{d:"M23.01 16.46 20.14 12h-.06c.81 0 1.28-.91.82-1.57l-5.08-7.26c-.4-.57-1.24-.57-1.64 0l-1.57 2.24 3.11 4.44c.43.61.48 1.41.14 2.07-.08.16-.18.3-.3.43l2.29 3.57c.4.62.42 1.4.07 2.04-.01.02-.02.03-.03.04h4.28c.79 0 1.27-.88.84-1.54zM13 20c0 1.1.9 2 2 2s2-.9 2-2v-1h-4v1z"},"1")],"ForestRounded");Zu=Io.default=Qv;var ko={},Wv=we;Object.defineProperty(ko,"__esModule",{value:!0});var tl=ko.default=void 0,Gv=Wv($e()),Kv=Le,Hv=(0,Gv.default)((0,Kv.jsx)("path",{d:"M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z"}),"LoopRounded");tl=ko.default=Hv;var jo={},Xv=we;Object.defineProperty(jo,"__esModule",{value:!0});var nl=jo.default=void 0,Jv=Xv($e()),Zv=Le,e1=(0,Jv.default)((0,Zv.jsx)("path",{d:"M16.96 12h.08c.81 0 1.28-.91.82-1.57l-5.08-7.25c-.4-.57-1.24-.57-1.64 0L6.1 10.43c-.46.66.02 1.57.83 1.57h.04l-2.9 4.46c-.44.66.04 1.54.84 1.54h5.08v2.02c0 1.09.89 1.98 1.98 1.98 1.09 0 1.98-.89 1.98-1.98V18h5.15c.8 0 1.28-.89.83-1.55L16.96 12z"}),"ParkRounded");nl=jo.default=e1;var zo={},t1=we;Object.defineProperty(zo,"__esModule",{value:!0});var rl=zo.default=void 0,n1=t1($e()),r1=Le,i1=(0,n1.default)((0,r1.jsx)("path",{d:"M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM2.71 3.16c-.39.39-.39 1.02 0 1.41l1.97 1.97C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z"}),"VisibilityOffRounded");rl=zo.default=i1;var Ro={},o1=we;Object.defineProperty(Ro,"__esModule",{value:!0});var il=Ro.default=void 0,a1=o1($e()),s1=Le,u1=(0,a1.default)((0,s1.jsx)("path",{d:"M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"}),"VisibilityRounded");il=Ro.default=u1;const Ae={actionButton:{minWidth:"auto !important"},container:{background:Me.background,borderRadius:"1rem"},containerField:{background:Me.background,border:`solid 1px ${Me.primary}`,borderRadius:"1rem"},containerHidden:{background:Me.background,border:`solid 1px ${Me.borderGrey}`,borderRadius:"1rem"},containerTree:{background:Me.tertiary,border:`solid 1px ${Me.primary}`,borderRadius:"1rem"},containerValue:{background:Me.background,border:`solid 1px ${Me.secondary}`,borderRadius:"1rem"},icon:{color:Me.grey500},nodeSvg:{stroke:"transparent !important"},stepChip:{fontSize:".7rem !important",fontWeight:"bold",height:"20px !important"},title:{display:"-webkit-box",margin:0,overflow:"hidden",textAlign:"right",textOverflow:"ellipsis",webkitBoxOrient:"vertical",webkitLineClamp:2}},l1=e=>{const t=!!e,n=e==="tree";return e==="hidden"?Ae.containerHidden:n?Ae.containerTree:t?Ae.containerField:Ae.containerValue},c1=({nodeDatum:e,onAddChildren:t,onEditChildren:n,onDeleteChildren:r,onOpenTreeModal:i,hierarchyPointNode:o,size:a=220})=>{var j;const{t:s}=Qe.useTranslation(["translation","form"]),{attributes:l}=e||{},{isRoot:u,isLeaf:c,required:d,isDecision:f,step:h,type:y,label:m,repeatable:v}=l||{},M=!!y,D=y==="tree",O=y==="hidden",x=!M,g=!u&&!c;return oe("g",{children:[_(N.GlobalStyles,{styles:{".rd3t-node svg":Ae.nodeSvg}}),_(N.Box,{component:"foreignObject",height:a,width:a,x:`-${a/2}`,y:`-${a/2}`,sx:l1(y),children:oe(N.Box,{flex:1,display:"flex",p:2,height:"100%",flexDirection:"column",justifyContent:"space-between",children:[oe(N.Stack,{alignItems:"flex-end",spacing:.5,children:[M&&oe(N.Stack,{direction:"row",spacing:1,alignItems:"center",children:[h&&_(N.Tooltip,{title:`${s("step",{ns:"form"})} ${(j=e==null?void 0:e.attributes)==null?void 0:j.step}`,placement:"left",arrow:!0,children:_(N.Chip,{color:"primary",size:"small",label:h,sx:Ae.stepChip})}),_(N.Typography,{variant:"subtitle2",sx:Ae.title,children:_("strong",{children:m})})]}),M&&_(N.Chip,{color:"info",size:"small",label:s(`type.${y}`,{ns:"form"})}),d&&_(N.Stack,{direction:"row",spacing:.5,children:d&&_(N.Chip,{color:"warning",size:"small",variant:"outlined",label:`${s("required")}`})}),_(N.Stack,{spacing:.5,alignItems:"flex-end",children:x&&_(N.Typography,{variant:"subtitle2",sx:Ae.title,children:_("strong",{children:m})})}),oe(N.Stack,{paddingTop:.5,spacing:.5,direction:"row",children:[v&&_(N.Tooltip,{title:s("isARepeatable"),placement:"bottom",arrow:!0,children:_(tl,{style:Ae.icon})}),c&&_(N.Tooltip,{title:s("isALeaf"),placement:"bottom",arrow:!0,children:_(Ju,{style:Ae.icon})}),O&&_(N.Tooltip,{title:s("isAHidden"),placement:"bottom",arrow:!0,children:_(rl,{style:Ae.icon})}),u&&_(N.Tooltip,{title:s("isTheRoot"),placement:"bottom",arrow:!0,children:_(nl,{style:Ae.icon})}),g&&_(N.Tooltip,{title:s("isABranch"),placement:"bottom",arrow:!0,children:_(Gu,{style:Ae.icon})}),D&&_(N.Tooltip,{title:s("isATree"),placement:"bottom",arrow:!0,children:_(Zu,{style:Ae.icon})})]})]}),oe(N.Stack,{direction:"row",justifyContent:"flex-end",spacing:0,alignSelf:"flex-end",children:[!u&&_(N.Tooltip,{title:s("remove"),arrow:!0,children:_(N.Button,{variant:"text",sx:Ae.actionButton,size:"small",color:"error",onClick:()=>r==null?void 0:r(o),children:_(Hu,{})})}),!x&&_(N.Tooltip,{title:s("edit"),arrow:!0,children:_(N.Button,{variant:"text",color:"secondary",sx:Ae.actionButton,size:"small",onClick:()=>n==null?void 0:n(o),children:_(Xu,{})})}),!f&&_(N.Tooltip,{title:s("add"),arrow:!0,children:_(N.Button,{variant:"text",color:"success",sx:Ae.actionButton,size:"small",onClick:()=>t==null?void 0:t(o),children:_(Ku,{})})}),D&&_(N.Tooltip,{title:s("show"),arrow:!0,children:_(N.Button,{variant:"text",color:"info",sx:Ae.actionButton,size:"small",onClick:()=>i==null?void 0:i(o),children:_(il,{})})})]})]})})]})},f1=U.memo(c1),ol=()=>{const{setModalOpen:e,setCurrentHierarchyPointNode:t,setTreeModalOpen:n,setTreePath:r}=Je();return{handleAddChildren:u=>{t(u),e("add")},handleCloseTreeModal:()=>{r([]),n(!1)},handleDeleteChildren:u=>{t(u),e("delete")},handleEditChildren:u=>{t(u),e("edit")},handleOpenTreeModal:u=>{var d,f;const c={label:u==null?void 0:u.data.attributes.label,path:((f=(d=u==null?void 0:u.data)==null?void 0:d.attributes)==null?void 0:f.treePath)||""};r(h=>[...h,c]),n(!0)}}},d1=({nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o})=>{const{handleDeleteChildren:a,handleEditChildren:s,handleAddChildren:l,handleOpenTreeModal:u}=ol();return _(f1,{nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o,onAddChildren:l,onOpenTreeModal:u,onDeleteChildren:a,onEditChildren:s})},al=({nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o})=>_(d1,{nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o}),h1=()=>{const{t:e}=Qe.useTranslation(["modal","snackMessage"]),{currentHierarchyPointNode:t,modalOpen:n,setModalOpen:r}=Je(),i=n==="edit";return{closeModal:()=>r(null),getTitleModalDelete:()=>{var f,h;const d=(h=(f=t==null?void 0:t.data)==null?void 0:f.attributes)==null?void 0:h.label;return e("deleteTitle",{name:d,ns:"modal"})},getTitleModalMutation:()=>{var h;const d=(h=t==null?void 0:t.data)==null?void 0:h.attributes.label;return d?e(i?"editTitle":"addTitle",{name:d,ns:"modal"}):e("addFirstTitle",{name:d,ns:"modal"})},isDeleteModal:n==="delete",isModalMutationOpen:i||n==="add"}},p1=()=>{const{currentTree:e,setCurrentTree:t,tree:n}=Je(),{name:r,errorName:i,id:o}=e;return{disabled:!!e.id&&!n,errorName:i,handleChangeName:l=>{const{value:u}=l.target;if(!u){t(c=>({...c,errorName:"Champs requis",name:l.target.value}));return}t(c=>({...c,errorName:"",name:l.target.value}))},id:o,name:r}},g1=()=>{const{t:e}=Qe.useTranslation("form"),{name:t,handleChangeName:n,errorName:r,disabled:i}=p1();return _(N.TextField,{required:!0,label:e("treeName"),size:"small",onChange:n,value:t,error:!!r,disabled:i})},m1=()=>{var h,y;const{tree:e,treeModalOpen:t,treePath:n,endPoint:r}=Je(),{handleCloseTreeModal:i}=ol(),{getTitleModalMutation:o,closeModal:a,getTitleModalDelete:s,isModalMutationOpen:l,isDeleteModal:u}=h1(),c=(h=n==null?void 0:n.at(-1))==null?void 0:h.path,d=(y=n==null?void 0:n.at(-1))==null?void 0:y.label,f=e&&en(e,c);return oe(Vn,{children:[oe(Uy,{children:[_(Ly,{children:oe(N.Stack,{justifyContent:"space-between",direction:"row",alignItems:"center",children:[_(Sl,{}),!!r&&oe(N.Stack,{direction:"row",alignItems:"center",spacing:2,children:[_(g1,{}),_(qu,{size:"small",arrowOnly:!0,showBtnAddNewTree:!0})]})]})}),_(Fy,{children:_(vs,{data:e,renderCustomNodeElement:al})}),_(Vy,{children:_(Pp,{value:e})}),_(Ry,{children:_(Ey,{value:e})})]}),_(Iu,{open:l,onClose:a,title:o(),children:_(Tv,{onClose:a})}),_(Iu,{open:u,onClose:a,title:s(),children:_(rv,{onClose:a})}),_(jy,{open:t,onClose:i,title:d,children:f&&_(vs,{data:f,renderCustomNodeElement:al})})]})},y1="0.8.0",v1=({children:e,endPoint:t,initialTree:n,initialTreeId:r})=>{const[i,o]=U.useState(Nt.currentHierarchyPointNode),[a,s]=U.useState(Nt.modalOpen),[l,u]=U.useState(Nt.treeModalOpen),[c,d]=U.useState(Nt.treePath),[f,h]=U.useReducer(tv,n||Nt.tree),[y,m]=U.useState(r?{...Nt.currentTree,id:r}:Nt.currentTree),v=U.useMemo(()=>({currentHierarchyPointNode:i,currentTree:y,dispatchTree:h,endPoint:t,modalOpen:a,setCurrentHierarchyPointNode:o,setCurrentTree:m,setModalOpen:s,setTreeModalOpen:u,setTreePath:d,tree:f,treeModalOpen:l,treePath:c,version:y1}),[i,a,l,c,f,y,t]);return Eo(y.id,{enabled:!!r,onSuccess:async M=>{M&&(m({id:M==null?void 0:M.id,name:M==null?void 0:M.label}),h(Lu((M==null?void 0:M.workflow)||null)))}}),_(ms.Provider,{value:v,children:e})},b1={createTree:"Create Tree",downloadJSONFile:"Download JSON File",save:"Save",update:"Update"},M1={decisionFields:"Decision fields",helperText:"Helper text",hiddenValue:"Hidden value",label:"Label",mustBeUnique:"Must be unique",newTree:"Nouvel arbre",offMessage:"Message (disable)",onMessage:"Message (enable)",repeatable:"Repeatable",staticFields:"Static fields",step:"Step",tree:"Tree",treeName:"Tree name",type:{address:"Address",checkbox:"Checkbox",date:"Date",email:"Email",file:"File",hidden:"Hidden field",number:"Number",password:"Password",radio:"Radio",select:"Select",switch:"Switch",tel:"Tel",text:"Text",time:"Time",tree:"Tree",url:"URL"},value:"Value",values:"Values"},_1={addFirstTitle:"Add a field",addTitle:"Add a field to « {{name}} »",deleteTitle:"Are you sure to delete « {{name}} »",editTitle:"Edit field « {{name}} »",saveTree:"Save a Tree"},x1={error:{fetchTree:"An error has occurred. Please try again",saveTree:"An error has occurred. Please try again",updateTree:"An error has occurred. Please try again"},success:{saveTree:"Tree registered",updateTree:"Tree updated"}},T1={add:"Add",cancel:"Cancel",disabled:"Disabled",edit:"Edit",isABranch:"Is a branch",isAHidden:"Is a hidden field",isALeaf:"Is a leaf",isARepeatable:"Is a repeatable",isATree:"Is a tree",isTheRoot:"Is the root",label:"Label",name:"Name",remove:"Remove",required:"Required",save:"Save",show:"Show",type:"Type",validate:"Validate",value:"Value",values:"Values"},w1={createTree:"Créer un arbre",downloadJSONFile:"Télécharger le fichier JSON",save:"Enregistrer",update:"Modifier"},N1={decisionField:"Champs de décision",helperText:"Texte d'information",hiddenValue:"Valeur caché",label:"Label",mustBeUnique:"Doit être unique",newTree:"Nouvel arbre",offMessage:"Message (désactiver)",onMessage:"Message (activer)",repeatable:"Répétable",staticFields:"Champs statiques",step:"Étape",tree:"Arbre",treeName:"Nom de l'arbre",type:{address:"Adresse",checkbox:"Case à cocher",date:"Date",email:"Email",file:"Fichier",hidden:"Champs caché",number:"Nombre",password:"Mot de passe",radio:"Radio",select:"Select",switch:"Switch",tel:"Téléphone",text:"Texte",time:"Temps",tree:"Arbre",url:"URL"},value:"Valeur",values:"Valeurs"},E1={addFirstTitle:"Ajouter un champ",addTitle:"Ajouter un champ à « {{name}} »",deleteTitle:"Voulez vraiment supprimer « {{name}} »",editTitle:"Éditer le champ « {{name}} »",saveTree:"Enregistrer l'arbre"},D1={error:{fetchTree:"Une erreur est survenue veuillez réessayer",saveTree:"Une erreur est survenue veuillez réessayer",updateTree:"Une erreur est survenue veuillez réessayer"},success:{saveTree:"Arbre enregistré",updateTree:"Arbre mis à jour"}},O1={add:"Ajouter",cancel:"Annuler",disabled:"Désactivé",edit:"Éditer",isABranch:"Est une branche",isAHidden:"Est un champs caché",isALeaf:"Est une feuille",isARepeatable:"Est répétable",isATree:"Est un arbre",isTheRoot:"Est la racine",label:"Label",name:"Nom",remove:"Supprimer",required:"Requis",save:"Enregistrer",show:"Afficher",type:"Type",validate:"Valider",value:"Valeur",values:"Valeurs"};dl.use(hl).use(Qe.initReactI18next).init({debug:!1,fallbackLng:"en",interpolation:{escapeValue:!1},load:"languageOnly",react:{useSuspense:!1},resources:{en:{button:b1,form:M1,modal:_1,snackMessage:x1,translation:T1},fr:{button:w1,form:N1,modal:E1,snackMessage:D1,translation:O1}},returnNull:!1}).then();const C1=({authToken:e,endPoint:t,initialTree:n,initialTreeId:r})=>(U.useLayoutEffect(()=>{Rt.defaults.baseURL=t,Rt.defaults.headers.common.Authorization=`Bearer ${e}`},[t,e]),_($t.QueryClientProvider,{client:_l,children:_(wl,{authToken:e,children:_(v1,{endPoint:t,initialTree:n,initialTreeId:r,children:_(Ml,{children:_(Ol,{children:_(m1,{})})})})})}));Se.TreePlusIcon=gs,Se.Treege=C1,Object.defineProperty(Se,Symbol.toStringTag,{value:"Module"})});
|
|
167
|
+
} });`:Ft(12,v?` (${v})`:"",JSON.stringify(y.main)));return Mu(y,"light",D,r),Mu(y,"dark",O,r),y.contrastText||(y.contrastText=d(y.main)),y},h={dark:fo,light:xu};return process.env.NODE_ENV!=="production"&&(h[t]||console.error(`MUI: The palette mode \`${t}\` is not supported.`)),vt(ae({common:ae({},Cn),mode:t,primary:f({color:o,name:"primary"}),secondary:f({color:a,name:"secondary",mainShade:"A400",lightShade:"A200",darkShade:"A700"}),error:f({color:s,name:"error"}),warning:f({color:c,name:"warning"}),info:f({color:l,name:"info"}),success:f({color:u,name:"success"}),grey:Cm,contrastThreshold:n,getContrastText:d,augmentColor:f,tonalOffset:r},h[t]),i)}const Lm=["fontFamily","fontSize","fontWeightLight","fontWeightRegular","fontWeightMedium","fontWeightBold","htmlFontSize","allVariants","pxToRem"];function Pm(e){return Math.round(e*1e5)/1e5}const _u={textTransform:"uppercase"},Tu='"Roboto", "Helvetica", "Arial", sans-serif';function Fm(e,t){const n=typeof t=="function"?t(e):t,{fontFamily:r=Tu,fontSize:i=14,fontWeightLight:o=300,fontWeightRegular:a=400,fontWeightMedium:s=500,fontWeightBold:l=700,htmlFontSize:u=16,allVariants:c,pxToRem:d}=n,f=bt(n,Lm);process.env.NODE_ENV!=="production"&&(typeof i!="number"&&console.error("MUI: `fontSize` is required to be a number."),typeof u!="number"&&console.error("MUI: `htmlFontSize` is required to be a number."));const h=i/14,b=d||(M=>`${M/u*h}rem`),y=(M,D,O,_,m)=>ae({fontFamily:r,fontWeight:M,fontSize:b(D),lineHeight:O},r===Tu?{letterSpacing:`${Pm(_/D)}em`}:{},m,c),v={h1:y(o,96,1.167,-1.5),h2:y(o,60,1.2,-.5),h3:y(a,48,1.167,0),h4:y(a,34,1.235,.25),h5:y(a,24,1.334,0),h6:y(s,20,1.6,.15),subtitle1:y(a,16,1.75,.15),subtitle2:y(s,14,1.57,.1),body1:y(a,16,1.5,.15),body2:y(a,14,1.43,.15),button:y(s,14,1.75,.4,_u),caption:y(a,12,1.66,.4),overline:y(a,12,2.66,1,_u),inherit:{fontFamily:"inherit",fontWeight:"inherit",fontSize:"inherit",lineHeight:"inherit",letterSpacing:"inherit"}};return vt(ae({htmlFontSize:u,pxToRem:b,fontFamily:r,fontSize:i,fontWeightLight:o,fontWeightRegular:a,fontWeightMedium:s,fontWeightBold:l},v),f,{clone:!1})}const Um=.2,Ym=.14,Vm=.12;function _e(...e){return[`${e[0]}px ${e[1]}px ${e[2]}px ${e[3]}px rgba(0,0,0,${Um})`,`${e[4]}px ${e[5]}px ${e[6]}px ${e[7]}px rgba(0,0,0,${Ym})`,`${e[8]}px ${e[9]}px ${e[10]}px ${e[11]}px rgba(0,0,0,${Vm})`].join(",")}const Bm=["none",_e(0,2,1,-1,0,1,1,0,0,1,3,0),_e(0,3,1,-2,0,2,2,0,0,1,5,0),_e(0,3,3,-2,0,3,4,0,0,1,8,0),_e(0,2,4,-1,0,4,5,0,0,1,10,0),_e(0,3,5,-1,0,5,8,0,0,1,14,0),_e(0,3,5,-1,0,6,10,0,0,1,18,0),_e(0,4,5,-2,0,7,10,1,0,2,16,1),_e(0,5,5,-3,0,8,10,1,0,3,14,2),_e(0,5,6,-3,0,9,12,1,0,3,16,2),_e(0,6,6,-3,0,10,14,1,0,4,18,3),_e(0,6,7,-4,0,11,15,1,0,4,20,3),_e(0,7,8,-4,0,12,17,2,0,5,22,4),_e(0,7,8,-4,0,13,19,2,0,5,24,4),_e(0,7,9,-4,0,14,21,2,0,5,26,4),_e(0,8,9,-5,0,15,22,2,0,6,28,5),_e(0,8,10,-5,0,16,24,2,0,6,30,5),_e(0,8,11,-5,0,17,26,2,0,6,32,5),_e(0,9,11,-5,0,18,28,2,0,7,34,6),_e(0,9,12,-6,0,19,29,2,0,7,36,6),_e(0,10,13,-6,0,20,31,3,0,8,38,7),_e(0,10,13,-6,0,21,33,3,0,8,40,7),_e(0,10,14,-6,0,22,35,3,0,8,42,7),_e(0,11,14,-7,0,23,36,3,0,9,44,8),_e(0,11,15,-7,0,24,38,3,0,9,46,8)],qm=["duration","easing","delay"],Qm={easeInOut:"cubic-bezier(0.4, 0, 0.2, 1)",easeOut:"cubic-bezier(0.0, 0, 0.2, 1)",easeIn:"cubic-bezier(0.4, 0, 1, 1)",sharp:"cubic-bezier(0.4, 0, 0.6, 1)"},Wm={shortest:150,shorter:200,short:250,standard:300,complex:375,enteringScreen:225,leavingScreen:195};function wu(e){return`${Math.round(e)}ms`}function Gm(e){if(!e)return 0;const t=e/36;return Math.round((4+15*t**.25+t/5)*10)}function Km(e){const t=ae({},Qm,e.easing),n=ae({},Wm,e.duration);return ae({getAutoHeightDuration:Gm,create:(i=["all"],o={})=>{const{duration:a=n.standard,easing:s=t.easeInOut,delay:l=0}=o,u=bt(o,qm);if(process.env.NODE_ENV!=="production"){const c=f=>typeof f=="string",d=f=>!isNaN(parseFloat(f));!c(i)&&!Array.isArray(i)&&console.error('MUI: Argument "props" must be a string or Array.'),!d(a)&&!c(a)&&console.error(`MUI: Argument "duration" must be a number or a string but found ${a}.`),c(s)||console.error('MUI: Argument "easing" must be a string.'),!d(l)&&!c(l)&&console.error('MUI: Argument "delay" must be a number or a string.'),typeof o!="object"&&console.error(["MUI: Secong argument of transition.create must be an object.","Arguments should be either `create('prop1', options)` or `create(['prop1', 'prop2'], options)`"].join(`
|
|
168
|
+
`)),Object.keys(u).length!==0&&console.error(`MUI: Unrecognized argument(s) [${Object.keys(u).join(",")}].`)}return(Array.isArray(i)?i:[i]).map(c=>`${c} ${typeof a=="string"?a:wu(a)} ${s} ${typeof l=="string"?l:wu(l)}`).join(",")}},e,{easing:t,duration:n})}const Hm={mobileStepper:1e3,fab:1050,speedDial:1050,appBar:1100,drawer:1200,modal:1300,snackbar:1400,tooltip:1500},Xm=["breakpoints","mixins","spacing","palette","transitions","typography","shape"];function Jm(e={},...t){const{mixins:n={},palette:r={},transitions:i={},typography:o={}}=e,a=bt(e,Xm);if(e.vars)throw new Error(process.env.NODE_ENV!=="production"?"MUI: `vars` is a private field used for CSS variables support.\nPlease use another name.":Ft(18));const s=$m(r),l=lo(e);let u=vt(l,{mixins:Om(l.breakpoints,n),palette:s,shadows:Bm.slice(),typography:Fm(s,o),transitions:Km(i),zIndex:ae({},Hm)});if(u=vt(u,a),u=t.reduce((c,d)=>vt(c,d),u),process.env.NODE_ENV!=="production"){const c=["active","checked","completed","disabled","error","expanded","focused","focusVisible","required","selected"],d=(f,h)=>{let b;for(b in f){const y=f[b];if(c.indexOf(b)!==-1&&Object.keys(y).length>0){if(process.env.NODE_ENV!=="production"){const v=Qi("",b);console.error([`MUI: The \`${h}\` component increases the CSS specificity of the \`${b}\` internal state.`,"You can not override it like this: ",JSON.stringify(f,null,2),"",`Instead, you need to use the '&.${v}' syntax:`,JSON.stringify({root:{[`&.${v}`]:y}},null,2),"","https://mui.com/r/state-classes-guide"].join(`
|
|
169
|
+
`))}f[b]={}}}};Object.keys(u.components).forEach(f=>{const h=u.components[f].styleOverrides;h&&f.indexOf("Mui")===0&&d(h,f)})}return u.unstable_sxConfig=ae({},so,a==null?void 0:a.unstable_sxConfig),u.unstable_sx=function(d){return uo({sx:d,theme:this})},u}const Nu=Jm(),Eu="$$material";function Zm({props:e,name:t}){return Tm({props:e,name:t,defaultTheme:Nu,themeId:Eu})}const ey=Mm({themeId:Eu,defaultTheme:Nu,rootShouldForwardProp:e=>Cr(e)&&e!=="classes"});function ty(e){return Qi("MuiSvgIcon",e)}l0("MuiSvgIcon",["root","colorPrimary","colorSecondary","colorAction","colorError","colorDisabled","fontSizeInherit","fontSizeSmall","fontSizeMedium","fontSizeLarge"]);const ny=["children","className","color","component","fontSize","htmlColor","inheritViewBox","titleAccess","viewBox"],ry=e=>{const{color:t,fontSize:n,classes:r}=e,i={root:["root",t!=="inherit"&&`color${lt(t)}`,`fontSize${lt(n)}`]};return s0(i,ty,r)},iy=ey("svg",{name:"MuiSvgIcon",slot:"Root",overridesResolver:(e,t)=>{const{ownerState:n}=e;return[t.root,n.color!=="inherit"&&t[`color${lt(n.color)}`],t[`fontSize${lt(n.fontSize)}`]]}})(({theme:e,ownerState:t})=>{var n,r,i,o,a,s,l,u,c,d,f,h,b;return{userSelect:"none",width:"1em",height:"1em",display:"inline-block",fill:t.hasSvgAsChild?void 0:"currentColor",flexShrink:0,transition:(n=e.transitions)==null||(r=n.create)==null?void 0:r.call(n,"fill",{duration:(i=e.transitions)==null||(i=i.duration)==null?void 0:i.shorter}),fontSize:{inherit:"inherit",small:((o=e.typography)==null||(a=o.pxToRem)==null?void 0:a.call(o,20))||"1.25rem",medium:((s=e.typography)==null||(l=s.pxToRem)==null?void 0:l.call(s,24))||"1.5rem",large:((u=e.typography)==null||(c=u.pxToRem)==null?void 0:c.call(u,35))||"2.1875rem"}[t.fontSize],color:(d=(f=(e.vars||e).palette)==null||(f=f[t.color])==null?void 0:f.main)!=null?d:{action:(h=(e.vars||e).palette)==null||(h=h.action)==null?void 0:h.active,disabled:(b=(e.vars||e).palette)==null||(b=b.action)==null?void 0:b.disabled,inherit:void 0}[t.color]}}),ho=ue.forwardRef(function(t,n){const r=Zm({props:t,name:"MuiSvgIcon"}),{children:i,className:o,color:a="inherit",component:s="svg",fontSize:l="medium",htmlColor:u,inheritViewBox:c=!1,titleAccess:d,viewBox:f="0 0 24 24"}=r,h=bt(r,ny),b=ue.isValidElement(i)&&i.type==="svg",y=ae({},r,{color:a,component:s,fontSize:l,instanceFontSize:t.fontSize,inheritViewBox:c,viewBox:f,hasSvgAsChild:b}),v={};c||(v.viewBox=f);const M=ry(y);return g.jsxs(iy,ae({as:s,className:c0(M.root,o),focusable:"false",color:u,"aria-hidden":d?void 0:!0,role:d?"img":void 0,ref:n},v,h,b&&i.props,{ownerState:y,children:[b?i.props.children:i,d?g.jsx("title",{children:d}):null]}))});process.env.NODE_ENV!=="production"&&(ho.propTypes={children:xe.node,classes:xe.object,className:xe.string,color:xe.oneOfType([xe.oneOf(["inherit","action","disabled","primary","secondary","error","info","success","warning"]),xe.string]),component:xe.elementType,fontSize:xe.oneOfType([xe.oneOf(["inherit","large","medium","small"]),xe.string]),htmlColor:xe.string,inheritViewBox:xe.bool,shapeRendering:xe.string,sx:xe.oneOfType([xe.arrayOf(xe.oneOfType([xe.func,xe.object,xe.bool])),xe.func,xe.object]),titleAccess:xe.string,viewBox:xe.string}),ho.muiName="SvgIcon";const Du=ho;function oy(e,t){function n(r,i){return g.jsx(Du,ae({"data-testid":`${t}Icon`,ref:i},r,{children:e}))}return process.env.NODE_ENV!=="production"&&(n.displayName=`${t}Icon`),n.muiName=Du.muiName,ue.memo(ue.forwardRef(n))}const ay=Po(Object.freeze(Object.defineProperty({__proto__:null,capitalize:lt,createChainedFunction:Yp,createSvgIcon:oy,debounce:Vp,deprecatedPropType:Bp,isMuiElement:qp,ownerDocument:Es,ownerWindow:Qp,requirePropFactory:Wp,setRef:Ds,unstable_ClassNameGenerator:{configure:e=>{process.env.NODE_ENV!=="production"&&console.warn(["MUI: `ClassNameGenerator` import from `@mui/material/utils` is outdated and might cause unexpected issues.","","You should use `import { unstable_ClassNameGenerator } from '@mui/material/className'` instead","","The detail of the issue: https://github.com/mui/material-ui/issues/30011#issuecomment-1024993401","","The updated documentation: https://mui.com/guides/classname-generator/"].join(`
|
|
170
|
+
`)),ks.configure(e)}},unstable_useEnhancedEffect:Os,unstable_useId:Kp,unsupportedProp:Hp,useControlled:Xp,useEventCallback:Jp,useForkRef:Zp,useIsFocusVisible:a0},Symbol.toStringTag,{value:"Module"})));var Ou;function Ae(){return Ou||(Ou=1,function(e){"use client";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"default",{enumerable:!0,get:function(){return t.createSvgIcon}});var t=ay}(Yi)),Yi}var sy=De;Object.defineProperty(Ui,"__esModule",{value:!0});var Cu=Ui.default=void 0,uy=sy(Ae()),ly=g,cy=(0,uy.default)((0,ly.jsx)("path",{d:"M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7.12-.4.28-.79.48-1.17.22-.37.15-.84-.16-1.15zM5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16-.12-.44-.51-.72-.94-.72zm2.85 6.02c.51.28 1.04.5 1.59.66.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48-.38-.21-.86-.14-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55zM13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75-.41.12-.68.51-.68.94v.02c0 .65.61 1.14 1.23.96C17.57 18.71 20 15.64 20 12c0-4.08-3.05-7.44-7-7.93z"}),"RotateLeftRounded");Cu=Ui.default=cy;var po={},fy=De;Object.defineProperty(po,"__esModule",{value:!0});var ju=po.default=void 0,dy=fy(Ae()),hy=g,py=(0,dy.default)((0,hy.jsx)("path",{d:"m20.41 6.41-2.83-2.83c-.37-.37-.88-.58-1.41-.58H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7.4l8.6-8.6V7.83c0-.53-.21-1.04-.59-1.42zM12 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-9c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v2zm4.99 7.25 1.77 1.77-4.84 4.84c-.1.09-.23.14-.36.14H15.5c-.28 0-.5-.22-.5-.5v-1.06c0-.13.05-.26.15-.35l4.84-4.84zm3.26.26-.85.85-1.77-1.77.85-.85c.2-.2.51-.2.71 0l1.06 1.06c.2.2.2.52 0 .71z"}),"SaveAsRounded");ju=po.default=py;var go={},gy=De;Object.defineProperty(go,"__esModule",{value:!0});var Au=go.default=void 0,my=gy(Ae()),yy=g,vy=(0,my.default)((0,yy.jsx)("path",{d:"M17.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7.83c0-.53-.21-1.04-.59-1.41l-2.82-2.83zM12 19c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm1-10H7c-1.1 0-2-.9-2-2s.9-2 2-2h6c1.1 0 2 .9 2 2s-.9 2-2 2z"}),"SaveRounded");Au=go.default=vy;var mo={},by=De;Object.defineProperty(mo,"__esModule",{value:!0});var Su=mo.default=void 0,xy=by(Ae()),My=g,_y=(0,xy.default)((0,My.jsx)("path",{d:"M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.35 14.65-2.79-2.79c-.32-.32-.1-.86.35-.86H11v-2.99c0-.55.44-.99.99-1 .56-.01 1.01.44 1.01 1V13h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.19.2-.51.2-.7.01z"}),"SimCardDownloadRounded");Su=mo.default=_y;const Iu=(e,t)=>{var o;if(!e)return null;let n=null;const r=(e==null?void 0:e.name)===t,i=(o=e==null?void 0:e.children)==null?void 0:o.length;if(r)return e;if(i)for(let a=0;n===null&&a<e.children.length;a+=1)n=Iu(e.children[a],t);return n},Xt=(e,t)=>{var a,s,l,u,c;if(!e)return null;if(!t)return e;let n=null;const r=((a=e==null?void 0:e.attributes)==null?void 0:a.treePath)===t,i=(s=e==null?void 0:e.attributes)==null?void 0:s.tree,o=(l=e==null?void 0:e.children)==null?void 0:l.length;if(r)return((u=e==null?void 0:e.attributes)==null?void 0:u.tree)||null;if(i&&(n=Xt((c=e.attributes)==null?void 0:c.tree,t)),o)for(let d=0;n===null&&d<e.children.length;d+=1)n=Xt(e.children[d],t);return n},jr=(e,t,n)=>{const r=Xt(e,t);return Iu(r,n)},Ty=(e,t)=>{if(!e)return null;const n=t.attributes.isDecision;return Object.defineProperty(e,"attributes",{value:{...e.attributes,isLeaf:!1}}),n?(Object.defineProperty(e,"children",{value:[{...t,attributes:{...t.attributes,isLeaf:!1}}]}),null):(Object.defineProperty(e,"children",{value:[{...t,attributes:{...t.attributes,isLeaf:!e.children.length}}]}),null)},wy=({tree:e,path:t,name:n,child:r})=>{var a;if(!e)return r.children.length?{...r}:{...r,attributes:{...r.attributes,isLeaf:!0,isRoot:!0}};const i=structuredClone(e),o=jr(i,t,n);return Ty(o,{...r,...!r.attributes.isDecision&&{children:[...((a=jr(e,t,n))==null?void 0:a.children)||[]]}}),i},ku=(e,t=[])=>{if(!e)return[];let n=[...t];return Object.entries(e).forEach(([r,i])=>{const o=r==="name",a=r==="children"&&i.length>0;o&&(n=[...n,i]),a&&(n=[...n,...i.map(s=>ku(s,n)).flat()])}),n},zu=(e,t,n=null)=>{var a;if(!e)return null;let r=null;const i=(e==null?void 0:e.name)===t,o=(a=e==null?void 0:e.children)==null?void 0:a.length;if(i)return n;if(o)for(let s=0;r===null&&s<e.children.length;s+=1)r=zu(e.children[s],t,e);return r},Ny=(e,t)=>(!e||!t||(Object.defineProperty(e,"children",{value:e.children.filter(n=>n.name!==t.name)}),Object.defineProperty(e,"attributes",{value:{...e.attributes,isLeaf:!0}})),null),Ey=(e,t,n)=>{const r=Xt(e,t);return zu(r,n)},Dy=({tree:e,path:t,name:n})=>{const r=structuredClone(e),i=jr(r,t,n),o=Ey(r,t,n);return Ny(o,i),r},Oy=(e,t)=>{if(!e)return null;const n=t.attributes.isDecision,r=e.attributes.isDecision,i=e.attributes.depth===0;return r||n?(Object.defineProperty(e,"children",{value:[...t.children]}),Object.defineProperty(e,"attributes",{value:{...t.attributes,isLeaf:!t.children.length||!n,isRoot:i}}),Object.defineProperty(e,"name",{value:t.name}),null):(Object.defineProperty(e,"children",{value:[...e.children]}),Object.defineProperty(e,"attributes",{value:{...t.attributes,isLeaf:!e.children.length,isRoot:i}}),Object.defineProperty(e,"name",{value:t.name}),null)},Cy=({tree:e,path:t,name:n,child:r})=>{const i=structuredClone(e),o=jr(i,t,n);return Oy(o,r),i},ht={appendTreeCard:"appendTreeCard",deleteTreeCard:"deleteTreeCard",replaceTreeCard:"replaceTreeCard",resetTree:"resetTree",setTree:"setTree"},jy=(e,t,n)=>({children:n,name:t,path:e,type:ht.appendTreeCard}),Ay=(e,t,n)=>({children:n,name:t,path:e,type:ht.replaceTreeCard}),Sy=(e,t)=>({name:t,path:e,type:ht.deleteTreeCard}),Ru=()=>({type:ht.resetTree}),$u=e=>({tree:e,type:ht.setTree}),Iy=(e,t)=>{switch(t.type){case ht.appendTreeCard:{const{name:n,path:r,children:i}=t;return wy({child:i,name:n,path:r,tree:e})}case ht.deleteTreeCard:{const{path:n,name:r}=t;return Dy({name:r,path:n,tree:e})}case ht.replaceTreeCard:{const{name:n,path:r,children:i}=t;return Cy({child:i,name:n,path:r,tree:e})}case ht.resetTree:return null;case ht.setTree:return t.tree;default:throw new Error}},yo=()=>{const{dispatchSnackbar:e}=U.useContext(Vo);return{close:()=>e(Bo()),open:(r,i="success")=>e(Dl(r,i))}},Lu=()=>{const{version:e}=Ke();return{patchWorkflow:r=>It.patch("/v1/workflow",{...r,version:e}).then(i=>i.data),postWorkflow:r=>It.post("/v1/workflow",{...r,version:e}).then(i=>i.data)}},ky=e=>{const{postWorkflow:t}=Lu();return kt.useMutation(t,e)},zy=e=>{const{patchWorkflow:t}=Lu();return kt.useMutation(t,e)},Ry=()=>{const{t:e}=Ve.useTranslation(["snackMessage"]),{open:t}=yo(),{setCurrentTree:n,currentTree:r,tree:i,dispatchTree:o}=Ke(),[a,s]=U.useState(!1),{mutate:l}=ky({onError:()=>{t(e("error.saveTree",{ns:"snackMessage"}),"error")},onSuccess:v=>{t(e("success.saveTree",{ns:"snackMessage"})),n(M=>({...M,id:v.workflow_id}))}}),{mutate:u}=zy({onError:()=>{t(e("error.updateTree",{ns:"snackMessage"}),"error")},onSuccess:()=>{t(e("success.updateTree",{ns:"snackMessage"}))}}),c=v=>JSON.stringify(v,null,2),d=v=>`data:text/json;charset=utf-8,${encodeURIComponent(c(v))}`,f=()=>{s(!1)};return{formatJSON:c,getDownloadLink:d,handleClose:f,handleOpen:()=>{s(!0)},handleResetTree:()=>{o(Ru()),f()},handleSubmit:()=>{const{name:v,id:M}=r;if(!v){n(D=>({...D,errorName:"Champs Requis"}));return}if(i){if(M){u({id:M,label:v,workflow:i});return}l({label:v,workflow:i})}},openModal:a}},$y=({downloadedFileName:e="export",value:t})=>{const{t:n}=Ve.useTranslation(),{getDownloadLink:r,handleSubmit:i,handleClose:o,handleOpen:a,handleResetTree:s,openModal:l}=Ry(),{currentTree:u,endPoint:c,tree:d}=Ke(),{id:f}=u;return g.jsxs(w.Stack,{direction:"row",spacing:2,justifyContent:"center",children:[g.jsx(w.Tooltip,{title:n("resetTree",{ns:"button"}),enterDelay:1500,disableHoverListener:!t,arrow:!0,children:g.jsx(w.Box,{children:g.jsx(w.Button,{disabled:!d,onClick:a,variant:"outlined",color:"warning",children:g.jsx(Cu,{})})})}),g.jsx(w.Divider,{orientation:"vertical",flexItem:!0}),g.jsx(w.Tooltip,{title:n("downloadJSONFile",{ns:"button"}),enterDelay:1500,disableHoverListener:!t,arrow:!0,children:g.jsx(w.Box,{children:g.jsx(w.Button,{variant:"outlined",href:r(t),download:`${e}.json`,disabled:!t,children:g.jsx(Su,{})})})}),g.jsx(w.Tooltip,{title:f?n("update",{ns:"button"}):n("save",{ns:"button"}),enterDelay:1500,disableHoverListener:!t,arrow:!0,children:g.jsx(w.Box,{children:g.jsx(w.Button,{variant:"outlined",onClick:i,disabled:!t||!c,children:f?g.jsx(ju,{}):g.jsx(Au,{})})})}),g.jsxs(w.Dialog,{maxWidth:"xs",fullWidth:!0,open:l,onClose:o,children:[g.jsx(w.DialogTitle,{variant:"h3",children:n("resetTree",{ns:"button"})}),g.jsx(w.DialogContent,{children:g.jsx(w.DialogContentText,{children:n("resetTreeContent",{ns:"modal"})})}),g.jsxs(w.DialogActions,{children:[g.jsx(w.Button,{onClick:o,children:n("close",{ns:"button"})}),g.jsx(w.Button,{variant:"contained",color:"warning",onClick:s,children:n("reset",{ns:"button"})})]})]})]})},Ly={box:{backgroundColor:be.background,border:`solid 1px ${be.borderBlue}`}},Pu=({children:e,description:t,open:n,onClose:r,title:i})=>g.jsx(w.Dialog,{open:n,onClose:r,"aria-labelledby":"modal-modal-title","aria-describedby":"modal-modal-description",scroll:"body",maxWidth:"sm",fullWidth:!0,children:g.jsxs(w.Box,{sx:Ly.box,p:4,children:[g.jsx("h3",{children:i}),g.jsx("p",{children:t}),e]})});var vo={},Py=De;Object.defineProperty(vo,"__esModule",{value:!0});var Fu=vo.default=void 0,Fy=Py(Ae()),Uy=g,Yy=(0,Fy.default)((0,Uy.jsx)("path",{d:"M18.3 5.71a.9959.9959 0 0 0-1.41 0L12 10.59 7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"}),"CloseRounded");Fu=vo.default=Yy;const Ar={container:{display:"flex",flexDirection:"column",height:"100%",margin:1},main:{border:`solid 1px ${be.borderBlue}`,height:" 100%",margin:1},toolbar:{backgroundColor:be.background,boxShadow:"none",display:"flex",padding:"0 ! important"},toolbarBox:{backgroundColor:be.tertiary,border:`solid 1px ${be.primary}`,margin:1,paddingX:2,paddingY:1,width:"100%"}},Vy=({children:e,appear:t,in:n,onEnter:r,onExited:i,onFocus:o,role:a,tabIndex:s,timeout:l},u)=>g.jsx(w.Slide,{direction:"up",ref:u,appear:t,in:n,onEnter:r,onExited:i,onFocus:o,role:a,tabIndex:s,timeout:l,children:e}),By=U.forwardRef(Vy),qy=({children:e,open:t,onClose:n,title:r})=>g.jsx(w.Dialog,{PaperProps:{sx:{backgroundColor:be.background,backgroundImage:"none"}},open:t,"aria-labelledby":"modal-modal-title","aria-describedby":"modal-modal-description",fullScreen:!0,TransitionComponent:By,children:g.jsxs(w.Box,{sx:Ar.container,children:[g.jsx(w.AppBar,{position:"sticky",elevation:0,children:g.jsx(w.Toolbar,{sx:Ar.toolbar,children:g.jsxs(w.Stack,{direction:"row",alignItems:"center",justifyContent:"space-between",sx:Ar.toolbarBox,children:[g.jsx(w.Typography,{variant:"h5",children:g.jsx("strong",{children:r})}),g.jsx(w.IconButton,{edge:"end",color:"inherit",onClick:n,"aria-label":"close",children:g.jsx(Fu,{})})]})})}),g.jsx(w.Box,{sx:Ar.main,children:e})]})}),Qy={box:{border:`solid 1px ${be.borderBlue}`,flexGrow:0}},Wy=({children:e})=>g.jsx(w.Box,{p:2,role:"group",sx:Qy.box,children:e}),Gy={box:{border:`solid 1px ${be.borderBlue}`,flexGrow:0}},Ky=({children:e})=>g.jsx(w.Box,{sx:Gy.box,padding:2,component:"header",children:e}),Hy={box:{border:`solid 1px ${be.borderBlue}`,flexGrow:1}},Xy=({children:e})=>g.jsx(w.Box,{sx:Hy.box,component:"main",role:"tree",children:e}),Uu={stack:{width:"100%"}},Jy=({children:e})=>{const t=U.Children.toArray(e);return g.jsxs(w.Grid,{container:!0,padding:1,flexWrap:"nowrap",height:"100%",role:"treegrid",children:[g.jsx(w.Grid,{item:!0,xs:9,padding:1,display:"flex",children:g.jsxs(w.Stack,{sx:Uu.stack,spacing:2,children:[t[0],t[1]]})}),g.jsx(w.Grid,{item:!0,xs:3,padding:1,display:"flex",children:g.jsxs(w.Stack,{sx:Uu.stack,spacing:2,children:[t[2],t[3]]})})]})},Zy={box:{border:`solid 1px ${be.borderBlue}`,flexGrow:1,overflow:"auto"}},ev=({children:e})=>g.jsx(w.Box,{sx:Zy.box,component:"aside",children:e}),tv=()=>{const{dispatchTree:e,setModalOpen:t,currentHierarchyPointNode:n,treePath:r}=Ke();return{handleSubmit:o=>{var l,u;o.preventDefault();const a=((l=n==null?void 0:n.data)==null?void 0:l.name)||"",s=((u=r==null?void 0:r.at(-1))==null?void 0:u.path)||"";e(Sy(s,a)),t(null)}}},nv=({onClose:e})=>{const{t}=Ve.useTranslation(),{handleSubmit:n}=tv();return g.jsx("form",{onSubmit:n,children:g.jsxs(w.Stack,{spacing:2,direction:"row",justifyContent:"flex-end",children:[g.jsx(w.Button,{variant:"text",onClick:e,children:t("cancel")}),g.jsx(w.Button,{variant:"contained",color:"error",type:"submit",children:t("remove")})]})})};var bo={},rv=De;Object.defineProperty(bo,"__esModule",{value:!0});var Yu=bo.default=void 0,iv=rv(Ae()),ov=g,av=(0,iv.default)((0,ov.jsx)("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z"}),"AddCircleRounded");Yu=bo.default=av;var xo={},sv=De;Object.defineProperty(xo,"__esModule",{value:!0});var Vu=xo.default=void 0,uv=sv(Ae()),lv=g,cv=(0,uv.default)((0,lv.jsx)("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z"}),"RemoveCircleRounded");Vu=xo.default=cv;const An=[{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"text"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"number"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"email"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"file"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"password"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"tel"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"address"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"url"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"date"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!1,isRequiredDisabled:!1,type:"time"},{isBooleanField:!0,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"switch"},{isBooleanField:!0,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"checkbox"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"hidden"},{isBooleanField:!1,isDecisionField:!1,isRepeatableDisabled:!0,isRequiredDisabled:!0,type:"tree"},{isBooleanField:!1,isDecisionField:!0,isRepeatableDisabled:!0,isRequiredDisabled:!1,type:"radio"},{isBooleanField:!1,isDecisionField:!0,isRepeatableDisabled:!0,isRequiredDisabled:!1,type:"select"}],fv=()=>{const{endPoint:e}=Ke();return{fields:U.useCallback(()=>An.filter(n=>!(n.type==="tree"&&!e)),[e])()}},dv=({onChange:e,value:t})=>{const{t:n}=Ve.useTranslation(["translation","form"]),{fields:r}=fv();return g.jsxs(w.FormControl,{sx:{flex:1},required:!0,children:[g.jsx(w.InputLabel,{children:n("type")}),g.jsx(w.Select,{value:t,label:n("type"),onChange:e,MenuProps:{PaperProps:{sx:{maxHeight:300}}},children:r.map(({type:i,isDecisionField:o})=>g.jsxs(w.MenuItem,{value:i,children:[n(`type.${i}`,{ns:"form"}),o&&g.jsx(w.Chip,{label:n("decisionField",{ns:"form"}),size:"small",color:"info",sx:{marginLeft:1}})]},i))})]})};var Mo={},hv=De;Object.defineProperty(Mo,"__esModule",{value:!0});var Bu=Mo.default=void 0,pv=hv(Ae()),gv=g,mv=(0,pv.default)((0,gv.jsx)("path",{d:"M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z"}),"AddRounded");Bu=Mo.default=mv;const qu=()=>({getAllWorkflow:()=>It.get("/v1/workflows").then(n=>n.data),getWorkflow:n=>It.get(`/v1/workflow?id=${n}`).then(r=>r.data)}),_o=(e,t)=>{const{getWorkflow:n}=qu();return kt.useQuery(["/v1/workflow",e],()=>e&&n(e),{refetchOnWindowFocus:!1,...t})},yv=e=>{const{getAllWorkflow:t}=qu();return kt.useQuery("/v1/workflows",t,{refetchOnWindowFocus:!1,...e})},vv=e=>{const{t}=Ve.useTranslation("snackMessage"),{open:n}=yo(),{currentTree:r,setCurrentTree:i,dispatchTree:o}=Ke(),[a,s]=U.useState("");_o(a,{enabled:!!a&&!e&&a!==r.id,onError:()=>n(t("error.fetchTree",{ns:"snackMessage"}),"error"),onSuccess:({id:b,label:y,workflow:v})=>{e||(i({id:b,name:y}),o($u(v)))}});const{data:l,isLoading:u,refetch:c}=yv({enabled:!1,keepPreviousData:!0,onError:()=>{n(t("error.fetchTree",{ns:"snackMessage"}),"error")},onSuccess:()=>{r.id&&!a&&s(r.id)}}),d=async({target:b})=>{const{value:y}=b;if(y==="add-new-tree"){s(""),i({name:""}),o(Ru());return}s(y)},f=()=>h(),h=()=>c();return{currentTree:r,fetchWorkflowSuggestions:h,handleChangeTree:d,handleOnOpen:f,setTreeSelected:s,treeSelected:a,workflowsSuggestions:l,workflowsSuggestionsLoading:u}},Qu={formControl:{flex:1},select:{".MuiOutlinedInput-notchedOutline":{border:0,paddingLeft:5},".MuiSelect-select":{opacity:0,width:0},boxShadow:"none"}},Wu=({arrowOnly:e,required:t,size:n,showBtnAddNewTree:r,onChange:i,value:o})=>{const{t:a}=Ve.useTranslation("form"),s=U.useMemo(()=>!!i,[i]),{handleChangeTree:l,handleOnOpen:u,workflowsSuggestions:c,workflowsSuggestionsLoading:d,treeSelected:f}=vv(s);return g.jsxs(w.FormControl,{size:n,required:t,sx:Qu.formControl,children:[!e&&g.jsx(w.InputLabel,{children:a("tree",{ns:"form"})}),g.jsxs(w.Select,{value:s?o:f,id:"tree-select",onChange:h=>s?i==null?void 0:i(h):l(h),sx:e?Qu.select:void 0,label:a("tree",{ns:"form"}),onOpen:u,children:[d&&g.jsx(w.MenuItem,{children:g.jsx(w.Skeleton,{width:"100%"})}),c==null?void 0:c.map(({label:h,id:b})=>g.jsx(w.MenuItem,{value:b,children:h},b)),r&&g.jsx(w.MenuItem,{disabled:!0,children:g.jsx(w.Box,{sx:{height:1,width:"100%"},children:g.jsx(w.Divider,{})})}),r&&g.jsxs(w.MenuItem,{value:"add-new-tree",children:[g.jsx(w.Typography,{mr:1,children:a("newTree",{ns:"form"})}),g.jsx(Bu,{color:"primary"})]})]})]})},bv=({helperText:e,hiddenValue:t,isHiddenField:n,isTreeField:r,treeSelected:i,handleChangeTreeSelect:o,handleChangeHelperText:a,handleChangeHiddenValue:s})=>{const{t:l}=Ve.useTranslation(["translation","form"]);return r?g.jsx(Wu,{required:!0,value:i,onChange:o}):n?g.jsx(w.TextField,{required:!0,sx:{flex:1},label:l("hiddenValue",{ns:"form"}),onChange:s,value:t}):g.jsx(w.TextField,{sx:{flex:1},label:l("helperText",{ns:"form"}),onChange:a,value:e})},Gu=e=>new Set([...e]).size===e.length,xv=(e,t,n)=>{const r=[...e,t];return Gu(n?r.filter(i=>i!==n):r)},Mv=()=>{var $r,Lr,Pr,Fr,Ur,Yr,Vr,Zt,kn,Mt,en,tn,zn,Br,Rn;const e=U.useMemo(()=>[{id:"0",label:"",message:"",value:""}],[]),{tree:t,dispatchTree:n,currentHierarchyPointNode:r,modalOpen:i,treePath:o,setModalOpen:a}=Ke(),{open:s}=yo(),{t:l}=Ve.useTranslation(),[u,c]=U.useState(e),[d,f]=U.useState(""),[h,b]=U.useState(""),[y,v]=U.useState(""),[M,D]=U.useState(!1),[O,_]=U.useState(!1),[m,k]=U.useState("text"),[C,S]=U.useState(""),[I,E]=U.useState(""),[$,X]=U.useState(""),[H,x]=U.useState({off:"",on:""}),[z,N]=U.useState(!1),[R,P]=U.useState(""),q=i==="edit",T=m==="tree",A=m==="hidden",V=An.some(F=>F.type===m&&(F==null?void 0:F.isBooleanField)),K=An.some(F=>F.type===m&&(F==null?void 0:F.isDecisionField)),B=An.some(F=>F.type===m&&(F==null?void 0:F.isRequiredDisabled)),J=An.some(F=>F.type===m&&(F==null?void 0:F.isRepeatableDisabled)),Q=((Lr=($r=r==null?void 0:r.data)==null?void 0:$r.attributes)==null?void 0:Lr.isLeaf)??!0,W=F=>!K&&F>0,{refetch:ee,isLoading:re}=_o(C,{enabled:!1,onError:()=>{s(l("error.fetchTree",{ns:"snackMessage"}),"error")}}),te=(F,de)=>{c(he=>he.map(Te=>{const{id:Pe}=Te;return F.target.dataset.id===Pe?{...Te,id:Pe,[de]:F.target.value}:{...Te}}))},Ce=F=>{b(F.target.value)},Y=F=>{v(F.target.value)},Le=F=>{te(F,"label")},G=F=>{te(F,"value")},Je=F=>{te(F,"message")},rt=F=>{X(F.target.value)},At=F=>{var Qe;const{value:de}=F.target;if(f(F.target.value),!t||!de){P("");return}const he=q&&(r==null?void 0:r.data.name),Te=(Qe=o==null?void 0:o.at(-1))==null?void 0:Qe.path,Pe=Xt(t,Te),Fe=ku(Pe);if(xv(Fe,de,he)){P("");return}P(l("mustBeUnique",{ns:"form"}))},Sr=F=>{D(F.target.checked)},Jt=F=>{_(F.target.checked)},Io=F=>{N(F.target.checked)},ko=F=>{k(F.target.value),_(!1),D(!1),N(!1)},Sn=F=>{S(F.target.value)},zo=F=>de=>{x(he=>({...he,[F]:de.target.value}))},Ro=F=>{E(F.target.value)},Ir=()=>{c(F=>{const de=Number(F[F.length-1].id),he=String(de+1);return[...F,{...e[0],id:he}]})},kr=F=>{c(de=>de.filter(({id:he})=>F.currentTarget.value!==he))},St=(F,de)=>{var Te,Pe,Fe;const he=(Fe=(Pe=(Te=F==null?void 0:F.children)==null?void 0:Te[de])==null?void 0:Pe.data)==null?void 0:Fe.children;return he?he.map(({name:Ze,attributes:Qe,children:pt})=>({attributes:Qe,children:pt,name:Ze})):[]},$o=F=>{var de;return O?(de=u==null?void 0:u.filter((he,Te)=>!W(Te)))==null?void 0:de.map(({message:he,value:Te,label:Pe},Fe)=>{const Ze=`${d}:${Te}`,Qe=St(r,Fe);return{attributes:{depth:F+1,label:Pe,value:Te,...he&&{message:he},...Qe.length===0&&{isLeaf:!0}},children:Qe,name:Ze}}):[]},zr=F=>F.map(({message:de,...he})=>({...he,...de&&{message:de}})),Rr=(F,de,he)=>{var Te;return F&&(!de||he)?ee():F&&de&&!he?{data:{workflow:(Te=r==null?void 0:r.data.attributes)==null?void 0:Te.tree},isError:null}:{data:null,isError:null}},In=async F=>{var se,le,ie,ne;F.preventDefault();const{on:de,off:he}=H,Te=((se=r==null?void 0:r.data)==null?void 0:se.name)||"",Pe=(r==null?void 0:r.depth)||0,Fe=i==="edit",Ze=Pe+(Fe||r===null?0:1),Qe=$o(Ze),pt=(le=o==null?void 0:o.at(-1))==null?void 0:le.path,nn=o.length?`${pt}/${d}`:`/${d}`,p=((ne=(ie=r==null?void 0:r.data.attributes)==null?void 0:ie.tree)==null?void 0:ne.treeId)!==C,{data:j,isError:L}=await Rr(T,Fe,p);if(L)return;const Z={attributes:{depth:Ze,label:y,type:m,...I&&{helperText:I},...(he||de)&&{messages:{...he&&{off:he},...de&&{on:de}}},...T&&{tree:{...j==null?void 0:j.workflow,treeId:C},treePath:nn},...O&&{isDecision:O},...K&&!O&&{values:zr(u)},...M&&{required:M},...$&&{step:$},...z&&{repeatable:z},...A&&{hiddenValue:h}},children:Qe,name:d};n(Fe?Ay(pt||"",Te,Z):jy(pt||null,Te,Z)),a(null)};return U.useEffect(()=>{var F,de,he,Te,Pe,Fe,Ze,Qe,pt,nn,p,j,L,Z,se,le,ie,ne,Ie;if(i==="edit"){const Me=((de=(F=r==null?void 0:r.data)==null?void 0:F.attributes)==null?void 0:de.values)||((Pe=(Te=(he=r==null?void 0:r.data)==null?void 0:he.children)==null?void 0:Te.filter(({attributes:ke})=>!(ke!=null&&ke.type)))==null?void 0:Pe.map(({attributes:ke},Nt)=>{const{label:qr,value:it,message:dl}=ke||{};return{id:String(Nt),label:String(qr),value:String(it),...dl&&{message:String(dl)}}}));f((r==null?void 0:r.data.name)||""),k(((Fe=r==null?void 0:r.data.attributes)==null?void 0:Fe.type)||"text"),E(((Ze=r==null?void 0:r.data.attributes)==null?void 0:Ze.helperText)||""),D(((Qe=r==null?void 0:r.data.attributes)==null?void 0:Qe.required)||!1),X(((pt=r==null?void 0:r.data.attributes)==null?void 0:pt.step)||""),v(((nn=r==null?void 0:r.data.attributes)==null?void 0:nn.label)||""),_(((p=r==null?void 0:r.data.attributes)==null?void 0:p.isDecision)||!1),c(Me!=null&&Me.length?Me:e),x({off:((L=(j=r==null?void 0:r.data.attributes)==null?void 0:j.messages)==null?void 0:L.off)||"",on:((se=(Z=r==null?void 0:r.data.attributes)==null?void 0:Z.messages)==null?void 0:se.on)||""}),S(((ie=(le=r==null?void 0:r.data.attributes)==null?void 0:le.tree)==null?void 0:ie.treeId)||""),N(((ne=r==null?void 0:r.data.attributes)==null?void 0:ne.repeatable)||!1),b(((Ie=r==null?void 0:r.data.attributes)==null?void 0:Ie.hiddenValue)||"")}},[(Fr=(Pr=r==null?void 0:r.data.attributes)==null?void 0:Pr.tree)==null?void 0:Fr.treeId,(Ur=r==null?void 0:r.data.attributes)==null?void 0:Ur.messages,(Yr=r==null?void 0:r.data.attributes)==null?void 0:Yr.helperText,(Vr=r==null?void 0:r.data.attributes)==null?void 0:Vr.isDecision,(Zt=r==null?void 0:r.data.attributes)==null?void 0:Zt.label,(kn=r==null?void 0:r.data.attributes)==null?void 0:kn.required,(Mt=r==null?void 0:r.data.attributes)==null?void 0:Mt.step,(en=r==null?void 0:r.data.attributes)==null?void 0:en.type,(tn=r==null?void 0:r.data.attributes)==null?void 0:tn.values,(zn=r==null?void 0:r.data)==null?void 0:zn.children,r==null?void 0:r.data.name,(Br=r==null?void 0:r.data.attributes)==null?void 0:Br.repeatable,(Rn=r==null?void 0:r.data.attributes)==null?void 0:Rn.hiddenValue,e,i]),{getDisabledValueField:W,handleAddValue:Ir,handleChangeHelperText:Ro,handleChangeHiddenValue:Ce,handleChangeIsDecisionField:Jt,handleChangeLabel:Y,handleChangeMessage:zo,handleChangeName:At,handleChangeOptionLabel:Le,handleChangeOptionMessage:Je,handleChangeOptionValue:G,handleChangeRepeatable:Io,handleChangeRequired:Sr,handleChangeStep:rt,handleChangeTreeSelect:Sn,handleChangeType:ko,handleDeleteValue:kr,handleSubmit:In,helperText:I,hiddenValue:h,isBooleanField:V,isDecision:O,isDecisionField:K,isEditModal:q,isHiddenField:A,isLeaf:Q,isRepeatableDisabled:J,isRequiredDisabled:B,isTreeField:T,isWorkflowLoading:re,label:y,messages:H,name:d,repeatable:z,required:M,step:$,treeSelected:C,type:m,uniqueNameErrorMessage:R,values:u}},Ku={marginRight:"-20px !important",minWidth:"auto !important"},Hu={iconButton:Ku,iconButtonDelete:{...Ku,"&:before":{borderRadius:"50%",content:'""',height:20,position:"absolute",width:20,zIndex:-1},backgroundColor:be.background,position:"absolute",right:0,top:"50%",transform:"translateY(-50%)"}},_v=({onClose:e})=>{const{t}=Ve.useTranslation(["translation","form"]),{values:n,required:r,name:i,uniqueNameErrorMessage:o,type:a,helperText:s,label:l,hiddenValue:u,isBooleanField:c,isDecision:d,isEditModal:f,isDecisionField:h,isHiddenField:b,isRequiredDisabled:y,isRepeatableDisabled:v,isTreeField:M,treeSelected:D,isWorkflowLoading:O,repeatable:_,isLeaf:m,messages:{on:k,off:C},handleChangeTreeSelect:S,handleChangeHelperText:I,handleChangeOptionMessage:E,handleChangeRequired:$,handleChangeName:X,handleChangeType:H,handleChangeIsDecisionField:x,handleChangeOptionLabel:z,handleDeleteValue:N,handleChangeOptionValue:R,handleChangeMessage:P,handleSubmit:q,handleAddValue:T,handleChangeLabel:A,handleChangeRepeatable:V,handleChangeHiddenValue:K}=Mv();return g.jsxs("form",{onSubmit:q,children:[g.jsxs(w.Stack,{spacing:1,paddingY:1,direction:{sm:"row",xs:"column"},children:[g.jsx(w.TextField,{sx:{flex:1},label:t("label",{ns:"form"}),onChange:A,value:l,required:!0}),g.jsx(w.TextField,{label:t("name"),sx:{flex:1},onChange:X,value:i,error:!!o,helperText:o,required:!0})]}),g.jsxs(w.Stack,{spacing:1,paddingY:1,direction:{sm:"row",xs:"column"},children:[g.jsx(dv,{value:a,onChange:H}),g.jsx(bv,{helperText:s,hiddenValue:u,isHiddenField:b,isTreeField:M,treeSelected:D,handleChangeTreeSelect:S,handleChangeHelperText:I,handleChangeHiddenValue:K})]}),c&&g.jsxs(w.Stack,{spacing:1,paddingY:1,direction:{sm:"row",xs:"column"},children:[g.jsx(w.TextField,{sx:{flex:1},label:t("onMessage",{ns:"form"}),onChange:P("on"),value:k}),g.jsx(w.TextField,{sx:{flex:1},label:t("offMessage",{ns:"form"}),onChange:P("off"),value:C})]}),g.jsxs(w.Stack,{paddingY:1,children:[g.jsx(w.FormGroup,{children:g.jsx(w.FormControlLabel,{disabled:v,control:g.jsx(w.Checkbox,{checked:_,onChange:V}),label:t("repeatable",{ns:"form"})})}),g.jsx(w.FormGroup,{children:g.jsx(w.FormControlLabel,{disabled:y,control:g.jsx(w.Checkbox,{checked:r,onChange:$}),label:t("required")})}),(m||f)&&g.jsx(w.FormGroup,{children:g.jsx(w.FormControlLabel,{disabled:!h,control:g.jsx(w.Checkbox,{checked:d,onChange:x}),label:t("decisionField",{ns:"form"})})})]}),h&&g.jsxs(g.Fragment,{children:[g.jsx("h4",{children:t("values")}),n==null?void 0:n.map(({value:B,label:J,id:Q,message:W})=>g.jsxs(w.Stack,{direction:{sm:"row",xs:"column"},spacing:1,paddingY:1,position:"relative",children:[g.jsx(w.TextField,{label:t("label",{ns:"form"}),sx:{flex:1},onChange:z,value:J,inputProps:{"data-id":Q},required:!0}),g.jsx(w.TextField,{label:t("value",{ns:"form"}),sx:{flex:1},onChange:R,value:B,inputProps:{"data-id":Q},required:!0}),g.jsx(w.TextField,{label:"Message",sx:{flex:1},onChange:E,value:W,inputProps:{"data-id":Q}}),n.length>1&&g.jsx(w.IconButton,{color:"warning",sx:Hu.iconButtonDelete,value:Q,onClick:N,children:g.jsx(Vu,{})})]},Q))]}),h&&g.jsx(w.Box,{justifyContent:"flex-end",display:"flex",children:g.jsx(w.IconButton,{color:"success",sx:Hu.iconButton,onClick:T,children:g.jsx(Yu,{})})}),g.jsxs(w.Stack,{spacing:2,direction:"row",justifyContent:"flex-end",paddingTop:3,children:[g.jsx(w.Button,{variant:"text",onClick:e,children:t("cancel")}),g.jsx(w.Button,{variant:"contained",type:"submit",disabled:!!o||O,children:O?g.jsx(w.CircularProgress,{size:14}):t("validate")})]})]})};var To={},Tv=De;Object.defineProperty(To,"__esModule",{value:!0});var Xu=To.default=void 0,wv=Tv(Ae()),Nv=g,Ev=(0,wv.default)((0,Nv.jsx)("path",{d:"M17 11h3c1.11 0 2-.9 2-2V5c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1H9.01V5c0-1.11-.9-2-2-2H4c-1.1 0-2 .9-2 2v4c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2V8h2v7.01c0 1.65 1.34 2.99 2.99 2.99H15v1c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2v-4c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1h-1.01c-.54 0-.99-.45-.99-.99V8h2v1c0 1.1.9 2 2 2z"}),"AccountTreeRounded");Xu=To.default=Ev;var wo={},Dv=De;Object.defineProperty(wo,"__esModule",{value:!0});var Ju=wo.default=void 0,Ov=Dv(Ae()),Cv=g,jv=(0,Ov.default)((0,Cv.jsx)("path",{d:"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z"}),"AddBoxRounded");Ju=wo.default=jv;var No={},Av=De;Object.defineProperty(No,"__esModule",{value:!0});var Zu=No.default=void 0,Sv=Av(Ae()),Iv=g,kv=(0,Sv.default)((0,Iv.jsx)("path",{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM9 9h6c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1zm6.5-5-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z"}),"DeleteOutlineRounded");Zu=No.default=kv;var Eo={},zv=De;Object.defineProperty(Eo,"__esModule",{value:!0});var el=Eo.default=void 0,Rv=zv(Ae()),$v=g,Lv=(0,Rv.default)((0,$v.jsx)("path",{d:"M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"}),"EditRounded");el=Eo.default=Lv;var Do={},Pv=De;Object.defineProperty(Do,"__esModule",{value:!0});var tl=Do.default=void 0,Fv=Pv(Ae()),Uv=g,Yv=(0,Fv.default)((0,Uv.jsx)("path",{d:"M12 3c-4.8 0-9 3.86-9 9 0 2.12.74 4.07 1.97 5.61l-1.68 1.68c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.68-1.68C7.93 20.26 9.88 21 12 21c2.3 0 4.61-.88 6.36-2.64C20.12 16.61 21 14.3 21 12V5c0-1.1-.9-2-2-2h-7zm3.83 9.26-5.16 4.63c-.16.15-.41.14-.56-.01-.14-.14-.16-.36-.04-.52l2.44-3.33-4.05-.4c-.44-.04-.63-.59-.3-.89l5.16-4.63c.16-.15.41-.14.56.01.14.14.16.36.04.52l-2.44 3.33 4.05.4c.45.04.63.59.3.89z"}),"EnergySavingsLeafRounded");tl=Do.default=Yv;var Oo={},Vv=De;Object.defineProperty(Oo,"__esModule",{value:!0});var nl=Oo.default=void 0,Bv=Vv(Ae()),rl=g,qv=(0,Bv.default)([(0,rl.jsx)("path",{d:"M14.14 12h-.06c.81 0 1.28-.91.82-1.57L9.82 3.17c-.4-.57-1.24-.57-1.64 0L3.1 10.43c-.46.66.01 1.57.82 1.57h-.06L.99 16.46c-.43.66.05 1.54.84 1.54H7v2c0 1.1.9 2 2 2s2-.9 2-2v-2h5.17c.79 0 1.27-.88.84-1.54L14.14 12z"},"0"),(0,rl.jsx)("path",{d:"M23.01 16.46 20.14 12h-.06c.81 0 1.28-.91.82-1.57l-5.08-7.26c-.4-.57-1.24-.57-1.64 0l-1.57 2.24 3.11 4.44c.43.61.48 1.41.14 2.07-.08.16-.18.3-.3.43l2.29 3.57c.4.62.42 1.4.07 2.04-.01.02-.02.03-.03.04h4.28c.79 0 1.27-.88.84-1.54zM13 20c0 1.1.9 2 2 2s2-.9 2-2v-1h-4v1z"},"1")],"ForestRounded");nl=Oo.default=qv;var Co={},Qv=De;Object.defineProperty(Co,"__esModule",{value:!0});var il=Co.default=void 0,Wv=Qv(Ae()),Gv=g,Kv=(0,Wv.default)((0,Gv.jsx)("path",{d:"M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z"}),"LoopRounded");il=Co.default=Kv;var jo={},Hv=De;Object.defineProperty(jo,"__esModule",{value:!0});var ol=jo.default=void 0,Xv=Hv(Ae()),Jv=g,Zv=(0,Xv.default)((0,Jv.jsx)("path",{d:"M16.96 12h.08c.81 0 1.28-.91.82-1.57l-5.08-7.25c-.4-.57-1.24-.57-1.64 0L6.1 10.43c-.46.66.02 1.57.83 1.57h.04l-2.9 4.46c-.44.66.04 1.54.84 1.54h5.08v2.02c0 1.09.89 1.98 1.98 1.98 1.09 0 1.98-.89 1.98-1.98V18h5.15c.8 0 1.28-.89.83-1.55L16.96 12z"}),"ParkRounded");ol=jo.default=Zv;var Ao={},e1=De;Object.defineProperty(Ao,"__esModule",{value:!0});var al=Ao.default=void 0,t1=e1(Ae()),n1=g,r1=(0,t1.default)((0,n1.jsx)("path",{d:"M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM2.71 3.16c-.39.39-.39 1.02 0 1.41l1.97 1.97C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z"}),"VisibilityOffRounded");al=Ao.default=r1;var So={},i1=De;Object.defineProperty(So,"__esModule",{value:!0});var sl=So.default=void 0,o1=i1(Ae()),a1=g,s1=(0,o1.default)((0,a1.jsx)("path",{d:"M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"}),"VisibilityRounded");sl=So.default=s1;const Se={actionButton:{minWidth:"auto !important"},container:{background:be.background,borderRadius:"1rem"},containerField:{background:be.background,border:`solid 1px ${be.primary}`,borderRadius:"1rem"},containerHidden:{background:be.background,border:`solid 1px ${be.borderGrey}`,borderRadius:"1rem"},containerTree:{background:be.tertiary,border:`solid 1px ${be.primary}`,borderRadius:"1rem"},containerValue:{background:be.background,border:`solid 1px ${be.secondary}`,borderRadius:"1rem"},icon:{color:be.grey500},nodeSvg:{stroke:"transparent !important"},stepChip:{fontSize:".7rem !important",fontWeight:"bold",height:"20px !important"},title:{display:"-webkit-box",margin:0,overflow:"hidden",textAlign:"right",textOverflow:"ellipsis",webkitBoxOrient:"vertical",webkitLineClamp:2}},u1=e=>{const t=!!e,n=e==="tree";return e==="hidden"?Se.containerHidden:n?Se.containerTree:t?Se.containerField:Se.containerValue},l1=({nodeDatum:e,onAddChildren:t,onEditChildren:n,onDeleteChildren:r,onOpenTreeModal:i,hierarchyPointNode:o,size:a=220})=>{var k;const{t:s}=Ve.useTranslation(["translation","form"]),{attributes:l}=e||{},{isRoot:u,isLeaf:c,required:d,isDecision:f,step:h,type:b,label:y,repeatable:v}=l||{},M=!!b,D=b==="tree",O=b==="hidden",_=!M,m=!u&&!c;return g.jsxs("g",{children:[g.jsx(w.GlobalStyles,{styles:{".rd3t-node svg":Se.nodeSvg}}),g.jsx(w.Box,{component:"foreignObject",height:a,width:a,x:`-${a/2}`,y:`-${a/2}`,sx:u1(b),children:g.jsxs(w.Box,{flex:1,display:"flex",p:2,height:"100%",flexDirection:"column",justifyContent:"space-between",children:[g.jsxs(w.Stack,{alignItems:"flex-end",spacing:.5,children:[M&&g.jsxs(w.Stack,{direction:"row",spacing:1,alignItems:"center",children:[h&&g.jsx(w.Tooltip,{title:`${s("step",{ns:"form"})} ${(k=e==null?void 0:e.attributes)==null?void 0:k.step}`,placement:"left",arrow:!0,children:g.jsx(w.Chip,{color:"primary",size:"small",label:h,sx:Se.stepChip})}),g.jsx(w.Typography,{variant:"subtitle2",sx:Se.title,children:g.jsx("strong",{children:y})})]}),M&&g.jsx(w.Chip,{color:"info",size:"small",label:s(`type.${b}`,{ns:"form"})}),d&&g.jsx(w.Stack,{direction:"row",spacing:.5,children:d&&g.jsx(w.Chip,{color:"warning",size:"small",variant:"outlined",label:s("required")})}),g.jsx(w.Stack,{spacing:.5,alignItems:"flex-end",children:_&&g.jsx(w.Typography,{variant:"subtitle2",sx:Se.title,children:g.jsx("strong",{children:y})})}),g.jsxs(w.Stack,{paddingTop:.5,spacing:.5,direction:"row",children:[v&&g.jsx(w.Tooltip,{title:s("isARepeatable"),placement:"bottom",arrow:!0,children:g.jsx(il,{style:Se.icon})}),c&&g.jsx(w.Tooltip,{title:s("isALeaf"),placement:"bottom",arrow:!0,children:g.jsx(tl,{style:Se.icon})}),O&&g.jsx(w.Tooltip,{title:s("isAHidden"),placement:"bottom",arrow:!0,children:g.jsx(al,{style:Se.icon})}),u&&g.jsx(w.Tooltip,{title:s("isTheRoot"),placement:"bottom",arrow:!0,children:g.jsx(ol,{style:Se.icon})}),m&&g.jsx(w.Tooltip,{title:s("isABranch"),placement:"bottom",arrow:!0,children:g.jsx(Xu,{style:Se.icon})}),D&&g.jsx(w.Tooltip,{title:s("isATree"),placement:"bottom",arrow:!0,children:g.jsx(nl,{style:Se.icon})})]})]}),g.jsxs(w.Stack,{direction:"row",justifyContent:"flex-end",spacing:0,alignSelf:"flex-end",children:[!u&&g.jsx(w.Tooltip,{title:s("remove"),arrow:!0,children:g.jsx(w.Button,{variant:"text",sx:Se.actionButton,size:"small",color:"error",onClick:()=>r==null?void 0:r(o),children:g.jsx(Zu,{})})}),!_&&g.jsx(w.Tooltip,{title:s("edit"),arrow:!0,children:g.jsx(w.Button,{variant:"text",color:"secondary",sx:Se.actionButton,size:"small",onClick:()=>n==null?void 0:n(o),children:g.jsx(el,{})})}),!f&&g.jsx(w.Tooltip,{title:s("add"),arrow:!0,children:g.jsx(w.Button,{variant:"text",color:"success",sx:Se.actionButton,size:"small",onClick:()=>t==null?void 0:t(o),children:g.jsx(Ju,{})})}),D&&g.jsx(w.Tooltip,{title:s("show"),arrow:!0,children:g.jsx(w.Button,{variant:"text",color:"info",sx:Se.actionButton,size:"small",onClick:()=>i==null?void 0:i(o),children:g.jsx(sl,{})})})]})]})})]})},c1=U.memo(l1),ul=()=>{const{setModalOpen:e,setCurrentHierarchyPointNode:t,setTreeModalOpen:n,setTreePath:r}=Ke();return{handleAddChildren:u=>{t(u),e("add")},handleCloseTreeModal:()=>{r([]),n(!1)},handleDeleteChildren:u=>{t(u),e("delete")},handleEditChildren:u=>{t(u),e("edit")},handleOpenTreeModal:u=>{var d,f;const c={label:u==null?void 0:u.data.attributes.label,path:((f=(d=u==null?void 0:u.data)==null?void 0:d.attributes)==null?void 0:f.treePath)||""};r(h=>[...h,c]),n(!0)}}},f1=({nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o,addChildren:a})=>{const{handleDeleteChildren:s,handleEditChildren:l,handleAddChildren:u,handleOpenTreeModal:c}=ul();return g.jsx(c1,{addChildren:a,nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o,onAddChildren:u,onOpenTreeModal:c,onDeleteChildren:s,onEditChildren:l})},ll=({nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o,addChildren:a})=>g.jsx(f1,{addChildren:a,nodeDatum:e,hierarchyPointNode:t,toggleNode:n,onNodeClick:r,onNodeMouseOver:i,onNodeMouseOut:o}),d1=()=>{const{t:e}=Ve.useTranslation(["modal","snackMessage"]),{currentHierarchyPointNode:t,modalOpen:n,setModalOpen:r}=Ke(),i=n==="edit";return{closeModal:()=>r(null),getTitleModalDelete:()=>{var f,h;const d=(h=(f=t==null?void 0:t.data)==null?void 0:f.attributes)==null?void 0:h.label;return e("deleteTitle",{name:d,ns:"modal"})},getTitleModalMutation:()=>{var h;const d=(h=t==null?void 0:t.data)==null?void 0:h.attributes.label;return d?e(i?"editTitle":"addTitle",{name:d,ns:"modal"}):e("addFirstTitle",{name:d,ns:"modal"})},isDeleteModal:n==="delete",isModalMutationOpen:i||n==="add"}},h1=()=>{const{currentTree:e,setCurrentTree:t,tree:n}=Ke(),{name:r,errorName:i,id:o}=e;return{disabled:!!e.id&&!n,errorName:i,handleChangeName:l=>{const{value:u}=l.target;if(!u){t(c=>({...c,errorName:"Champs requis",name:l.target.value}));return}t(c=>({...c,errorName:"",name:l.target.value}))},id:o,name:r}},p1=()=>{const{t:e}=Ve.useTranslation("form"),{name:t,handleChangeName:n,errorName:r,disabled:i}=h1();return g.jsx(w.TextField,{required:!0,label:e("treeName",{ns:"form"}),size:"small",onChange:n,value:t,error:!!r,disabled:i})},g1=()=>{var h,b;const{tree:e,treeModalOpen:t,treePath:n,endPoint:r}=Ke(),{handleCloseTreeModal:i}=ul(),{getTitleModalMutation:o,closeModal:a,getTitleModalDelete:s,isModalMutationOpen:l,isDeleteModal:u}=d1(),c=(h=n==null?void 0:n.at(-1))==null?void 0:h.path,d=(b=n==null?void 0:n.at(-1))==null?void 0:b.label,f=e&&Xt(e,c);return g.jsxs(g.Fragment,{children:[g.jsxs(Jy,{children:[g.jsx(Ky,{children:g.jsxs(w.Stack,{justifyContent:"space-between",direction:"row",alignItems:"center",children:[g.jsx(Sl,{}),!!r&&g.jsxs(w.Stack,{direction:"row",alignItems:"center",spacing:2,children:[g.jsx(p1,{}),g.jsx(Wu,{size:"small",arrowOnly:!0,showBtnAddNewTree:!0})]})]})}),g.jsx(Xy,{children:g.jsx(vs,{data:e,renderCustomNodeElement:ll})}),g.jsx(ev,{children:g.jsx(Rp,{value:e})}),g.jsx(Wy,{children:g.jsx($y,{value:e})})]}),g.jsx(Pu,{open:l,onClose:a,title:o(),children:g.jsx(_v,{onClose:a})}),g.jsx(Pu,{open:u,onClose:a,title:s(),children:g.jsx(nv,{onClose:a})}),g.jsx(qy,{open:t,onClose:i,title:d,children:f&&g.jsx(vs,{data:f,renderCustomNodeElement:ll})})]})},m1="0.10.0",y1=({children:e,endPoint:t,initialTree:n,initialTreeId:r})=>{const[i,o]=U.useState(Tt.currentHierarchyPointNode),[a,s]=U.useState(Tt.modalOpen),[l,u]=U.useState(Tt.treeModalOpen),[c,d]=U.useState(Tt.treePath),[f,h]=U.useReducer(Iy,n||Tt.tree),[b,y]=U.useState(r?{...Tt.currentTree,id:r}:Tt.currentTree),v=U.useMemo(()=>({currentHierarchyPointNode:i,currentTree:b,dispatchTree:h,endPoint:t,modalOpen:a,setCurrentHierarchyPointNode:o,setCurrentTree:y,setModalOpen:s,setTreeModalOpen:u,setTreePath:d,tree:f,treeModalOpen:l,treePath:c,version:m1}),[i,a,l,c,f,b,t]);return _o(b.id,{enabled:!!r,onSuccess:async M=>{M&&(y({id:M==null?void 0:M.id,name:M==null?void 0:M.label}),h($u((M==null?void 0:M.workflow)||null)))}}),g.jsx(ms.Provider,{value:v,children:e})},v1={close:"Close",createTree:"Create Tree",downloadJSONFile:"Download JSON File",reset:"Reset",resetTree:"Reset tree",save:"Save",update:"Update"},b1={error:{fetchTree:"An error has occurred. Please try again",saveTree:"An error has occurred. Please try again",updateTree:"An error has occurred. Please try again"},success:{saveTree:"Tree registered",updateTree:"Tree updated"}},x1={add:"Add",cancel:"Cancel",disabled:"Disabled",edit:"Edit",isABranch:"Is a branch",isAHidden:"Is a hidden field",isALeaf:"Is a leaf",isARepeatable:"Is a repeatable",isATree:"Is a tree",isTheRoot:"Is the root",label:"Label",name:"Name",remove:"Remove",required:"Required",save:"Save",show:"Show",type:"Type",validate:"Validate",value:"Value",values:"Values"},M1={close:"Fermer",createTree:"Créer un arbre",downloadJSONFile:"Télécharger le fichier JSON",reset:"Réinitialiser",resetTree:"Réinitialiser l'arbre",save:"Enregistrer",update:"Modifier"},cl={decisionField:"Champs de décision",helperText:"Texte d'information",hiddenValue:"Valeur caché",label:"Label",mustBeUnique:"Doit être unique",newTree:"Nouvel arbre",offMessage:"Message (désactiver)",onMessage:"Message (activer)",repeatable:"Répétable",staticFields:"Champs statiques",step:"Étape",tree:"Arbre",treeName:"Nom de l'arbre",type:{address:"Adresse",checkbox:"Case à cocher",date:"Date",email:"Email",file:"Fichier",hidden:"Champs caché",number:"Nombre",password:"Mot de passe",radio:"Radio",select:"Select",switch:"Switch",tel:"Téléphone",text:"Texte",time:"Temps",tree:"Arbre",url:"URL"},value:"Valeur",values:"Valeurs"},fl={addFirstTitle:"Ajouter un champ",addTitle:"Ajouter un champ à « {{name}} »",deleteTitle:"Voulez vraiment supprimer « {{name}} »",editTitle:"Éditer le champ « {{name}} »",resetTreeContent:"Êtes-vous sûr de vouloir réinitialiser l'arbre ?",saveTree:"Enregistrer l'arbre"},_1={error:{fetchTree:"Une erreur est survenue veuillez réessayer",saveTree:"Une erreur est survenue veuillez réessayer",updateTree:"Une erreur est survenue veuillez réessayer"},success:{saveTree:"Arbre enregistré",updateTree:"Arbre mis à jour"}},T1={add:"Ajouter",cancel:"Annuler",disabled:"Désactivé",edit:"Éditer",isABranch:"Est une branche",isAHidden:"Est un champs caché",isALeaf:"Est une feuille",isARepeatable:"Est répétable",isATree:"Est un arbre",isTheRoot:"Est la racine",label:"Label",name:"Nom",remove:"Supprimer",required:"Requis",save:"Enregistrer",show:"Afficher",type:"Type",validate:"Valider",value:"Valeur",values:"Valeurs"};rn.use(yl).use(Ve.initReactI18next).init({debug:!1,fallbackLng:"en",interpolation:{escapeValue:!1},load:"languageOnly",react:{useSuspense:!0},resources:{en:{button:v1,form:cl,modal:fl,snackMessage:b1,translation:x1},fr:{button:M1,form:cl,modal:fl,snackMessage:_1,translation:T1}},returnNull:!1}).then(()=>{document.documentElement.lang!==rn.resolvedLanguage&&rn.resolvedLanguage&&document.documentElement.setAttribute("lang",rn.resolvedLanguage)}),rn.on("languageChanged",e=>{document.documentElement.setAttribute("lang",e)});const w1=({authToken:e,endPoint:t,initialTree:n,initialTreeId:r})=>(U.useLayoutEffect(()=>{It.defaults.baseURL=t,It.defaults.headers.common.Authorization=`Bearer ${e}`},[t,e]),g.jsx(kt.QueryClientProvider,{client:Tl,children:g.jsx(El,{authToken:e,children:g.jsx(y1,{endPoint:t,initialTree:n,initialTreeId:r,children:g.jsx(_l,{children:g.jsx(jl,{children:g.jsx(g1,{})})})})})}));je.TreePlusIcon=gs,je.Treege=w1,Object.defineProperty(je,Symbol.toStringTag,{value:"Module"})});
|